diff --git a/apps/story-map/.gitignore b/apps/story-map/.gitignore
new file mode 100644
index 00000000..a547bf36
--- /dev/null
+++ b/apps/story-map/.gitignore
@@ -0,0 +1,24 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/apps/story-map/Dockerfile b/apps/story-map/Dockerfile
new file mode 100644
index 00000000..6aa4cc70
--- /dev/null
+++ b/apps/story-map/Dockerfile
@@ -0,0 +1,11 @@
+FROM node:18 as node_builder
+WORKDIR /usr/src/app
+COPY . /usr/src/app
+RUN yarn
+RUN yarn build
+
+FROM nginxinc/nginx-unprivileged:1.21
+
+COPY --from=node_builder /usr/src/app/dist /usr/share/nginx/html
+EXPOSE 80
+CMD ["nginx", "-g", "daemon off;"]
\ No newline at end of file
diff --git a/apps/story-map/README.md b/apps/story-map/README.md
new file mode 100644
index 00000000..16b1bcda
--- /dev/null
+++ b/apps/story-map/README.md
@@ -0,0 +1,28 @@
+# MapComponents + vite + react + typescript
+
+This template is based on the vite ts-react template, and adds all
+required basic components for a MapComponents application.
+
+## Install packages
+
+```bash
+npm i
+```
+
+## Start the development server
+
+```bash
+npm run dev
+```
+
+## Build for production
+
+```bash
+npm run build
+```
+
+## Create a new app from this template
+
+```bash
+npx degit mapcomponents/template my-new-app
+```
\ No newline at end of file
diff --git a/apps/story-map/index.html b/apps/story-map/index.html
new file mode 100644
index 00000000..4e453218
--- /dev/null
+++ b/apps/story-map/index.html
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+ MapComponents + Vite + React + TS
+
+
+
+
+
+
diff --git a/apps/story-map/oldMarkerlayout.tsx b/apps/story-map/oldMarkerlayout.tsx
new file mode 100644
index 00000000..e23ffa20
--- /dev/null
+++ b/apps/story-map/oldMarkerlayout.tsx
@@ -0,0 +1,11 @@
+
+
+

Marker component
+
+I'm a MapComponents marker component. I'll show you around.
+
+
Let's discover MapComponents together, an open-source framework for creating geo-IT applications!
+
+
`,
diff --git a/apps/story-map/package.json b/apps/story-map/package.json
new file mode 100644
index 00000000..e1e9a95f
--- /dev/null
+++ b/apps/story-map/package.json
@@ -0,0 +1,45 @@
+{
+ "name": "app_title",
+ "private": true,
+ "version": "0.0.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "tsc && vite build",
+ "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
+ "preview": "vite preview"
+ },
+ "dependencies": {
+ "@deck.gl/aggregation-layers": "^9.2.2",
+ "@deck.gl/core": "^9.2.2",
+ "@deck.gl/geo-layers": "^9.2.2",
+ "@emotion/react": "^11.14.0",
+ "@emotion/styled": "^11.14.1",
+ "@geomatico/maplibre-cog-protocol": "^0.8.0",
+ "@mapcomponents/react-maplibre": "workspace:^",
+ "@mui/icons-material": "^7.3.6",
+ "@mui/material": "^7.3.6",
+ "@turf/turf": "^7.3.1",
+ "d3": "^7.9.0",
+ "geojson": "^0.5.0",
+ "i18next": "^25.7.2",
+ "maplibre-gl": "^5.14.0",
+ "react-draggable": "^4.5.0",
+ "react-i18next": "^16.4.1",
+ "three": "^0.182.0",
+ "three-stdlib": "^2.36.1"
+ },
+ "devDependencies": {
+ "@types/geojson": "^7946.0.16",
+ "@types/react": "^19.2.7",
+ "@types/react-dom": "^19.2.3",
+ "@typescript-eslint/eslint-plugin": "^8.49.0",
+ "@typescript-eslint/parser": "^8.49.0",
+ "@vitejs/plugin-react": "^5.1.2",
+ "eslint": "^9.39.1",
+ "eslint-plugin-react-hooks": "^7.0.1",
+ "eslint-plugin-react-refresh": "^0.4.24",
+ "typescript": "^5.9.3",
+ "vite": "^7.2.7"
+ }
+}
diff --git a/apps/story-map/project.json b/apps/story-map/project.json
new file mode 100644
index 00000000..857af822
--- /dev/null
+++ b/apps/story-map/project.json
@@ -0,0 +1,9 @@
+{
+ "name": "story-map",
+ "$schema": "../../node_modules/nx/schemas/project-schema.json",
+ "sourceRoot": "apps/story-map/src",
+ "projectType": "application",
+ "tags": [],
+ "// targets": "to see all targets run: nx show project story-map --web",
+ "targets": {}
+}
diff --git a/apps/story-map/public/OldMap_COG.tif b/apps/story-map/public/OldMap_COG.tif
new file mode 100644
index 00000000..78108bde
Binary files /dev/null and b/apps/story-map/public/OldMap_COG.tif differ
diff --git a/apps/story-map/public/WhereGroupLogo3D.glb b/apps/story-map/public/WhereGroupLogo3D.glb
new file mode 100644
index 00000000..fc2dd851
Binary files /dev/null and b/apps/story-map/public/WhereGroupLogo3D.glb differ
diff --git a/apps/story-map/public/apple-icon-180.png b/apps/story-map/public/apple-icon-180.png
new file mode 100644
index 00000000..8ee12357
Binary files /dev/null and b/apps/story-map/public/apple-icon-180.png differ
diff --git a/apps/story-map/public/favicon-196.png b/apps/story-map/public/favicon-196.png
new file mode 100644
index 00000000..d3ac1e17
Binary files /dev/null and b/apps/story-map/public/favicon-196.png differ
diff --git a/apps/story-map/public/favicon.ico b/apps/story-map/public/favicon.ico
new file mode 100644
index 00000000..317ebcb2
Binary files /dev/null and b/apps/story-map/public/favicon.ico differ
diff --git a/apps/story-map/public/hexa_data.json b/apps/story-map/public/hexa_data.json
new file mode 100644
index 00000000..9e77e9c9
--- /dev/null
+++ b/apps/story-map/public/hexa_data.json
@@ -0,0 +1,8128 @@
+{
+"type": "FeatureCollection",
+"name": "laerm_points",
+"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+"features": [
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140319400599999, 50.69120462595 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14142995395, 50.690604920650003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142762454770083, 50.689804007600003 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144242621, 50.68958396 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144717800804561, 50.689075023500003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145001708795439, 50.689075023500003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14635196715, 50.689032827299997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14649125885, 50.688941558799996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147104225650001, 50.691443674699997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14710680435, 50.691173293613623 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14710680435, 50.691353157686365 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1478009259, 50.690996313799999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14821696215, 50.691810283499997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14824515075, 50.691801016950002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1491369494, 50.687755811050003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1495889935, 50.689459411 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149603142, 50.689459271399997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1497260821, 50.689278262550005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1497400107, 50.689269135300002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1503092449, 50.68939836325 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1503081454, 50.689353425150003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15058304655, 50.688442742150002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151972921400001, 50.687988508149999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1520826348, 50.687268240099996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1533109559, 50.687153404750006 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153595153368784, 50.687182130149999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1263630258, 50.699975054399999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12828965695, 50.698270833850003 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1440665302, 50.694269363949999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14413500075, 50.697954289899997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1442116747, 50.694708437599999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14421058075, 50.694663499499995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128306397399999, 50.698378548850002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1302582768, 50.69655268855 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1315651797, 50.695600621936372 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13208141205, 50.695851766399997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13322230385, 50.693566264099999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1336847604, 50.694851657149997 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13514715065, 50.6944465033 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14032071345, 50.697092914449996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1403853734, 50.697132735549999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14458564495, 50.697860174550001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138609748765784, 50.700695061640957 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138893718811838, 50.700515197568215 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139177688857892, 50.700515197568215 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139461658903945, 50.700155469422732 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139461658903945, 50.700335333495474 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139461658903945, 50.700515197568215 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139745628949999, 50.699256149059025 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139745628949999, 50.699436013131766 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139745628949999, 50.699975605349991 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139745628949999, 50.700155469422732 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139745628949999, 50.700335333495474 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139745628949999, 50.700515197568215 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140029598996053, 50.699615877204508 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140029598996053, 50.699795741277249 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140029598996053, 50.699975605349991 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140029598996053, 50.700155469422732 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140029598996053, 50.700335333495474 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140313569042107, 50.699795741277249 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140313569042107, 50.699975605349991 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140313569042107, 50.700155469422732 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14059753908816, 50.699795741277249 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14059753908816, 50.700155469422732 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140881509134214, 50.700335333495474 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141322181150001, 50.6975325971 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14125867475, 50.694917196 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14127260665, 50.694908069749999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14128653855, 50.6948989435 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139897048525769, 50.696181811772725 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139897048525769, 50.696361675845466 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140180994033845, 50.695822083627242 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140180994033845, 50.696001947699983 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140180994033845, 50.696181811772725 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140180994033845, 50.696361675845466 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140180994033845, 50.696541539918208 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140464939541922, 50.695462355481759 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140464939541922, 50.6956422195545 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140464939541922, 50.695822083627242 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140464939541922, 50.696001947699983 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140464939541922, 50.696181811772725 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140464939541922, 50.696361675845466 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140464939541922, 50.696541539918208 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140464939541922, 50.696721403990949 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140748885049999, 50.696181811772725 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140748885049999, 50.696361675845466 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140748885049999, 50.696541539918208 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141032830558076, 50.696181811772725 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141032830558076, 50.696361675845466 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141316776066152, 50.695822083627242 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141316776066152, 50.696001947699983 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141600721574229, 50.695822083627242 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14171643075, 50.69570381015 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14190363965, 50.695540160649998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142351521549999, 50.696497675749995 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1435764404, 50.697685863399997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1437272126, 50.697774142249997 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.143924299, 50.694535888350003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1465767445, 50.692446732549996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148707194649999, 50.691886360200002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149546773435544, 50.7007734576 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15858636025, 50.697942045350004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15860062195, 50.69794639845 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15859951415, 50.69790146055 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1366290902, 50.708905430450002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13782383365, 50.708255635900002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115738696, 50.704702500699995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116507240100001, 50.704874933749998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11671438465, 50.704953856350002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1369744366, 50.702114935 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13697421915, 50.702105947349999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11708121757233, 50.704947479050006 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1173652216, 50.704947479050006 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11764922562767, 50.704947479050006 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1194679646, 50.704388111749999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119658664499999, 50.705833565349998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119851665, 50.705912618349998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12111594105, 50.706089110199997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1224587126, 50.702448955 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122726173649999, 50.707422202700002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122752157, 50.702288807149998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123015698250001, 50.707689104950006 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12316829085, 50.707858506449995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125184012, 50.7083604002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1279019095, 50.705115791 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13736063955, 50.70959071 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127764986797589, 50.709165552649999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127764986797589, 50.709345416722741 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128049015802411, 50.708985688577258 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12859948725, 50.704394351250002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128932449451097, 50.709874914213628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129382594587069, 50.709428663386369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129666624912932, 50.709248799313627 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12990277935, 50.70855303215 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1302418179, 50.707363024700001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129806280796804, 50.703164090818213 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129806280796804, 50.703343954890954 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130090266783431, 50.702984226745471 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130090266783431, 50.703164090818213 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130374252770058, 50.70280436267273 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130374252770058, 50.702984226745471 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130658238756685, 50.702624498599988 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130942224743312, 50.702444634527247 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131226210729939, 50.702264770454505 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131226210729939, 50.702444634527247 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131510196716566, 50.702084906381764 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131794182703193, 50.701905042309022 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13248582895, 50.705880406349998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.131938181681269, 50.705906509318126 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13222218837432, 50.705546781172643 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13222218837432, 50.705906509318126 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13222218837432, 50.706086373390868 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132506195067371, 50.705366917099902 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132506195067371, 50.705546781172643 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132506195067371, 50.706086373390868 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132790201760423, 50.705546781172643 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132790201760423, 50.706086373390868 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133074208453474, 50.706086373390868 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133074208453474, 50.706266237463609 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133358215146525, 50.706446101536351 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133642221839576, 50.706625965609092 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133926228532627, 50.706805829681834 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134210235225678, 50.706985693754575 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134210235225678, 50.707165557827317 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13449424191873, 50.707345421900058 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134590794251769, 50.702491413713631 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134874783648229, 50.702491413713631 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1350996381, 50.70918567415 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1352138238, 50.703048992299998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13535644615, 50.708095550549999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135541868, 50.7099409916 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13576003555, 50.702508710849997 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1362181788, 50.708891596550004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1379371294, 50.701022405513626 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137937347, 50.7012515077 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139427388250001, 50.708128007550002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.140520787250001, 50.709137232100005 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140454814094624, 50.704655789336371 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14072384395, 50.709031865499995 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14228531555, 50.708050097699996 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14269337925, 50.707933866700003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1429913503, 50.707688216599998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14312362625, 50.707587895 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14369029715, 50.707326192549999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1446607422, 50.706754807799996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142857844898447, 50.705310127281763 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142857844898447, 50.705489991354504 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143141851298729, 50.705489991354504 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143141851298729, 50.705669855427246 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143425857699012, 50.705669855427246 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143709864099295, 50.705849719499987 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143993870499577, 50.705849719499987 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14427787689986, 50.706029583572729 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144561883300143, 50.706029583572729 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144561883300143, 50.70620944764547 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144845889700425, 50.70620944764547 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144845889700425, 50.706389311718212 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145129896100708, 50.70620944764547 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145413902500991, 50.706029583572729 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145413902500991, 50.70620944764547 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145697908901274, 50.706029583572729 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145981915301556, 50.705849719499987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15073519235, 50.703944309800001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15095224915, 50.703816107199998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151084718850001, 50.703729397 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151098651450001, 50.703720269599998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15122404435, 50.703638122800001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1544756522, 50.702886769549998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.114883272249999, 50.715489717200001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115080987900001, 50.718445106899999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.11570694165, 50.719162787949998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1194408207, 50.717787508849995 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.11956267285, 50.717251450600003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1202595878, 50.71678627675 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12054358425, 50.716522912200006 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1206843996, 50.716786686900001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12135522805, 50.715526166350003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.121370782, 50.715881110950001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1220636867, 50.715249586550001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1222099663, 50.715153921050003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12303529075, 50.714426725300001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.123322603949999, 50.714599323949997 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.123451375, 50.714063125150005 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12345493775, 50.714508082599998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12359067745, 50.713971883650004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1235701795, 50.713697896550002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123712486400001, 50.717288261100002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12387101945, 50.714144412799996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1254920399, 50.71354906485 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126547222299999, 50.713857935649997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12654445535, 50.714033331750002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1279548828, 50.716743442099997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127901360299999, 50.71599781 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128185430699485, 50.715817945927256 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1287224338, 50.710101580699998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130133162150001, 50.714892991349998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132128352, 50.715426492899994 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1322319458, 50.710062342400001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1325819892, 50.711048575199996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1331513656, 50.710876868050001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133476758429298, 50.711255280272724 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133476758429298, 50.711435144345465 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133476758429298, 50.711615008418207 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133476758429298, 50.711794872490948 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133760793509473, 50.710176095836275 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133760793509473, 50.711075416199982 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133760793509473, 50.711255280272724 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133760793509473, 50.711435144345465 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133760793509473, 50.711615008418207 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133760793509473, 50.711794872490948 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133760793509473, 50.71197473656369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134044828589648, 50.710176095836275 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134044828589648, 50.710355959909016 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134044828589648, 50.710535823981758 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134044828589648, 50.710895552127241 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134044828589648, 50.711075416199982 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134044828589648, 50.711255280272724 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134044828589648, 50.711435144345465 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134044828589648, 50.711615008418207 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134044828589648, 50.711794872490948 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134044828589648, 50.71197473656369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134044828589648, 50.712154600636431 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134328863669823, 50.710355959909016 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134328863669823, 50.710535823981758 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134328863669823, 50.710715688054499 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134328863669823, 50.710895552127241 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134328863669823, 50.711075416199982 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134328863669823, 50.711255280272724 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134328863669823, 50.711435144345465 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134328863669823, 50.711615008418207 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134328863669823, 50.711794872490948 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134328863669823, 50.71197473656369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134612898749998, 50.710176095836275 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134612898749998, 50.710355959909016 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134612898749998, 50.710535823981758 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134612898749998, 50.710715688054499 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134612898749998, 50.710895552127241 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134612898749998, 50.711075416199982 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134612898749998, 50.711255280272724 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134612898749998, 50.711435144345465 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134612898749998, 50.711615008418207 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134612898749998, 50.711794872490948 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134896933830173, 50.710176095836275 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134896933830173, 50.710355959909016 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134896933830173, 50.710535823981758 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134896933830173, 50.710715688054499 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134896933830173, 50.710895552127241 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134896933830173, 50.711075416199982 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134896933830173, 50.711255280272724 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134896933830173, 50.711435144345465 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134896933830173, 50.711615008418207 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135180968910348, 50.709996231763533 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135180968910348, 50.710176095836275 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135180968910348, 50.710355959909016 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135180968910348, 50.710535823981758 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135180968910348, 50.710715688054499 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135180968910348, 50.710895552127241 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135180968910348, 50.711075416199982 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135180968910348, 50.711255280272724 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135465003990523, 50.709996231763533 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135465003990523, 50.710176095836275 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135465003990523, 50.710355959909016 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135465003990523, 50.710535823981758 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135465003990523, 50.710715688054499 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135465003990523, 50.710895552127241 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135465003990523, 50.711075416199982 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135749039070697, 50.709996231763533 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135749039070697, 50.710176095836275 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135749039070697, 50.710355959909016 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135749039070697, 50.710535823981758 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135749039070697, 50.710715688054499 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135749039070697, 50.711075416199982 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136033074150872, 50.710535823981758 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1360801395, 50.710803537649994 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13612806495, 50.710412175113625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135745366022805, 50.710875983636356 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13602940103187, 50.71015652734539 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13602940103187, 50.710336391418132 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13602940103187, 50.710696119563615 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13602940103187, 50.710875983636356 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13602940103187, 50.711055847709098 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13602940103187, 50.711235711781839 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13602940103187, 50.711415575854581 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136313436040934, 50.71015652734539 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136313436040934, 50.710336391418132 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136313436040934, 50.710516255490873 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136313436040934, 50.710696119563615 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136313436040934, 50.710875983636356 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136313436040934, 50.711055847709098 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136313436040934, 50.711235711781839 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136597471049999, 50.71015652734539 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136597471049999, 50.710336391418132 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136597471049999, 50.710516255490873 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136597471049999, 50.710875983636356 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136597471049999, 50.711055847709098 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136881506059064, 50.71015652734539 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136881506059064, 50.710336391418132 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136881506059064, 50.710516255490873 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136881506059064, 50.710696119563615 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137165541068129, 50.71015652734539 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137165541068129, 50.710336391418132 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137165541068129, 50.710516255490873 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137165541068129, 50.710696119563615 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137449576077193, 50.710336391418132 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1378027964, 50.710602165750004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1398137878, 50.711207299549997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141390374264858, 50.710006249917946 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141390374264858, 50.710186113990687 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141390374264858, 50.710365978063429 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141390374264858, 50.71054584213617 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141390374264858, 50.710725706208912 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141390374264858, 50.710905570281653 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141390374264858, 50.711085434354395 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11494199585, 50.720959330249997 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.115625903467532, 50.719346493149999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.115909995132468, 50.719346493149999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.11625031795, 50.719984569749997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.166875098549999, 50.689728064250005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.167827016698145, 50.689562843699996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16080067895, 50.695901799699996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.162141924449999, 50.695479746899998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.164255348899999, 50.691947782249997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16528322215, 50.691762269500003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145564849699999, 50.689503552849999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.147966937550001, 50.691709365850002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14795365945, 50.69116561485 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14797992375, 50.690792280149999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1479873274, 50.690796704250005 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1481060144, 50.691613601649998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.151565571500001, 50.688410558149997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14215380915, 50.697389601300003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14210663535, 50.695448273250001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1429661429, 50.695871353800001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14809026965, 50.691254166600004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11936449275, 50.704478940450002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12330522615, 50.707956006399996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14299676945, 50.697421858249996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12345095845, 50.7081299014 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13757799245, 50.70131794505 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115339587699999, 50.709336042250001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1444134867, 50.705907772849997 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120399658449999, 50.716425341 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.120544975650001, 50.716877925 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1216475812, 50.715613181799995 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12374038405, 50.708392376150002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1476881238, 50.691878494400001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1492077762, 50.690079040900002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1170625982, 50.719594725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1171491009, 50.720259201899999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.11522501535, 50.719441655349996 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1446034081, 50.689553522699995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138630477805274, 50.69189648055 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1390084381, 50.691257859036369 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14222628315, 50.690143140949999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14237637335, 50.690222434399999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1455463446, 50.688838176186373 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1445143804, 50.698130428650003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1362026246, 50.708541148050003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139668170773641, 50.690709688449999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139952088026359, 50.690529824377258 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139952088026359, 50.690709688449999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1363394813, 50.7086387007 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138561184357148, 50.691793108086365 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139129030928557, 50.691613244013624 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13917873579282, 50.691031465913625 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13917873579282, 50.691211329986366 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1396084634, 50.691067745650003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139671262249999, 50.6910266784 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135865190169436, 50.691969634809105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136149112641662, 50.691789770736364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136433035113888, 50.691609906663622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136433035113888, 50.691789770736364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136716957586114, 50.691609906663622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13700088005834, 50.691609906663622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137284802530567, 50.691430042590881 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136411654463195, 50.691958887400006 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13973384315, 50.690985611200006 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136573372834288, 50.691875010472742 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136857295678095, 50.691695146400001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136857295678095, 50.691875010472742 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137141218521903, 50.691695146400001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13742514136571, 50.691515282327259 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1377725699, 50.691499085550006 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137557035734611, 50.691315612063626 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137557035734611, 50.691495476136367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137840957465388, 50.691315612063626 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138171537103709, 50.691921368950005 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1365299847241, 50.691994533009108 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13681390753446, 50.691994533009108 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13738175315518, 50.691814668936367 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137665675965541, 50.691634804863625 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137995393838766, 50.691939203900006 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138149477600001, 50.691891087200005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13810093435, 50.691941003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13819899995, 50.691890603450005 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1381984559, 50.691868134300002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139865324300001, 50.691155130650003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138103736887143, 50.691741380322739 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13867158105, 50.691381652177256 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13867158105, 50.691561516249998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138955503131428, 50.691381652177256 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13945184435, 50.691042581700003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1394511909, 50.690978491949998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1395943144, 50.691067884 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139187628015731, 50.691635958536367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14003939216854, 50.691276230390883 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139565987117916, 50.69144389773637 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140235378450001, 50.691241407349999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1403061236, 50.691240715 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14030503355, 50.691195776800001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140318310550001, 50.691159687750002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139120226718584, 50.691792190072739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139404148306195, 50.691612326 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139404148306195, 50.691792190072739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139404148306195, 50.691972054145481 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139688069893805, 50.691792190072739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139971991481415, 50.691432461927256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139971991481415, 50.691612326 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139971991481415, 50.691792190072739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140255913069026, 50.691252597854515 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140255913069026, 50.691432461927256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14038905555, 50.691158995249999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140388837550001, 50.691150007650002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14042801415, 50.691010006699997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140674073371121, 50.691420155522742 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140957993828879, 50.691060427377259 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140957993828879, 50.691240291450001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139987140015529, 50.69084184512274 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1402710567, 50.690482116977257 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1402710567, 50.690661981049999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140859385786899, 50.690379560513627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140859385786899, 50.690559424586368 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141143301713101, 50.690379560513627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140645048890939, 50.690520559872738 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1409289639, 50.690160831727255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1409289639, 50.690340695799996 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14071490565, 50.690881547900005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140882450737871, 50.6910564605 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140951743900001, 50.691018639600003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14206269985, 50.690180686550001 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137068630292729, 50.691966522090958 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137352547353699, 50.691966522090958 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137636464414669, 50.691786658018216 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137636464414669, 50.691966522090958 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137920381475639, 50.691786658018216 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138204298536609, 50.691606793945475 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138204298536609, 50.691786658018216 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138488215597579, 50.691786658018216 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138772132658548, 50.691606793945475 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139339966780488, 50.691247065799992 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139339966780488, 50.691426929872733 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139623883841458, 50.691247065799992 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139907800902428, 50.69106720172725 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140191717963398, 50.69106720172725 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140475635024368, 50.690887337654509 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140759552085338, 50.690887337654509 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141043469146307, 50.690707473581767 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141327386207277, 50.690707473581767 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141457884562739, 50.6911187408 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1421297534, 50.690292477299998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141489534831498, 50.690265985072742 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141773448168501, 50.689906256927259 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141773448168501, 50.690086121 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.141815663299999, 50.690340826813625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142128071905751, 50.690057022163629 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140152645479041, 50.690838010659107 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140436560819361, 50.690838010659107 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140720476159681, 50.690658146586365 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14128830684032, 50.690478282513624 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141856137520959, 50.690298418440882 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14213562675, 50.69023391895 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141295544429219, 50.690937200459103 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141579460443073, 50.690757336386362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141863376456927, 50.69057747231362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141863376456927, 50.690757336386362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142147292470781, 50.69057747231362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142431208484634, 50.690397608240879 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14259936725, 50.690108562749998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142899303, 50.689920777449998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14282801365, 50.689895063599998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1428731908, 50.690020474249998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143039696700001, 50.689874451249999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1432538928, 50.689957751449995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14326203115, 50.68955297441363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14326203115, 50.689732838486371 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143137964918327, 50.6901382661 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143421878681672, 50.6901382661 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143705792445018, 50.689958402027258 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141634984667499, 50.691022690309104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141918900505357, 50.690842826236363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141918900505357, 50.691022690309104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142202816343215, 50.690842826236363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142202816343215, 50.691022690309104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142486732181072, 50.690842826236363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14277064801893, 50.69048309809088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14277064801893, 50.690662962163621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143054563856787, 50.69048309809088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143054563856787, 50.690662962163621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143338479694645, 50.69048309809088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143622395532502, 50.690303234018138 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143622395532502, 50.69048309809088 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1362018311, 50.702091140099995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14102646268222, 50.691129261818212 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141594290729332, 50.69094939774547 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141878204752888, 50.690769533672729 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142162118776444, 50.690589669599987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1424460328, 50.690589669599987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142729946823556, 50.690409805527246 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143013860847112, 50.690229941454504 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143297774870668, 50.690229941454504 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143581688894224, 50.690229941454504 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14386560291778, 50.690050077381763 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.143940363169203, 50.689783341436367 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.144224274730797, 50.689603477363626 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14436200825, 50.689546828250002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144140814282791, 50.689512545300005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144424724917211, 50.689512545300005 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144016364132336, 50.689498063122741 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14430027295, 50.68931819905 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144584181767663, 50.689138334977258 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144794669636466, 50.68941535758637 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145078578963534, 50.689235493513628 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144580769815993, 50.689357633036366 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1448646786, 50.689177768963624 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145148587384008, 50.689177768963624 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1464217226, 50.688987193049996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144397494839994, 50.691855662136369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144681418599999, 50.691675798063628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144681418599999, 50.691855662136369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144965342360005, 50.691675798063628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144965342360005, 50.691855662136369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145249266120011, 50.691855662136369 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.145246431579403, 50.689389926763624 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141523612143669, 50.690516013681844 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141523612143669, 50.690695877754585 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141807522575412, 50.690336149609102 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141807522575412, 50.690516013681844 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142375343438898, 50.690156285536361 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142375343438898, 50.690336149609102 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142659253870641, 50.689976421463619 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142659253870641, 50.690156285536361 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142943164302384, 50.689976421463619 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143227074734127, 50.689796557390878 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143227074734127, 50.689976421463619 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14351098516587, 50.689796557390878 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14351098516587, 50.689976421463619 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143794895597613, 50.689796557390878 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144078806029356, 50.689796557390878 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144362716461099, 50.689616693318136 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144362716461099, 50.689796557390878 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144646626892841, 50.689616693318136 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1450446381, 50.689598449763629 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14805363905, 50.691492687050001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144896341899638, 50.689794759636371 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14518025345, 50.689794759636371 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1455758227, 50.689395562200005 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1481898712, 50.691855500450004 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14536727615, 50.6892808096 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145464934250001, 50.689526995750001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14556388725, 50.688878703949996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145006865285987, 50.689396522086369 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1452907735, 50.689396522086369 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145574681714013, 50.689036793940886 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145574681714013, 50.689216658013628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144948160978634, 50.689855391799995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145232073, 50.689855391799995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145232073, 50.690035255872736 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148210436399999, 50.691828328450001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.145794202899999, 50.689087895900002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145732429609561, 50.689015145886373 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145728268766571, 50.688726999099998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1526122951, 50.687222548249999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145711985828096, 50.689409474172741 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146279802171903, 50.689049746027258 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14635174805, 50.689023839649998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146351528849999, 50.689014852 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14636589635, 50.689023700450001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1463656772, 50.689014712800002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1462838074, 50.688763908263624 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146414319750001, 50.688982768849996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146463181350001, 50.688950824900004 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1464629622, 50.688941837249999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145777953774548, 50.689440805536364 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146061862, 50.689260941463623 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146345770225452, 50.689260941463623 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146477329650001, 50.688950685649999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14647711055, 50.688941698050002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146832384928996, 50.689060928536371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145866349776234, 50.689664703309106 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146150258, 50.689484839236364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146434166223766, 50.689125111090881 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146434166223766, 50.689304975163623 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146434166223766, 50.689484839236364 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1465607948, 50.688891430650003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14660334925, 50.688912925049998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1468431615, 50.688488779713623 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146900134699999, 50.688915608450003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146891861349999, 50.688231922050001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1482316503, 50.688065893649998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146210296087324, 50.691821260222738 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14649421845, 50.691461532077255 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14649421845, 50.691641396149997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146778140812676, 50.691461532077255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14582892897532, 50.691500708513622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14582892897532, 50.691860436659105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14611285071266, 50.691500708513622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14611285071266, 50.691680572586364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14639677245, 50.691500708513622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14668069418734, 50.691320844440881 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14691395415, 50.688870182900004 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.147502539, 50.691813038399999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1469987658271, 50.688847003586368 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14705039355, 50.6886573719 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147035864, 50.688360849799999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1476911391, 50.691716577899996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145647193613721, 50.689125467845471 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145647193613721, 50.689305331918213 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145931096824087, 50.689125467845471 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146498903244818, 50.688585875627247 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146498903244818, 50.688765739699988 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146782806455183, 50.688765739699988 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147066709665549, 50.688585875627247 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147350612875915, 50.688406011554505 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147061188123318, 50.688784878072738 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1473450923, 50.688605014 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147628996476683, 50.688425149927255 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147451589, 50.691023409327258 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147735508906847, 50.691023409327258 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147230661839395, 50.690829938599997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147514579760604, 50.690829938599997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119329002900001, 50.7044118727 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146380708428985, 50.691902459631841 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146664628537391, 50.691722595559099 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146948548645797, 50.691542731486358 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147232468754203, 50.691362867413616 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147516388862609, 50.691183003340875 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147800308971015, 50.691003139268133 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.147830436, 50.691625307800003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147127815971289, 50.688927760409108 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147411720249999, 50.688747896336366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147695624528709, 50.688388168190883 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14782764065, 50.691800636050004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147939013449999, 50.690855611700002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14795327205, 50.6908599661 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1479521747, 50.690815028 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148231221050001, 50.691810144050002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14824405305, 50.691756078899999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14825710455, 50.691711001350001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14816908155, 50.688106965399996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1482155851, 50.691446354649997 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.147581105333388, 50.688257756386371 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1478650073, 50.688257756386371 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.148148909266612, 50.688077892313629 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14829443845, 50.68802482185 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14832785025, 50.691710304049998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14837203305, 50.688015067249999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148168830541022, 50.688114628299999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148452732658979, 50.688114628299999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147278640990313, 50.691518929895473 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147278640990313, 50.691878658040956 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147562557563438, 50.691339065822731 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147562557563438, 50.691698793968214 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147562557563438, 50.691878658040956 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147846474136562, 50.690979337677248 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147846474136562, 50.69115920174999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147846474136562, 50.691339065822731 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147846474136562, 50.691518929895473 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147846474136562, 50.691698793968214 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147846474136562, 50.691878658040956 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148130390709687, 50.690799473604507 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148130390709687, 50.690979337677248 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148130390709687, 50.69115920174999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148130390709687, 50.691339065822731 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148130390709687, 50.691518929895473 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148130390709687, 50.691698793968214 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148130390709687, 50.691878658040956 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148414307282811, 50.690799473604507 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148414307282811, 50.690979337677248 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148414307282811, 50.691518929895473 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148698223855936, 50.690439745459024 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148698223855936, 50.690619609531765 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148698223855936, 50.690799473604507 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14858326525, 50.687905625863628 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14858326525, 50.68808548993637 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148085089587605, 50.687931134036369 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148368989512397, 50.687751269963627 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148652889437189, 50.687751269963627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147799872890887, 50.687985743272741 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14878427575, 50.690995470100006 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14878790915, 50.687660365550002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14872631389888, 50.687927188163627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14786841956455, 50.687724990599996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14815231835485, 50.687724990599996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148436217145149, 50.687545126527255 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.148622959343767, 50.691130409986364 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148756119294618, 50.691448493636365 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149040040905383, 50.691268629563623 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14918569625, 50.690600532 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149278174358875, 50.687473328899998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14933397215, 50.690176453113629 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14933397215, 50.690356317186371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147574107636225, 50.690420357136361 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147858020781735, 50.690240493063619 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147858020781735, 50.690420357136361 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147858020781735, 50.690600221209102 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148141933927245, 50.690060628990878 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148141933927245, 50.690240493063619 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148141933927245, 50.690420357136361 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148425847072755, 50.690060628990878 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148709760218265, 50.689880764918136 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148709760218265, 50.690060628990878 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148200253605322, 50.69056219207274 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148484167599999, 50.690202463927257 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148484167599999, 50.690382328 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148768081594677, 50.690022599854515 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14923115185, 50.687525161349996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149298577250001, 50.689691735899999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.149128455381626, 50.690378716436371 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.149412370118375, 50.690198852363629 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.149412370118375, 50.690378716436371 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148110121976395, 50.690750555745474 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148394036025465, 50.690570691672733 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148677950074535, 50.69021096352725 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148677950074535, 50.690390827599991 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149011375, 50.687828967900003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14906371875, 50.690260188750003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149025523, 50.68782882835 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14908145585, 50.687792319700002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14907383275, 50.687787895650004 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.148264623469588, 50.691303964236361 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.148264623469588, 50.691483828309103 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.148548542756529, 50.69112410016362 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.148548542756529, 50.691303964236361 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1491367297, 50.687746823449999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148603192099119, 50.691694926909108 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1488871126, 50.691515062836366 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149454953601761, 50.691155334690883 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148894192658207, 50.691850480122739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14917811555, 50.691670616049997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14917811555, 50.691850480122739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149462038441793, 50.691490751977256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149462038441793, 50.691670616049997 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13636211375, 50.708989149200001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149271171173271, 50.689541974599997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149588773750001, 50.689450423400004 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1494711487, 50.689545979900004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1496029222, 50.689450283799999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144650309499999, 50.697899923750001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149497862787062, 50.687734276800001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14969946035, 50.687610919699999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144714974099999, 50.6979398119 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1496146531, 50.689351280400004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1496285818, 50.689342153200002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149024801588938, 50.687920393036372 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149592602311062, 50.68774052896363 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14967733195, 50.6893102079 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13631309365, 50.701950451549997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147669670651058, 50.688057239159107 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147953569265042, 50.688057239159107 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148521366493009, 50.687877375086366 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148805265106993, 50.687697511013624 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148805265106993, 50.687877375086366 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149089163720976, 50.687697511013624 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149656960948944, 50.687517646940883 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13678945465, 50.709389381500003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148739334945409, 50.691878042695478 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149023255981803, 50.691698178622737 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149307177018198, 50.691338450477254 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149307177018198, 50.691518314549995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149591098054592, 50.691338450477254 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149875019090986, 50.691338450477254 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149893225, 50.689168735549998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149955793449999, 50.689127662849998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150018581599999, 50.689086590149998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136773461, 50.709020957850001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149688220660952, 50.68720023745 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149972117239049, 50.68720023745 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1501116953, 50.687107917649996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15009463855, 50.6890363901 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149832643686747, 50.689154332386366 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150116551413253, 50.688974468313624 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149778012147378, 50.687657838150002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150061911552623, 50.687657838150002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150059822746425, 50.687451695463629 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149694305775265, 50.687111967100002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149978201824736, 50.687111967100002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148729804453858, 50.690484081845462 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148729804453858, 50.690663945918203 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148729804453858, 50.690843809990945 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149013712452315, 50.690124353699979 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149013712452315, 50.69030421777272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149013712452315, 50.690484081845462 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149013712452315, 50.690843809990945 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149297620450772, 50.689764625554496 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149297620450772, 50.689944489627237 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149297620450772, 50.690484081845462 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149297620450772, 50.691023674063686 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14958152844923, 50.689584761481754 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14958152844923, 50.689944489627237 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149865436447687, 50.689225033336271 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149865436447687, 50.689584761481754 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.150149344446144, 50.68904516926353 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.150149344446144, 50.689584761481754 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1502375887, 50.688769788849996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148961475605976, 50.690743382981843 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149245387302988, 50.690743382981843 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149529299, 50.690203790763618 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149529299, 50.69038365483636 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149813210697014, 50.689844062618135 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149315253898597, 50.690702240781846 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14959916565, 50.690522376709104 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149883077401403, 50.68998278449088 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149883077401403, 50.690162648563621 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150166989152805, 50.689623056345397 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150229964799999, 50.6887653649 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149682149901033, 50.691418471013627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149966072, 50.691418471013627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150249994098968, 50.691598335086368 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1503233934, 50.68939822355 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15032229385, 50.689353285449997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.15032207395, 50.689344297849999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1512221336, 50.688535316599996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151221913500001, 50.688526329 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150393035900001, 50.689352586950001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150392816, 50.689343599349996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.150342707321363, 50.687183627913626 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1215767942, 50.706426487649999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1497183150267, 50.690521678609102 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1497183150267, 50.690701542681843 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1497183150267, 50.690881406754585 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150002226775567, 50.690161950463619 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150002226775567, 50.69034181453636 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150002226775567, 50.690521678609102 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150286138524434, 50.689802222318136 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150286138524434, 50.689982086390877 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150286138524434, 50.690161950463619 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150286138524434, 50.69034181453636 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150570050273301, 50.689982086390877 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1506388693, 50.688406302650002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1506681554, 50.688459809150004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1508238266, 50.689042676500002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.150493103785578, 50.687179199436372 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15079322005, 50.688971055099998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.150743700950001, 50.688890599713631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150847359149999, 50.689091828849996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150975277600001, 50.688875497249995 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1511392251, 50.688617043899995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1511383449, 50.688581093449997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151137354599999, 50.6885406492 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.151152493050001, 50.688580953650003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15115139275, 50.6885360156 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151151172700001, 50.688527028 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1514172364, 50.688412026449996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151491039150001, 50.68766963945 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15146937705, 50.687660721749999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151539676300001, 50.6876331996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1515275095, 50.687687265050002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151011893610246, 50.688125735736364 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151011893610246, 50.688305599809105 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151295792749999, 50.687945871663622 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151579691889753, 50.687766007590881 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151863591029506, 50.687586143518139 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15186579265, 50.688277230799997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151562349296674, 50.688382378272742 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151846251203327, 50.6882025142 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151559266769029, 50.68831490127274 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151843168130972, 50.687955173127257 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151843168130972, 50.688135037199999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15266049025, 50.687172626500001 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151276054496828, 50.688473638509109 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.15155995575, 50.688113910363626 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1519703333, 50.687314227350001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.151776885967391, 50.687252712949999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15206078293261, 50.687252712949999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1521239243, 50.687798229400002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1520967826, 50.687268100200001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15202541245, 50.687983608663629 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149813459508056, 50.687324609704582 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149813459508056, 50.687504473777324 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150097348291469, 50.687144745631841 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150381237074882, 50.687144745631841 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.15266026995, 50.687163638900003 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151906858080088, 50.687435056336369 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152190755019912, 50.687255192263628 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.15258322845, 50.687204852950003 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15263241515, 50.6871818941 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152046326840903, 50.68775712732274 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152330224859096, 50.687397399177257 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152332448799999, 50.687059146400003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.152480975650001, 50.687354198249999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15238004375, 50.68739584606363 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15238004375, 50.687575710136372 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.15246660755, 50.687345350550004 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1526392687, 50.687172836450003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15252319875, 50.687344790799997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1525220972, 50.687299852700001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15251634515, 50.68735384835 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1524973266, 50.687443794450004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.152190669365405, 50.68775614787274 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.152474567434595, 50.687576283799999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1525364653, 50.687308700350002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15253536365, 50.687263762300006 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.152535143350001, 50.687254774699994 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152534812900001, 50.687241293300005 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15254885055, 50.687236659500002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152228461902984, 50.687782354986368 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152512360997015, 50.687602490913626 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15259052265, 50.687209276799997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15260489075, 50.687218124400005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150936143202299, 50.687042940954584 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.152694066845098, 50.687166718736371 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.152807910090246, 50.687160825036372 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13797407545, 50.709773784099994 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14935122162272, 50.689889449868268 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.149635115262331, 50.689709585795526 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.149919008901943, 50.689349857650043 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.149919008901943, 50.689529721722785 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.150202902541555, 50.68899012950456 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.150202902541555, 50.689169993577302 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.150202902541555, 50.689349857650043 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.150486796181166, 50.688630401359077 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.150486796181166, 50.688810265431819 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.150486796181166, 50.68899012950456 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.150770689820778, 50.688630401359077 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.150770689820778, 50.688810265431819 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.15105458346039, 50.688450537286336 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.15105458346039, 50.688630401359077 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.151338477100001, 50.688090809140853 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.151338477100001, 50.688270673213594 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.151622370739613, 50.687910945068111 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.151906264379225, 50.687551216922628 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.151906264379225, 50.68773108099537 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.152190158018836, 50.687371352849887 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.152474051658448, 50.687191488777145 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13135190605, 50.6958184004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1536637502, 50.687342520313628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1536637502, 50.687522384386369 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1535108984, 50.687227012263627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1535108984, 50.687406876336368 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.153293251388344, 50.687102628236367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1377265893, 50.701298518800002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15423044835, 50.687139103700005 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153868302244774, 50.687055837263621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15415219725, 50.687235701336363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154436092255226, 50.687055837263621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154436092255226, 50.687235701336363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154436092255226, 50.687415565409104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154719987260452, 50.687235701336363 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1315745268, 50.695645436150002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1241666449, 50.708752144249999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13232270165, 50.706165030249998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13660965055, 50.701677854549999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136754661299999, 50.701537234550003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1369255622, 50.7091678727 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12766254235, 50.697795884350001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137725501249999, 50.701285037350004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13887810445, 50.708528513499999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138899009, 50.708514824549994 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12355430053401, 50.701062847545479 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12383827686715, 50.700882983472738 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12383827686715, 50.701062847545479 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12412225320029, 50.700703119399996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12412225320029, 50.700882983472738 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12412225320029, 50.701062847545479 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12440622953343, 50.700523255327255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12440622953343, 50.700703119399996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12440622953343, 50.700882983472738 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12469020586657, 50.700523255327255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12469020586657, 50.700703119399996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12497418219971, 50.700523255327255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125542134865991, 50.700343391254513 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1277043487, 50.697763400249997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12439807315351, 50.701103417345479 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124682050026755, 50.700923553272737 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1249660269, 50.700743689199996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125250003773245, 50.700563825127254 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127165647544198, 50.70000194572274 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1274606937, 50.697937247500001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124669549835438, 50.701098265018217 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124953524490292, 50.700918400945476 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125237499145146, 50.700738536872734 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1255214738, 50.700558672799993 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125805448454854, 50.700378808727251 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126089423109708, 50.70019894465451 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12738681225, 50.697708280413629 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125819524161001, 50.700924718059106 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126103500587001, 50.700744853986365 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126387477013001, 50.700564989913623 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126671453439001, 50.700385125840882 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1275640491, 50.699594856700003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1275483079, 50.698965719699999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1311567196, 50.695964126549995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125750772750967, 50.700986879159103 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126034749550484, 50.700986879159103 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12631872635, 50.700807015086362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12631872635, 50.700986879159103 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126602703149516, 50.70062715101362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126602703149516, 50.700807015086362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126886679949033, 50.700447286940879 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126886679949033, 50.70062715101362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127031526850001, 50.697621621063625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127031526850001, 50.697801485136367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12688272595, 50.697531825927257 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12688272595, 50.69771169 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12688272595, 50.69789155407274 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126626877946462, 50.699561941149994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12691084765354, 50.699382077077253 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127194817360618, 50.699202213004511 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127590908353097, 50.698831260163622 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1275644, 50.698983626550003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1369413396, 50.709522814899998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126214575177256, 50.699810567859103 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126214575177256, 50.699990431931845 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126498544125752, 50.699270975640879 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126498544125752, 50.69945083971362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126782513074248, 50.699270975640879 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127066482022745, 50.699091111568137 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12737747361412, 50.698021603249998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127734848399999, 50.698154843399998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126430834051819, 50.699961429295477 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126714803750606, 50.699781565222736 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127282743148181, 50.699241973004511 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127074696496244, 50.697665190463624 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127358656403756, 50.697845054536366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127427168700001, 50.699775979500004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127562716500865, 50.699683418936367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127846687799135, 50.699503554863625 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12784738675, 50.698729095450005 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127985617353426, 50.69802361863637 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1280437797, 50.698641794750003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12797445185064, 50.69850614428637 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128258416049359, 50.698326280213628 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127591213176309, 50.69801410876363 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1278751753, 50.698193972836371 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127982498078132, 50.698600514836372 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12794880341927, 50.698233472200002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12830575005, 50.698351585799998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1283040239, 50.69827968445 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1297576012, 50.6975374222 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127740162662439, 50.698013479250001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128319146100001, 50.698319992 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124911554750414, 50.701078892495538 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125195519383678, 50.701078892495538 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125479484016942, 50.700899028422796 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125763448650207, 50.700539300277313 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125763448650207, 50.700719164350055 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126047413283471, 50.700359436204572 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126047413283471, 50.700539300277313 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126331377916736, 50.70017957213183 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126331377916736, 50.700359436204572 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12661534255, 50.699999708059089 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126899307183264, 50.699819843986347 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127183271816529, 50.699460115840864 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127183271816529, 50.699639979913606 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127467236449793, 50.699280251768123 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127751201083058, 50.69892052362264 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127751201083058, 50.699100387695381 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128035165716322, 50.698740659549898 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128035165716322, 50.69892052362264 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128319130349587, 50.698380931404415 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128319130349587, 50.698560795477157 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13032087415, 50.696511626299994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1303836875, 50.696470564050003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127965805270387, 50.699332284895476 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12824977125, 50.698972556749993 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12824977125, 50.699152420822735 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128533737229613, 50.69861282860451 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1285425443, 50.69823186795 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125575241390723, 50.701048233695531 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126143169954434, 50.700508641477306 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12642713423629, 50.700328777404565 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126711098518146, 50.700148913331823 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126995062800002, 50.699969049259082 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127279027081857, 50.69978918518634 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127562991363713, 50.699429457040857 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127846955645569, 50.699249592968116 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127846955645569, 50.699429457040857 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128130919927425, 50.698889864822632 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128130919927425, 50.699069728895374 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12841488420928, 50.698710000749891 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128698848491136, 50.698350272604408 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128698848491136, 50.698530136677149 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1369325233, 50.702133324550005 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12860631785, 50.698730820549997 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1287314267, 50.698100244450004 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.128869592099999, 50.697964127 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12890053345, 50.698278708563628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12898225145, 50.698547283836369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12849200663811, 50.697766057181845 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128775962012703, 50.697406329036362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129059917387297, 50.697046600890879 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129059917387297, 50.69722646496362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12934387276189, 50.696866736818137 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129059260939387, 50.698184390409111 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12934322125, 50.698004526336369 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129627181560613, 50.697644798190886 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129627181560613, 50.697824662263628 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128413667834852, 50.69801133860458 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12898157764697, 50.697471746386356 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129265532553029, 50.697112018240873 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129549487459087, 50.696932154168131 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1302769093, 50.696485075150001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12961003855, 50.698002318122739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12989399775567, 50.697462725904515 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12989399775567, 50.697822454049998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130056225200001, 50.696689356549996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130057309, 50.697323261600005 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13035177625, 50.697176439049997 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13692512095, 50.702128899750001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12968902441489, 50.696664190763627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12968902441489, 50.696844054836369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129972978385109, 50.696664190763627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1300870156, 50.697345456250005 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13035047235, 50.696533820900001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13060686525, 50.696953838500001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130614913500001, 50.696958263599996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12875483686822, 50.697798028531842 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129322745450001, 50.697258436313618 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129606699740891, 50.697078572240876 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129890654031781, 50.696898708168135 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130174608322672, 50.696718844095393 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136960284300001, 50.702115073100003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130412974283359, 50.696307674436369 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130535524106377, 50.69638684693637 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130819475693623, 50.696206982863629 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13088273115, 50.696047556799996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130919405, 50.696065326099998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1311645519, 50.695968551699998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130893459036045, 50.696777729513627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131177413863955, 50.696777729513627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131294438899999, 50.695782999399995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131012365722322, 50.695929055536368 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131296314077677, 50.695749191463626 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128320482462774, 50.698246743150051 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12860443200022, 50.698066879077309 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128888381537665, 50.697887015004568 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128888381537665, 50.698066879077309 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129172331075111, 50.697527286859085 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129172331075111, 50.697707150931826 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129456280612557, 50.697347422786343 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129456280612557, 50.697527286859085 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129740230150002, 50.697167558713602 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129740230150002, 50.697347422786343 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130024179687448, 50.69698769464086 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130024179687448, 50.697167558713602 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130308129224893, 50.696627966495377 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130308129224893, 50.696807830568119 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130592078762339, 50.696448102422636 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130592078762339, 50.696627966495377 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130876028299785, 50.696268238349894 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130876028299785, 50.696448102422636 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13115997783723, 50.696088374277153 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13115997783723, 50.696268238349894 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13696006685, 50.702106085449998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1315453174, 50.695735545527256 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1315453174, 50.695915409599998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131667388049242, 50.696624528386366 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130958552961827, 50.696750025759108 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131242504499999, 50.696570161686367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131526456038172, 50.696390297613625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138064481262957, 50.698911750150003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138650454028376, 50.698627049 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138650454028376, 50.698806913072744 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138934419171623, 50.698447184927261 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138934419171623, 50.698627049 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131283478249951, 50.695461587986365 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131567423150048, 50.695281723913624 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131567423150048, 50.695461587986365 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129068330785485, 50.698036829327314 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129352281126613, 50.697856965254573 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129636231467742, 50.69749723710909 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129920181808871, 50.697317373036348 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13020413215, 50.697137508963607 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130488082491129, 50.696957644890865 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130772032832258, 50.696777780818124 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131055983173387, 50.696418052672641 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131055983173387, 50.696597916745382 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131339933514516, 50.696238188599899 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131339933514516, 50.696418052672641 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131623883855645, 50.696058324527158 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131726922436779, 50.696159477649999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131726922436779, 50.696339341722741 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13201087226322, 50.695979613577258 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13201087226322, 50.696159477649999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131756256624983, 50.695053651450003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131756256624983, 50.695233515522744 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132040199975016, 50.694873787377261 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13219995895, 50.695774271250002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13238817505, 50.695660000250001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13318304695, 50.695175743500002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134830937856545, 50.692716544227252 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134830937856545, 50.693076272372736 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135114867143455, 50.692536680154511 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135114867143455, 50.692716544227252 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135114867143455, 50.692896408299994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131766323568712, 50.695353212086367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13205026755, 50.695173348013626 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132490009450001, 50.695187047749997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1325345887, 50.695572898199998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13262237945, 50.695100289449996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13270136085, 50.695409744749995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1384568356, 50.700590005286372 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13170757576795, 50.696492391281843 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131991522283975, 50.696312527209102 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131991522283975, 50.696492391281843 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132275468800001, 50.69613266313636 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132559415316026, 50.695772934990877 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132843361832051, 50.695413206845394 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1328822825, 50.6953090919 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13294418245, 50.693779813549995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132697173956364, 50.693524353149996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132981108, 50.693344489077255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133265042043636, 50.693524353149996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133215737700001, 50.693894933050004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133397824699999, 50.694953481249996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134007434649378, 50.693654319 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134007434649378, 50.693834183072738 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13429136925, 50.693474454927255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13429136925, 50.693654319 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134575303850621, 50.693474454927255 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1372082093, 50.709434808099999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132567257832759, 50.694868243059105 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132851197844253, 50.694688378986363 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133135137855747, 50.694508514913622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13326978935, 50.695296237486367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13326978935, 50.695476101559109 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133553733103922, 50.694936509340884 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133553733103922, 50.695116373413626 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131767621794027, 50.695473619281842 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132051562279352, 50.6952937552091 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132335502764676, 50.695113891136359 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132619443250001, 50.694934027063617 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133187324220651, 50.694574298918134 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133471264705975, 50.694394434845393 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132544516049596, 50.694478007349993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132544516049596, 50.694657871422734 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132544516049596, 50.694837735495476 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132828453883199, 50.694298143277251 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132828453883199, 50.694478007349993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133112391716803, 50.694298143277251 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133396329550406, 50.694298143277251 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132888453784046, 50.693561273104514 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132888453784046, 50.693741137177255 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133172388861349, 50.693741137177255 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133456323938651, 50.693921001249997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133740259015953, 50.694100865322739 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1347080288, 50.693637173136366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1386301404, 50.700327925300002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1372240978, 50.709816643949999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133014682728264, 50.693596604254509 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133298618239132, 50.69377646832725 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133582553749999, 50.69377646832725 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133582553749999, 50.693956332399992 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133866489260867, 50.693956332399992 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133866489260867, 50.694136196472734 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134272369650001, 50.694261675150003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133991955549045, 50.69394259948637 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13427589195, 50.693762735413628 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13427589195, 50.69394259948637 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134340940393634, 50.693954083536369 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134624877006367, 50.693774219463627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133690716362634, 50.694911390036367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133974657956317, 50.694911390036367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134258599550001, 50.694731525963626 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134258599550001, 50.694911390036367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133887444942338, 50.694768138286371 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131762997112039, 50.695615305163685 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131762997112039, 50.695795169236426 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132046932073487, 50.695435441090943 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132046932073487, 50.695615305163685 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132330867034934, 50.695255577018202 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132330867034934, 50.695435441090943 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132614801996382, 50.69507571294546 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132614801996382, 50.695255577018202 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132898736957829, 50.694895848872719 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132898736957829, 50.69507571294546 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133182671919276, 50.694715984799977 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133182671919276, 50.694895848872719 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133466606880724, 50.694536120727236 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133466606880724, 50.694715984799977 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133750541842171, 50.694536120727236 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134034476803619, 50.694176392581753 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134034476803619, 50.694356256654494 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134318411765066, 50.694176392581753 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134318411765066, 50.694356256654494 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134602346726513, 50.693996528509011 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134602346726513, 50.694176392581753 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134602346726513, 50.694356256654494 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134886281687961, 50.693636800363528 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134886281687961, 50.69381666443627 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134886281687961, 50.694536120727236 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134849309050001, 50.693415555313628 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134849309050001, 50.693595419386369 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1350931338, 50.694847212200003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13494528118886, 50.694892426199999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134869041317526, 50.694262242936361 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135152978982475, 50.694082378863619 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13531749365, 50.694467524900006 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1353244601, 50.694462686350001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134991106254517, 50.693227587945479 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1352750352, 50.692508131654513 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1352750352, 50.692687995727255 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1352750352, 50.692867859799996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13561916795, 50.693479860300002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134887661082945, 50.694046552399996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134887661082945, 50.694406280545479 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135171597217054, 50.693866688327255 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135455533351164, 50.693686824254513 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131735724032584, 50.696103752677317 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132019664799357, 50.695744024531834 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132019664799357, 50.695923888604575 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132303605566131, 50.695564160459092 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132587546332904, 50.695384296386351 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132871487099678, 50.695204432313609 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133155427866451, 50.695024568240868 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133439368633224, 50.694844704168126 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133723309399998, 50.694664840095385 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134007250166771, 50.694664840095385 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134291190933545, 50.694484976022643 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134575131700318, 50.694484976022643 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134859072467092, 50.694664840095385 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135143013233865, 50.694844704168126 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135426954000638, 50.694844704168126 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135710894767412, 50.695024568240868 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13566223155, 50.6923423701 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13546204214933, 50.692361917936367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135230962646159, 50.694933172413627 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1373694519, 50.709945859299999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135114326206487, 50.693275558381842 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1353982541, 50.692915830236359 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1353982541, 50.6930956943091 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135682181993513, 50.692556102090876 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135682181993513, 50.692735966163617 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135556361803386, 50.694706123300001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135840303796614, 50.694706123300001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13587910175, 50.695158551350005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13580960575, 50.69228250215 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135887427249999, 50.692281743449996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1358801354, 50.692272824749999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1373164226, 50.695774297150002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1373062616, 50.701788065200006 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135367436423676, 50.693921316527252 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135367436423676, 50.694101180599993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135367436423676, 50.694281044672735 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135367436423676, 50.694460908745477 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135651372976326, 50.69374145245451 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135651372976326, 50.693921316527252 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135651372976326, 50.694101180599993 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135837818313169, 50.693355189322737 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13612175048683, 50.692995461177254 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136065323144795, 50.692005840013628 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135978133820167, 50.694796644313627 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136262076879832, 50.694976508386368 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1389617226, 50.708473757699998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135952343659262, 50.700567268927259 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135952343659262, 50.700747133 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135952343659262, 50.700926997072742 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136236321240736, 50.700747133 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136086584014393, 50.692184048236371 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136370510185608, 50.692004184163629 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1363999041, 50.700759257263627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1363999041, 50.700939121336368 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136683882945068, 50.700759257263627 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136513736958434, 50.700989872486367 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136797716441566, 50.700810008413626 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139024436050001, 50.708432690799995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135729143628339, 50.693303853481844 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136013071909447, 50.692764261263619 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136013071909447, 50.692944125336361 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136297000190554, 50.692584397190878 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136297000190554, 50.692764261263619 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136580928471662, 50.692404533118136 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136400017688619, 50.694976750963626 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13668396181138, 50.695156615036367 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134994475434102, 50.693469277468203 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134994475434102, 50.693649141540945 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135278401537635, 50.693289413395462 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135278401537635, 50.693469277468203 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135278401537635, 50.693649141540945 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135562327641168, 50.69310954932272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135562327641168, 50.693289413395462 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135846253744701, 50.692390093031754 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135846253744701, 50.692569957104496 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135846253744701, 50.692749821177237 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135846253744701, 50.692929685249979 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136130179848234, 50.692390093031754 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136414105951767, 50.692210228959013 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1366980320553, 50.692210228959013 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136981958158833, 50.692030364886271 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137265884262366, 50.692030364886271 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1313379085, 50.713775011400003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135946801150609, 50.695235672277256 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136514691749798, 50.695415536349998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136730292399999, 50.692313976950004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13690171255, 50.695598065799999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136221726608863, 50.692207974536373 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13650565275, 50.692028110463632 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136789578891138, 50.692028110463632 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1381349333, 50.700930580600001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137991330349999, 50.692081417250002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136322387327714, 50.692629359286364 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1366063151, 50.692449495213623 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1366063151, 50.692629359286364 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136890242872286, 50.692269631140881 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1370290658, 50.695596823 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1370981513, 50.700509191449996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1370937209, 50.695636646 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137158593400001, 50.695685456600003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137158376, 50.695676468949998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1369686579, 50.692221753300004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1371727438, 50.695685318450003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137000162867192, 50.695098938227254 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13728410755, 50.695278802299995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137568052232808, 50.695458666372737 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135381063928292, 50.695049736018134 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135948952314146, 50.695409464163617 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136232896507073, 50.695409464163617 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136232896507073, 50.695589328236359 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1365168407, 50.695589328236359 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13756071265, 50.699676678113626 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13756071265, 50.699856542186367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13784468499605, 50.699676678113626 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137395981867871, 50.699292420063628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137395981867871, 50.69947228413637 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137395981867871, 50.699652148209111 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137679950632129, 50.699112555990887 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137679950632129, 50.699292420063628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137679950632129, 50.69947228413637 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13804174855, 50.700909148199997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13789092455, 50.696110025050004 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137113424333609, 50.692171276136371 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137681276488796, 50.691991412063629 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13796520256639, 50.691991412063629 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136776762579743, 50.69249332 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136776762579743, 50.692673184072738 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136776762579743, 50.69285304814548 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137060689259915, 50.692313455927255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137060689259915, 50.69249332 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137344615940087, 50.692313455927255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137628542620259, 50.692313455927255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137912469300431, 50.692133591854514 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137912469300431, 50.692313455927255 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136889394671583, 50.695183366140881 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137173339860792, 50.695363230213623 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137741230239208, 50.695543094286364 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138025175428417, 50.695722958359106 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13807600855, 50.692071600350005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137269752981606, 50.692223889536372 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137553679049999, 50.692223889536372 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13830497465, 50.700942887 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137927611347013, 50.699266402536367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1382115793, 50.699086538463625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138495547252987, 50.698906674390884 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13856057915, 50.700391391899998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1385594904, 50.700346453750001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138461298699999, 50.696293028949995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13857342445, 50.700337327849994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13858735845, 50.700328201950001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13858006485, 50.700323777249999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138622084650001, 50.700300893299996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13861533535, 50.700314443899998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1385793036, 50.700449963313631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13812386392459, 50.692024795950005 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138150303928089, 50.698473084649997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138434267742697, 50.698293220577256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138434267742697, 50.698473084649997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138434267742697, 50.698652948722739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138718231557304, 50.698293220577256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138718231557304, 50.698473084649997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139543788435488, 50.696672564636366 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141158723461204, 50.697114783622737 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141442678338797, 50.696755055477254 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137442024597163, 50.694991682918136 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137442024597163, 50.695171546990878 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137725968773582, 50.695351411063619 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138009912950001, 50.695351411063619 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138009912950001, 50.695531275136361 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138293857126421, 50.695531275136361 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138293857126421, 50.695711139209102 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13857780130284, 50.695711139209102 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138861745479259, 50.695711139209102 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1414804934, 50.694726237749997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141494425199999, 50.694717111499997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14150835705, 50.694707985249998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14152228885, 50.694698858949998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137676942769732, 50.699886824268205 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137676942769732, 50.700066688340947 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137960907959866, 50.699706960195464 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138244873150001, 50.699167367977239 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138244873150001, 50.699347232049981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138244873150001, 50.699527096122722 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138528838340135, 50.698987503904497 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138528838340135, 50.699167367977239 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13881280353027, 50.698807639831756 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139096768720404, 50.698627775759014 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138113426928135, 50.695695293013621 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138681321557287, 50.695875157086363 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139249216186438, 50.695875157086363 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139249216186438, 50.696055021159104 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136872546333406, 50.700787421954644 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136872546333406, 50.700967286027385 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137156504869505, 50.700427693809161 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137156504869505, 50.700607557881902 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137156504869505, 50.700787421954644 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137440463405604, 50.700247829736419 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137440463405604, 50.700427693809161 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137724421941703, 50.700067965663678 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137724421941703, 50.700247829736419 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138008380477802, 50.699888101590936 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138292339013901, 50.699528373445453 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138292339013901, 50.699708237518195 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13857629755, 50.699348509372712 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138860256086099, 50.698988781227229 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139144214622198, 50.698629053081746 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139144214622198, 50.698808917154487 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139428173158297, 50.698269324936263 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139428173158297, 50.698449189009004 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139712131694396, 50.698089460863521 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139996090230495, 50.697729732718038 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139996090230495, 50.69790959679078 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140280048766594, 50.697549868645297 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138800104040377, 50.700049141022738 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138800104040377, 50.70022900509548 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1390840752, 50.699869276949997 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139368046359624, 50.699509548804514 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139368046359624, 50.699689412877255 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135123027904745, 50.694506751649904 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135123027904745, 50.694686615722645 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135406968850779, 50.694686615722645 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135690909796812, 50.694866479795387 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135974850742846, 50.695046343868128 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13625879168888, 50.695046343868128 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136542732634913, 50.69522620794087 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136826673580947, 50.695406072013611 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13711061452698, 50.695406072013611 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137394555473014, 50.695585936086353 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137678496419047, 50.695765800159094 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137962437365081, 50.695765800159094 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138246378311115, 50.695945664231836 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138530319257148, 50.696125528304577 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138814260203182, 50.696125528304577 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139098201149215, 50.696305392377319 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139382142095249, 50.696305392377319 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139382142095249, 50.69648525645006 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1410486045, 50.695009151199997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138939227891213, 50.700172879459103 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138939227891213, 50.700352743531845 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13922319905, 50.699993015386362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13922319905, 50.700172879459103 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139507170208787, 50.699453423168137 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139507170208787, 50.699633287240879 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139507170208787, 50.69981315131362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139507170208787, 50.699993015386362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139791141367573, 50.699633287240879 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135821067617198, 50.69503598083628 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13610501183617, 50.695215844909022 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136672900274114, 50.695395708981764 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136956844493086, 50.695575573054505 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137808677150002, 50.695935301199988 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138092621368973, 50.69611516527273 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138660509806917, 50.696295029345471 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138944454025889, 50.696474893418213 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139228398244861, 50.696474893418213 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139796286682805, 50.69611516527273 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139796286682805, 50.696295029345471 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139796286682805, 50.696474893418213 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139796286682805, 50.696654757490954 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139796286682805, 50.696834621563696 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141133287300001, 50.694999332099997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14114721925, 50.694990205849997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138782354251767, 50.696506829990881 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139066307431061, 50.696686694063622 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139350260610354, 50.696686694063622 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139634213789647, 50.696866558136364 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139918166968941, 50.697046422209105 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140202120148234, 50.697046422209105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138105307561559, 50.696742131518135 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138389260808669, 50.696562267445394 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138389260808669, 50.696742131518135 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138389260808669, 50.696921995590877 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138673214055779, 50.696742131518135 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138673214055779, 50.696921995590877 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138957167302889, 50.696742131518135 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138957167302889, 50.696921995590877 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138957167302889, 50.697101859663618 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138957167302889, 50.697641451881843 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139241120549999, 50.696921995590877 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139241120549999, 50.697101859663618 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139241120549999, 50.69728172373636 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139241120549999, 50.697461587809102 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139241120549999, 50.697641451881843 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139241120549999, 50.697821315954585 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13952507379711, 50.697101859663618 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13952507379711, 50.69728172373636 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13952507379711, 50.697461587809102 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13952507379711, 50.697641451881843 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13980902704422, 50.697101859663618 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13980902704422, 50.69728172373636 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14009298029133, 50.697101859663618 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1411611512, 50.694981079599998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141175083149999, 50.6949719534 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1411890151, 50.69496282715 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137348310428613, 50.700754043018271 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13763226966289, 50.70057417894553 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137916228897168, 50.700214450800047 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138200188131445, 50.699854722654564 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138484147365722, 50.699674858581822 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1387681066, 50.699315130436339 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139052065834277, 50.698955402290856 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139336025068554, 50.698775538218115 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139619984302832, 50.698415810072632 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139903943537109, 50.698056081927149 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139903943537109, 50.69823594599989 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.140187902771387, 50.697876217854407 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.140471862005664, 50.697516489708924 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139545917667053, 50.697972892445478 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139829875489018, 50.697793028372736 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140113833310983, 50.697613164299995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14120294705, 50.694953700900001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141216879, 50.694944574700003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1412308109, 50.694935448450003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13949464603841, 50.697717187022739 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13949464603841, 50.697897051095481 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13977860347947, 50.697537322949998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13977860347947, 50.697717187022739 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139905043274502, 50.696842866363625 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140472952025498, 50.697022730436366 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14124382275, 50.697803057749994 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14123923975, 50.697614317450004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14153622065, 50.694689732699999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139344786684194, 50.695699131018216 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139628728392097, 50.695339402872733 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139628728392097, 50.695519266945475 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1399126701, 50.69497967472725 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1399126701, 50.695159538799992 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140196611807903, 50.694799810654509 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140480553515807, 50.694619946581767 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14130047045, 50.694889817250001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14131440235, 50.694880691 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14132833425, 50.694871564750002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14134226615, 50.694862438499996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141356198, 50.694853312249997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1413701299, 50.694844186 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137255177530271, 50.700945521291011 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137539136916892, 50.70076565721827 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137823096303514, 50.700405929072787 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138107055690135, 50.700226065000045 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138391015076756, 50.699866336854562 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138674974463378, 50.699506608709079 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138674974463378, 50.699686472781821 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138958933849999, 50.699326744636338 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13924289323662, 50.698967016490855 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13924289323662, 50.699146880563596 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139526852623241, 50.698787152418113 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139810812009863, 50.69842742427263 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140094771396484, 50.698247560199889 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140378730783105, 50.697887832054406 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140662690169727, 50.697528103908923 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13750261299384, 50.700979106077384 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137786571711533, 50.700619377931901 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137786571711533, 50.700799242004642 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138070530429227, 50.700439513859159 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13835448914692, 50.700079785713676 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13835448914692, 50.700259649786418 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138638447864613, 50.699899921640935 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138922406582306, 50.699540193495451 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1392063653, 50.699180465349968 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1392063653, 50.69936032942271 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139490324017693, 50.699000601277227 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139774282735386, 50.698640873131744 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14005824145308, 50.698461009059002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.140342200170773, 50.698101280913519 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.140626158888466, 50.697921416840778 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.140910117606159, 50.697561688695295 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1417238334, 50.695708234599998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13775998197654, 50.70091946950464 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138043942162624, 50.700739605431899 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138327902348708, 50.700379877286416 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138327902348708, 50.700559741359157 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138611862534792, 50.700020149140933 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138611862534792, 50.700200013213674 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138895822720876, 50.699840285068191 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13917978290696, 50.699480556922708 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139463743093044, 50.699300692849967 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139747703279128, 50.698940964704484 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139747703279128, 50.699120828777225 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140031663465212, 50.698581236559001 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140031663465212, 50.698761100631742 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140315623651296, 50.698401372486259 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140315623651296, 50.698581236559001 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14059958383738, 50.698041644340776 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140883544023464, 50.697861780268035 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140894261650001, 50.695064601300004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140908193650001, 50.695055475099998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14092212565, 50.6950463489 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14093605765, 50.695037222700002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1409499897, 50.695028096499996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1409639217, 50.695018970299998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140730629983002, 50.697433743399998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140730629983002, 50.697613607472739 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141014587716998, 50.697253879327256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138724763649308, 50.695248376481835 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139008701524481, 50.694888648336352 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139008701524481, 50.695068512409094 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139008701524481, 50.695248376481835 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139008701524481, 50.695428240554577 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139292639399653, 50.694708784263611 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139292639399653, 50.694888648336352 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139292639399653, 50.695068512409094 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139292639399653, 50.695248376481835 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139292639399653, 50.695428240554577 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139292639399653, 50.695608104627318 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139576577274826, 50.694528920190869 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139576577274826, 50.694708784263611 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139576577274826, 50.694888648336352 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139576577274826, 50.695068512409094 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139576577274826, 50.695248376481835 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139860515149999, 50.694349056118128 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139860515149999, 50.694528920190869 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139860515149999, 50.694708784263611 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139860515149999, 50.694888648336352 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140144453025171, 50.694169192045386 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140144453025171, 50.694349056118128 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140144453025171, 50.694528920190869 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140428390900344, 50.694169192045386 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140428390900344, 50.694349056118128 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140428390900344, 50.694528920190869 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140712328775517, 50.693989327972645 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140712328775517, 50.694169192045386 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140996266650689, 50.694169192045386 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1411828542, 50.697623859499998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139842284428165, 50.699136105790956 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1401262446569, 50.698776377645473 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1401262446569, 50.698956241718214 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140410204885634, 50.698596513572731 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140694165114368, 50.698236785427248 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140978125343103, 50.697877057281765 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140978125343103, 50.698056921354507 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141262085571837, 50.697877057281765 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1413099945, 50.697613624399999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14130901235, 50.69757318005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141244742850001, 50.694926322200004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1412536089, 50.697623166450001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140072409228308, 50.699247619690951 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140356370536985, 50.698887891545468 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140356370536985, 50.699067755618209 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140640331845661, 50.698528163399985 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140640331845661, 50.698708027472726 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140640331845661, 50.698887891545468 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140924293154338, 50.698348299327243 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140924293154338, 50.698528163399985 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141208254463015, 50.69798857118176 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141208254463015, 50.698168435254502 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141208254463015, 50.698348299327243 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141492215771692, 50.69798857118176 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141492215771692, 50.698168435254502 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1415501524, 50.69468060645 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141564084200001, 50.694671480149999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14157801595, 50.694662353849999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14174440405, 50.69568555755 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14175855435, 50.695685418849997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14177248645, 50.695676292549997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14179305695, 50.695653615499999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14182712285, 50.695594849199999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141807425650001, 50.695653476799997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141434026858692, 50.693664532013628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141434026858692, 50.693844396086369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141717962841309, 50.693664532013628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14204295905, 50.695448897399999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138450358425563, 50.695814186327311 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138734295157279, 50.695994050400053 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139018231888994, 50.696173914472794 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13930216862071, 50.695814186327311 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13930216862071, 50.696173914472794 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139586105352426, 50.695814186327311 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139586105352426, 50.695994050400053 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139870042084142, 50.695454458181828 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140153978815857, 50.695094730036345 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140437915547573, 50.694914865963604 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140721852279289, 50.694555137818121 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141005789011005, 50.694375273745379 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141289725742721, 50.694195409672638 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141573662474436, 50.694015545599896 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141857599206152, 50.693835681527155 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140678451734942, 50.694472459945473 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141246325199999, 50.693932867727248 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141246325199999, 50.69411273179999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141530261932528, 50.693932867727248 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141814198665056, 50.693753003654507 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14196731605, 50.695539536550001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141966333399999, 50.695499092200002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140280788249848, 50.699213562381829 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140564747862387, 50.699213562381829 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140564747862387, 50.69939342645457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140848707474925, 50.698853834236346 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140848707474925, 50.699033698309087 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140848707474925, 50.699213562381829 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140848707474925, 50.69939342645457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140848707474925, 50.699573290527312 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140848707474925, 50.699753154600053 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141132667087463, 50.698673970163604 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141132667087463, 50.699033698309087 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141132667087463, 50.699213562381829 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141132667087463, 50.69939342645457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141132667087463, 50.699573290527312 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141132667087463, 50.699753154600053 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141132667087463, 50.699933018672795 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141416626700002, 50.697594785727155 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141416626700002, 50.697774649799896 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141416626700002, 50.698314242018121 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141416626700002, 50.698494106090862 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141416626700002, 50.698673970163604 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141416626700002, 50.698853834236346 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141416626700002, 50.699213562381829 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141416626700002, 50.699573290527312 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141416626700002, 50.699753154600053 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14170058631254, 50.697774649799896 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14170058631254, 50.697954513872638 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14170058631254, 50.698134377945379 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14170058631254, 50.698314242018121 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14170058631254, 50.698494106090862 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14170058631254, 50.698673970163604 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14170058631254, 50.698853834236346 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141984545925078, 50.697774649799896 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141984545925078, 50.697954513872638 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141984545925078, 50.698134377945379 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141984545925078, 50.698314242018121 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141984545925078, 50.698494106090862 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141984545925078, 50.698673970163604 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142268505537617, 50.697774649799896 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142268505537617, 50.697954513872638 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142268505537617, 50.698314242018121 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142268505537617, 50.698494106090862 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142268505537617, 50.698673970163604 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142552465150155, 50.697954513872638 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142552465150155, 50.698314242018121 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.140556126459042, 50.697458822763693 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.140840073542173, 50.69709909461821 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.140840073542173, 50.697278958690951 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.141124020625304, 50.696919230545468 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.141124020625304, 50.697278958690951 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.141407967708434, 50.696739366472727 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.141407967708434, 50.69709909461821 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.141691914791565, 50.696379638327244 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.141691914791565, 50.696739366472727 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.141975861874696, 50.696199774254502 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.141975861874696, 50.696379638327244 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.142259808957826, 50.695840046109019 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.142259808957826, 50.696199774254502 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.142543756040957, 50.695480317963536 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.142543756040957, 50.695660182036278 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.142543756040957, 50.695840046109019 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.142543756040957, 50.696019910181761 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14295005325, 50.696069775699996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14310431125, 50.695150816500004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14053955819483, 50.695817528068211 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14053955819483, 50.695997392140953 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14082349931322, 50.695277935849987 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14082349931322, 50.695457799922728 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14082349931322, 50.69563766399547 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14082349931322, 50.695817528068211 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14082349931322, 50.695997392140953 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14110744043161, 50.695098071777245 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14110744043161, 50.695277935849987 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14110744043161, 50.695457799922728 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14110744043161, 50.69563766399547 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14110744043161, 50.695997392140953 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14139138155, 50.694918207704504 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14139138155, 50.695098071777245 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14139138155, 50.695277935849987 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14139138155, 50.695457799922728 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14139138155, 50.69563766399547 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14167532266839, 50.694738343631762 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14167532266839, 50.694918207704504 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14167532266839, 50.695098071777245 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14167532266839, 50.695277935849987 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14195926378678, 50.694738343631762 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14195926378678, 50.694918207704504 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14195926378678, 50.695098071777245 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14195926378678, 50.695277935849987 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14224320490517, 50.694558479559021 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14224320490517, 50.694918207704504 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14224320490517, 50.695098071777245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141731945145474, 50.697628938736372 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142015903949999, 50.697449074663631 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142015903949999, 50.697628938736372 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142299862754524, 50.697449074663631 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142299862754524, 50.697628938736372 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142651462, 50.698360457649997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141992921866214, 50.692977685790879 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141992921866214, 50.693337413936362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141992921866214, 50.693517278009104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142276853633785, 50.693337413936362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142560785401356, 50.693337413936362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139822868587991, 50.69646774296821 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140106812890394, 50.696647607040951 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140390757192796, 50.696647607040951 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1409586457976, 50.696647607040951 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141242590100002, 50.696287878895468 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141242590100002, 50.69646774296821 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141526534402404, 50.696108014822727 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141810478704806, 50.695748286677244 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141810478704806, 50.695928150749985 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142094423007208, 50.695568422604502 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14237836730961, 50.695208694459019 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14237836730961, 50.695388558531761 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14201640449317, 50.693634962186366 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142300339, 50.693455098113624 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14258427350683, 50.693455098113624 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1427490232, 50.696165755613627 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1428559991, 50.6960117725 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14300810705, 50.697596978150003 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139943551979723, 50.696669890368199 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140227494237955, 50.69684975444094 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140511436496187, 50.69684975444094 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140511436496187, 50.697029618513682 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140511436496187, 50.697209482586423 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140511436496187, 50.697389346659165 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140795378754419, 50.697029618513682 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141079321012651, 50.69684975444094 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141363263270883, 50.696490026295457 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141647205529114, 50.696310162222716 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141931147787346, 50.695950434077233 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142215090045578, 50.69559070593175 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142215090045578, 50.695770570004491 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14249903230381, 50.695410841859008 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142782974562042, 50.695051113713525 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143066916820274, 50.694871249640784 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1431458482, 50.692498215949996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14331235205, 50.697593993050006 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1432363335, 50.695046070399997 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14543001805184, 50.693643314886366 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145713952648159, 50.693463450813624 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139545617650411, 50.696062455786425 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139545617650411, 50.696242319859167 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139545617650411, 50.696422183931908 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139829552719578, 50.695702727640942 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139829552719578, 50.695882591713683 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140113487788746, 50.695342999495459 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140397422857913, 50.694983271349976 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140397422857913, 50.695163135422717 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140681357927081, 50.694803407277234 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140965292996248, 50.694623543204493 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141249228065416, 50.694443679131751 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141533163134583, 50.69426381505901 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141817098203751, 50.694083950986268 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142101033272918, 50.693904086913527 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142668903411253, 50.693724222840785 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143236773549588, 50.693544358768044 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143298054699836, 50.695701903163631 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143298054699836, 50.695881767236372 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1433746651, 50.694932475350001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142788160087107, 50.693401306122738 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143072092362369, 50.693401306122738 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143356024637631, 50.693041577977255 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143356024637631, 50.693221442049996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142648128513777, 50.69656109530451 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142648128513777, 50.696920823449993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142932082050001, 50.69656109530451 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142932082050001, 50.696740959377252 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142932082050001, 50.696920823449993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143216035586224, 50.696920823449993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143216035586224, 50.697100687522735 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143499989122448, 50.697280551595476 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143426875099999, 50.695601637 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142951827263229, 50.697823681499997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143235787336769, 50.697823681499997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143519747410309, 50.698003545572739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142610425402899, 50.692703949040883 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142610425402899, 50.692883813113625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14289435555, 50.692703949040883 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14289435555, 50.692883813113625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14289435555, 50.693063677186366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14289435555, 50.693243541259108 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143178285697101, 50.692883813113625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143178285697101, 50.693063677186366 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14429981645, 50.698038213100006 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11905171985, 50.704711185249998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139835263143358, 50.696046188172794 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139835263143358, 50.696226052245535 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140119198359764, 50.695506595954569 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140119198359764, 50.695686460027311 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140403133576171, 50.695326731881828 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140687068792577, 50.694967003736345 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140687068792577, 50.695146867809086 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140971004008983, 50.694787139663603 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140971004008983, 50.694967003736345 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141254939225389, 50.694607275590862 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141254939225389, 50.694787139663603 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141538874441795, 50.69442741151812 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141538874441795, 50.694607275590862 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141822809658201, 50.694247547445379 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142106744874607, 50.694067683372637 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142106744874607, 50.694247547445379 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142390680091014, 50.694067683372637 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142390680091014, 50.694247547445379 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14267461530742, 50.693887819299896 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142958550523826, 50.693707955227154 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143242485740232, 50.693707955227154 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143526420956638, 50.693528091154413 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1434995018, 50.694787354100001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143651164, 50.698103301700002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143035816424189, 50.695818548359107 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1433197623, 50.695638684286365 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143603708175811, 50.695278956140882 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141112701055828, 50.697594578095533 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141112701055828, 50.697774442168274 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14139664333231, 50.69723484995005 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141680585608793, 50.696875121804567 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141680585608793, 50.697054985877308 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141680585608793, 50.69723484995005 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141964527885275, 50.696695257731825 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141964527885275, 50.69723484995005 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142248470161757, 50.696335529586342 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142248470161757, 50.69723484995005 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142532412438239, 50.696155665513601 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142532412438239, 50.69723484995005 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142816354714721, 50.695795937368118 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143100296991204, 50.695616073295376 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143384239267686, 50.695256345149893 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143668181544168, 50.694716752931669 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143668181544168, 50.695076481077152 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143725977200001, 50.697419547850004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141683754985915, 50.694478421063614 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141967691389939, 50.694478421063614 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142251627793963, 50.694478421063614 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142251627793963, 50.694658285136356 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142251627793963, 50.69519787735458 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142535564197988, 50.694298556990873 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142535564197988, 50.694478421063614 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142535564197988, 50.694658285136356 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142535564197988, 50.694838149209097 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142819500602012, 50.69393882884539 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142819500602012, 50.694118692918131 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142819500602012, 50.694298556990873 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142819500602012, 50.694478421063614 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142819500602012, 50.694658285136356 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143103437006036, 50.69393882884539 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143103437006036, 50.694118692918131 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143103437006036, 50.694298556990873 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14338737341006, 50.693758964772648 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14338737341006, 50.69393882884539 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14338737341006, 50.694118692918131 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143671309814084, 50.693758964772648 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14497851975, 50.698009071 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1191142319, 50.704670129 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142301561200614, 50.696755703190881 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142301561200614, 50.696935567263623 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142585514760368, 50.696755703190881 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142869468320122, 50.697115431336364 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144239167489259, 50.694894003949997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1442875308, 50.694626784699999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14428731205, 50.69461779705 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142956762753557, 50.697687626077254 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143524682882147, 50.697867490149996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143808642946443, 50.698047354222737 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1439346987, 50.697862004100003 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141388049168249, 50.697412430149981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141672002574022, 50.697412430149981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141955955979794, 50.696872837931757 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141955955979794, 50.697052702004498 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142239909385567, 50.696513109786274 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142239909385567, 50.696692973859015 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142239909385567, 50.697052702004498 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142523862791339, 50.697412430149981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142807816197112, 50.69723256607724 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142807816197112, 50.697412430149981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142807816197112, 50.697592294222723 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143091769602885, 50.697412430149981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143091769602885, 50.697592294222723 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143375723008657, 50.697412430149981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143375723008657, 50.697592294222723 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143375723008657, 50.697772158295464 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14365967641443, 50.697592294222723 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14365967641443, 50.697772158295464 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143943629820202, 50.697592294222723 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143943629820202, 50.697772158295464 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143943629820202, 50.697952022368206 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144227583225975, 50.697952022368206 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144227583225975, 50.698131886440947 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142808826785419, 50.696249593045472 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143092773192709, 50.695889864899989 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143092773192709, 50.696069728972731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143092773192709, 50.696249593045472 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143376719599999, 50.695710000827248 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143376719599999, 50.695889864899989 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143376719599999, 50.696249593045472 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143944612414579, 50.695530136754506 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143889142737945, 50.694952757186371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144006370990685, 50.697600112550006 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1442248402, 50.694667854350001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1442238557, 50.69462741 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144256608711161, 50.694937205199999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144256608711161, 50.69511706927274 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144540551288839, 50.694937205199999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1447216507, 50.698214003849998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1446344966, 50.694421143986368 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144103540281208, 50.69771639957726 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144955421718791, 50.698076127722743 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.142624580193313, 50.69541744822731 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.142624580193313, 50.695597312300052 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.142624580193313, 50.695777176372793 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.142908513950355, 50.695237584154569 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.142908513950355, 50.69541744822731 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.142908513950355, 50.695597312300052 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.143192447707396, 50.694877856009086 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.143192447707396, 50.695057720081827 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.143192447707396, 50.695237584154569 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.143476381464437, 50.694697991936344 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.143476381464437, 50.694877856009086 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.143476381464437, 50.695057720081827 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.144044248978519, 50.69415839971812 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.144044248978519, 50.694338263790861 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14432818273556, 50.693978535645378 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14432818273556, 50.69415839971812 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.144612116492601, 50.693798671572637 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.144896050249642, 50.693438943427154 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.144896050249642, 50.693618807499895 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.145179984006683, 50.693438943427154 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144365949394099, 50.694347351522737 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144365949394099, 50.694527215595478 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144933823535301, 50.693987623377254 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145217760605902, 50.693807759304512 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144909034465122, 50.694187843972742 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145260126830562, 50.698275709249998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14551205585, 50.694614131150004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1477230747, 50.700269337 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143556058871792, 50.692461503499992 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143556058871792, 50.692641367572733 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143839984497862, 50.692101775354509 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143839984497862, 50.69228163942725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143839984497862, 50.692461503499992 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143839984497862, 50.692641367572733 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143839984497862, 50.692821231645475 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144123910123931, 50.692101775354509 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144123910123931, 50.69228163942725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144123910123931, 50.692461503499992 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144123910123931, 50.692641367572733 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144407835750001, 50.692101775354509 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144407835750001, 50.69228163942725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144407835750001, 50.692461503499992 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144691761376071, 50.691921911281767 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144691761376071, 50.692101775354509 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144691761376071, 50.69228163942725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144691761376071, 50.692461503499992 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14497568700214, 50.691921911281767 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14497568700214, 50.692101775354509 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14497568700214, 50.69228163942725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14525961262821, 50.691921911281767 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14525961262821, 50.692101775354509 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145543538254279, 50.692101775354509 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1458040368, 50.69848619455 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144849202434001, 50.694334609522734 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144849202434001, 50.694514473595476 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145133139049999, 50.694154745449993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145133139049999, 50.694334609522734 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145417075665998, 50.693974881377251 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145417075665998, 50.694154745449993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145417075665998, 50.694334609522734 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145701012281997, 50.69379501730451 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145701012281997, 50.693974881377251 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145701012281997, 50.694154745449993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145701012281997, 50.694334609522734 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.147688453, 50.691900824050002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.145335812798698, 50.693185669063624 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.145335812798698, 50.693365533136365 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.145619745001301, 50.693185669063624 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142779703311187, 50.694798848000055 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14306363322895, 50.694439119854572 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14306363322895, 50.694618983927313 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143347563146713, 50.69425925578183 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143347563146713, 50.694439119854572 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143631493064476, 50.693539799490864 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143631493064476, 50.694079391709089 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143631493064476, 50.69425925578183 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143915422982238, 50.693539799490864 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143915422982238, 50.693719663563606 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143915422982238, 50.693899527636347 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144199352900001, 50.693359935418123 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144199352900001, 50.693539799490864 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144199352900001, 50.693719663563606 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144483282817764, 50.693359935418123 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144767212735527, 50.693180071345381 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14505114265329, 50.69300020727264 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145335072571052, 50.692820343199898 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145335072571052, 50.69300020727264 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145619002488815, 50.692820343199898 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1208445571, 50.705993037100001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144066765186088, 50.698212135931769 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144066765186088, 50.69839200000451 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144634691728696, 50.698571864077252 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144918655, 50.698751728149993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145202618271305, 50.698931592222735 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145486581542609, 50.699111456295476 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145770544813913, 50.699111456295476 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145770544813913, 50.699291320368218 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144657232674084, 50.698014926718137 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144657232674084, 50.698194790790879 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144941195087042, 50.698194790790879 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144941195087042, 50.69837465486362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1452251575, 50.69837465486362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1452251575, 50.698554518936362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145509119912957, 50.69837465486362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145509119912957, 50.698554518936362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145509119912957, 50.698734383009104 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145793082325915, 50.698734383009104 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144028438829331, 50.694482830595469 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144028438829331, 50.69466269466821 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144312372337598, 50.694302966522727 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144596305845866, 50.694123102449986 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144880239354134, 50.693943238377244 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145164172862401, 50.693763374304503 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145732039878936, 50.693223782086278 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146232372, 50.6931198606 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144099294148709, 50.698179761568134 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144383257415805, 50.698359625640876 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144951183949999, 50.698539489713617 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145235147217096, 50.698719353786359 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145519110484193, 50.6988992178591 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145803073751289, 50.699079081931842 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143882844439489, 50.693044921868214 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144166770059659, 50.692685193722731 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144166770059659, 50.692865057795473 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144450695679829, 50.692865057795473 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1447346213, 50.69250532964999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1447346213, 50.692685193722731 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14501854692017, 50.692325465577248 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14501854692017, 50.69250532964999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14501854692017, 50.692685193722731 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14530247254034, 50.692325465577248 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145586398160511, 50.692145601504507 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145586398160511, 50.692325465577248 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145734921816902, 50.691957716663623 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145734921816902, 50.692137580736365 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1460188474, 50.691957716663623 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143651918571166, 50.693384207245472 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144219776557057, 50.693204343172731 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144787634542947, 50.693024479099989 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145071563535892, 50.692844615027248 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145355492528838, 50.692664750954506 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145639421521783, 50.692664750954506 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14332333335646, 50.694643378827315 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143607264579845, 50.694463514754574 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143891195803231, 50.694103786609091 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144175127026616, 50.693923922536349 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144459058250001, 50.693564194390866 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144742989473386, 50.693384330318125 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145026920696771, 50.693204466245383 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145594783143541, 50.693024602172642 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141945027567746, 50.693764368704578 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141945027567746, 50.693944232777319 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142228955472708, 50.693764368704578 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142512883377671, 50.693584504631836 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142796811282633, 50.693584504631836 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143364667092557, 50.693404640559095 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143648594997519, 50.693224776486353 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143932522902482, 50.693224776486353 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144216450807444, 50.693044912413612 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144500378712406, 50.693044912413612 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144784306617368, 50.69286504834087 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145068234522331, 50.692685184268129 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145352162427293, 50.692505320195387 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145636090332255, 50.692505320195387 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1459048481, 50.698557399549998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1461573982, 50.6932419591 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145812124444513, 50.693378791399994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1461695755, 50.6931609313 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145816474195842, 50.693688906372742 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146100407950001, 50.693509042300001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146100407950001, 50.693688906372742 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146384341704159, 50.693509042300001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146022802136033, 50.699219099527255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1463067715, 50.699398963599997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146590740863967, 50.699578827672738 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148043392829304, 50.699705704563627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148611337370697, 50.699885568636368 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.146018953130214, 50.692963954836365 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.146302882569787, 50.692784090763624 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.146586812009359, 50.692604226690882 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145759179704426, 50.692270793886365 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146327030831857, 50.692090929813624 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146610956395573, 50.691911065740882 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1467160457, 50.692355463750005 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.146855346400001, 50.692264194849997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146920537696591, 50.699717428477257 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14720451005, 50.699897292549998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147488482403409, 50.70007715662274 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1475489356, 50.691978682249996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145761994806283, 50.692525660059111 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146045920353141, 50.69234579598637 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1463298459, 50.692165931913628 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146613771446858, 50.691986067840887 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14658405035, 50.698770508963626 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146868016102019, 50.698950373036368 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147151981854037, 50.699130237109109 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145848642326516, 50.6926326757591 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146132567863257, 50.692452811686358 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146416493399999, 50.692272947613617 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146700418936741, 50.692093083540875 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146984344473483, 50.691913219468134 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145780507739191, 50.692811988372725 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145780507739191, 50.693351580590949 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146064433216893, 50.692632124299983 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146064433216893, 50.692811988372725 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146064433216893, 50.692991852445466 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146064433216893, 50.693171716518208 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146348358694596, 50.692452260227242 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146348358694596, 50.692632124299983 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146348358694596, 50.692811988372725 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146632284172298, 50.6922723961545 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146632284172298, 50.692452260227242 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146632284172298, 50.692632124299983 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14691620965, 50.692092532081759 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14691620965, 50.6922723961545 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14691620965, 50.692452260227242 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147200135127702, 50.691912668009017 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147200135127702, 50.692092532081759 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147200135127702, 50.6922723961545 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147200135127702, 50.692452260227242 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147484060605404, 50.691912668009017 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147484060605404, 50.692092532081759 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147767986083106, 50.691912668009017 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148051911560808, 50.691912668009017 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14847529747874, 50.700804661572739 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146302497044336, 50.699194827459017 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146586465320752, 50.699374691531759 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146870433597168, 50.6995545556045 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14743837015, 50.699914283749983 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147722338426416, 50.700094147822725 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148006306702832, 50.700274011895466 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148290274979248, 50.700453875968208 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148574243255664, 50.700633740040949 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14885821153208, 50.700813604113691 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146349505169439, 50.693020637018215 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146633430646292, 50.692840772945473 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146917356123145, 50.692660908872732 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147201281599998, 50.69248104479999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147485207076851, 50.692301180727249 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147769132553704, 50.692121316654507 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148053058030557, 50.692121316654507 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146665017770339, 50.692997290595471 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146665017770339, 50.693177154668213 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14694894433517, 50.69281742652273 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14694894433517, 50.692997290595471 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147232870900001, 50.692637562449988 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147232870900001, 50.69281742652273 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147516797464831, 50.692457698377247 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147516797464831, 50.692637562449988 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147800724029662, 50.692277834304505 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147800724029662, 50.692457698377247 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148084650594493, 50.692277834304505 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1483465239, 50.693054092250001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145768056137245, 50.69391831949094 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145768056137245, 50.694098183563682 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145768056137245, 50.694278047636423 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146051981566838, 50.693738455418199 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146051981566838, 50.69391831949094 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146051981566838, 50.694098183563682 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146051981566838, 50.694278047636423 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14633590699643, 50.693198863199974 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14633590699643, 50.693738455418199 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14633590699643, 50.69391831949094 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14633590699643, 50.694098183563682 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146619832426022, 50.693198863199974 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146619832426022, 50.693378727272716 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146619832426022, 50.693558591345457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146619832426022, 50.693738455418199 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146903757855614, 50.693198863199974 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146903757855614, 50.693378727272716 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147187683285206, 50.693018999127233 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147187683285206, 50.693198863199974 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147187683285206, 50.693378727272716 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147471608714798, 50.692839135054491 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147471608714798, 50.693018999127233 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147471608714798, 50.693198863199974 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14775553414439, 50.69265927098175 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14775553414439, 50.692839135054491 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14775553414439, 50.693018999127233 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148039459573982, 50.692479406909008 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148039459573982, 50.69265927098175 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148039459573982, 50.693018999127233 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148323385003574, 50.691939814690784 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148323385003574, 50.692479406909008 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148607310433166, 50.691939814690784 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147174009321912, 50.699221163259018 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147457978928934, 50.69940102733176 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147741948535955, 50.69940102733176 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147741948535955, 50.699580891404501 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148025918142977, 50.699760755477243 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148309887749999, 50.699940619549984 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148593857357021, 50.700120483622726 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148877826964043, 50.700120483622726 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148877826964043, 50.700300347695467 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149161796571065, 50.700480211768209 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149267327351693, 50.69187671751363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15893736335, 50.697959855536368 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.159221324131974, 50.697779991463626 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.159229434649999, 50.6976165118 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146154883863857, 50.698820404536271 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146154883863857, 50.699000268609012 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1464388497977, 50.699000268609012 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1464388497977, 50.699180132681754 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146722815731544, 50.699180132681754 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146722815731544, 50.699359996754495 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147006781665388, 50.699359996754495 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147290747599231, 50.699539860827237 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147574713533075, 50.699539860827237 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147574713533075, 50.699719724899978 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147858679466919, 50.699719724899978 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147858679466919, 50.69989958897272 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148142645400762, 50.700079453045461 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148426611334606, 50.700259317118203 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148426611334606, 50.700439181190944 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148710577268449, 50.700439181190944 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148710577268449, 50.700619045263686 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148994543202293, 50.700619045263686 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148994543202293, 50.700798909336427 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149278509136137, 50.700798909336427 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149062547066979, 50.700281610077262 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1493465231, 50.700461474150003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149630499133021, 50.700461474150003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149707950078873, 50.700635864613631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14999192825, 50.700815728686372 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150275906421128, 50.700815728686372 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153035531198269, 50.700787219486429 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153319497225857, 50.700787219486429 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153603463253444, 50.700427491340946 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153603463253444, 50.700607355413688 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153603463253444, 50.700787219486429 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153887429281031, 50.700247627268205 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153887429281031, 50.700427491340946 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154171395308619, 50.700067763195463 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154171395308619, 50.700247627268205 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154455361336206, 50.699887899122722 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154455361336206, 50.700067763195463 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154739327363793, 50.69970803504998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154739327363793, 50.699887899122722 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15502329339138, 50.699348306904497 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15502329339138, 50.699528170977239 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.155307259418968, 50.699168442831755 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.155307259418968, 50.699348306904497 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.155591225446555, 50.698988578759014 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.155591225446555, 50.699168442831755 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.155875191474142, 50.698808714686272 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.155875191474142, 50.698988578759014 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15615915750173, 50.698628850613531 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15615915750173, 50.698808714686272 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.153631583064556, 50.700809415986427 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.153915549401646, 50.700629551913686 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.154199515738735, 50.700449687840944 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.154483482075824, 50.700269823768203 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.154767448412913, 50.700089959695461 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.155051414750002, 50.699730231549978 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.155335381087091, 50.699550367477237 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15561934742418, 50.699370503404495 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.155903313761269, 50.699190639331754 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.156187280098358, 50.69883091118627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.156187280098358, 50.699010775259012 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.156471246435447, 50.698651047113529 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.156471246435447, 50.69883091118627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1566986495, 50.698590086449997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.156566947181321, 50.698635277172741 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.155022987953346, 50.700807250354579 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.155306959792007, 50.700447522209096 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.155306959792007, 50.700627386281838 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.155590931630669, 50.700447522209096 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15587490346933, 50.700267658136354 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.156158875307992, 50.699907929990871 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1569066027, 50.698480254436369 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.153949614305194, 50.700758481609171 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.154233577862662, 50.700578617536429 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15451754142013, 50.700398753463688 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.154801504977598, 50.700218889390946 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.155085468535066, 50.700039025318205 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.155369432092535, 50.699679297172722 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.155653395650003, 50.69949943309998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.155937359207471, 50.699319569027239 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.156221322764939, 50.699139704954497 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.156505286322407, 50.698779976809014 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.156505286322407, 50.698959840881756 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.156789249879875, 50.698600112736273 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.156789249879875, 50.698779976809014 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.157073213437343, 50.698420248663531 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.157073213437343, 50.698600112736273 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.157357176994811, 50.69824038459079 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.15444098515486, 50.700608039386431 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.15444098515486, 50.700787903459172 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.154724949083888, 50.700428175313689 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.154724949083888, 50.700608039386431 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.155008913012916, 50.700248311240948 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.155292876941943, 50.700068447168206 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.155576840870971, 50.699708719022723 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.155576840870971, 50.699888583095465 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.155860804799999, 50.699528854949982 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.155860804799999, 50.699708719022723 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.156144768729026, 50.69934899087724 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.156428732658054, 50.699169126804499 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.156712696587082, 50.698989262731757 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.15699666051611, 50.698809398659016 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.157280624445137, 50.698629534586274 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.157564588374165, 50.698269806440791 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.157564588374165, 50.698449670513533 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.154832250481186, 50.700752475986434 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.155116216194949, 50.700572611913692 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.155400181908711, 50.700392747840951 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.155684147622474, 50.700212883768209 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.155968113336237, 50.699853155622726 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15625207905, 50.699673291549985 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.156536044763762, 50.699493427477243 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.156820010477525, 50.699313563404502 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.157103976191288, 50.69913369933176 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.157387941905051, 50.698773971186277 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.157387941905051, 50.698953835259019 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.157671907618814, 50.698594107113536 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15451744177193, 50.700788817109164 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.155085369697953, 50.700429088963681 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.155369333660964, 50.700249224890939 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.155653297623975, 50.699889496745456 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.155937261586987, 50.699709632672715 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.156221225549998, 50.699529768599973 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.156505189513009, 50.699349904527232 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15678915347602, 50.69917004045449 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.157073117439031, 50.698990176381749 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.157925009328065, 50.698270720090783 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.156817304983211, 50.699520296631846 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157385236405596, 50.698980704413621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157385236405596, 50.699160568486363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157669202116788, 50.69880084034088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157669202116788, 50.698980704413621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157953167827981, 50.698620976268138 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.157983708719338, 50.698261323299995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.158267671680663, 50.698081459227254 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.156815461786022, 50.698000370959107 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157099419891613, 50.697820506886366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157099419891613, 50.698000370959107 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157099419891613, 50.698180235031849 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157383377997204, 50.697640642813624 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157383377997204, 50.697820506886366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157667336102794, 50.697460778740883 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157667336102794, 50.697640642813624 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.157951294208385, 50.697460778740883 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15823315205, 50.698251210549998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15869071574301, 50.696899589022742 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15897466885, 50.696539860877259 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15897466885, 50.69671972495 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15925862195699, 50.696539860877259 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.159234255229986, 50.697672140463631 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.159492397587442, 50.697347294549999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.159776355012556, 50.697347294549999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.159401892845825, 50.6962742654 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.159685843754175, 50.6962742654 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.158714464452292, 50.697809390531845 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.158998419801146, 50.697629526459103 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15928237515, 50.697449662386362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.159566330498854, 50.69726979831362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.159850285847708, 50.696910070168137 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.159850285847708, 50.697089934240879 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.159855847710425, 50.697206254927259 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.159855847710425, 50.697386119 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.157652598584129, 50.698227981140953 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.157652598584129, 50.698407845213694 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.157936552300598, 50.698048117068211 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.157936552300598, 50.698227981140953 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.158220506017066, 50.69786825299547 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.158220506017066, 50.698048117068211 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.158504459733534, 50.697688388922728 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.158504459733534, 50.69786825299547 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.158788413450002, 50.697508524849987 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.15907236716647, 50.697328660777245 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.159356320882938, 50.697148796704504 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.159640274599406, 50.696968932631762 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.159924228315874, 50.696609204486279 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.159924228315874, 50.696789068559021 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.157570669684173, 50.698089446940948 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15785462247563, 50.697909582868206 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.158138575267087, 50.697729718795465 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.158422528058543, 50.697549854722723 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15870648085, 50.697369990649982 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.158990433641457, 50.69719012657724 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.159274386432914, 50.697010262504499 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.159558339224371, 50.696650534359016 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.159558339224371, 50.696830398431757 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.159842292015828, 50.696470670286274 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.159842292015828, 50.696650534359016 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.157298456511244, 50.698149243763687 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.157582408486523, 50.697969379690946 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.157866360461803, 50.697609651545463 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.157866360461803, 50.697789515618204 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.158150312437082, 50.697609651545463 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.158434264412362, 50.697429787472721 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.158718216387641, 50.697070059327238 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.159002168362921, 50.696890195254497 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.159002168362921, 50.697070059327238 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.159286120338201, 50.696710331181755 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15957007231348, 50.696530467109014 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15985402428876, 50.696350603036272 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12081524385, 50.716335942049994 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.120963031300001, 50.716599784549999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12095455845, 50.7162357841 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131428655200001, 50.710461966899999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121204507950001, 50.705949188350004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12134722315, 50.705997122400007 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12200334245, 50.706790894549997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1221402721, 50.706892889800002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.114996003467405, 50.709687973013629 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12229285905, 50.70705337295 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11978701015, 50.705872853900004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11991508715, 50.703866831550002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1377968132, 50.710053851750004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115189147, 50.710178017200001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1149132927, 50.704818210699997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11512350323188, 50.709730473763628 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115136979993922, 50.709941819913631 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115077820124362, 50.704593367672736 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115272832200001, 50.709826616649998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11521635655, 50.709530632400003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12094598995, 50.706387610050001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115614724297836, 50.704481569413623 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115898725702164, 50.704661433486365 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1160026123, 50.70914557306363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1160026123, 50.709325437136371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116291163018234, 50.704646641663629 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116157904416389, 50.708872785772741 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11644193028361, 50.708513057627258 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11546034903558, 50.710001957868215 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11574437765, 50.709462365649991 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11574437765, 50.709642229722732 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115702161608802, 50.709861750672744 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115986193491199, 50.709502022527261 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115986193491199, 50.709681886600002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1161240248, 50.708995907800002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116310625800001, 50.708791989849999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1160805083, 50.7047892597 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116585083, 50.704874187800002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1165992362, 50.704874052150004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1166567036, 50.704909392600001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116649733799999, 50.704914089900001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11671417105, 50.704944868650003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11773280139433, 50.705693539350001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.131332730800001, 50.706768045 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115523928062388, 50.708539801159105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115523928062388, 50.708719665231847 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11580794985413, 50.708180073013622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11580794985413, 50.708359937086364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116091971645871, 50.708000208940881 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116091971645871, 50.708180073013622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116375993437613, 50.707820344868139 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116130044599999, 50.704647048513628 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116414047064353, 50.70482691258637 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1167216749, 50.704962776200006 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11675257225, 50.704773695499995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115112513433281, 50.704895813613625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115396516359969, 50.704895813613625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115680519286657, 50.705075677686366 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115964522213345, 50.705075677686366 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11653252806672, 50.705255541759108 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115417210124774, 50.709221469754645 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115701220618581, 50.708681877536421 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115985231112387, 50.708322149390938 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115985231112387, 50.708502013463679 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116269241606194, 50.708142285318196 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1165532521, 50.707962421245455 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116837262593807, 50.707602693099972 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116837262593807, 50.707782557172713 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117121273087613, 50.707242964954489 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117121273087613, 50.70742282902723 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117405283581419, 50.706523508663523 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117405283581419, 50.706703372736264 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117405283581419, 50.706883236809006 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117689294075226, 50.705983916445298 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117689294075226, 50.70616378051804 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117689294075226, 50.706343644590781 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115374648127681, 50.704780553413627 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115942652090771, 50.704960417486369 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116510656053862, 50.70514028155911 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116794658035407, 50.70514028155911 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11684926805, 50.704961419650004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1168554901, 50.704925875850002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11687113895, 50.704997845249999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115237997965165, 50.705034459977256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11552200261011, 50.705214324049997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115806007255054, 50.705214324049997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116090011899999, 50.705214324049997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116090011899999, 50.705394188122739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116374016544944, 50.705394188122739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116658021189888, 50.705394188122739 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116984404382985, 50.705228349513625 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1173615648, 50.7050822944 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117645569880106, 50.7050822944 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116843238828385, 50.707068422249989 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116843238828385, 50.707248286322731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116843238828385, 50.707428150395472 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117127251571615, 50.706708694104506 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117127251571615, 50.706888558177248 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117411264314845, 50.706348965959023 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117076063873497, 50.705008967799998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1173600685, 50.705008967799998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117644073126503, 50.705008967799998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116510521994642, 50.708649881690953 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1170785579, 50.708110289472728 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117362575852679, 50.707750561327245 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117646593805358, 50.707390833181762 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117646593805358, 50.707570697254504 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117154138619165, 50.705209492163625 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117438144680835, 50.705389356236367 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117722150742505, 50.705389356236367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116575097990268, 50.708433566840952 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116859114745134, 50.708253702768211 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117143131500001, 50.707893974622728 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117143131500001, 50.708073838695469 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117427148254867, 50.707534246477245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117711165009734, 50.707174518331762 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11761775445, 50.705700841977261 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11761775445, 50.705880706050003 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115401039645509, 50.704667707140885 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115969044672755, 50.704847571213627 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116537049700001, 50.705027435286368 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116821052213623, 50.705027435286368 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117389057240869, 50.70520729935911 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117673059754492, 50.70520729935911 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.114890362193091, 50.709962578991004 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115174375027959, 50.709602850845521 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115174375027959, 50.709782714918262 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115174375027959, 50.710142443063745 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115458387862827, 50.709243122700038 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115458387862827, 50.709422986772779 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115458387862827, 50.709602850845521 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115458387862827, 50.709782714918262 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115742400697695, 50.708883394554555 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115742400697695, 50.709063258627296 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115742400697695, 50.709243122700038 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115742400697695, 50.709422986772779 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116026413532563, 50.708523666409071 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116026413532563, 50.708703530481813 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116026413532563, 50.708883394554555 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116310426367431, 50.70834380233633 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116310426367431, 50.708523666409071 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1165944392023, 50.708163938263588 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1165944392023, 50.70834380233633 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116878452037168, 50.707804210118105 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116878452037168, 50.707984074190847 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117162464872036, 50.707444481972622 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117162464872036, 50.707624346045364 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117162464872036, 50.707804210118105 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117446477706904, 50.706904889754398 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117446477706904, 50.707084753827139 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117446477706904, 50.707264617899881 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117446477706904, 50.707444481972622 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117730490541772, 50.706365297536173 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117730490541772, 50.706545161608915 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117730490541772, 50.706725025681656 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117730490541772, 50.706904889754398 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117785694475568, 50.705087209650003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117824585440876, 50.705469101804511 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117824585440876, 50.705828829949994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117824585440876, 50.706008694022735 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118108592659125, 50.705469101804511 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118108592659125, 50.705648965877252 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11824035285, 50.705128006099997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11912002395, 50.704526202813632 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117997608350001, 50.705035740499994 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.11844190555, 50.705575624649995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11855773275, 50.705080011050001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118714718050001, 50.704827417463626 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1189121141, 50.704802421400004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11897484045, 50.7047613652 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11898888665, 50.704756735350003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118965222675666, 50.704807811263628 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119265635, 50.704488879850004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117884025258636, 50.706708903745472 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117884025258636, 50.706888767818214 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118168033554318, 50.706169311527248 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118168033554318, 50.706349175599989 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118168033554318, 50.706529039672731 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11845204185, 50.705989447454506 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118736050145682, 50.705629719309023 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11919068285, 50.7046064675 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119500768711812, 50.705723395100001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118613166670362, 50.705160925195479 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118897167856788, 50.704981061122737 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119465170229639, 50.704441468904513 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117816919397153, 50.707234972090951 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118100927748102, 50.706875243945468 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118100927748102, 50.70705510801821 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118384936099051, 50.706335651727244 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118384936099051, 50.706515515799985 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118384936099051, 50.706695379872727 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11866894445, 50.705975923581761 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11866894445, 50.706155787654502 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11866894445, 50.706335651727244 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118952952800949, 50.705616195436278 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118952952800949, 50.705796059509019 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118952952800949, 50.705975923581761 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119520969502847, 50.705796059509019 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13134891895, 50.706295918599999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11776653970044, 50.705265264954491 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11776653970044, 50.70634444939094 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11776653970044, 50.706524313463682 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11776653970044, 50.706704177536423 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11776653970044, 50.706884041609165 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11805054047533, 50.705445129027233 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11805054047533, 50.705804857172716 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11805054047533, 50.705984721245457 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11805054047533, 50.706164585318199 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11805054047533, 50.70634444939094 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118334541250221, 50.705445129027233 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118334541250221, 50.705624993099974 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118334541250221, 50.705804857172716 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118618542025111, 50.705624993099974 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119186543574891, 50.70508540088175 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119186543574891, 50.705265264954491 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119186543574891, 50.705445129027233 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119186543574891, 50.705624993099974 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119470544349781, 50.704905536809008 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119470544349781, 50.705445129027233 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119470544349781, 50.705624993099974 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119754545124671, 50.704725672736267 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119754545124671, 50.705804857172716 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120038545899561, 50.704365944590783 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120038545899561, 50.705624993099974 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120038545899561, 50.705804857172716 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12043431795, 50.7060059043 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12049897355, 50.706045668350001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119630459774837, 50.705482926563626 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1205990132, 50.706085228199996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119875543135983, 50.705721563099999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120443558792051, 50.705901427172741 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120387848031893, 50.706062839763625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1208534579, 50.705772158149998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120030408615313, 50.70370746940911 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120314402082657, 50.703527605336369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12059839555, 50.703347741263627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1213321308848, 50.702936829563626 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121417349550001, 50.70627056555 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120012606866963, 50.703887550295477 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120296600333481, 50.703707686222735 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1205805938, 50.703527822149994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120864587266518, 50.703347958077252 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121148580733037, 50.703168094004511 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1212665914, 50.706177557 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120745079386673, 50.706131282427258 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12102909085, 50.706311146499999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121313102313328, 50.706491010572741 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118107542812489, 50.705285986550059 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118391535982946, 50.705285986550059 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118675529153403, 50.705285986550059 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118675529153403, 50.705465850622801 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118959522323859, 50.705106122477318 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118959522323859, 50.705285986550059 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119243515494316, 50.704746394331835 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119243515494316, 50.704926258404576 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119243515494316, 50.705465850622801 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119527508664772, 50.704566530259093 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119527508664772, 50.704746394331835 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119811501835229, 50.704386666186352 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120095495005685, 50.70420680211361 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120379488176142, 50.703847073968127 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120379488176142, 50.704026938040869 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120663481346599, 50.703667209895386 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120663481346599, 50.703847073968127 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120947474517055, 50.703487345822644 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120947474517055, 50.703667209895386 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121231467687512, 50.703307481749903 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121231467687512, 50.703487345822644 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121515460857968, 50.703307481749903 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121706859550001, 50.7065329092 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119625645527391, 50.705308900877313 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119909639910193, 50.70494917273183 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119909639910193, 50.705129036804571 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119909639910193, 50.705308900877313 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120193634292995, 50.704769308659088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120193634292995, 50.70494917273183 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120193634292995, 50.705129036804571 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120193634292995, 50.705308900877313 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120477628675798, 50.704589444586347 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120477628675798, 50.704769308659088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120477628675798, 50.70494917273183 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1207616230586, 50.704409580513605 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1207616230586, 50.704589444586347 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1207616230586, 50.704769308659088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121045617441403, 50.704229716440864 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121045617441403, 50.704409580513605 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121045617441403, 50.704589444586347 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121329611824205, 50.704049852368122 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121329611824205, 50.704229716440864 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121329611824205, 50.704409580513605 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121613606207007, 50.703869988295381 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121613606207007, 50.704049852368122 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121613606207007, 50.704229716440864 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12189760058981, 50.703690124222639 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12189760058981, 50.703869988295381 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12189760058981, 50.704049852368122 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122181594972612, 50.703510260149898 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122181594972612, 50.703690124222639 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122181594972612, 50.703869988295381 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12243665235, 50.707155299749999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11938571862337, 50.705222587436424 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119669710319121, 50.704862859290941 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119669710319121, 50.705042723363682 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119953702014872, 50.704682995218199 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119953702014872, 50.704862859290941 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120237693710623, 50.704503131145458 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120521685406374, 50.704323267072716 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120805677102124, 50.703963538927233 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120805677102124, 50.704143402999975 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121089668797875, 50.703783674854492 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121089668797875, 50.703963538927233 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121373660493626, 50.703783674854492 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121657652189377, 50.70360381078175 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121941643885128, 50.703423946709009 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122225635580879, 50.703244082636267 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12250962727663, 50.702884354490784 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12250962727663, 50.703064218563526 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120137842504628, 50.704289169700054 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12042182978719, 50.704109305627313 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120705817069752, 50.703929441554571 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120989804352314, 50.70374957748183 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121273791634876, 50.703569713409088 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121557778917438, 50.703389849336347 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1218417662, 50.703209985263605 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122125753482562, 50.703030121190864 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122693728047686, 50.702670393045381 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122977715330248, 50.702490528972639 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12326170261281, 50.702310664899898 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121324668183689, 50.706750853968138 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121324668183689, 50.70693071804088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121608683416845, 50.70693071804088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121608683416845, 50.707110582113621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121892698650001, 50.707110582113621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121892698650001, 50.707290446186363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122176713883157, 50.707290446186363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122176713883157, 50.707470310259104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122460729116312, 50.707650174331846 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119572842123527, 50.704322946350061 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119856830655613, 50.703963218204578 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119856830655613, 50.704143082277319 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120140819187699, 50.703963218204578 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120708796251871, 50.703603490059095 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120992784783957, 50.703423625986353 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121276773316043, 50.703243761913612 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121560761848129, 50.70306389784087 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121844750380215, 50.702884033768129 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122128738912301, 50.702704169695387 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122412727444387, 50.702524305622646 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122696715976473, 50.702344441549904 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1227519422, 50.702279819449998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121261484632958, 50.703054092109106 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121829463500001, 50.702694363963623 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122113452933522, 50.702514499890881 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12287179475, 50.707591604599997 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120150789974693, 50.705954059722643 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120434798259755, 50.705774195649902 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120434798259755, 50.705954059722643 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120718806544816, 50.705774195649902 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120718806544816, 50.705954059722643 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121002814829877, 50.705954059722643 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121002814829877, 50.706133923795385 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121286823114938, 50.706133923795385 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121286823114938, 50.706313787868126 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1215708314, 50.706313787868126 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1215708314, 50.706493651940868 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121854839685061, 50.706493651940868 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121854839685061, 50.706673516013609 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122138847970122, 50.706853380086351 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122138847970122, 50.707033244159092 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122422856255183, 50.707033244159092 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122422856255183, 50.707213108231834 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122706864540245, 50.707392972304575 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122706864540245, 50.707572836377317 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122990872825306, 50.707572836377317 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122990872825306, 50.707752700450058 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122990872825306, 50.7079325645228 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121449479364105, 50.70660120718177 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121733493882052, 50.706781071254511 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1220175084, 50.707140799399994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122301522917947, 50.707320663472736 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122585537435895, 50.707500527545477 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122585537435895, 50.707680391618219 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12258924115, 50.707324633799999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122948123167159, 50.707971287327254 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122948123167159, 50.708151151399996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123232145932841, 50.708331015472737 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121603874928936, 50.706120136504516 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121887886339468, 50.706120136504516 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122171897749999, 50.706300000577258 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122171897749999, 50.706479864649999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122455909160531, 50.706479864649999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122455909160531, 50.706659728722741 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122739920571063, 50.706839592795482 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12276386025, 50.702729148213628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121640102946336, 50.702383049045466 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121640102946336, 50.702562913118207 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121640102946336, 50.702742777190949 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121924084259752, 50.702383049045466 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122208065573168, 50.702383049045466 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122492046886584, 50.702023320899983 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122492046886584, 50.702203184972724 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1227760282, 50.7016635927545 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1227760282, 50.701843456827241 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1227760282, 50.702023320899983 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1227760282, 50.702203184972724 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123060009513416, 50.701483728681758 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123060009513416, 50.7016635927545 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123060009513416, 50.701843456827241 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123343990826831, 50.701303864609017 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123343990826831, 50.701483728681758 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123627972140247, 50.701124000536275 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123627972140247, 50.701303864609017 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123911953453663, 50.701124000536275 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124195934767079, 50.701124000536275 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128030057335162, 50.708443594149998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128030057335162, 50.708623458222739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128314081964839, 50.708263730077256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128314081964839, 50.708443594149998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123089974811601, 50.702063086295475 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123373956086961, 50.701883222222733 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12365793736232, 50.701703358149992 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123941918637679, 50.70152349407725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12717043728191, 50.709667843477256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123256166423011, 50.708419185254513 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123256166423011, 50.708599049327255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123540191893807, 50.708778913399996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123824217364603, 50.708958777472738 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124108242835399, 50.709138641545479 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124392268306194, 50.708958777472738 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122827369526775, 50.702055260045476 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122827369526775, 50.702235124118218 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12311135081785, 50.701875395972735 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12311135081785, 50.702055260045476 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123395332108926, 50.701695531899993 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123679313400001, 50.701515667827252 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123963294691077, 50.70133580375451 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124247275982152, 50.701155939681769 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12873496885, 50.710052409836372 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121654640555224, 50.706193226877154 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121938652512687, 50.706373090949896 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122222664470149, 50.706552955022637 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122222664470149, 50.706732819095379 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122506676427611, 50.70691268316812 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122790688385074, 50.707092547240862 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122790688385074, 50.707272411313603 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123074700342536, 50.707452275386345 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123358712299998, 50.707632139459086 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123358712299998, 50.707812003531828 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12364272425746, 50.707991867604569 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123926736214923, 50.708171731677311 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123926736214923, 50.708351595750052 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124210748172385, 50.708351595750052 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124210748172385, 50.708531459822794 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124494760129847, 50.708171731677311 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12477877208731, 50.707991867604569 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125062784044772, 50.707632139459086 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128518183528034, 50.710034901272735 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128802216571965, 50.709675173127252 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127108820299969, 50.709890523549994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12739285370003, 50.709710659477253 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121722821926827, 50.70309168906369 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122006803180689, 50.702911824990949 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122290784434551, 50.702731960918207 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122574765688412, 50.702552096845466 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122858746942274, 50.702372232772724 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122858746942274, 50.702552096845466 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123142728196136, 50.702192368699983 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123142728196136, 50.702372232772724 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123426709449998, 50.702012504627241 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123426709449998, 50.702192368699983 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123710690703859, 50.7018326405545 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123710690703859, 50.702012504627241 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123994671957721, 50.701652776481758 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123994671957721, 50.7018326405545 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124278653211583, 50.701652776481758 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124562634465445, 50.701472912409017 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124846615719306, 50.701293048336275 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125130596973168, 50.701113184263534 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123723888490624, 50.702037601895476 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124291850963542, 50.701857737822735 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124575832200001, 50.701677873749993 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124859813436459, 50.701498009677252 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125143794672918, 50.70131814560451 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123227669925267, 50.70260303179095 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123511651160905, 50.702423167718209 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123795632396543, 50.702243303645467 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124079613632182, 50.702063439572726 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12436359486782, 50.701883575499984 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12436359486782, 50.702063439572726 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124647576103458, 50.701703711427243 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124647576103458, 50.701883575499984 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124931557339096, 50.701523847354501 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124931557339096, 50.701703711427243 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125215538574734, 50.70134398328176 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125499519810372, 50.701164119209018 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122425792926707, 50.703279752877307 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122425792926707, 50.703459616950049 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122425792926707, 50.70363948102279 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122709774158215, 50.703099888804566 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122709774158215, 50.703279752877307 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122709774158215, 50.703459616950049 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122993755389723, 50.702740160659083 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122993755389723, 50.702920024731824 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122993755389723, 50.703099888804566 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122993755389723, 50.703279752877307 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123277736621231, 50.702740160659083 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123277736621231, 50.702920024731824 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12356171785274, 50.702560296586341 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12356171785274, 50.702740160659083 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12356171785274, 50.702920024731824 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123845699084248, 50.7023804325136 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123845699084248, 50.702560296586341 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123845699084248, 50.702740160659083 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124129680315756, 50.7023804325136 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124129680315756, 50.702560296586341 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124413661547264, 50.702200568440858 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124413661547264, 50.7023804325136 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124413661547264, 50.702560296586341 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124697642778772, 50.702020704368117 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124697642778772, 50.702200568440858 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124697642778772, 50.7023804325136 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12498162401028, 50.701840840295375 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12498162401028, 50.702020704368117 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12498162401028, 50.702200568440858 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125265605241788, 50.701481112149892 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125265605241788, 50.701660976222634 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125265605241788, 50.701840840295375 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125265605241788, 50.702020704368117 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125549586473296, 50.701121384004409 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125549586473296, 50.701301248077151 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125549586473296, 50.701481112149892 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125549586473296, 50.701660976222634 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12579868845, 50.701194912927257 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12579868845, 50.701374777 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123502269176985, 50.707490874304568 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123502269176985, 50.70767073837731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123786276861588, 50.707850602450051 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124070284546191, 50.707850602450051 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124070284546191, 50.708030466522793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124070284546191, 50.708210330595534 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124354292230794, 50.707850602450051 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124354292230794, 50.708030466522793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124638299915397, 50.70767073837731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124638299915397, 50.707850602450051 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124922307599999, 50.707311010231827 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124922307599999, 50.707490874304568 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124922307599999, 50.70767073837731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125206315284602, 50.707131146159085 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125206315284602, 50.707311010231827 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125490322969205, 50.706771418013602 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125490322969205, 50.706951282086344 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125774330653808, 50.706411689868119 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125774330653808, 50.706591553940861 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125774330653808, 50.706771418013602 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126058338338411, 50.706231825795378 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126058338338411, 50.706411689868119 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126342346023014, 50.705872097649895 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126342346023014, 50.706051961722636 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126342346023014, 50.706231825795378 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126626353707617, 50.705692233577153 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126626353707617, 50.705872097649895 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123182510803063, 50.707739071186346 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123182510803063, 50.707918935259087 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123466524220688, 50.708098799331829 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123466524220688, 50.70827866340457 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123750537638313, 50.70827866340457 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123750537638313, 50.708458527477312 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124034551055938, 50.708638391550053 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124034551055938, 50.708818255622795 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124318564473563, 50.708638391550053 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124318564473563, 50.708818255622795 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124602577891188, 50.70827866340457 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124602577891188, 50.708458527477312 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124886591308813, 50.708098799331829 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124886591308813, 50.70827866340457 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125170604726438, 50.707739071186346 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125170604726438, 50.707918935259087 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125454618144063, 50.707559207113604 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125454618144063, 50.707739071186346 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125738631561688, 50.707199478968121 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125738631561688, 50.707379343040863 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126022644979312, 50.706839750822638 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126022644979312, 50.70701961489538 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126306658396937, 50.706659886749897 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126306658396937, 50.706839750822638 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123068281920784, 50.70802210057272 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123352297075653, 50.708381828718203 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123636312230522, 50.708561692790944 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123636312230522, 50.708741556863686 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123920327385391, 50.708921420936427 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12420434254026, 50.708921420936427 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124488357695129, 50.708741556863686 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124772372849998, 50.708561692790944 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124772372849998, 50.708741556863686 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125056388004867, 50.708201964645461 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125056388004867, 50.708381828718203 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125340403159736, 50.70802210057272 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125624418314605, 50.707662372427237 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125908433469474, 50.707482508354495 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126192448624344, 50.707122780209012 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126476463779213, 50.706763052063529 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126476463779213, 50.706942916136271 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1323055908, 50.705459568799995 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1277081022, 50.7099813329 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127600807992192, 50.709212121986369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127884837007807, 50.709032257913627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125289692888048, 50.70825482275464 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12557369758113, 50.707895094609157 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12557369758113, 50.708074958681898 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125857702274212, 50.707715230536415 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126141706967294, 50.707355502390932 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126141706967294, 50.707535366463674 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126425711660376, 50.707175638318191 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126709716353458, 50.706815910172708 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12699372104654, 50.706636046099966 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127277725739622, 50.706276317954483 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127277725739622, 50.706456182027225 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127561730432705, 50.705916589809 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127561730432705, 50.706096453881742 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127561730432705, 50.706276317954483 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127845735125787, 50.705736725736259 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127845735125787, 50.705916589809 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127845735125787, 50.706096453881742 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128129739818869, 50.705376997590776 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128129739818869, 50.705556861663517 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128129739818869, 50.705736725736259 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128413744511951, 50.705197133518034 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128413744511951, 50.705376997590776 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1314912783, 50.706627155950002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125167545845122, 50.707441232554636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125167545845122, 50.707621096627378 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125451544379269, 50.707261368481895 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125735542913415, 50.706901640336412 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125735542913415, 50.707081504409153 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126019541447562, 50.70672177626367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126303539981708, 50.706362048118187 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126587538515855, 50.706002319972704 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126587538515855, 50.706182184045446 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126871537050001, 50.705822455899963 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127155535584148, 50.70546272775448 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127155535584148, 50.705642591827221 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127439534118294, 50.705282863681738 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127723532652441, 50.704923135536255 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127723532652441, 50.705102999608997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128007531186587, 50.704563407390772 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128007531186587, 50.704743271463514 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128291529720734, 50.704383543318031 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12857552825488, 50.704023815172548 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12857552825488, 50.704203679245289 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128491402750001, 50.708368210563627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128491402750001, 50.708548074636369 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128775426809438, 50.708188346490886 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1288760704, 50.7041219794 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130108166491835, 50.708376614927317 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130392181711223, 50.708016886781834 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130676196930612, 50.707837022709093 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13096021215, 50.70747729456361 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13096021215, 50.707657158636351 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131244227369388, 50.707297430490868 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131244227369388, 50.70747729456361 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131528242588776, 50.706937702345385 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131528242588776, 50.707117566418127 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131528242588776, 50.707297430490868 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131812257808164, 50.706757838272644 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131812257808164, 50.706937702345385 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131812257808164, 50.707117566418127 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127506179699851, 50.709984225963694 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127790203349901, 50.709804361890953 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12807422699995, 50.70944463374547 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12807422699995, 50.709624497818211 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12807422699995, 50.709804361890953 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12835825065, 50.709084905599987 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12835825065, 50.709264769672728 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12835825065, 50.709624497818211 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128642274300049, 50.708905041527245 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128642274300049, 50.709264769672728 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128926297950099, 50.708545313381762 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128926297950099, 50.708905041527245 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129210321600149, 50.708365449309021 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129210321600149, 50.708545313381762 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129210321600149, 50.708725177454504 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128902712472134, 50.708062367586372 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129186734327868, 50.70788250351363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13235329, 50.704492640300003 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128507204381611, 50.709646314277315 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128507204381611, 50.709826178350056 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128791225071074, 50.709466450204573 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128791225071074, 50.709646314277315 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129075245760538, 50.70910672205909 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129359266450001, 50.708926857986349 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129643287139464, 50.708567129840866 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129927307828927, 50.708207401695383 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129927307828927, 50.708387265768124 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13021132851839, 50.708027537622641 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13021132851839, 50.708207401695383 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130495349207854, 50.707667809477158 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130495349207854, 50.7078476735499 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128945513329285, 50.709596733981847 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129229540543095, 50.709237005836364 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129513567756906, 50.708877277690881 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129513567756906, 50.709057141763623 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129797594970716, 50.70869741361814 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126553979405584, 50.706395283731901 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126553979405584, 50.706575147804642 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12683797302275, 50.706035555586418 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12683797302275, 50.706215419659159 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127121966639917, 50.705855691513676 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127121966639917, 50.706035555586418 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127405960257084, 50.705495963368193 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127405960257084, 50.705675827440935 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127689953874251, 50.705316099295452 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127689953874251, 50.705495963368193 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127973947491418, 50.704956371149969 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127973947491418, 50.70513623522271 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128257941108584, 50.704596643004486 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128257941108584, 50.704776507077227 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128541934725751, 50.704416778931744 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128541934725751, 50.704596643004486 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128825928342918, 50.704057050786261 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128825928342918, 50.704236914859003 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129109921960085, 50.70387718671352 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129109921960085, 50.704057050786261 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129393915577252, 50.703517458568037 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129393915577252, 50.703697322640778 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129677909194418, 50.703337594495295 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129250629326458, 50.709469548445476 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129534656650001, 50.709109820299993 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129534656650001, 50.709289684372735 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129818683973543, 50.70875009215451 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129818683973543, 50.708929956227252 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12989073425, 50.708876737813625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128720346913355, 50.706905765713621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129004361131678, 50.70672590164088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129004361131678, 50.706905765713621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129004361131678, 50.707085629786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129004361131678, 50.707265493859104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129004361131678, 50.707445357931846 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12928837535, 50.70672590164088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12928837535, 50.706905765713621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12928837535, 50.707085629786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129572389568322, 50.70672590164088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129572389568322, 50.706905765713621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129856403786644, 50.70672590164088 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126523519016228, 50.706722416154641 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126523519016228, 50.706902280227382 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126807513496857, 50.706542552081899 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127091507977486, 50.706182823936416 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127375502458115, 50.705823095790933 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127375502458115, 50.706002959863675 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127659496938744, 50.705643231718192 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127943491419373, 50.705283503572709 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127943491419373, 50.70546336764545 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128227485900002, 50.705103639499967 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128511480380631, 50.704743911354484 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128511480380631, 50.704923775427226 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12879547486126, 50.704564047281742 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129079469341889, 50.704204319136259 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129079469341889, 50.704384183209001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129363463822518, 50.703844590990776 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129363463822518, 50.704024455063518 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129647458303147, 50.703664726918035 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129647458303147, 50.703844590990776 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129931452783776, 50.703304998772552 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129931452783776, 50.703484862845293 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126718111810631, 50.705479828045526 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126718111810631, 50.705659692118267 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126718111810631, 50.705839556191009 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12700210083386, 50.705299963972784 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12700210083386, 50.705479828045526 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127286089857088, 50.704940235827301 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127286089857088, 50.705120099900043 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127286089857088, 50.705299963972784 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127570078880316, 50.704400643609077 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127570078880316, 50.704580507681818 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127570078880316, 50.70476037175456 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127570078880316, 50.704940235827301 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127854067903544, 50.704040915463594 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127854067903544, 50.704220779536335 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127854067903544, 50.704400643609077 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127854067903544, 50.704580507681818 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128138056926772, 50.703681187318111 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128138056926772, 50.703861051390852 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128138056926772, 50.704040915463594 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128138056926772, 50.704220779536335 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128422045950001, 50.703501323245369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128422045950001, 50.703681187318111 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128422045950001, 50.703861051390852 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128422045950001, 50.704040915463594 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128706034973229, 50.703321459172628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128706034973229, 50.703501323245369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128706034973229, 50.703681187318111 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128990023996457, 50.702961731027145 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128990023996457, 50.703141595099886 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128990023996457, 50.703321459172628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128990023996457, 50.703501323245369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129274013019685, 50.702961731027145 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129274013019685, 50.703141595099886 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129558002042914, 50.702781866954403 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129558002042914, 50.702961731027145 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129841991066142, 50.702602002881662 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129841991066142, 50.702781866954403 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13012598008937, 50.70242213880892 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13012598008937, 50.702602002881662 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13255598785, 50.709952083350004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129194801772393, 50.707395669986361 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129478817590798, 50.707035941840878 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129478817590798, 50.70721580591362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129478817590798, 50.707395669986361 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129762833409203, 50.707035941840878 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130046849227608, 50.706856077768137 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.127850530405881, 50.709843475022801 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12841856987794, 50.709303882804576 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12870258961397, 50.708944154659093 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.128986609349999, 50.708764290586352 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.129270629086029, 50.708404562440869 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.129838668558087, 50.707864970222644 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.130122688294117, 50.707505242077161 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13036628405, 50.707222480399999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1304562512, 50.708313930499997 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.127987115095037, 50.710056558059165 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.128271135296139, 50.709876693986423 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.128555155497242, 50.70951696584094 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.129123195899448, 50.708977373622716 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12940721610055, 50.708617645477233 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.129691236301653, 50.708437781404491 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.129975256502756, 50.708078053259008 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.130543296904961, 50.707538461040784 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13051133165, 50.707077236250001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13120740265, 50.706890683700003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1311967997, 50.706427888500002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13292060415, 50.704536706799999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130902300999514, 50.702891783886372 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131186291700487, 50.70271191981363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1314145626, 50.709306917399999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127542856854549, 50.70983031939101 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127826868823639, 50.709470591245527 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12811088079273, 50.709110863100044 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12811088079273, 50.709290727172785 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12839489276182, 50.708751134954561 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12839489276182, 50.708930999027302 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12867890473091, 50.708571270881819 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128962916700001, 50.708211542736336 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128962916700001, 50.708391406809078 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129246928669091, 50.708031678663595 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129530940638181, 50.707671950518112 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129530940638181, 50.707851814590853 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129814952607272, 50.707312222372629 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129814952607272, 50.70749208644537 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130098964576362, 50.706772630154404 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130098964576362, 50.706952494227146 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130098964576362, 50.707132358299887 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130382976545453, 50.706592766081663 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130382976545453, 50.706772630154404 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130666988514543, 50.70623303793618 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130666988514543, 50.706412902008921 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130666988514543, 50.706592766081663 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1306496258, 50.706936485699998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13078084235, 50.706800434800002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.131840438399999, 50.705787455749999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1294214152079, 50.708079040268203 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1294214152079, 50.708438768413686 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12970542852474, 50.70771931212272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12970542852474, 50.707899176195461 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12970542852474, 50.708079040268203 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12970542852474, 50.708258904340944 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129989441841579, 50.707359583977237 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129989441841579, 50.707539448049978 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129989441841579, 50.707899176195461 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130273455158419, 50.707179719904495 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130273455158419, 50.707539448049978 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130273455158419, 50.70771931212272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130557468475259, 50.706819991759012 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130557468475259, 50.706999855831754 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130557468475259, 50.707179719904495 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130557468475259, 50.707359583977237 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130557468475259, 50.707539448049978 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130841481792099, 50.706640127686271 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130841481792099, 50.706819991759012 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130841481792099, 50.706999855831754 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130841481792099, 50.707179719904495 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130841481792099, 50.707359583977237 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.130919459399999, 50.70666417775 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1309133242, 50.705536365050001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13106450355, 50.706532551700001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128534225342691, 50.704984037040944 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128534225342691, 50.705163901113686 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128818217971293, 50.704804172968203 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128818217971293, 50.704984037040944 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129102210599895, 50.70444444482272 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129102210599895, 50.704624308895461 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129102210599895, 50.704804172968203 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129102210599895, 50.704984037040944 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129102210599895, 50.705163901113686 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129386203228497, 50.704264580749978 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129386203228497, 50.70444444482272 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129386203228497, 50.704624308895461 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129386203228497, 50.704804172968203 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129386203228497, 50.704984037040944 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129386203228497, 50.705163901113686 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129670195857099, 50.703904852604495 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129670195857099, 50.704084716677237 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129670195857099, 50.704264580749978 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129670195857099, 50.70444444482272 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129670195857099, 50.704624308895461 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129670195857099, 50.704804172968203 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129670195857099, 50.704984037040944 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129670195857099, 50.705163901113686 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129670195857099, 50.705343765186427 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129954188485701, 50.703545124459012 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129954188485701, 50.703724988531754 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129954188485701, 50.703904852604495 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129954188485701, 50.704084716677237 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129954188485701, 50.704264580749978 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129954188485701, 50.70444444482272 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129954188485701, 50.704624308895461 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129954188485701, 50.704804172968203 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129954188485701, 50.704984037040944 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129954188485701, 50.705163901113686 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129954188485701, 50.705343765186427 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129954188485701, 50.705523629259169 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130238181114303, 50.703365260386271 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130238181114303, 50.703545124459012 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130238181114303, 50.703724988531754 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130238181114303, 50.703904852604495 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130238181114303, 50.704084716677237 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130238181114303, 50.704264580749978 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130238181114303, 50.70444444482272 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130238181114303, 50.704624308895461 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130238181114303, 50.704804172968203 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130238181114303, 50.704984037040944 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130238181114303, 50.705163901113686 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130238181114303, 50.705343765186427 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130522173742905, 50.703185396313529 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130522173742905, 50.703365260386271 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130522173742905, 50.703545124459012 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130522173742905, 50.703724988531754 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130522173742905, 50.703904852604495 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130522173742905, 50.704084716677237 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130522173742905, 50.704264580749978 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130522173742905, 50.70444444482272 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130522173742905, 50.704624308895461 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130522173742905, 50.704804172968203 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130522173742905, 50.704984037040944 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130806166371507, 50.703185396313529 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130806166371507, 50.703365260386271 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130806166371507, 50.703545124459012 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130806166371507, 50.703724988531754 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130806166371507, 50.703904852604495 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130806166371507, 50.704084716677237 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130806166371507, 50.704264580749978 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130806166371507, 50.70444444482272 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130806166371507, 50.704624308895461 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130806166371507, 50.704804172968203 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131090159000109, 50.703724988531754 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131090159000109, 50.703904852604495 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131090159000109, 50.704084716677237 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131090159000109, 50.704264580749978 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131090159000109, 50.70444444482272 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131090159000109, 50.704624308895461 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131374151628711, 50.703904852604495 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131374151628711, 50.704084716677237 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131658144257313, 50.704084716677237 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13151110971577, 50.705815695440883 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13151110971577, 50.706175423586366 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13179511818423, 50.705995559513624 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13179511818423, 50.706175423586366 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13179511818423, 50.706355287659107 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1357830097, 50.708459905300003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130626339281316, 50.708783146372731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130626339281316, 50.709142874518214 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130910362190658, 50.708423418227248 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130910362190658, 50.70860328229999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130910362190658, 50.708783146372731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130910362190658, 50.708963010445473 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1311943851, 50.708243554154507 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1311943851, 50.708423418227248 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1311943851, 50.708783146372731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131478408009341, 50.708243554154507 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131478408009341, 50.70860328229999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131478408009341, 50.708783146372731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131478408009341, 50.709142874518214 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131762430918683, 50.708243554154507 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131762430918683, 50.708423418227248 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131904009099999, 50.706704126950001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13185579535, 50.704987486350007 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130222394054996, 50.708318374581843 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130506412486664, 50.708138510509102 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130790430918331, 50.70795864643636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131074449349999, 50.707778782363619 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131074449349999, 50.70795864643636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131358467781666, 50.707598918290877 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131358467781666, 50.707778782363619 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131358467781666, 50.70795864643636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131358467781666, 50.708138510509102 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131642486213334, 50.707419054218136 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131642486213334, 50.707598918290877 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131642486213334, 50.707778782363619 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131642486213334, 50.70795864643636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131642486213334, 50.708138510509102 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131926504645001, 50.707419054218136 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131926504645001, 50.707598918290877 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131926504645001, 50.707778782363619 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131926504645001, 50.70795864643636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131926504645001, 50.708138510509102 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131926504645001, 50.708318374581843 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13177804695, 50.705724486663627 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13177804695, 50.705904350736368 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130992659473954, 50.706488602399986 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130992659473954, 50.706668466472728 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130992659473954, 50.706848330545469 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130992659473954, 50.707028194618211 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130992659473954, 50.707208058690952 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130992659473954, 50.707387922763694 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131276667724651, 50.705949010181762 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131276667724651, 50.706128874254503 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131276667724651, 50.706308738327245 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131276667724651, 50.706488602399986 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131276667724651, 50.706668466472728 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131276667724651, 50.706848330545469 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131276667724651, 50.707028194618211 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131560675975349, 50.706308738327245 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131560675975349, 50.706488602399986 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131560675975349, 50.706668466472728 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131560675975349, 50.706848330545469 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131844684226047, 50.705589282036279 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131844684226047, 50.706488602399986 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131844684226047, 50.706668466472728 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130721192108473, 50.706350614945478 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130721192108473, 50.70653047901822 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131005199379237, 50.705631158654512 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131005199379237, 50.705811022727254 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131005199379237, 50.705990886799995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131005199379237, 50.706170750872737 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13128920665, 50.705631158654512 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131573213920763, 50.705631158654512 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131857221191527, 50.705451294581771 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130109238868471, 50.705583298854577 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130393238245647, 50.705223570709094 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130393238245647, 50.705583298854577 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130677237622823, 50.705043706636353 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130677237622823, 50.705223570709094 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130677237622823, 50.705403434781836 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130677237622823, 50.705583298854577 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130677237622823, 50.705763162927319 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130961237, 50.704863842563611 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130961237, 50.705043706636353 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130961237, 50.705223570709094 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130961237, 50.705403434781836 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130961237, 50.705583298854577 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131245236377175, 50.704504114418128 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131245236377175, 50.70468397849087 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131245236377175, 50.704863842563611 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131245236377175, 50.705043706636353 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131245236377175, 50.705223570709094 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131245236377175, 50.705403434781836 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131529235754352, 50.704144386272645 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131529235754352, 50.704324250345387 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131529235754352, 50.704504114418128 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131529235754352, 50.70468397849087 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131529235754352, 50.704863842563611 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131529235754352, 50.705043706636353 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131529235754352, 50.705223570709094 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131529235754352, 50.705403434781836 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131813235131528, 50.704144386272645 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131813235131528, 50.704324250345387 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131813235131528, 50.704504114418128 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131813235131528, 50.70468397849087 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131813235131528, 50.704863842563611 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131813235131528, 50.705043706636353 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131813235131528, 50.705223570709094 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131813235131528, 50.705403434781836 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128629897013909, 50.703970236100055 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128629897013909, 50.704150100172797 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128913882184107, 50.703790372027314 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129197867354305, 50.703430643881831 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129197867354305, 50.703610507954572 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129481852524504, 50.703250779809089 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129765837694702, 50.703070915736348 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1300498228649, 50.702891051663606 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130333808035099, 50.702711187590864 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130617793205297, 50.702531323518123 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130901778375495, 50.702351459445381 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131185763545694, 50.70217159537264 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131469748715892, 50.701991731299898 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13175373388609, 50.701811867227157 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1319450451, 50.705315453586365 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131808294873238, 50.70199770428637 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132092280026763, 50.701817840213629 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13219293735, 50.706067610250003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132231404300001, 50.710004885450005 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13240115385, 50.709126527400002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130016283747739, 50.70334772016821 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130300270931826, 50.703167856095469 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130584258115912, 50.702987992022727 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130868245299999, 50.702808127949986 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131152232484086, 50.702628263877244 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131436219668173, 50.702448399804503 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13172020685226, 50.702268535731761 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130261280723851, 50.702506096695473 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130545264914311, 50.702326232622731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13082924910477, 50.70214636854999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131113233295229, 50.701966504477248 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131397217485689, 50.701786640404507 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131681201676148, 50.701606776331765 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13368983595, 50.703854993450001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131877324664573, 50.701763721277253 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131877324664573, 50.702123449422736 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132161309435427, 50.701763721277253 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132161309435427, 50.701943585349994 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132376645300001, 50.705746623300001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131875015741149, 50.701627050327254 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13215899975, 50.701627050327254 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132442983758851, 50.701806914399995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1381150114, 50.70101091635 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132500776246594, 50.709766048100001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132784809553406, 50.709766048100001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13314377235, 50.707626804550003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132010371315547, 50.707231051995393 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132010371315547, 50.707410916068135 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132010371315547, 50.707590780140876 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132010371315547, 50.707770644213618 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132010371315547, 50.707950508286359 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132010371315547, 50.708130372359101 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132010371315547, 50.708310236431842 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132010371315547, 50.708490100504584 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132294389657774, 50.707231051995393 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132294389657774, 50.707410916068135 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132294389657774, 50.707590780140876 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132294389657774, 50.707770644213618 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132294389657774, 50.707950508286359 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132294389657774, 50.708130372359101 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132578408, 50.707410916068135 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132578408, 50.707590780140876 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132578408, 50.707770644213618 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132578408, 50.707950508286359 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132862426342226, 50.707410916068135 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132862426342226, 50.707590780140876 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133422051949999, 50.707718628 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.131941606701435, 50.705811141799998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132225614900479, 50.705631277727257 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132225614900479, 50.705811141799998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132509623099523, 50.705631277727257 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132509623099523, 50.705811141799998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132509623099523, 50.70599100587274 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132793631298567, 50.705631277727257 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132793631298567, 50.70599100587274 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134073841105763, 50.70288262335 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13435783195, 50.702702759277258 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13435783195, 50.70288262335 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13435783195, 50.703062487422741 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131926923372268, 50.704957511213621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131926923372268, 50.705137375286363 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132210925490756, 50.70477764714088 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132210925490756, 50.704957511213621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132494927609243, 50.70477764714088 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13284482075, 50.704622846250004 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1328578904, 50.704577770450001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131931227978935, 50.704267620340879 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131931227978935, 50.70444748441362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131931227978935, 50.704627348486362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131931227978935, 50.704807212559103 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132215227892979, 50.70444748441362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132215227892979, 50.704627348486362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132499227807022, 50.704627348486362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132783227721066, 50.704627348486362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133225247493419, 50.703953231963624 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133509245806581, 50.703953231963624 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13289392332025, 50.705064417986364 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13289392332025, 50.705244282059105 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1331779263, 50.704884553913622 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133461929279751, 50.704704689840881 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1430983612, 50.705398925650002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132499001600396, 50.705300020163605 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132783000366799, 50.705120156090864 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132783000366799, 50.705300020163605 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133066999133201, 50.704760427945381 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133066999133201, 50.704940292018122 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133066999133201, 50.705300020163605 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133066999133201, 50.705479884236347 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133066999133201, 50.705659748309088 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133066999133201, 50.70583961238183 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133066999133201, 50.706019476454571 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133350997899604, 50.704580563872639 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133350997899604, 50.704940292018122 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133350997899604, 50.705120156090864 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133350997899604, 50.706019476454571 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133350997899604, 50.706199340527313 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133634996666006, 50.704400699799898 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133634996666006, 50.704580563872639 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133634996666006, 50.704760427945381 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133634996666006, 50.706379204600054 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133634996666006, 50.706559068672796 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133918995432409, 50.706738932745537 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132224479133029, 50.708357759418121 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132224479133029, 50.708537623490862 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132508499738687, 50.708357759418121 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132508499738687, 50.708537623490862 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132508499738687, 50.70943694385457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132792520344344, 50.707818167199896 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132792520344344, 50.707998031272638 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132792520344344, 50.708177895345379 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132792520344344, 50.708357759418121 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132792520344344, 50.708537623490862 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132792520344344, 50.708717487563604 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132792520344344, 50.708897351636345 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132792520344344, 50.709257079781828 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132792520344344, 50.70943694385457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132792520344344, 50.709616807927311 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133076540950001, 50.707818167199896 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133076540950001, 50.707998031272638 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133076540950001, 50.708177895345379 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133076540950001, 50.708357759418121 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133076540950001, 50.708537623490862 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133076540950001, 50.708717487563604 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133076540950001, 50.708897351636345 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133076540950001, 50.709077215709087 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133076540950001, 50.709257079781828 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133076540950001, 50.70943694385457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133076540950001, 50.709616807927311 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133076540950001, 50.709796672000053 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133360561555659, 50.707998031272638 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133360561555659, 50.708177895345379 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133360561555659, 50.708357759418121 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133360561555659, 50.708537623490862 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133360561555659, 50.708897351636345 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133360561555659, 50.709077215709087 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133360561555659, 50.709257079781828 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133360561555659, 50.709616807927311 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133360561555659, 50.709796672000053 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133360561555659, 50.709976536072794 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133644582161316, 50.707998031272638 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133644582161316, 50.708177895345379 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133644582161316, 50.708357759418121 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133644582161316, 50.708537623490862 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133644582161316, 50.708717487563604 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133644582161316, 50.708897351636345 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133644582161316, 50.709077215709087 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133644582161316, 50.709257079781828 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133644582161316, 50.70943694385457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133644582161316, 50.709616807927311 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133644582161316, 50.709796672000053 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133644582161316, 50.709976536072794 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133928602766973, 50.708357759418121 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133928602766973, 50.708537623490862 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133928602766973, 50.708717487563604 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133928602766973, 50.708897351636345 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133928602766973, 50.709077215709087 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133928602766973, 50.709257079781828 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133928602766973, 50.70943694385457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133928602766973, 50.709616807927311 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133928602766973, 50.709796672000053 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133928602766973, 50.709976536072794 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133510172360185, 50.703583435950002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13379416725, 50.70340357187726 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134078162139814, 50.70340357187726 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133783881583756, 50.703623673700001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133783881583756, 50.703803537772743 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134067877016244, 50.703443809627259 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134067877016244, 50.703623673700001 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1353522012, 50.7029219932 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133654355122753, 50.702810984186364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133938344540917, 50.702631120113622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133938344540917, 50.702810984186364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134222333959081, 50.702631120113622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134506323377245, 50.702451256040881 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134506323377245, 50.702631120113622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132094103387474, 50.703768399649988 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132378096141649, 50.703948263722729 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132378096141649, 50.704128127795471 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132378096141649, 50.704307991868212 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132662088895825, 50.703768399649988 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132662088895825, 50.703948263722729 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132662088895825, 50.704128127795471 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132662088895825, 50.704307991868212 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132662088895825, 50.704487855940954 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13294608165, 50.703588535577246 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13294608165, 50.703768399649988 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13294608165, 50.703948263722729 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133230074404175, 50.703048943359022 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133230074404175, 50.703228807431763 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133230074404175, 50.703408671504505 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133230074404175, 50.703588535577246 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133230074404175, 50.703768399649988 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133230074404175, 50.704128127795471 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133514067158351, 50.703228807431763 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133514067158351, 50.703408671504505 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133514067158351, 50.703768399649988 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133798059912526, 50.703228807431763 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13607239715, 50.708726705499998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133218559723422, 50.705339475027223 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133218559723422, 50.705519339099965 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133502556415615, 50.705159610954482 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133502556415615, 50.705339475027223 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133502556415615, 50.705519339099965 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133502556415615, 50.705699203172706 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133502556415615, 50.705879067245448 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133502556415615, 50.706058931318189 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133786553107808, 50.704799882808999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133786553107808, 50.70497974688174 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133786553107808, 50.705159610954482 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133786553107808, 50.705339475027223 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133786553107808, 50.705519339099965 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133786553107808, 50.706058931318189 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133786553107808, 50.706238795390931 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133786553107808, 50.706418659463672 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134070549800001, 50.704620018736257 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134070549800001, 50.70497974688174 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134070549800001, 50.705159610954482 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134070549800001, 50.705339475027223 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134070549800001, 50.706418659463672 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134070549800001, 50.706598523536414 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134354546492195, 50.704260290590774 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134354546492195, 50.70497974688174 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134354546492195, 50.706598523536414 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134354546492195, 50.706778387609155 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134638543184388, 50.704080426518033 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134638543184388, 50.706958251681897 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134922539876581, 50.707138115754638 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135148615, 50.706232064250003 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1350888384, 50.703167072550002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132304897503396, 50.705173495422791 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132588886769307, 50.704813767277308 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132588886769307, 50.70499363135005 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132872876035218, 50.704633903204567 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132872876035218, 50.704813767277308 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13315686530113, 50.704454039131825 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133440854567041, 50.704274175059084 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133724843832953, 50.703914446913601 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133724843832953, 50.704094310986342 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134008833098864, 50.703734582840859 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134292822364776, 50.703194990622634 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134292822364776, 50.703374854695376 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134292822364776, 50.703554718768117 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134576811630687, 50.703194990622634 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134860800896599, 50.703015126549893 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13514479016251, 50.70265539840441 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134418155324563, 50.703066279745478 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134702143608187, 50.702706551599995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134702143608187, 50.702886415672737 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134986131891812, 50.702526687527254 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134986131891812, 50.702706551599995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135270120175436, 50.702346823454512 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13548643985, 50.708202022899997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134773786247363, 50.702224114536371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13505777295, 50.702044250463629 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135341759652636, 50.702044250463629 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1356096997, 50.708025453700003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13563929485, 50.708357927050002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135769305749999, 50.708181357699999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134599686703494, 50.707259395754512 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134599686703494, 50.707439259827254 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134883705034498, 50.707619123899995 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135167723365502, 50.707798987972737 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13200334139809, 50.706052423227156 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13200334139809, 50.706232287299898 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132287352206742, 50.706232287299898 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132571363015393, 50.706232287299898 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132855373824045, 50.706232287299898 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133139384632696, 50.706412151372639 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133423395441348, 50.706592015445381 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133707406249999, 50.706771879518122 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133991417058651, 50.706951743590864 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133991417058651, 50.707131607663605 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134275427867302, 50.707311471736347 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134559438675954, 50.707491335809088 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134843449484605, 50.70767119988183 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135127460293257, 50.708030928027313 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135411471101908, 50.708030928027313 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135411471101908, 50.708210792100054 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13588920805, 50.701415539799996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1360435337, 50.702236322250002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131918377947941, 50.706745783713529 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131918377947941, 50.706925647786271 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132202392876807, 50.706745783713529 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132202392876807, 50.706925647786271 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132202392876807, 50.707105511859012 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132486407805673, 50.706745783713529 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132486407805673, 50.706925647786271 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132486407805673, 50.707105511859012 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132770422734539, 50.706925647786271 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132770422734539, 50.707105511859012 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133054437663405, 50.706925647786271 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133054437663405, 50.707105511859012 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133054437663405, 50.707285375931754 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133338452592271, 50.707105511859012 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133338452592271, 50.707285375931754 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133338452592271, 50.707465240004495 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133338452592271, 50.707645104077237 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133622467521136, 50.707285375931754 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133622467521136, 50.707465240004495 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133622467521136, 50.707645104077237 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133622467521136, 50.707824968149978 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133906482450002, 50.707465240004495 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133906482450002, 50.707645104077237 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133906482450002, 50.707824968149978 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134190497378868, 50.707824968149978 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134474512307734, 50.70800483222272 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1347585272366, 50.70800483222272 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13592781165, 50.708593271049999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13589919205, 50.708283266750001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1411560806, 50.708753516149997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131971544555602, 50.706417002490788 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131971544555602, 50.70659686656353 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132255557633373, 50.706417002490788 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132255557633373, 50.70659686656353 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132539570711145, 50.706417002490788 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132539570711145, 50.70659686656353 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132823583788916, 50.706417002490788 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132823583788916, 50.70659686656353 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132823583788916, 50.706776730636271 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133107596866687, 50.70659686656353 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133107596866687, 50.706776730636271 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133391609944459, 50.706776730636271 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133391609944459, 50.706956594709013 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13367562302223, 50.706956594709013 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13367562302223, 50.707136458781754 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133959636100002, 50.707316322854496 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133959636100002, 50.707496186927237 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134243649177773, 50.707496186927237 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134243649177773, 50.707676050999979 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134527662255545, 50.707676050999979 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134527662255545, 50.70785591507272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134811675333316, 50.70785591507272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135095688411088, 50.708215643218203 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135379701488859, 50.708395507290945 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135947727644402, 50.708935099509169 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134054909960424, 50.706827630727155 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134338924513663, 50.707007494799896 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134622939066903, 50.707187358872638 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134906953620142, 50.707367222945379 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135190968173381, 50.707547087018121 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13575899727986, 50.708086679236345 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13575899727986, 50.708266543309087 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13575899727986, 50.70862627145457 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136043011833099, 50.708266543309087 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136043011833099, 50.708446407381828 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136043011833099, 50.70862627145457 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136043011833099, 50.708806135527311 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136327026386338, 50.708446407381828 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136327026386338, 50.708806135527311 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136327026386338, 50.709165863672794 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136611040939577, 50.708806135527311 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136611040939577, 50.708985999600053 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136611040939577, 50.709165863672794 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136611040939577, 50.709345727745536 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1364783565, 50.701832162900004 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136651725, 50.70925601695 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13401955386599, 50.708373071922644 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134303579089993, 50.708732800068127 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134303579089993, 50.708912664140868 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134303579089993, 50.70909252821361 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134303579089993, 50.709272392286351 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134303579089993, 50.709452256359093 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134303579089993, 50.709632120431834 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134303579089993, 50.709811984504576 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134303579089993, 50.709991848577317 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134587604313996, 50.708912664140868 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134587604313996, 50.70909252821361 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134587604313996, 50.709272392286351 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134587604313996, 50.709452256359093 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134587604313996, 50.709632120431834 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134587604313996, 50.709811984504576 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134587604313996, 50.709991848577317 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134871629537999, 50.70909252821361 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134871629537999, 50.709272392286351 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134871629537999, 50.709452256359093 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134871629537999, 50.709632120431834 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134871629537999, 50.709811984504576 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134871629537999, 50.709991848577317 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135155654762002, 50.70909252821361 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135155654762002, 50.709272392286351 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135155654762002, 50.709452256359093 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135155654762002, 50.709632120431834 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135155654762002, 50.709811984504576 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135155654762002, 50.709991848577317 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135439679986005, 50.709272392286351 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135439679986005, 50.709452256359093 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135439679986005, 50.709632120431834 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135439679986005, 50.709811984504576 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135723705210008, 50.709632120431834 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135723705210008, 50.709811984504576 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1360500929, 50.708385313600004 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1359253025, 50.702381435299998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134916421869777, 50.701540513936365 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134916421869777, 50.701720378009107 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135200402489925, 50.701360649863624 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135200402489925, 50.701540513936365 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135200402489925, 50.701720378009107 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135484383110073, 50.701180785790882 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135484383110073, 50.701360649863624 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135484383110073, 50.701540513936365 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135768363730222, 50.701000921718141 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135768363730222, 50.701180785790882 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13550777106837, 50.701942199836367 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135791754950001, 50.701762335763625 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136075738831631, 50.701582471690884 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13620309415, 50.702998960599999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136216486149999, 50.70296736585 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135180262009848, 50.701895772295472 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135464242604924, 50.701715908222731 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135464242604924, 50.701895772295472 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135748223199999, 50.701356180077248 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135748223199999, 50.701536044149989 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135748223199999, 50.701715908222731 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136032203795075, 50.700996451931765 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136032203795075, 50.701176316004506 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136032203795075, 50.701356180077248 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136316184390151, 50.700996451931765 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134470274507484, 50.704715869477319 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134754267419631, 50.704715869477319 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135038260331779, 50.704536005404577 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135322253243927, 50.704176277259094 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135322253243927, 50.704356141331836 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135606246156074, 50.70363668504087 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135606246156074, 50.703816549113611 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135606246156074, 50.703996413186353 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135890239068222, 50.703456820968128 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135890239068222, 50.70363668504087 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135890239068222, 50.703816549113611 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13617423198037, 50.703097092822645 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13617423198037, 50.703276956895387 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13617423198037, 50.703456820968128 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13617423198037, 50.70363668504087 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136458224892517, 50.703456820968128 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136172192624156, 50.701396373272736 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1364561732, 50.701036645127253 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1364561732, 50.701216509199995 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133962765740778, 50.703993092200044 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133962765740778, 50.704172956272785 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133962765740778, 50.704352820345527 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133962765740778, 50.704532684418268 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134246748887271, 50.703813228127302 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134246748887271, 50.703993092200044 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134246748887271, 50.704172956272785 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134530732033765, 50.703453499981819 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134530732033765, 50.703633364054561 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134530732033765, 50.703813228127302 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134530732033765, 50.703993092200044 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134814715180259, 50.703273635909078 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134814715180259, 50.703453499981819 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134814715180259, 50.703633364054561 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135098698326752, 50.702913907763595 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135098698326752, 50.703093771836336 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135098698326752, 50.703273635909078 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135098698326752, 50.703453499981819 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135382681473246, 50.702734043690853 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135382681473246, 50.703093771836336 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135666664619739, 50.70237431554537 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135666664619739, 50.702554179618112 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135666664619739, 50.702734043690853 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135666664619739, 50.702913907763595 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135950647766233, 50.702194451472629 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135950647766233, 50.70237431554537 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135950647766233, 50.702554179618112 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136234630912726, 50.701834723327146 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136234630912726, 50.702014587399887 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136234630912726, 50.702194451472629 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136234630912726, 50.70237431554537 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13651861405922, 50.701474995181663 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13651861405922, 50.701654859254404 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13651861405922, 50.701834723327146 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13651861405922, 50.702014587399887 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134148016813127, 50.704531413277316 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134148016813127, 50.704711277350057 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134148016813127, 50.704891141422799 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134432006384845, 50.704351549204574 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134432006384845, 50.704531413277316 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134432006384845, 50.704891141422799 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134715995956563, 50.704171685131833 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134715995956563, 50.704351549204574 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134715995956563, 50.704531413277316 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134999985528282, 50.70381195698635 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134999985528282, 50.703991821059091 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134999985528282, 50.704171685131833 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134999985528282, 50.704351549204574 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1352839751, 50.703632092913608 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1352839751, 50.70381195698635 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1352839751, 50.703991821059091 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135567964671718, 50.703272364768125 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135567964671718, 50.703452228840867 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135567964671718, 50.703632092913608 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135851954243437, 50.703092500695384 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135851954243437, 50.703272364768125 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136135943815155, 50.702732772549901 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136135943815155, 50.702912636622642 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136419933386874, 50.702552908477159 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136419933386874, 50.702732772549901 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1365583446, 50.702469595050005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136572279699999, 50.702460469350001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136586214699999, 50.702451343649997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13660014975, 50.702442217950001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1366140848, 50.702433092299998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1365254513, 50.702547604027259 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1365254513, 50.702727468100001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141660889548061, 50.702243265986368 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134832874525667, 50.705388771145529 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135116863875477, 50.705388771145529 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135116863875477, 50.70556863521827 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135400853225287, 50.705388771145529 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135400853225287, 50.70556863521827 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135684842575096, 50.705388771145529 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135968831924906, 50.703949858563597 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135968831924906, 50.705208907072787 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135968831924906, 50.70556863521827 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136252821274716, 50.703050538199889 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136252821274716, 50.703769994490855 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136252821274716, 50.703949858563597 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136252821274716, 50.704129722636338 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136252821274716, 50.704849178927304 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136252821274716, 50.705029043000046 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136252821274716, 50.705208907072787 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136252821274716, 50.705388771145529 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.702870674127148 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.703050538199889 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.703230402272631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.703410266345372 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.703590130418114 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.703769994490855 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.703949858563597 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.704129722636338 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.70430958670908 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.704489450781821 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.704669314854563 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.704849178927304 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136536810624525, 50.705388771145529 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136820799974335, 50.702690810054406 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136820799974335, 50.702870674127148 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136820799974335, 50.703050538199889 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136820799974335, 50.703230402272631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136820799974335, 50.703410266345372 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136820799974335, 50.703590130418114 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136820799974335, 50.703769994490855 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136820799974335, 50.703949858563597 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136820799974335, 50.704129722636338 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136820799974335, 50.70430958670908 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136820799974335, 50.704489450781821 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136820799974335, 50.705208907072787 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134123855809094, 50.705526735240781 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134407862640912, 50.70534687116804 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134407862640912, 50.705526735240781 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134691869472729, 50.70534687116804 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134691869472729, 50.705526735240781 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134691869472729, 50.705706599313523 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134691869472729, 50.705886463386264 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134975876304547, 50.705706599313523 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134975876304547, 50.705886463386264 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134975876304547, 50.706066327459006 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134975876304547, 50.706246191531747 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134975876304547, 50.706426055604489 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134975876304547, 50.70660591967723 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135259883136365, 50.705706599313523 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135259883136365, 50.705886463386264 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135259883136365, 50.706066327459006 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135259883136365, 50.706246191531747 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135259883136365, 50.706426055604489 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135259883136365, 50.70660591967723 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135259883136365, 50.706785783749972 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135543889968182, 50.705706599313523 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135543889968182, 50.705886463386264 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135543889968182, 50.706246191531747 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135543889968182, 50.706426055604489 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135543889968182, 50.70660591967723 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135543889968182, 50.706785783749972 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135543889968182, 50.706965647822713 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135543889968182, 50.707145511895455 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1358278968, 50.705706599313523 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1358278968, 50.705886463386264 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1358278968, 50.70660591967723 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1358278968, 50.706785783749972 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1358278968, 50.706965647822713 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1358278968, 50.707145511895455 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1358278968, 50.707325375968196 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136111903631817, 50.706785783749972 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136111903631817, 50.706965647822713 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136111903631817, 50.707145511895455 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136111903631817, 50.707325375968196 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136111903631817, 50.707505240040938 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136395910463635, 50.706965647822713 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136395910463635, 50.707145511895455 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136395910463635, 50.707325375968196 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136395910463635, 50.707505240040938 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136395910463635, 50.707685104113679 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136679917295452, 50.707145511895455 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136679917295452, 50.707325375968196 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136679917295452, 50.707505240040938 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136679917295452, 50.707685104113679 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136679917295452, 50.707864968186421 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13696392412727, 50.707325375968196 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13696392412727, 50.707505240040938 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13696392412727, 50.707685104113679 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13696392412727, 50.707864968186421 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13696392412727, 50.708044832259162 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137247930959087, 50.707505240040938 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137247930959087, 50.707685104113679 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137247930959087, 50.707864968186421 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137247930959087, 50.708044832259162 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137247930959087, 50.708224696331904 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137531937790905, 50.708044832259162 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137495580410581, 50.707806337113624 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137779600670194, 50.707626473040882 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137779600670194, 50.707806337113624 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137779600670194, 50.707986201186365 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138063620929806, 50.707806337113624 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138063620929806, 50.707986201186365 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138347641189418, 50.707986201186365 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133809539787281, 50.705777067090779 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133809539787281, 50.70595693116352 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134093546644139, 50.705417338945296 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134093546644139, 50.705597203018037 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134093546644139, 50.705777067090779 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134093546644139, 50.70595693116352 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134093546644139, 50.706136795236262 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134093546644139, 50.706316659309003 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134377553500997, 50.705777067090779 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134377553500997, 50.70595693116352 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134377553500997, 50.706136795236262 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134377553500997, 50.706316659309003 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134377553500997, 50.706496523381745 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134661560357855, 50.706136795236262 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134661560357855, 50.706316659309003 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134661560357855, 50.706496523381745 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134661560357855, 50.706676387454486 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134945567214713, 50.706856251527228 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134945567214713, 50.707036115599969 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135229574071571, 50.707036115599969 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135229574071571, 50.707215979672711 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135513580928428, 50.707036115599969 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135513580928428, 50.707395843745452 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135797587785286, 50.707575707818194 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136081594642144, 50.707755571890935 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136081594642144, 50.707935435963677 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136365601499002, 50.707755571890935 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136365601499002, 50.707935435963677 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136365601499002, 50.708115300036418 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13664960835586, 50.707935435963677 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13664960835586, 50.708115300036418 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13664960835586, 50.70829516410916 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136933615212718, 50.708115300036418 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136933615212718, 50.70829516410916 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136933615212718, 50.708475028181901 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13689147965, 50.702196652250002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1369045448, 50.702151576 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1370626397, 50.709274412149995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133956249374214, 50.708000812336273 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133956249374214, 50.708180676409015 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134240271289372, 50.708000812336273 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134240271289372, 50.708180676409015 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134240271289372, 50.708360540481756 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134240271289372, 50.708540404554498 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134524293204529, 50.708180676409015 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134524293204529, 50.708360540481756 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134524293204529, 50.708540404554498 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134524293204529, 50.708720268627239 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134808315119686, 50.708180676409015 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134808315119686, 50.708360540481756 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134808315119686, 50.708540404554498 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134808315119686, 50.708720268627239 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134808315119686, 50.708900132699981 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135092337034844, 50.708360540481756 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135092337034844, 50.708540404554498 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135092337034844, 50.708720268627239 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135092337034844, 50.708900132699981 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135376358950001, 50.708540404554498 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135376358950001, 50.708720268627239 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135376358950001, 50.708900132699981 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135376358950001, 50.709079996772722 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135660380865159, 50.708900132699981 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135660380865159, 50.709079996772722 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135660380865159, 50.709259860845464 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135660380865159, 50.709439724918205 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135944402780316, 50.709079996772722 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135944402780316, 50.709259860845464 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135944402780316, 50.709439724918205 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135944402780316, 50.709619588990947 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136228424695473, 50.709439724918205 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136228424695473, 50.709619588990947 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136228424695473, 50.709799453063688 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136228424695473, 50.70997931713643 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136512446610631, 50.709799453063688 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136512446610631, 50.70997931713643 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136796468525788, 50.709619588990947 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136796468525788, 50.709799453063688 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137093443, 50.709665304799998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135961067685039, 50.709005394568138 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136245096392519, 50.709365122713621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1365291251, 50.709544986786362 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13749793695, 50.709719648899998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137541843099999, 50.708011171050003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136744363165646, 50.708816813181762 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136744363165646, 50.708996677254504 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136744363165646, 50.709176541327246 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136744363165646, 50.709356405399987 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137028390682823, 50.709176541327246 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137028390682823, 50.709356405399987 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137028390682823, 50.709536269472729 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1373124182, 50.709356405399987 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1373124182, 50.709536269472729 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1373124182, 50.70971613354547 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1373124182, 50.709895997618212 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137596445717176, 50.70971613354547 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137596445717176, 50.709895997618212 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136038591625124, 50.708991153968135 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136322620162562, 50.709350882113618 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137174705774876, 50.709890474331843 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136817197312628, 50.701412560022739 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13710117785, 50.701232695949997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135284358212587, 50.70245593985458 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135284358212587, 50.702635803927322 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135568338775058, 50.702276075781839 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135852319337529, 50.701916347636356 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135852319337529, 50.702096211709097 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1361362999, 50.701556619490873 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1361362999, 50.701736483563614 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13642028046247, 50.701376755418131 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136704261024941, 50.70119689134539 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13551603724362, 50.706083129845389 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135800048359728, 50.706083129845389 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136084059475837, 50.706442857990872 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136084059475837, 50.706622722063614 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136368070591946, 50.706622722063614 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136368070591946, 50.706802586136355 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136652081708054, 50.706622722063614 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136652081708054, 50.706802586136355 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136652081708054, 50.706982450209097 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136936092824163, 50.706802586136355 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136936092824163, 50.706982450209097 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136936092824163, 50.707162314281838 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137220103940272, 50.706802586136355 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137220103940272, 50.706982450209097 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137220103940272, 50.707162314281838 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137220103940272, 50.70734217835458 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13750411505638, 50.707162314281838 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137574068399999, 50.708172810150003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13756101165, 50.707543551413629 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137643727, 50.709884538050005 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13668195601402, 50.701407829413618 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13668195601402, 50.70158769348636 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13668195601402, 50.701767557559101 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136965936538007, 50.701048101268135 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136965936538007, 50.701227965340877 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136965936538007, 50.701407829413618 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136965936538007, 50.70158769348636 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137249917061994, 50.701227965340877 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137533897585981, 50.701048101268135 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13756514065, 50.701660235150001 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13496476784275, 50.703685352609163 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135248748354201, 50.70332562446368 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135248748354201, 50.703505488536422 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135532728865651, 50.703145760390939 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135816709377101, 50.702786032245456 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135816709377101, 50.702965896318197 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136100689888552, 50.702606168172714 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136384670400002, 50.702246440027231 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136384670400002, 50.702426304099973 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136668650911452, 50.70206657595449 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136668650911452, 50.702246440027231 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136952631422902, 50.701706847809007 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136952631422902, 50.701886711881748 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136952631422902, 50.70206657595449 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137236611934353, 50.701526983736265 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137236611934353, 50.701706847809007 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137520592445803, 50.701167255590782 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137804572957253, 50.700987391518041 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137646433745539, 50.701221972236368 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13793041425446, 50.701221972236368 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135093406119212, 50.707185041354414 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135093406119212, 50.707364905427156 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135377423715719, 50.707544769499897 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135661441312226, 50.707724633572639 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135945458908733, 50.70790449764538 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135945458908733, 50.708084361718122 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13622947650524, 50.708084361718122 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13622947650524, 50.708264225790863 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136513494101747, 50.708444089863605 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136797511698254, 50.708623953936346 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136797511698254, 50.708803818009088 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137081529294761, 50.708803818009088 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137081529294761, 50.708983682081829 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137365546891268, 50.709163546154571 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137365546891268, 50.709343410227312 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137649564487775, 50.709343410227312 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137649564487775, 50.709523274300054 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137933582084282, 50.709523274300054 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137933582084282, 50.709703138372795 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137933582084282, 50.709883002445537 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136319664796282, 50.705085431945477 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136319664796282, 50.705265296018219 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136603664372211, 50.704905567872736 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136603664372211, 50.705265296018219 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136887663948141, 50.704545839727253 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136887663948141, 50.704725703799994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136887663948141, 50.705085431945477 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13717166352407, 50.704365975654511 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13717166352407, 50.704725703799994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137455663099999, 50.70418611158177 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137455663099999, 50.704545839727253 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137739662675928, 50.70418611158177 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137739662675928, 50.704725703799994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138023662251857, 50.704365975654511 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138023662251857, 50.704725703799994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138307661827787, 50.704365975654511 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138307661827787, 50.704725703799994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138591661403716, 50.70418611158177 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138591661403716, 50.704365975654511 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138591661403716, 50.704725703799994 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137974619369541, 50.701019709913631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138258599849999, 50.701019709913631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138258599849999, 50.701199573986372 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1386164668, 50.70825224875 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13699499570649, 50.702477811572642 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13699499570649, 50.702657675645384 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13699499570649, 50.702837539718125 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13699499570649, 50.703017403790867 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13699499570649, 50.703197267863608 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13699499570649, 50.70337713193635 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13699499570649, 50.703556996009091 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13699499570649, 50.703736860081833 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13699499570649, 50.703916724154574 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13699499570649, 50.704096588227316 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13699499570649, 50.704276452300057 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13699499570649, 50.704456316372799 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13727898279035, 50.702118083427159 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13727898279035, 50.7022979474999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13727898279035, 50.702477811572642 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13727898279035, 50.702657675645384 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13727898279035, 50.702837539718125 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13727898279035, 50.703017403790867 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13727898279035, 50.703916724154574 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13727898279035, 50.704096588227316 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137562969874209, 50.7022979474999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137562969874209, 50.702477811572642 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137562969874209, 50.702657675645384 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137562969874209, 50.702837539718125 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137562969874209, 50.703017403790867 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137562969874209, 50.703197267863608 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137562969874209, 50.704096588227316 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137846956958069, 50.702657675645384 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137846956958069, 50.704096588227316 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138130944041928, 50.702477811572642 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138130944041928, 50.702657675645384 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138130944041928, 50.704096588227316 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138414931125788, 50.702657675645384 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138698918209648, 50.702837539718125 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138982905293507, 50.702837539718125 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138982905293507, 50.703017403790867 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138982905293507, 50.703736860081833 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138982905293507, 50.703916724154574 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138982905293507, 50.704096588227316 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14282565645, 50.707833545450001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138312346041253, 50.702051142813623 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138596331458746, 50.702231006886365 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137349874838575, 50.701973331690787 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137633861366432, 50.702153195763529 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137633861366432, 50.70233305983627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137917847894288, 50.702153195763529 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138201834422144, 50.70233305983627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138485820950001, 50.702512923909012 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138769807477857, 50.704131700563686 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138769807477857, 50.704311564636427 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138769807477857, 50.704491428709169 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139053794005713, 50.702692787981753 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139053794005713, 50.704311564636427 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13933778053357, 50.702872652054495 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13933778053357, 50.704131700563686 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13933778053357, 50.704311564636427 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139621767061426, 50.703052516127237 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139621767061426, 50.703771972418203 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139905753589282, 50.703232380199978 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139905753589282, 50.70341224427272 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139905753589282, 50.703592108345461 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13918476155, 50.703011088881759 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13918476155, 50.703730545172725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13918476155, 50.703910409245466 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13918476155, 50.704090273318208 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13946875315, 50.703011088881759 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13946875315, 50.7031909529545 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13946875315, 50.703370817027242 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13946875315, 50.703550681099983 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13946875315, 50.703730545172725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13975274475, 50.7031909529545 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13975274475, 50.703370817027242 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13975274475, 50.703550681099983 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139766344467754, 50.709916455586374 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.140050377832248, 50.709736591513632 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139987358128684, 50.703177712327253 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139987358128684, 50.703357576399995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139987358128684, 50.703537440472736 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140271351471317, 50.703357576399995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136479758848714, 50.705176326363691 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136763753534612, 50.70499646229095 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137047748220509, 50.704636734145467 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137331742906407, 50.704456870072725 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137615737592305, 50.704456870072725 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137899732278203, 50.704456870072725 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1381837269641, 50.704456870072725 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1381837269641, 50.704636734145467 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138467721649998, 50.704636734145467 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138751716335896, 50.704636734145467 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139035711021793, 50.704636734145467 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139319705707691, 50.704636734145467 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139603700393589, 50.704097141927242 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139603700393589, 50.704277005999984 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139603700393589, 50.704456870072725 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139603700393589, 50.704636734145467 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139887695079486, 50.703737413781759 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139887695079486, 50.703917277854501 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139887695079486, 50.704456870072725 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139887695079486, 50.704636734145467 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140171689765384, 50.703557549709018 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140171689765384, 50.703737413781759 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140171689765384, 50.704456870072725 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140455684451282, 50.704816598218208 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137760940694414, 50.701743621731765 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138044925708311, 50.701743621731765 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138328910722207, 50.701923485804507 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138612895736104, 50.702103349877248 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138896880750001, 50.70228321394999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139180865763898, 50.702463078022731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139464850777794, 50.702463078022731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139748835791691, 50.702642942095473 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140032820805588, 50.702822806168214 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137093472681143, 50.708262945872647 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137093472681143, 50.708442809945389 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137093472681143, 50.70862267401813 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137377496822506, 50.708262945872647 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137377496822506, 50.708442809945389 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137377496822506, 50.70862267401813 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137377496822506, 50.708802538090872 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137377496822506, 50.708982402163613 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137661520963868, 50.708262945872647 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137661520963868, 50.708442809945389 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137661520963868, 50.708802538090872 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137661520963868, 50.708982402163613 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137661520963868, 50.709162266236355 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13794554510523, 50.708982402163613 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13794554510523, 50.709162266236355 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13794554510523, 50.709342130309096 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138229569246593, 50.709162266236355 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138229569246593, 50.709342130309096 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138229569246593, 50.709521994381838 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138229569246593, 50.709701858454579 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138229569246593, 50.709881722527321 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138513593387955, 50.709342130309096 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138513593387955, 50.709521994381838 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138513593387955, 50.709701858454579 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138513593387955, 50.709881722527321 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138797617529318, 50.709342130309096 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138797617529318, 50.709521994381838 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138797617529318, 50.709701858454579 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138797617529318, 50.709881722527321 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13908164167068, 50.709521994381838 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13908164167068, 50.709701858454579 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13908164167068, 50.709881722527321 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139365665812043, 50.709521994381838 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139365665812043, 50.709701858454579 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139365665812043, 50.709881722527321 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139649689953405, 50.709342130309096 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139649689953405, 50.709521994381838 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139649689953405, 50.709701858454579 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139933714094767, 50.709162266236355 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139933714094767, 50.709342130309096 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14021773823613, 50.708982402163613 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14021773823613, 50.709162266236355 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140501762377492, 50.708802538090872 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140785786518855, 50.70862267401813 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1408702825, 50.708940534299998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14091530475, 50.709919976249999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.141009643249999, 50.708849272199998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137250468765894, 50.701812931672649 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137534453113244, 50.701812931672649 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137534453113244, 50.70199279574539 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137818437460595, 50.70199279574539 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138102421807946, 50.702172659818132 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138386406155297, 50.702172659818132 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138670390502647, 50.702352523890873 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138954374849998, 50.702532387963615 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139238359197349, 50.702712252036356 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1395223435447, 50.702712252036356 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13980632789205, 50.702892116109098 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140090312239401, 50.702892116109098 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140090312239401, 50.703071980181839 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140374296586752, 50.703071980181839 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140374296586752, 50.703251844254581 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140374296586752, 50.703431708327322 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140658280934103, 50.703251844254581 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140458191166878, 50.70387237725911 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140742185650001, 50.703692513186368 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141026180133124, 50.703512649113627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137739259645485, 50.708672711149987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138023282262904, 50.708312983004504 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138023282262904, 50.708492847077245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138023282262904, 50.708672711149987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138023282262904, 50.708852575222728 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138307304880324, 50.708492847077245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138307304880324, 50.708672711149987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138307304880324, 50.708852575222728 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138307304880324, 50.70903243929547 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138591327497743, 50.708492847077245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138591327497743, 50.708672711149987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138591327497743, 50.708852575222728 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138591327497743, 50.70903243929547 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138591327497743, 50.709212303368211 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138875350115163, 50.708672711149987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138875350115163, 50.708852575222728 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138875350115163, 50.70903243929547 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138875350115163, 50.709212303368211 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139159372732583, 50.708492847077245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139159372732583, 50.708672711149987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139159372732583, 50.708852575222728 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139159372732583, 50.70903243929547 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139159372732583, 50.709212303368211 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139159372732583, 50.709392167440953 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139443395350002, 50.708312983004504 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139443395350002, 50.708492847077245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139443395350002, 50.708672711149987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139443395350002, 50.708852575222728 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139443395350002, 50.70903243929547 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139443395350002, 50.709212303368211 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139727417967422, 50.708492847077245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139727417967422, 50.708672711149987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139727417967422, 50.708852575222728 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139727417967422, 50.70903243929547 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140011440584842, 50.708492847077245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140011440584842, 50.708672711149987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140011440584842, 50.708852575222728 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140295463202261, 50.708492847077245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140295463202261, 50.708672711149987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140579485819681, 50.708312983004504 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140579485819681, 50.708492847077245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140863508437101, 50.708312983004504 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14114753105452, 50.708133118931762 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141114490050001, 50.703247768399997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141034468, 50.703207947699994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141299926482778, 50.708018945290952 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141299926482778, 50.708198809363694 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141583939830555, 50.707839081218211 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141583939830555, 50.708018945290952 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141867953178333, 50.707659217145469 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141867953178333, 50.707839081218211 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142151966526111, 50.707479353072728 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142151966526111, 50.707659217145469 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142435979873889, 50.707119624927245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142435979873889, 50.707479353072728 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142719993221666, 50.707119624927245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142719993221666, 50.707299488999986 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143004006569444, 50.706939760854503 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143004006569444, 50.707119624927245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143288019917222, 50.706400168636279 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143288019917222, 50.70658003270902 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143288019917222, 50.706759896781762 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143288019917222, 50.706939760854503 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143288019917222, 50.707119624927245 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140636618574502, 50.703069789972737 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140920609225497, 50.702889925899996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141204599876493, 50.702710061827254 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14143975585, 50.706175029199997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141297766991937, 50.703055687586364 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141581758708063, 50.702875823513622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1405175149126, 50.702937861109106 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1408015039063, 50.702757997036365 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141369481893699, 50.702578132963623 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141653470887399, 50.702398268890882 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141380153676356, 50.702609899236371 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141664142723645, 50.70243003516363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137251926760048, 50.704927331072646 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137251926760048, 50.705107195145388 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137535929827542, 50.704747466999905 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137535929827542, 50.704927331072646 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137819932895035, 50.704747466999905 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.137819932895035, 50.704927331072646 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138103935962529, 50.704927331072646 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138387939030022, 50.704927331072646 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.138671942097516, 50.704927331072646 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13895594516501, 50.704927331072646 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139239948232503, 50.704927331072646 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139239948232503, 50.705107195145388 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139523951299997, 50.704927331072646 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13980795436749, 50.704927331072646 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13980795436749, 50.705107195145388 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140091957434984, 50.704927331072646 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140091957434984, 50.705107195145388 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140375960502477, 50.705107195145388 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140375960502477, 50.705287059218129 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140375960502477, 50.705466923290871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140659963569971, 50.705107195145388 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140659963569971, 50.705287059218129 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140659963569971, 50.705466923290871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140943966637464, 50.705287059218129 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140943966637464, 50.705466923290871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141227969704958, 50.705466923290871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141227969704958, 50.705646787363612 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141511972772451, 50.705466923290871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141511972772451, 50.705646787363612 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141511972772451, 50.706366243654578 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141795975839945, 50.705646787363612 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141795975839945, 50.706366243654578 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141795975839945, 50.70654610772732 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142079978907439, 50.705826651436354 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142079978907439, 50.706006515509095 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142079978907439, 50.706186379581837 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142079978907439, 50.706366243654578 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142079978907439, 50.70654610772732 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142079978907439, 50.706725971800061 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139582367777567, 50.709920929500058 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139866390282553, 50.709561201354575 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139866390282553, 50.709741065427316 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140150412787538, 50.709381337281833 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140150412787538, 50.709741065427316 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140150412787538, 50.709920929500058 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140434435292523, 50.70902160913635 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140434435292523, 50.709201473209092 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140434435292523, 50.709381337281833 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140434435292523, 50.709561201354575 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140718457797508, 50.708841745063609 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140718457797508, 50.70902160913635 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140718457797508, 50.709201473209092 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141002480302493, 50.708661880990867 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141002480302493, 50.708841745063609 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141002480302493, 50.70902160913635 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141286502807478, 50.708482016918126 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141286502807478, 50.708661880990867 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141286502807478, 50.708841745063609 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141570525312464, 50.708302152845384 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141570525312464, 50.708482016918126 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141570525312464, 50.708661880990867 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141854547817449, 50.708302152845384 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.141854547817449, 50.708482016918126 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142138570322434, 50.708122288772643 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142138570322434, 50.708302152845384 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140672898918957, 50.704701345781764 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140672898918957, 50.704881209854506 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140956900884969, 50.704701345781764 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140956900884969, 50.704881209854506 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141240902850982, 50.704881209854506 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141240902850982, 50.705061073927247 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141524904816995, 50.705240937999989 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141808906783008, 50.705061073927247 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141808906783008, 50.705240937999989 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142092908749021, 50.705240937999989 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142092908749021, 50.70542080207273 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142376910715034, 50.705240937999989 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142376910715034, 50.705600666145472 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142376910715034, 50.705780530218213 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142660912681047, 50.70542080207273 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142660912681047, 50.705600666145472 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142660912681047, 50.705780530218213 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141026676606464, 50.702969306409102 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141310664703232, 50.702789442336361 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141594652799999, 50.702609578263619 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141594652799999, 50.702789442336361 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141878640896767, 50.702429714190878 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141878640896767, 50.702609578263619 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142162628993534, 50.702249850118136 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14384520513223, 50.705363864127257 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14384520513223, 50.705543728199999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14412921196777, 50.70572359227274 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141769203215261, 50.702286649577253 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14205319055, 50.702646377722736 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142337177884738, 50.702286649577253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139629434460117, 50.707996153645468 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139913450888094, 50.707636425499985 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139913450888094, 50.707816289572726 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139913450888094, 50.707996153645468 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.139913450888094, 50.708176017718209 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140197467316071, 50.707456561427243 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140197467316071, 50.707636425499985 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140197467316071, 50.707816289572726 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140197467316071, 50.707996153645468 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140197467316071, 50.708176017718209 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140481483744048, 50.70709683328176 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140481483744048, 50.707276697354501 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140481483744048, 50.707456561427243 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140481483744048, 50.707636425499985 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140481483744048, 50.707816289572726 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140481483744048, 50.707996153645468 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140481483744048, 50.708176017718209 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140765500172025, 50.70709683328176 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140765500172025, 50.707276697354501 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140765500172025, 50.707456561427243 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140765500172025, 50.707636425499985 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140765500172025, 50.707816289572726 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140765500172025, 50.707996153645468 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.140765500172025, 50.708176017718209 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141049516600002, 50.70709683328176 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141049516600002, 50.707276697354501 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141049516600002, 50.707456561427243 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141049516600002, 50.707636425499985 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141049516600002, 50.707816289572726 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141049516600002, 50.707996153645468 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141333533027979, 50.70709683328176 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141333533027979, 50.707276697354501 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141333533027979, 50.707456561427243 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141333533027979, 50.707636425499985 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141333533027979, 50.707816289572726 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141617549455956, 50.70709683328176 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141617549455956, 50.707276697354501 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141617549455956, 50.707456561427243 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141617549455956, 50.707636425499985 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141901565883932, 50.70709683328176 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141901565883932, 50.707276697354501 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141901565883932, 50.707456561427243 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142185582311909, 50.70709683328176 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142185582311909, 50.707276697354501 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142469598739886, 50.707276697354501 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141196801901201, 50.703133526368212 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141480788680721, 50.702953662295471 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141480788680721, 50.703133526368212 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142048762239761, 50.702773798222729 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142332749019281, 50.702054341931763 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142332749019281, 50.702593934149988 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142616735798801, 50.702414070077246 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145141258005418, 50.706031779963631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141414688755547, 50.704486075754509 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141698690273328, 50.704486075754509 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141698690273328, 50.704665939827251 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141982691791109, 50.704665939827251 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141982691791109, 50.704845803899993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142266693308891, 50.704845803899993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142550694826672, 50.704845803899993 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142550694826672, 50.705025667972734 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142834696344453, 50.705205532045476 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139956016367504, 50.704032269190868 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139956016367504, 50.70421213326361 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139956016367504, 50.704391997336351 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140240010854003, 50.703852405118127 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140240010854003, 50.704391997336351 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140524005340501, 50.703492676972644 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140524005340501, 50.703672541045385 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140524005340501, 50.704391997336351 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140807999827, 50.703312812899902 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140807999827, 50.704571861409093 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141091994313499, 50.704571861409093 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141375988799998, 50.704751725481835 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141659983286497, 50.704931589554576 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141943977772996, 50.704931589554576 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142227972259495, 50.705111453627318 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142100628302998, 50.706136051304512 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142100628302998, 50.706315915377253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142100628302998, 50.706495779449995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142100628302998, 50.706855507595478 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142384638476499, 50.70595618723177 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142384638476499, 50.706136051304512 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142384638476499, 50.706315915377253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142384638476499, 50.706495779449995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142384638476499, 50.706675643522736 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142384638476499, 50.706855507595478 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14266864865, 50.70595618723177 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14266864865, 50.706136051304512 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14266864865, 50.706315915377253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14266864865, 50.706495779449995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14266864865, 50.706675643522736 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14266864865, 50.706855507595478 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14266864865, 50.707035371668219 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142952658823501, 50.706136051304512 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142952658823501, 50.706675643522736 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142952658823501, 50.706855507595478 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143236668997002, 50.706315915377253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143236668997002, 50.706495779449995 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.143392332299999, 50.707571844450001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.14352460715, 50.707471591800001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147180775921053, 50.704795872036371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147464778178946, 50.704616007963629 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140225403130554, 50.709914992772795 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140509423425462, 50.709555264627312 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140509423425462, 50.709735128700054 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140509423425462, 50.709914992772795 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140793443720369, 50.709195536481829 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140793443720369, 50.70937540055457 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140793443720369, 50.709555264627312 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140793443720369, 50.709735128700054 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141077464015277, 50.709015672409087 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141077464015277, 50.709195536481829 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141077464015277, 50.70937540055457 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141361484310185, 50.708835808336346 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141361484310185, 50.709015672409087 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141645504605092, 50.708655944263604 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141645504605092, 50.708835808336346 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1419295249, 50.708655944263604 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142213545194908, 50.708476080190863 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142497565489816, 50.708296216118121 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142781585784723, 50.70811635204538 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143065606079631, 50.707936487972638 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143349626374539, 50.707756623899897 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143349626374539, 50.707936487972638 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143633646669446, 50.707576759827155 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143633646669446, 50.707756623899897 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1438225707, 50.70722593955 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138738957180624, 50.704744706027157 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139022960288332, 50.704744706027157 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139306963396041, 50.704744706027157 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.139590966503749, 50.704744706027157 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140158972719166, 50.704924570099898 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140442975826875, 50.704924570099898 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140726978934583, 50.70510443417264 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141010982042292, 50.70510443417264 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14129498515, 50.705284298245381 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141578988257709, 50.705284298245381 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141578988257709, 50.705464162318123 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141862991365417, 50.705464162318123 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142146994473126, 50.705644026390864 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142146994473126, 50.705823890463606 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142430997580834, 50.705823890463606 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142715000688542, 50.705823890463606 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142999003796251, 50.706003754536347 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143283006903959, 50.706003754536347 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143283006903959, 50.706183618609089 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143567010011668, 50.706183618609089 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143567010011668, 50.70636348268183 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143567010011668, 50.706543346754572 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143567010011668, 50.706723210827313 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143567010011668, 50.706903074900055 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143851013119376, 50.70636348268183 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143851013119376, 50.706543346754572 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143851013119376, 50.706723210827313 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1440449124, 50.7065415613 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140933416477723, 50.708448456477313 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141217431027227, 50.708268592404572 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141217431027227, 50.708448456477313 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141501445576732, 50.708268592404572 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.141785460126236, 50.70808872833183 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142069474675741, 50.707908864259089 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142353489225245, 50.707729000186347 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14263750377475, 50.707549136113606 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142921518324254, 50.707369272040864 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143205532873758, 50.707189407968123 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143205532873758, 50.707369272040864 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143489547423263, 50.707189407968123 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143773561972767, 50.707009543895381 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144057576522272, 50.70682967982264 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14079964076431, 50.709877917222798 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141083660645258, 50.709518189077315 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141083660645258, 50.709698053150056 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141083660645258, 50.709877917222798 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141367680526206, 50.709158460931832 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141367680526206, 50.709338325004573 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141367680526206, 50.709518189077315 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141367680526206, 50.709698053150056 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141367680526206, 50.709877917222798 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141651700407154, 50.70897859685909 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141651700407154, 50.709158460931832 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141651700407154, 50.709338325004573 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141651700407154, 50.709518189077315 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141651700407154, 50.709698053150056 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141651700407154, 50.709877917222798 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141935720288102, 50.708798732786349 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141935720288102, 50.70897859685909 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141935720288102, 50.709158460931832 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141935720288102, 50.709338325004573 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14221974016905, 50.708618868713607 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14221974016905, 50.708798732786349 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14221974016905, 50.70897859685909 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142503760049999, 50.708439004640866 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142503760049999, 50.708618868713607 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142503760049999, 50.708798732786349 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142787779930947, 50.708259140568124 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142787779930947, 50.708439004640866 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.142787779930947, 50.708618868713607 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143071799811895, 50.708259140568124 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143071799811895, 50.708439004640866 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143355819692843, 50.708079276495383 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143355819692843, 50.708259140568124 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143639839573791, 50.707899412422641 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143639839573791, 50.708079276495383 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143923859454739, 50.7077195483499 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.143923859454739, 50.707899412422641 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144207879335688, 50.707539684277158 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144207879335688, 50.7077195483499 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1438844497, 50.705760528886366 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.142809402219516, 50.705714315381769 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143093410913011, 50.705894179454511 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143377419606505, 50.705894179454511 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1436614283, 50.706074043527252 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143945436993494, 50.706253907599994 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144229445686989, 50.706433771672735 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144229445686989, 50.706613635745477 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144229445686989, 50.706793499818218 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144513454380483, 50.706613635745477 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14191784526267, 50.705258316445395 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142485857634817, 50.705438180518136 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142769863820891, 50.705618044590878 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143337876193038, 50.705797908663619 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143621882379112, 50.705977772736361 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144189894751259, 50.706157636809102 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144473900937332, 50.706337500881844 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141717552766513, 50.709897315822793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142001572936238, 50.70953758767731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142001572936238, 50.709717451750052 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142001572936238, 50.709897315822793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142285593105964, 50.709177859531827 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142285593105964, 50.709357723604569 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142285593105964, 50.70953758767731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142285593105964, 50.709717451750052 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142285593105964, 50.709897315822793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142569613275689, 50.708818131386344 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142569613275689, 50.708997995459086 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142569613275689, 50.709177859531827 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142569613275689, 50.709357723604569 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142569613275689, 50.70953758767731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142569613275689, 50.709717451750052 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142569613275689, 50.709897315822793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142853633445414, 50.708638267313603 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142853633445414, 50.708818131386344 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142853633445414, 50.708997995459086 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142853633445414, 50.709177859531827 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142853633445414, 50.709357723604569 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142853633445414, 50.70953758767731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142853633445414, 50.709717451750052 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142853633445414, 50.709897315822793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143137653615139, 50.708458403240861 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143137653615139, 50.708638267313603 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143137653615139, 50.708818131386344 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143137653615139, 50.708997995459086 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143137653615139, 50.709177859531827 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143137653615139, 50.709357723604569 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143137653615139, 50.70953758767731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143137653615139, 50.709717451750052 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143137653615139, 50.709897315822793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143421673784864, 50.70827853916812 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143421673784864, 50.708458403240861 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143421673784864, 50.708638267313603 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143421673784864, 50.708818131386344 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143421673784864, 50.708997995459086 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143421673784864, 50.709177859531827 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143421673784864, 50.709357723604569 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143421673784864, 50.70953758767731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143421673784864, 50.709717451750052 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143421673784864, 50.709897315822793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14370569395459, 50.70827853916812 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14370569395459, 50.708458403240861 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14370569395459, 50.708638267313603 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14370569395459, 50.708818131386344 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14370569395459, 50.708997995459086 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14370569395459, 50.709177859531827 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14370569395459, 50.709357723604569 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14370569395459, 50.70953758767731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14370569395459, 50.709717451750052 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14370569395459, 50.709897315822793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143989714124315, 50.708098675095378 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143989714124315, 50.70827853916812 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143989714124315, 50.708458403240861 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143989714124315, 50.708638267313603 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143989714124315, 50.708818131386344 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143989714124315, 50.708997995459086 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143989714124315, 50.709177859531827 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143989714124315, 50.709357723604569 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143989714124315, 50.709897315822793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14427373429404, 50.707918811022637 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14427373429404, 50.708098675095378 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14427373429404, 50.70827853916812 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14427373429404, 50.708458403240861 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14427373429404, 50.708638267313603 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14427373429404, 50.708818131386344 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14427373429404, 50.708997995459086 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144557754463765, 50.707738946949895 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144557754463765, 50.707918811022637 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144557754463765, 50.708098675095378 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144557754463765, 50.70827853916812 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144557754463765, 50.708458403240861 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14484177463349, 50.707738946949895 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14484177463349, 50.707918811022637 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14484177463349, 50.708098675095378 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1448072755, 50.706663541300003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14491713815, 50.705938105563625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14491713815, 50.706117969636367 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142268541868749, 50.707904885154576 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142268541868749, 50.708084749227318 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142268541868749, 50.708264613300059 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142552554274431, 50.707904885154576 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142552554274431, 50.708084749227318 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142836566680113, 50.707725021081835 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.142836566680113, 50.707904885154576 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143120579085796, 50.707545157009093 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143120579085796, 50.707725021081835 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143404591491478, 50.707365292936352 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143404591491478, 50.707545157009093 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143688603897161, 50.70718542886361 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143688603897161, 50.707365292936352 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143688603897161, 50.707545157009093 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143972616302843, 50.707005564790869 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143972616302843, 50.70718542886361 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.143972616302843, 50.707365292936352 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144256628708526, 50.707005564790869 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144256628708526, 50.70718542886361 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144540641114208, 50.706286108499903 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144540641114208, 50.706465972572644 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144540641114208, 50.706645836645386 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144540641114208, 50.706825700718127 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.144540641114208, 50.707005564790869 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14482465351989, 50.706465972572644 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14482465351989, 50.706825700718127 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145108665925573, 50.706465972572644 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145108665925573, 50.706645836645386 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145392678331255, 50.706286108499903 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145392678331255, 50.706465972572644 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144305978232745, 50.707577145981844 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144305978232745, 50.707757010054586 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144589991688497, 50.707397281909103 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144589991688497, 50.707577145981844 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144874005144248, 50.707217417836361 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.144874005144248, 50.707397281909103 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1451580186, 50.70703755376362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1451580186, 50.707217417836361 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145442032055752, 50.706857689690878 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145442032055752, 50.70703755376362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145726045511504, 50.706677825618137 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145726045511504, 50.706857689690878 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146010058967255, 50.706497961545395 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146010058967255, 50.706677825618137 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145447214793044, 50.706344273436365 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.145447214793044, 50.706524137509106 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1457312252, 50.706164409363623 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1457312252, 50.706344273436365 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146015235606956, 50.705984545290882 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146015235606956, 50.706164409363623 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145424252006136, 50.705611588749996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14570825915, 50.705431724677254 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14570825915, 50.705611588749996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145992266293864, 50.705431724677254 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145408280734022, 50.70591320267274 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1456922888, 50.705733338599998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145976296865979, 50.705553474527257 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.145976296865979, 50.705733338599998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143742568064655, 50.707548455118214 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.143742568064655, 50.707728319190956 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144026580485991, 50.707548455118214 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144310592907327, 50.707368591045473 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144594605328662, 50.707188726972731 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.144878617749998, 50.70700886289999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145162630171334, 50.706828998827248 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145446642592669, 50.706649134754507 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.145730655014005, 50.706469270681765 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146014667435341, 50.706289406609024 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144922480591872, 50.707564806136354 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144922480591872, 50.707744670209095 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144922480591872, 50.707924534281837 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.144922480591872, 50.708104398354578 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145206496170936, 50.707384942063612 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145206496170936, 50.707564806136354 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145206496170936, 50.707744670209095 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145206496170936, 50.707924534281837 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14549051175, 50.707205077990871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14549051175, 50.707384942063612 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14549051175, 50.707564806136354 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14549051175, 50.707744670209095 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14549051175, 50.707924534281837 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145774527329064, 50.707025213918129 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145774527329064, 50.707205077990871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145774527329064, 50.707384942063612 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145774527329064, 50.707564806136354 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.145774527329064, 50.707744670209095 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146058542908128, 50.706845349845388 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146058542908128, 50.707025213918129 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146058542908128, 50.707205077990871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146058542908128, 50.707384942063612 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146058542908128, 50.707564806136354 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146058542908128, 50.707744670209095 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1461084505, 50.705459604950001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14659471365, 50.704938458877258 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14659471365, 50.70511832295 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147848265728439, 50.704303236 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147848265728439, 50.704483100072743 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148132264771562, 50.70412337192726 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148132264771562, 50.704303236 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148416263814686, 50.70412337192726 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146190937360906, 50.706724459645457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146190937360906, 50.706904323718199 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146190937360906, 50.70708418779094 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146190937360906, 50.707264051863682 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146190937360906, 50.707443915936423 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146190937360906, 50.707623780009165 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146190937360906, 50.707803644081906 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146474941413469, 50.706544595572716 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146474941413469, 50.706724459645457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146474941413469, 50.706904323718199 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146474941413469, 50.70708418779094 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146474941413469, 50.707264051863682 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146474941413469, 50.707443915936423 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146474941413469, 50.707623780009165 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146758945466031, 50.706364731499974 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146758945466031, 50.706544595572716 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146758945466031, 50.706724459645457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146758945466031, 50.706904323718199 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146758945466031, 50.70708418779094 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146758945466031, 50.707264051863682 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.146758945466031, 50.707443915936423 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147042949518593, 50.706184867427233 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147042949518593, 50.706364731499974 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147042949518593, 50.706544595572716 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147042949518593, 50.706724459645457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147042949518593, 50.706904323718199 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147042949518593, 50.70708418779094 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147042949518593, 50.707264051863682 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147042949518593, 50.707443915936423 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147326953571156, 50.706184867427233 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147326953571156, 50.706364731499974 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147326953571156, 50.706544595572716 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147326953571156, 50.706724459645457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147326953571156, 50.706904323718199 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147326953571156, 50.70708418779094 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147326953571156, 50.707264051863682 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147610957623718, 50.706005003354491 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147610957623718, 50.706184867427233 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147610957623718, 50.706364731499974 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147610957623718, 50.706544595572716 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147610957623718, 50.706724459645457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147610957623718, 50.706904323718199 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147894961676281, 50.70582513928175 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147894961676281, 50.706005003354491 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147894961676281, 50.706184867427233 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147894961676281, 50.706364731499974 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147894961676281, 50.706544595572716 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.147894961676281, 50.706724459645457 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148178965728843, 50.705645275209008 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148178965728843, 50.70582513928175 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148178965728843, 50.706005003354491 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148178965728843, 50.706184867427233 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148178965728843, 50.706364731499974 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148462969781406, 50.705465411136267 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148462969781406, 50.705645275209008 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148462969781406, 50.70582513928175 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148462969781406, 50.706005003354491 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148462969781406, 50.706184867427233 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148746973833968, 50.705285547063525 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148746973833968, 50.705465411136267 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148746973833968, 50.705645275209008 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148746973833968, 50.70582513928175 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149030977886531, 50.705105682990784 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149030977886531, 50.705285547063525 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149030977886531, 50.705465411136267 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149030977886531, 50.705645275209008 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149314981939093, 50.704925818918042 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149314981939093, 50.705105682990784 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149314981939093, 50.705285547063525 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149314981939093, 50.705465411136267 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148456093855389, 50.700905662527255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148740073718463, 50.700905662527255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148740073718463, 50.701085526599996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149024053581536, 50.701085526599996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149024053581536, 50.701265390672738 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14930803344461, 50.701265390672738 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148831040852983, 50.700884686677256 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1491150207, 50.701064550749997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149399000547017, 50.701244414822739 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149753230360831, 50.704504018936362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15003723, 50.70432415486362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15003723, 50.704504018936362 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15032122963917, 50.704144290790879 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15032122963917, 50.70432415486362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146122279021547, 50.70635994660006 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14640627985129, 50.706180082527318 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146690280681032, 50.706000218454577 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146974281510774, 50.705820354381835 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147258282340516, 50.705640490309094 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147542283170258, 50.705460626236352 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147826284, 50.705460626236352 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148110284829743, 50.705280762163611 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148394285659485, 50.705100898090869 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148678286489227, 50.704921034018128 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14896228731897, 50.704741169945386 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149246288148712, 50.704561305872645 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149530288978454, 50.704381441799903 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146124046278694, 50.705838526300056 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146408043840578, 50.705658662227314 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146692041402463, 50.705478798154573 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.146976038964347, 50.705298934081831 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147260036526231, 50.70511907000909 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.147544034088115, 50.70511907000909 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14782803165, 50.704939205936348 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148112029211884, 50.704759341863607 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148396026773768, 50.704579477790865 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148680024335652, 50.704399613718124 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.148964021897537, 50.704219749645382 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149248019459421, 50.704039885572641 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149532017021305, 50.703860021499899 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15123797685, 50.703628995399995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146162378374195, 50.706503343063687 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146162378374195, 50.706683207136429 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146446379961829, 50.706323478990946 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146446379961829, 50.706503343063687 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146730381549464, 50.706143614918204 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146730381549464, 50.706323478990946 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147014383137098, 50.705963750845463 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147014383137098, 50.706143614918204 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147298384724733, 50.705783886772721 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147298384724733, 50.705963750845463 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147582386312368, 50.70560402269998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147582386312368, 50.705783886772721 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147866387900002, 50.70560402269998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148150389487637, 50.705424158627238 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148434391075272, 50.705244294554497 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148718392662906, 50.705064430481755 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148718392662906, 50.705244294554497 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149002394250541, 50.704884566409014 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149002394250541, 50.705064430481755 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149286395838176, 50.704704702336272 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149286395838176, 50.704884566409014 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14957039742581, 50.704524838263531 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14957039742581, 50.704704702336272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146179067715013, 50.705981783113685 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146179067715013, 50.706161647186427 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146463066087511, 50.705801919040944 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146463066087511, 50.705981783113685 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146747064460009, 50.705622054968202 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.146747064460009, 50.705801919040944 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147031062832507, 50.705442190895461 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147031062832507, 50.705622054968202 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147315061205005, 50.705262326822719 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147315061205005, 50.705442190895461 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147599059577503, 50.705262326822719 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147883057950001, 50.705082462749978 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.147883057950001, 50.705262326822719 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148167056322499, 50.704902598677236 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148167056322499, 50.705082462749978 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148451054694998, 50.704722734604495 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148451054694998, 50.704902598677236 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148735053067496, 50.704542870531753 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.148735053067496, 50.704722734604495 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149019051439994, 50.704363006459012 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149019051439994, 50.704542870531753 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149303049812492, 50.70418314238627 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149303049812492, 50.704363006459012 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14958704818499, 50.704003278313529 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.14958704818499, 50.70418314238627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14611656516038, 50.705518070050054 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14611656516038, 50.705697934122796 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146400559820322, 50.705338205977313 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146400559820322, 50.705518070050054 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146684554480263, 50.705158341904571 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146684554480263, 50.705338205977313 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.146968549140205, 50.705158341904571 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147252543800146, 50.70497847783183 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147536538460088, 50.704798613759088 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147820533120029, 50.704618749686347 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.147820533120029, 50.704798613759088 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148104527779971, 50.704438885613605 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148104527779971, 50.704618749686347 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148388522439912, 50.704259021540864 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148388522439912, 50.704438885613605 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148672517099854, 50.704079157468122 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148672517099854, 50.704259021540864 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.148956511759796, 50.704079157468122 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149240506419737, 50.703899293395381 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149524501079679, 50.703719429322639 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14980849573962, 50.703359701177156 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14980849573962, 50.703539565249898 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149482566270618, 50.704887834663623 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149482566270618, 50.705067698736364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149482566270618, 50.705247562809106 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149482566270618, 50.705427426881847 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149766567823539, 50.704707970590881 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149766567823539, 50.704887834663623 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149766567823539, 50.705067698736364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149766567823539, 50.705247562809106 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15005056937646, 50.704707970590881 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15005056937646, 50.704887834663623 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15005056937646, 50.705067698736364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150334570929381, 50.704707970590881 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150334570929381, 50.704887834663623 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148742965903448, 50.703696381413685 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.148742965903448, 50.703876245486427 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14902695058046, 50.703516517340944 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14902695058046, 50.703696381413685 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149310935257471, 50.703156789195461 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149310935257471, 50.703336653268202 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149310935257471, 50.703516517340944 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149310935257471, 50.703696381413685 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149594919934483, 50.702976925122719 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149594919934483, 50.703156789195461 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149594919934483, 50.703336653268202 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149594919934483, 50.703516517340944 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149878904611494, 50.702797061049978 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149878904611494, 50.702976925122719 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.149878904611494, 50.703156789195461 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150162889288506, 50.701717876613529 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150162889288506, 50.70189774068627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150162889288506, 50.702617196977236 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150162889288506, 50.702797061049978 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150162889288506, 50.702976925122719 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150446873965517, 50.70189774068627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150446873965517, 50.702077604759012 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150446873965517, 50.702437332904495 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150446873965517, 50.702617196977236 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150446873965517, 50.702797061049978 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150730858642529, 50.702077604759012 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150730858642529, 50.702257468831753 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150730858642529, 50.702437332904495 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150730858642529, 50.702617196977236 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15101484331954, 50.702257468831753 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15101484331954, 50.702437332904495 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.151298827996552, 50.702257468831753 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149627291080137, 50.701363662213531 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149911273442955, 50.701543526286272 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149911273442955, 50.703342167013687 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149911273442955, 50.703522031086429 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150195255805773, 50.701543526286272 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150195255805773, 50.703162302940946 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150195255805773, 50.703342167013687 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150479238168591, 50.701723390359014 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150479238168591, 50.702982438868204 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150479238168591, 50.703162302940946 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15076322053141, 50.701903254431755 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15076322053141, 50.702802574795463 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15076322053141, 50.702982438868204 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151047202894228, 50.702622710722721 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151047202894228, 50.702802574795463 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151331185257046, 50.70244284664998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151331185257046, 50.702622710722721 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14970648750861, 50.703779182840947 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149990475149007, 50.703599318768205 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150274462789405, 50.703419454695464 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150558450429802, 50.703239590622722 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1508424380702, 50.703059726549981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151126425710597, 50.702879862477239 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151410413350995, 50.702699998404498 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151694400991392, 50.702340270259015 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151694400991392, 50.702520134331756 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.149963631315595, 50.700940352568139 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150247611109357, 50.701120216640881 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.150531590903119, 50.701300080713622 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151383530284406, 50.701659808859105 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151667510078168, 50.701839672931847 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149347109579634, 50.700947109295392 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149631089393707, 50.700947109295392 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149631089393707, 50.701126973368133 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14991506920778, 50.701126973368133 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14991506920778, 50.701306837440875 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150199049021853, 50.701306837440875 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150199049021853, 50.701486701513616 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150483028835926, 50.701486701513616 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150767008649999, 50.701486701513616 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150767008649999, 50.701666565586358 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151050988464072, 50.701666565586358 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151050988464072, 50.701846429659099 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151050988464072, 50.702026293731841 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151334968278145, 50.701846429659099 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151334968278145, 50.702026293731841 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151618948092218, 50.702206157804582 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.152470887534437, 50.701846429659099 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.152470887534437, 50.702026293731841 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.149841543252439, 50.704019201300056 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.150125528796341, 50.703839337227315 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.150409514340243, 50.703659473154573 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.150409514340243, 50.703839337227315 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.150693499884145, 50.70329974500909 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.150693499884145, 50.703479609081832 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.150977485428047, 50.703119880936349 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.150977485428047, 50.70329974500909 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151261470971949, 50.701860832427158 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151261470971949, 50.702940016863607 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151261470971949, 50.703119880936349 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151545456515851, 50.7020406964999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151545456515851, 50.702760152790866 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151545456515851, 50.702940016863607 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151829442059753, 50.702220560572641 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151829442059753, 50.702400424645383 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151829442059753, 50.702580288718124 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.151829442059753, 50.702760152790866 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152113427603656, 50.702220560572641 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152113427603656, 50.702400424645383 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152113427603656, 50.702580288718124 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152397413147558, 50.702220560572641 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152397413147558, 50.702400424645383 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153968795945752, 50.70274275045 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149696040888402, 50.704420411772794 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.149980027690511, 50.704240547700053 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.15026401449262, 50.704060683627311 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150548001294728, 50.70388081955457 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150831988096837, 50.703700955481828 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.150831988096837, 50.70388081955457 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151115974898946, 50.703521091409087 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151115974898946, 50.703700955481828 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151399961701055, 50.703341227336345 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151683948503164, 50.702981499190862 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.151967935305273, 50.702801635118121 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.152251922107382, 50.702621771045379 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.152535908909491, 50.702441906972638 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.152535908909491, 50.702621771045379 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1528198957116, 50.702082178827155 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1528198957116, 50.702621771045379 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1528198957116, 50.702801635118121 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150330270169658, 50.701020736804509 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150898229321796, 50.70120060087725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.150898229321796, 50.701380464949992 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.151182208897865, 50.701380464949992 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.151466188473933, 50.701560329022733 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.151466188473933, 50.701740193095475 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.151750168050002, 50.701560329022733 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.151750168050002, 50.701740193095475 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152034147626071, 50.701560329022733 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152034147626071, 50.701740193095475 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152034147626071, 50.701920057168216 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15231812720214, 50.701380464949992 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15231812720214, 50.701560329022733 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15231812720214, 50.701740193095475 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152602106778208, 50.701380464949992 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152602106778208, 50.701560329022733 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152886086354277, 50.701020736804509 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152886086354277, 50.70120060087725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153170065930346, 50.700840872731767 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153170065930346, 50.701020736804509 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153454045506415, 50.700840872731767 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15284809765576, 50.702287418963614 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15284809765576, 50.702467283036356 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15313208135384, 50.702107554890873 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15313208135384, 50.702467283036356 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15313208135384, 50.702647147109097 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15341606505192, 50.701927690818131 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15341606505192, 50.702647147109097 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15370004875, 50.701567962672648 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15370004875, 50.702827011181839 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15398403244808, 50.702827011181839 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15426801614616, 50.702827011181839 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15455199984424, 50.70300687525458 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15455199984424, 50.703186739327322 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.152100673854427, 50.701989647068217 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.152384653412657, 50.701809782995475 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.152668632970887, 50.701450054849992 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.152668632970887, 50.701629918922734 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.152952612529116, 50.701450054849992 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.153236592087346, 50.701090326704509 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.153236592087346, 50.701270190777251 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.153520571645576, 50.700910462631768 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153292728095926, 50.702260826572733 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153292728095926, 50.702440690645474 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153576712004075, 50.70190109842725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153576712004075, 50.702080962499991 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153576712004075, 50.702620554718216 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153860695912223, 50.701721234354508 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.151891869023023, 50.703340382886367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152175861117907, 50.703160518813625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152175861117907, 50.703340382886367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152459853212791, 50.702980654740884 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152459853212791, 50.703160518813625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152459853212791, 50.703340382886367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152743845307675, 50.702980654740884 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.152743845307675, 50.703160518813625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15302783740256, 50.703160518813625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153311829497444, 50.703160518813625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.153879813687212, 50.703340382886367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154163805782096, 50.703340382886367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154163805782096, 50.703520246959108 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.15444779787698, 50.703340382886367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154731789971864, 50.702980654740884 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154731789971864, 50.703160518813625 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.152580633238387, 50.701779389695474 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.152864612783032, 50.701599525622733 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.153148592327677, 50.701419661549991 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.153432571872322, 50.70123979747725 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.153716551416967, 50.701059933404508 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.154000530961612, 50.700880069331767 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.153007752496232, 50.702782846913621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.153291742617739, 50.702782846913621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.153575732739246, 50.702962710986363 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.153859722860753, 50.702962710986363 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.154427703103767, 50.703142575059104 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151360875242396, 50.703492044795482 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15164486626196, 50.70331218072274 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.151928857281524, 50.703132316649999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.152212848301088, 50.702952452577257 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.152496839320651, 50.702772588504516 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.152780830340215, 50.702952452577257 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.153064821359779, 50.702952452577257 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.153348812379343, 50.702952452577257 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.153632803398907, 50.703132316649999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.15391679441847, 50.703132316649999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152653125987372, 50.701930075945469 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152653125987372, 50.702109940018211 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152937105508248, 50.701750211872728 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.152937105508248, 50.701930075945469 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.153221085029124, 50.701570347799986 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.153221085029124, 50.701750211872728 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.153505064550001, 50.701390483727245 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.153789044070877, 50.701210619654503 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.154073023591754, 50.70085089150902 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.154073023591754, 50.701030755581762 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.15435700311263, 50.70085089150902 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.152943464073044, 50.70212060575458 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.153227443582029, 50.701760877609097 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.153227443582029, 50.701940741681838 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.153511423091015, 50.701581013536355 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1537954026, 50.701401149463614 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.154079382108986, 50.701221285390872 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.154363361617971, 50.701041421318131 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.154322203108008, 50.701217932022736 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1546061826, 50.701038067949995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.154890162091992, 50.700858203877253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154642194763349, 50.700990058313621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154642194763349, 50.701169922386363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.154926174236651, 50.700990058313621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.155210153709952, 50.70081019424088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1324585662, 50.71139591926363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1324585662, 50.711575783336372 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1179403602, 50.718030977563629 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1179438345, 50.719073942249999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1177124341, 50.718347977950003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11790503645, 50.718701225549999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115094931850001, 50.718435983749998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115108875800001, 50.718426860599997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115122819750001, 50.718417737449997 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115739277799999, 50.715751218249999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.114880170161594, 50.710220856404511 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11513676365, 50.718408614300003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1151507076, 50.718399491100001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115164651500001, 50.718390367950001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115178595450001, 50.7183812448 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11519253935, 50.718372121599998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116003309050001, 50.715838451650001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115035001288737, 50.710241230713528 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115189876600001, 50.71554910895 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11512402615, 50.710313319313627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11512402615, 50.710493183386369 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11518324305, 50.710231943349996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1154607708, 50.7156410407 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.114926879342049, 50.718781071699993 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.114926879342049, 50.718960935772735 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115210965188073, 50.71842134355451 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115210965188073, 50.718601207627252 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115210965188073, 50.718781071699993 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115495051034097, 50.71842134355451 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115495051034097, 50.718601207627252 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115495051034097, 50.718781071699993 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115779136880121, 50.718601207627252 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115779136880121, 50.718781071699993 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1163239677, 50.715929771399999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.11646856485, 50.719155046086371 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.116752654333357, 50.718975182013629 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.114976268294887, 50.715721882477254 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115260336772444, 50.715901746549996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115544405250001, 50.715901746549996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115828473727557, 50.716081610622737 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116112542205114, 50.716081610622737 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116396610682671, 50.716261474695479 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.114901986033375, 50.715364887840877 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.114901986033375, 50.715544751913619 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1151860514, 50.71572461598636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115470116766626, 50.715544751913619 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115470116766626, 50.71572461598636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115754182133252, 50.71572461598636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115754182133252, 50.715904480059102 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116038247499877, 50.71572461598636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116038247499877, 50.715904480059102 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116322312866503, 50.715904480059102 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116606378233128, 50.715904480059102 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116606378233128, 50.716084344131843 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116890443599754, 50.71572461598636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116890443599754, 50.716084344131843 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116890443599754, 50.716264208204585 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1170343616, 50.716089056949997 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.11714491895, 50.718888310499999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116414963099414, 50.718645343036371 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116699049133138, 50.71846547896363 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116699049133138, 50.718645343036371 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116983135166862, 50.71846547896363 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1174051433, 50.718521730749998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1174966101, 50.718804027849998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.114865691832923, 50.719119252431845 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115149776339755, 50.719119252431845 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115433860846587, 50.718939388359104 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11571794535342, 50.718939388359104 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116002029860252, 50.718939388359104 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116286114367084, 50.718759524286362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116570198873917, 50.718759524286362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116854283380749, 50.718759524286362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117138367887581, 50.718759524286362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117422452394414, 50.718579660213621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117706536901246, 50.718399796140879 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117990621408079, 50.718219932068138 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117002183316258, 50.716256297531842 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117286250772086, 50.716076433459101 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117570318227914, 50.715716705313618 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117570318227914, 50.715896569386359 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117854385683742, 50.715536841240876 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117854385683742, 50.715716705313618 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12590232015, 50.717370096850004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115613023440059, 50.715575053018213 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115897084305044, 50.715575053018213 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116181145170029, 50.715575053018213 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116181145170029, 50.715754917090955 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116465206035014, 50.715754917090955 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116749266899999, 50.715575053018213 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116749266899999, 50.715754917090955 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117033327764983, 50.71521532487273 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117033327764983, 50.715395188945472 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117317388629968, 50.715035460799989 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117317388629968, 50.71521532487273 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117601449494953, 50.714675732654506 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117601449494953, 50.714855596727247 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117885510359938, 50.714316004509023 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117885510359938, 50.714495868581764 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117258454805953, 50.715845279959105 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117542520900001, 50.715665415886363 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117826586994049, 50.71530568774088 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1181528255, 50.718024582013626 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117021329534413, 50.715577333495474 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117021329534413, 50.715757197568216 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117305392578138, 50.715397469422733 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117589455621863, 50.71503774127725 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117873518665587, 50.714678013131767 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117873518665587, 50.714857877204508 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1182285232, 50.714742642399997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125663719299999, 50.711255092749994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125947760959695, 50.711255092749994 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115105834997177, 50.719164177681847 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115389920157742, 50.719164177681847 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115958090478871, 50.719164177681847 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116242175639435, 50.718984313609106 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116242175639435, 50.719164177681847 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1165262608, 50.718984313609106 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117094431121129, 50.718804449536364 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117094431121129, 50.718984313609106 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117378516281693, 50.718804449536364 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117378516281693, 50.718984313609106 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117662601442258, 50.718624585463623 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117662601442258, 50.718804449536364 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117946686602822, 50.718444721390881 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117946686602822, 50.718984313609106 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116511161927805, 50.716013956968219 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116795226496683, 50.716013956968219 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117079291065561, 50.715834092895477 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117079291065561, 50.716013956968219 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117363355634439, 50.715474364749994 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117363355634439, 50.715654228822736 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117647420203317, 50.715294500677253 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117931484772195, 50.71493477253177 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126069004050001, 50.717534795199995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116244044859999, 50.718120144177256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116244044859999, 50.718479872322739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116244044859999, 50.71865973639548 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11652812779, 50.718120144177256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11652812779, 50.718300008249997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11652812779, 50.718479872322739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11681221072, 50.717940280104514 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11681221072, 50.718120144177256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11681221072, 50.718300008249997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11709629365, 50.717940280104514 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11709629365, 50.718120144177256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11709629365, 50.718300008249997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117380376580001, 50.718120144177256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117380376580001, 50.718300008249997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117380376580001, 50.718479872322739 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117664459510001, 50.718120144177256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117664459510001, 50.718300008249997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117948542440002, 50.717940280104514 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1180589849, 50.7180569772 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1264122118, 50.712070419050001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118145794978012, 50.718527063749995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118145794978012, 50.718706927822737 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118429880221989, 50.718347199677254 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118429880221989, 50.718527063749995 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.11860275285, 50.717984270900004 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.118738838200001, 50.718333566850006 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.11873510525, 50.717893171050001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118099715067237, 50.715201582327254 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118099715067237, 50.715381446399995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118099715067237, 50.715561310472737 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118383781299999, 50.715201582327254 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118383781299999, 50.715381446399995 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1188711913, 50.718233479150001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117961552821447, 50.715116785500001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117961552821447, 50.715296649572743 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118245617807149, 50.71493692142726 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118245617807149, 50.715116785500001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118529682792852, 50.715116785500001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.11901040835, 50.718142243049996 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.119162175750001, 50.717974475700004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1191637744, 50.715367439600001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11920173535, 50.715474951749997 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.119301391400001, 50.71788323925 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.118854085879533, 50.717759153872741 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1191381654, 50.7175792898 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.119422244920466, 50.717399425727258 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119201532650925, 50.716934304813627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119201532650925, 50.717114168886368 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119485609549075, 50.716934304813627 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1195731709, 50.717691982299996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118746100009344, 50.718770663290947 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11903017730623, 50.718590799218205 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11903017730623, 50.718770663290947 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119314254603116, 50.718410935145464 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119314254603116, 50.718590799218205 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119598331900002, 50.718231071072722 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119598331900002, 50.718410935145464 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119882409196888, 50.717871342927239 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119882409196888, 50.718051206999981 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119882409196888, 50.718231071072722 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120166486493773, 50.717871342927239 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120450563790659, 50.717871342927239 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120734641087545, 50.717331750709015 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120734641087545, 50.717871342927239 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121018718384431, 50.717151886636273 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121018718384431, 50.717331750709015 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121018718384431, 50.717691478854498 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121018718384431, 50.717871342927239 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11849833094937, 50.719069508772741 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118782418416457, 50.718889644699999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119066505883543, 50.718889644699999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119066505883543, 50.719069508772741 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11935059335063, 50.718709780627258 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11935059335063, 50.718889644699999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11935059335063, 50.719069508772741 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.119698549200001, 50.7176006774 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119693422, 50.716805200700001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1198379769, 50.717500520650006 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.119855576, 50.717068976600004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121443811400001, 50.71538147815 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.11814584800183, 50.718232337295461 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.11814584800183, 50.718771929513686 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118429924167887, 50.71805247322272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118429924167887, 50.718232337295461 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118429924167887, 50.718592065440944 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118714000333944, 50.71805247322272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118714000333944, 50.718232337295461 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118714000333944, 50.718412201368203 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118998076500001, 50.717872609149978 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118998076500001, 50.71805247322272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.118998076500001, 50.718232337295461 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119282152666059, 50.717333016931754 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119282152666059, 50.717692745077237 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119282152666059, 50.71805247322272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119566228832116, 50.717153152859012 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119566228832116, 50.717333016931754 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119566228832116, 50.717512881004495 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119566228832116, 50.717872609149978 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119850304998173, 50.716793424713529 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119850304998173, 50.716973288786271 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119850304998173, 50.717153152859012 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119850304998173, 50.717333016931754 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118981922548697, 50.716861561236364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118981922548697, 50.717041425309105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119265996916233, 50.716861561236364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119550071283768, 50.716681697163622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119550071283768, 50.716861561236364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119834145651304, 50.716501833090881 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.119980844900001, 50.716973245550001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12142922585, 50.715372558650003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1214925004, 50.715345050650001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117981390647067, 50.714858465004568 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117981390647067, 50.715038329077309 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118265442947905, 50.714678600931826 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118265442947905, 50.714858465004568 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118549495248743, 50.714318872786343 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118549495248743, 50.714498736859085 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118549495248743, 50.714858465004568 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118833547549581, 50.714139008713602 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118833547549581, 50.715038329077309 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118833547549581, 50.715218193150051 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119117599850419, 50.713779280568119 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119117599850419, 50.715038329077309 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119117599850419, 50.715218193150051 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119401652151257, 50.713419552422636 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119401652151257, 50.713599416495377 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119401652151257, 50.715218193150051 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119401652151257, 50.715398057222792 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119685704452095, 50.713239688349894 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119685704452095, 50.715398057222792 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119685704452095, 50.715577921295534 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119969756752933, 50.712879960204411 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119969756752933, 50.713059824277153 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119969756752933, 50.715577921295534 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118558731780941, 50.714571718045455 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118558731780941, 50.714751582118197 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11884278335396, 50.714211989899972 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11884278335396, 50.714391853972714 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11884278335396, 50.714751582118197 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11912683492698, 50.714032125827231 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11912683492698, 50.714931446190938 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119410886499999, 50.713672397681748 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119410886499999, 50.714931446190938 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119410886499999, 50.71511131026368 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119694938073018, 50.713492533609006 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119694938073018, 50.715291174336421 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119694938073018, 50.715650902481904 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119978989646038, 50.713132805463523 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119978989646038, 50.715291174336421 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119978989646038, 50.715471038409163 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119978989646038, 50.715650902481904 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120263041219057, 50.71277307731804 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120263041219057, 50.712952941390782 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120263041219057, 50.713132805463523 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120263041219057, 50.715471038409163 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119199200453663, 50.717336305795477 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119483275684554, 50.717156441722736 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120051426146337, 50.716616849504511 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.120128737, 50.717237020949995 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12012027025, 50.716882008149994 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119538633294211, 50.714928984227257 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119822698199999, 50.715108848299998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120106763105787, 50.71528871237274 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1202611915, 50.717145783399999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1204041608, 50.716614082 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118899594767455, 50.714455254068213 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119183649220473, 50.71409552592273 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119183649220473, 50.714275389995471 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11946770367349, 50.713915661849988 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11946770367349, 50.71409552592273 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119751758126508, 50.713555933704505 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119751758126508, 50.713735797777247 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120035812579526, 50.713376069631764 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120035812579526, 50.713555933704505 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120319867032544, 50.713196205559022 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119990698037302, 50.715801391263618 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119990698037302, 50.715981255336359 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119990698037302, 50.716161119409101 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120274766162697, 50.715621527190876 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120274766162697, 50.715801391263618 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120274766162697, 50.715981255336359 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120274766162697, 50.716161119409101 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120558834288092, 50.715621527190876 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1206828999, 50.716427180300002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12065257165, 50.712782068149998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.120823608449999, 50.716690954849994 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118048036302793, 50.714206888227316 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118048036302793, 50.714386752300058 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118332084862234, 50.714027024154575 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118332084862234, 50.714206888227316 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118616133421676, 50.713667296009092 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118616133421676, 50.713847160081833 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118900181981117, 50.71348743193635 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118900181981117, 50.713667296009092 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119184230540559, 50.713127703790867 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119184230540559, 50.713307567863609 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1194682791, 50.712947839718126 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1194682791, 50.713127703790867 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119752327659442, 50.712588111572643 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119752327659442, 50.712767975645384 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120036376218883, 50.712408247499901 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120320424778325, 50.71222838342716 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120604473337766, 50.71222838342716 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1210991272, 50.716072508099998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1212314694, 50.715976843649997 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118128906767621, 50.718922721436428 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118412981546235, 50.718742857363686 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118697056324849, 50.718562993290945 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.118981131103463, 50.718383129218203 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119265205882077, 50.718203265145462 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.119549280660691, 50.71802340107272 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12011743021792, 50.717663672927237 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120401504996534, 50.717303944781754 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120401504996534, 50.717483808854496 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120401504996534, 50.717663672927237 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120685579775148, 50.717124080709013 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120685579775148, 50.717663672927237 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120969654553762, 50.71676435256353 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120969654553762, 50.716944216636271 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120969654553762, 50.717124080709013 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121253729332376, 50.716584488490788 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121253729332376, 50.71676435256353 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12151160005, 50.71614495275 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120372193130952, 50.715847351663619 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120372193130952, 50.716027215736361 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120372193130952, 50.716207079809102 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120372193130952, 50.716386943881844 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120656261276984, 50.715667487590878 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120656261276984, 50.715847351663619 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120940329423017, 50.715667487590878 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120792965311413, 50.715356843713629 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121077032850001, 50.715356843713629 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121255245512018, 50.716955136449997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121255245512018, 50.717135000522738 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121539321687981, 50.716775272377255 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121539321687981, 50.716955136449997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.119838444417811, 50.71785498786813 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120122524984151, 50.718034851940871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120406605550491, 50.718034851940871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120690686116831, 50.718034851940871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120690686116831, 50.718214716013613 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120974766683171, 50.718034851940871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121258847249511, 50.717675123795388 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121258847249511, 50.71785498786813 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121258847249511, 50.718034851940871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121542927815851, 50.718034851940871 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121542927815851, 50.718214716013613 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121542927815851, 50.718394580086354 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121542927815851, 50.718574444159096 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121542927815851, 50.718754308231837 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121542927815851, 50.71911403637732 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121827008382191, 50.718034851940871 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1217954782, 50.715877023250002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12178689195, 50.715517516749998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121617555107603, 50.718708873086364 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121617555107603, 50.718888737159105 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121617555107603, 50.719068601231847 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121901639492398, 50.718169280868139 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121206821440626, 50.714801283886366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1214908835, 50.714621419813625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1214908835, 50.714801283886366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121774945559374, 50.714621419813625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121501958964463, 50.714977903336369 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1217860221, 50.714798039263627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1217860221, 50.714977903336369 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122070085235538, 50.714798039263627 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119995501252354, 50.716801939081833 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119995501252354, 50.717161667227316 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119995501252354, 50.717341531300058 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.119995501252354, 50.717521395372799 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120279567437396, 50.71644221093635 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120279567437396, 50.716622075009091 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120279567437396, 50.716801939081833 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120279567437396, 50.716981803154574 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120279567437396, 50.717161667227316 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120563633622438, 50.716262346863608 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120563633622438, 50.71644221093635 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120563633622438, 50.716622075009091 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120563633622438, 50.716801939081833 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.120563633622438, 50.716981803154574 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12084769980748, 50.716262346863608 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12084769980748, 50.71644221093635 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12084769980748, 50.716622075009091 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12084769980748, 50.716801939081833 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121131765992522, 50.715902618718125 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121131765992522, 50.716082482790867 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121131765992522, 50.716262346863608 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121131765992522, 50.71644221093635 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121131765992522, 50.716622075009091 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121415832177564, 50.715542890572642 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121415832177564, 50.715722754645384 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121415832177564, 50.715902618718125 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121415832177564, 50.716082482790867 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121415832177564, 50.71644221093635 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121699898362606, 50.715363026499901 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121699898362606, 50.715542890572642 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121699898362606, 50.715722754645384 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121699898362606, 50.715902618718125 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121699898362606, 50.716082482790867 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121699898362606, 50.71644221093635 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121983964547648, 50.715183162427159 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121983964547648, 50.715363026499901 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121983964547648, 50.715542890572642 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121983964547648, 50.715722754645384 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121983964547648, 50.715902618718125 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.121983964547648, 50.716622075009091 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117999927271056, 50.714579919300057 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117999927271056, 50.714759783372799 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118283976646619, 50.714400055227316 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118568026022183, 50.714040327081833 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118568026022183, 50.714220191154574 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.118852075397747, 50.713860463009091 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119136124773311, 50.713500734863608 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119136124773311, 50.713680598936349 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119420174148875, 50.713320870790866 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119704223524439, 50.712961142645383 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.119988272900002, 50.712781278572642 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120272322275566, 50.712421550427159 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12055637165113, 50.712421550427159 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120840421026694, 50.712421550427159 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121124470402258, 50.712421550427159 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121124470402258, 50.7126014144999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121408519777821, 50.7126014144999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121976618528949, 50.712781278572642 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1227740705, 50.715058589850003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121405314654341, 50.717181652436366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12168939088478, 50.716821924290883 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12168939088478, 50.717001788363625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12168939088478, 50.717181652436366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12168939088478, 50.717361516509108 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12197346711522, 50.717001788363625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12197346711522, 50.717181652436366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1223199499, 50.717085722850001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122384622449999, 50.717125417399998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1223508941, 50.715422187499996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12242036565, 50.718033102649997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12252640635, 50.717133041400004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12254249655, 50.717213793900001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12247270755, 50.714886126250001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.122627685, 50.715149830350001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1226189852, 50.714785830050005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1226353969, 50.714884489750006 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1227583989, 50.714694657750002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12268483635, 50.7148890518 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12223719165936, 50.717623469336367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12223719165936, 50.717803333409108 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12252127055, 50.717443605263625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12280534944064, 50.717443605263625 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1228994359, 50.714962855350002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122574081154259, 50.717922412277254 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1228581643, 50.718102276349995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122063332272035, 50.716967302804505 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1223474085, 50.717866623168213 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122631484727964, 50.717147166877247 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122631484727964, 50.717686759095471 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122915560955928, 50.717327030949988 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126703765042082, 50.716660358286369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126987839057916, 50.716480494213627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.120939744255574, 50.712955617418139 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12122379708705, 50.712955617418139 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12122379708705, 50.71313548149088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121507849918526, 50.71313548149088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121791902750002, 50.71313548149088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121791902750002, 50.713315345563622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122075955581478, 50.713315345563622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122075955581478, 50.713495209636363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122360008412953, 50.713315345563622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122360008412953, 50.713495209636363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122360008412953, 50.713675073709105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122360008412953, 50.713854937781846 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122644061244429, 50.713675073709105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122928114075905, 50.713675073709105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12299502315, 50.71573068635 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128200591300001, 50.716098632950001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120279672860431, 50.712703579427249 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120563722835891, 50.712523715354507 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120847772811351, 50.712523715354507 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121131822786811, 50.712703579427249 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121415872762271, 50.712703579427249 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121699922737731, 50.71288344349999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121983972713191, 50.71288344349999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122268022688651, 50.713063307572732 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122552072664111, 50.713063307572732 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122836122639571, 50.713243171645473 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12318329915, 50.714699484549996 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.123174595149999, 50.714330990400001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120416586145446, 50.712762868781766 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120416586145446, 50.712942732854508 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120416586145446, 50.713122596927249 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120700636666357, 50.712583004709025 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.120984687187268, 50.712762868781766 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121268737708179, 50.712942732854508 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121552788229089, 50.712942732854508 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12183683875, 50.713122596927249 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122120889270911, 50.712762868781766 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122120889270911, 50.713122596927249 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122404939791822, 50.712942732854508 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122404939791822, 50.713302461 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122688990312732, 50.712942732854508 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122688990312732, 50.713302461 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122688990312732, 50.713482325072732 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122688990312732, 50.713842053218215 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122973040833643, 50.713122596927249 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122973040833643, 50.713482325072732 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122973040833643, 50.713842053218215 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123257091354554, 50.713122596927249 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123257091354554, 50.713302461 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123257091354554, 50.713482325072732 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121352688006737, 50.716548076540789 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121352688006737, 50.716727940613531 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121636762555053, 50.716548076540789 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121636762555053, 50.716727940613531 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121636762555053, 50.718886309486429 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121920837103368, 50.716727940613531 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121920837103368, 50.718346717268204 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121920837103368, 50.718526581340946 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121920837103368, 50.718706445413687 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121920837103368, 50.718886309486429 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121920837103368, 50.71906617355917 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122204911651684, 50.717986989122721 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122204911651684, 50.718166853195463 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122204911651684, 50.718346717268204 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122204911651684, 50.718526581340946 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1224889862, 50.716907804686272 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1224889862, 50.717087668759014 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1224889862, 50.717986989122721 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1224889862, 50.718166853195463 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1224889862, 50.718346717268204 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122773060748315, 50.717087668759014 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122773060748315, 50.717627260977238 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122773060748315, 50.71780712504998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123057135296631, 50.717087668759014 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123057135296631, 50.717267532831755 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123057135296631, 50.717447396904497 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123057135296631, 50.717627260977238 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123057135296631, 50.71780712504998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123341209844947, 50.717267532831755 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123341209844947, 50.717447396904497 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123625284393262, 50.717267532831755 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123625284393262, 50.717447396904497 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122113760545811, 50.716251424749991 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122397829947905, 50.71607156067725 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122397829947905, 50.716251424749991 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122397829947905, 50.716431288822733 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12268189935, 50.715711832531767 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12268189935, 50.715891696604508 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12268189935, 50.71607156067725 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12268189935, 50.716251424749991 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12268189935, 50.716431288822733 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12268189935, 50.716611152895474 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122965968752094, 50.716611152895474 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123250038154189, 50.716791016968216 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.122950996711315, 50.715486983486372 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123235063588685, 50.71530711941363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122798500191905, 50.716043655340876 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122798500191905, 50.716223519413617 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12308257035, 50.715863791268134 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12308257035, 50.716043655340876 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12308257035, 50.716223519413617 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12308257035, 50.716403383486359 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12308257035, 50.7165832475591 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123366640508095, 50.7165832475591 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123138576094748, 50.715574745086371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123422643505252, 50.71539488101363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123422643505252, 50.715574745086371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12356893226412, 50.715183101649998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122121339615315, 50.716704173477254 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122405414189189, 50.716704173477254 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122689488763063, 50.716884037549995 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123257637910811, 50.717063901622737 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1246942806, 50.713647688349994 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121721480222746, 50.716304074259085 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122005542659104, 50.715944346113602 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122005542659104, 50.716124210186344 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122005542659104, 50.716304074259085 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122005542659104, 50.716483938331827 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122289605095462, 50.715764482040861 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122289605095462, 50.715944346113602 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122289605095462, 50.716483938331827 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12257366753182, 50.715584617968119 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12257366753182, 50.716663802404568 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122857729968178, 50.715224889822636 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122857729968178, 50.715404753895378 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122857729968178, 50.715584617968119 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122857729968178, 50.71684366647731 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123141792404536, 50.715224889822636 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123141792404536, 50.71684366647731 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123425854840894, 50.714865161677153 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123425854840894, 50.717023530550051 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123709917277252, 50.717203394622793 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123709917277252, 50.717383258695534 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12379067225, 50.717300650399999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.12373868755, 50.714240148450003 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120451207052296, 50.716337136718273 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120735261576914, 50.71597740857279 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.120735261576914, 50.716157272645532 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121019316101531, 50.715797544500049 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121303370626149, 50.715617680427307 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121587425150766, 50.715257952281824 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121871479675383, 50.715078088209083 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122155534200001, 50.7147183600636 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122155534200001, 50.714898224136341 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122439588724618, 50.714538495990858 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.122723643249236, 50.714358631918117 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123007697773853, 50.713998903772634 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123007697773853, 50.714178767845375 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123291752298471, 50.713819039699892 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123291752298471, 50.713998903772634 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123575806823088, 50.713639175627151 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123859861347706, 50.713279447481668 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123859861347706, 50.713459311554409 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1258515857, 50.717325842549997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123221403111121, 50.717974641372741 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12350548413704, 50.717614913227258 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123789565162959, 50.717614913227258 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123789565162959, 50.7177947773 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124073646188879, 50.7177947773 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1238029835, 50.716805727713627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124087059502443, 50.716985591786369 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123912856933456, 50.717062340699997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124196933600367, 50.717242204772738 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124226977299999, 50.717480664100002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123218394679433, 50.71763340895 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123502474893144, 50.717453544877259 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124070635320566, 50.71763340895 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122094607440767, 50.7151365324182 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122094607440767, 50.715316396490941 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122094607440767, 50.715496260563683 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122094607440767, 50.715676124636424 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12237866265769, 50.714776804272717 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12237866265769, 50.714956668345458 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12237866265769, 50.7151365324182 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12237866265769, 50.715316396490941 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12237866265769, 50.715496260563683 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122662717874613, 50.714596940199975 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122662717874613, 50.714776804272717 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122662717874613, 50.714956668345458 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122662717874613, 50.7151365324182 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122662717874613, 50.715316396490941 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122946773091536, 50.714417076127233 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122946773091536, 50.714596940199975 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122946773091536, 50.714776804272717 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122946773091536, 50.714956668345458 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.122946773091536, 50.7151365324182 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12323082830846, 50.714237212054492 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12323082830846, 50.714417076127233 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12323082830846, 50.714596940199975 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12323082830846, 50.714776804272717 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123514883525383, 50.713877483909009 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123514883525383, 50.71405734798175 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123514883525383, 50.714237212054492 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123514883525383, 50.714417076127233 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123514883525383, 50.714596940199975 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123798938742306, 50.713877483909009 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123798938742306, 50.71405734798175 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.123798938742306, 50.714237212054492 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124082993959229, 50.71405734798175 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1247449017, 50.713686834900003 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128333027549999, 50.716007043200001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1240596329, 50.713517065127256 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1240596329, 50.713696929199997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124196084245104, 50.718009979499996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124480166854895, 50.718009979499996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1244668184, 50.71360384295 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12451347605, 50.71784623376363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121345450595813, 50.712411882786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121629495581073, 50.712411882786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121913540566332, 50.712411882786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121913540566332, 50.712591746859104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122197585551592, 50.712411882786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122197585551592, 50.712591746859104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122481630536852, 50.712411882786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122481630536852, 50.712591746859104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122481630536852, 50.712771610931846 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122765675522111, 50.712232018713621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122765675522111, 50.712411882786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122765675522111, 50.712591746859104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.122765675522111, 50.712771610931846 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123049720507371, 50.71205215464088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123049720507371, 50.712232018713621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123049720507371, 50.712411882786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123049720507371, 50.712591746859104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123049720507371, 50.712771610931846 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123049720507371, 50.712951475004587 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123333765492631, 50.71205215464088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123333765492631, 50.712232018713621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123333765492631, 50.712411882786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123333765492631, 50.712591746859104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123333765492631, 50.712771610931846 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.123333765492631, 50.712951475004587 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12361781047789, 50.71205215464088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12361781047789, 50.712232018713621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12361781047789, 50.712411882786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12361781047789, 50.712591746859104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12361781047789, 50.712771610931846 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12390185546315, 50.71205215464088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12390185546315, 50.712232018713621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12390185546315, 50.712411882786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12390185546315, 50.712591746859104 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12418590044841, 50.711872290568138 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12418590044841, 50.71205215464088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12418590044841, 50.712232018713621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12418590044841, 50.712411882786363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12446994543367, 50.711692426495397 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12446994543367, 50.711872290568138 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12446994543367, 50.71205215464088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12446994543367, 50.712232018713621 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124753990418929, 50.711692426495397 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124753990418929, 50.711872290568138 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124753990418929, 50.71205215464088 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125176117400001, 50.713669253649996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123360280826415, 50.713061194945467 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123360280826415, 50.713241059018209 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123360280826415, 50.713420923090951 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123644326876011, 50.713061194945467 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123644326876011, 50.713241059018209 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123928372925607, 50.712881330872726 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123928372925607, 50.713061194945467 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124212418975203, 50.712701466799984 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124212418975203, 50.712881330872726 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124496465024799, 50.712341738654501 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124496465024799, 50.712521602727243 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124496465024799, 50.712701466799984 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124780511074395, 50.71216187458176 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124780511074395, 50.712341738654501 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124780511074395, 50.712521602727243 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125064557123991, 50.711982010509018 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125064557123991, 50.71216187458176 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125348603173586, 50.711802146436277 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125149104876598, 50.711212260686366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125433146, 50.711032396613625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125433146, 50.711212260686366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125717187123402, 50.711032396613625 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125929696249999, 50.71762603965 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124358646934961, 50.71752446419088 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12464272769248, 50.717704328263622 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12492680845, 50.717884192336363 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125494969965039, 50.717884192336363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125089762679842, 50.717457835613629 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125373842520156, 50.717457835613629 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125373842520156, 50.717637699686371 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124465447484369, 50.717335711177256 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124749526817185, 50.717515575249998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125033606150001, 50.717695439322739 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125657942, 50.717813158599995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12373521110595, 50.714559187913686 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124019261818536, 50.714379323840944 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124019261818536, 50.714559187913686 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124303312531122, 50.714019595695461 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124303312531122, 50.714199459768203 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124587363243708, 50.713659867549978 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124587363243708, 50.714019595695461 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12515546466888, 50.713300139404495 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12515546466888, 50.713480003477237 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12515546466888, 50.71383973162272 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125439515381466, 50.712940411259012 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125439515381466, 50.713120275331754 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125439515381466, 50.713659867549978 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125439515381466, 50.71383973162272 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125439515381466, 50.714019595695461 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125723566094051, 50.712580683113529 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125723566094051, 50.712760547186271 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125723566094051, 50.71383973162272 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125723566094051, 50.714019595695461 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1257974664, 50.717717352299999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12383808124051, 50.717181196368138 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12383808124051, 50.717361060440879 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12383808124051, 50.717540924513621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124122159417883, 50.717361060440879 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124122159417883, 50.717540924513621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124406237595256, 50.717361060440879 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124406237595256, 50.717720788586362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124690315772629, 50.717540924513621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124690315772629, 50.717900652659104 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124690315772629, 50.718080516731845 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124974393950001, 50.717720788586362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125258472127374, 50.717900652659104 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125258472127374, 50.718080516731845 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125542550304747, 50.717720788586362 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12582662848212, 50.717540924513621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126110706659492, 50.717361060440879 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126109304150001, 50.712423810749996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126208634599999, 50.717434562950004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12591363515, 50.712673104163628 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12591363515, 50.712852968236369 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128319063324938, 50.71554293278637 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128603130975061, 50.715363068713629 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.123899422272621, 50.713226007613692 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124183464466966, 50.713226007613692 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12446750666131, 50.712866279468209 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12446750666131, 50.71304614354095 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.124751548855655, 50.712686415395467 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12503559105, 50.712326687249984 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12503559105, 50.712506551322726 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125319633244344, 50.712146823177243 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125603675438689, 50.71178709503176 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125887717633034, 50.711427366886277 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125887717633034, 50.711607230959018 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126171759827378, 50.711247502813535 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1261800816, 50.712423126749997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1261798661, 50.712414139049997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12621449425, 50.717155877400003 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12634086285, 50.717338892800001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1262642602, 50.712395342900003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12627176895, 50.712404330550001 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124118788555522, 50.713695416109161 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124402828554142, 50.713155823890936 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124402828554142, 50.713335687963678 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124402828554142, 50.713515552036419 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124402828554142, 50.713695416109161 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124402828554142, 50.713875280181902 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124686868552761, 50.712975959818195 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124686868552761, 50.713155823890936 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124686868552761, 50.713335687963678 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.124686868552761, 50.713515552036419 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12497090855138, 50.712796095745453 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12497090855138, 50.712975959818195 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12497090855138, 50.713155823890936 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12497090855138, 50.713335687963678 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12497090855138, 50.713515552036419 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125254948549999, 50.71243636759997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125254948549999, 50.712616231672712 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125254948549999, 50.712796095745453 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125254948549999, 50.712975959818195 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125254948549999, 50.713875280181902 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125538988548619, 50.712076639454487 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125538988548619, 50.712256503527229 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125538988548619, 50.71243636759997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125538988548619, 50.712616231672712 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125823028547238, 50.711896775381746 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125823028547238, 50.712076639454487 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125823028547238, 50.712256503527229 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125823028547238, 50.71243636759997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126107068545857, 50.71117731909078 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126107068545857, 50.711537047236263 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126107068545857, 50.711716911309004 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126107068545857, 50.711896775381746 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126107068545857, 50.712076639454487 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126391108544476, 50.711537047236263 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126391108544476, 50.711716911309004 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126391108544476, 50.711896775381746 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126391108544476, 50.712076639454487 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125774957011215, 50.712626690722736 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126059004799999, 50.712266962577253 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126059004799999, 50.712446826649995 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126343052588783, 50.712087098504512 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.125495613442062, 50.713944925313626 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126347789957938, 50.714124789386368 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125820993528476, 50.713633209913624 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126389107371523, 50.713813073986366 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1265644281, 50.71695472815 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1264935361, 50.716914899550005 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125894696076741, 50.713054412509109 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12617874595, 50.712874548436368 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12617874595, 50.713054412509109 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125839197019142, 50.710396478150003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125839197019142, 50.710576342222744 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1261232332, 50.710216614077261 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1261232332, 50.710396478150003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126407269380858, 50.710216614077261 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126407269380858, 50.710396478150003 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126456174571172, 50.714203618100001 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126740234928828, 50.714203618100001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126140757741172, 50.710617804736366 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12642479445, 50.710437940663624 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12642479445, 50.710617804736366 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12642479445, 50.710797668809107 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126708831158829, 50.710258076590883 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126708831158829, 50.710437940663624 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124604322430891, 50.7183219931091 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124888403148168, 50.7183219931091 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125172483865445, 50.7183219931091 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125172483865445, 50.718501857181842 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125456564582722, 50.7183219931091 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125740645299999, 50.7183219931091 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125740645299999, 50.718501857181842 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126024726017276, 50.718142129036359 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126308806734553, 50.717962264963617 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12659288745183, 50.717602536818134 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12659288745183, 50.717782400890876 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126876968169107, 50.717602536818134 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1268580426, 50.7141246224 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126502368402515, 50.717218058122739 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12678644475, 50.717038194049998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127070521097486, 50.716858329977256 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126439439921143, 50.711900712736366 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126439439921143, 50.712080576809107 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1267234844, 50.711720848663624 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1267234844, 50.711900712736366 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127007528878857, 50.711540984590883 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126513234124886, 50.712060903722737 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12679727915, 50.711881039649995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12679727915, 50.712060903722737 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127081324175114, 50.711701175577254 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126543201861439, 50.710762448109108 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126827238, 50.710402719963625 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126827238, 50.710582584036366 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12711127413856, 50.710222855890883 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128554605082184, 50.710383364113625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1272113721, 50.71151421998637 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1271154570103, 50.716233240963625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1271154570103, 50.716413105036366 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127399529689701, 50.716233240963625 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12727070695, 50.710097718950003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126858479636143, 50.716701997222742 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127142552800001, 50.716522133150001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127426625963858, 50.716342269077259 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.126213532794615, 50.711572379304585 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.126497569847308, 50.711212651159101 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1267816069, 50.71103278708636 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.127065643952692, 50.710673058940877 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.127349681005384, 50.710313330795394 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12755876385, 50.714117844100002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126402156956786, 50.710815137377239 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126402156956786, 50.71099500144998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126402156956786, 50.711174865522722 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126402156956786, 50.711534593668205 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126402156956786, 50.711714457740946 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126402156956786, 50.711894321813688 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126686192528393, 50.710815137377239 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126686192528393, 50.711174865522722 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126686192528393, 50.711534593668205 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126970228099999, 50.710635273304497 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126970228099999, 50.71099500144998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126970228099999, 50.711354729595463 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.126970228099999, 50.711534593668205 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127254263671606, 50.710275545159014 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127254263671606, 50.710455409231756 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127254263671606, 50.710635273304497 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127254263671606, 50.71099500144998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127254263671606, 50.711174865522722 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127538299243213, 50.710095681086273 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127538299243213, 50.710275545159014 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127538299243213, 50.710455409231756 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127538299243213, 50.710815137377239 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1275681727, 50.710085855299994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127693245650001, 50.714116542699998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12772906715, 50.7141341755 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.127420695168762, 50.710279213736371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124647767472322, 50.71462772976362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124647767472322, 50.714807593836362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124931828115042, 50.714447865690879 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124931828115042, 50.71462772976362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124931828115042, 50.714807593836362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.124931828115042, 50.714987457909103 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125215888757761, 50.714268001618137 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125215888757761, 50.714447865690879 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125215888757761, 50.71462772976362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125215888757761, 50.714807593836362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125215888757761, 50.714987457909103 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125499949400481, 50.714268001618137 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125499949400481, 50.714447865690879 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125499949400481, 50.71462772976362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125499949400481, 50.714807593836362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125784010043201, 50.714268001618137 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.125784010043201, 50.71462772976362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126068070685921, 50.714447865690879 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126352131328641, 50.714447865690879 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126636191971361, 50.714447865690879 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126920252614081, 50.71462772976362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127204313256801, 50.71462772976362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127488373899521, 50.714807593836362 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128056495184961, 50.714987457909103 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12834055582768, 50.714987457909103 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12834055582768, 50.715167321981845 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127097367614859, 50.711435949859109 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127665447885142, 50.710896357640884 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127289288022494, 50.716697751372742 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12757336105, 50.7165178873 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127857434077507, 50.716338023227259 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123422492480582, 50.715108322118219 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12370655163301, 50.714928458045478 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12370655163301, 50.715108322118219 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123990610785437, 50.714748593972736 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.123990610785437, 50.714928458045478 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124274669937865, 50.714388865827253 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124274669937865, 50.714568729899995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124558729090293, 50.714209001754512 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124558729090293, 50.714388865827253 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12484278824272, 50.71402913768177 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12484278824272, 50.714209001754512 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125126847395148, 50.71402913768177 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125126847395148, 50.714209001754512 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125694965700003, 50.714209001754512 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12597902485243, 50.714209001754512 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126547143157286, 50.714388865827253 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126831202309713, 50.714388865827253 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127399320614568, 50.714568729899995 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127604815325403, 50.710277377399997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127604815325403, 50.710457241472739 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127888850874596, 50.710097513327256 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127373500898076, 50.71126736292274 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12765754135, 50.711087498849999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.12805421385, 50.716194168149997 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126210419904676, 50.717254408318212 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126210419904676, 50.717614136463695 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126778560702005, 50.716894680172729 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126778560702005, 50.717254408318212 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127062631100669, 50.716714816099987 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127062631100669, 50.716894680172729 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127346701499333, 50.716534952027246 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127346701499333, 50.716714816099987 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127630771897998, 50.716355087954504 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127630771897998, 50.716534952027246 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127914842296662, 50.716175223881763 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127914842296662, 50.716355087954504 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128198912695327, 50.71581549573628 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128198912695327, 50.715995359809021 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128198912695327, 50.716175223881763 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127752015271446, 50.710779439986368 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128036054028555, 50.710599575913626 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127572123132271, 50.716085085222737 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12785619295, 50.715905221149995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12799944175, 50.71068827485 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.126720738024848, 50.711409972718215 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.127004773562423, 50.711050244572732 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.127288809099999, 50.710870380499991 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.127572844637574, 50.710510652354507 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.124944722385069, 50.718133727163689 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125512866856712, 50.718133727163689 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.125796939092534, 50.717953863090948 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126081011328355, 50.717773999018206 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126365083564177, 50.717594134945465 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126365083564177, 50.717773999018206 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.126649155799998, 50.717414270872723 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12693322803582, 50.717234406799982 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12693322803582, 50.717414270872723 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127217300271641, 50.71705454272724 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127217300271641, 50.717234406799982 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127501372507463, 50.716874678654499 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127501372507463, 50.71705454272724 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127785444743284, 50.716694814581757 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.127785444743284, 50.716874678654499 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128069516979106, 50.716514950509016 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128353589214927, 50.716335086436274 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12817654895, 50.710277705163627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127136672792578, 50.711685698972722 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127136672792578, 50.711865563045464 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127136672792578, 50.712045427118206 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127136672792578, 50.712225291190947 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127136672792578, 50.712405155263689 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1274207116, 50.711325970827239 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1274207116, 50.711505834899981 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1274207116, 50.711685698972722 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127704750407422, 50.711325970827239 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127704750407422, 50.711505834899981 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127988789214844, 50.710786378609015 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127988789214844, 50.710966242681756 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127988789214844, 50.711146106754498 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127988789214844, 50.711505834899981 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128272828022266, 50.711146106754498 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1285768315, 50.715586774236371 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125873870720408, 50.713715935831772 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125873870720408, 50.713895799904513 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.125873870720408, 50.714075663977255 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126157928226984, 50.713895799904513 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12644198573356, 50.713895799904513 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12644198573356, 50.714075663977255 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.12644198573356, 50.714255528049996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126726043240136, 50.714075663977255 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.126726043240136, 50.714255528049996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127010100746713, 50.714075663977255 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127294158253289, 50.714435392122738 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127578215759865, 50.714255528049996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127862273266441, 50.714255528049996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.127862273266441, 50.714615256195479 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128146330773017, 50.714615256195479 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128430388279593, 50.714435392122738 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128085367471441, 50.710511083986368 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128369404628558, 50.710331219913627 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127580851121047, 50.710639021522738 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127580851121047, 50.710818885595479 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127864886640349, 50.710459157449996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128148922159651, 50.710099429304513 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128432957678953, 50.710099429304513 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128078024431153, 50.714716669590885 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12864615172295, 50.714896533663627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12864615172295, 50.71525626180911 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128930215368848, 50.715076397736368 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128963459013613, 50.710087257463627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129247494486386, 50.710087257463627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128798677241289, 50.716164567359101 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12908274538043, 50.716164567359101 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12936681351957, 50.715804839213618 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12965088165871, 50.715624975140877 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128591187040915, 50.716145658031841 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128591187040915, 50.716325522104583 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12887525274243, 50.7159657939591 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129159318443944, 50.715606065813617 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129159318443944, 50.715785929886358 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129443384145458, 50.715246337668134 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129443384145458, 50.715426201740875 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129727449846972, 50.715246337668134 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129727449846972, 50.715426201740875 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130011515548486, 50.715246337668134 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130011515548486, 50.715426201740875 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13029558125, 50.715426201740875 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13029558125, 50.715606065813617 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130863712653029, 50.715426201740875 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131147778354543, 50.715426201740875 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131431844056057, 50.715426201740875 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131715909757571, 50.715246337668134 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131999975459085, 50.715246337668134 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127399219628544, 50.714395393204505 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127683279902835, 50.714395393204505 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.127967340177126, 50.714395393204505 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128251400451417, 50.714575257277247 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128535460725709, 50.714575257277247 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.128819521, 50.714755121349988 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129103581274291, 50.714755121349988 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129103581274291, 50.715294713568213 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129387641548582, 50.714755121349988 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129387641548582, 50.71493498542273 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129671701822873, 50.714575257277247 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129671701822873, 50.714755121349988 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129671701822873, 50.71493498542273 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.129955762097164, 50.71493498542273 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130239822371455, 50.714395393204505 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130239822371455, 50.71493498542273 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130239822371455, 50.715114849495471 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130523882645746, 50.715114849495471 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130807942920037, 50.714215529131764 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130807942920037, 50.715114849495471 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130506234501907, 50.716075364036371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1307621865, 50.710441393099998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12577069771737, 50.713528794468139 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126338810457955, 50.713708658540881 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126622866828247, 50.713708658540881 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.126906923198539, 50.713888522613622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127190979568831, 50.713888522613622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.127475035939123, 50.714068386686364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128043148679708, 50.714068386686364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12832720505, 50.714068386686364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128611261420292, 50.714068386686364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128611261420292, 50.714248250759105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.128895317790584, 50.714248250759105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129179374160876, 50.714248250759105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129179374160876, 50.714428114831847 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129463430531168, 50.714248250759105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129463430531168, 50.714428114831847 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129747486901461, 50.714068386686364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.129747486901461, 50.714248250759105 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130031543271753, 50.713888522613622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130031543271753, 50.714068386686364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130315599642045, 50.713888522613622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130315599642045, 50.714068386686364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130599656012337, 50.713708658540881 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130896847689635, 50.714560027799997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131180910010365, 50.714560027799997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128360634575946, 50.714291626686368 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.128928751732548, 50.714471490759109 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129212810310849, 50.714471490759109 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.12949686888915, 50.714471490759109 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.129780927467452, 50.714291626686368 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130633103202355, 50.713931898540885 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130917161780656, 50.713931898540885 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128241660245833, 50.715853995745469 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128241660245833, 50.716033859818211 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128241660245833, 50.716213723890952 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128525723813194, 50.715674131672728 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128525723813194, 50.716033859818211 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128809787380555, 50.71477481130902 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128809787380555, 50.715314403527245 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128809787380555, 50.715494267599986 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128809787380555, 50.715853995745469 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129093850947916, 50.714954675381762 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129093850947916, 50.715134539454503 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129093850947916, 50.715494267599986 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129377914515277, 50.715134539454503 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129661978082638, 50.715134539454503 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129946041649998, 50.715134539454503 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130230105217359, 50.715314403527245 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130798232352081, 50.715314403527245 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131366359486803, 50.715134539454503 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131650423054164, 50.715134539454503 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131740853903158, 50.712991201013622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132024906096843, 50.712991201013622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132024906096843, 50.713171065086364 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131757474589488, 50.715118606686367 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132041539310511, 50.714938742613626 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132119980309292, 50.714163619077254 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132119980309292, 50.714343483149996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132119980309292, 50.714523347222737 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132404040290707, 50.714343483149996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130121907185163, 50.714678087736367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130405968273442, 50.714678087736367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130690029361721, 50.714678087736367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130690029361721, 50.714857951809108 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130974090450001, 50.714498223663625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130974090450001, 50.714678087736367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.130974090450001, 50.714857951809108 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13125815153828, 50.714498223663625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13125815153828, 50.714678087736367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131542212626559, 50.714318359590884 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131542212626559, 50.714498223663625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131542212626559, 50.714678087736367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131826273714838, 50.714318359590884 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.131826273714838, 50.714498223663625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1321131831, 50.715660308850005 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13233774235, 50.711221678949997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130428030166994, 50.715557596027253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130712097727995, 50.715557596027253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130712097727995, 50.715737460099994 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130996165288997, 50.715557596027253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.130996165288997, 50.715737460099994 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131280232849999, 50.715557596027253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131280232849999, 50.715737460099994 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131564300411001, 50.715557596027253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131564300411001, 50.715737460099994 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131848367972003, 50.715377731954511 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131848367972003, 50.715557596027253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131848367972003, 50.715737460099994 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.131848367972003, 50.715917324172736 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132132435533005, 50.715917324172736 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132132435533005, 50.716097188245477 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1317959167, 50.713549809413628 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1317959167, 50.71372967348637 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.128609366250596, 50.714474158109105 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129177481433731, 50.714654022181847 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129745596616867, 50.714474158109105 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130029654208434, 50.714294294036364 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130313711800002, 50.714294294036364 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13059776939157, 50.714114429963622 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130881826983138, 50.714114429963622 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131165884574705, 50.713934565890881 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131449942166273, 50.713754701818139 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131449942166273, 50.713934565890881 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132018057349408, 50.713754701818139 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1321280271, 50.715413011449996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130910091135053, 50.714987846436365 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.130910091135053, 50.715167710509107 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131194154167527, 50.714987846436365 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131194154167527, 50.715167710509107 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1314782172, 50.714987846436365 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131762280232473, 50.714807982363624 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131762280232473, 50.714987846436365 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132046343264946, 50.714807982363624 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131175539420492, 50.714080039549998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131459598149999, 50.714080039549998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.131743656879507, 50.714080039549998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132027715609014, 50.713900175477256 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.129755838262431, 50.714796372809104 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130039898034323, 50.714616508736363 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130323957806215, 50.714436644663621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130608017578107, 50.714436644663621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.130608017578107, 50.714976236881846 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13089207735, 50.71425678059088 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131176137121892, 50.71425678059088 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131460196893784, 50.71425678059088 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131460196893784, 50.714796372809104 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131744256665676, 50.71425678059088 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.131744256665676, 50.714616508736363 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132028316437568, 50.71425678059088 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132028316437568, 50.714436644663621 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132028316437568, 50.714616508736363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132194414283392, 50.712760198854511 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132194414283392, 50.712940062927252 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132194414283392, 50.713119927 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132194414283392, 50.713299791072735 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132194414283392, 50.713479655145477 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132478465916608, 50.712940062927252 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132478465916608, 50.713119927 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1326717175, 50.710076465650005 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13296006465, 50.714690308450002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13346136555, 50.710788801050001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132096163798512, 50.713674340609167 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132380205591049, 50.713314612463684 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132380205591049, 50.713494476536425 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132380205591049, 50.713674340609167 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132664247383585, 50.713134748390942 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132664247383585, 50.713314612463684 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132664247383585, 50.713494476536425 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132948289176121, 50.712954884318201 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132948289176121, 50.713134748390942 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132948289176121, 50.713314612463684 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132948289176121, 50.713494476536425 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133232330968657, 50.712954884318201 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133232330968657, 50.713134748390942 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133516372761194, 50.712775020245459 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133516372761194, 50.712954884318201 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13380041455373, 50.712595156172718 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13380041455373, 50.712775020245459 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134084456346266, 50.712415292099976 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134084456346266, 50.712595156172718 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134368498138802, 50.712055563954493 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134368498138802, 50.712235428027235 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134368498138802, 50.712415292099976 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134652539931339, 50.711875699881752 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134652539931339, 50.712055563954493 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134652539931339, 50.712235428027235 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134936581723875, 50.71169583580901 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134936581723875, 50.711875699881752 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134936581723875, 50.712055563954493 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135220623516411, 50.711515971736269 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135220623516411, 50.71169583580901 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135220623516411, 50.711875699881752 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135504665308948, 50.711156243590786 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135504665308948, 50.711336107663527 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135504665308948, 50.711515971736269 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135504665308948, 50.71169583580901 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135788707101484, 50.711336107663527 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135788707101484, 50.711515971736269 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132222790379821, 50.714064274536355 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132222790379821, 50.71460386675458 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132222790379821, 50.714783730827321 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132506844253213, 50.714064274536355 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132506844253213, 50.714244138609097 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132506844253213, 50.714424002681838 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132506844253213, 50.71460386675458 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132790898126606, 50.714064274536355 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.132790898126606, 50.714424002681838 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133074952, 50.713884410463614 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133074952, 50.714424002681838 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133074952, 50.71460386675458 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133359005873391, 50.713704546390872 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133359005873391, 50.714244138609097 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133643059746784, 50.71352468231813 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133643059746784, 50.714064274536355 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.133927113620176, 50.713884410463614 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133923473054996, 50.712254367313626 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132212405659193, 50.715887157413597 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132212405659193, 50.716067021486339 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132496467569395, 50.715707293340856 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132496467569395, 50.715887157413597 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132496467569395, 50.716067021486339 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132780529479597, 50.715527429268114 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132780529479597, 50.715707293340856 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132780529479597, 50.715887157413597 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.132780529479597, 50.716067021486339 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133064591389799, 50.715347565195373 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133064591389799, 50.715527429268114 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133064591389799, 50.715707293340856 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133064591389799, 50.715887157413597 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133064591389799, 50.716067021486339 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133348653300001, 50.715167701122631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133348653300001, 50.715347565195373 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133348653300001, 50.715527429268114 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133348653300001, 50.715707293340856 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133348653300001, 50.715887157413597 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133348653300001, 50.716067021486339 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133632715210203, 50.71498783704989 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133632715210203, 50.715167701122631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133632715210203, 50.715347565195373 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133632715210203, 50.715527429268114 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133632715210203, 50.715707293340856 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133632715210203, 50.715887157413597 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133916777120406, 50.714807972977148 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133916777120406, 50.71498783704989 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133916777120406, 50.715167701122631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133916777120406, 50.715347565195373 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133916777120406, 50.715527429268114 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.133916777120406, 50.715707293340856 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134200839030608, 50.714628108904407 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134200839030608, 50.714807972977148 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134200839030608, 50.71498783704989 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134200839030608, 50.715167701122631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134200839030608, 50.715347565195373 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13448490094081, 50.714448244831665 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13448490094081, 50.714628108904407 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13448490094081, 50.714807972977148 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132131499406874, 50.714909876540943 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132415551939062, 50.714730012468202 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132415551939062, 50.714909876540943 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132415551939062, 50.715089740613685 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132415551939062, 50.715269604686426 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132415551939062, 50.715449468759168 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132699604471249, 50.71455014839546 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132699604471249, 50.714730012468202 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132699604471249, 50.714909876540943 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132983657003436, 50.71455014839546 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132983657003436, 50.714730012468202 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133267709535623, 50.714370284322719 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133267709535623, 50.71455014839546 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13355176206781, 50.714190420249977 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13355176206781, 50.714370284322719 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133835814599998, 50.714010556177236 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133835814599998, 50.714190420249977 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134119867132185, 50.713830692104494 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134119867132185, 50.714010556177236 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134403919664372, 50.713650828031753 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134403919664372, 50.713830692104494 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134687972196559, 50.713470963959011 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134687972196559, 50.713650828031753 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134972024728746, 50.71329109988627 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134972024728746, 50.713470963959011 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135256077260934, 50.713111235813528 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135256077260934, 50.71329109988627 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135540129793121, 50.712931371740787 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135540129793121, 50.713111235813528 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132213998540999, 50.715062608454566 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132213998540999, 50.715242472527308 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132213998540999, 50.715422336600049 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132213998540999, 50.715602200672791 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1324980523175, 50.715422336600049 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1324980523175, 50.715602200672791 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132782106094, 50.715062608454566 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.132782106094, 50.715242472527308 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1330661598705, 50.714882744381825 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1330661598705, 50.715062608454566 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1330661598705, 50.715242472527308 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133350213647001, 50.714702880309083 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133350213647001, 50.714882744381825 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133350213647001, 50.715062608454566 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133634267423501, 50.714523016236342 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133634267423501, 50.714702880309083 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133634267423501, 50.714882744381825 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133918321200001, 50.7143431521636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133918321200001, 50.714523016236342 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.133918321200001, 50.714702880309083 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134202374976502, 50.714163288090859 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134202374976502, 50.7143431521636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134486428753002, 50.713983424018117 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134486428753002, 50.714163288090859 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134486428753002, 50.7143431521636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134770482529502, 50.713803559945376 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134770482529502, 50.713983424018117 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.134770482529502, 50.714163288090859 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135054536306003, 50.713623695872634 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135054536306003, 50.713803559945376 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135054536306003, 50.713983424018117 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135054536306003, 50.714163288090859 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135338590082503, 50.713443831799893 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135338590082503, 50.713623695872634 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135338590082503, 50.713803559945376 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135338590082503, 50.713983424018117 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135622643859003, 50.713263967727151 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135622643859003, 50.713443831799893 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135622643859003, 50.713623695872634 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.135622643859003, 50.713803559945376 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13655858065, 50.7106683859 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132131075543223, 50.713770765300055 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132415120267342, 50.713770765300055 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132415120267342, 50.713950629372796 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132699164991461, 50.713770765300055 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.132699164991461, 50.713950629372796 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13298320971558, 50.713590901227313 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13298320971558, 50.713770765300055 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1332672544397, 50.713411037154572 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1332672544397, 50.713590901227313 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133551299163819, 50.713051309009089 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133551299163819, 50.71323117308183 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133551299163819, 50.713411037154572 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133835343887938, 50.712871444936347 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133835343887938, 50.713051309009089 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.133835343887938, 50.71323117308183 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134119388612057, 50.712871444936347 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134403433336177, 50.712511716790864 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134403433336177, 50.712691580863606 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134687478060296, 50.712331852718123 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134687478060296, 50.712511716790864 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134971522784415, 50.712151988645381 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.134971522784415, 50.712331852718123 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135255567508534, 50.71197212457264 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135255567508534, 50.712151988645381 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135539612232654, 50.711792260499898 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135539612232654, 50.71197212457264 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135823656956773, 50.711612396427157 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135823656956773, 50.711792260499898 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135823656956773, 50.71197212457264 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132693146568481, 50.714135813600052 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132977193507068, 50.714135813600052 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.132977193507068, 50.714315677672793 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133261240445655, 50.71395594952731 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133261240445655, 50.714135813600052 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133545287384242, 50.713776085454569 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133545287384242, 50.71395594952731 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133829334322829, 50.713416357309086 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133829334322829, 50.713596221381827 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.133829334322829, 50.713776085454569 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134113381261415, 50.713236493236344 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134113381261415, 50.713416357309086 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134113381261415, 50.713596221381827 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134397428200002, 50.713056629163603 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134397428200002, 50.713236493236344 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134397428200002, 50.713416357309086 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134681475138589, 50.712876765090861 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134681475138589, 50.713056629163603 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134681475138589, 50.713236493236344 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134965522077176, 50.71269690101812 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134965522077176, 50.712876765090861 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.134965522077176, 50.713056629163603 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135249569015763, 50.712517036945378 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135249569015763, 50.71269690101812 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135249569015763, 50.712876765090861 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13553361595435, 50.712337172872637 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13553361595435, 50.712517036945378 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13553361595435, 50.71269690101812 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135817662892937, 50.712337172872637 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.135817662892937, 50.712517036945378 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136101709831524, 50.712157308799895 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136101709831524, 50.712337172872637 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.13645611325, 50.713748234500002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136953947, 50.710336264049999 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1373775084, 50.710003795299997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134117791212765, 50.713772801236431 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134401835835638, 50.713592937163689 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13468588045851, 50.713413073090948 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134969925081382, 50.713233209018206 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135253969704254, 50.713053344945465 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135538014327127, 50.712873480872723 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135822058949999, 50.712693616799982 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136106103572871, 50.71251375272724 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136390148195743, 50.712333888654499 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136674192818615, 50.712154024581757 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136958237441488, 50.711974160509016 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13724228206436, 50.711794296436274 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137526326687232, 50.711614432363533 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137526326687232, 50.711794296436274 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134139186739175, 50.713057884000051 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134423227274313, 50.712878019927309 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134707267809451, 50.712698155854568 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.134991308344588, 50.712518291781826 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135275348879726, 50.712338427709085 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135559389414864, 50.712158563636343 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.135843429950001, 50.711978699563602 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136127470485139, 50.711978699563602 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136411511020277, 50.71179883549086 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136695551555414, 50.711618971418119 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.136979592090552, 50.711439107345377 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13726363262569, 50.711259243272636 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137547673160827, 50.711079379199894 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13752917945, 50.710123953749999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135900450577055, 50.711680283440948 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135900450577055, 50.71186014751369 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136184485583611, 50.711500419368207 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136184485583611, 50.711680283440948 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136468520590166, 50.711320555295465 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136468520590166, 50.711500419368207 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136752555596722, 50.710780963077241 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136752555596722, 50.710960827149982 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136752555596722, 50.711140691222724 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136752555596722, 50.711320555295465 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137036590603278, 50.710780963077241 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137036590603278, 50.710960827149982 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137036590603278, 50.711140691222724 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137320625609833, 50.710601099004499 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137320625609833, 50.710780963077241 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137320625609833, 50.710960827149982 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137604660616389, 50.710601099004499 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137604660616389, 50.710780963077241 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137888695622944, 50.710601099004499 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13793432665, 50.710762629849995 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137919849499999, 50.71017829625 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13807228445, 50.710334266299995 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138240582377347, 50.71081221366363 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138524622322654, 50.71081221366363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134787256198985, 50.714386368749793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134787256198985, 50.714566232822534 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.134787256198985, 50.714746096895276 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135071314124154, 50.714206504677051 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135071314124154, 50.714386368749793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135071314124154, 50.714566232822534 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135355372049323, 50.714206504677051 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135355372049323, 50.714386368749793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135639429974493, 50.71402664060431 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135639429974493, 50.714206504677051 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135639429974493, 50.714386368749793 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135923487899662, 50.71402664060431 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.135923487899662, 50.714206504677051 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136207545824831, 50.713846776531568 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136207545824831, 50.71402664060431 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136207545824831, 50.714206504677051 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136491603750001, 50.713846776531568 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.136491603750001, 50.71402664060431 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.13823550025, 50.710058623050003 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13867430635, 50.711218440050004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138769371, 50.711779487813629 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138769371, 50.711959351886371 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135582063010233, 50.713015675818205 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.135866106158527, 50.712835811745464 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136150149306822, 50.712655947672722 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136434192455116, 50.712476083599981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136434192455116, 50.712655947672722 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136718235603411, 50.712296219527239 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.136718235603411, 50.712476083599981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137002278751705, 50.712116355454498 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137002278751705, 50.712296219527239 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137002278751705, 50.712476083599981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1372863219, 50.711936491381756 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1372863219, 50.712116355454498 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1372863219, 50.712296219527239 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137570365048294, 50.711936491381756 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137570365048294, 50.712116355454498 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137570365048294, 50.712296219527239 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137854408196588, 50.711756627309015 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137854408196588, 50.711936491381756 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137854408196588, 50.712116355454498 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.137854408196588, 50.712296219527239 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138138451344883, 50.711576763236273 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138138451344883, 50.711756627309015 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138138451344883, 50.711936491381756 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138138451344883, 50.712116355454498 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138138451344883, 50.712296219527239 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138138451344883, 50.712476083599981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138422494493177, 50.711576763236273 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138422494493177, 50.711756627309015 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138422494493177, 50.711936491381756 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138422494493177, 50.712116355454498 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138422494493177, 50.712296219527239 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138422494493177, 50.712476083599981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138422494493177, 50.712655947672722 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138422494493177, 50.712835811745464 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138422494493177, 50.713015675818205 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138706537641472, 50.711576763236273 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138706537641472, 50.711756627309015 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138706537641472, 50.712116355454498 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138706537641472, 50.712296219527239 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138706537641472, 50.712476083599981 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138706537641472, 50.712655947672722 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138706537641472, 50.712835811745464 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138990580789766, 50.712655947672722 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137316429361761, 50.710002109790885 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137600464320587, 50.710002109790885 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137600464320587, 50.710181973863627 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137884499279413, 50.710002109790885 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137884499279413, 50.710181973863627 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137884499279413, 50.710361837936368 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137884499279413, 50.71054170200911 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138168534238239, 50.710361837936368 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13836136995, 50.710861978 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1383802053, 50.710182928699993 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13579843456086, 50.713125347599792 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13579843456086, 50.713305211672534 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13579843456086, 50.713485075745275 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13579843456086, 50.713664939818017 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.13579843456086, 50.713844803890758 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136082484025717, 50.712945483527051 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136082484025717, 50.713125347599792 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136082484025717, 50.713305211672534 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136082484025717, 50.713485075745275 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136082484025717, 50.713664939818017 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136366533490574, 50.712765619454309 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136366533490574, 50.712945483527051 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136366533490574, 50.713125347599792 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136366533490574, 50.713305211672534 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136366533490574, 50.713485075745275 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136366533490574, 50.713664939818017 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136650582955431, 50.712765619454309 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136650582955431, 50.712945483527051 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136650582955431, 50.713125347599792 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136650582955431, 50.713305211672534 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136650582955431, 50.713485075745275 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136650582955431, 50.713664939818017 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136650582955431, 50.713844803890758 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136934632420288, 50.712585755381568 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136934632420288, 50.712765619454309 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136934632420288, 50.712945483527051 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136934632420288, 50.713125347599792 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136934632420288, 50.713305211672534 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136934632420288, 50.713485075745275 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136934632420288, 50.713664939818017 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.136934632420288, 50.713844803890758 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137218681885145, 50.712585755381568 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137218681885145, 50.712765619454309 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137218681885145, 50.712945483527051 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137218681885145, 50.713125347599792 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137218681885145, 50.713305211672534 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137218681885145, 50.713485075745275 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137218681885145, 50.713664939818017 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137502731350001, 50.712405891308826 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137502731350001, 50.712585755381568 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137502731350001, 50.712765619454309 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137502731350001, 50.712945483527051 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137502731350001, 50.713125347599792 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137502731350001, 50.713305211672534 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137502731350001, 50.713485075745275 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137786780814858, 50.712405891308826 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137786780814858, 50.712585755381568 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137786780814858, 50.712765619454309 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137786780814858, 50.712945483527051 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137786780814858, 50.713125347599792 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137786780814858, 50.713305211672534 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.137786780814858, 50.713485075745275 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138070830279715, 50.712585755381568 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138070830279715, 50.712765619454309 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138070830279715, 50.712945483527051 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138070830279715, 50.713125347599792 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138070830279715, 50.713305211672534 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138354879744572, 50.712945483527051 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.138354879744572, 50.713125347599792 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138735451863329, 50.709988045913626 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.138735451863329, 50.710167909986367 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139019486736672, 50.709988045913626 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139303521610015, 50.709988045913626 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136204604894731, 50.712066795413691 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136204604894731, 50.712246659486432 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136488640245609, 50.711886931340949 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136488640245609, 50.712066795413691 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136772675596488, 50.711707067268208 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.136772675596488, 50.711886931340949 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137056710947366, 50.711527203195466 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137056710947366, 50.711707067268208 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137340746298245, 50.711347339122725 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137340746298245, 50.711527203195466 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137624781649123, 50.711347339122725 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137624781649123, 50.711527203195466 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137908817, 50.710987610977242 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137908817, 50.711167475049983 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.137908817, 50.711347339122725 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13819285235088, 50.7108077469045 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13819285235088, 50.710987610977242 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13819285235088, 50.711167475049983 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138760923052637, 50.710627882831758 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138760923052637, 50.7108077469045 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139044958403515, 50.710627882831758 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139328993754393, 50.710448018759017 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139613029105272, 50.710088290613534 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139613029105272, 50.710268154686275 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137687275658863, 50.711551459099979 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137971312527759, 50.711371595027238 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137971312527759, 50.711551459099979 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138255349396655, 50.711371595027238 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138539386265551, 50.711191730954496 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138823423134447, 50.711011866881755 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138823423134447, 50.711191730954496 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139107460003343, 50.710652138736272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139107460003343, 50.710832002809013 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139107460003343, 50.711011866881755 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139107460003343, 50.711191730954496 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139107460003343, 50.712091051318204 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139107460003343, 50.712450779463687 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139391496872239, 50.710652138736272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139391496872239, 50.710832002809013 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139391496872239, 50.711011866881755 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139391496872239, 50.711191730954496 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139391496872239, 50.711371595027238 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139675533741135, 50.71047227466353 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139675533741135, 50.710652138736272 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139675533741135, 50.710832002809013 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139675533741135, 50.711011866881755 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139675533741135, 50.711191730954496 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139675533741135, 50.711371595027238 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139675533741135, 50.711551459099979 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137728586912742, 50.710742065022735 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137728586912742, 50.710921929095477 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.137728586912742, 50.711101793168218 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138012621767644, 50.710562200949994 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138012621767644, 50.710742065022735 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138296656622547, 50.710022608731769 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138296656622547, 50.710202472804511 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138296656622547, 50.710382336877252 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138296656622547, 50.710562200949994 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13858069147745, 50.710202472804511 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13858069147745, 50.710382336877252 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13858069147745, 50.710562200949994 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138864726332352, 50.710202472804511 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.138864726332352, 50.710382336877252 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139148761187255, 50.710202472804511 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139148761187255, 50.710382336877252 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139432796042158, 50.710022608731769 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139432796042158, 50.710202472804511 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13980772728556, 50.710203532013622 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13980772728556, 50.710383396086364 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.13980772728556, 50.710563260159105 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.140091762114441, 50.710023667940881 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139635254678847, 50.710187274349998 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139635254678847, 50.71036713842274 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1410203154, 50.710755061900002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138869883087958, 50.711335969299896 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138869883087958, 50.711695697445379 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139153925193979, 50.712055425590862 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139437967299999, 50.711515833372637 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.13972200940602, 50.71187556151812 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.138762667882514, 50.711500207572648 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139046710888343, 50.711500207572648 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139046710888343, 50.711680071645389 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139046710888343, 50.711859935718131 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139330753894172, 50.711680071645389 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139330753894172, 50.711859935718131 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139330753894172, 50.712039799790873 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139330753894172, 50.712219663863614 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139614796900001, 50.712039799790873 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.139614796900001, 50.712219663863614 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14084196055, 50.710694366150001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141062125199999, 50.71072312015 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139823105305803, 50.71069430468166 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139823105305803, 50.710874168754401 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139823105305803, 50.711054032827143 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139823105305803, 50.711233896899884 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140107140083482, 50.710154712463435 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140107140083482, 50.710334576536177 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140107140083482, 50.710514440608918 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140107140083482, 50.71069430468166 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140107140083482, 50.710874168754401 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140107140083482, 50.711054032827143 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140107140083482, 50.711233896899884 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140107140083482, 50.711413760972626 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140107140083482, 50.711593625045367 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140107140083482, 50.711773489118109 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140391174861161, 50.709974848390694 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140391174861161, 50.710154712463435 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140391174861161, 50.710334576536177 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140391174861161, 50.710514440608918 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140391174861161, 50.71069430468166 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140391174861161, 50.710874168754401 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140391174861161, 50.711054032827143 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140391174861161, 50.711233896899884 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140391174861161, 50.711413760972626 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140391174861161, 50.711593625045367 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.140391174861161, 50.711773489118109 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14067520963884, 50.709974848390694 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14067520963884, 50.710874168754401 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14067520963884, 50.711054032827143 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14067520963884, 50.711233896899884 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14067520963884, 50.711413760972626 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.14067520963884, 50.711593625045367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140673152989123, 50.710180920709021 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140673152989123, 50.710360784781763 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140673152989123, 50.710540648854504 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140673152989123, 50.710720512927246 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.140673152989123, 50.71126010514547 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14095718775, 50.71000105663628 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14095718775, 50.710180920709021 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14095718775, 50.710360784781763 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14095718775, 50.710540648854504 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14095718775, 50.710720512927246 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14095718775, 50.710900376999987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14095718775, 50.711080241072729 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.14095718775, 50.71126010514547 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141241222510876, 50.71000105663628 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141241222510876, 50.710180920709021 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141241222510876, 50.710360784781763 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141241222510876, 50.710540648854504 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141241222510876, 50.710720512927246 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141241222510876, 50.710900376999987 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141241222510876, 50.711080241072729 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141241222510876, 50.71126010514547 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141630660600001, 50.709998357499998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.139110328649694, 50.712142011463435 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141720708606076, 50.710925781572449 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.141720708606076, 50.711105645645191 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139839401829096, 50.71132541548608 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139839401829096, 50.711505279558821 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.139839401829096, 50.711685143631563 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141678709810773, 50.710088793208918 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141678709810773, 50.710268657281659 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141678709810773, 50.710448521354401 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141678709810773, 50.710628385427142 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141962744418619, 50.710088793208918 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141962744418619, 50.710268657281659 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141962744418619, 50.710448521354401 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141962744418619, 50.710628385427142 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141962744418619, 50.710808249499884 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.141962744418619, 50.710988113572625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142246779026464, 50.710088793208918 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142246779026464, 50.710268657281659 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142246779026464, 50.710448521354401 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142246779026464, 50.710988113572625 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142530813634309, 50.710088793208918 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142530813634309, 50.710268657281659 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142530813634309, 50.710628385427142 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142530813634309, 50.710808249499884 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142814848242154, 50.710088793208918 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142814848242154, 50.710268657281659 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142814848242154, 50.710448521354401 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.142814848242154, 50.710628385427142 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143098882849999, 50.710088793208918 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143098882849999, 50.710268657281659 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143098882849999, 50.710448521354401 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143382917457845, 50.710088793208918 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143382917457845, 50.710268657281659 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143382917457845, 50.710448521354401 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14366695206569, 50.710088793208918 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.14366695206569, 50.710268657281659 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143950986673535, 50.710088793208918 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.143950986673535, 50.710268657281659 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1153884028, 50.720972631350001 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.11553343325, 50.720827608850001 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115665372500001, 50.720691506099996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115223848597925, 50.719663817850005 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.11512185705, 50.719271566849997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.11580364265, 50.72055976155 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.11664751095, 50.71970657995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1152017151, 50.720435348063624 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11487167645, 50.719768598549997 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11487146305, 50.719759610849998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.114906324, 50.719736803 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.11496539505, 50.7225454517 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115003503500001, 50.720544881150005 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.114907955054417, 50.72277694 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115095105337423, 50.721042501304503 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115095105337423, 50.721222365377244 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115095105337423, 50.721402229449986 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115379204762372, 50.72068277315902 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115544486240423, 50.720506771736368 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115828583459577, 50.720326907663626 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1159785123, 50.7201805845 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115167836328038, 50.719848032363622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115451929800001, 50.719848032363622 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115451929800001, 50.720027896436363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115736023271964, 50.71966816829088 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115736023271964, 50.719848032363622 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116363964931644, 50.720108078686366 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116648059868355, 50.719928214613624 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.114945809743239, 50.721669763704575 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.114945809743239, 50.721849627777317 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115229904547746, 50.720590579268126 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115229904547746, 50.720950307413609 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115229904547746, 50.721310035559092 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115229904547746, 50.721489899631834 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115513999352253, 50.720410715195385 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115513999352253, 50.720590579268126 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115513999352253, 50.720950307413609 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115513999352253, 50.721130171486351 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11579809415676, 50.720230851122643 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11579809415676, 50.720410715195385 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11579809415676, 50.720770443340868 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116082188961268, 50.720230851122643 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116082188961268, 50.720410715195385 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1161107691, 50.720084925850003 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11619411395, 50.719998661550001 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.116309342907362, 50.7192268923 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.116593433592638, 50.7192268923 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1167910117, 50.719808649249998 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1167867371, 50.719584025300001 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116923265800001, 50.719699440300005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115386032252368, 50.720246294745479 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115670125050789, 50.720066430672738 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11595421784921, 50.719526838454513 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11595421784921, 50.719886566599996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115932120891402, 50.720417931736371 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116216217708598, 50.72023806766363 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115133151868102, 50.722313332963687 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115417249228735, 50.721953604818204 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115417249228735, 50.722133468890945 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115417249228735, 50.722313332963687 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115417249228735, 50.722493197036428 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115701346589368, 50.721414012599979 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115701346589368, 50.721593876672721 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115701346589368, 50.721773740745462 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115701346589368, 50.721953604818204 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115701346589368, 50.722133468890945 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115701346589368, 50.722313332963687 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115701346589368, 50.722493197036428 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115985443950001, 50.721054284454496 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115985443950001, 50.721234148527238 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115985443950001, 50.721414012599979 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115985443950001, 50.721593876672721 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115985443950001, 50.721773740745462 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.115985443950001, 50.721953604818204 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116269541310634, 50.721054284454496 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116269541310634, 50.721234148527238 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116269541310634, 50.721414012599979 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116269541310634, 50.721593876672721 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116553638671268, 50.720514692236272 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116553638671268, 50.720694556309013 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116553638671268, 50.720874420381755 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116553638671268, 50.721054284454496 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116553638671268, 50.721234148527238 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116837736031901, 50.720514692236272 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116837736031901, 50.720694556309013 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.116837736031901, 50.720874420381755 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117121833392534, 50.72033482816353 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.114954262173191, 50.719349099227252 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.114954262173191, 50.719528963299993 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115238352795136, 50.719349099227252 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115238352795136, 50.719528963299993 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115522443417081, 50.719349099227252 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.115522443417081, 50.719528963299993 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116090624660972, 50.71916923515451 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116090624660972, 50.719349099227252 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116374715282917, 50.719349099227252 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116658805904862, 50.719349099227252 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116942896526807, 50.71916923515451 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.116942896526807, 50.719349099227252 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117226987148753, 50.71916923515451 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117226987148753, 50.719349099227252 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117511077770698, 50.71916923515451 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.117795168392643, 50.71916923515451 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.117432948937455, 50.719983560259102 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1177170402, 50.719803696186361 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1177170402, 50.719983560259102 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118001131462544, 50.719443968040878 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118001131462544, 50.719623832113619 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118001131462544, 50.719803696186361 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118001131462544, 50.719983560259102 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.115708736664986, 50.719535728290872 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116276917882494, 50.719535728290872 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116276917882494, 50.719715592363613 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116276917882494, 50.719895456436355 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116276917882494, 50.720075320509096 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116276917882494, 50.720255184581838 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116561008491248, 50.719535728290872 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116561008491248, 50.719715592363613 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116561008491248, 50.719895456436355 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116561008491248, 50.720075320509096 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116845099100002, 50.719535728290872 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116845099100002, 50.719715592363613 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.116845099100002, 50.719895456436355 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117129189708756, 50.719535728290872 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117129189708756, 50.719715592363613 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11741328031751, 50.71935586421813 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.11741328031751, 50.719535728290872 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117697370926264, 50.71935586421813 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.117981461535018, 50.719176000145389 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115116903603975, 50.721826000136424 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115116903603975, 50.722005864209166 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115400994703092, 50.721466271990941 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115400994703092, 50.721646136063683 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115400994703092, 50.721826000136424 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115685085802208, 50.721106543845458 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115685085802208, 50.7212864079182 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115969176901324, 50.720746815699975 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.115969176901324, 50.720926679772717 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116253268000441, 50.720566951627234 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116253268000441, 50.720746815699975 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116537359099557, 50.720387087554492 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116821450198674, 50.720027359409009 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.116821450198674, 50.720207223481751 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11710554129779, 50.719847495336268 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11710554129779, 50.720027359409009 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.11710554129779, 50.720207223481751 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117389632396907, 50.719667631263526 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117389632396907, 50.719847495336268 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117673723496023, 50.719487767190785 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117673723496023, 50.719667631263526 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.117957814595139, 50.719307903118043 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1180931306, 50.719193849549995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118061358762258, 50.719387730577253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118061358762258, 50.719567594649995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118345449320753, 50.719207866504512 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118345449320753, 50.719387730577253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118345449320753, 50.719567594649995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118345449320753, 50.719747458722736 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118629539879247, 50.719567594649995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118629539879247, 50.719747458722736 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118629539879247, 50.719927322795478 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118913630437742, 50.719207866504512 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.118913630437742, 50.719387730577253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.12152622555, 50.719160789900002 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121625757449999, 50.719159904199998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121665512461113, 50.719120912477258 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121665512461113, 50.71930077655 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121949602838887, 50.719120912477258 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121949602838887, 50.71930077655 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.121949602838887, 50.719480640622741 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121660365254298, 50.719352333863625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121660365254298, 50.719532197936367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.121944456745702, 50.719532197936367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121414498756944, 50.719321366677256 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121414498756944, 50.719501230749998 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.121698590249999, 50.719681094822739 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16832062785, 50.688809911836373 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1651566641, 50.69126900038637 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1655421373, 50.690770806849997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.164423838165872, 50.691706486186369 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.164707761334128, 50.691526622113628 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1649551798, 50.691356306649993 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16488911095, 50.691496462399996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.165173032679967, 50.691316598327255 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16535692155, 50.691019734 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.164238327065593, 50.691542416559102 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.164238327065593, 50.691722280631843 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.164806165049999, 50.69136255248636 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1655718833, 50.690788640449995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1657549292, 50.691375414800007 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1658421009, 50.690628385250001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.168405241467605, 50.689255505436371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.165698470824355, 50.690641993736371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.165983640749999, 50.690312121449999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1660438017, 50.690316204763626 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.166184044567377, 50.691129437613625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16587633708702, 50.69127826998637 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.166487489850001, 50.690806555113625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16652336863315, 50.689954864086374 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.166807281066848, 50.689775000013633 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.16703398515, 50.69040520795 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.167093881883169, 50.690209820322742 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.167149699, 50.689329649513624 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.167149699, 50.689509513586366 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.167433607699971, 50.689149785440883 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.167174711133141, 50.690218468086364 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.167458625166859, 50.690038604013623 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.168062754799999, 50.689064429663624 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.168062754799999, 50.689244293736365 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.166320026786305, 50.689723511645475 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.166603933693152, 50.689723511645475 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1668878406, 50.689183919427251 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1668878406, 50.689363783499992 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1668878406, 50.689543647572734 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.167455654413696, 50.689004055354509 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.165507756833801, 50.690923585063693 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.166075574014487, 50.69056385691821 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16635948260483, 50.690204128772727 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.166643391195173, 50.690024264699986 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.166927299785516, 50.689844400627244 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.167211208375859, 50.689484672481761 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.167495116966202, 50.68930480840902 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16517241975227, 50.6917015281728 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.165456329840655, 50.691341800027317 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16574023992904, 50.691161935954575 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16574023992904, 50.691341800027317 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.166024150017424, 50.690982071881834 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.166308060105809, 50.690622343736351 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.166308060105809, 50.690802207809092 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.166591970194194, 50.690442479663609 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.166875880282578, 50.690262615590868 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.167159790370963, 50.689902887445385 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.167443700459348, 50.689723023372643 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.167727610547733, 50.68936329522716 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.167192187439785, 50.688367170659099 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.167192187439785, 50.68854703473184 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.167476086146594, 50.688187306586357 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.167476086146594, 50.688367170659099 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.167476086146594, 50.68854703473184 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.167759984853404, 50.687827578440874 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.167759984853404, 50.688007442513616 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.167759984853404, 50.688187306586357 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.168043883560214, 50.687467850295391 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.168043883560214, 50.687647714368133 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.168083945227981, 50.689486052927258 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1679865654, 50.687194237013628 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.164933739186705, 50.691678841854639 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.165217643543668, 50.691319113709156 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.165217643543668, 50.691498977781897 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.165501547900631, 50.690959385563673 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.165501547900631, 50.691139249636414 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.165785452257595, 50.690959385563673 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.166069356614558, 50.69059965741819 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.166069356614558, 50.690779521490931 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.166353260971521, 50.690419793345448 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.166637165328484, 50.690060065199965 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.166637165328484, 50.690239929272707 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.166921069685447, 50.689880201127224 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.16720497404241, 50.689700337054482 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.167488878399373, 50.689160744836258 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.167488878399373, 50.689340608908999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.167488878399373, 50.689520472981741 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.167772782756336, 50.688980880763516 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.167772782756336, 50.689160744836258 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.167772782756336, 50.689340608908999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1680566871133, 50.688621152618033 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.167504536660691, 50.688689801259095 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.167504536660691, 50.688869665331836 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.167504536660691, 50.689049529404578 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16778843705, 50.688330073113612 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16778843705, 50.688509937186353 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.168072337439308, 50.687790480895387 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.168072337439308, 50.687970344968129 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.168072337439308, 50.68815020904087 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16818584625, 50.688932818950001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16815443905, 50.687063222627252 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16815443905, 50.687243086699993 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16815443905, 50.687602814845476 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1682610597, 50.688176956413628 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1682610597, 50.688356820486369 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.168355929700001, 50.687501343227254 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.168355929700001, 50.687681207299995 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.168355929700001, 50.687861071372737 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.168355929700001, 50.688040935445478 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1684405519, 50.688701082500003 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.16867157375, 50.68741765915 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.167829198378877, 50.688690349600051 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.167829198378877, 50.689050077745534 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.167829198378877, 50.689229941818276 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1681130889, 50.687431301090861 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1681130889, 50.688330621454568 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1681130889, 50.688690349600051 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1681130889, 50.688870213672793 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1681130889, 50.689050077745534 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.168396979421123, 50.687071572945378 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.168396979421123, 50.687251437018119 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.168396979421123, 50.688150757381827 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.168396979421123, 50.688330621454568 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.168680869942246, 50.687071572945378 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.168470352009783, 50.688363068595478 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.168470352009783, 50.68854293266822 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.168754250190217, 50.687823476377254 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.168754250190217, 50.688003340449995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.168754250190217, 50.688183204522737 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1687716867, 50.687111698222736 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1687716867, 50.687291562295478 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.168782596850001, 50.687516323913627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.168782596850001, 50.687696187986369 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.168513730199618, 50.687152977440952 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.168767570089807, 50.688175120699995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.168767570089807, 50.688354984772737 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.169051470910192, 50.687815392554512 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.169051470910192, 50.687995256627254 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.169051470910192, 50.688175120699995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.169105184808666, 50.687141153009101 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16023182965, 50.696365944549996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.160231607849999, 50.69635695705 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1602457583, 50.6963568161 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.16025990875, 50.69635667515 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1602596869, 50.696347687650004 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1602593541, 50.69633420625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16027339365, 50.696329571549995 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.160287322249999, 50.696320443049999 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.160280912599999, 50.696347476200003 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1603150685, 50.696302186050005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1603430366, 50.696283929049997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1603077714, 50.696297762750007 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.160356965149999, 50.69627480055 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.160030257783938, 50.69619118 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1603369598, 50.696315456050002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1603224765, 50.696306609399997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.160385377, 50.696279012550001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.160385044150001, 50.696265531150004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16030577465, 50.696180360599996 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.160049199536918, 50.696847272699998 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.160049199536918, 50.697027136772739 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.160333153663084, 50.696667408627256 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.160045540371633, 50.696582843899996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.160045540371633, 50.696762707972738 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.160329492928367, 50.696582843899996 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.16039897275, 50.69625640265 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.16046187305, 50.69621532435 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.160524329499999, 50.696174246049999 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16045987605, 50.696165963150001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16048495200839, 50.696620991177255 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16048495200839, 50.696800855249997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.160187485786633, 50.697015471722743 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.160755394013366, 50.696835607650002 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.160738445050001, 50.695992309800005 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.160388405923883, 50.695841297213626 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1608637175, 50.696197825599995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.160619529711898, 50.695537027599997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.160903476188101, 50.695357163527255 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.160903476188101, 50.695537027599997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.160917849100001, 50.695788256599997 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.1611557396, 50.695669021100002 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.160267404897407, 50.696508670281844 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.160551352648704, 50.696148942136361 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.160551352648704, 50.696328806209102 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.1608353004, 50.695969078063619 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.161119248151297, 50.695789213990878 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.161119248151297, 50.695969078063619 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.161403195902594, 50.695609349918136 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.161403195902594, 50.695789213990878 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.160866105608013, 50.695174394022736 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1611500477, 50.694814665877253 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1611500477, 50.694994529949994 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.161433989791986, 50.694994529949994 ] } },
+{ "type": "Feature", "properties": { "dba": 75 }, "geometry": { "type": "Point", "coordinates": [ 7.16149212555, 50.695530822549998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.160954779416553, 50.695713450318216 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1612387215, 50.695173858099992 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.161522663583447, 50.694634265881767 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.161522663583447, 50.694814129954509 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.161522663583447, 50.69499399402725 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16193130325, 50.695261245 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.161623526501986, 50.69564052867274 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.161959492399999, 50.695256468949999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1619591591, 50.695243058199999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1617051008, 50.693991577977258 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1617051008, 50.694171442049999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.162003892434138, 50.695442351013625 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.162003892434138, 50.695622215086367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.161713593302012, 50.694313606286364 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.161997530997988, 50.693953878140881 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16209751415, 50.694809890750001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.162253350049999, 50.6945477692 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.161721029371871, 50.695749500636367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.16200497685, 50.695749500636367 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.162288924328128, 50.695569636563626 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16246282045, 50.694433377750002 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.162384709453193, 50.694212476250001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.162384709453193, 50.694392340322743 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.162668647546806, 50.69403261217726 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.162790366049074, 50.693995532427259 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.162535616402127, 50.69435513358637 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.162819555197874, 50.694175269513629 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.162819555197874, 50.69435513358637 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.162886013650001, 50.693804364499996 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.16299224755, 50.693821280350001 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.162579996854156, 50.693364156222735 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16286392795, 50.693004428077252 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16286392795, 50.693184292149994 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.163286038400001, 50.692811494449998 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.1633487097, 50.692770414600005 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.163411381, 50.692729334799999 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.163023481002281, 50.693711719986368 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.163307415897719, 50.693531855913626 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.162246565414415, 50.693594510495473 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.162530495638138, 50.69323478234999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.162530495638138, 50.693414646422731 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.16281442586186, 50.693054918277248 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.163098356085583, 50.692695190131765 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.163382286309306, 50.692695190131765 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.163425307900001, 50.692720205949996 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16349472, 50.692629623750001 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.16344860175, 50.692494895163627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.16344860175, 50.692674759236368 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.163622687, 50.692408085899999 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.16331951150442, 50.693708753436368 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.16360344639558, 50.693528889363627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.163779754949999, 50.693035802400004 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.163849612150001, 50.692994651649997 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16392721155, 50.692984886649995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1638576881, 50.693025839713627 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.163621325405471, 50.692465148036369 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16390525319453, 50.692285283963628 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.16403129965, 50.692039849300002 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.163753296019147, 50.692329415936371 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.164037222880853, 50.692149551863629 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1641837455, 50.692798026299997 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.165169723432397, 50.692077824799995 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.165169723432397, 50.692257688872736 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.16411223565, 50.692043650463624 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16105762458808, 50.695700046377382 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.161341551272066, 50.695340318231899 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.161625477956051, 50.694620861940933 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.161625477956051, 50.694800726013675 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.161625477956051, 50.694980590086416 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.161909404640036, 50.69426113379545 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.161909404640036, 50.694440997868192 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.162193331324021, 50.693901405649967 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.162193331324021, 50.694081269722709 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.162477258008006, 50.693721541577226 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.162761184691991, 50.693361813431743 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.163045111375976, 50.693181949359001 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.163329038059961, 50.692822221213518 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.163329038059961, 50.69300208528626 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.163612964743947, 50.692642357140777 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.163896891427932, 50.692462493068035 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1641898973, 50.691772609713631 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.1641898973, 50.691952473786372 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.164675676819954, 50.69194212515 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.164959601280047, 50.691762261077258 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.16135477418636, 50.695497957391005 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.161638699543385, 50.695138229245522 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.161638699543385, 50.695318093318264 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.161638699543385, 50.695497957391005 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.16192262490041, 50.694598637027298 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.16192262490041, 50.694778501100039 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.16192262490041, 50.694958365172781 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.16192262490041, 50.695138229245522 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.162206550257435, 50.694238908881815 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.162206550257435, 50.694418772954556 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.162490475614461, 50.693879180736332 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.162490475614461, 50.694059044809073 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.162774400971486, 50.693519452590849 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.162774400971486, 50.69369931666359 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.162774400971486, 50.693879180736332 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.163058326328511, 50.693339588518107 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.163342251685537, 50.693159724445366 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.163626177042562, 50.692799996299883 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.163910102399587, 50.692620132227141 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.164194027756612, 50.692260404081658 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.164194027756612, 50.6924402681544 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.164477953113638, 50.692080540008917 ] } },
+{ "type": "Feature", "properties": { "dba": 70 }, "geometry": { "type": "Point", "coordinates": [ 7.164477953113638, 50.692260404081658 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.164265798805399, 50.691905839086367 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.164549723294601, 50.691725975013625 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.164373029662247, 50.691976678836369 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.164656954137753, 50.691796814763627 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.164813588524536, 50.692357618513626 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16289204630754, 50.69370767136369 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.163175970755655, 50.693527807290948 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16345989520377, 50.693168079145465 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.163743819651885, 50.692988215072724 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1640277441, 50.692628486927241 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.1640277441, 50.692808350999982 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.164311668548115, 50.692448622854499 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.164879517444345, 50.691909030636275 ] } },
+{ "type": "Feature", "properties": { "dba": 65 }, "geometry": { "type": "Point", "coordinates": [ 7.16516344189246, 50.691729166563533 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.164324506161876, 50.692576751195475 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.164608431153959, 50.692396887122733 ] } },
+{ "type": "Feature", "properties": { "dba": 60 }, "geometry": { "type": "Point", "coordinates": [ 7.164892356146042, 50.69203715897725 ] } },
+{ "type": "Feature", "properties": { "dba": 55 }, "geometry": { "type": "Point", "coordinates": [ 7.16534900945, 50.691816053349996 ] } }
+]
+}
diff --git a/apps/story-map/public/icon-layer-car.png b/apps/story-map/public/icon-layer-car.png
new file mode 100644
index 00000000..e3a903c5
Binary files /dev/null and b/apps/story-map/public/icon-layer-car.png differ
diff --git a/apps/story-map/public/manifest-icon-192.maskable.png b/apps/story-map/public/manifest-icon-192.maskable.png
new file mode 100644
index 00000000..174258ed
Binary files /dev/null and b/apps/story-map/public/manifest-icon-192.maskable.png differ
diff --git a/apps/story-map/public/manifest-icon-512.maskable.png b/apps/story-map/public/manifest-icon-512.maskable.png
new file mode 100644
index 00000000..9a35f178
Binary files /dev/null and b/apps/story-map/public/manifest-icon-512.maskable.png differ
diff --git a/apps/story-map/public/manifest.json b/apps/story-map/public/manifest.json
new file mode 100644
index 00000000..ef78050e
--- /dev/null
+++ b/apps/story-map/public/manifest.json
@@ -0,0 +1,39 @@
+{
+ "short_name": "MapComponents app",
+ "name": "MapComponents + TypeScript + React App",
+ "icons": [
+ {
+ "src": "manifest-icon-192.maskable.png",
+ "sizes": "192x192",
+ "type": "image/png",
+ "purpose": "any"
+ },
+ {
+ "src": "manifest-icon-192.maskable.png",
+ "sizes": "192x192",
+ "type": "image/png",
+ "purpose": "maskable"
+ },
+ {
+ "src": "manifest-icon-512.maskable.png",
+ "sizes": "512x512",
+ "type": "image/png",
+ "purpose": "any"
+ },
+ {
+ "src": "manifest-icon-512.maskable.png",
+ "sizes": "512x512",
+ "type": "image/png",
+ "purpose": "maskable"
+ },
+ {
+ "src": "favicon.ico",
+ "sizes": "64x64 32x32 24x24 16x16",
+ "type": "image/x-icon"
+ }
+ ],
+ "start_url": ".",
+ "display": "standalone",
+ "theme_color": "#000000",
+ "background_color": "#ffffff"
+ }
\ No newline at end of file
diff --git a/apps/story-map/public/tileset/points/r.pnts b/apps/story-map/public/tileset/points/r.pnts
new file mode 100644
index 00000000..a1c4bf56
Binary files /dev/null and b/apps/story-map/public/tileset/points/r.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0.pnts b/apps/story-map/public/tileset/points/r0.pnts
new file mode 100644
index 00000000..55b5d893
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0.pnts differ
diff --git a/apps/story-map/public/tileset/points/r02.pnts b/apps/story-map/public/tileset/points/r02.pnts
new file mode 100644
index 00000000..251b32aa
Binary files /dev/null and b/apps/story-map/public/tileset/points/r02.pnts differ
diff --git a/apps/story-map/public/tileset/points/r026.pnts b/apps/story-map/public/tileset/points/r026.pnts
new file mode 100644
index 00000000..00fa2809
Binary files /dev/null and b/apps/story-map/public/tileset/points/r026.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0262.pnts b/apps/story-map/public/tileset/points/r0262.pnts
new file mode 100644
index 00000000..efec5ffd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0262.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0266.pnts b/apps/story-map/public/tileset/points/r0266.pnts
new file mode 100644
index 00000000..430d7752
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0266.pnts differ
diff --git a/apps/story-map/public/tileset/points/r02660.pnts b/apps/story-map/public/tileset/points/r02660.pnts
new file mode 100644
index 00000000..68199ae3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r02660.pnts differ
diff --git a/apps/story-map/public/tileset/points/r02662.pnts b/apps/story-map/public/tileset/points/r02662.pnts
new file mode 100644
index 00000000..5a616f8e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r02662.pnts differ
diff --git a/apps/story-map/public/tileset/points/r02663.pnts b/apps/story-map/public/tileset/points/r02663.pnts
new file mode 100644
index 00000000..2c9e3876
Binary files /dev/null and b/apps/story-map/public/tileset/points/r02663.pnts differ
diff --git a/apps/story-map/public/tileset/points/r02664.pnts b/apps/story-map/public/tileset/points/r02664.pnts
new file mode 100644
index 00000000..f9aeb2b3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r02664.pnts differ
diff --git a/apps/story-map/public/tileset/points/r02666.pnts b/apps/story-map/public/tileset/points/r02666.pnts
new file mode 100644
index 00000000..5089c9f9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r02666.pnts differ
diff --git a/apps/story-map/public/tileset/points/r02667.pnts b/apps/story-map/public/tileset/points/r02667.pnts
new file mode 100644
index 00000000..204ae41a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r02667.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06.pnts b/apps/story-map/public/tileset/points/r06.pnts
new file mode 100644
index 00000000..f512a953
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06.pnts differ
diff --git a/apps/story-map/public/tileset/points/r062.pnts b/apps/story-map/public/tileset/points/r062.pnts
new file mode 100644
index 00000000..1067fd2e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r062.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0620.pnts b/apps/story-map/public/tileset/points/r0620.pnts
new file mode 100644
index 00000000..13236d69
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0620.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0622.pnts b/apps/story-map/public/tileset/points/r0622.pnts
new file mode 100644
index 00000000..10bcc389
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0622.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06220.pnts b/apps/story-map/public/tileset/points/r06220.pnts
new file mode 100644
index 00000000..5c91d89d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06220.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06222.pnts b/apps/story-map/public/tileset/points/r06222.pnts
new file mode 100644
index 00000000..a87b24dc
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06222.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06223.pnts b/apps/story-map/public/tileset/points/r06223.pnts
new file mode 100644
index 00000000..09145fa6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06223.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06224.pnts b/apps/story-map/public/tileset/points/r06224.pnts
new file mode 100644
index 00000000..3f4825d0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06224.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06225.pnts b/apps/story-map/public/tileset/points/r06225.pnts
new file mode 100644
index 00000000..0f179158
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06225.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06226.pnts b/apps/story-map/public/tileset/points/r06226.pnts
new file mode 100644
index 00000000..5a98bf0a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06226.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06227.pnts b/apps/story-map/public/tileset/points/r06227.pnts
new file mode 100644
index 00000000..2ac0d5e0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06227.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0624.pnts b/apps/story-map/public/tileset/points/r0624.pnts
new file mode 100644
index 00000000..eeeed067
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0624.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06240.pnts b/apps/story-map/public/tileset/points/r06240.pnts
new file mode 100644
index 00000000..a7ac5d91
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06240.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06242.pnts b/apps/story-map/public/tileset/points/r06242.pnts
new file mode 100644
index 00000000..8295b938
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06242.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06244.pnts b/apps/story-map/public/tileset/points/r06244.pnts
new file mode 100644
index 00000000..9494d0a0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06244.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06246.pnts b/apps/story-map/public/tileset/points/r06246.pnts
new file mode 100644
index 00000000..827f31bb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06246.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06247.pnts b/apps/story-map/public/tileset/points/r06247.pnts
new file mode 100644
index 00000000..e5a91306
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06247.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0626.pnts b/apps/story-map/public/tileset/points/r0626.pnts
new file mode 100644
index 00000000..2e72d06c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0626.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06260.pnts b/apps/story-map/public/tileset/points/r06260.pnts
new file mode 100644
index 00000000..55f4af43
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06260.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06261.pnts b/apps/story-map/public/tileset/points/r06261.pnts
new file mode 100644
index 00000000..13fd76f3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06261.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06262.pnts b/apps/story-map/public/tileset/points/r06262.pnts
new file mode 100644
index 00000000..d49576ac
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06262.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06263.pnts b/apps/story-map/public/tileset/points/r06263.pnts
new file mode 100644
index 00000000..9b7e321e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06263.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06264.pnts b/apps/story-map/public/tileset/points/r06264.pnts
new file mode 100644
index 00000000..ed2c77a4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06264.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06265.pnts b/apps/story-map/public/tileset/points/r06265.pnts
new file mode 100644
index 00000000..ea3cf426
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06265.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06266.pnts b/apps/story-map/public/tileset/points/r06266.pnts
new file mode 100644
index 00000000..c94ce536
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06266.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06267.pnts b/apps/story-map/public/tileset/points/r06267.pnts
new file mode 100644
index 00000000..4080457d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06267.pnts differ
diff --git a/apps/story-map/public/tileset/points/r064.pnts b/apps/story-map/public/tileset/points/r064.pnts
new file mode 100644
index 00000000..6b0b1ed8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r064.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0642.pnts b/apps/story-map/public/tileset/points/r0642.pnts
new file mode 100644
index 00000000..5f419e7f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0642.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0646.pnts b/apps/story-map/public/tileset/points/r0646.pnts
new file mode 100644
index 00000000..6f3066c7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0646.pnts differ
diff --git a/apps/story-map/public/tileset/points/r066.pnts b/apps/story-map/public/tileset/points/r066.pnts
new file mode 100644
index 00000000..f7fb5e10
Binary files /dev/null and b/apps/story-map/public/tileset/points/r066.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0660.pnts b/apps/story-map/public/tileset/points/r0660.pnts
new file mode 100644
index 00000000..64cc3243
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0660.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06600.pnts b/apps/story-map/public/tileset/points/r06600.pnts
new file mode 100644
index 00000000..54dd2d10
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06600.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06601.pnts b/apps/story-map/public/tileset/points/r06601.pnts
new file mode 100644
index 00000000..cee12b0e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06601.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06602.pnts b/apps/story-map/public/tileset/points/r06602.pnts
new file mode 100644
index 00000000..4aa90624
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06602.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06603.pnts b/apps/story-map/public/tileset/points/r06603.pnts
new file mode 100644
index 00000000..aae3af9f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06603.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06604.pnts b/apps/story-map/public/tileset/points/r06604.pnts
new file mode 100644
index 00000000..4908f644
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06604.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06605.pnts b/apps/story-map/public/tileset/points/r06605.pnts
new file mode 100644
index 00000000..cb70d52f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06605.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06606.pnts b/apps/story-map/public/tileset/points/r06606.pnts
new file mode 100644
index 00000000..f9d27332
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06606.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06607.pnts b/apps/story-map/public/tileset/points/r06607.pnts
new file mode 100644
index 00000000..d936fcc7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06607.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0662.pnts b/apps/story-map/public/tileset/points/r0662.pnts
new file mode 100644
index 00000000..0e933de0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0662.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06620.pnts b/apps/story-map/public/tileset/points/r06620.pnts
new file mode 100644
index 00000000..43bb952b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06620.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06621.pnts b/apps/story-map/public/tileset/points/r06621.pnts
new file mode 100644
index 00000000..7e778a14
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06621.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06622.pnts b/apps/story-map/public/tileset/points/r06622.pnts
new file mode 100644
index 00000000..fcb98228
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06622.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06623.pnts b/apps/story-map/public/tileset/points/r06623.pnts
new file mode 100644
index 00000000..e52e068d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06623.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06624.pnts b/apps/story-map/public/tileset/points/r06624.pnts
new file mode 100644
index 00000000..7b0cceed
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06624.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06625.pnts b/apps/story-map/public/tileset/points/r06625.pnts
new file mode 100644
index 00000000..b832a81c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06625.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06626.pnts b/apps/story-map/public/tileset/points/r06626.pnts
new file mode 100644
index 00000000..616ea32b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06626.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06627.pnts b/apps/story-map/public/tileset/points/r06627.pnts
new file mode 100644
index 00000000..42e95b95
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06627.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0664.pnts b/apps/story-map/public/tileset/points/r0664.pnts
new file mode 100644
index 00000000..2db2ad8d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0664.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06640.pnts b/apps/story-map/public/tileset/points/r06640.pnts
new file mode 100644
index 00000000..9d4e9b99
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06640.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06641.pnts b/apps/story-map/public/tileset/points/r06641.pnts
new file mode 100644
index 00000000..2295aa71
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06641.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06642.pnts b/apps/story-map/public/tileset/points/r06642.pnts
new file mode 100644
index 00000000..b51b39a2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06642.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06643.pnts b/apps/story-map/public/tileset/points/r06643.pnts
new file mode 100644
index 00000000..19347c36
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06643.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06644.pnts b/apps/story-map/public/tileset/points/r06644.pnts
new file mode 100644
index 00000000..1402ff27
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06644.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06645.pnts b/apps/story-map/public/tileset/points/r06645.pnts
new file mode 100644
index 00000000..37b5a103
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06645.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06646.pnts b/apps/story-map/public/tileset/points/r06646.pnts
new file mode 100644
index 00000000..c8bd7d80
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06646.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06647.pnts b/apps/story-map/public/tileset/points/r06647.pnts
new file mode 100644
index 00000000..6fafd8d4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06647.pnts differ
diff --git a/apps/story-map/public/tileset/points/r0666.pnts b/apps/story-map/public/tileset/points/r0666.pnts
new file mode 100644
index 00000000..a5c35a71
Binary files /dev/null and b/apps/story-map/public/tileset/points/r0666.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06660.pnts b/apps/story-map/public/tileset/points/r06660.pnts
new file mode 100644
index 00000000..53ddfc15
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06660.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06661.pnts b/apps/story-map/public/tileset/points/r06661.pnts
new file mode 100644
index 00000000..c1acf7f1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06661.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06662.pnts b/apps/story-map/public/tileset/points/r06662.pnts
new file mode 100644
index 00000000..fe62080f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06662.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06663.pnts b/apps/story-map/public/tileset/points/r06663.pnts
new file mode 100644
index 00000000..504afe3e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06663.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06664.pnts b/apps/story-map/public/tileset/points/r06664.pnts
new file mode 100644
index 00000000..1e245e2e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06664.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06665.pnts b/apps/story-map/public/tileset/points/r06665.pnts
new file mode 100644
index 00000000..fa13df9b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06665.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06666.pnts b/apps/story-map/public/tileset/points/r06666.pnts
new file mode 100644
index 00000000..01155190
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06666.pnts differ
diff --git a/apps/story-map/public/tileset/points/r06667.pnts b/apps/story-map/public/tileset/points/r06667.pnts
new file mode 100644
index 00000000..dfbd2c5e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r06667.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2.pnts b/apps/story-map/public/tileset/points/r2.pnts
new file mode 100644
index 00000000..d38828f2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20.pnts b/apps/story-map/public/tileset/points/r20.pnts
new file mode 100644
index 00000000..17d95e4f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20.pnts differ
diff --git a/apps/story-map/public/tileset/points/r200.pnts b/apps/story-map/public/tileset/points/r200.pnts
new file mode 100644
index 00000000..1a617256
Binary files /dev/null and b/apps/story-map/public/tileset/points/r200.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2002.pnts b/apps/story-map/public/tileset/points/r2002.pnts
new file mode 100644
index 00000000..3a38b096
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2002.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2004.pnts b/apps/story-map/public/tileset/points/r2004.pnts
new file mode 100644
index 00000000..8202a2a6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2004.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2006.pnts b/apps/story-map/public/tileset/points/r2006.pnts
new file mode 100644
index 00000000..f5df5620
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2006.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20060.pnts b/apps/story-map/public/tileset/points/r20060.pnts
new file mode 100644
index 00000000..f05f2bad
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20060.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20061.pnts b/apps/story-map/public/tileset/points/r20061.pnts
new file mode 100644
index 00000000..3ec4d88d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20061.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20062.pnts b/apps/story-map/public/tileset/points/r20062.pnts
new file mode 100644
index 00000000..eb999618
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20062.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20063.pnts b/apps/story-map/public/tileset/points/r20063.pnts
new file mode 100644
index 00000000..5611f2fe
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20063.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20064.pnts b/apps/story-map/public/tileset/points/r20064.pnts
new file mode 100644
index 00000000..4774d852
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20064.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20065.pnts b/apps/story-map/public/tileset/points/r20065.pnts
new file mode 100644
index 00000000..7ff40b0b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20065.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20066.pnts b/apps/story-map/public/tileset/points/r20066.pnts
new file mode 100644
index 00000000..d94c8f0b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20066.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20067.pnts b/apps/story-map/public/tileset/points/r20067.pnts
new file mode 100644
index 00000000..1f03cdbe
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20067.pnts differ
diff --git a/apps/story-map/public/tileset/points/r202.pnts b/apps/story-map/public/tileset/points/r202.pnts
new file mode 100644
index 00000000..d2c003ed
Binary files /dev/null and b/apps/story-map/public/tileset/points/r202.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2020.pnts b/apps/story-map/public/tileset/points/r2020.pnts
new file mode 100644
index 00000000..5b4cd767
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2020.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2022.pnts b/apps/story-map/public/tileset/points/r2022.pnts
new file mode 100644
index 00000000..48397e52
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2022.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20220.pnts b/apps/story-map/public/tileset/points/r20220.pnts
new file mode 100644
index 00000000..9aaeaba7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20220.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20222.pnts b/apps/story-map/public/tileset/points/r20222.pnts
new file mode 100644
index 00000000..93168b14
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20222.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20223.pnts b/apps/story-map/public/tileset/points/r20223.pnts
new file mode 100644
index 00000000..65476cb1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20223.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20224.pnts b/apps/story-map/public/tileset/points/r20224.pnts
new file mode 100644
index 00000000..19b24c61
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20224.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20225.pnts b/apps/story-map/public/tileset/points/r20225.pnts
new file mode 100644
index 00000000..453e8c04
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20225.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20226.pnts b/apps/story-map/public/tileset/points/r20226.pnts
new file mode 100644
index 00000000..4368bd1f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20226.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2024.pnts b/apps/story-map/public/tileset/points/r2024.pnts
new file mode 100644
index 00000000..2a8b384b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2024.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20240.pnts b/apps/story-map/public/tileset/points/r20240.pnts
new file mode 100644
index 00000000..7aefd08d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20240.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20241.pnts b/apps/story-map/public/tileset/points/r20241.pnts
new file mode 100644
index 00000000..3eda0987
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20241.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20242.pnts b/apps/story-map/public/tileset/points/r20242.pnts
new file mode 100644
index 00000000..59d62484
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20242.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20243.pnts b/apps/story-map/public/tileset/points/r20243.pnts
new file mode 100644
index 00000000..588acffa
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20243.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20244.pnts b/apps/story-map/public/tileset/points/r20244.pnts
new file mode 100644
index 00000000..f94411f8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20244.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20245.pnts b/apps/story-map/public/tileset/points/r20245.pnts
new file mode 100644
index 00000000..43ff69e6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20245.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20246.pnts b/apps/story-map/public/tileset/points/r20246.pnts
new file mode 100644
index 00000000..4e3c1a5f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20246.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20247.pnts b/apps/story-map/public/tileset/points/r20247.pnts
new file mode 100644
index 00000000..289f52c8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20247.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2026.pnts b/apps/story-map/public/tileset/points/r2026.pnts
new file mode 100644
index 00000000..884a7c77
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2026.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20260.pnts b/apps/story-map/public/tileset/points/r20260.pnts
new file mode 100644
index 00000000..d34386db
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20260.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20261.pnts b/apps/story-map/public/tileset/points/r20261.pnts
new file mode 100644
index 00000000..c650d1c7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20261.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20262.pnts b/apps/story-map/public/tileset/points/r20262.pnts
new file mode 100644
index 00000000..235fab04
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20262.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20264.pnts b/apps/story-map/public/tileset/points/r20264.pnts
new file mode 100644
index 00000000..e7b07c80
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20264.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20265.pnts b/apps/story-map/public/tileset/points/r20265.pnts
new file mode 100644
index 00000000..8770a354
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20265.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20266.pnts b/apps/story-map/public/tileset/points/r20266.pnts
new file mode 100644
index 00000000..e29358a3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20266.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20267.pnts b/apps/story-map/public/tileset/points/r20267.pnts
new file mode 100644
index 00000000..27cbcbfa
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20267.pnts differ
diff --git a/apps/story-map/public/tileset/points/r204.pnts b/apps/story-map/public/tileset/points/r204.pnts
new file mode 100644
index 00000000..094d91e1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r204.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2040.pnts b/apps/story-map/public/tileset/points/r2040.pnts
new file mode 100644
index 00000000..320f9e8e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2040.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20400.pnts b/apps/story-map/public/tileset/points/r20400.pnts
new file mode 100644
index 00000000..c7b053b6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20400.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20401.pnts b/apps/story-map/public/tileset/points/r20401.pnts
new file mode 100644
index 00000000..eed5b51d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20401.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20402.pnts b/apps/story-map/public/tileset/points/r20402.pnts
new file mode 100644
index 00000000..06adf7fb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20402.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20403.pnts b/apps/story-map/public/tileset/points/r20403.pnts
new file mode 100644
index 00000000..ca55af26
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20403.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20404.pnts b/apps/story-map/public/tileset/points/r20404.pnts
new file mode 100644
index 00000000..6cedadc0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20404.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20406.pnts b/apps/story-map/public/tileset/points/r20406.pnts
new file mode 100644
index 00000000..a87dc087
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20406.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2042.pnts b/apps/story-map/public/tileset/points/r2042.pnts
new file mode 100644
index 00000000..09618682
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2042.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20420.pnts b/apps/story-map/public/tileset/points/r20420.pnts
new file mode 100644
index 00000000..93de4868
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20420.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20421.pnts b/apps/story-map/public/tileset/points/r20421.pnts
new file mode 100644
index 00000000..2d6f5598
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20421.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20422.pnts b/apps/story-map/public/tileset/points/r20422.pnts
new file mode 100644
index 00000000..d440ed5b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20422.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20423.pnts b/apps/story-map/public/tileset/points/r20423.pnts
new file mode 100644
index 00000000..f1858880
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20423.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20424.pnts b/apps/story-map/public/tileset/points/r20424.pnts
new file mode 100644
index 00000000..46006767
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20424.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20425.pnts b/apps/story-map/public/tileset/points/r20425.pnts
new file mode 100644
index 00000000..77419239
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20425.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20426.pnts b/apps/story-map/public/tileset/points/r20426.pnts
new file mode 100644
index 00000000..04f9d842
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20426.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20427.pnts b/apps/story-map/public/tileset/points/r20427.pnts
new file mode 100644
index 00000000..22f2b1cf
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20427.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2044.pnts b/apps/story-map/public/tileset/points/r2044.pnts
new file mode 100644
index 00000000..cbd28c67
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2044.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20440.pnts b/apps/story-map/public/tileset/points/r20440.pnts
new file mode 100644
index 00000000..33ed9f1a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20440.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20442.pnts b/apps/story-map/public/tileset/points/r20442.pnts
new file mode 100644
index 00000000..d6bb7b73
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20442.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20444.pnts b/apps/story-map/public/tileset/points/r20444.pnts
new file mode 100644
index 00000000..1d806a72
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20444.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20445.pnts b/apps/story-map/public/tileset/points/r20445.pnts
new file mode 100644
index 00000000..9a3c46bf
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20445.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20446.pnts b/apps/story-map/public/tileset/points/r20446.pnts
new file mode 100644
index 00000000..1e55766c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20446.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20447.pnts b/apps/story-map/public/tileset/points/r20447.pnts
new file mode 100644
index 00000000..ad0636e2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20447.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2046.pnts b/apps/story-map/public/tileset/points/r2046.pnts
new file mode 100644
index 00000000..d38b6da3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2046.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20460.pnts b/apps/story-map/public/tileset/points/r20460.pnts
new file mode 100644
index 00000000..a554318e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20460.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20462.pnts b/apps/story-map/public/tileset/points/r20462.pnts
new file mode 100644
index 00000000..3e117ab9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20462.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20464.pnts b/apps/story-map/public/tileset/points/r20464.pnts
new file mode 100644
index 00000000..b47683fc
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20464.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20466.pnts b/apps/story-map/public/tileset/points/r20466.pnts
new file mode 100644
index 00000000..bff1b082
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20466.pnts differ
diff --git a/apps/story-map/public/tileset/points/r206.pnts b/apps/story-map/public/tileset/points/r206.pnts
new file mode 100644
index 00000000..0bb2d8f2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r206.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2060.pnts b/apps/story-map/public/tileset/points/r2060.pnts
new file mode 100644
index 00000000..c385ded6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2060.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20600.pnts b/apps/story-map/public/tileset/points/r20600.pnts
new file mode 100644
index 00000000..c2fd23bb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20600.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20601.pnts b/apps/story-map/public/tileset/points/r20601.pnts
new file mode 100644
index 00000000..b7d9d663
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20601.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20602.pnts b/apps/story-map/public/tileset/points/r20602.pnts
new file mode 100644
index 00000000..b6d612ee
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20602.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20603.pnts b/apps/story-map/public/tileset/points/r20603.pnts
new file mode 100644
index 00000000..d7b2c825
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20603.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20604.pnts b/apps/story-map/public/tileset/points/r20604.pnts
new file mode 100644
index 00000000..baeb99a1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20604.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20606.pnts b/apps/story-map/public/tileset/points/r20606.pnts
new file mode 100644
index 00000000..68a52e44
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20606.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20607.pnts b/apps/story-map/public/tileset/points/r20607.pnts
new file mode 100644
index 00000000..fdbe0f5b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20607.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2062.pnts b/apps/story-map/public/tileset/points/r2062.pnts
new file mode 100644
index 00000000..afbd1c58
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2062.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20620.pnts b/apps/story-map/public/tileset/points/r20620.pnts
new file mode 100644
index 00000000..6c401d7b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20620.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20621.pnts b/apps/story-map/public/tileset/points/r20621.pnts
new file mode 100644
index 00000000..9346d733
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20621.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20622.pnts b/apps/story-map/public/tileset/points/r20622.pnts
new file mode 100644
index 00000000..925779e8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20622.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20623.pnts b/apps/story-map/public/tileset/points/r20623.pnts
new file mode 100644
index 00000000..3c838ec7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20623.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20624.pnts b/apps/story-map/public/tileset/points/r20624.pnts
new file mode 100644
index 00000000..62bb10b6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20624.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20625.pnts b/apps/story-map/public/tileset/points/r20625.pnts
new file mode 100644
index 00000000..74cdabc8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20625.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20626.pnts b/apps/story-map/public/tileset/points/r20626.pnts
new file mode 100644
index 00000000..f456cc89
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20626.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20627.pnts b/apps/story-map/public/tileset/points/r20627.pnts
new file mode 100644
index 00000000..88a5571e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20627.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2064.pnts b/apps/story-map/public/tileset/points/r2064.pnts
new file mode 100644
index 00000000..8ad067f5
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2064.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20640.pnts b/apps/story-map/public/tileset/points/r20640.pnts
new file mode 100644
index 00000000..3823c91b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20640.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20642.pnts b/apps/story-map/public/tileset/points/r20642.pnts
new file mode 100644
index 00000000..e169dcdc
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20642.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20644.pnts b/apps/story-map/public/tileset/points/r20644.pnts
new file mode 100644
index 00000000..53da835c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20644.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20646.pnts b/apps/story-map/public/tileset/points/r20646.pnts
new file mode 100644
index 00000000..30f6eb1d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20646.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2066.pnts b/apps/story-map/public/tileset/points/r2066.pnts
new file mode 100644
index 00000000..d8623392
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2066.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20660.pnts b/apps/story-map/public/tileset/points/r20660.pnts
new file mode 100644
index 00000000..bc4c7267
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20660.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20662.pnts b/apps/story-map/public/tileset/points/r20662.pnts
new file mode 100644
index 00000000..40c80f40
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20662.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20663.pnts b/apps/story-map/public/tileset/points/r20663.pnts
new file mode 100644
index 00000000..77d81516
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20663.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20664.pnts b/apps/story-map/public/tileset/points/r20664.pnts
new file mode 100644
index 00000000..5e522dd8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20664.pnts differ
diff --git a/apps/story-map/public/tileset/points/r20666.pnts b/apps/story-map/public/tileset/points/r20666.pnts
new file mode 100644
index 00000000..d6ee46b7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r20666.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22.pnts b/apps/story-map/public/tileset/points/r22.pnts
new file mode 100644
index 00000000..3147a759
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22.pnts differ
diff --git a/apps/story-map/public/tileset/points/r220.pnts b/apps/story-map/public/tileset/points/r220.pnts
new file mode 100644
index 00000000..b55e6798
Binary files /dev/null and b/apps/story-map/public/tileset/points/r220.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2200.pnts b/apps/story-map/public/tileset/points/r2200.pnts
new file mode 100644
index 00000000..30089730
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2200.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22000.pnts b/apps/story-map/public/tileset/points/r22000.pnts
new file mode 100644
index 00000000..f26cb2ba
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22000.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22001.pnts b/apps/story-map/public/tileset/points/r22001.pnts
new file mode 100644
index 00000000..c173c9b2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22001.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22003.pnts b/apps/story-map/public/tileset/points/r22003.pnts
new file mode 100644
index 00000000..b6674db2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22003.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22004.pnts b/apps/story-map/public/tileset/points/r22004.pnts
new file mode 100644
index 00000000..a8f8cf6f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22004.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22005.pnts b/apps/story-map/public/tileset/points/r22005.pnts
new file mode 100644
index 00000000..9616baa6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22005.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22006.pnts b/apps/story-map/public/tileset/points/r22006.pnts
new file mode 100644
index 00000000..d9d159d7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22006.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22007.pnts b/apps/story-map/public/tileset/points/r22007.pnts
new file mode 100644
index 00000000..eec2db84
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22007.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2202.pnts b/apps/story-map/public/tileset/points/r2202.pnts
new file mode 100644
index 00000000..d9ce38ef
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2202.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22021.pnts b/apps/story-map/public/tileset/points/r22021.pnts
new file mode 100644
index 00000000..93bdf7b9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22021.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22023.pnts b/apps/story-map/public/tileset/points/r22023.pnts
new file mode 100644
index 00000000..9dc90952
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22023.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22025.pnts b/apps/story-map/public/tileset/points/r22025.pnts
new file mode 100644
index 00000000..fae72ee1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22025.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22027.pnts b/apps/story-map/public/tileset/points/r22027.pnts
new file mode 100644
index 00000000..d294616c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22027.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2204.pnts b/apps/story-map/public/tileset/points/r2204.pnts
new file mode 100644
index 00000000..3b424ef2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2204.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22040.pnts b/apps/story-map/public/tileset/points/r22040.pnts
new file mode 100644
index 00000000..3543ca44
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22040.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22042.pnts b/apps/story-map/public/tileset/points/r22042.pnts
new file mode 100644
index 00000000..3d3462a1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22042.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22043.pnts b/apps/story-map/public/tileset/points/r22043.pnts
new file mode 100644
index 00000000..163268d0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22043.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22044.pnts b/apps/story-map/public/tileset/points/r22044.pnts
new file mode 100644
index 00000000..06a69d81
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22044.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22045.pnts b/apps/story-map/public/tileset/points/r22045.pnts
new file mode 100644
index 00000000..83f63c00
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22045.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22046.pnts b/apps/story-map/public/tileset/points/r22046.pnts
new file mode 100644
index 00000000..d805e54e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22046.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22047.pnts b/apps/story-map/public/tileset/points/r22047.pnts
new file mode 100644
index 00000000..b5267c8f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22047.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2206.pnts b/apps/story-map/public/tileset/points/r2206.pnts
new file mode 100644
index 00000000..03d8e5b3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2206.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22060.pnts b/apps/story-map/public/tileset/points/r22060.pnts
new file mode 100644
index 00000000..8c2d398d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22060.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22061.pnts b/apps/story-map/public/tileset/points/r22061.pnts
new file mode 100644
index 00000000..85f4c137
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22061.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22063.pnts b/apps/story-map/public/tileset/points/r22063.pnts
new file mode 100644
index 00000000..976385a0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22063.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22064.pnts b/apps/story-map/public/tileset/points/r22064.pnts
new file mode 100644
index 00000000..de51966b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22064.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22065.pnts b/apps/story-map/public/tileset/points/r22065.pnts
new file mode 100644
index 00000000..7b24292a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22065.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22066.pnts b/apps/story-map/public/tileset/points/r22066.pnts
new file mode 100644
index 00000000..eb10144e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22066.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22067.pnts b/apps/story-map/public/tileset/points/r22067.pnts
new file mode 100644
index 00000000..511a611d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22067.pnts differ
diff --git a/apps/story-map/public/tileset/points/r222.pnts b/apps/story-map/public/tileset/points/r222.pnts
new file mode 100644
index 00000000..c1626343
Binary files /dev/null and b/apps/story-map/public/tileset/points/r222.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2220.pnts b/apps/story-map/public/tileset/points/r2220.pnts
new file mode 100644
index 00000000..f4bbcefa
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2220.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22201.pnts b/apps/story-map/public/tileset/points/r22201.pnts
new file mode 100644
index 00000000..e117d858
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22201.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22203.pnts b/apps/story-map/public/tileset/points/r22203.pnts
new file mode 100644
index 00000000..b90ef97e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22203.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22205.pnts b/apps/story-map/public/tileset/points/r22205.pnts
new file mode 100644
index 00000000..6ce58191
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22205.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22207.pnts b/apps/story-map/public/tileset/points/r22207.pnts
new file mode 100644
index 00000000..a199613c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22207.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2222.pnts b/apps/story-map/public/tileset/points/r2222.pnts
new file mode 100644
index 00000000..97d1468b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2222.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2224.pnts b/apps/story-map/public/tileset/points/r2224.pnts
new file mode 100644
index 00000000..4e9fcefe
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2224.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22241.pnts b/apps/story-map/public/tileset/points/r22241.pnts
new file mode 100644
index 00000000..67b2d069
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22241.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22243.pnts b/apps/story-map/public/tileset/points/r22243.pnts
new file mode 100644
index 00000000..dfd0b2ce
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22243.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22245.pnts b/apps/story-map/public/tileset/points/r22245.pnts
new file mode 100644
index 00000000..9d542bd6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22245.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22247.pnts b/apps/story-map/public/tileset/points/r22247.pnts
new file mode 100644
index 00000000..15f0f1a6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22247.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2226.pnts b/apps/story-map/public/tileset/points/r2226.pnts
new file mode 100644
index 00000000..acaebdc2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2226.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22261.pnts b/apps/story-map/public/tileset/points/r22261.pnts
new file mode 100644
index 00000000..ff6c2c03
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22261.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22263.pnts b/apps/story-map/public/tileset/points/r22263.pnts
new file mode 100644
index 00000000..0620a2b9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22263.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22265.pnts b/apps/story-map/public/tileset/points/r22265.pnts
new file mode 100644
index 00000000..cfd6c7d3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22265.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22267.pnts b/apps/story-map/public/tileset/points/r22267.pnts
new file mode 100644
index 00000000..41122660
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22267.pnts differ
diff --git a/apps/story-map/public/tileset/points/r224.pnts b/apps/story-map/public/tileset/points/r224.pnts
new file mode 100644
index 00000000..78c72479
Binary files /dev/null and b/apps/story-map/public/tileset/points/r224.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2240.pnts b/apps/story-map/public/tileset/points/r2240.pnts
new file mode 100644
index 00000000..0119bf71
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2240.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22400.pnts b/apps/story-map/public/tileset/points/r22400.pnts
new file mode 100644
index 00000000..1ea56ab6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22400.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22401.pnts b/apps/story-map/public/tileset/points/r22401.pnts
new file mode 100644
index 00000000..ad44566b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22401.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22402.pnts b/apps/story-map/public/tileset/points/r22402.pnts
new file mode 100644
index 00000000..25320e9e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22402.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22403.pnts b/apps/story-map/public/tileset/points/r22403.pnts
new file mode 100644
index 00000000..fe15ec57
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22403.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22404.pnts b/apps/story-map/public/tileset/points/r22404.pnts
new file mode 100644
index 00000000..7adc85d3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22404.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22405.pnts b/apps/story-map/public/tileset/points/r22405.pnts
new file mode 100644
index 00000000..78ec6543
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22405.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22406.pnts b/apps/story-map/public/tileset/points/r22406.pnts
new file mode 100644
index 00000000..3605ea9b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22406.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22407.pnts b/apps/story-map/public/tileset/points/r22407.pnts
new file mode 100644
index 00000000..2c68972a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22407.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2242.pnts b/apps/story-map/public/tileset/points/r2242.pnts
new file mode 100644
index 00000000..1804587d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2242.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22420.pnts b/apps/story-map/public/tileset/points/r22420.pnts
new file mode 100644
index 00000000..cca96d6b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22420.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22421.pnts b/apps/story-map/public/tileset/points/r22421.pnts
new file mode 100644
index 00000000..6125a8dd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22421.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22422.pnts b/apps/story-map/public/tileset/points/r22422.pnts
new file mode 100644
index 00000000..4324f678
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22422.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22423.pnts b/apps/story-map/public/tileset/points/r22423.pnts
new file mode 100644
index 00000000..71f27657
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22423.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22424.pnts b/apps/story-map/public/tileset/points/r22424.pnts
new file mode 100644
index 00000000..bc942cb2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22424.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22426.pnts b/apps/story-map/public/tileset/points/r22426.pnts
new file mode 100644
index 00000000..7b2dc03e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22426.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22427.pnts b/apps/story-map/public/tileset/points/r22427.pnts
new file mode 100644
index 00000000..0789a0a8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22427.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2244.pnts b/apps/story-map/public/tileset/points/r2244.pnts
new file mode 100644
index 00000000..2508f0a4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2244.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22440.pnts b/apps/story-map/public/tileset/points/r22440.pnts
new file mode 100644
index 00000000..8cb7ad40
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22440.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22441.pnts b/apps/story-map/public/tileset/points/r22441.pnts
new file mode 100644
index 00000000..396cf419
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22441.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22442.pnts b/apps/story-map/public/tileset/points/r22442.pnts
new file mode 100644
index 00000000..16bcf715
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22442.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22444.pnts b/apps/story-map/public/tileset/points/r22444.pnts
new file mode 100644
index 00000000..89fc5e5c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22444.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22446.pnts b/apps/story-map/public/tileset/points/r22446.pnts
new file mode 100644
index 00000000..5dd1f41d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22446.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2246.pnts b/apps/story-map/public/tileset/points/r2246.pnts
new file mode 100644
index 00000000..90d4aa19
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2246.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22460.pnts b/apps/story-map/public/tileset/points/r22460.pnts
new file mode 100644
index 00000000..0a0a46a6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22460.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22462.pnts b/apps/story-map/public/tileset/points/r22462.pnts
new file mode 100644
index 00000000..a80452f2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22462.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22463.pnts b/apps/story-map/public/tileset/points/r22463.pnts
new file mode 100644
index 00000000..36608382
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22463.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22464.pnts b/apps/story-map/public/tileset/points/r22464.pnts
new file mode 100644
index 00000000..111be847
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22464.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22466.pnts b/apps/story-map/public/tileset/points/r22466.pnts
new file mode 100644
index 00000000..db9b256b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22466.pnts differ
diff --git a/apps/story-map/public/tileset/points/r226.pnts b/apps/story-map/public/tileset/points/r226.pnts
new file mode 100644
index 00000000..71d6e80f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r226.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2260.pnts b/apps/story-map/public/tileset/points/r2260.pnts
new file mode 100644
index 00000000..e8417885
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2260.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22600.pnts b/apps/story-map/public/tileset/points/r22600.pnts
new file mode 100644
index 00000000..1adbdb93
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22600.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22601.pnts b/apps/story-map/public/tileset/points/r22601.pnts
new file mode 100644
index 00000000..849030bc
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22601.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22602.pnts b/apps/story-map/public/tileset/points/r22602.pnts
new file mode 100644
index 00000000..aa059b28
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22602.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22603.pnts b/apps/story-map/public/tileset/points/r22603.pnts
new file mode 100644
index 00000000..bb8b04f0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22603.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22604.pnts b/apps/story-map/public/tileset/points/r22604.pnts
new file mode 100644
index 00000000..efb0a773
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22604.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22605.pnts b/apps/story-map/public/tileset/points/r22605.pnts
new file mode 100644
index 00000000..fa2650f5
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22605.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22606.pnts b/apps/story-map/public/tileset/points/r22606.pnts
new file mode 100644
index 00000000..4a0c5b46
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22606.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22607.pnts b/apps/story-map/public/tileset/points/r22607.pnts
new file mode 100644
index 00000000..2e2e1980
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22607.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2262.pnts b/apps/story-map/public/tileset/points/r2262.pnts
new file mode 100644
index 00000000..ad464684
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2262.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2264.pnts b/apps/story-map/public/tileset/points/r2264.pnts
new file mode 100644
index 00000000..fd44cedb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2264.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22640.pnts b/apps/story-map/public/tileset/points/r22640.pnts
new file mode 100644
index 00000000..ea7b2a9e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22640.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22641.pnts b/apps/story-map/public/tileset/points/r22641.pnts
new file mode 100644
index 00000000..5609db31
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22641.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22642.pnts b/apps/story-map/public/tileset/points/r22642.pnts
new file mode 100644
index 00000000..273fccf5
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22642.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22643.pnts b/apps/story-map/public/tileset/points/r22643.pnts
new file mode 100644
index 00000000..40f1b671
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22643.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22644.pnts b/apps/story-map/public/tileset/points/r22644.pnts
new file mode 100644
index 00000000..e2bda195
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22644.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22645.pnts b/apps/story-map/public/tileset/points/r22645.pnts
new file mode 100644
index 00000000..7d31515f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22645.pnts differ
diff --git a/apps/story-map/public/tileset/points/r22646.pnts b/apps/story-map/public/tileset/points/r22646.pnts
new file mode 100644
index 00000000..d08de81d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r22646.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2266.pnts b/apps/story-map/public/tileset/points/r2266.pnts
new file mode 100644
index 00000000..1f538c9c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2266.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24.pnts b/apps/story-map/public/tileset/points/r24.pnts
new file mode 100644
index 00000000..ad7ac497
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24.pnts differ
diff --git a/apps/story-map/public/tileset/points/r240.pnts b/apps/story-map/public/tileset/points/r240.pnts
new file mode 100644
index 00000000..7903d9af
Binary files /dev/null and b/apps/story-map/public/tileset/points/r240.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2400.pnts b/apps/story-map/public/tileset/points/r2400.pnts
new file mode 100644
index 00000000..dd3cc6f8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2400.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24000.pnts b/apps/story-map/public/tileset/points/r24000.pnts
new file mode 100644
index 00000000..363df720
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24000.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24001.pnts b/apps/story-map/public/tileset/points/r24001.pnts
new file mode 100644
index 00000000..614fb5df
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24001.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24002.pnts b/apps/story-map/public/tileset/points/r24002.pnts
new file mode 100644
index 00000000..3ca29700
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24002.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24003.pnts b/apps/story-map/public/tileset/points/r24003.pnts
new file mode 100644
index 00000000..fbbc12c4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24003.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24004.pnts b/apps/story-map/public/tileset/points/r24004.pnts
new file mode 100644
index 00000000..dbf28544
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24004.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24005.pnts b/apps/story-map/public/tileset/points/r24005.pnts
new file mode 100644
index 00000000..4e805e85
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24005.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24006.pnts b/apps/story-map/public/tileset/points/r24006.pnts
new file mode 100644
index 00000000..60d34099
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24006.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2402.pnts b/apps/story-map/public/tileset/points/r2402.pnts
new file mode 100644
index 00000000..f97461db
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2402.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24020.pnts b/apps/story-map/public/tileset/points/r24020.pnts
new file mode 100644
index 00000000..4479b8dd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24020.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24021.pnts b/apps/story-map/public/tileset/points/r24021.pnts
new file mode 100644
index 00000000..ddc1cf4b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24021.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24022.pnts b/apps/story-map/public/tileset/points/r24022.pnts
new file mode 100644
index 00000000..9c2abbd3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24022.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24024.pnts b/apps/story-map/public/tileset/points/r24024.pnts
new file mode 100644
index 00000000..fc422d2a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24024.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24026.pnts b/apps/story-map/public/tileset/points/r24026.pnts
new file mode 100644
index 00000000..3f72352b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24026.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2404.pnts b/apps/story-map/public/tileset/points/r2404.pnts
new file mode 100644
index 00000000..8f7f1c34
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2404.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24040.pnts b/apps/story-map/public/tileset/points/r24040.pnts
new file mode 100644
index 00000000..0c4fe833
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24040.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24041.pnts b/apps/story-map/public/tileset/points/r24041.pnts
new file mode 100644
index 00000000..ada67fc7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24041.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24042.pnts b/apps/story-map/public/tileset/points/r24042.pnts
new file mode 100644
index 00000000..d953d3c0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24042.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24043.pnts b/apps/story-map/public/tileset/points/r24043.pnts
new file mode 100644
index 00000000..dfa88027
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24043.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24044.pnts b/apps/story-map/public/tileset/points/r24044.pnts
new file mode 100644
index 00000000..9d25ec6f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24044.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24045.pnts b/apps/story-map/public/tileset/points/r24045.pnts
new file mode 100644
index 00000000..266cc374
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24045.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24046.pnts b/apps/story-map/public/tileset/points/r24046.pnts
new file mode 100644
index 00000000..e3567fc8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24046.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24047.pnts b/apps/story-map/public/tileset/points/r24047.pnts
new file mode 100644
index 00000000..eede7956
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24047.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2406.pnts b/apps/story-map/public/tileset/points/r2406.pnts
new file mode 100644
index 00000000..60a085d6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2406.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24060.pnts b/apps/story-map/public/tileset/points/r24060.pnts
new file mode 100644
index 00000000..ffcd23ec
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24060.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24061.pnts b/apps/story-map/public/tileset/points/r24061.pnts
new file mode 100644
index 00000000..53be913c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24061.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24062.pnts b/apps/story-map/public/tileset/points/r24062.pnts
new file mode 100644
index 00000000..45182264
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24062.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24063.pnts b/apps/story-map/public/tileset/points/r24063.pnts
new file mode 100644
index 00000000..445216ff
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24063.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24064.pnts b/apps/story-map/public/tileset/points/r24064.pnts
new file mode 100644
index 00000000..67f4dfb9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24064.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24066.pnts b/apps/story-map/public/tileset/points/r24066.pnts
new file mode 100644
index 00000000..fb33824d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24066.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24067.pnts b/apps/story-map/public/tileset/points/r24067.pnts
new file mode 100644
index 00000000..712277c6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24067.pnts differ
diff --git a/apps/story-map/public/tileset/points/r242.pnts b/apps/story-map/public/tileset/points/r242.pnts
new file mode 100644
index 00000000..485d1edc
Binary files /dev/null and b/apps/story-map/public/tileset/points/r242.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2420.pnts b/apps/story-map/public/tileset/points/r2420.pnts
new file mode 100644
index 00000000..c8ff8a90
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2420.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24200.pnts b/apps/story-map/public/tileset/points/r24200.pnts
new file mode 100644
index 00000000..0b491241
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24200.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24202.pnts b/apps/story-map/public/tileset/points/r24202.pnts
new file mode 100644
index 00000000..d1e88dfa
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24202.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24203.pnts b/apps/story-map/public/tileset/points/r24203.pnts
new file mode 100644
index 00000000..162fcca8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24203.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24204.pnts b/apps/story-map/public/tileset/points/r24204.pnts
new file mode 100644
index 00000000..a8ad76be
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24204.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24205.pnts b/apps/story-map/public/tileset/points/r24205.pnts
new file mode 100644
index 00000000..6f3ee940
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24205.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24206.pnts b/apps/story-map/public/tileset/points/r24206.pnts
new file mode 100644
index 00000000..4ef214e7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24206.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24207.pnts b/apps/story-map/public/tileset/points/r24207.pnts
new file mode 100644
index 00000000..b51d4b82
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24207.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2422.pnts b/apps/story-map/public/tileset/points/r2422.pnts
new file mode 100644
index 00000000..3abc58a8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2422.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24220.pnts b/apps/story-map/public/tileset/points/r24220.pnts
new file mode 100644
index 00000000..a46a95ab
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24220.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24222.pnts b/apps/story-map/public/tileset/points/r24222.pnts
new file mode 100644
index 00000000..46062aec
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24222.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24224.pnts b/apps/story-map/public/tileset/points/r24224.pnts
new file mode 100644
index 00000000..bc61a8ed
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24224.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24225.pnts b/apps/story-map/public/tileset/points/r24225.pnts
new file mode 100644
index 00000000..31261fa3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24225.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24226.pnts b/apps/story-map/public/tileset/points/r24226.pnts
new file mode 100644
index 00000000..94037fc3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24226.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2424.pnts b/apps/story-map/public/tileset/points/r2424.pnts
new file mode 100644
index 00000000..9d802341
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2424.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24240.pnts b/apps/story-map/public/tileset/points/r24240.pnts
new file mode 100644
index 00000000..cd7b63c6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24240.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24241.pnts b/apps/story-map/public/tileset/points/r24241.pnts
new file mode 100644
index 00000000..bb6f78ee
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24241.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24242.pnts b/apps/story-map/public/tileset/points/r24242.pnts
new file mode 100644
index 00000000..da9e0a37
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24242.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24243.pnts b/apps/story-map/public/tileset/points/r24243.pnts
new file mode 100644
index 00000000..bef986d1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24243.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24244.pnts b/apps/story-map/public/tileset/points/r24244.pnts
new file mode 100644
index 00000000..a8c150e7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24244.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24245.pnts b/apps/story-map/public/tileset/points/r24245.pnts
new file mode 100644
index 00000000..f7ab35c7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24245.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24246.pnts b/apps/story-map/public/tileset/points/r24246.pnts
new file mode 100644
index 00000000..6ea74c76
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24246.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24247.pnts b/apps/story-map/public/tileset/points/r24247.pnts
new file mode 100644
index 00000000..543dd127
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24247.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2426.pnts b/apps/story-map/public/tileset/points/r2426.pnts
new file mode 100644
index 00000000..74a54b6d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2426.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24260.pnts b/apps/story-map/public/tileset/points/r24260.pnts
new file mode 100644
index 00000000..a18e8b33
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24260.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24261.pnts b/apps/story-map/public/tileset/points/r24261.pnts
new file mode 100644
index 00000000..16aba4a3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24261.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24262.pnts b/apps/story-map/public/tileset/points/r24262.pnts
new file mode 100644
index 00000000..ecd1bc6f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24262.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24264.pnts b/apps/story-map/public/tileset/points/r24264.pnts
new file mode 100644
index 00000000..6b8760c6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24264.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24265.pnts b/apps/story-map/public/tileset/points/r24265.pnts
new file mode 100644
index 00000000..74127dd6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24265.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24266.pnts b/apps/story-map/public/tileset/points/r24266.pnts
new file mode 100644
index 00000000..d76d829a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24266.pnts differ
diff --git a/apps/story-map/public/tileset/points/r244.pnts b/apps/story-map/public/tileset/points/r244.pnts
new file mode 100644
index 00000000..7862c5e5
Binary files /dev/null and b/apps/story-map/public/tileset/points/r244.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2440.pnts b/apps/story-map/public/tileset/points/r2440.pnts
new file mode 100644
index 00000000..12150c8f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2440.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24400.pnts b/apps/story-map/public/tileset/points/r24400.pnts
new file mode 100644
index 00000000..8f2dbb58
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24400.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24401.pnts b/apps/story-map/public/tileset/points/r24401.pnts
new file mode 100644
index 00000000..99a3aaf7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24401.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24402.pnts b/apps/story-map/public/tileset/points/r24402.pnts
new file mode 100644
index 00000000..5feef1c9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24402.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24404.pnts b/apps/story-map/public/tileset/points/r24404.pnts
new file mode 100644
index 00000000..ae04a508
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24404.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24405.pnts b/apps/story-map/public/tileset/points/r24405.pnts
new file mode 100644
index 00000000..276346f1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24405.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24406.pnts b/apps/story-map/public/tileset/points/r24406.pnts
new file mode 100644
index 00000000..4733eb02
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24406.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2442.pnts b/apps/story-map/public/tileset/points/r2442.pnts
new file mode 100644
index 00000000..d94bb540
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2442.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24420.pnts b/apps/story-map/public/tileset/points/r24420.pnts
new file mode 100644
index 00000000..ea1eb9a4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24420.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24422.pnts b/apps/story-map/public/tileset/points/r24422.pnts
new file mode 100644
index 00000000..a529e981
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24422.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24423.pnts b/apps/story-map/public/tileset/points/r24423.pnts
new file mode 100644
index 00000000..73cee02c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24423.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24424.pnts b/apps/story-map/public/tileset/points/r24424.pnts
new file mode 100644
index 00000000..8a9dd0a2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24424.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24426.pnts b/apps/story-map/public/tileset/points/r24426.pnts
new file mode 100644
index 00000000..ed03bef9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24426.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24427.pnts b/apps/story-map/public/tileset/points/r24427.pnts
new file mode 100644
index 00000000..3b08fb0b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24427.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2444.pnts b/apps/story-map/public/tileset/points/r2444.pnts
new file mode 100644
index 00000000..bf3c72c2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2444.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24440.pnts b/apps/story-map/public/tileset/points/r24440.pnts
new file mode 100644
index 00000000..e10299e1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24440.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24442.pnts b/apps/story-map/public/tileset/points/r24442.pnts
new file mode 100644
index 00000000..59c329d8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24442.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24443.pnts b/apps/story-map/public/tileset/points/r24443.pnts
new file mode 100644
index 00000000..d7f33594
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24443.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24444.pnts b/apps/story-map/public/tileset/points/r24444.pnts
new file mode 100644
index 00000000..44e01ffe
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24444.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24445.pnts b/apps/story-map/public/tileset/points/r24445.pnts
new file mode 100644
index 00000000..60efa112
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24445.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24446.pnts b/apps/story-map/public/tileset/points/r24446.pnts
new file mode 100644
index 00000000..69993bae
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24446.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2446.pnts b/apps/story-map/public/tileset/points/r2446.pnts
new file mode 100644
index 00000000..9e07d758
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2446.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24460.pnts b/apps/story-map/public/tileset/points/r24460.pnts
new file mode 100644
index 00000000..899558eb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24460.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24462.pnts b/apps/story-map/public/tileset/points/r24462.pnts
new file mode 100644
index 00000000..cae334c9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24462.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24464.pnts b/apps/story-map/public/tileset/points/r24464.pnts
new file mode 100644
index 00000000..b946172c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24464.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24465.pnts b/apps/story-map/public/tileset/points/r24465.pnts
new file mode 100644
index 00000000..07fddf84
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24465.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24466.pnts b/apps/story-map/public/tileset/points/r24466.pnts
new file mode 100644
index 00000000..fa289b15
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24466.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24467.pnts b/apps/story-map/public/tileset/points/r24467.pnts
new file mode 100644
index 00000000..911d2eab
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24467.pnts differ
diff --git a/apps/story-map/public/tileset/points/r246.pnts b/apps/story-map/public/tileset/points/r246.pnts
new file mode 100644
index 00000000..9a4086f4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r246.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2460.pnts b/apps/story-map/public/tileset/points/r2460.pnts
new file mode 100644
index 00000000..73795390
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2460.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24600.pnts b/apps/story-map/public/tileset/points/r24600.pnts
new file mode 100644
index 00000000..b2eebca7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24600.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24601.pnts b/apps/story-map/public/tileset/points/r24601.pnts
new file mode 100644
index 00000000..a5c57cd7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24601.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24602.pnts b/apps/story-map/public/tileset/points/r24602.pnts
new file mode 100644
index 00000000..f82a2bdb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24602.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24603.pnts b/apps/story-map/public/tileset/points/r24603.pnts
new file mode 100644
index 00000000..e0b338ff
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24603.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24604.pnts b/apps/story-map/public/tileset/points/r24604.pnts
new file mode 100644
index 00000000..31b0112f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24604.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24606.pnts b/apps/story-map/public/tileset/points/r24606.pnts
new file mode 100644
index 00000000..5095d232
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24606.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24607.pnts b/apps/story-map/public/tileset/points/r24607.pnts
new file mode 100644
index 00000000..0b5d026d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24607.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2462.pnts b/apps/story-map/public/tileset/points/r2462.pnts
new file mode 100644
index 00000000..29fd1b9f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2462.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24620.pnts b/apps/story-map/public/tileset/points/r24620.pnts
new file mode 100644
index 00000000..30c36fe7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24620.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24621.pnts b/apps/story-map/public/tileset/points/r24621.pnts
new file mode 100644
index 00000000..9b31069f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24621.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24622.pnts b/apps/story-map/public/tileset/points/r24622.pnts
new file mode 100644
index 00000000..87225e6c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24622.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24623.pnts b/apps/story-map/public/tileset/points/r24623.pnts
new file mode 100644
index 00000000..cf858271
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24623.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24624.pnts b/apps/story-map/public/tileset/points/r24624.pnts
new file mode 100644
index 00000000..3feea479
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24624.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24625.pnts b/apps/story-map/public/tileset/points/r24625.pnts
new file mode 100644
index 00000000..2ac45f12
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24625.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24626.pnts b/apps/story-map/public/tileset/points/r24626.pnts
new file mode 100644
index 00000000..29e579d8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24626.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24627.pnts b/apps/story-map/public/tileset/points/r24627.pnts
new file mode 100644
index 00000000..5ed37161
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24627.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2464.pnts b/apps/story-map/public/tileset/points/r2464.pnts
new file mode 100644
index 00000000..f1589770
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2464.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24640.pnts b/apps/story-map/public/tileset/points/r24640.pnts
new file mode 100644
index 00000000..cba6ca46
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24640.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24642.pnts b/apps/story-map/public/tileset/points/r24642.pnts
new file mode 100644
index 00000000..46adb2b8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24642.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24643.pnts b/apps/story-map/public/tileset/points/r24643.pnts
new file mode 100644
index 00000000..6f174b9b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24643.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24644.pnts b/apps/story-map/public/tileset/points/r24644.pnts
new file mode 100644
index 00000000..4a434bc5
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24644.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24646.pnts b/apps/story-map/public/tileset/points/r24646.pnts
new file mode 100644
index 00000000..70eabdea
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24646.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24647.pnts b/apps/story-map/public/tileset/points/r24647.pnts
new file mode 100644
index 00000000..1d4ed040
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24647.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2466.pnts b/apps/story-map/public/tileset/points/r2466.pnts
new file mode 100644
index 00000000..262b8f13
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2466.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24660.pnts b/apps/story-map/public/tileset/points/r24660.pnts
new file mode 100644
index 00000000..195dfebd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24660.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24661.pnts b/apps/story-map/public/tileset/points/r24661.pnts
new file mode 100644
index 00000000..90ec2dba
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24661.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24662.pnts b/apps/story-map/public/tileset/points/r24662.pnts
new file mode 100644
index 00000000..eb4e46ef
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24662.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24663.pnts b/apps/story-map/public/tileset/points/r24663.pnts
new file mode 100644
index 00000000..953e0937
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24663.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24664.pnts b/apps/story-map/public/tileset/points/r24664.pnts
new file mode 100644
index 00000000..a97c010b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24664.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24665.pnts b/apps/story-map/public/tileset/points/r24665.pnts
new file mode 100644
index 00000000..792395b1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24665.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24666.pnts b/apps/story-map/public/tileset/points/r24666.pnts
new file mode 100644
index 00000000..1aeae4ba
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24666.pnts differ
diff --git a/apps/story-map/public/tileset/points/r24667.pnts b/apps/story-map/public/tileset/points/r24667.pnts
new file mode 100644
index 00000000..9a4a0f0e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r24667.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26.pnts b/apps/story-map/public/tileset/points/r26.pnts
new file mode 100644
index 00000000..844e2a55
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26.pnts differ
diff --git a/apps/story-map/public/tileset/points/r260.pnts b/apps/story-map/public/tileset/points/r260.pnts
new file mode 100644
index 00000000..8c7e592e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r260.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2600.pnts b/apps/story-map/public/tileset/points/r2600.pnts
new file mode 100644
index 00000000..0c8e0543
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2600.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26000.pnts b/apps/story-map/public/tileset/points/r26000.pnts
new file mode 100644
index 00000000..d61e346d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26000.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26002.pnts b/apps/story-map/public/tileset/points/r26002.pnts
new file mode 100644
index 00000000..64a67b7c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26002.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26004.pnts b/apps/story-map/public/tileset/points/r26004.pnts
new file mode 100644
index 00000000..49de6701
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26004.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26006.pnts b/apps/story-map/public/tileset/points/r26006.pnts
new file mode 100644
index 00000000..7c1b8b92
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26006.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2602.pnts b/apps/story-map/public/tileset/points/r2602.pnts
new file mode 100644
index 00000000..56995349
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2602.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26020.pnts b/apps/story-map/public/tileset/points/r26020.pnts
new file mode 100644
index 00000000..b5da6d62
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26020.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26022.pnts b/apps/story-map/public/tileset/points/r26022.pnts
new file mode 100644
index 00000000..177381fe
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26022.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26023.pnts b/apps/story-map/public/tileset/points/r26023.pnts
new file mode 100644
index 00000000..f8d4af36
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26023.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26024.pnts b/apps/story-map/public/tileset/points/r26024.pnts
new file mode 100644
index 00000000..2860ec88
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26024.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26026.pnts b/apps/story-map/public/tileset/points/r26026.pnts
new file mode 100644
index 00000000..04ae27e6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26026.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2604.pnts b/apps/story-map/public/tileset/points/r2604.pnts
new file mode 100644
index 00000000..71170356
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2604.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26040.pnts b/apps/story-map/public/tileset/points/r26040.pnts
new file mode 100644
index 00000000..22aa8fe7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26040.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26042.pnts b/apps/story-map/public/tileset/points/r26042.pnts
new file mode 100644
index 00000000..577218ef
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26042.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26044.pnts b/apps/story-map/public/tileset/points/r26044.pnts
new file mode 100644
index 00000000..b47f2ce6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26044.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26046.pnts b/apps/story-map/public/tileset/points/r26046.pnts
new file mode 100644
index 00000000..39fcb45b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26046.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2606.pnts b/apps/story-map/public/tileset/points/r2606.pnts
new file mode 100644
index 00000000..ea3619ed
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2606.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26060.pnts b/apps/story-map/public/tileset/points/r26060.pnts
new file mode 100644
index 00000000..0848ce58
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26060.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26061.pnts b/apps/story-map/public/tileset/points/r26061.pnts
new file mode 100644
index 00000000..85bfd148
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26061.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26062.pnts b/apps/story-map/public/tileset/points/r26062.pnts
new file mode 100644
index 00000000..0f9a9203
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26062.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26064.pnts b/apps/story-map/public/tileset/points/r26064.pnts
new file mode 100644
index 00000000..9a022447
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26064.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26065.pnts b/apps/story-map/public/tileset/points/r26065.pnts
new file mode 100644
index 00000000..b4a0ef92
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26065.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26066.pnts b/apps/story-map/public/tileset/points/r26066.pnts
new file mode 100644
index 00000000..f1f25048
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26066.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26067.pnts b/apps/story-map/public/tileset/points/r26067.pnts
new file mode 100644
index 00000000..513973d3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26067.pnts differ
diff --git a/apps/story-map/public/tileset/points/r262.pnts b/apps/story-map/public/tileset/points/r262.pnts
new file mode 100644
index 00000000..92e0dc45
Binary files /dev/null and b/apps/story-map/public/tileset/points/r262.pnts differ
diff --git a/apps/story-map/public/tileset/points/r264.pnts b/apps/story-map/public/tileset/points/r264.pnts
new file mode 100644
index 00000000..e199abb0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r264.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2640.pnts b/apps/story-map/public/tileset/points/r2640.pnts
new file mode 100644
index 00000000..d99e7adf
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2640.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26400.pnts b/apps/story-map/public/tileset/points/r26400.pnts
new file mode 100644
index 00000000..68b29299
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26400.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26401.pnts b/apps/story-map/public/tileset/points/r26401.pnts
new file mode 100644
index 00000000..5deae6a3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26401.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26402.pnts b/apps/story-map/public/tileset/points/r26402.pnts
new file mode 100644
index 00000000..d6d3e949
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26402.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26403.pnts b/apps/story-map/public/tileset/points/r26403.pnts
new file mode 100644
index 00000000..1d89d117
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26403.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26404.pnts b/apps/story-map/public/tileset/points/r26404.pnts
new file mode 100644
index 00000000..0a3b91e3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26404.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26405.pnts b/apps/story-map/public/tileset/points/r26405.pnts
new file mode 100644
index 00000000..d2309778
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26405.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26406.pnts b/apps/story-map/public/tileset/points/r26406.pnts
new file mode 100644
index 00000000..08c419f1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26406.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26407.pnts b/apps/story-map/public/tileset/points/r26407.pnts
new file mode 100644
index 00000000..705c3f8c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26407.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2642.pnts b/apps/story-map/public/tileset/points/r2642.pnts
new file mode 100644
index 00000000..bca93eba
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2642.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2644.pnts b/apps/story-map/public/tileset/points/r2644.pnts
new file mode 100644
index 00000000..65f163db
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2644.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26440.pnts b/apps/story-map/public/tileset/points/r26440.pnts
new file mode 100644
index 00000000..96f53e3d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26440.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26441.pnts b/apps/story-map/public/tileset/points/r26441.pnts
new file mode 100644
index 00000000..ee15e699
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26441.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26442.pnts b/apps/story-map/public/tileset/points/r26442.pnts
new file mode 100644
index 00000000..0abfd576
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26442.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26443.pnts b/apps/story-map/public/tileset/points/r26443.pnts
new file mode 100644
index 00000000..c71a5e27
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26443.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26444.pnts b/apps/story-map/public/tileset/points/r26444.pnts
new file mode 100644
index 00000000..79330f8c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26444.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26445.pnts b/apps/story-map/public/tileset/points/r26445.pnts
new file mode 100644
index 00000000..5680f9fd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26445.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26446.pnts b/apps/story-map/public/tileset/points/r26446.pnts
new file mode 100644
index 00000000..c2622c03
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26446.pnts differ
diff --git a/apps/story-map/public/tileset/points/r26447.pnts b/apps/story-map/public/tileset/points/r26447.pnts
new file mode 100644
index 00000000..eef375a7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r26447.pnts differ
diff --git a/apps/story-map/public/tileset/points/r2646.pnts b/apps/story-map/public/tileset/points/r2646.pnts
new file mode 100644
index 00000000..537b5610
Binary files /dev/null and b/apps/story-map/public/tileset/points/r2646.pnts differ
diff --git a/apps/story-map/public/tileset/points/r3.pnts b/apps/story-map/public/tileset/points/r3.pnts
new file mode 100644
index 00000000..ef9bb85f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r3.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4.pnts b/apps/story-map/public/tileset/points/r4.pnts
new file mode 100644
index 00000000..80c479ff
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4.pnts differ
diff --git a/apps/story-map/public/tileset/points/r40.pnts b/apps/story-map/public/tileset/points/r40.pnts
new file mode 100644
index 00000000..631f3032
Binary files /dev/null and b/apps/story-map/public/tileset/points/r40.pnts differ
diff --git a/apps/story-map/public/tileset/points/r406.pnts b/apps/story-map/public/tileset/points/r406.pnts
new file mode 100644
index 00000000..548eeba6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r406.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4062.pnts b/apps/story-map/public/tileset/points/r4062.pnts
new file mode 100644
index 00000000..244970af
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4062.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4066.pnts b/apps/story-map/public/tileset/points/r4066.pnts
new file mode 100644
index 00000000..0750ff6c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4066.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42.pnts b/apps/story-map/public/tileset/points/r42.pnts
new file mode 100644
index 00000000..04efdc27
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42.pnts differ
diff --git a/apps/story-map/public/tileset/points/r420.pnts b/apps/story-map/public/tileset/points/r420.pnts
new file mode 100644
index 00000000..856a2e24
Binary files /dev/null and b/apps/story-map/public/tileset/points/r420.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4200.pnts b/apps/story-map/public/tileset/points/r4200.pnts
new file mode 100644
index 00000000..e64f1791
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4200.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4202.pnts b/apps/story-map/public/tileset/points/r4202.pnts
new file mode 100644
index 00000000..b36f0228
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4202.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42020.pnts b/apps/story-map/public/tileset/points/r42020.pnts
new file mode 100644
index 00000000..d1ebec7e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42020.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42022.pnts b/apps/story-map/public/tileset/points/r42022.pnts
new file mode 100644
index 00000000..e1482834
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42022.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42023.pnts b/apps/story-map/public/tileset/points/r42023.pnts
new file mode 100644
index 00000000..a9794fec
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42023.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42024.pnts b/apps/story-map/public/tileset/points/r42024.pnts
new file mode 100644
index 00000000..1dc53723
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42024.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42026.pnts b/apps/story-map/public/tileset/points/r42026.pnts
new file mode 100644
index 00000000..c247e872
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42026.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42027.pnts b/apps/story-map/public/tileset/points/r42027.pnts
new file mode 100644
index 00000000..90407d43
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42027.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4204.pnts b/apps/story-map/public/tileset/points/r4204.pnts
new file mode 100644
index 00000000..722486f4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4204.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4206.pnts b/apps/story-map/public/tileset/points/r4206.pnts
new file mode 100644
index 00000000..106c47c9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4206.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42060.pnts b/apps/story-map/public/tileset/points/r42060.pnts
new file mode 100644
index 00000000..e9bface6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42060.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42062.pnts b/apps/story-map/public/tileset/points/r42062.pnts
new file mode 100644
index 00000000..4fd51a17
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42062.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42064.pnts b/apps/story-map/public/tileset/points/r42064.pnts
new file mode 100644
index 00000000..47cfabfd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42064.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42066.pnts b/apps/story-map/public/tileset/points/r42066.pnts
new file mode 100644
index 00000000..d499e3e7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42066.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42067.pnts b/apps/story-map/public/tileset/points/r42067.pnts
new file mode 100644
index 00000000..8526f3ee
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42067.pnts differ
diff --git a/apps/story-map/public/tileset/points/r422.pnts b/apps/story-map/public/tileset/points/r422.pnts
new file mode 100644
index 00000000..6f09d87a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r422.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4220.pnts b/apps/story-map/public/tileset/points/r4220.pnts
new file mode 100644
index 00000000..751c7bb2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4220.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42200.pnts b/apps/story-map/public/tileset/points/r42200.pnts
new file mode 100644
index 00000000..0a0bbb71
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42200.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42201.pnts b/apps/story-map/public/tileset/points/r42201.pnts
new file mode 100644
index 00000000..bddd207b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42201.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42202.pnts b/apps/story-map/public/tileset/points/r42202.pnts
new file mode 100644
index 00000000..8de1509f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42202.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42203.pnts b/apps/story-map/public/tileset/points/r42203.pnts
new file mode 100644
index 00000000..fcf77417
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42203.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42204.pnts b/apps/story-map/public/tileset/points/r42204.pnts
new file mode 100644
index 00000000..9a9064dd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42204.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42205.pnts b/apps/story-map/public/tileset/points/r42205.pnts
new file mode 100644
index 00000000..8b9fcafd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42205.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42206.pnts b/apps/story-map/public/tileset/points/r42206.pnts
new file mode 100644
index 00000000..93df1947
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42206.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42207.pnts b/apps/story-map/public/tileset/points/r42207.pnts
new file mode 100644
index 00000000..732ee30d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42207.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4222.pnts b/apps/story-map/public/tileset/points/r4222.pnts
new file mode 100644
index 00000000..33b16ed6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4222.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42220.pnts b/apps/story-map/public/tileset/points/r42220.pnts
new file mode 100644
index 00000000..c4081809
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42220.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42221.pnts b/apps/story-map/public/tileset/points/r42221.pnts
new file mode 100644
index 00000000..42c1b2d2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42221.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42223.pnts b/apps/story-map/public/tileset/points/r42223.pnts
new file mode 100644
index 00000000..9c1be2ce
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42223.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42224.pnts b/apps/story-map/public/tileset/points/r42224.pnts
new file mode 100644
index 00000000..4c6f244e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42224.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42225.pnts b/apps/story-map/public/tileset/points/r42225.pnts
new file mode 100644
index 00000000..3d58fe23
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42225.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42227.pnts b/apps/story-map/public/tileset/points/r42227.pnts
new file mode 100644
index 00000000..a9e800e6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42227.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4224.pnts b/apps/story-map/public/tileset/points/r4224.pnts
new file mode 100644
index 00000000..5b95b6f7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4224.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42240.pnts b/apps/story-map/public/tileset/points/r42240.pnts
new file mode 100644
index 00000000..5f28aa47
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42240.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42241.pnts b/apps/story-map/public/tileset/points/r42241.pnts
new file mode 100644
index 00000000..75c00b7a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42241.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42242.pnts b/apps/story-map/public/tileset/points/r42242.pnts
new file mode 100644
index 00000000..6c7c1261
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42242.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42243.pnts b/apps/story-map/public/tileset/points/r42243.pnts
new file mode 100644
index 00000000..262c1528
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42243.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42244.pnts b/apps/story-map/public/tileset/points/r42244.pnts
new file mode 100644
index 00000000..acf59ec6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42244.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42245.pnts b/apps/story-map/public/tileset/points/r42245.pnts
new file mode 100644
index 00000000..f8150c1a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42245.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42246.pnts b/apps/story-map/public/tileset/points/r42246.pnts
new file mode 100644
index 00000000..d491f50c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42246.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4226.pnts b/apps/story-map/public/tileset/points/r4226.pnts
new file mode 100644
index 00000000..18217e07
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4226.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42260.pnts b/apps/story-map/public/tileset/points/r42260.pnts
new file mode 100644
index 00000000..e567f5a1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42260.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42261.pnts b/apps/story-map/public/tileset/points/r42261.pnts
new file mode 100644
index 00000000..60b0bbe7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42261.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42262.pnts b/apps/story-map/public/tileset/points/r42262.pnts
new file mode 100644
index 00000000..44a91570
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42262.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42263.pnts b/apps/story-map/public/tileset/points/r42263.pnts
new file mode 100644
index 00000000..08ddf0a0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42263.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42264.pnts b/apps/story-map/public/tileset/points/r42264.pnts
new file mode 100644
index 00000000..85b71150
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42264.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42265.pnts b/apps/story-map/public/tileset/points/r42265.pnts
new file mode 100644
index 00000000..403d869f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42265.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42266.pnts b/apps/story-map/public/tileset/points/r42266.pnts
new file mode 100644
index 00000000..18871682
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42266.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42267.pnts b/apps/story-map/public/tileset/points/r42267.pnts
new file mode 100644
index 00000000..9a8f1323
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42267.pnts differ
diff --git a/apps/story-map/public/tileset/points/r424.pnts b/apps/story-map/public/tileset/points/r424.pnts
new file mode 100644
index 00000000..f7a3d976
Binary files /dev/null and b/apps/story-map/public/tileset/points/r424.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4240.pnts b/apps/story-map/public/tileset/points/r4240.pnts
new file mode 100644
index 00000000..eac1d15f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4240.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4242.pnts b/apps/story-map/public/tileset/points/r4242.pnts
new file mode 100644
index 00000000..ac67fa8a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4242.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42420.pnts b/apps/story-map/public/tileset/points/r42420.pnts
new file mode 100644
index 00000000..5c09aa8a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42420.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42421.pnts b/apps/story-map/public/tileset/points/r42421.pnts
new file mode 100644
index 00000000..d5aea02e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42421.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42422.pnts b/apps/story-map/public/tileset/points/r42422.pnts
new file mode 100644
index 00000000..bec95a7f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42422.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42423.pnts b/apps/story-map/public/tileset/points/r42423.pnts
new file mode 100644
index 00000000..060ec9e5
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42423.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42424.pnts b/apps/story-map/public/tileset/points/r42424.pnts
new file mode 100644
index 00000000..201d7a84
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42424.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42425.pnts b/apps/story-map/public/tileset/points/r42425.pnts
new file mode 100644
index 00000000..2b3b473a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42425.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42426.pnts b/apps/story-map/public/tileset/points/r42426.pnts
new file mode 100644
index 00000000..8b9fc43a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42426.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42427.pnts b/apps/story-map/public/tileset/points/r42427.pnts
new file mode 100644
index 00000000..1f392206
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42427.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4244.pnts b/apps/story-map/public/tileset/points/r4244.pnts
new file mode 100644
index 00000000..e2d77bea
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4244.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42440.pnts b/apps/story-map/public/tileset/points/r42440.pnts
new file mode 100644
index 00000000..ea2c8cfd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42440.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42442.pnts b/apps/story-map/public/tileset/points/r42442.pnts
new file mode 100644
index 00000000..56650048
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42442.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42444.pnts b/apps/story-map/public/tileset/points/r42444.pnts
new file mode 100644
index 00000000..cf5f141f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42444.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42445.pnts b/apps/story-map/public/tileset/points/r42445.pnts
new file mode 100644
index 00000000..2b5be34c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42445.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42446.pnts b/apps/story-map/public/tileset/points/r42446.pnts
new file mode 100644
index 00000000..03ab882d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42446.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42447.pnts b/apps/story-map/public/tileset/points/r42447.pnts
new file mode 100644
index 00000000..8ecf7787
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42447.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4246.pnts b/apps/story-map/public/tileset/points/r4246.pnts
new file mode 100644
index 00000000..07641f0f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4246.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42460.pnts b/apps/story-map/public/tileset/points/r42460.pnts
new file mode 100644
index 00000000..f3ffacc6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42460.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42462.pnts b/apps/story-map/public/tileset/points/r42462.pnts
new file mode 100644
index 00000000..62d2509f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42462.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42463.pnts b/apps/story-map/public/tileset/points/r42463.pnts
new file mode 100644
index 00000000..119a3402
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42463.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42464.pnts b/apps/story-map/public/tileset/points/r42464.pnts
new file mode 100644
index 00000000..1ebfcfce
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42464.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42466.pnts b/apps/story-map/public/tileset/points/r42466.pnts
new file mode 100644
index 00000000..d4ebde30
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42466.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42467.pnts b/apps/story-map/public/tileset/points/r42467.pnts
new file mode 100644
index 00000000..5cfac057
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42467.pnts differ
diff --git a/apps/story-map/public/tileset/points/r426.pnts b/apps/story-map/public/tileset/points/r426.pnts
new file mode 100644
index 00000000..fff090f0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r426.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4260.pnts b/apps/story-map/public/tileset/points/r4260.pnts
new file mode 100644
index 00000000..6764052f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4260.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42600.pnts b/apps/story-map/public/tileset/points/r42600.pnts
new file mode 100644
index 00000000..b71c4e7a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42600.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42601.pnts b/apps/story-map/public/tileset/points/r42601.pnts
new file mode 100644
index 00000000..099df770
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42601.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42602.pnts b/apps/story-map/public/tileset/points/r42602.pnts
new file mode 100644
index 00000000..6d83aa6b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42602.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42603.pnts b/apps/story-map/public/tileset/points/r42603.pnts
new file mode 100644
index 00000000..5e00651b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42603.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42604.pnts b/apps/story-map/public/tileset/points/r42604.pnts
new file mode 100644
index 00000000..616d862a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42604.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42605.pnts b/apps/story-map/public/tileset/points/r42605.pnts
new file mode 100644
index 00000000..35eb56b6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42605.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42606.pnts b/apps/story-map/public/tileset/points/r42606.pnts
new file mode 100644
index 00000000..dfa9ebb1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42606.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42607.pnts b/apps/story-map/public/tileset/points/r42607.pnts
new file mode 100644
index 00000000..6aa2a8d1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42607.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4262.pnts b/apps/story-map/public/tileset/points/r4262.pnts
new file mode 100644
index 00000000..ee74f761
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4262.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42620.pnts b/apps/story-map/public/tileset/points/r42620.pnts
new file mode 100644
index 00000000..63418b66
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42620.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42621.pnts b/apps/story-map/public/tileset/points/r42621.pnts
new file mode 100644
index 00000000..66d80851
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42621.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42622.pnts b/apps/story-map/public/tileset/points/r42622.pnts
new file mode 100644
index 00000000..98ade96c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42622.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42624.pnts b/apps/story-map/public/tileset/points/r42624.pnts
new file mode 100644
index 00000000..40157f92
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42624.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42625.pnts b/apps/story-map/public/tileset/points/r42625.pnts
new file mode 100644
index 00000000..f6308f8c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42625.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42626.pnts b/apps/story-map/public/tileset/points/r42626.pnts
new file mode 100644
index 00000000..07df9f84
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42626.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42627.pnts b/apps/story-map/public/tileset/points/r42627.pnts
new file mode 100644
index 00000000..eeec199d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42627.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4264.pnts b/apps/story-map/public/tileset/points/r4264.pnts
new file mode 100644
index 00000000..f99ae7fe
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4264.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42640.pnts b/apps/story-map/public/tileset/points/r42640.pnts
new file mode 100644
index 00000000..78f96ab2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42640.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42641.pnts b/apps/story-map/public/tileset/points/r42641.pnts
new file mode 100644
index 00000000..0d823758
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42641.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42642.pnts b/apps/story-map/public/tileset/points/r42642.pnts
new file mode 100644
index 00000000..d56f9c60
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42642.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42643.pnts b/apps/story-map/public/tileset/points/r42643.pnts
new file mode 100644
index 00000000..49af9caa
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42643.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42644.pnts b/apps/story-map/public/tileset/points/r42644.pnts
new file mode 100644
index 00000000..d3fb6ca8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42644.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42645.pnts b/apps/story-map/public/tileset/points/r42645.pnts
new file mode 100644
index 00000000..e3b695b9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42645.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42646.pnts b/apps/story-map/public/tileset/points/r42646.pnts
new file mode 100644
index 00000000..c5cb4b2e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42646.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4266.pnts b/apps/story-map/public/tileset/points/r4266.pnts
new file mode 100644
index 00000000..9186f4be
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4266.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42660.pnts b/apps/story-map/public/tileset/points/r42660.pnts
new file mode 100644
index 00000000..caea075d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42660.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42661.pnts b/apps/story-map/public/tileset/points/r42661.pnts
new file mode 100644
index 00000000..dd64afcc
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42661.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42662.pnts b/apps/story-map/public/tileset/points/r42662.pnts
new file mode 100644
index 00000000..c7f7b6ca
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42662.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42663.pnts b/apps/story-map/public/tileset/points/r42663.pnts
new file mode 100644
index 00000000..ace6d884
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42663.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42664.pnts b/apps/story-map/public/tileset/points/r42664.pnts
new file mode 100644
index 00000000..670b16da
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42664.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42666.pnts b/apps/story-map/public/tileset/points/r42666.pnts
new file mode 100644
index 00000000..a1253838
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42666.pnts differ
diff --git a/apps/story-map/public/tileset/points/r42667.pnts b/apps/story-map/public/tileset/points/r42667.pnts
new file mode 100644
index 00000000..1327a956
Binary files /dev/null and b/apps/story-map/public/tileset/points/r42667.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44.pnts b/apps/story-map/public/tileset/points/r44.pnts
new file mode 100644
index 00000000..93ed6d6f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44.pnts differ
diff --git a/apps/story-map/public/tileset/points/r440.pnts b/apps/story-map/public/tileset/points/r440.pnts
new file mode 100644
index 00000000..14f93196
Binary files /dev/null and b/apps/story-map/public/tileset/points/r440.pnts differ
diff --git a/apps/story-map/public/tileset/points/r442.pnts b/apps/story-map/public/tileset/points/r442.pnts
new file mode 100644
index 00000000..5e0d1479
Binary files /dev/null and b/apps/story-map/public/tileset/points/r442.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4420.pnts b/apps/story-map/public/tileset/points/r4420.pnts
new file mode 100644
index 00000000..2a25fc31
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4420.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4422.pnts b/apps/story-map/public/tileset/points/r4422.pnts
new file mode 100644
index 00000000..df2bdfd5
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4422.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44220.pnts b/apps/story-map/public/tileset/points/r44220.pnts
new file mode 100644
index 00000000..845615ad
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44220.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44222.pnts b/apps/story-map/public/tileset/points/r44222.pnts
new file mode 100644
index 00000000..76d74072
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44222.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44223.pnts b/apps/story-map/public/tileset/points/r44223.pnts
new file mode 100644
index 00000000..a920d615
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44223.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44224.pnts b/apps/story-map/public/tileset/points/r44224.pnts
new file mode 100644
index 00000000..80216697
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44224.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44225.pnts b/apps/story-map/public/tileset/points/r44225.pnts
new file mode 100644
index 00000000..bdafaada
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44225.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44226.pnts b/apps/story-map/public/tileset/points/r44226.pnts
new file mode 100644
index 00000000..af737754
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44226.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44227.pnts b/apps/story-map/public/tileset/points/r44227.pnts
new file mode 100644
index 00000000..d83e8571
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44227.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4424.pnts b/apps/story-map/public/tileset/points/r4424.pnts
new file mode 100644
index 00000000..4626983a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4424.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44240.pnts b/apps/story-map/public/tileset/points/r44240.pnts
new file mode 100644
index 00000000..aabc3903
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44240.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44242.pnts b/apps/story-map/public/tileset/points/r44242.pnts
new file mode 100644
index 00000000..44031398
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44242.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44244.pnts b/apps/story-map/public/tileset/points/r44244.pnts
new file mode 100644
index 00000000..19835b08
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44244.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44246.pnts b/apps/story-map/public/tileset/points/r44246.pnts
new file mode 100644
index 00000000..05ab0f9a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44246.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44247.pnts b/apps/story-map/public/tileset/points/r44247.pnts
new file mode 100644
index 00000000..c292b062
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44247.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4426.pnts b/apps/story-map/public/tileset/points/r4426.pnts
new file mode 100644
index 00000000..853deabe
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4426.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44260.pnts b/apps/story-map/public/tileset/points/r44260.pnts
new file mode 100644
index 00000000..18e9ce4f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44260.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44261.pnts b/apps/story-map/public/tileset/points/r44261.pnts
new file mode 100644
index 00000000..0954f2d7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44261.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44262.pnts b/apps/story-map/public/tileset/points/r44262.pnts
new file mode 100644
index 00000000..1ffef401
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44262.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44263.pnts b/apps/story-map/public/tileset/points/r44263.pnts
new file mode 100644
index 00000000..10b1abd3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44263.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44264.pnts b/apps/story-map/public/tileset/points/r44264.pnts
new file mode 100644
index 00000000..e280795a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44264.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44265.pnts b/apps/story-map/public/tileset/points/r44265.pnts
new file mode 100644
index 00000000..633cc50f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44265.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44266.pnts b/apps/story-map/public/tileset/points/r44266.pnts
new file mode 100644
index 00000000..4eb6a97e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44266.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44267.pnts b/apps/story-map/public/tileset/points/r44267.pnts
new file mode 100644
index 00000000..17ef2cbf
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44267.pnts differ
diff --git a/apps/story-map/public/tileset/points/r444.pnts b/apps/story-map/public/tileset/points/r444.pnts
new file mode 100644
index 00000000..6599ea1f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r444.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4442.pnts b/apps/story-map/public/tileset/points/r4442.pnts
new file mode 100644
index 00000000..fa799d7e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4442.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44420.pnts b/apps/story-map/public/tileset/points/r44420.pnts
new file mode 100644
index 00000000..de3c4ab8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44420.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44422.pnts b/apps/story-map/public/tileset/points/r44422.pnts
new file mode 100644
index 00000000..d5597c85
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44422.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44424.pnts b/apps/story-map/public/tileset/points/r44424.pnts
new file mode 100644
index 00000000..6005341c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44424.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44426.pnts b/apps/story-map/public/tileset/points/r44426.pnts
new file mode 100644
index 00000000..48e67722
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44426.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4444.pnts b/apps/story-map/public/tileset/points/r4444.pnts
new file mode 100644
index 00000000..b503ed30
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4444.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4446.pnts b/apps/story-map/public/tileset/points/r4446.pnts
new file mode 100644
index 00000000..ce1cede2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4446.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44460.pnts b/apps/story-map/public/tileset/points/r44460.pnts
new file mode 100644
index 00000000..d9a7a143
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44460.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44462.pnts b/apps/story-map/public/tileset/points/r44462.pnts
new file mode 100644
index 00000000..fa71ee71
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44462.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44464.pnts b/apps/story-map/public/tileset/points/r44464.pnts
new file mode 100644
index 00000000..d8bf6637
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44464.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44466.pnts b/apps/story-map/public/tileset/points/r44466.pnts
new file mode 100644
index 00000000..6f7db27d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44466.pnts differ
diff --git a/apps/story-map/public/tileset/points/r446.pnts b/apps/story-map/public/tileset/points/r446.pnts
new file mode 100644
index 00000000..d347b667
Binary files /dev/null and b/apps/story-map/public/tileset/points/r446.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4460.pnts b/apps/story-map/public/tileset/points/r4460.pnts
new file mode 100644
index 00000000..87a59d38
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4460.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44600.pnts b/apps/story-map/public/tileset/points/r44600.pnts
new file mode 100644
index 00000000..e1ee6d87
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44600.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44602.pnts b/apps/story-map/public/tileset/points/r44602.pnts
new file mode 100644
index 00000000..40458618
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44602.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44604.pnts b/apps/story-map/public/tileset/points/r44604.pnts
new file mode 100644
index 00000000..bb8b420a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44604.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44606.pnts b/apps/story-map/public/tileset/points/r44606.pnts
new file mode 100644
index 00000000..8a40bcd9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44606.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4462.pnts b/apps/story-map/public/tileset/points/r4462.pnts
new file mode 100644
index 00000000..6e4741a2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4462.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44620.pnts b/apps/story-map/public/tileset/points/r44620.pnts
new file mode 100644
index 00000000..ffa64fb0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44620.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44622.pnts b/apps/story-map/public/tileset/points/r44622.pnts
new file mode 100644
index 00000000..56658d98
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44622.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44623.pnts b/apps/story-map/public/tileset/points/r44623.pnts
new file mode 100644
index 00000000..67adebc7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44623.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44624.pnts b/apps/story-map/public/tileset/points/r44624.pnts
new file mode 100644
index 00000000..dfac7d84
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44624.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44625.pnts b/apps/story-map/public/tileset/points/r44625.pnts
new file mode 100644
index 00000000..c456741e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44625.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44626.pnts b/apps/story-map/public/tileset/points/r44626.pnts
new file mode 100644
index 00000000..14a48245
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44626.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44627.pnts b/apps/story-map/public/tileset/points/r44627.pnts
new file mode 100644
index 00000000..42b68a32
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44627.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4464.pnts b/apps/story-map/public/tileset/points/r4464.pnts
new file mode 100644
index 00000000..e4c97602
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4464.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44640.pnts b/apps/story-map/public/tileset/points/r44640.pnts
new file mode 100644
index 00000000..f5f94f8a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44640.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44642.pnts b/apps/story-map/public/tileset/points/r44642.pnts
new file mode 100644
index 00000000..f623f047
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44642.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44644.pnts b/apps/story-map/public/tileset/points/r44644.pnts
new file mode 100644
index 00000000..3fdbcca9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44644.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44646.pnts b/apps/story-map/public/tileset/points/r44646.pnts
new file mode 100644
index 00000000..8f10cdcf
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44646.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4466.pnts b/apps/story-map/public/tileset/points/r4466.pnts
new file mode 100644
index 00000000..1e253d67
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4466.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44660.pnts b/apps/story-map/public/tileset/points/r44660.pnts
new file mode 100644
index 00000000..15f003e4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44660.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44662.pnts b/apps/story-map/public/tileset/points/r44662.pnts
new file mode 100644
index 00000000..2159f2de
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44662.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44664.pnts b/apps/story-map/public/tileset/points/r44664.pnts
new file mode 100644
index 00000000..28e9adbb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44664.pnts differ
diff --git a/apps/story-map/public/tileset/points/r44666.pnts b/apps/story-map/public/tileset/points/r44666.pnts
new file mode 100644
index 00000000..fb6378be
Binary files /dev/null and b/apps/story-map/public/tileset/points/r44666.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46.pnts b/apps/story-map/public/tileset/points/r46.pnts
new file mode 100644
index 00000000..0b528618
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46.pnts differ
diff --git a/apps/story-map/public/tileset/points/r460.pnts b/apps/story-map/public/tileset/points/r460.pnts
new file mode 100644
index 00000000..4f81694d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r460.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4600.pnts b/apps/story-map/public/tileset/points/r4600.pnts
new file mode 100644
index 00000000..99e79c0d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4600.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46000.pnts b/apps/story-map/public/tileset/points/r46000.pnts
new file mode 100644
index 00000000..27414c3d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46000.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46001.pnts b/apps/story-map/public/tileset/points/r46001.pnts
new file mode 100644
index 00000000..3164e055
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46001.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46002.pnts b/apps/story-map/public/tileset/points/r46002.pnts
new file mode 100644
index 00000000..94fccd74
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46002.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46003.pnts b/apps/story-map/public/tileset/points/r46003.pnts
new file mode 100644
index 00000000..ab1d06db
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46003.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46004.pnts b/apps/story-map/public/tileset/points/r46004.pnts
new file mode 100644
index 00000000..518c7aec
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46004.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46005.pnts b/apps/story-map/public/tileset/points/r46005.pnts
new file mode 100644
index 00000000..50a8ab0a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46005.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46006.pnts b/apps/story-map/public/tileset/points/r46006.pnts
new file mode 100644
index 00000000..a0a25e41
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46006.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46007.pnts b/apps/story-map/public/tileset/points/r46007.pnts
new file mode 100644
index 00000000..645e1584
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46007.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4602.pnts b/apps/story-map/public/tileset/points/r4602.pnts
new file mode 100644
index 00000000..1238c3a0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4602.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46020.pnts b/apps/story-map/public/tileset/points/r46020.pnts
new file mode 100644
index 00000000..fab12bac
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46020.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46022.pnts b/apps/story-map/public/tileset/points/r46022.pnts
new file mode 100644
index 00000000..8c6fca3a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46022.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46023.pnts b/apps/story-map/public/tileset/points/r46023.pnts
new file mode 100644
index 00000000..d735d984
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46023.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46024.pnts b/apps/story-map/public/tileset/points/r46024.pnts
new file mode 100644
index 00000000..d68f6cdd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46024.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46026.pnts b/apps/story-map/public/tileset/points/r46026.pnts
new file mode 100644
index 00000000..864756a3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46026.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46027.pnts b/apps/story-map/public/tileset/points/r46027.pnts
new file mode 100644
index 00000000..aab67ab3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46027.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4604.pnts b/apps/story-map/public/tileset/points/r4604.pnts
new file mode 100644
index 00000000..756feed1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4604.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46040.pnts b/apps/story-map/public/tileset/points/r46040.pnts
new file mode 100644
index 00000000..b45ad644
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46040.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46041.pnts b/apps/story-map/public/tileset/points/r46041.pnts
new file mode 100644
index 00000000..696ef85e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46041.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46042.pnts b/apps/story-map/public/tileset/points/r46042.pnts
new file mode 100644
index 00000000..71b42510
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46042.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46043.pnts b/apps/story-map/public/tileset/points/r46043.pnts
new file mode 100644
index 00000000..5876da2e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46043.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46044.pnts b/apps/story-map/public/tileset/points/r46044.pnts
new file mode 100644
index 00000000..2c5b2814
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46044.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46045.pnts b/apps/story-map/public/tileset/points/r46045.pnts
new file mode 100644
index 00000000..28cebb86
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46045.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46046.pnts b/apps/story-map/public/tileset/points/r46046.pnts
new file mode 100644
index 00000000..496158cb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46046.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46047.pnts b/apps/story-map/public/tileset/points/r46047.pnts
new file mode 100644
index 00000000..425e1a74
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46047.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4606.pnts b/apps/story-map/public/tileset/points/r4606.pnts
new file mode 100644
index 00000000..bdbb7672
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4606.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46060.pnts b/apps/story-map/public/tileset/points/r46060.pnts
new file mode 100644
index 00000000..e7b57982
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46060.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46061.pnts b/apps/story-map/public/tileset/points/r46061.pnts
new file mode 100644
index 00000000..fed4ed1b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46061.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46062.pnts b/apps/story-map/public/tileset/points/r46062.pnts
new file mode 100644
index 00000000..df135653
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46062.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46064.pnts b/apps/story-map/public/tileset/points/r46064.pnts
new file mode 100644
index 00000000..c7403c12
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46064.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46065.pnts b/apps/story-map/public/tileset/points/r46065.pnts
new file mode 100644
index 00000000..31ae405b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46065.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46066.pnts b/apps/story-map/public/tileset/points/r46066.pnts
new file mode 100644
index 00000000..03bc9b3b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46066.pnts differ
diff --git a/apps/story-map/public/tileset/points/r462.pnts b/apps/story-map/public/tileset/points/r462.pnts
new file mode 100644
index 00000000..588c2da4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r462.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4620.pnts b/apps/story-map/public/tileset/points/r4620.pnts
new file mode 100644
index 00000000..e7de9123
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4620.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46200.pnts b/apps/story-map/public/tileset/points/r46200.pnts
new file mode 100644
index 00000000..0796c53c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46200.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46201.pnts b/apps/story-map/public/tileset/points/r46201.pnts
new file mode 100644
index 00000000..a4db8989
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46201.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46202.pnts b/apps/story-map/public/tileset/points/r46202.pnts
new file mode 100644
index 00000000..8aea87d7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46202.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46204.pnts b/apps/story-map/public/tileset/points/r46204.pnts
new file mode 100644
index 00000000..1672a658
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46204.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46205.pnts b/apps/story-map/public/tileset/points/r46205.pnts
new file mode 100644
index 00000000..0e057f78
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46205.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46206.pnts b/apps/story-map/public/tileset/points/r46206.pnts
new file mode 100644
index 00000000..7152d6d1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46206.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4622.pnts b/apps/story-map/public/tileset/points/r4622.pnts
new file mode 100644
index 00000000..3661e617
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4622.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46220.pnts b/apps/story-map/public/tileset/points/r46220.pnts
new file mode 100644
index 00000000..6b7d2cf0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46220.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46222.pnts b/apps/story-map/public/tileset/points/r46222.pnts
new file mode 100644
index 00000000..0faf72d4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46222.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46224.pnts b/apps/story-map/public/tileset/points/r46224.pnts
new file mode 100644
index 00000000..3b9efde2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46224.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46226.pnts b/apps/story-map/public/tileset/points/r46226.pnts
new file mode 100644
index 00000000..911e11ba
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46226.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46227.pnts b/apps/story-map/public/tileset/points/r46227.pnts
new file mode 100644
index 00000000..3f364b19
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46227.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4624.pnts b/apps/story-map/public/tileset/points/r4624.pnts
new file mode 100644
index 00000000..f4fbc870
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4624.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46240.pnts b/apps/story-map/public/tileset/points/r46240.pnts
new file mode 100644
index 00000000..44b121da
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46240.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46241.pnts b/apps/story-map/public/tileset/points/r46241.pnts
new file mode 100644
index 00000000..10d9797d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46241.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46242.pnts b/apps/story-map/public/tileset/points/r46242.pnts
new file mode 100644
index 00000000..62d76870
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46242.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46243.pnts b/apps/story-map/public/tileset/points/r46243.pnts
new file mode 100644
index 00000000..a1732f52
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46243.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46244.pnts b/apps/story-map/public/tileset/points/r46244.pnts
new file mode 100644
index 00000000..19b09c70
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46244.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46245.pnts b/apps/story-map/public/tileset/points/r46245.pnts
new file mode 100644
index 00000000..e3347720
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46245.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46246.pnts b/apps/story-map/public/tileset/points/r46246.pnts
new file mode 100644
index 00000000..4f0fb85b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46246.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46247.pnts b/apps/story-map/public/tileset/points/r46247.pnts
new file mode 100644
index 00000000..ab6b8634
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46247.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4626.pnts b/apps/story-map/public/tileset/points/r4626.pnts
new file mode 100644
index 00000000..303ca0e8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4626.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46260.pnts b/apps/story-map/public/tileset/points/r46260.pnts
new file mode 100644
index 00000000..cbf41410
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46260.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46261.pnts b/apps/story-map/public/tileset/points/r46261.pnts
new file mode 100644
index 00000000..eafb40ce
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46261.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46262.pnts b/apps/story-map/public/tileset/points/r46262.pnts
new file mode 100644
index 00000000..7cb049b9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46262.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46263.pnts b/apps/story-map/public/tileset/points/r46263.pnts
new file mode 100644
index 00000000..a81cde97
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46263.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46264.pnts b/apps/story-map/public/tileset/points/r46264.pnts
new file mode 100644
index 00000000..57046422
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46264.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46265.pnts b/apps/story-map/public/tileset/points/r46265.pnts
new file mode 100644
index 00000000..44137b2e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46265.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46266.pnts b/apps/story-map/public/tileset/points/r46266.pnts
new file mode 100644
index 00000000..acf9b003
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46266.pnts differ
diff --git a/apps/story-map/public/tileset/points/r464.pnts b/apps/story-map/public/tileset/points/r464.pnts
new file mode 100644
index 00000000..181e323b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r464.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4640.pnts b/apps/story-map/public/tileset/points/r4640.pnts
new file mode 100644
index 00000000..50a448bb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4640.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46400.pnts b/apps/story-map/public/tileset/points/r46400.pnts
new file mode 100644
index 00000000..2c678155
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46400.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46401.pnts b/apps/story-map/public/tileset/points/r46401.pnts
new file mode 100644
index 00000000..6e1e9a5e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46401.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46402.pnts b/apps/story-map/public/tileset/points/r46402.pnts
new file mode 100644
index 00000000..16cc8fb3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46402.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46403.pnts b/apps/story-map/public/tileset/points/r46403.pnts
new file mode 100644
index 00000000..f472e9e7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46403.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46404.pnts b/apps/story-map/public/tileset/points/r46404.pnts
new file mode 100644
index 00000000..6b06c03c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46404.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46405.pnts b/apps/story-map/public/tileset/points/r46405.pnts
new file mode 100644
index 00000000..2dcac29c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46405.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46406.pnts b/apps/story-map/public/tileset/points/r46406.pnts
new file mode 100644
index 00000000..cb657c54
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46406.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46407.pnts b/apps/story-map/public/tileset/points/r46407.pnts
new file mode 100644
index 00000000..c077e757
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46407.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4642.pnts b/apps/story-map/public/tileset/points/r4642.pnts
new file mode 100644
index 00000000..9a34f506
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4642.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46420.pnts b/apps/story-map/public/tileset/points/r46420.pnts
new file mode 100644
index 00000000..fec15706
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46420.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46421.pnts b/apps/story-map/public/tileset/points/r46421.pnts
new file mode 100644
index 00000000..3027817e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46421.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46422.pnts b/apps/story-map/public/tileset/points/r46422.pnts
new file mode 100644
index 00000000..4cd6d11c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46422.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46423.pnts b/apps/story-map/public/tileset/points/r46423.pnts
new file mode 100644
index 00000000..f2670d51
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46423.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46424.pnts b/apps/story-map/public/tileset/points/r46424.pnts
new file mode 100644
index 00000000..af77c590
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46424.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46425.pnts b/apps/story-map/public/tileset/points/r46425.pnts
new file mode 100644
index 00000000..de1e5c84
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46425.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46426.pnts b/apps/story-map/public/tileset/points/r46426.pnts
new file mode 100644
index 00000000..8a10103d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46426.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46427.pnts b/apps/story-map/public/tileset/points/r46427.pnts
new file mode 100644
index 00000000..33779f56
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46427.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4644.pnts b/apps/story-map/public/tileset/points/r4644.pnts
new file mode 100644
index 00000000..19bd8a01
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4644.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46440.pnts b/apps/story-map/public/tileset/points/r46440.pnts
new file mode 100644
index 00000000..d7760e96
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46440.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46441.pnts b/apps/story-map/public/tileset/points/r46441.pnts
new file mode 100644
index 00000000..b11d9c0d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46441.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46442.pnts b/apps/story-map/public/tileset/points/r46442.pnts
new file mode 100644
index 00000000..48776623
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46442.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46443.pnts b/apps/story-map/public/tileset/points/r46443.pnts
new file mode 100644
index 00000000..b02e0e91
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46443.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46444.pnts b/apps/story-map/public/tileset/points/r46444.pnts
new file mode 100644
index 00000000..07347ac9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46444.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46446.pnts b/apps/story-map/public/tileset/points/r46446.pnts
new file mode 100644
index 00000000..93bec385
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46446.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46447.pnts b/apps/story-map/public/tileset/points/r46447.pnts
new file mode 100644
index 00000000..fc0b47f2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46447.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4646.pnts b/apps/story-map/public/tileset/points/r4646.pnts
new file mode 100644
index 00000000..c64b3e21
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4646.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46460.pnts b/apps/story-map/public/tileset/points/r46460.pnts
new file mode 100644
index 00000000..e31f0c07
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46460.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46461.pnts b/apps/story-map/public/tileset/points/r46461.pnts
new file mode 100644
index 00000000..7ee55740
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46461.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46462.pnts b/apps/story-map/public/tileset/points/r46462.pnts
new file mode 100644
index 00000000..efcd4ba0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46462.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46463.pnts b/apps/story-map/public/tileset/points/r46463.pnts
new file mode 100644
index 00000000..f2e03e5c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46463.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46464.pnts b/apps/story-map/public/tileset/points/r46464.pnts
new file mode 100644
index 00000000..1fe01880
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46464.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46465.pnts b/apps/story-map/public/tileset/points/r46465.pnts
new file mode 100644
index 00000000..8afeb90b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46465.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46466.pnts b/apps/story-map/public/tileset/points/r46466.pnts
new file mode 100644
index 00000000..383a3746
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46466.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46467.pnts b/apps/story-map/public/tileset/points/r46467.pnts
new file mode 100644
index 00000000..7345df4a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46467.pnts differ
diff --git a/apps/story-map/public/tileset/points/r466.pnts b/apps/story-map/public/tileset/points/r466.pnts
new file mode 100644
index 00000000..20058346
Binary files /dev/null and b/apps/story-map/public/tileset/points/r466.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4660.pnts b/apps/story-map/public/tileset/points/r4660.pnts
new file mode 100644
index 00000000..1a7f6377
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4660.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46600.pnts b/apps/story-map/public/tileset/points/r46600.pnts
new file mode 100644
index 00000000..ea3122bb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46600.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46602.pnts b/apps/story-map/public/tileset/points/r46602.pnts
new file mode 100644
index 00000000..3f78b766
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46602.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46603.pnts b/apps/story-map/public/tileset/points/r46603.pnts
new file mode 100644
index 00000000..2bb07241
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46603.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46604.pnts b/apps/story-map/public/tileset/points/r46604.pnts
new file mode 100644
index 00000000..a6e32da7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46604.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46605.pnts b/apps/story-map/public/tileset/points/r46605.pnts
new file mode 100644
index 00000000..a56eae27
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46605.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46606.pnts b/apps/story-map/public/tileset/points/r46606.pnts
new file mode 100644
index 00000000..e0a2ae25
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46606.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46607.pnts b/apps/story-map/public/tileset/points/r46607.pnts
new file mode 100644
index 00000000..b5b9997c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46607.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4662.pnts b/apps/story-map/public/tileset/points/r4662.pnts
new file mode 100644
index 00000000..2e6453db
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4662.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46620.pnts b/apps/story-map/public/tileset/points/r46620.pnts
new file mode 100644
index 00000000..bb0af179
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46620.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46621.pnts b/apps/story-map/public/tileset/points/r46621.pnts
new file mode 100644
index 00000000..ea3b4c33
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46621.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46622.pnts b/apps/story-map/public/tileset/points/r46622.pnts
new file mode 100644
index 00000000..c6ec64ff
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46622.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46623.pnts b/apps/story-map/public/tileset/points/r46623.pnts
new file mode 100644
index 00000000..4a36a344
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46623.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46624.pnts b/apps/story-map/public/tileset/points/r46624.pnts
new file mode 100644
index 00000000..a72a62a6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46624.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46626.pnts b/apps/story-map/public/tileset/points/r46626.pnts
new file mode 100644
index 00000000..c55014a3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46626.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4664.pnts b/apps/story-map/public/tileset/points/r4664.pnts
new file mode 100644
index 00000000..65f6f4ab
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4664.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46640.pnts b/apps/story-map/public/tileset/points/r46640.pnts
new file mode 100644
index 00000000..9eda299d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46640.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46641.pnts b/apps/story-map/public/tileset/points/r46641.pnts
new file mode 100644
index 00000000..4ba4df83
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46641.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46642.pnts b/apps/story-map/public/tileset/points/r46642.pnts
new file mode 100644
index 00000000..0ea238f8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46642.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46643.pnts b/apps/story-map/public/tileset/points/r46643.pnts
new file mode 100644
index 00000000..f62369e0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46643.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46644.pnts b/apps/story-map/public/tileset/points/r46644.pnts
new file mode 100644
index 00000000..54366954
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46644.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46646.pnts b/apps/story-map/public/tileset/points/r46646.pnts
new file mode 100644
index 00000000..1402112d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46646.pnts differ
diff --git a/apps/story-map/public/tileset/points/r4666.pnts b/apps/story-map/public/tileset/points/r4666.pnts
new file mode 100644
index 00000000..d7a4f74d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r4666.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46660.pnts b/apps/story-map/public/tileset/points/r46660.pnts
new file mode 100644
index 00000000..b44685f7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46660.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46662.pnts b/apps/story-map/public/tileset/points/r46662.pnts
new file mode 100644
index 00000000..8520128c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46662.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46664.pnts b/apps/story-map/public/tileset/points/r46664.pnts
new file mode 100644
index 00000000..708eadc9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46664.pnts differ
diff --git a/apps/story-map/public/tileset/points/r46666.pnts b/apps/story-map/public/tileset/points/r46666.pnts
new file mode 100644
index 00000000..ac1a9a30
Binary files /dev/null and b/apps/story-map/public/tileset/points/r46666.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6.pnts b/apps/story-map/public/tileset/points/r6.pnts
new file mode 100644
index 00000000..338310c9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60.pnts b/apps/story-map/public/tileset/points/r60.pnts
new file mode 100644
index 00000000..59e1ba19
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60.pnts differ
diff --git a/apps/story-map/public/tileset/points/r600.pnts b/apps/story-map/public/tileset/points/r600.pnts
new file mode 100644
index 00000000..fb632d10
Binary files /dev/null and b/apps/story-map/public/tileset/points/r600.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6000.pnts b/apps/story-map/public/tileset/points/r6000.pnts
new file mode 100644
index 00000000..705080cb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6000.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60000.pnts b/apps/story-map/public/tileset/points/r60000.pnts
new file mode 100644
index 00000000..dd6b6381
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60000.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60001.pnts b/apps/story-map/public/tileset/points/r60001.pnts
new file mode 100644
index 00000000..5eca0eb0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60001.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60002.pnts b/apps/story-map/public/tileset/points/r60002.pnts
new file mode 100644
index 00000000..a8d9d4d2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60002.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60003.pnts b/apps/story-map/public/tileset/points/r60003.pnts
new file mode 100644
index 00000000..92b9ae37
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60003.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60005.pnts b/apps/story-map/public/tileset/points/r60005.pnts
new file mode 100644
index 00000000..7628b9b2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60005.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60006.pnts b/apps/story-map/public/tileset/points/r60006.pnts
new file mode 100644
index 00000000..b879ece5
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60006.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60007.pnts b/apps/story-map/public/tileset/points/r60007.pnts
new file mode 100644
index 00000000..18efee4f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60007.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6002.pnts b/apps/story-map/public/tileset/points/r6002.pnts
new file mode 100644
index 00000000..66db9d41
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6002.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60020.pnts b/apps/story-map/public/tileset/points/r60020.pnts
new file mode 100644
index 00000000..b40f1c1d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60020.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60021.pnts b/apps/story-map/public/tileset/points/r60021.pnts
new file mode 100644
index 00000000..16b684ae
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60021.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60022.pnts b/apps/story-map/public/tileset/points/r60022.pnts
new file mode 100644
index 00000000..74dd1822
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60022.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60023.pnts b/apps/story-map/public/tileset/points/r60023.pnts
new file mode 100644
index 00000000..1438940c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60023.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60024.pnts b/apps/story-map/public/tileset/points/r60024.pnts
new file mode 100644
index 00000000..ad0e1c91
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60024.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60025.pnts b/apps/story-map/public/tileset/points/r60025.pnts
new file mode 100644
index 00000000..50cdc9af
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60025.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60026.pnts b/apps/story-map/public/tileset/points/r60026.pnts
new file mode 100644
index 00000000..d1e7104c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60026.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60027.pnts b/apps/story-map/public/tileset/points/r60027.pnts
new file mode 100644
index 00000000..a121c415
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60027.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6004.pnts b/apps/story-map/public/tileset/points/r6004.pnts
new file mode 100644
index 00000000..c94dac11
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6004.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60040.pnts b/apps/story-map/public/tileset/points/r60040.pnts
new file mode 100644
index 00000000..865b1ecf
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60040.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60041.pnts b/apps/story-map/public/tileset/points/r60041.pnts
new file mode 100644
index 00000000..4be5c372
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60041.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60042.pnts b/apps/story-map/public/tileset/points/r60042.pnts
new file mode 100644
index 00000000..af971dfc
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60042.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60043.pnts b/apps/story-map/public/tileset/points/r60043.pnts
new file mode 100644
index 00000000..81dcd003
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60043.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60044.pnts b/apps/story-map/public/tileset/points/r60044.pnts
new file mode 100644
index 00000000..76fcf7ae
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60044.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60045.pnts b/apps/story-map/public/tileset/points/r60045.pnts
new file mode 100644
index 00000000..e961625b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60045.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60046.pnts b/apps/story-map/public/tileset/points/r60046.pnts
new file mode 100644
index 00000000..2dd255b4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60046.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60047.pnts b/apps/story-map/public/tileset/points/r60047.pnts
new file mode 100644
index 00000000..08c3f66b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60047.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6006.pnts b/apps/story-map/public/tileset/points/r6006.pnts
new file mode 100644
index 00000000..21d3fc2b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6006.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60060.pnts b/apps/story-map/public/tileset/points/r60060.pnts
new file mode 100644
index 00000000..41c9f1b4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60060.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60061.pnts b/apps/story-map/public/tileset/points/r60061.pnts
new file mode 100644
index 00000000..b55136e7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60061.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60062.pnts b/apps/story-map/public/tileset/points/r60062.pnts
new file mode 100644
index 00000000..5887d75b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60062.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60063.pnts b/apps/story-map/public/tileset/points/r60063.pnts
new file mode 100644
index 00000000..aa96a8c1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60063.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60064.pnts b/apps/story-map/public/tileset/points/r60064.pnts
new file mode 100644
index 00000000..47808c8a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60064.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60065.pnts b/apps/story-map/public/tileset/points/r60065.pnts
new file mode 100644
index 00000000..6b666f0d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60065.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60066.pnts b/apps/story-map/public/tileset/points/r60066.pnts
new file mode 100644
index 00000000..ba703e9f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60066.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60067.pnts b/apps/story-map/public/tileset/points/r60067.pnts
new file mode 100644
index 00000000..97e8f247
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60067.pnts differ
diff --git a/apps/story-map/public/tileset/points/r602.pnts b/apps/story-map/public/tileset/points/r602.pnts
new file mode 100644
index 00000000..91391528
Binary files /dev/null and b/apps/story-map/public/tileset/points/r602.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6020.pnts b/apps/story-map/public/tileset/points/r6020.pnts
new file mode 100644
index 00000000..d2542b79
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6020.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60200.pnts b/apps/story-map/public/tileset/points/r60200.pnts
new file mode 100644
index 00000000..16455d4e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60200.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60202.pnts b/apps/story-map/public/tileset/points/r60202.pnts
new file mode 100644
index 00000000..e57d191c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60202.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60204.pnts b/apps/story-map/public/tileset/points/r60204.pnts
new file mode 100644
index 00000000..13643380
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60204.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60205.pnts b/apps/story-map/public/tileset/points/r60205.pnts
new file mode 100644
index 00000000..e8aada92
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60205.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60206.pnts b/apps/story-map/public/tileset/points/r60206.pnts
new file mode 100644
index 00000000..0e8f1220
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60206.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60207.pnts b/apps/story-map/public/tileset/points/r60207.pnts
new file mode 100644
index 00000000..8742647d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60207.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6022.pnts b/apps/story-map/public/tileset/points/r6022.pnts
new file mode 100644
index 00000000..1bc7aee6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6022.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60220.pnts b/apps/story-map/public/tileset/points/r60220.pnts
new file mode 100644
index 00000000..cc85ea52
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60220.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60221.pnts b/apps/story-map/public/tileset/points/r60221.pnts
new file mode 100644
index 00000000..3960f1d0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60221.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60222.pnts b/apps/story-map/public/tileset/points/r60222.pnts
new file mode 100644
index 00000000..f11ca8e0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60222.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60223.pnts b/apps/story-map/public/tileset/points/r60223.pnts
new file mode 100644
index 00000000..ba1162d3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60223.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60224.pnts b/apps/story-map/public/tileset/points/r60224.pnts
new file mode 100644
index 00000000..89921ad6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60224.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60225.pnts b/apps/story-map/public/tileset/points/r60225.pnts
new file mode 100644
index 00000000..4c601679
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60225.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60226.pnts b/apps/story-map/public/tileset/points/r60226.pnts
new file mode 100644
index 00000000..b9c46b46
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60226.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60227.pnts b/apps/story-map/public/tileset/points/r60227.pnts
new file mode 100644
index 00000000..138c3a8d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60227.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6024.pnts b/apps/story-map/public/tileset/points/r6024.pnts
new file mode 100644
index 00000000..65898e75
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6024.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60240.pnts b/apps/story-map/public/tileset/points/r60240.pnts
new file mode 100644
index 00000000..1df2c3bb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60240.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60241.pnts b/apps/story-map/public/tileset/points/r60241.pnts
new file mode 100644
index 00000000..bfa80050
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60241.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60242.pnts b/apps/story-map/public/tileset/points/r60242.pnts
new file mode 100644
index 00000000..2cbecd01
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60242.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60243.pnts b/apps/story-map/public/tileset/points/r60243.pnts
new file mode 100644
index 00000000..0562d2b0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60243.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60244.pnts b/apps/story-map/public/tileset/points/r60244.pnts
new file mode 100644
index 00000000..b6f8d6d1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60244.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60245.pnts b/apps/story-map/public/tileset/points/r60245.pnts
new file mode 100644
index 00000000..667a7531
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60245.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60246.pnts b/apps/story-map/public/tileset/points/r60246.pnts
new file mode 100644
index 00000000..33cf8a84
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60246.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60247.pnts b/apps/story-map/public/tileset/points/r60247.pnts
new file mode 100644
index 00000000..0ea24579
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60247.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6026.pnts b/apps/story-map/public/tileset/points/r6026.pnts
new file mode 100644
index 00000000..776079d0
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6026.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60260.pnts b/apps/story-map/public/tileset/points/r60260.pnts
new file mode 100644
index 00000000..0858e28c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60260.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60261.pnts b/apps/story-map/public/tileset/points/r60261.pnts
new file mode 100644
index 00000000..c5a6465d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60261.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60262.pnts b/apps/story-map/public/tileset/points/r60262.pnts
new file mode 100644
index 00000000..a1eef36c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60262.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60263.pnts b/apps/story-map/public/tileset/points/r60263.pnts
new file mode 100644
index 00000000..92654756
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60263.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60264.pnts b/apps/story-map/public/tileset/points/r60264.pnts
new file mode 100644
index 00000000..50d0b2ce
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60264.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60265.pnts b/apps/story-map/public/tileset/points/r60265.pnts
new file mode 100644
index 00000000..54e06ff4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60265.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60266.pnts b/apps/story-map/public/tileset/points/r60266.pnts
new file mode 100644
index 00000000..dfb5076e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60266.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60267.pnts b/apps/story-map/public/tileset/points/r60267.pnts
new file mode 100644
index 00000000..7c4b3f2d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60267.pnts differ
diff --git a/apps/story-map/public/tileset/points/r604.pnts b/apps/story-map/public/tileset/points/r604.pnts
new file mode 100644
index 00000000..e27b009b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r604.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6040.pnts b/apps/story-map/public/tileset/points/r6040.pnts
new file mode 100644
index 00000000..1013235d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6040.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60400.pnts b/apps/story-map/public/tileset/points/r60400.pnts
new file mode 100644
index 00000000..c750a0bc
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60400.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60402.pnts b/apps/story-map/public/tileset/points/r60402.pnts
new file mode 100644
index 00000000..d3f927a8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60402.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60403.pnts b/apps/story-map/public/tileset/points/r60403.pnts
new file mode 100644
index 00000000..9bd4a2e6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60403.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60404.pnts b/apps/story-map/public/tileset/points/r60404.pnts
new file mode 100644
index 00000000..1f55daaa
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60404.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60405.pnts b/apps/story-map/public/tileset/points/r60405.pnts
new file mode 100644
index 00000000..81e6f791
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60405.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60406.pnts b/apps/story-map/public/tileset/points/r60406.pnts
new file mode 100644
index 00000000..2621cd2f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60406.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6042.pnts b/apps/story-map/public/tileset/points/r6042.pnts
new file mode 100644
index 00000000..e66ef4b3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6042.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60420.pnts b/apps/story-map/public/tileset/points/r60420.pnts
new file mode 100644
index 00000000..98e339e5
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60420.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60421.pnts b/apps/story-map/public/tileset/points/r60421.pnts
new file mode 100644
index 00000000..ffac12ed
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60421.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60422.pnts b/apps/story-map/public/tileset/points/r60422.pnts
new file mode 100644
index 00000000..5f781a11
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60422.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60423.pnts b/apps/story-map/public/tileset/points/r60423.pnts
new file mode 100644
index 00000000..a87372ff
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60423.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60424.pnts b/apps/story-map/public/tileset/points/r60424.pnts
new file mode 100644
index 00000000..651a74d4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60424.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60425.pnts b/apps/story-map/public/tileset/points/r60425.pnts
new file mode 100644
index 00000000..255ae523
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60425.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60426.pnts b/apps/story-map/public/tileset/points/r60426.pnts
new file mode 100644
index 00000000..3534f1dd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60426.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60427.pnts b/apps/story-map/public/tileset/points/r60427.pnts
new file mode 100644
index 00000000..1bc98ed9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60427.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6044.pnts b/apps/story-map/public/tileset/points/r6044.pnts
new file mode 100644
index 00000000..a39d4abb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6044.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60440.pnts b/apps/story-map/public/tileset/points/r60440.pnts
new file mode 100644
index 00000000..cb6c456a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60440.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60441.pnts b/apps/story-map/public/tileset/points/r60441.pnts
new file mode 100644
index 00000000..9efb7dab
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60441.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60442.pnts b/apps/story-map/public/tileset/points/r60442.pnts
new file mode 100644
index 00000000..4ce69bc8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60442.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60443.pnts b/apps/story-map/public/tileset/points/r60443.pnts
new file mode 100644
index 00000000..ad809798
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60443.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60444.pnts b/apps/story-map/public/tileset/points/r60444.pnts
new file mode 100644
index 00000000..883f0337
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60444.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60445.pnts b/apps/story-map/public/tileset/points/r60445.pnts
new file mode 100644
index 00000000..ab47f2a8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60445.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60446.pnts b/apps/story-map/public/tileset/points/r60446.pnts
new file mode 100644
index 00000000..5056ced7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60446.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60447.pnts b/apps/story-map/public/tileset/points/r60447.pnts
new file mode 100644
index 00000000..d08a30ae
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60447.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6046.pnts b/apps/story-map/public/tileset/points/r6046.pnts
new file mode 100644
index 00000000..e4ffc17b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6046.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60460.pnts b/apps/story-map/public/tileset/points/r60460.pnts
new file mode 100644
index 00000000..67f1b604
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60460.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60462.pnts b/apps/story-map/public/tileset/points/r60462.pnts
new file mode 100644
index 00000000..c0315757
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60462.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60464.pnts b/apps/story-map/public/tileset/points/r60464.pnts
new file mode 100644
index 00000000..c4e4e034
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60464.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60465.pnts b/apps/story-map/public/tileset/points/r60465.pnts
new file mode 100644
index 00000000..aa0ab6f6
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60465.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60466.pnts b/apps/story-map/public/tileset/points/r60466.pnts
new file mode 100644
index 00000000..43f434e9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60466.pnts differ
diff --git a/apps/story-map/public/tileset/points/r606.pnts b/apps/story-map/public/tileset/points/r606.pnts
new file mode 100644
index 00000000..f228f06c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r606.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6060.pnts b/apps/story-map/public/tileset/points/r6060.pnts
new file mode 100644
index 00000000..3ba8f28c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6060.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60600.pnts b/apps/story-map/public/tileset/points/r60600.pnts
new file mode 100644
index 00000000..9e947d22
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60600.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60601.pnts b/apps/story-map/public/tileset/points/r60601.pnts
new file mode 100644
index 00000000..2b69f6e3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60601.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60602.pnts b/apps/story-map/public/tileset/points/r60602.pnts
new file mode 100644
index 00000000..59a8533c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60602.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60603.pnts b/apps/story-map/public/tileset/points/r60603.pnts
new file mode 100644
index 00000000..01c7ac3c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60603.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60604.pnts b/apps/story-map/public/tileset/points/r60604.pnts
new file mode 100644
index 00000000..4d6fdbec
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60604.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60605.pnts b/apps/story-map/public/tileset/points/r60605.pnts
new file mode 100644
index 00000000..a4e37caf
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60605.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60606.pnts b/apps/story-map/public/tileset/points/r60606.pnts
new file mode 100644
index 00000000..84c0561d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60606.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60607.pnts b/apps/story-map/public/tileset/points/r60607.pnts
new file mode 100644
index 00000000..cec7c33f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60607.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6062.pnts b/apps/story-map/public/tileset/points/r6062.pnts
new file mode 100644
index 00000000..c5388b53
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6062.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6064.pnts b/apps/story-map/public/tileset/points/r6064.pnts
new file mode 100644
index 00000000..20c09dcd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6064.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60640.pnts b/apps/story-map/public/tileset/points/r60640.pnts
new file mode 100644
index 00000000..1e36c9d7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60640.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60641.pnts b/apps/story-map/public/tileset/points/r60641.pnts
new file mode 100644
index 00000000..b2543f77
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60641.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60642.pnts b/apps/story-map/public/tileset/points/r60642.pnts
new file mode 100644
index 00000000..12718c68
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60642.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60643.pnts b/apps/story-map/public/tileset/points/r60643.pnts
new file mode 100644
index 00000000..c0b4eae1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60643.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60644.pnts b/apps/story-map/public/tileset/points/r60644.pnts
new file mode 100644
index 00000000..dcd20cde
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60644.pnts differ
diff --git a/apps/story-map/public/tileset/points/r60646.pnts b/apps/story-map/public/tileset/points/r60646.pnts
new file mode 100644
index 00000000..88e4c95b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r60646.pnts differ
diff --git a/apps/story-map/public/tileset/points/r62.pnts b/apps/story-map/public/tileset/points/r62.pnts
new file mode 100644
index 00000000..ccd801ac
Binary files /dev/null and b/apps/story-map/public/tileset/points/r62.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64.pnts b/apps/story-map/public/tileset/points/r64.pnts
new file mode 100644
index 00000000..0dd0ebcc
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64.pnts differ
diff --git a/apps/story-map/public/tileset/points/r640.pnts b/apps/story-map/public/tileset/points/r640.pnts
new file mode 100644
index 00000000..74e0aa3b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r640.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6400.pnts b/apps/story-map/public/tileset/points/r6400.pnts
new file mode 100644
index 00000000..e3238f70
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6400.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64000.pnts b/apps/story-map/public/tileset/points/r64000.pnts
new file mode 100644
index 00000000..52f4f1f3
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64000.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64001.pnts b/apps/story-map/public/tileset/points/r64001.pnts
new file mode 100644
index 00000000..6d10b4a8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64001.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64002.pnts b/apps/story-map/public/tileset/points/r64002.pnts
new file mode 100644
index 00000000..28f25823
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64002.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64003.pnts b/apps/story-map/public/tileset/points/r64003.pnts
new file mode 100644
index 00000000..3b2e902a
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64003.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64004.pnts b/apps/story-map/public/tileset/points/r64004.pnts
new file mode 100644
index 00000000..2ea8bab1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64004.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64005.pnts b/apps/story-map/public/tileset/points/r64005.pnts
new file mode 100644
index 00000000..3ff92345
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64005.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64006.pnts b/apps/story-map/public/tileset/points/r64006.pnts
new file mode 100644
index 00000000..7d870dde
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64006.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64007.pnts b/apps/story-map/public/tileset/points/r64007.pnts
new file mode 100644
index 00000000..2c0cba8b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64007.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6402.pnts b/apps/story-map/public/tileset/points/r6402.pnts
new file mode 100644
index 00000000..9872a2c9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6402.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64020.pnts b/apps/story-map/public/tileset/points/r64020.pnts
new file mode 100644
index 00000000..74811a6b
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64020.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64021.pnts b/apps/story-map/public/tileset/points/r64021.pnts
new file mode 100644
index 00000000..1ecf352d
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64021.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64022.pnts b/apps/story-map/public/tileset/points/r64022.pnts
new file mode 100644
index 00000000..0033591c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64022.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64023.pnts b/apps/story-map/public/tileset/points/r64023.pnts
new file mode 100644
index 00000000..04eadfe5
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64023.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64024.pnts b/apps/story-map/public/tileset/points/r64024.pnts
new file mode 100644
index 00000000..bd86c9fa
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64024.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64025.pnts b/apps/story-map/public/tileset/points/r64025.pnts
new file mode 100644
index 00000000..e6900f06
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64025.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64026.pnts b/apps/story-map/public/tileset/points/r64026.pnts
new file mode 100644
index 00000000..d5692b00
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64026.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64027.pnts b/apps/story-map/public/tileset/points/r64027.pnts
new file mode 100644
index 00000000..c812a170
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64027.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6404.pnts b/apps/story-map/public/tileset/points/r6404.pnts
new file mode 100644
index 00000000..1063f374
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6404.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64040.pnts b/apps/story-map/public/tileset/points/r64040.pnts
new file mode 100644
index 00000000..69650f63
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64040.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64041.pnts b/apps/story-map/public/tileset/points/r64041.pnts
new file mode 100644
index 00000000..80d5e765
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64041.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64042.pnts b/apps/story-map/public/tileset/points/r64042.pnts
new file mode 100644
index 00000000..87accacb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64042.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64043.pnts b/apps/story-map/public/tileset/points/r64043.pnts
new file mode 100644
index 00000000..16d7c695
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64043.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64044.pnts b/apps/story-map/public/tileset/points/r64044.pnts
new file mode 100644
index 00000000..dfe1cab4
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64044.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64045.pnts b/apps/story-map/public/tileset/points/r64045.pnts
new file mode 100644
index 00000000..c346ddcc
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64045.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64046.pnts b/apps/story-map/public/tileset/points/r64046.pnts
new file mode 100644
index 00000000..a614d079
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64046.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64047.pnts b/apps/story-map/public/tileset/points/r64047.pnts
new file mode 100644
index 00000000..68a39bfd
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64047.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6406.pnts b/apps/story-map/public/tileset/points/r6406.pnts
new file mode 100644
index 00000000..6c094caf
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6406.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64060.pnts b/apps/story-map/public/tileset/points/r64060.pnts
new file mode 100644
index 00000000..607cccc7
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64060.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64061.pnts b/apps/story-map/public/tileset/points/r64061.pnts
new file mode 100644
index 00000000..2fde3fb1
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64061.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64062.pnts b/apps/story-map/public/tileset/points/r64062.pnts
new file mode 100644
index 00000000..b9b48326
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64062.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64063.pnts b/apps/story-map/public/tileset/points/r64063.pnts
new file mode 100644
index 00000000..02510497
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64063.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64064.pnts b/apps/story-map/public/tileset/points/r64064.pnts
new file mode 100644
index 00000000..c3da5692
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64064.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64065.pnts b/apps/story-map/public/tileset/points/r64065.pnts
new file mode 100644
index 00000000..a0c7c393
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64065.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64066.pnts b/apps/story-map/public/tileset/points/r64066.pnts
new file mode 100644
index 00000000..5b025a23
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64066.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64067.pnts b/apps/story-map/public/tileset/points/r64067.pnts
new file mode 100644
index 00000000..c8f0ea80
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64067.pnts differ
diff --git a/apps/story-map/public/tileset/points/r642.pnts b/apps/story-map/public/tileset/points/r642.pnts
new file mode 100644
index 00000000..d45a9ab2
Binary files /dev/null and b/apps/story-map/public/tileset/points/r642.pnts differ
diff --git a/apps/story-map/public/tileset/points/r644.pnts b/apps/story-map/public/tileset/points/r644.pnts
new file mode 100644
index 00000000..9fc97cf9
Binary files /dev/null and b/apps/story-map/public/tileset/points/r644.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6440.pnts b/apps/story-map/public/tileset/points/r6440.pnts
new file mode 100644
index 00000000..83a0cf6f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6440.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64400.pnts b/apps/story-map/public/tileset/points/r64400.pnts
new file mode 100644
index 00000000..6b13ab0e
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64400.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64402.pnts b/apps/story-map/public/tileset/points/r64402.pnts
new file mode 100644
index 00000000..c2576dc8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64402.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64404.pnts b/apps/story-map/public/tileset/points/r64404.pnts
new file mode 100644
index 00000000..37acd7ba
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64404.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64406.pnts b/apps/story-map/public/tileset/points/r64406.pnts
new file mode 100644
index 00000000..79f06867
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64406.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6442.pnts b/apps/story-map/public/tileset/points/r6442.pnts
new file mode 100644
index 00000000..80b934cf
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6442.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6444.pnts b/apps/story-map/public/tileset/points/r6444.pnts
new file mode 100644
index 00000000..820f5abb
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6444.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64440.pnts b/apps/story-map/public/tileset/points/r64440.pnts
new file mode 100644
index 00000000..b04fe082
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64440.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64442.pnts b/apps/story-map/public/tileset/points/r64442.pnts
new file mode 100644
index 00000000..9d912bd8
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64442.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64444.pnts b/apps/story-map/public/tileset/points/r64444.pnts
new file mode 100644
index 00000000..0676a43f
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64444.pnts differ
diff --git a/apps/story-map/public/tileset/points/r64446.pnts b/apps/story-map/public/tileset/points/r64446.pnts
new file mode 100644
index 00000000..c1b64a84
Binary files /dev/null and b/apps/story-map/public/tileset/points/r64446.pnts differ
diff --git a/apps/story-map/public/tileset/points/r6446.pnts b/apps/story-map/public/tileset/points/r6446.pnts
new file mode 100644
index 00000000..5994946c
Binary files /dev/null and b/apps/story-map/public/tileset/points/r6446.pnts differ
diff --git a/apps/story-map/public/tileset/preview.pnts b/apps/story-map/public/tileset/preview.pnts
new file mode 100644
index 00000000..31e29676
Binary files /dev/null and b/apps/story-map/public/tileset/preview.pnts differ
diff --git a/apps/story-map/public/tileset/tileset.json b/apps/story-map/public/tileset/tileset.json
new file mode 100644
index 00000000..d9f4bf14
--- /dev/null
+++ b/apps/story-map/public/tileset/tileset.json
@@ -0,0 +1 @@
+{"root":{"boundingVolume":{"box":[1.6299850358336698e-10,-2.5295321393059567e-12,0.0,356.40924893289343,0.0,0.0,0.0,497.09669268161485,0.0,0.0,0.0,259.1041022115387]},"geometricError":1328.5595363138668,"refine":"REPLACE","transform":[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,4014747.69175957,503173.1981294641,4913936.454903364,1.0],"children":[{"boundingVolume":{"box":[45.419443130493164,36.2932288646698,1.8484724164009094,45.74437141418457,0.0,0.0,0.0,35.75274586677551,0.0,0.0,0.0,3.279629170894623]},"geometricError":46.50969850318604,"refine":"REPLACE","transform":[-1.2914815100960253,9.913184679518382,0.2466678309835371,0.0,-7.7487006700447925,-1.1640934959257663,6.213092970396525,0.0,6.187868246426024,0.6112739504554074,7.831770599447304,0.0,328.44563405402005,-409.13253916223766,-251.17353257816285,1.0],"children":[{"boundingVolume":{"box":[29.788963794708252,29.65468692779541,1.651587963104248,15.624083995819092,0.0,0.0,0.0,6.584163665771484,0.0,0.0,0.0,2.014846086502075]},"geometricError":23.25484925159302,"refine":"ADD","children":[{"boundingVolume":{"box":[18.43568181991577,33.98747396469116,1.7878721952438354,4.270802021026611,0.0,0.0,0.0,2.251375675201416,0.0,0.0,0.0,1.6003199815750122]},"geometricError":11.62742462579651,"refine":"ADD","children":[{"boundingVolume":{"box":[18.435745239257812,33.98747396469116,1.7879926562309265,4.27073860168457,0.0,0.0,0.0,2.251375675201416,0.0,0.0,0.0,1.5964413285255432]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[15.609628677368164,35.24544906616211,0.8145591616630554,1.4196052551269531,0.0,0.0,0.0,0.9932937622070312,0.0,0.0,0.0,0.44334763288497925]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r0262.pnts"}},{"boundingVolume":{"box":[19.869389057159424,33.987389087677,1.7879926562309265,2.837094783782959,0.0,0.0,0.0,2.251290798187256,0.0,0.0,0.0,1.5964413285255432]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[18.661834716796875,33.393306732177734,0.34858620166778564,1.2048397064208984,0.0,0.0,0.0,0.5738639831542969,0.0,0.0,0.0,0.0949363261461258]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r02660.pnts"}},{"boundingVolume":{"box":[18.44940948486328,35.10591506958008,1.208986759185791,1.4171152114868164,0.0,0.0,0.0,1.10137939453125,0.0,0.0,0.0,0.8681029677391052]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r02662.pnts"}},{"boundingVolume":{"box":[19.443187713623047,35.58259201049805,2.6652088165283203,0.41850757598876953,0.0,0.0,0.0,0.6531562805175781,0.0,0.0,0.0,0.5856332778930664]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r02663.pnts"}},{"boundingVolume":{"box":[21.288040161132812,32.854915618896484,0.6126564741134644,1.418034553527832,0.0,0.0,0.0,1.1188173294067383,0.0,0.0,0.0,0.42110514640808105]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r02664.pnts"}},{"boundingVolume":{"box":[21.2878360748291,35.09864044189453,1.2647396326065063,1.4183635711669922,0.0,0.0,0.0,1.1242198944091797,0.0,0.0,0.0,0.8138612508773804]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r02666.pnts"}},{"boundingVolume":{"box":[21.290733337402344,35.16929626464844,2.7195093631744385,1.4138383865356445,0.0,0.0,0.0,1.0680980682373047,0.0,0.0,0.0,0.6407828330993652]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r02667.pnts"}}],"content":{"uri":"points/r0266.pnts"}}],"content":{"uri":"points/r026.pnts"}}],"content":{"uri":"points/r02.pnts"}},{"boundingVolume":{"box":[34.060731410980225,29.65498399734497,1.651587963104248,11.35231637954712,0.0,0.0,0.0,6.583866596221924,0.0,0.0,0.0,2.014846086502075]},"geometricError":11.62742462579651,"refine":"ADD","children":[{"boundingVolume":{"box":[28.384102821350098,31.82115411758423,1.6438016891479492,5.675687789916992,0.0,0.0,0.0,4.417677402496338,0.0,0.0,0.0,1.7409265041351318]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[25.589685440063477,30.63949966430664,1.1478183269500732,2.7918338775634766,0.0,0.0,0.0,1.069345474243164,0.0,0.0,0.0,1.1170883178710938]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r0620.pnts"}},{"boundingVolume":{"box":[25.545721530914307,33.97391939163208,1.7496122419834137,2.837306499481201,0.0,0.0,0.0,2.2649121284484863,0.0,0.0,0.0,1.5590203702449799]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[24.126150131225586,32.855201721191406,1.093550443649292,1.417734146118164,0.0,0.0,0.0,1.118661880493164,0.0,0.0,0.0,0.9029585719108582]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06220.pnts"}},{"boundingVolume":{"box":[24.127307891845703,35.10595703125,1.4045579433441162,1.4165058135986328,0.0,0.0,0.0,1.1319427490234375,0.0,0.0,0.0,0.674149751663208]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06222.pnts"}},{"boundingVolume":{"box":[24.134557723999023,35.16725540161133,2.393886089324951,1.402313232421875,0.0,0.0,0.0,1.0540924072265625,0.0,0.0,0.0,0.314372181892395]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06223.pnts"}},{"boundingVolume":{"box":[26.96392059326172,32.832210540771484,1.1994142532348633,1.418564796447754,0.0,0.0,0.0,1.1232032775878906,0.0,0.0,0.0,0.879237949848175]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06224.pnts"}},{"boundingVolume":{"box":[27.108348846435547,32.83625793457031,2.3289670944213867,1.2645483016967773,0.0,0.0,0.0,1.1022357940673828,0.0,0.0,0.0,0.25020265579223633]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06225.pnts"}},{"boundingVolume":{"box":[26.964759826660156,35.10850143432617,1.5211511850357056,1.4179468154907227,0.0,0.0,0.0,1.1300430297851562,0.0,0.0,0.0,0.5572038888931274]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06226.pnts"}},{"boundingVolume":{"box":[26.96413230895996,35.10765075683594,2.670844554901123,1.4188957214355469,0.0,0.0,0.0,1.1306438446044922,0.0,0.0,0.0,0.5905634164810181]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06227.pnts"}}],"content":{"uri":"points/r0622.pnts"}},{"boundingVolume":{"box":[31.221903800964355,29.556039810180664,1.2569724321365356,2.8377504348754883,0.0,0.0,0.0,2.1525630950927734,0.0,0.0,0.0,1.3525432348251343]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[29.983665466308594,28.961517333984375,0.14874905347824097,1.2290754318237305,0.0,0.0,0.0,0.47431373596191406,0.0,0.0,0.0,0.20495012402534485]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06240.pnts"}},{"boundingVolume":{"box":[29.80282211303711,30.590314865112305,1.0482211112976074,1.4186687469482422,0.0,0.0,0.0,1.1181507110595703,0.0,0.0,0.0,1.0275182723999023]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06242.pnts"}},{"boundingVolume":{"box":[32.64697265625,28.42380142211914,0.9596222043037415,1.4123563766479492,0.0,0.0,0.0,1.0202598571777344,0.0,0.0,0.0,1.0546388626098633]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06244.pnts"}},{"boundingVolume":{"box":[32.639976501464844,30.57593536376953,1.0838757753372192,1.4183549880981445,0.0,0.0,0.0,1.1317377090454102,0.0,0.0,0.0,0.9944041967391968]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06246.pnts"}},{"boundingVolume":{"box":[32.64446258544922,30.987768173217773,2.3441858291625977,1.415191650390625,0.0,0.0,0.0,0.7204818725585938,0.0,0.0,0.0,0.26532983779907227]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06247.pnts"}}],"content":{"uri":"points/r0624.pnts"}},{"boundingVolume":{"box":[31.221630573272705,33.97264099121094,1.9429380297660828,2.8378405570983887,0.0,0.0,0.0,2.2636213302612305,0.0,0.0,0.0,1.3279590010643005]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[29.8026123046875,32.84062576293945,1.3467741012573242,1.4188222885131836,0.0,0.0,0.0,1.1312265396118164,0.0,0.0,0.0,0.7311928272247314]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06260.pnts"}},{"boundingVolume":{"box":[29.814294815063477,32.84981155395508,2.411754846572876,1.406982421875,0.0,0.0,0.0,1.1067628860473633,0.0,0.0,0.0,0.33277416229248047]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06261.pnts"}},{"boundingVolume":{"box":[29.802059173583984,35.10823059082031,1.584446907043457,1.4175834655761719,0.0,0.0,0.0,1.1124763488769531,0.0,0.0,0.0,0.4942338466644287]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06262.pnts"}},{"boundingVolume":{"box":[29.802213668823242,35.1093864440918,2.487320899963379,1.4180164337158203,0.0,0.0,0.0,1.1255111694335938,0.0,0.0,0.0,0.40856897830963135]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06263.pnts"}},{"boundingVolume":{"box":[32.64065170288086,32.8415412902832,1.5626164674758911,1.4188194274902344,0.0,0.0,0.0,1.1319513320922852,0.0,0.0,0.0,0.5158861875534058]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06264.pnts"}},{"boundingVolume":{"box":[32.64360046386719,32.83979034423828,2.4712626934051514,1.4056262969970703,0.0,0.0,0.0,1.129277229309082,0.0,0.0,0.0,0.3925161361694336]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06265.pnts"}},{"boundingVolume":{"box":[32.640480041503906,35.104583740234375,1.5808573961257935,1.4188709259033203,0.0,0.0,0.0,1.1305713653564453,0.0,0.0,0.0,0.4974454641342163]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06266.pnts"}},{"boundingVolume":{"box":[32.63917541503906,35.1077880859375,2.676213264465332,1.416219711303711,0.0,0.0,0.0,1.103403091430664,0.0,0.0,0.0,0.5946837663650513]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06267.pnts"}}],"content":{"uri":"points/r0626.pnts"}}],"content":{"uri":"points/r062.pnts"}},{"boundingVolume":{"box":[40.004578590393066,25.174227237701416,0.9737051725387573,5.408469200134277,0.0,0.0,0.0,2.0048861503601074,0.0,0.0,0.0,1.3354521989822388]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[37.17955017089844,26.208093643188477,0.13066013157367706,2.549440383911133,0.0,0.0,0.0,0.9710197448730469,0.0,0.0,0.0,0.3729161024093628]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r0642.pnts"}},{"boundingVolume":{"box":[42.57582092285156,25.174501419067383,0.9744607210159302,2.8372268676757812,0.0,0.0,0.0,2.004566192626953,0.0,0.0,0.0,1.334696650505066]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r0646.pnts"}}],"content":{"uri":"points/r064.pnts"}},{"boundingVolume":{"box":[39.736459732055664,31.709004402160645,1.7851790189743042,5.676570892333984,0.0,0.0,0.0,4.52984619140625,0.0,0.0,0.0,1.881255030632019]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[36.897963523864746,29.4440279006958,1.3107672333717346,2.8379926681518555,0.0,0.0,0.0,2.2648696899414062,0.0,0.0,0.0,1.4068432450294495]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[35.48015594482422,28.32522964477539,0.9909753203392029,1.4179248809814453,0.0,0.0,0.0,1.118718147277832,0.0,0.0,0.0,1.0864518880844116]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06600.pnts"}},{"boundingVolume":{"box":[36.306190490722656,29.13471794128418,2.231436252593994,0.5724964141845703,0.0,0.0,0.0,0.2998809814453125,0.0,0.0,0.0,0.14910805225372314]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06601.pnts"}},{"boundingVolume":{"box":[35.47905349731445,30.574260711669922,1.2842519283294678,1.4190826416015625,0.0,0.0,0.0,1.130143165588379,0.0,0.0,0.0,0.7940630316734314]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06602.pnts"}},{"boundingVolume":{"box":[35.49379348754883,30.578174591064453,2.3987512588500977,1.4030685424804688,0.0,0.0,0.0,1.097315788269043,0.0,0.0,0.0,0.3188592195510864]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06603.pnts"}},{"boundingVolume":{"box":[38.31715393066406,28.311504364013672,1.0396947860717773,1.418802261352539,0.0,0.0,0.0,1.1323461532592773,0.0,0.0,0.0,1.038956880569458]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06604.pnts"}},{"boundingVolume":{"box":[38.31055450439453,28.87322998046875,2.2533795833587646,1.4061622619628906,0.0,0.0,0.0,0.570648193359375,0.0,0.0,0.0,0.17316007614135742]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06605.pnts"}},{"boundingVolume":{"box":[38.31612777709961,30.57687759399414,1.5178009271621704,1.4176750183105469,0.0,0.0,0.0,1.1320199966430664,0.0,0.0,0.0,0.5608445405960083]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06606.pnts"}},{"boundingVolume":{"box":[38.31613540649414,30.342056274414062,2.387047290802002,1.4167137145996094,0.0,0.0,0.0,0.8951864242553711,0.0,0.0,0.0,0.3066391944885254]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06607.pnts"}}],"content":{"uri":"points/r0660.pnts"}},{"boundingVolume":{"box":[36.89780330657959,33.973944664001465,2.152800500392914,2.83791446685791,0.0,0.0,0.0,2.2649059295654297,0.0,0.0,0.0,1.1258015036582947]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[35.479373931884766,32.83824920654297,1.555045247077942,1.4186592102050781,0.0,0.0,0.0,1.1143083572387695,0.0,0.0,0.0,0.523361086845398]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06620.pnts"}},{"boundingVolume":{"box":[35.47808837890625,32.845638275146484,2.453665256500244,1.417734146118164,0.0,0.0,0.0,1.1280899047851562,0.0,0.0,0.0,0.3739091157913208]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06621.pnts"}},{"boundingVolume":{"box":[35.47887420654297,35.10768508911133,1.6039683818817139,1.4189567565917969,0.0,0.0,0.0,1.1310081481933594,0.0,0.0,0.0,0.47463375329971313]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06622.pnts"}},{"boundingVolume":{"box":[35.48208236694336,35.1036376953125,2.6727046966552734,1.4152870178222656,0.0,0.0,0.0,1.129556655883789,0.0,0.0,0.0,0.5937126874923706]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06623.pnts"}},{"boundingVolume":{"box":[38.317142486572266,32.83876037597656,1.548213243484497,1.4185752868652344,0.0,0.0,0.0,1.1297216415405273,0.0,0.0,0.0,0.5212142467498779]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06624.pnts"}},{"boundingVolume":{"box":[37.5008659362793,33.666954040527344,2.3376755714416504,0.5647659301757812,0.0,0.0,0.0,0.27651405334472656,0.0,0.0,0.0,0.2556114196777344]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06625.pnts"}},{"boundingVolume":{"box":[38.31678009033203,35.107643127441406,1.6389762163162231,1.4184093475341797,0.0,0.0,0.0,1.1111278533935547,0.0,0.0,0.0,0.43847930431365967]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06626.pnts"}},{"boundingVolume":{"box":[38.32261276245117,35.110469818115234,2.5330753326416016,1.4098854064941406,0.0,0.0,0.0,1.1273651123046875,0.0,0.0,0.0,0.4532397985458374]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06627.pnts"}}],"content":{"uri":"points/r0662.pnts"}},{"boundingVolume":{"box":[42.57499408721924,29.437071800231934,1.6049156785011292,2.83803653717041,0.0,0.0,0.0,2.257687568664551,0.0,0.0,0.0,1.273036539554596]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[41.15645217895508,28.308359146118164,1.2089091539382935,1.41796875,0.0,0.0,0.0,1.1284847259521484,0.0,0.0,0.0,0.8694778084754944]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06640.pnts"}},{"boundingVolume":{"box":[41.15637969970703,28.310983657836914,2.3399505615234375,1.4179821014404297,0.0,0.0,0.0,1.0997390747070312,0.0,0.0,0.0,0.26066768169403076]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06641.pnts"}},{"boundingVolume":{"box":[41.15465545654297,30.570209503173828,1.5222302675247192,1.4173164367675781,0.0,0.0,0.0,1.1141576766967773,0.0,0.0,0.0,0.5512343645095825]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06642.pnts"}},{"boundingVolume":{"box":[40.143531799316406,29.726524353027344,2.301520824432373,0.39376258850097656,0.0,0.0,0.0,0.2777109146118164,0.0,0.0,0.0,0.2218538522720337]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06643.pnts"}},{"boundingVolume":{"box":[43.99469757080078,28.311655044555664,1.4229609966278076,1.4183330535888672,0.0,0.0,0.0,1.1322708129882812,0.0,0.0,0.0,0.6537811160087585]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06644.pnts"}},{"boundingVolume":{"box":[43.98822784423828,28.307147979736328,2.3638076782226562,1.4123249053955078,0.0,0.0,0.0,1.1250677108764648,0.0,0.0,0.0,0.2846421003341675]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06645.pnts"}},{"boundingVolume":{"box":[43.99293518066406,30.569435119628906,1.525912880897522,1.417633056640625,0.0,0.0,0.0,1.1252374649047852,0.0,0.0,0.0,0.5508302450180054]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06646.pnts"}},{"boundingVolume":{"box":[44.02029800415039,30.575714111328125,2.479074001312256,1.3911018371582031,0.0,0.0,0.0,1.0986442565917969,0.0,0.0,0.0,0.39887821674346924]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06647.pnts"}}],"content":{"uri":"points/r0664.pnts"}},{"boundingVolume":{"box":[42.575862884521484,33.97460174560547,2.3567490577697754,2.836954116821289,0.0,0.0,0.0,2.261956214904785,0.0,0.0,0.0,1.3096654415130615]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[41.15599822998047,32.8470458984375,1.5628833770751953,1.4170894622802734,0.0,0.0,0.0,1.1265392303466797,0.0,0.0,0.0,0.5157869458198547]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06660.pnts"}},{"boundingVolume":{"box":[41.883277893066406,32.917144775390625,2.3432698249816895,0.6895084381103516,0.0,0.0,0.0,0.8980369567871094,0.0,0.0,0.0,0.2636244297027588]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06661.pnts"}},{"boundingVolume":{"box":[41.156341552734375,35.10172653198242,1.646649718284607,1.416900634765625,0.0,0.0,0.0,1.1277656555175781,0.0,0.0,0.0,0.4316960573196411]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06662.pnts"}},{"boundingVolume":{"box":[40.483646392822266,34.958351135253906,2.5659053325653076,0.71490478515625,0.0,0.0,0.0,0.8998069763183594,0.0,0.0,0.0,0.47696638107299805]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06663.pnts"}},{"boundingVolume":{"box":[43.99336624145508,32.82930374145508,1.6479367017745972,1.4173202514648438,0.0,0.0,0.0,1.1052846908569336,0.0,0.0,0.0,0.4305359125137329]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06664.pnts"}},{"boundingVolume":{"box":[43.996376037597656,32.824989318847656,2.4177162647247314,1.4069576263427734,0.0,0.0,0.0,1.1119956970214844,0.0,0.0,0.0,0.3383519649505615]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06665.pnts"}},{"boundingVolume":{"box":[43.673919677734375,35.10608673095703,1.7790309190750122,1.0976924896240234,0.0,0.0,0.0,1.1251506805419922,0.0,0.0,0.0,0.29951226711273193]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06666.pnts"}},{"boundingVolume":{"box":[44.63990020751953,35.1104850769043,2.8660225868225098,0.7729167938232422,0.0,0.0,0.0,1.1260719299316406,0.0,0.0,0.0,0.7870419025421143]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r06667.pnts"}}],"content":{"uri":"points/r0666.pnts"}}],"content":{"uri":"points/r066.pnts"}}],"content":{"uri":"points/r06.pnts"}}],"content":{"uri":"points/r0.pnts"}},{"boundingVolume":{"box":[22.544079780578613,54.142428398132324,2.392894834280014,22.86900806427002,0.0,0.0,0.0,17.90354633331299,0.0,0.0,0.0,1.764479547739029]},"geometricError":23.25484925159302,"refine":"ADD","children":[{"boundingVolume":{"box":[11.513240933418274,45.29861831665039,2.3144820630550385,11.193300127983093,0.0,0.0,0.0,9.059667587280273,0.0,0.0,0.0,1.6860667765140533]},"geometricError":11.62742462579651,"refine":"ADD","children":[{"boundingVolume":{"box":[8.16909122467041,41.75606346130371,2.1394043564796448,3.184168577194214,0.0,0.0,0.0,3.5424747467041016,0.0,0.0,0.0,1.2952211499214172]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[5.343197822570801,44.721527099609375,2.235335350036621,0.33328986167907715,0.0,0.0,0.0,0.5492343902587891,0.0,0.0,0.0,0.6499520540237427]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r2002.pnts"}},{"boundingVolume":{"box":[9.610793113708496,39.4852294921875,1.6903252601623535,1.742466688156128,0.0,0.0,0.0,1.2716407775878906,0.0,0.0,0.0,0.846142053604126]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r2004.pnts"}},{"boundingVolume":{"box":[8.514840006828308,43.035221099853516,2.2645411491394043,2.838114857673645,0.0,0.0,0.0,2.263317108154297,0.0,0.0,0.0,1.1700843572616577]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[7.48029899597168,41.906654357910156,1.5876858234405518,1.0344247817993164,0.0,0.0,0.0,1.1268482208251953,0.0,0.0,0.0,0.4910306930541992]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20060.pnts"}},{"boundingVolume":{"box":[7.4399518966674805,41.900352478027344,2.3999836444854736,0.9848909378051758,0.0,0.0,0.0,1.128448486328125,0.0,0.0,0.0,0.3211987018585205]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20061.pnts"}},{"boundingVolume":{"box":[7.095727920532227,44.1607666015625,1.7876088619232178,1.4190027713775635,0.0,0.0,0.0,1.127096176147461,0.0,0.0,0.0,0.2882537245750427]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20062.pnts"}},{"boundingVolume":{"box":[7.098041534423828,44.170082092285156,2.5638740062713623,1.416888952255249,0.0,0.0,0.0,1.1087379455566406,0.0,0.0,0.0,0.48463916778564453]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20063.pnts"}},{"boundingVolume":{"box":[9.935532569885254,41.89722442626953,1.655714988708496,1.4162864685058594,0.0,0.0,0.0,1.1081085205078125,0.0,0.0,0.0,0.4129132628440857]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20064.pnts"}},{"boundingVolume":{"box":[9.9612455368042,42.06197738647461,2.624514102935791,1.391709327697754,0.0,0.0,0.0,0.969390869140625,0.0,0.0,0.0,0.5455602407455444]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20065.pnts"}},{"boundingVolume":{"box":[9.933418273925781,44.16883087158203,1.7861659526824951,1.4184513092041016,0.0,0.0,0.0,1.1295146942138672,0.0,0.0,0.0,0.2918688654899597]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20066.pnts"}},{"boundingVolume":{"box":[9.933488845825195,44.16169738769531,2.723489284515381,1.418318271636963,0.0,0.0,0.0,1.1264019012451172,0.0,0.0,0.0,0.6440175771713257]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20067.pnts"}}],"content":{"uri":"points/r2006.pnts"}}],"content":{"uri":"points/r200.pnts"}},{"boundingVolume":{"box":[5.8365782499313354,49.828407287597656,2.678553819656372,5.516637444496155,0.0,0.0,0.0,4.529758453369141,0.0,0.0,0.0,1.0603876113891602]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[3.947079658508301,47.560916900634766,2.551226854324341,1.7294073104858398,0.0,0.0,0.0,2.258075714111328,0.0,0.0,0.0,0.8751599788665771]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r2020.pnts"}},{"boundingVolume":{"box":[2.9981902837753296,52.10225486755371,2.823481559753418,2.678249478340149,0.0,0.0,0.0,2.255910873413086,0.0,0.0,0.0,0.9090825319290161]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[2.057642936706543,50.97089385986328,1.9984767436981201,0.7806515097618103,0.0,0.0,0.0,1.1222171783447266,0.0,0.0,0.0,0.03986316919326782]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20220.pnts"}},{"boundingVolume":{"box":[1.577926754951477,53.22297668457031,2.0397119522094727,1.2579859495162964,0.0,0.0,0.0,1.129486083984375,0.0,0.0,0.0,0.03898632526397705]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20222.pnts"}},{"boundingVolume":{"box":[1.5612196922302246,53.237030029296875,2.8807735443115234,1.2032310962677002,0.0,0.0,0.0,1.107309341430664,0.0,0.0,0.0,0.8020497560501099]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20223.pnts"}},{"boundingVolume":{"box":[4.257351875305176,50.960697174072266,1.9620550870895386,1.4187085628509521,0.0,0.0,0.0,1.1080894470214844,0.0,0.0,0.0,0.04730689525604248]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20224.pnts"}},{"boundingVolume":{"box":[4.258685111999512,50.822113037109375,2.6865696907043457,1.4172791242599487,0.0,0.0,0.0,0.9751930236816406,0.0,0.0,0.0,0.5728603601455688]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20225.pnts"}},{"boundingVolume":{"box":[4.257652282714844,53.23037338256836,2.017889976501465,1.4187874794006348,0.0,0.0,0.0,1.1277923583984375,0.0,0.0,0.0,0.03202110528945923]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20226.pnts"}}],"content":{"uri":"points/r2022.pnts"}},{"boundingVolume":{"box":[8.515087842941284,47.56348991394043,2.678553819656372,2.838127851486206,0.0,0.0,0.0,2.264841079711914,0.0,0.0,0.0,1.0603876113891602]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[7.0959320068359375,46.42852783203125,1.8487727642059326,1.4166100025177002,0.0,0.0,0.0,1.1071434020996094,0.0,0.0,0.0,0.22841686010360718]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20240.pnts"}},{"boundingVolume":{"box":[7.096263885498047,46.43305587768555,2.906672716140747,1.4183080196380615,0.0,0.0,0.0,1.1303825378417969,0.0,0.0,0.0,0.8276269435882568]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20241.pnts"}},{"boundingVolume":{"box":[7.096474647521973,48.699161529541016,1.9355533123016357,1.4171512126922607,0.0,0.0,0.0,1.1291351318359375,0.0,0.0,0.0,0.14301329851150513]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20242.pnts"}},{"boundingVolume":{"box":[7.0945868492126465,48.692630767822266,2.8765740394592285,1.4176268577575684,0.0,0.0,0.0,1.129119873046875,0.0,0.0,0.0,0.7977937459945679]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20243.pnts"}},{"boundingVolume":{"box":[9.934530258178711,46.42530059814453,1.8499200344085693,1.4185457229614258,0.0,0.0,0.0,1.1266517639160156,0.0,0.0,0.0,0.22763091325759888]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20244.pnts"}},{"boundingVolume":{"box":[9.934026718139648,46.44358825683594,2.8999574184417725,1.4186453819274902,0.0,0.0,0.0,1.1198749542236328,0.0,0.0,0.0,0.8182258605957031]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20245.pnts"}},{"boundingVolume":{"box":[9.935399055480957,48.694122314453125,1.9254319667816162,1.4172344207763672,0.0,0.0,0.0,1.1079826354980469,0.0,0.0,0.0,0.1477952003479004]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20246.pnts"}},{"boundingVolume":{"box":[9.939217567443848,48.69683837890625,2.8928780555725098,1.4119691848754883,0.0,0.0,0.0,1.1307086944580078,0.0,0.0,0.0,0.7173213958740234]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20247.pnts"}}],"content":{"uri":"points/r2024.pnts"}},{"boundingVolume":{"box":[8.514937162399292,52.09041213989258,2.6506403386592865,2.8382766246795654,0.0,0.0,0.0,2.2619590759277344,0.0,0.0,0.0,0.7976948320865631]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[7.095560073852539,50.956878662109375,1.9489308595657349,1.4162471294403076,0.0,0.0,0.0,1.1284255981445312,0.0,0.0,0.0,0.06308186054229736]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20260.pnts"}},{"boundingVolume":{"box":[6.506137847900391,50.80878448486328,2.6727795600891113,0.8274505138397217,0.0,0.0,0.0,0.9560642242431641,0.0,0.0,0.0,0.554935097694397]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20261.pnts"}},{"boundingVolume":{"box":[7.0958051681518555,53.227169036865234,1.995478868484497,1.419144630432129,0.0,0.0,0.0,1.10821533203125,0.0,0.0,0.0,0.036207497119903564]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20262.pnts"}},{"boundingVolume":{"box":[9.934144973754883,50.96455383300781,1.932201623916626,1.4190688133239746,0.0,0.0,0.0,1.128744125366211,0.0,0.0,0.0,0.07925611734390259]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20264.pnts"}},{"boundingVolume":{"box":[10.1464262008667,50.960941314697266,2.7008347511291504,1.2058897018432617,0.0,0.0,0.0,1.13214111328125,0.0,0.0,0.0,0.5819820165634155]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20265.pnts"}},{"boundingVolume":{"box":[9.933591842651367,53.222801208496094,1.9592927694320679,1.418546199798584,0.0,0.0,0.0,1.1293392181396484,0.0,0.0,0.0,0.04117262363433838]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20266.pnts"}},{"boundingVolume":{"box":[10.659650802612305,53.135101318359375,2.783992052078247,0.6931238174438477,0.0,0.0,0.0,1.0084590911865234,0.0,0.0,0.0,0.6339783668518066]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20267.pnts"}}],"content":{"uri":"points/r2026.pnts"}}],"content":{"uri":"points/r202.pnts"}},{"boundingVolume":{"box":[17.029924631118774,40.7687463760376,2.084019213914871,5.676550626754761,0.0,0.0,0.0,4.529660224914551,0.0,0.0,0.0,1.455603927373886]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[14.191033124923706,38.503915786743164,1.8866393268108368,2.8375046253204346,0.0,0.0,0.0,2.264789581298828,0.0,0.0,0.0,1.2582240402698517]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[12.773578643798828,37.379615783691406,1.3571690320968628,1.41780424118042,0.0,0.0,0.0,1.0976009368896484,0.0,0.0,0.0,0.7214053869247437]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20400.pnts"}},{"boundingVolume":{"box":[13.050993919372559,37.448875427246094,2.607583522796631,1.0494699478149414,0.0,0.0,0.0,0.7992038726806641,0.0,0.0,0.0,0.5286532640457153]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20401.pnts"}},{"boundingVolume":{"box":[12.770402908325195,39.641448974609375,1.4633044004440308,1.4166531562805176,0.0,0.0,0.0,1.127218246459961,0.0,0.0,0.0,0.6150103807449341]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20402.pnts"}},{"boundingVolume":{"box":[12.89234733581543,40.00424575805664,2.34230899810791,1.2788028717041016,0.0,0.0,0.0,0.7557716369628906,0.0,0.0,0.0,0.2620431184768677]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20403.pnts"}},{"boundingVolume":{"box":[15.610078811645508,37.36479187011719,1.2390320301055908,1.4184589385986328,0.0,0.0,0.0,1.1256656646728516,0.0,0.0,0.0,0.6106167435646057]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20404.pnts"}},{"boundingVolume":{"box":[15.612569808959961,39.647621154785156,1.5562481880187988,1.4154629707336426,0.0,0.0,0.0,1.1201820373535156,0.0,0.0,0.0,0.5147867202758789]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20406.pnts"}}],"content":{"uri":"points/r2040.pnts"}},{"boundingVolume":{"box":[14.191553115844727,43.03299331665039,2.443888336420059,2.838179111480713,0.0,0.0,0.0,2.2641525268554688,0.0,0.0,0.0,1.0957348048686981]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[12.773286819458008,41.89423751831055,1.7124214172363281,1.418278694152832,0.0,0.0,0.0,1.125396728515625,0.0,0.0,0.0,0.36426788568496704]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20420.pnts"}},{"boundingVolume":{"box":[12.773877143859863,41.91596221923828,2.6237125396728516,1.417708396911621,0.0,0.0,0.0,1.116964340209961,0.0,0.0,0.0,0.5443912744522095]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20421.pnts"}},{"boundingVolume":{"box":[12.772050857543945,44.16197204589844,1.79966402053833,1.416895866394043,0.0,0.0,0.0,1.1065826416015625,0.0,0.0,0.0,0.27353841066360474]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20422.pnts"}},{"boundingVolume":{"box":[12.77296257019043,44.16548156738281,2.7836711406707764,1.4185638427734375,0.0,0.0,0.0,1.1315460205078125,0.0,0.0,0.0,0.7034475803375244]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20423.pnts"}},{"boundingVolume":{"box":[15.61070442199707,41.901527404785156,1.7122539281845093,1.4187607765197754,0.0,0.0,0.0,1.1320877075195312,0.0,0.0,0.0,0.35823380947113037]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20424.pnts"}},{"boundingVolume":{"box":[14.687688827514648,41.913543701171875,2.554795980453491,0.4936509132385254,0.0,0.0,0.0,1.1041603088378906,0.0,0.0,0.0,0.4755241870880127]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20425.pnts"}},{"boundingVolume":{"box":[15.609736442565918,44.15943145751953,1.8640912771224976,1.4177732467651367,0.0,0.0,0.0,1.1256523132324219,0.0,0.0,0.0,0.21205008029937744]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20426.pnts"}},{"boundingVolume":{"box":[14.501388549804688,43.23188781738281,2.4795498847961426,0.3076748847961426,0.0,0.0,0.0,0.1797046661376953,0.0,0.0,0.0,0.3406559228897095]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20427.pnts"}}],"content":{"uri":"points/r2042.pnts"}},{"boundingVolume":{"box":[19.86888885498047,38.503761291503906,2.044618606567383,2.837559700012207,0.0,0.0,0.0,2.2645721435546875,0.0,0.0,0.0,1.294087290763855]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[18.448644638061523,37.372467041015625,1.413387417793274,1.4168891906738281,0.0,0.0,0.0,1.1310367584228516,0.0,0.0,0.0,0.662143349647522]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20440.pnts"}},{"boundingVolume":{"box":[18.449161529541016,39.627838134765625,1.4120891094207764,1.4177827835083008,0.0,0.0,0.0,1.1240367889404297,0.0,0.0,0.0,0.17983263731002808]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20442.pnts"}},{"boundingVolume":{"box":[21.287094116210938,37.360137939453125,1.619226098060608,1.418229103088379,0.0,0.0,0.0,1.108327865600586,0.0,0.0,0.0,0.45945727825164795]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20444.pnts"}},{"boundingVolume":{"box":[21.28137969970703,37.37047576904297,2.670970916748047,1.406315803527832,0.0,0.0,0.0,1.1309165954589844,0.0,0.0,0.0,0.5913981199264526]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20445.pnts"}},{"boundingVolume":{"box":[21.286678314208984,39.637020111083984,1.6807904243469238,1.4165010452270508,0.0,0.0,0.0,1.1311416625976562,0.0,0.0,0.0,0.39089006185531616]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20446.pnts"}},{"boundingVolume":{"box":[21.998924255371094,39.24938201904297,2.651355504989624,0.707244873046875,0.0,0.0,0.0,0.7061939239501953,0.0,0.0,0.0,0.5720729827880859]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20447.pnts"}}],"content":{"uri":"points/r2044.pnts"}},{"boundingVolume":{"box":[19.868229389190674,43.04291915893555,1.6148429811000824,2.8382458686828613,0.0,0.0,0.0,2.2554874420166016,0.0,0.0,0.0,0.12265190482139587]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[18.449081420898438,41.89458465576172,1.587709903717041,1.4190483093261719,0.0,0.0,0.0,1.1071529388427734,0.0,0.0,0.0,0.09551882743835449]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20460.pnts"}},{"boundingVolume":{"box":[18.44939422607422,44.16687774658203,1.6984050273895264,1.4186639785766602,0.0,0.0,0.0,1.1315288543701172,0.0,0.0,0.0,0.039089858531951904]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20462.pnts"}},{"boundingVolume":{"box":[21.287429809570312,41.91027069091797,1.6179583072662354,1.4190454483032227,0.0,0.0,0.0,1.1081695556640625,0.0,0.0,0.0,0.04355323314666748]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20464.pnts"}},{"boundingVolume":{"box":[21.288593292236328,44.16017150878906,1.6531600952148438,1.417501449584961,0.0,0.0,0.0,1.1083126068115234,0.0,0.0,0.0,0.037401556968688965]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20466.pnts"}}],"content":{"uri":"points/r2046.pnts"}}],"content":{"uri":"points/r204.pnts"}},{"boundingVolume":{"box":[17.02993893623352,49.82843494415283,2.828717976808548,5.676584959030151,0.0,0.0,0.0,4.529850959777832,0.0,0.0,0.0,1.1718308627605438]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[14.191580295562744,47.5637321472168,2.6776023209095,2.838226318359375,0.0,0.0,0.0,2.264484405517578,0.0,0.0,0.0,0.9435727894306183]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[12.773120880126953,46.433101654052734,1.9118800163269043,1.4167594909667969,0.0,0.0,0.0,1.130340576171875,0.0,0.0,0.0,0.15692377090454102]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20600.pnts"}},{"boundingVolume":{"box":[12.046314239501953,46.42307662963867,2.861029624938965,0.6929183006286621,0.0,0.0,0.0,1.1231117248535156,0.0,0.0,0.0,0.7479023933410645]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20601.pnts"}},{"boundingVolume":{"box":[12.772289276123047,48.69105529785156,1.8457834720611572,1.4158015251159668,0.0,0.0,0.0,1.127462387084961,0.0,0.0,0.0,0.02879554033279419]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20602.pnts"}},{"boundingVolume":{"box":[12.72336196899414,48.70085144042969,2.702301502227783,1.3700079917907715,0.0,0.0,0.0,1.1114215850830078,0.0,0.0,0.0,0.5567101240158081]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20603.pnts"}},{"boundingVolume":{"box":[15.611486434936523,46.42717361450195,1.7756155729293823,1.4183201789855957,0.0,0.0,0.0,1.1081771850585938,0.0,0.0,0.0,0.04158604145050049]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20604.pnts"}},{"boundingVolume":{"box":[15.610179901123047,48.69850540161133,1.9192980527877808,1.4185662269592285,0.0,0.0,0.0,1.1297111511230469,0.0,0.0,0.0,0.15188634395599365]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20606.pnts"}},{"boundingVolume":{"box":[16.363204956054688,49.696388244628906,2.787710189819336,0.6563992500305176,0.0,0.0,0.0,0.12639999389648438,0.0,0.0,0.0,0.6464020013809204]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20607.pnts"}}],"content":{"uri":"points/r2060.pnts"}},{"boundingVolume":{"box":[14.191552877426147,52.09339904785156,2.9120901823043823,2.838085412979126,0.0,0.0,0.0,2.2648868560791016,0.0,0.0,0.0,1.0884586572647095]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[12.772682189941406,50.960533142089844,1.9696571826934814,1.4186606407165527,0.0,0.0,0.0,1.1081371307373047,0.0,0.0,0.0,0.10679912567138672]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20620.pnts"}},{"boundingVolume":{"box":[12.772614479064941,50.966156005859375,2.929997444152832,1.4188766479492188,0.0,0.0,0.0,1.127166748046875,0.0,0.0,0.0,0.8479610681533813]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20621.pnts"}},{"boundingVolume":{"box":[12.773192405700684,53.23040771484375,1.9891853332519531,1.4178647994995117,0.0,0.0,0.0,1.1278667449951172,0.0,0.0,0.0,0.0878414511680603]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20622.pnts"}},{"boundingVolume":{"box":[12.774145126342773,53.2230339050293,3.0406017303466797,1.4151620864868164,0.0,0.0,0.0,1.1291275024414062,0.0,0.0,0.0,0.9599471092224121]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20623.pnts"}},{"boundingVolume":{"box":[15.61063289642334,50.956809997558594,1.9506598711013794,1.4190053939819336,0.0,0.0,0.0,1.1281490325927734,0.0,0.0,0.0,0.12702834606170654]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20624.pnts"}},{"boundingVolume":{"box":[15.59541130065918,50.96685028076172,2.8975582122802734,1.4037528038024902,0.0,0.0,0.0,1.1103763580322266,0.0,0.0,0.0,0.8176553249359131]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20625.pnts"}},{"boundingVolume":{"box":[15.610078811645508,53.22718811035156,1.9729933738708496,1.4172477722167969,0.0,0.0,0.0,1.1082286834716797,0.0,0.0,0.0,0.10375171899795532]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20626.pnts"}},{"boundingVolume":{"box":[15.609642028808594,53.22958755493164,2.9576759338378906,1.4176230430603027,0.0,0.0,0.0,1.1285209655761719,0.0,0.0,0.0,0.8739327192306519]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20627.pnts"}}],"content":{"uri":"points/r2062.pnts"}},{"boundingVolume":{"box":[19.867679595947266,47.558600425720215,1.8556632995605469,2.8376073837280273,0.0,0.0,0.0,2.260016441345215,0.0,0.0,0.0,0.19877618551254272]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[18.448291778564453,46.4252815246582,1.730534553527832,1.4182195663452148,0.0,0.0,0.0,1.1266975402832031,0.0,0.0,0.0,0.04264247417449951]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20640.pnts"}},{"boundingVolume":{"box":[18.44983673095703,48.693870544433594,1.8833136558532715,1.4180593490600586,0.0,0.0,0.0,1.1083221435546875,0.0,0.0,0.0,0.15512973070144653]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20642.pnts"}},{"boundingVolume":{"box":[21.287282943725586,46.43287658691406,1.6952711343765259,1.4174690246582031,0.0,0.0,0.0,1.1304244995117188,0.0,0.0,0.0,0.0379866361618042]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20644.pnts"}},{"boundingVolume":{"box":[21.28689956665039,48.69108581542969,1.737422227859497,1.4183874130249023,0.0,0.0,0.0,1.1275310516357422,0.0,0.0,0.0,0.038310885429382324]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20646.pnts"}}],"content":{"uri":"points/r2064.pnts"}},{"boundingVolume":{"box":[19.868330478668213,52.0943546295166,2.7379933893680573,2.838193416595459,0.0,0.0,0.0,2.263822555541992,0.0,0.0,0.0,0.9973640143871307]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[18.447471618652344,50.96324920654297,1.9252748489379883,1.4173345565795898,0.0,0.0,0.0,1.1300163269042969,0.0,0.0,0.0,0.15113705396652222]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20660.pnts"}},{"boundingVolume":{"box":[18.44936752319336,53.222816467285156,1.9513472318649292,1.4188203811645508,0.0,0.0,0.0,1.1293354034423828,0.0,0.0,0.0,0.12674343585968018]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20662.pnts"}},{"boundingVolume":{"box":[18.443256378173828,53.23394012451172,2.9072141647338867,1.4110822677612305,0.0,0.0,0.0,1.110788345336914,0.0,0.0,0.0,0.8281432390213013]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20663.pnts"}},{"boundingVolume":{"box":[21.287418365478516,50.96052169799805,1.783766746520996,1.4191055297851562,0.0,0.0,0.0,1.1082534790039062,0.0,0.0,0.0,0.04289114475250244]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20664.pnts"}},{"boundingVolume":{"box":[21.287181854248047,53.23017120361328,1.8235055208206177,1.4186601638793945,0.0,0.0,0.0,1.1280059814453125,0.0,0.0,0.0,0.03690290451049805]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r20666.pnts"}}],"content":{"uri":"points/r2066.pnts"}}],"content":{"uri":"points/r206.pnts"}}],"content":{"uri":"points/r20.pnts"}},{"boundingVolume":{"box":[11.190791130065918,63.202134132385254,2.984950065612793,11.515719413757324,0.0,0.0,0.0,8.843840599060059,0.0,0.0,0.0,1.1724238395690918]},"geometricError":11.62742462579651,"refine":"ADD","children":[{"boundingVolume":{"box":[5.514334797859192,58.888248443603516,3.057145118713379,5.838930249214172,0.0,0.0,0.0,4.529729843139648,0.0,0.0,0.0,1.1002287864685059]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[2.718536615371704,56.62323760986328,3.0461487770080566,2.9580771923065186,0.0,0.0,0.0,2.264707565307617,0.0,0.0,0.0,1.0163060426712036]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[1.37074613571167,55.24153518676758,2.063594341278076,1.4651811122894287,0.0,0.0,0.0,0.847076416015625,0.0,0.0,0.0,0.015113234519958496]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22000.pnts"}},{"boundingVolume":{"box":[1.352310061454773,55.48286056518555,2.963380813598633,1.4793328046798706,0.0,0.0,0.0,1.1197395324707031,0.0,0.0,0.0,0.8846324682235718]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22001.pnts"}},{"boundingVolume":{"box":[1.3007193803787231,57.756065368652344,3.0673880577087402,1.5372599363327026,0.0,0.0,0.0,1.1318798065185547,0.0,0.0,0.0,0.9777048826217651]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22003.pnts"}},{"boundingVolume":{"box":[4.256614685058594,55.48881530761719,2.0551276206970215,1.4174184799194336,0.0,0.0,0.0,1.130147933959961,0.0,0.0,0.0,0.02353370189666748]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22004.pnts"}},{"boundingVolume":{"box":[3.1280508041381836,56.15435028076172,2.8066024780273438,0.2895374298095703,0.0,0.0,0.0,0.45176124572753906,0.0,0.0,0.0,0.7278462648391724]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22005.pnts"}},{"boundingVolume":{"box":[4.451487064361572,57.11187744140625,2.071338653564453,1.2162718772888184,0.0,0.0,0.0,0.45676612854003906,0.0,0.0,0.0,0.007373690605163574]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22006.pnts"}},{"boundingVolume":{"box":[4.257329940795898,57.75091552734375,2.7709717750549316,1.4189836978912354,0.0,0.0,0.0,1.1184711456298828,0.0,0.0,0.0,0.6922473907470703]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22007.pnts"}}],"content":{"uri":"points/r2200.pnts"}},{"boundingVolume":{"box":[2.6760013699531555,61.153183937072754,3.1258862018585205,3.000596821308136,0.0,0.0,0.0,2.26479434967041,0.0,0.0,0.0,1.0314877033233643]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[1.2579180002212524,60.02063751220703,3.1413209438323975,1.5792125463485718,0.0,0.0,0.0,1.1322479248046875,0.0,0.0,0.0,1.0153748989105225]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22021.pnts"}},{"boundingVolume":{"box":[1.2565603256225586,62.29067611694336,3.1031694412231445,1.581155776977539,0.0,0.0,0.0,1.1260147094726562,0.0,0.0,0.0,0.9337702989578247]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22023.pnts"}},{"boundingVolume":{"box":[4.258514881134033,60.01125717163086,2.132547378540039,1.4180833101272583,0.0,0.0,0.0,1.1082725524902344,0.0,0.0,0.0,0.03814888000488281]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22025.pnts"}},{"boundingVolume":{"box":[4.258600234985352,62.28557586669922,2.1643362045288086,1.4175994396209717,0.0,0.0,0.0,1.1324024200439453,0.0,0.0,0.0,0.035927414894104004]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22027.pnts"}}],"content":{"uri":"points/r2202.pnts"}},{"boundingVolume":{"box":[8.515066146850586,56.62856674194336,2.998173177242279,2.8381989002227783,0.0,0.0,0.0,2.259429931640625,0.0,0.0,0.0,1.041256844997406]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[7.096169948577881,55.49620056152344,2.032639741897583,1.418567180633545,0.0,0.0,0.0,1.1268138885498047,0.0,0.0,0.0,0.03258824348449707]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22040.pnts"}},{"boundingVolume":{"box":[7.099493026733398,57.754356384277344,2.055777072906494,1.4124767780303955,0.0,0.0,0.0,1.1311321258544922,0.0,0.0,0.0,0.02292323112487793]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22042.pnts"}},{"boundingVolume":{"box":[7.09526252746582,58.17449188232422,2.82004976272583,1.4183952808380127,0.0,0.0,0.0,0.7051525115966797,0.0,0.0,0.0,0.74131178855896]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22043.pnts"}},{"boundingVolume":{"box":[9.93277359008789,55.493743896484375,2.01737380027771,1.417719841003418,0.0,0.0,0.0,1.1079845428466797,0.0,0.0,0.0,0.059616029262542725]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22044.pnts"}},{"boundingVolume":{"box":[10.378196716308594,55.644004821777344,2.9032697677612305,0.9747300148010254,0.0,0.0,0.0,0.9476184844970703,0.0,0.0,0.0,0.8235808610916138]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22045.pnts"}},{"boundingVolume":{"box":[9.932750701904297,57.7619743347168,2.0448551177978516,1.4175610542297363,0.0,0.0,0.0,1.1259918212890625,0.0,0.0,0.0,0.033033013343811035]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22046.pnts"}},{"boundingVolume":{"box":[9.930031776428223,57.755821228027344,3.061812400817871,1.4150381088256836,0.0,0.0,0.0,1.1303462982177734,0.0,0.0,0.0,0.977617621421814]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22047.pnts"}}],"content":{"uri":"points/r2204.pnts"}},{"boundingVolume":{"box":[8.515036940574646,61.145790100097656,2.950090765953064,2.838185667991638,0.0,0.0,0.0,2.2575244903564453,0.0,0.0,0.0,0.9162735939025879]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[7.857847213745117,59.657318115234375,2.0680036544799805,0.6568171977996826,0.0,0.0,0.0,0.7288799285888672,0.0,0.0,0.0,0.01070868968963623]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22060.pnts"}},{"boundingVolume":{"box":[7.095654487609863,60.023338317871094,2.9725451469421387,1.4188032150268555,0.0,0.0,0.0,1.1129398345947266,0.0,0.0,0.0,0.8938192129135132]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22061.pnts"}},{"boundingVolume":{"box":[7.097074508666992,62.27816390991211,2.1233911514282227,1.4175899028778076,0.0,0.0,0.0,1.1084365844726562,0.0,0.0,0.0,0.03539907932281494]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22063.pnts"}},{"boundingVolume":{"box":[9.932439804077148,60.020748138427734,2.056267738342285,1.4174423217773438,0.0,0.0,0.0,1.1321525573730469,0.0,0.0,0.0,0.022450566291809082]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22064.pnts"}},{"boundingVolume":{"box":[9.928129196166992,60.01974868774414,2.966278076171875,1.413158893585205,0.0,0.0,0.0,1.1295013427734375,0.0,0.0,0.0,0.8875535726547241]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22065.pnts"}},{"boundingVolume":{"box":[10.143619537353516,62.095977783203125,2.067406177520752,1.2087044715881348,0.0,0.0,0.0,0.9066829681396484,0.0,0.0,0.0,0.011287927627563477]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22066.pnts"}},{"boundingVolume":{"box":[9.93407917022705,62.28643035888672,2.9346518516540527,1.419114112854004,0.0,0.0,0.0,1.1166400909423828,0.0,0.0,0.0,0.8559229373931885]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22067.pnts"}}],"content":{"uri":"points/r2206.pnts"}}],"content":{"uri":"points/r220.pnts"}},{"boundingVolume":{"box":[5.983243942260742,67.73199272155762,3.1123645305633545,5.370006561279297,0.0,0.0,0.0,4.313982009887695,0.0,0.0,0.0,1.0329883098602295]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[3.1441290378570557,65.68290710449219,3.097514033317566,2.530841588973999,0.0,0.0,0.0,2.264810562133789,0.0,0.0,0.0,0.9376226663589478]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[1.7454948425292969,64.55261993408203,3.1152095794677734,1.0909204483032227,0.0,0.0,0.0,1.129922866821289,0.0,0.0,0.0,0.9199271202087402]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22201.pnts"}},{"boundingVolume":{"box":[2.1937096118927,66.81420135498047,3.0624594688415527,0.6435160040855408,0.0,0.0,0.0,1.1310653686523438,0.0,0.0,0.0,0.8324192762374878]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22203.pnts"}},{"boundingVolume":{"box":[4.256603240966797,64.54396057128906,2.196178913116455,1.4169191122055054,0.0,0.0,0.0,1.125864028930664,0.0,0.0,0.0,0.036287546157836914]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22205.pnts"}},{"boundingVolume":{"box":[4.256680488586426,66.82518005371094,3.1031627655029297,1.4180376529693604,0.0,0.0,0.0,1.1216468811035156,0.0,0.0,0.0,0.9155629873275757]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22207.pnts"}}],"content":{"uri":"points/r2220.pnts"}},{"boundingVolume":{"box":[4.097792148590088,69.9094467163086,3.1273140907287598,1.5788440704345703,0.0,0.0,0.0,1.9607772827148438,0.0,0.0,0.0,0.896227240562439]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r2222.pnts"}},{"boundingVolume":{"box":[8.515456557273865,65.68383598327637,3.082292318344116,2.837697148323059,0.0,0.0,0.0,2.2639026641845703,0.0,0.0,0.0,1.0029160976409912]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[7.096175193786621,64.55135345458984,2.972881317138672,1.4184157848358154,0.0,0.0,0.0,1.1314163208007812,0.0,0.0,0.0,0.8585795164108276]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22241.pnts"}},{"boundingVolume":{"box":[7.096462249755859,66.81001281738281,3.056039333343506,1.4183151721954346,0.0,0.0,0.0,1.1270866394042969,0.0,0.0,0.0,0.9144859313964844]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22243.pnts"}},{"boundingVolume":{"box":[9.933991432189941,64.55926513671875,3.0458760261535645,1.4188146591186523,0.0,0.0,0.0,1.1232948303222656,0.0,0.0,0.0,0.9633069038391113]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22245.pnts"}},{"boundingVolume":{"box":[9.93343734741211,66.81549835205078,3.082292318344116,1.4184536933898926,0.0,0.0,0.0,1.1322402954101562,0.0,0.0,0.0,1.0029160976409912]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22247.pnts"}}],"content":{"uri":"points/r2224.pnts"}},{"boundingVolume":{"box":[8.516550064086914,69.99706077575684,3.129323184490204,2.836676597595215,0.0,0.0,0.0,2.0489139556884766,0.0,0.0,0.0,1.0160296559333801]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[7.097330093383789,69.08515167236328,3.1006972789764404,1.417281150817871,0.0,0.0,0.0,1.1272659301757812,0.0,0.0,0.0,0.91648268699646]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22261.pnts"}},{"boundingVolume":{"box":[7.099318027496338,71.12561798095703,3.182859420776367,1.414869785308838,0.0,0.0,0.0,0.911865234375,0.0,0.0,0.0,0.9624934196472168]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22263.pnts"}},{"boundingVolume":{"box":[9.934258460998535,69.07635498046875,3.0902364253997803,1.4189682006835938,0.0,0.0,0.0,1.1280364990234375,0.0,0.0,0.0,0.9692938327789307]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22265.pnts"}},{"boundingVolume":{"box":[9.929771423339844,71.12955474853516,3.099616050720215,1.4138612747192383,0.0,0.0,0.0,0.9164199829101562,0.0,0.0,0.0,0.9387478828430176]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22267.pnts"}}],"content":{"uri":"points/r2226.pnts"}}],"content":{"uri":"points/r222.pnts"}},{"boundingVolume":{"box":[17.029929399490356,58.88817310333252,2.9846871495246887,5.676581144332886,0.0,0.0,0.0,4.529759407043457,0.0,0.0,0.0,1.1721609234809875]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[14.191659927368164,56.622732162475586,3.0188706517219543,2.838197708129883,0.0,0.0,0.0,2.2643184661865234,0.0,0.0,0.0,1.137977421283722]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[12.772384643554688,55.488773345947266,2.0082404613494873,1.4186058044433594,0.0,0.0,0.0,1.1302413940429688,0.0,0.0,0.0,0.07011222839355469]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22400.pnts"}},{"boundingVolume":{"box":[12.772624969482422,55.49884033203125,2.99782657623291,1.4185080528259277,0.0,0.0,0.0,1.1176033020019531,0.0,0.0,0.0,0.9144996404647827]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22401.pnts"}},{"boundingVolume":{"box":[12.771527290344238,57.76078796386719,2.01943302154541,1.4176301956176758,0.0,0.0,0.0,1.108419418334961,0.0,0.0,0.0,0.05527198314666748]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22402.pnts"}},{"boundingVolume":{"box":[12.776351928710938,57.758243560791016,3.019101142883301,1.4150538444519043,0.0,0.0,0.0,1.1288070678710938,0.0,0.0,0.0,0.9353741407394409]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22403.pnts"}},{"boundingVolume":{"box":[15.611948013305664,55.495628356933594,1.9798067808151245,1.4176406860351562,0.0,0.0,0.0,1.1274280548095703,0.0,0.0,0.0,0.09891355037689209]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22404.pnts"}},{"boundingVolume":{"box":[15.610392570495605,55.4888801574707,3.1171412467956543,1.417586326599121,0.0,0.0,0.0,1.1303138732910156,0.0,0.0,0.0,1.037569522857666]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22405.pnts"}},{"boundingVolume":{"box":[15.61016845703125,57.75457763671875,1.9676520824432373,1.4176783561706543,0.0,0.0,0.0,1.131307601928711,0.0,0.0,0.0,0.03592348098754883]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22406.pnts"}},{"boundingVolume":{"box":[14.57419204711914,56.928993225097656,2.901334762573242,0.38208580017089844,0.0,0.0,0.0,0.281890869140625,0.0,0.0,0.0,0.780959963798523]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22407.pnts"}}],"content":{"uri":"points/r2240.pnts"}},{"boundingVolume":{"box":[14.191662549972534,61.15306091308594,2.738257586956024,2.83817982673645,0.0,0.0,0.0,2.264820098876953,0.0,0.0,0.0,0.7612130045890808]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[12.772510528564453,60.01131057739258,2.038987159729004,1.4190278053283691,0.0,0.0,0.0,1.108306884765625,0.0,0.0,0.0,0.03757429122924805]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22420.pnts"}},{"boundingVolume":{"box":[11.847702026367188,60.020225524902344,2.6906819343566895,0.4918694496154785,0.0,0.0,0.0,1.130868911743164,0.0,0.0,0.0,0.5751591920852661]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22421.pnts"}},{"boundingVolume":{"box":[12.773252487182617,62.28554916381836,2.049541711807251,1.4167571067810059,0.0,0.0,0.0,1.1323318481445312,0.0,0.0,0.0,0.029128551483154297]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22422.pnts"}},{"boundingVolume":{"box":[12.76612663269043,62.303375244140625,2.789097785949707,1.4113435745239258,0.0,0.0,0.0,1.112762451171875,0.0,0.0,0.0,0.710372805595398]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22423.pnts"}},{"boundingVolume":{"box":[15.610198974609375,60.02788543701172,2.000270366668701,1.4183597564697266,0.0,0.0,0.0,1.1082935333251953,0.0,0.0,0.0,0.023225784301757812]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22424.pnts"}},{"boundingVolume":{"box":[15.611923217773438,62.278221130371094,2.033782482147217,1.4176177978515625,0.0,0.0,0.0,1.1082592010498047,0.0,0.0,0.0,0.044695913791656494]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22426.pnts"}},{"boundingVolume":{"box":[15.601093292236328,62.49082946777344,2.7159488201141357,1.4087562561035156,0.0,0.0,0.0,0.9196720123291016,0.0,0.0,0.0,0.6368567943572998]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22427.pnts"}}],"content":{"uri":"points/r2242.pnts"}},{"boundingVolume":{"box":[19.868342399597168,56.6232795715332,2.770956039428711,2.838168144226074,0.0,0.0,0.0,2.2647953033447266,0.0,0.0,0.0,0.9584298133850098]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[18.44918441772461,55.49321746826172,1.96501886844635,1.4190101623535156,0.0,0.0,0.0,1.1092948913574219,0.0,0.0,0.0,0.1096566915512085]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22440.pnts"}},{"boundingVolume":{"box":[18.440317153930664,55.07136535644531,2.884340763092041,1.4067535400390625,0.0,0.0,0.0,0.7063961029052734,0.0,0.0,0.0,0.8035870790481567]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22441.pnts"}},{"boundingVolume":{"box":[18.448741912841797,57.76194763183594,1.9345850944519043,1.4184627532958984,0.0,0.0,0.0,1.1261272430419922,0.0,0.0,0.0,0.04107922315597534]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22442.pnts"}},{"boundingVolume":{"box":[21.287216186523438,55.488868713378906,1.8545193672180176,1.4187841415405273,0.0,0.0,0.0,1.1303730010986328,0.0,0.0,0.0,0.04058992862701416]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22444.pnts"}},{"boundingVolume":{"box":[21.288333892822266,57.76110076904297,1.8840765953063965,1.4178924560546875,0.0,0.0,0.0,1.1084213256835938,0.0,0.0,0.0,0.0433078408241272]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22446.pnts"}}],"content":{"uri":"points/r2244.pnts"}},{"boundingVolume":{"box":[19.868253707885742,61.15306854248047,2.8206533789634705,2.838191032409668,0.0,0.0,0.0,2.264863967895508,0.0,0.0,0.0,0.9501638412475586]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[18.448881149291992,60.020748138427734,1.9586584568023682,1.4167537689208984,0.0,0.0,0.0,1.1323165893554688,0.0,0.0,0.0,0.03196895122528076]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22460.pnts"}},{"boundingVolume":{"box":[18.450305938720703,62.2950553894043,2.0131301879882812,1.4170246124267578,0.0,0.0,0.0,1.1085624694824219,0.0,0.0,0.0,0.06507134437561035]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22462.pnts"}},{"boundingVolume":{"box":[18.444454193115234,62.512489318847656,2.768869638442993,1.4075403213500977,0.0,0.0,0.0,0.8780078887939453,0.0,0.0,0.0,0.6896085739135742]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22463.pnts"}},{"boundingVolume":{"box":[21.287784576416016,60.01145935058594,1.9101169109344482,1.4186601638793945,0.0,0.0,0.0,1.1086254119873047,0.0,0.0,0.0,0.03962737321853638]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22464.pnts"}},{"boundingVolume":{"box":[21.287155151367188,62.285491943359375,1.9390923976898193,1.4189233779907227,0.0,0.0,0.0,1.1322345733642578,0.0,0.0,0.0,0.03847426176071167]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22466.pnts"}}],"content":{"uri":"points/r2246.pnts"}}],"content":{"uri":"points/r224.pnts"}},{"boundingVolume":{"box":[17.02960968017578,67.41137313842773,3.012115478515625,5.676301956176758,0.0,0.0,0.0,3.9933624267578125,0.0,0.0,0.0,1.1442046165466309]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[14.190980195999146,65.6827802658081,3.0788674354553223,2.8375861644744873,0.0,0.0,0.0,2.2645273208618164,0.0,0.0,0.0,1.0753836631774902]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[12.824479103088379,64.5444564819336,2.053645372390747,1.3668508529663086,0.0,0.0,0.0,1.1261577606201172,0.0,0.0,0.0,0.025064945220947266]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22600.pnts"}},{"boundingVolume":{"box":[12.771594047546387,64.54877471923828,2.888026714324951,1.4181709289550781,0.0,0.0,0.0,1.1127758026123047,0.0,0.0,0.0,0.8092917203903198]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22601.pnts"}},{"boundingVolume":{"box":[12.777742385864258,66.81382751464844,2.0676109790802,1.4066157341003418,0.0,0.0,0.0,1.1039657592773438,0.0,0.0,0.0,0.011101007461547852]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22602.pnts"}},{"boundingVolume":{"box":[12.771627426147461,66.82218933105469,3.0370874404907227,1.4182333946228027,0.0,0.0,0.0,1.1251182556152344,0.0,0.0,0.0,0.9583662748336792]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22603.pnts"}},{"boundingVolume":{"box":[15.609827995300293,64.54716491699219,2.041886806488037,1.418196678161621,0.0,0.0,0.0,1.1267013549804688,0.0,0.0,0.0,0.033857107162475586]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22604.pnts"}},{"boundingVolume":{"box":[15.527729988098145,64.55278015136719,2.5370430946350098,1.3353090286254883,0.0,0.0,0.0,1.1265583038330078,0.0,0.0,0.0,0.4520961046218872]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22605.pnts"}},{"boundingVolume":{"box":[15.613240242004395,66.81097412109375,2.043910503387451,1.4151334762573242,0.0,0.0,0.0,1.1270713806152344,0.0,0.0,0.0,0.03477823734283447]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22606.pnts"}},{"boundingVolume":{"box":[15.606224060058594,66.80565643310547,3.1105947494506836,1.4130463600158691,0.0,0.0,0.0,1.121063232421875,0.0,0.0,0.0,1.0318565368652344]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22607.pnts"}}],"content":{"uri":"points/r2260.pnts"}},{"boundingVolume":{"box":[14.187467575073242,69.67660522460938,2.9640984535217285,2.834115982055664,0.0,0.0,0.0,1.7281303405761719,0.0,0.0,0.0,0.9554746150970459]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r2262.pnts"}},{"boundingVolume":{"box":[19.86830186843872,65.68296813964844,3.0112438201904297,2.837308406829834,0.0,0.0,0.0,2.2648582458496094,0.0,0.0,0.0,1.1433329582214355]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[18.449520111083984,64.54573822021484,2.015852689743042,1.4185266494750977,0.0,0.0,0.0,1.1087589263916016,0.0,0.0,0.0,0.062367379665374756]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22640.pnts"}},{"boundingVolume":{"box":[18.094778060913086,64.53324890136719,3.0514979362487793,1.0061912536621094,0.0,0.0,0.0,1.1113834381103516,0.0,0.0,0.0,0.969741940498352]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22641.pnts"}},{"boundingVolume":{"box":[18.44878578186035,66.81755065917969,2.0076828002929688,1.4168548583984375,0.0,0.0,0.0,1.1301918029785156,0.0,0.0,0.0,0.07051891088485718]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22642.pnts"}},{"boundingVolume":{"box":[18.441925048828125,66.81336975097656,3.114356756210327,1.4067926406860352,0.0,0.0,0.0,1.1285781860351562,0.0,0.0,0.0,1.0349104404449463]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22643.pnts"}},{"boundingVolume":{"box":[21.287120819091797,64.54490661621094,1.976283073425293,1.4184894561767578,0.0,0.0,0.0,1.1266212463378906,0.0,0.0,0.0,0.10170245170593262]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22644.pnts"}},{"boundingVolume":{"box":[21.310400009155273,64.62821960449219,3.1147513389587402,1.3536701202392578,0.0,0.0,0.0,1.034250259399414,0.0,0.0,0.0,1.0349372625350952]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22645.pnts"}},{"boundingVolume":{"box":[21.286983489990234,66.70549011230469,1.967825174331665,1.417978286743164,0.0,0.0,0.0,1.0008659362792969,0.0,0.0,0.0,0.09966903924942017]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r22646.pnts"}}],"content":{"uri":"points/r2264.pnts"}},{"boundingVolume":{"box":[18.26988983154297,68.46812438964844,2.4783935546875,1.2209978103637695,0.0,0.0,0.0,0.5202522277832031,0.0,0.0,0.0,0.5104416608810425]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r2266.pnts"}}],"content":{"uri":"points/r226.pnts"}}],"content":{"uri":"points/r22.pnts"}},{"boundingVolume":{"box":[34.059842109680176,45.29854774475098,2.5377099812030792,11.353245735168457,0.0,0.0,0.0,9.05966567993164,0.0,0.0,0.0,1.4902999103069305]},"geometricError":11.62742462579651,"refine":"ADD","children":[{"boundingVolume":{"box":[28.38316059112549,40.76871871948242,2.428723990917206,5.6764984130859375,0.0,0.0,0.0,4.529834747314453,0.0,0.0,0.0,1.2555270791053772]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[25.544917583465576,38.50374221801758,2.4352376461029053,2.838200092315674,0.0,0.0,0.0,2.2648582458496094,0.0,0.0,0.0,1.2490134239196777]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[24.125530242919922,37.375953674316406,1.632714033126831,1.4168615341186523,0.0,0.0,0.0,1.108907699584961,0.0,0.0,0.0,0.4459350109100342]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24000.pnts"}},{"boundingVolume":{"box":[24.127710342407227,37.38249588012695,2.8066325187683105,1.4169502258300781,0.0,0.0,0.0,1.1211051940917969,0.0,0.0,0.0,0.72783362865448]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24001.pnts"}},{"boundingVolume":{"box":[24.124778747558594,39.64194869995117,1.7737444639205933,1.4180612564086914,0.0,0.0,0.0,1.1266517639160156,0.0,0.0,0.0,0.3048359155654907]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24002.pnts"}},{"boundingVolume":{"box":[24.097126007080078,39.361488342285156,2.6827454566955566,1.3726568222045898,0.0,0.0,0.0,0.8576774597167969,0.0,0.0,0.0,0.6028238534927368]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24003.pnts"}},{"boundingVolume":{"box":[26.96276092529297,37.370086669921875,1.649916648864746,1.4176301956176758,0.0,0.0,0.0,1.1312007904052734,0.0,0.0,0.0,0.4284648299217224]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24004.pnts"}},{"boundingVolume":{"box":[26.96088409423828,37.377620697021484,2.8668172359466553,1.4157476425170898,0.0,0.0,0.0,1.1110610961914062,0.0,0.0,0.0,0.7875096797943115]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24005.pnts"}},{"boundingVolume":{"box":[26.963098526000977,39.64342498779297,1.767069935798645,1.417226791381836,0.0,0.0,0.0,1.108205795288086,0.0,0.0,0.0,0.29887545108795166]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24006.pnts"}}],"content":{"uri":"points/r2400.pnts"}},{"boundingVolume":{"box":[25.544631958007812,43.033668518066406,2.2164454460144043,2.8379697799682617,0.0,0.0,0.0,2.2648849487304688,0.0,0.0,0.0,0.7116882801055908]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[24.125747680664062,41.90125274658203,1.814941167831421,1.418971061706543,0.0,0.0,0.0,1.1322669982910156,0.0,0.0,0.0,0.2626669406890869]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24020.pnts"}},{"boundingVolume":{"box":[23.51958465576172,42.539459228515625,2.1834096908569336,0.49237728118896484,0.0,0.0,0.0,0.47532081604003906,0.0,0.0,0.0,0.10402226448059082]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24021.pnts"}},{"boundingVolume":{"box":[24.125606536865234,44.15959167480469,1.6211779117584229,1.418309211730957,0.0,0.0,0.0,1.125864028930664,0.0,0.0,0.0,0.03557085990905762]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24022.pnts"}},{"boundingVolume":{"box":[26.963632583618164,41.89339828491211,1.7704867124557495,1.4185523986816406,0.0,0.0,0.0,1.1083259582519531,0.0,0.0,0.0,0.26572954654693604]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24024.pnts"}},{"boundingVolume":{"box":[26.96322250366211,44.16697311401367,1.8049036264419556,1.4178075790405273,0.0,0.0,0.0,1.1315803527832031,0.0,0.0,0.0,0.2674041986465454]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24026.pnts"}}],"content":{"uri":"points/r2402.pnts"}},{"boundingVolume":{"box":[31.221424102783203,38.5037899017334,2.2529549598693848,2.8382349014282227,0.0,0.0,0.0,2.2647438049316406,0.0,0.0,0.0,1.0797580480575562]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[29.80182647705078,37.37615203857422,1.6276742219924927,1.4186372756958008,0.0,0.0,0.0,1.127573013305664,0.0,0.0,0.0,0.44987595081329346]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24040.pnts"}},{"boundingVolume":{"box":[29.80666732788086,37.3701171875,2.6942436695098877,1.414515495300293,0.0,0.0,0.0,1.1310710906982422,0.0,0.0,0.0,0.6097066402435303]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24041.pnts"}},{"boundingVolume":{"box":[29.802291870117188,39.63623809814453,1.6821837425231934,1.4189653396606445,0.0,0.0,0.0,1.1322956085205078,0.0,0.0,0.0,0.39453500509262085]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24042.pnts"}},{"boundingVolume":{"box":[29.799287796020508,39.64313507080078,2.701850414276123,1.415029525756836,0.0,0.0,0.0,1.1120433807373047,0.0,0.0,0.0,0.620284914970398]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24043.pnts"}},{"boundingVolume":{"box":[32.64067840576172,37.37669372558594,1.646120309829712,1.4169139862060547,0.0,0.0,0.0,1.108489990234375,0.0,0.0,0.0,0.4324342608451843]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24044.pnts"}},{"boundingVolume":{"box":[32.640621185302734,37.37407302856445,2.6853952407836914,1.4190378189086914,0.0,0.0,0.0,1.1291465759277344,0.0,0.0,0.0,0.6058140993118286]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24045.pnts"}},{"boundingVolume":{"box":[32.63955307006836,39.62574768066406,1.6823551654815674,1.4180450439453125,0.0,0.0,0.0,1.109701156616211,0.0,0.0,0.0,0.3953700661659241]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24046.pnts"}},{"boundingVolume":{"box":[32.22434997558594,39.48310089111328,2.665804386138916,1.0015144348144531,0.0,0.0,0.0,0.9746570587158203,0.0,0.0,0.0,0.5858341455459595]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24047.pnts"}}],"content":{"uri":"points/r2404.pnts"}},{"boundingVolume":{"box":[31.221808433532715,43.033599853515625,2.45677649974823,2.8376388549804688,0.0,0.0,0.0,2.264833450317383,0.0,0.0,0.0,1.0905585289001465]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[29.802261352539062,41.894264221191406,1.7307696342468262,1.4165382385253906,0.0,0.0,0.0,1.125356674194336,0.0,0.0,0.0,0.3455197811126709]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24060.pnts"}},{"boundingVolume":{"box":[30.54681396484375,41.129608154296875,2.26979923248291,0.3662128448486328,0.0,0.0,0.0,0.3269176483154297,0.0,0.0,0.0,0.19090044498443604]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24061.pnts"}},{"boundingVolume":{"box":[29.802814483642578,44.16066360473633,1.7610528469085693,1.418294906616211,0.0,0.0,0.0,1.1084823608398438,0.0,0.0,0.0,0.31631213426589966]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24062.pnts"}},{"boundingVolume":{"box":[29.802833557128906,44.32469940185547,2.8030338287353516,1.4186639785766602,0.0,0.0,0.0,0.9722061157226562,0.0,0.0,0.0,0.721716046333313]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24063.pnts"}},{"boundingVolume":{"box":[32.64120101928711,41.90185546875,1.41217839717865,1.4182462692260742,0.0,0.0,0.0,1.1317768096923828,0.0,0.0,0.0,0.045960426330566406]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24064.pnts"}},{"boundingVolume":{"box":[32.6414794921875,44.159767150878906,1.7554255723953247,1.4171667098999023,0.0,0.0,0.0,1.1261043548583984,0.0,0.0,0.0,0.3232353925704956]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24066.pnts"}},{"boundingVolume":{"box":[32.62462615966797,44.22394561767578,2.7810306549072266,1.403005599975586,0.0,0.0,0.0,1.0716133117675781,0.0,0.0,0.0,0.7011414766311646]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24067.pnts"}}],"content":{"uri":"points/r2406.pnts"}}],"content":{"uri":"points/r240.pnts"}},{"boundingVolume":{"box":[28.383199214935303,49.82841396331787,2.6008483171463013,5.676602840423584,0.0,0.0,0.0,4.529799461364746,0.0,0.0,0.0,1.1287399530410767]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[25.545190811157227,47.563568115234375,2.6033567786216736,2.8376235961914062,0.0,0.0,0.0,2.2648353576660156,0.0,0.0,0.0,1.0237836241722107]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[24.125782012939453,46.42708969116211,1.6525318622589111,1.4175958633422852,0.0,0.0,0.0,1.1083831787109375,0.0,0.0,0.0,0.04719597101211548]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24200.pnts"}},{"boundingVolume":{"box":[24.125577926635742,48.69866180419922,1.8402142524719238,1.4170207977294922,0.0,0.0,0.0,1.1297245025634766,0.0,0.0,0.0,0.19345569610595703]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24202.pnts"}},{"boundingVolume":{"box":[25.224140167236328,49.46974182128906,2.853412628173828,0.31139469146728516,0.0,0.0,0.0,0.3527050018310547,0.0,0.0,0.0,0.700710654258728]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24203.pnts"}},{"boundingVolume":{"box":[26.96456527709961,46.42519760131836,1.8220834732055664,1.417637825012207,0.0,0.0,0.0,1.1264533996582031,0.0,0.0,0.0,0.24251031875610352]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24204.pnts"}},{"boundingVolume":{"box":[27.351276397705078,46.43409729003906,2.7687292098999023,1.0308761596679688,0.0,0.0,0.0,1.1025123596191406,0.0,0.0,0.0,0.6871191263198853]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24205.pnts"}},{"boundingVolume":{"box":[26.9637393951416,48.69401168823242,1.8420660495758057,1.4179039001464844,0.0,0.0,0.0,1.1082611083984375,0.0,0.0,0.0,0.21885794401168823]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24206.pnts"}},{"boundingVolume":{"box":[26.967132568359375,48.69767761230469,2.848034381866455,1.4113798141479492,0.0,0.0,0.0,1.1305866241455078,0.0,0.0,0.0,0.7686631679534912]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24207.pnts"}}],"content":{"uri":"points/r2420.pnts"}},{"boundingVolume":{"box":[25.545001983642578,52.09067916870117,2.5773488581180573,2.838160514831543,0.0,0.0,0.0,2.2622337341308594,0.0,0.0,0.0,0.9371858537197113]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[24.12462615966797,50.95710372924805,1.8820037841796875,1.4177846908569336,0.0,0.0,0.0,1.1284904479980469,0.0,0.0,0.0,0.18641811609268188]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24220.pnts"}},{"boundingVolume":{"box":[24.12451171875,53.227561950683594,1.774389624595642,1.4175500869750977,0.0,0.0,0.0,1.108306884765625,0.0,0.0,0.0,0.039771199226379395]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24222.pnts"}},{"boundingVolume":{"box":[26.9636173248291,50.96453857421875,1.8595530986785889,1.4178752899169922,0.0,0.0,0.0,1.1287517547607422,0.0,0.0,0.0,0.2178019881248474]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24224.pnts"}},{"boundingVolume":{"box":[26.9271183013916,50.285850524902344,2.798596143722534,1.37823486328125,0.0,0.0,0.0,0.4572277069091797,0.0,0.0,0.0,0.7159385681152344]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24225.pnts"}},{"boundingVolume":{"box":[26.964397430419922,53.22319412231445,1.7226924896240234,1.4187650680541992,0.0,0.0,0.0,1.1297187805175781,0.0,0.0,0.0,0.04747718572616577]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24226.pnts"}}],"content":{"uri":"points/r2422.pnts"}},{"boundingVolume":{"box":[31.222124099731445,47.56423854827881,2.6008483171463013,2.8376522064208984,0.0,0.0,0.0,2.264132499694824,0.0,0.0,0.0,1.1287399530410767]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[29.800453186035156,46.432769775390625,1.7975540161132812,1.4152841567993164,0.0,0.0,0.0,1.1306591033935547,0.0,0.0,0.0,0.27997511625289917]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24240.pnts"}},{"boundingVolume":{"box":[29.80492401123047,46.430198669433594,2.8245999813079834,1.416513442993164,0.0,0.0,0.0,1.1248245239257812,0.0,0.0,0.0,0.743701696395874]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24241.pnts"}},{"boundingVolume":{"box":[29.8029842376709,48.6915397644043,1.8232355117797852,1.4179916381835938,0.0,0.0,0.0,1.12786865234375,0.0,0.0,0.0,0.25243300199508667]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24242.pnts"}},{"boundingVolume":{"box":[29.830562591552734,48.69257354736328,2.9044971466064453,1.3903837203979492,0.0,0.0,0.0,1.110239028930664,0.0,0.0,0.0,0.8250911235809326]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24243.pnts"}},{"boundingVolume":{"box":[32.64196014404297,46.42797088623047,1.7734662294387817,1.4159116744995117,0.0,0.0,0.0,1.1085453033447266,0.0,0.0,0.0,0.30135786533355713]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24244.pnts"}},{"boundingVolume":{"box":[32.64124298095703,46.43096160888672,2.8124399185180664,1.4175586700439453,0.0,0.0,0.0,1.1308555603027344,0.0,0.0,0.0,0.7267279624938965]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24245.pnts"}},{"boundingVolume":{"box":[32.641387939453125,48.69865798950195,1.7820817232131958,1.41790771484375,0.0,0.0,0.0,1.1295433044433594,0.0,0.0,0.0,0.29564154148101807]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24246.pnts"}},{"boundingVolume":{"box":[32.63556671142578,48.691627502441406,2.8936550617218018,1.4138317108154297,0.0,0.0,0.0,1.1238880157470703,0.0,0.0,0.0,0.8109331130981445]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24247.pnts"}}],"content":{"uri":"points/r2424.pnts"}},{"boundingVolume":{"box":[31.221505641937256,52.09340000152588,2.6239433586597443,2.838296413421631,0.0,0.0,0.0,2.2648134231567383,0.0,0.0,0.0,1.1007058322429657]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[29.80257797241211,50.96112823486328,1.8352115154266357,1.4187507629394531,0.0,0.0,0.0,1.1083793640136719,0.0,0.0,0.0,0.2401943802833557]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24260.pnts"}},{"boundingVolume":{"box":[29.808712005615234,50.39506912231445,2.9018478393554688,1.411778450012207,0.0,0.0,0.0,0.563629150390625,0.0,0.0,0.0,0.8228013515472412]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24261.pnts"}},{"boundingVolume":{"box":[29.802303314208984,53.230552673339844,1.6758277416229248,1.4190940856933594,0.0,0.0,0.0,1.1276607513427734,0.0,0.0,0.0,0.04394638538360596]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24262.pnts"}},{"boundingVolume":{"box":[32.64084243774414,50.957786560058594,1.8003833293914795,1.418959617614746,0.0,0.0,0.0,1.1290283203125,0.0,0.0,0.0,0.2771458029747009]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24264.pnts"}},{"boundingVolume":{"box":[32.63917541503906,50.412986755371094,2.868964195251465,1.4167842864990234,0.0,0.0,0.0,0.5624446868896484,0.0,0.0,0.0,0.789739727973938]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24265.pnts"}},{"boundingVolume":{"box":[32.64057159423828,53.22846984863281,1.6132394075393677,1.4188899993896484,0.0,0.0,0.0,1.1085376739501953,0.0,0.0,0.0,0.050984740257263184]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24266.pnts"}}],"content":{"uri":"points/r2426.pnts"}}],"content":{"uri":"points/r242.pnts"}},{"boundingVolume":{"box":[39.73648166656494,40.768710136413574,2.3538958132267,5.676606178283691,0.0,0.0,0.0,4.529828071594238,0.0,0.0,0.0,1.3064857423305511]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[36.898316383361816,38.503804206848145,2.264497756958008,2.8380861282348633,0.0,0.0,0.0,2.264897346496582,0.0,0.0,0.0,1.010970115661621]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[35.4794921875,37.37047576904297,1.6828112602233887,1.4183788299560547,0.0,0.0,0.0,1.1314830780029297,0.0,0.0,0.0,0.39496874809265137]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24400.pnts"}},{"boundingVolume":{"box":[35.478755950927734,36.96372604370117,2.673257827758789,1.4185256958007812,0.0,0.0,0.0,0.7048377990722656,0.0,0.0,0.0,0.594098687171936]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24401.pnts"}},{"boundingVolume":{"box":[35.478614807128906,39.643760681152344,1.3796402215957642,1.4177322387695312,0.0,0.0,0.0,1.1082649230957031,0.0,0.0,0.0,0.03494274616241455]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24402.pnts"}},{"boundingVolume":{"box":[38.317169189453125,37.376094818115234,1.665953278541565,1.4190196990966797,0.0,0.0,0.0,1.1276435852050781,0.0,0.0,0.0,0.4123493432998657]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24404.pnts"}},{"boundingVolume":{"box":[37.466407775878906,36.49187088012695,2.4767956733703613,0.5680828094482422,0.0,0.0,0.0,0.2529640197753906,0.0,0.0,0.0,0.39773261547088623]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24405.pnts"}},{"boundingVolume":{"box":[38.3177490234375,39.636077880859375,1.4281460046768188,1.4183826446533203,0.0,0.0,0.0,1.1320667266845703,0.0,0.0,0.0,0.13221561908721924]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24406.pnts"}}],"content":{"uri":"points/r2440.pnts"}},{"boundingVolume":{"box":[36.8982458114624,43.03361892700195,2.4855801463127136,2.838019371032715,0.0,0.0,0.0,2.264860153198242,0.0,0.0,0.0,1.1670607924461365]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[35.48029327392578,41.89427185058594,1.7182812690734863,1.4175128936767578,0.0,0.0,0.0,1.1084346771240234,0.0,0.0,0.0,0.34760141372680664]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24420.pnts"}},{"boundingVolume":{"box":[35.47981643676758,44.167274475097656,1.733043909072876,1.418121337890625,0.0,0.0,0.0,1.131204605102539,0.0,0.0,0.0,0.3456522822380066]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24422.pnts"}},{"boundingVolume":{"box":[35.4790153503418,44.16398239135742,2.7867393493652344,1.4154243469238281,0.0,0.0,0.0,1.1275100708007812,0.0,0.0,0.0,0.7079347372055054]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24423.pnts"}},{"boundingVolume":{"box":[38.31867218017578,41.894134521484375,1.6584751605987549,1.417593002319336,0.0,0.0,0.0,1.125375747680664,0.0,0.0,0.0,0.3393537402153015]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24424.pnts"}},{"boundingVolume":{"box":[38.318580627441406,44.161563873291016,1.6879937648773193,1.4173240661621094,0.0,0.0,0.0,1.1086502075195312,0.0,0.0,0.0,0.36852627992630005]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24426.pnts"}},{"boundingVolume":{"box":[37.644500732421875,44.16588592529297,2.8697123527526855,0.7449073791503906,0.0,0.0,0.0,1.0768547058105469,0.0,0.0,0.0,0.7829285860061646]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24427.pnts"}}],"content":{"uri":"points/r2442.pnts"}},{"boundingVolume":{"box":[42.574790954589844,38.516889572143555,2.354767382144928,2.838296890258789,0.0,0.0,0.0,2.2516860961914062,0.0,0.0,0.0,1.1203996539115906]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[41.15433120727539,37.37632751464844,1.5886006355285645,1.4176368713378906,0.0,0.0,0.0,1.107046127319336,0.0,0.0,0.0,0.3498308062553406]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24440.pnts"}},{"boundingVolume":{"box":[41.15035629272461,39.64323425292969,1.6636666059494019,1.4136390686035156,0.0,0.0,0.0,1.1253414154052734,0.0,0.0,0.0,0.41476476192474365]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24442.pnts"}},{"boundingVolume":{"box":[41.42699432373047,39.464866638183594,2.260197877883911,0.7766132354736328,0.0,0.0,0.0,0.7998218536376953,0.0,0.0,0.0,0.18111300468444824]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24443.pnts"}},{"boundingVolume":{"box":[43.993690490722656,37.385562896728516,1.7442585229873657,1.4183425903320312,0.0,0.0,0.0,1.1059532165527344,0.0,0.0,0.0,0.3344520330429077]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24444.pnts"}},{"boundingVolume":{"box":[44.624507904052734,37.373268127441406,2.776970148086548,0.7885093688964844,0.0,0.0,0.0,1.1080646514892578,0.0,0.0,0.0,0.6981968879699707]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24445.pnts"}},{"boundingVolume":{"box":[43.99457550048828,39.641727447509766,1.5791743993759155,1.4176502227783203,0.0,0.0,0.0,1.1081123352050781,0.0,0.0,0.0,0.3448066711425781]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24446.pnts"}}],"content":{"uri":"points/r2444.pnts"}},{"boundingVolume":{"box":[42.57480239868164,43.03365993499756,1.9737687408924103,2.8382205963134766,0.0,0.0,0.0,2.264878273010254,0.0,0.0,0.0,0.9263586699962616]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[41.15558624267578,41.90119934082031,1.5660121440887451,1.4189777374267578,0.0,0.0,0.0,1.1324176788330078,0.0,0.0,0.0,0.4887802004814148]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24460.pnts"}},{"boundingVolume":{"box":[41.1553955078125,44.16037368774414,1.6075201034545898,1.4183025360107422,0.0,0.0,0.0,1.126708984375,0.0,0.0,0.0,0.3444666266441345]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24462.pnts"}},{"boundingVolume":{"box":[43.993560791015625,41.90976333618164,1.635209560394287,1.4187068939208984,0.0,0.0,0.0,1.1233139038085938,0.0,0.0,0.0,0.44262075424194336]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24464.pnts"}},{"boundingVolume":{"box":[43.99418640136719,42.153106689453125,2.489718198776245,1.4180278778076172,0.0,0.0,0.0,0.8802261352539062,0.0,0.0,0.0,0.41040921211242676]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24465.pnts"}},{"boundingVolume":{"box":[43.994285583496094,44.166343688964844,1.5628433227539062,1.4187374114990234,0.0,0.0,0.0,1.1321945190429688,0.0,0.0,0.0,0.5154332518577576]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24466.pnts"}},{"boundingVolume":{"box":[44.57938003540039,43.286460876464844,2.386655330657959,0.8308296203613281,0.0,0.0,0.0,0.25264739990234375,0.0,0.0,0.0,0.30294835567474365]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24467.pnts"}}],"content":{"uri":"points/r2446.pnts"}}],"content":{"uri":"points/r244.pnts"}},{"boundingVolume":{"box":[39.7364387512207,49.82841682434082,2.572670102119446,5.676557540893555,0.0,0.0,0.0,4.529794692993164,0.0,0.0,0.0,1.455339789390564]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[36.89810848236084,47.5634651184082,2.4697700440883636,2.8382272720336914,0.0,0.0,0.0,2.2646751403808594,0.0,0.0,0.0,1.120820790529251]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[35.479515075683594,46.42620086669922,1.7495534420013428,1.418355941772461,0.0,0.0,0.0,1.1272640228271484,0.0,0.0,0.0,0.3290995955467224]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24600.pnts"}},{"boundingVolume":{"box":[35.44917297363281,46.419525146484375,2.5775721073150635,1.3876323699951172,0.0,0.0,0.0,1.1054801940917969,0.0,0.0,0.0,0.4985949993133545]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24601.pnts"}},{"boundingVolume":{"box":[35.478790283203125,48.69399642944336,1.756282091140747,1.4184341430664062,0.0,0.0,0.0,1.1098785400390625,0.0,0.0,0.0,0.3188977837562561]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24602.pnts"}},{"boundingVolume":{"box":[35.478519439697266,48.70018005371094,2.796694755554199,1.4183769226074219,0.0,0.0,0.0,1.1274776458740234,0.0,0.0,0.0,0.7133172750473022]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24603.pnts"}},{"boundingVolume":{"box":[38.31725311279297,46.433258056640625,1.5916492938995361,1.4190826416015625,0.0,0.0,0.0,1.129903793334961,0.0,0.0,0.0,0.24270004034042358]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24604.pnts"}},{"boundingVolume":{"box":[38.3165168762207,48.692176818847656,1.7036125659942627,1.4172286987304688,0.0,0.0,0.0,1.1286468505859375,0.0,0.0,0.0,0.32645565271377563]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24606.pnts"}},{"boundingVolume":{"box":[38.25624465942383,48.419166564941406,2.8506364822387695,1.3550033569335938,0.0,0.0,0.0,0.7863597869873047,0.0,0.0,0.0,0.7399543523788452]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24607.pnts"}}],"content":{"uri":"points/r2460.pnts"}},{"boundingVolume":{"box":[36.898170471191406,52.09347057342529,2.6916732788085938,2.838235855102539,0.0,0.0,0.0,2.2647409439086914,0.0,0.0,0.0,1.3010847568511963]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[35.478118896484375,50.96503448486328,1.7591049671173096,1.4181842803955078,0.0,0.0,0.0,1.1282329559326172,0.0,0.0,0.0,0.3157944679260254]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24620.pnts"}},{"boundingVolume":{"box":[35.475990295410156,50.95820617675781,2.9958221912384033,1.411752700805664,0.0,0.0,0.0,1.1289806365966797,0.0,0.0,0.0,0.9132308959960938]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24621.pnts"}},{"boundingVolume":{"box":[35.47901153564453,53.22394561767578,1.7917205095291138,1.4190082550048828,0.0,0.0,0.0,1.1303939819335938,0.0,0.0,0.0,0.2866755723953247]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24622.pnts"}},{"boundingVolume":{"box":[35.76411437988281,53.226375579833984,3.0360312461853027,1.1333675384521484,0.0,0.0,0.0,1.1133613586425781,0.0,0.0,0.0,0.9567267894744873]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24623.pnts"}},{"boundingVolume":{"box":[38.31731414794922,50.96270751953125,1.7340118885040283,1.4180049896240234,0.0,0.0,0.0,1.1085968017578125,0.0,0.0,0.0,0.34342336654663086]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24624.pnts"}},{"boundingVolume":{"box":[37.23134994506836,51.2186393737793,2.729829788208008,0.328369140625,0.0,0.0,0.0,0.8742332458496094,0.0,0.0,0.0,0.6507071256637573]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24625.pnts"}},{"boundingVolume":{"box":[38.31732940673828,53.22819519042969,1.7441153526306152,1.419076919555664,0.0,0.0,0.0,1.1300163269042969,0.0,0.0,0.0,0.327603816986084]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24626.pnts"}},{"boundingVolume":{"box":[37.76370620727539,53.22391128540039,2.8424320220947266,0.8652687072753906,0.0,0.0,0.0,1.1303558349609375,0.0,0.0,0.0,0.7637091875076294]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24627.pnts"}}],"content":{"uri":"points/r2462.pnts"}},{"boundingVolume":{"box":[42.5748176574707,47.56351089477539,2.204695701599121,2.838054656982422,0.0,0.0,0.0,2.2648887634277344,0.0,0.0,0.0,1.0873653888702393]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[41.15565490722656,46.428810119628906,1.6125357151031494,1.4188919067382812,0.0,0.0,0.0,1.1084575653076172,0.0,0.0,0.0,0.35400837659835815]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24640.pnts"}},{"boundingVolume":{"box":[41.15455627441406,48.69770812988281,1.6997926235198975,1.4175090789794922,0.0,0.0,0.0,1.1304378509521484,0.0,0.0,0.0,0.37724047899246216]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24642.pnts"}},{"boundingVolume":{"box":[41.82969665527344,48.89479446411133,2.605253219604492,0.7322635650634766,0.0,0.0,0.0,0.9262733459472656,0.0,0.0,0.0,0.5187925100326538]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24643.pnts"}},{"boundingVolume":{"box":[43.993736267089844,46.426307678222656,1.5676575899124146,1.4187793731689453,0.0,0.0,0.0,1.1275062561035156,0.0,0.0,0.0,0.44583451747894287]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24644.pnts"}},{"boundingVolume":{"box":[43.9942626953125,48.695465087890625,1.6643275022506714,1.418609619140625,0.0,0.0,0.0,1.1098613739013672,0.0,0.0,0.0,0.414190411567688]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24646.pnts"}},{"boundingVolume":{"box":[43.331520080566406,48.80348587036133,2.669665813446045,0.7521343231201172,0.0,0.0,0.0,1.0232772827148438,0.0,0.0,0.0,0.5900577306747437]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24647.pnts"}}],"content":{"uri":"points/r2464.pnts"}},{"boundingVolume":{"box":[42.57474899291992,52.09182834625244,2.523461401462555,2.838247299194336,0.0,0.0,0.0,2.2633161544799805,0.0,0.0,0.0,1.2601280808448792]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[41.15681838989258,50.95848083496094,1.7059168815612793,1.4179496765136719,0.0,0.0,0.0,1.1299686431884766,0.0,0.0,0.0,0.36689215898513794]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24660.pnts"}},{"boundingVolume":{"box":[41.59675598144531,50.96725845336914,2.728433132171631,0.9779720306396484,0.0,0.0,0.0,1.1043701171875,0.0,0.0,0.0,0.6420911550521851]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24661.pnts"}},{"boundingVolume":{"box":[41.155494689941406,53.22953796386719,1.7154040336608887,1.4189929962158203,0.0,0.0,0.0,1.108072280883789,0.0,0.0,0.0,0.36194711923599243]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24662.pnts"}},{"boundingVolume":{"box":[41.759552001953125,53.215415954589844,2.9312024116516113,0.8150463104248047,0.0,0.0,0.0,1.1101055145263672,0.0,0.0,0.0,0.8523870706558228]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24663.pnts"}},{"boundingVolume":{"box":[43.993995666503906,50.9639892578125,1.6705409288406372,1.418975830078125,0.0,0.0,0.0,1.1289863586425781,0.0,0.0,0.0,0.4072076082229614]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24664.pnts"}},{"boundingVolume":{"box":[43.991920471191406,50.95835876464844,2.764334201812744,1.4169292449951172,0.0,0.0,0.0,1.1276741027832031,0.0,0.0,0.0,0.6845598220825195]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24665.pnts"}},{"boundingVolume":{"box":[43.9918327331543,53.22428512573242,1.6839866638183594,1.416961669921875,0.0,0.0,0.0,1.130859375,0.0,0.0,0.0,0.39426344633102417]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24666.pnts"}},{"boundingVolume":{"box":[43.99440383911133,53.22315216064453,2.879412889480591,1.4184379577636719,0.0,0.0,0.0,1.112548828125,0.0,0.0,0.0,0.8003993034362793]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r24667.pnts"}}],"content":{"uri":"points/r2466.pnts"}}],"content":{"uri":"points/r246.pnts"}}],"content":{"uri":"points/r24.pnts"}},{"boundingVolume":{"box":[34.059375286102295,60.46532344818115,2.6848807334899902,11.352768421173096,0.0,0.0,0.0,6.1069536209106445,0.0,0.0,0.0,1.4724936485290527]},"geometricError":11.62742462579651,"refine":"ADD","children":[{"boundingVolume":{"box":[28.383145332336426,58.88804054260254,2.7139453887939453,5.676538467407227,0.0,0.0,0.0,4.529670715332031,0.0,0.0,0.0,1.443352222442627]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[25.54408597946167,56.62882041931152,1.7948732674121857,2.837226390838623,0.0,0.0,0.0,2.2592411041259766,0.0,0.0,0.0,0.07661589980125427]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[24.127124786376953,55.496421813964844,1.8059380054473877,1.4175233840942383,0.0,0.0,0.0,1.1266765594482422,0.0,0.0,0.0,0.03546088933944702]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26000.pnts"}},{"boundingVolume":{"box":[24.127038955688477,57.75494384765625,1.834471344947815,1.4169425964355469,0.0,0.0,0.0,1.1316509246826172,0.0,0.0,0.0,0.037017822265625]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26002.pnts"}},{"boundingVolume":{"box":[26.963123321533203,55.494598388671875,1.7571802139282227,1.4181890487670898,0.0,0.0,0.0,1.108510971069336,0.0,0.0,0.0,0.03892284631729126]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26004.pnts"}},{"boundingVolume":{"box":[26.963451385498047,57.762264251708984,1.7901064157485962,1.4159631729125977,0.0,0.0,0.0,1.1257972717285156,0.0,0.0,0.0,0.04002487659454346]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26006.pnts"}}],"content":{"uri":"points/r2600.pnts"}},{"boundingVolume":{"box":[25.544853687286377,61.15293884277344,2.938205301761627,2.8382468223571777,0.0,0.0,0.0,2.2644786834716797,0.0,0.0,0.0,1.213593304157257]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[24.124902725219727,60.02833557128906,1.8642841577529907,1.418203353881836,0.0,0.0,0.0,1.1084766387939453,0.0,0.0,0.0,0.03693819046020508]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26020.pnts"}},{"boundingVolume":{"box":[24.127483367919922,62.279197692871094,1.902645468711853,1.4171075820922852,0.0,0.0,0.0,1.1089420318603516,0.0,0.0,0.0,0.0824127197265625]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26022.pnts"}},{"boundingVolume":{"box":[23.641271591186523,62.968116760253906,3.145139694213867,0.9309825897216797,0.0,0.0,0.0,0.44930076599121094,0.0,0.0,0.0,1.006658911705017]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26023.pnts"}},{"boundingVolume":{"box":[26.964754104614258,60.020668029785156,1.815980076789856,1.4183464050292969,0.0,0.0,0.0,1.1322078704833984,0.0,0.0,0.0,0.03888678550720215]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26024.pnts"}},{"boundingVolume":{"box":[26.964130401611328,62.27899169921875,1.796271562576294,1.4189519882202148,0.0,0.0,0.0,1.1258659362792969,0.0,0.0,0.0,0.07165956497192383]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26026.pnts"}}],"content":{"uri":"points/r2602.pnts"}},{"boundingVolume":{"box":[31.22167730331421,56.623268127441406,2.4633731842041016,2.837930202484131,0.0,0.0,0.0,2.264677047729492,0.0,0.0,0.0,0.8661378026008606]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[29.802570343017578,55.489234924316406,1.7099636793136597,1.417989730834961,0.0,0.0,0.0,1.1305084228515625,0.0,0.0,0.0,0.04498410224914551]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26040.pnts"}},{"boundingVolume":{"box":[29.802642822265625,57.76188659667969,1.7396965026855469,1.4186601638793945,0.0,0.0,0.0,1.1085529327392578,0.0,0.0,0.0,0.03997522592544556]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26042.pnts"}},{"boundingVolume":{"box":[32.64112854003906,55.49662399291992,1.6489546298980713,1.4173831939697266,0.0,0.0,0.0,1.1264686584472656,0.0,0.0,0.0,0.05025815963745117]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26044.pnts"}},{"boundingVolume":{"box":[32.6406135559082,57.75556182861328,1.6778231859207153,1.4189939498901367,0.0,0.0,0.0,1.1323261260986328,0.0,0.0,0.0,0.04932582378387451]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26046.pnts"}}],"content":{"uri":"points/r2604.pnts"}},{"boundingVolume":{"box":[31.221503257751465,61.160667419433594,2.7138624787330627,2.8381805419921875,0.0,0.0,0.0,2.2570438385009766,0.0,0.0,0.0,1.443017065525055]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[29.80194091796875,60.01248550415039,1.8897417783737183,1.4186182022094727,0.0,0.0,0.0,1.1086654663085938,0.0,0.0,0.0,0.18191564083099365]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26060.pnts"}},{"boundingVolume":{"box":[30.567909240722656,60.520145416259766,3.118574857711792,0.6528635025024414,0.0,0.0,0.0,0.6190452575683594,0.0,0.0,0.0,1.0373122692108154]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26061.pnts"}},{"boundingVolume":{"box":[29.801799774169922,62.28590393066406,1.6724867820739746,1.418400764465332,0.0,0.0,0.0,1.1316699981689453,0.0,0.0,0.0,0.4016413688659668]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26062.pnts"}},{"boundingVolume":{"box":[32.642982482910156,60.02973937988281,1.8262192010879517,1.416701316833496,0.0,0.0,0.0,1.1091346740722656,0.0,0.0,0.0,0.2433685064315796]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26064.pnts"}},{"boundingVolume":{"box":[32.64125442504883,60.03345489501953,3.1209917068481445,1.4183855056762695,0.0,0.0,0.0,1.1193561553955078,0.0,0.0,0.0,1.0358878374099731]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26065.pnts"}},{"boundingVolume":{"box":[32.639366149902344,62.02246856689453,1.6491637229919434,1.415818214416504,0.0,0.0,0.0,0.8509387969970703,0.0,0.0,0.0,0.15444833040237427]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26066.pnts"}},{"boundingVolume":{"box":[32.608985900878906,61.30744552612305,3.1973371505737305,1.3838281631469727,0.0,0.0,0.0,0.15400314331054688,0.0,0.0,0.0,0.7546613216400146]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26067.pnts"}}],"content":{"uri":"points/r2606.pnts"}}],"content":{"uri":"points/r260.pnts"}},{"boundingVolume":{"box":[26.331464767456055,64.99517822265625,2.684640884399414,3.6231555938720703,0.0,0.0,0.0,1.5770988464355469,0.0,0.0,0.0,1.4722537994384766]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r262.pnts"}},{"boundingVolume":{"box":[39.73602485656738,58.024173736572266,2.7304863035678864,5.676118850708008,0.0,0.0,0.0,3.665771484375,0.0,0.0,0.0,1.4268880784511566]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[36.89816474914551,56.623268127441406,2.785691261291504,2.838258743286133,0.0,0.0,0.0,2.2648658752441406,0.0,0.0,0.0,1.3705216646194458]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[35.4793701171875,55.49591827392578,1.8012422323226929,1.4175758361816406,0.0,0.0,0.0,1.1085834503173828,0.0,0.0,0.0,0.27549493312835693]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26400.pnts"}},{"boundingVolume":{"box":[36.393009185791016,55.49021911621094,2.65313458442688,0.5045051574707031,0.0,0.0,0.0,1.1044902801513672,0.0,0.0,0.0,0.5735843181610107]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26401.pnts"}},{"boundingVolume":{"box":[35.47857666015625,57.76277542114258,1.812589168548584,1.4167499542236328,0.0,0.0,0.0,1.1253395080566406,0.0,0.0,0.0,0.2644297480583191]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26402.pnts"}},{"boundingVolume":{"box":[35.96818161010742,57.76177215576172,3.1050424575805664,0.9237556457519531,0.0,0.0,0.0,1.1259994506835938,0.0,0.0,0.0,1.021965503692627]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26403.pnts"}},{"boundingVolume":{"box":[38.31616973876953,55.49018096923828,1.7536654472351074,1.4174022674560547,0.0,0.0,0.0,1.1317787170410156,0.0,0.0,0.0,0.3240508437156677]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26404.pnts"}},{"boundingVolume":{"box":[38.046730041503906,55.49519348144531,2.724139928817749,1.1482925415039062,0.0,0.0,0.0,1.1079349517822266,0.0,0.0,0.0,0.6450784206390381]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26405.pnts"}},{"boundingVolume":{"box":[38.316627502441406,57.76393508911133,1.747206211090088,1.4182815551757812,0.0,0.0,0.0,1.1092033386230469,0.0,0.0,0.0,0.33133429288864136]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26406.pnts"}},{"boundingVolume":{"box":[38.31730270385742,57.76014709472656,3.1155154705047607,1.4191207885742188,0.0,0.0,0.0,1.1273479461669922,0.0,0.0,0.0,1.0346548557281494]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26407.pnts"}}],"content":{"uri":"points/r2640.pnts"}},{"boundingVolume":{"box":[36.89690399169922,60.28904724121094,2.797088861465454,2.836946487426758,0.0,0.0,0.0,1.4008979797363281,0.0,0.0,0.0,1.358107328414917]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r2642.pnts"}},{"boundingVolume":{"box":[42.574317932128906,56.62251567840576,2.7304863035678864,2.8378257751464844,0.0,0.0,0.0,2.256167411804199,0.0,0.0,0.0,1.4268880784511566]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[41.155372619628906,55.49757385253906,1.7094630002975464,1.4186115264892578,0.0,0.0,0.0,1.1255912780761719,0.0,0.0,0.0,0.3671303987503052]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26440.pnts"}},{"boundingVolume":{"box":[42.24662780761719,55.4698371887207,2.6849589347839355,0.3260154724121094,0.0,0.0,0.0,1.1031875610351562,0.0,0.0,0.0,0.6046320199966431]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26441.pnts"}},{"boundingVolume":{"box":[41.15234375,57.7509765625,1.703112244606018,1.4130859375,0.0,0.0,0.0,1.127706527709961,0.0,0.0,0.0,0.36447155475616455]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26442.pnts"}},{"boundingVolume":{"box":[41.154449462890625,57.76631164550781,3.107945442199707,1.4175052642822266,0.0,0.0,0.0,1.0920658111572266,0.0,0.0,0.0,1.0277199745178223]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26443.pnts"}},{"boundingVolume":{"box":[43.99413299560547,55.49419021606445,1.6906061172485352,1.416971206665039,0.0,0.0,0.0,1.1120567321777344,0.0,0.0,0.0,0.3870078921318054]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26444.pnts"}},{"boundingVolume":{"box":[43.9936637878418,55.49554443359375,2.8225767612457275,1.4184799194335938,0.0,0.0,0.0,1.1271629333496094,0.0,0.0,0.0,0.7434933185577393]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26445.pnts"}},{"boundingVolume":{"box":[43.9912223815918,57.336036682128906,1.6961748600006104,1.4121475219726562,0.0,0.0,0.0,0.7043285369873047,0.0,0.0,0.0,0.37631314992904663]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26446.pnts"}},{"boundingVolume":{"box":[43.58137512207031,57.02696990966797,2.418402910232544,1.0060710906982422,0.0,0.0,0.0,0.4036598205566406,0.0,0.0,0.0,0.32979917526245117]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r26447.pnts"}}],"content":{"uri":"points/r2644.pnts"}},{"boundingVolume":{"box":[40.15298843383789,59.081111907958984,2.6363303661346436,0.4089927673339844,0.0,0.0,0.0,0.19208145141601562,0.0,0.0,0.0,1.2107467651367188]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r2646.pnts"}}],"content":{"uri":"points/r264.pnts"}}],"content":{"uri":"points/r26.pnts"}}],"content":{"uri":"points/r2.pnts"}},{"boundingVolume":{"box":[19.78580093383789,61.49382781982422,4.642784118652344,20.009136199951172,0.0,0.0,0.0,6.14869499206543,0.0,0.0,0.0,0.4853174686431885]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r3.pnts"}},{"boundingVolume":{"box":[68.28850555419922,18.38966727256775,1.315315842628479,22.875308990478516,0.0,0.0,0.0,17.849184274673462,0.0,0.0,0.0,2.7464725971221924]},"geometricError":23.25484925159302,"refine":"ADD","children":[{"boundingVolume":{"box":[63.06394863128662,15.761757850646973,0.7255436182022095,5.055634498596191,0.0,0.0,0.0,2.35764217376709,0.0,0.0,0.0,1.6003371477127075]},"geometricError":11.62742462579651,"refine":"ADD","children":[{"boundingVolume":{"box":[63.113951683044434,15.762023448944092,0.7255436182022095,5.005631446838379,0.0,0.0,0.0,2.357314109802246,0.0,0.0,0.0,1.6003371477127075]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[60.313255310058594,17.221359252929688,-0.6907014846801758,2.1049346923828125,0.0,0.0,0.0,0.8497533798217773,0.0,0.0,0.0,0.04635009169578552]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r4062.pnts"}},{"boundingVolume":{"box":[65.31404876708984,15.861139297485352,0.7239600419998169,2.8055343627929688,0.0,0.0,0.0,2.2581982612609863,0.0,0.0,0.0,1.594215750694275]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r4066.pnts"}}],"content":{"uri":"points/r406.pnts"}}],"content":{"uri":"points/r40.pnts"}},{"boundingVolume":{"box":[56.76640701293945,27.17918634414673,1.6665404438972473,11.35321044921875,0.0,0.0,0.0,9.059665203094482,0.0,0.0,0.0,2.395247995853424]},"geometricError":11.62742462579651,"refine":"ADD","children":[{"boundingVolume":{"box":[51.08998680114746,22.858431339263916,1.3309271335601807,5.676233291625977,0.0,0.0,0.0,4.320523738861084,0.0,0.0,0.0,1.9437990188598633]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[48.758697509765625,21.703914642333984,1.2443474531173706,2.3299484252929688,0.0,0.0,0.0,0.93328857421875,0.0,0.0,0.0,1.7300750017166138]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r4200.pnts"}},{"boundingVolume":{"box":[48.251094818115234,24.917968273162842,1.1056550741195679,2.83734130859375,0.0,0.0,0.0,2.260140895843506,0.0,0.0,0.0,1.5326160192489624]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[46.835052490234375,23.7952938079834,0.833133339881897,1.4155941009521484,0.0,0.0,0.0,1.1186161041259766,0.0,0.0,0.0,1.2447668313980103]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42020.pnts"}},{"boundingVolume":{"box":[46.82993698120117,26.041622161865234,1.0904113054275513,1.4161529541015625,0.0,0.0,0.0,1.1273927688598633,0.0,0.0,0.0,0.9881122708320618]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42022.pnts"}},{"boundingVolume":{"box":[46.678916931152344,26.01479148864746,2.2519216537475586,0.8690624237060547,0.0,0.0,0.0,1.0751667022705078,0.0,0.0,0.0,0.17306876182556152]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42023.pnts"}},{"boundingVolume":{"box":[49.66590881347656,23.784866333007812,0.7588717937469482,1.4140949249267578,0.0,0.0,0.0,1.126932144165039,0.0,0.0,0.0,1.180717945098877]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42024.pnts"}},{"boundingVolume":{"box":[49.67084503173828,26.046791076660156,1.3057222366333008,1.4169139862060547,0.0,0.0,0.0,1.1313180923461914,0.0,0.0,0.0,0.7692548632621765]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42026.pnts"}},{"boundingVolume":{"box":[50.15972137451172,26.18627166748047,2.3291373252868652,0.9157009124755859,0.0,0.0,0.0,0.9778738021850586,0.0,0.0,0.0,0.24033796787261963]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42027.pnts"}}],"content":{"uri":"points/r4202.pnts"}},{"boundingVolume":{"box":[53.92603302001953,20.593456268310547,1.0006506443023682,2.8362483978271484,0.0,0.0,0.0,2.055548667907715,0.0,0.0,0.0,1.6135225296020508]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r4204.pnts"}},{"boundingVolume":{"box":[53.92817497253418,24.914122581481934,1.579574704170227,2.838045120239258,0.0,0.0,0.0,2.2648324966430664,0.0,0.0,0.0,1.695151448249817]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[52.50986099243164,23.77008628845215,1.091148018836975,1.417724609375,0.0,0.0,0.0,1.118661880493164,0.0,0.0,0.0,0.9552765488624573]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42060.pnts"}},{"boundingVolume":{"box":[52.50853729248047,26.050365447998047,1.6193251609802246,1.4183368682861328,0.0,0.0,0.0,1.1285896301269531,0.0,0.0,0.0,0.32073527574539185]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42062.pnts"}},{"boundingVolume":{"box":[55.347721099853516,23.78276824951172,1.109259009361267,1.4184989929199219,0.0,0.0,0.0,1.131373405456543,0.0,0.0,0.0,0.9683669209480286]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42064.pnts"}},{"boundingVolume":{"box":[55.346038818359375,26.035751342773438,1.4350917339324951,1.4159774780273438,0.0,0.0,0.0,1.1213922500610352,0.0,0.0,0.0,0.6397022604942322]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42066.pnts"}},{"boundingVolume":{"box":[55.74331283569336,26.039405822753906,2.677537679672241,1.0197486877441406,0.0,0.0,0.0,1.102574348449707,0.0,0.0,0.0,0.5971884727478027]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42067.pnts"}}],"content":{"uri":"points/r4206.pnts"}}],"content":{"uri":"points/r420.pnts"}},{"boundingVolume":{"box":[51.08973503112793,31.708980560302734,2.484674960374832,5.676538467407227,0.0,0.0,0.0,4.52978515625,0.0,0.0,0.0,1.5771134793758392]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[48.25137805938721,29.448763847351074,2.174108177423477,2.838181495666504,0.0,0.0,0.0,2.260136604309082,0.0,0.0,0.0,1.2665466964244843]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[46.833900451660156,28.31671905517578,1.492140531539917,1.4162178039550781,0.0,0.0,0.0,1.1263494491577148,0.0,0.0,0.0,0.5845790505409241]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42200.pnts"}},{"boundingVolume":{"box":[46.844932556152344,28.31585121154785,2.612016201019287,1.4031333923339844,0.0,0.0,0.0,1.1272239685058594,0.0,0.0,0.0,0.5323076248168945]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42201.pnts"}},{"boundingVolume":{"box":[46.83220672607422,30.576831817626953,1.6009018421173096,1.4186820983886719,0.0,0.0,0.0,1.1301345825195312,0.0,0.0,0.0,0.47565966844558716]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42202.pnts"}},{"boundingVolume":{"box":[46.83217239379883,30.49677276611328,2.5845789909362793,1.418975830078125,0.0,0.0,0.0,1.0524406433105469,0.0,0.0,0.0,0.5057735443115234]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42203.pnts"}},{"boundingVolume":{"box":[49.67105484008789,28.315475463867188,1.5086712837219238,1.4182701110839844,0.0,0.0,0.0,1.1073551177978516,0.0,0.0,0.0,0.5666372776031494]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42204.pnts"}},{"boundingVolume":{"box":[49.66740798950195,28.322790145874023,2.7006053924560547,1.4062614440917969,0.0,0.0,0.0,1.1187973022460938,0.0,0.0,0.0,0.6195218563079834]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42205.pnts"}},{"boundingVolume":{"box":[49.66184997558594,30.58303451538086,1.8282116651535034,1.4104042053222656,0.0,0.0,0.0,1.1257295608520508,0.0,0.0,0.0,0.24924004077911377]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42206.pnts"}},{"boundingVolume":{"box":[49.66515350341797,30.577638626098633,2.7439541816711426,1.408395767211914,0.0,0.0,0.0,1.1310901641845703,0.0,0.0,0.0,0.6623106002807617]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42207.pnts"}}],"content":{"uri":"points/r4220.pnts"}},{"boundingVolume":{"box":[48.25170135498047,33.973872661590576,2.822804808616638,2.837949752807617,0.0,0.0,0.0,2.2648682594299316,0.0,0.0,0.0,1.2389836311340332]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[46.827606201171875,32.541358947753906,1.8325390815734863,1.4138545989990234,0.0,0.0,0.0,0.7966232299804688,0.0,0.0,0.0,0.24616479873657227]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42220.pnts"}},{"boundingVolume":{"box":[46.83586120605469,32.99970626831055,2.7356176376342773,1.4124946594238281,0.0,0.0,0.0,0.9509849548339844,0.0,0.0,0.0,0.6568441390991211]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42221.pnts"}},{"boundingVolume":{"box":[46.832435607910156,35.11289978027344,2.9592931270599365,1.4166030883789062,0.0,0.0,0.0,1.1258411407470703,0.0,0.0,0.0,0.8265571594238281]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42223.pnts"}},{"boundingVolume":{"box":[49.681190490722656,32.73964309692383,1.9217723608016968,1.4083118438720703,0.0,0.0,0.0,1.030573844909668,0.0,0.0,0.0,0.15693247318267822]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42224.pnts"}},{"boundingVolume":{"box":[49.67483139038086,32.83968734741211,2.9712133407592773,1.4112815856933594,0.0,0.0,0.0,1.129521369934082,0.0,0.0,0.0,0.892151951789856]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42225.pnts"}},{"boundingVolume":{"box":[49.67095947265625,35.111568450927734,3.097928524017334,1.418691635131836,0.0,0.0,0.0,1.1257705688476562,0.0,0.0,0.0,0.9638599157333374]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42227.pnts"}}],"content":{"uri":"points/r4222.pnts"}},{"boundingVolume":{"box":[53.92816162109375,29.44389772415161,2.437162399291992,2.8380088806152344,0.0,0.0,0.0,2.264702320098877,0.0,0.0,0.0,0.974079430103302]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[52.509368896484375,28.309478759765625,1.766524314880371,1.4183902740478516,0.0,0.0,0.0,1.1301498413085938,0.0,0.0,0.0,0.289689302444458]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42240.pnts"}},{"boundingVolume":{"box":[51.437313079833984,28.307117462158203,2.646652936935425,0.3418083190917969,0.0,0.0,0.0,1.0948190689086914,0.0,0.0,0.0,0.5647969245910645]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42241.pnts"}},{"boundingVolume":{"box":[52.509578704833984,30.58144187927246,1.9192798137664795,1.4179725646972656,0.0,0.0,0.0,1.1083488464355469,0.0,0.0,0.0,0.1555955410003662]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42242.pnts"}},{"boundingVolume":{"box":[52.51509475708008,30.629589080810547,2.730459213256836,1.4105796813964844,0.0,0.0,0.0,1.0790109634399414,0.0,0.0,0.0,0.6510504484176636]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42243.pnts"}},{"boundingVolume":{"box":[55.34034729003906,28.316452026367188,1.8404862880706787,1.412271499633789,0.0,0.0,0.0,1.1273927688598633,0.0,0.0,0.0,0.22339773178100586]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42244.pnts"}},{"boundingVolume":{"box":[55.5286865234375,28.137596130371094,2.7128944396972656,1.2374839782714844,0.0,0.0,0.0,0.9572687149047852,0.0,0.0,0.0,0.6237719058990479]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42245.pnts"}},{"boundingVolume":{"box":[55.34918212890625,30.575586318969727,1.788630485534668,1.4153175354003906,0.0,0.0,0.0,1.1315135955810547,0.0,0.0,0.0,0.09315145015716553]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42246.pnts"}}],"content":{"uri":"points/r4224.pnts"}},{"boundingVolume":{"box":[53.92804527282715,33.97428894042969,2.7982663214206696,2.838228225708008,0.0,0.0,0.0,2.264476776123047,0.0,0.0,0.0,1.249309629201889]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[52.50892639160156,32.849056243896484,1.8618450164794922,1.4191093444824219,0.0,0.0,0.0,1.1248626708984375,0.0,0.0,0.0,0.2166447639465332]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42260.pnts"}},{"boundingVolume":{"box":[52.50168991088867,32.84136199951172,2.827648639678955,1.41009521484375,0.0,0.0,0.0,1.1314620971679688,0.0,0.0,0.0,0.7470169067382812]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42261.pnts"}},{"boundingVolume":{"box":[52.608463287353516,35.106441497802734,1.833784580230713,1.3042678833007812,0.0,0.0,0.0,1.1322822570800781,0.0,0.0,0.0,0.24482345581054688]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42262.pnts"}},{"boundingVolume":{"box":[52.5069694519043,35.102195739746094,3.051091194152832,1.4167938232421875,0.0,0.0,0.0,1.126434326171875,0.0,0.0,0.0,0.9722930192947388]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42263.pnts"}},{"boundingVolume":{"box":[55.33823776245117,32.84842300415039,1.8424901962280273,1.4098243713378906,0.0,0.0,0.0,1.1084480285644531,0.0,0.0,0.0,0.11941766738891602]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42264.pnts"}},{"boundingVolume":{"box":[55.33576583862305,33.20246124267578,2.749481439590454,1.4061431884765625,0.0,0.0,0.0,0.7674045562744141,0.0,0.0,0.0,0.4782142639160156]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42265.pnts"}},{"boundingVolume":{"box":[55.34626388549805,35.099456787109375,1.8118512630462646,1.4167404174804688,0.0,0.0,0.0,1.1082706451416016,0.0,0.0,0.0,0.26289457082748413]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42266.pnts"}},{"boundingVolume":{"box":[55.061767578125,35.109275817871094,2.9024267196655273,1.1336479187011719,0.0,0.0,0.0,1.1294898986816406,0.0,0.0,0.0,0.8230419158935547]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42267.pnts"}}],"content":{"uri":"points/r4226.pnts"}}],"content":{"uri":"points/r422.pnts"}},{"boundingVolume":{"box":[62.443013191223145,22.649311065673828,1.23417067527771,5.676604270935059,0.0,0.0,0.0,4.529789924621582,0.0,0.0,0.0,1.9628782272338867]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[59.60530090332031,20.397119522094727,0.6575610637664795,2.8367977142333984,0.0,0.0,0.0,2.2521133422851562,0.0,0.0,0.0,1.3643720149993896]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r4240.pnts"}},{"boundingVolume":{"box":[59.60467720031738,24.914220333099365,1.3409264385700226,2.838268280029297,0.0,0.0,0.0,2.264880657196045,0.0,0.0,0.0,1.6611413657665253]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[58.184600830078125,23.77869415283203,0.8782438635826111,1.4180011749267578,0.0,0.0,0.0,1.1291303634643555,0.0,0.0,0.0,1.1984587907791138]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42420.pnts"}},{"boundingVolume":{"box":[58.18977737426758,24.089109420776367,2.404083251953125,1.4120712280273438,0.0,0.0,0.0,0.8244171142578125,0.0,0.0,0.0,0.325252890586853]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42421.pnts"}},{"boundingVolume":{"box":[58.18798065185547,26.0467586517334,1.4118753671646118,1.4164791107177734,0.0,0.0,0.0,1.1322593688964844,0.0,0.0,0.0,0.666739821434021]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42422.pnts"}},{"boundingVolume":{"box":[58.19142150878906,26.039142608642578,2.5278491973876953,1.4130897521972656,0.0,0.0,0.0,1.1241979598999023,0.0,0.0,0.0,0.44890785217285156]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42423.pnts"}},{"boundingVolume":{"box":[61.023963928222656,23.777021408081055,0.8849738240242004,1.4189815521240234,0.0,0.0,0.0,1.1275825500488281,0.0,0.0,0.0,1.1934411525726318]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42424.pnts"}},{"boundingVolume":{"box":[61.00801086425781,24.044342041015625,2.3952484130859375,1.402872085571289,0.0,0.0,0.0,0.8680486679077148,0.0,0.0,0.0,0.31646907329559326]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42425.pnts"}},{"boundingVolume":{"box":[61.022605895996094,26.047874450683594,1.3302711248397827,1.4179210662841797,0.0,0.0,0.0,1.1312265396118164,0.0,0.0,0.0,0.7481189966201782]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42426.pnts"}},{"boundingVolume":{"box":[61.01661682128906,26.043893814086914,2.3354482650756836,1.4118633270263672,0.0,0.0,0.0,1.1273956298828125,0.0,0.0,0.0,0.25660979747772217]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42427.pnts"}}],"content":{"uri":"points/r4242.pnts"}},{"boundingVolume":{"box":[65.28135108947754,20.38373851776123,1.0103933811187744,2.838266372680664,0.0,0.0,0.0,2.264017105102539,0.0,0.0,0.0,1.7354998588562012]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[63.860877990722656,19.24823760986328,0.6650592684745789,1.417083740234375,0.0,0.0,0.0,1.128495216369629,0.0,0.0,0.0,1.3855209350585938]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42440.pnts"}},{"boundingVolume":{"box":[63.86210632324219,21.51886749267578,0.762691855430603,1.4190216064453125,0.0,0.0,0.0,1.128361701965332,0.0,0.0,0.0,1.2534986734390259]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42442.pnts"}},{"boundingVolume":{"box":[66.70504760742188,19.252010345458984,0.9311767816543579,1.4086074829101562,0.0,0.0,0.0,1.132288932800293,0.0,0.0,0.0,1.147476077079773]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42444.pnts"}},{"boundingVolume":{"box":[66.70648193359375,19.259912490844727,2.383427619934082,1.3815536499023438,0.0,0.0,0.0,1.1020240783691406,0.0,0.0,0.0,0.3040306568145752]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42445.pnts"}},{"boundingVolume":{"box":[66.70049285888672,21.512737274169922,1.0687816143035889,1.4190902709960938,0.0,0.0,0.0,1.128331184387207,0.0,0.0,0.0,1.0084950923919678]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42446.pnts"}},{"boundingVolume":{"box":[66.6934814453125,20.924766540527344,2.407806396484375,1.3133583068847656,0.0,0.0,0.0,0.533778190612793,0.0,0.0,0.0,0.32557809352874756]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42447.pnts"}}],"content":{"uri":"points/r4244.pnts"}},{"boundingVolume":{"box":[65.282301902771,24.91443157196045,1.628609538078308,2.83724308013916,0.0,0.0,0.0,2.264620780944824,0.0,0.0,0.0,1.5684393644332886]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[63.862937927246094,23.78247833251953,1.071233868598938,1.4178791046142578,0.0,0.0,0.0,1.1316871643066406,0.0,0.0,0.0,1.0055173635482788]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42460.pnts"}},{"boundingVolume":{"box":[63.86576843261719,26.042139053344727,1.2211363315582275,1.4153995513916016,0.0,0.0,0.0,1.1273765563964844,0.0,0.0,0.0,0.8566110134124756]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42462.pnts"}},{"boundingVolume":{"box":[63.867759704589844,26.0347957611084,2.6242165565490723,1.4125900268554688,0.0,0.0,0.0,1.1084423065185547,0.0,0.0,0.0,0.5454772710800171]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42463.pnts"}},{"boundingVolume":{"box":[66.6943359375,23.794963836669922,1.0867300033569336,1.4129829406738281,0.0,0.0,0.0,1.117924690246582,0.0,0.0,0.0,0.9725329875946045]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42464.pnts"}},{"boundingVolume":{"box":[66.70045471191406,26.047866821289062,1.1643497943878174,1.4190902709960938,0.0,0.0,0.0,1.131185531616211,0.0,0.0,0.0,0.9117655158042908]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42466.pnts"}},{"boundingVolume":{"box":[66.6986083984375,26.0584716796875,2.6133577823638916,1.4168548583984375,0.0,0.0,0.0,1.0979976654052734,0.0,0.0,0.0,0.5335278511047363]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42467.pnts"}}],"content":{"uri":"points/r4246.pnts"}}],"content":{"uri":"points/r424.pnts"}},{"boundingVolume":{"box":[62.4430627822876,31.70900011062622,2.014344274997711,5.676520347595215,0.0,0.0,0.0,4.52985143661499,0.0,0.0,0.0,1.4635739922523499]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[59.604679107666016,29.44402027130127,2.1274096369743347,2.8380165100097656,0.0,0.0,0.0,2.264871597290039,0.0,0.0,0.0,1.3505086302757263]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[58.1853141784668,28.303386688232422,1.5087525844573975,1.4162940979003906,0.0,0.0,0.0,1.1238031387329102,0.0,0.0,0.0,0.5693676471710205]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42600.pnts"}},{"boundingVolume":{"box":[58.17729187011719,28.320087432861328,2.7783398628234863,1.4105033874511719,0.0,0.0,0.0,1.1239442825317383,0.0,0.0,0.0,0.6995784044265747]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42601.pnts"}},{"boundingVolume":{"box":[58.17882537841797,30.582881927490234,1.7404890060424805,1.4109916687011719,0.0,0.0,0.0,1.1260099411010742,0.0,0.0,0.0,0.3184269070625305]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42602.pnts"}},{"boundingVolume":{"box":[58.20426940917969,30.57453727722168,2.7676525115966797,1.4002552032470703,0.0,0.0,0.0,1.1300010681152344,0.0,0.0,0.0,0.6884360313415527]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42603.pnts"}},{"boundingVolume":{"box":[61.02507019042969,28.311552047729492,1.427718162536621,1.4176254272460938,0.0,0.0,0.0,1.1324024200439453,0.0,0.0,0.0,0.6508171558380127]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42604.pnts"}},{"boundingVolume":{"box":[61.02812957763672,28.320491790771484,2.557614803314209,1.4135913848876953,0.0,0.0,0.0,1.1081924438476562,0.0,0.0,0.0,0.4773674011230469]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42605.pnts"}},{"boundingVolume":{"box":[61.024383544921875,30.56951904296875,1.6201664209365845,1.4151840209960938,0.0,0.0,0.0,1.1254253387451172,0.0,0.0,0.0,0.45771920680999756]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42606.pnts"}},{"boundingVolume":{"box":[61.02273941040039,30.58094024658203,2.6739578247070312,1.4180526733398438,0.0,0.0,0.0,1.127823829650879,0.0,0.0,0.0,0.5948919057846069]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42607.pnts"}}],"content":{"uri":"points/r4260.pnts"}},{"boundingVolume":{"box":[59.604736328125,33.97396230697632,2.3439638018608093,2.838193893432617,0.0,0.0,0.0,2.264845371246338,0.0,0.0,0.0,0.9888200759887695]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[58.186195373535156,32.84151077270508,1.7919535636901855,1.418344497680664,0.0,0.0,0.0,1.1323938369750977,0.0,0.0,0.0,0.2771129012107849]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42620.pnts"}},{"boundingVolume":{"box":[58.202579498291016,32.77482986450195,2.6917450428009033,1.3953056335449219,0.0,0.0,0.0,1.0656051635742188,0.0,0.0,0.0,0.6047618389129639]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42621.pnts"}},{"boundingVolume":{"box":[58.185569763183594,35.0996208190918,1.77376389503479,1.419027328491211,0.0,0.0,0.0,1.1256179809570312,0.0,0.0,0.0,0.129347026348114]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42622.pnts"}},{"boundingVolume":{"box":[61.02381896972656,32.84754943847656,1.7168288230895996,1.4190387725830078,0.0,0.0,0.0,1.1244878768920898,0.0,0.0,0.0,0.3616850972175598]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42624.pnts"}},{"boundingVolume":{"box":[61.015411376953125,32.8416748046875,2.6647915840148926,1.4102516174316406,0.0,0.0,0.0,1.1322498321533203,0.0,0.0,0.0,0.585996150970459]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42625.pnts"}},{"boundingVolume":{"box":[61.0233154296875,35.10703659057617,1.7386939525604248,1.4184188842773438,0.0,0.0,0.0,1.1317710876464844,0.0,0.0,0.0,0.3380391597747803]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42626.pnts"}},{"boundingVolume":{"box":[61.023841857910156,35.10144805908203,2.6391611099243164,1.4186763763427734,0.0,0.0,0.0,1.1270179748535156,0.0,0.0,0.0,0.5604027509689331]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42627.pnts"}}],"content":{"uri":"points/r4262.pnts"}},{"boundingVolume":{"box":[65.28132629394531,29.44406270980835,1.924243152141571,2.8382568359375,0.0,0.0,0.0,2.264829158782959,0.0,0.0,0.0,1.3734728693962097]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[63.86339569091797,28.31306266784668,1.392458200454712,1.417562484741211,0.0,0.0,0.0,1.1289081573486328,0.0,0.0,0.0,0.6839699745178223]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42640.pnts"}},{"boundingVolume":{"box":[63.809913635253906,28.31246566772461,2.4193501472473145,1.3576831817626953,0.0,0.0,0.0,1.1279726028442383,0.0,0.0,0.0,0.3405357599258423]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42641.pnts"}},{"boundingVolume":{"box":[63.85321807861328,30.576641082763672,1.4491028785705566,1.4100627899169922,0.0,0.0,0.0,1.1322507858276367,0.0,0.0,0.0,0.6295604705810547]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42642.pnts"}},{"boundingVolume":{"box":[63.378570556640625,30.58324432373047,2.6893563270568848,0.9339675903320312,0.0,0.0,0.0,1.0999679565429688,0.0,0.0,0.0,0.608359694480896]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42643.pnts"}},{"boundingVolume":{"box":[66.70466613769531,28.307832717895508,1.316620945930481,1.4101982116699219,0.0,0.0,0.0,1.127950668334961,0.0,0.0,0.0,0.7613147497177124]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42644.pnts"}},{"boundingVolume":{"box":[67.09101867675781,27.67654800415039,2.578939437866211,1.0178565979003906,0.0,0.0,0.0,0.48330211639404297,0.0,0.0,0.0,0.4978327751159668]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42645.pnts"}},{"boundingVolume":{"box":[66.6938247680664,30.576263427734375,0.9540244340896606,1.4099807739257812,0.0,0.0,0.0,1.1075820922851562,0.0,0.0,0.0,0.21901583671569824]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42646.pnts"}}],"content":{"uri":"points/r4264.pnts"}},{"boundingVolume":{"box":[65.28128814697266,33.97404479980469,2.066748782992363,2.838285446166992,0.0,0.0,0.0,2.2648067474365234,0.0,0.0,0.0,1.141803577542305]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[63.86119842529297,32.83591842651367,1.6305060386657715,1.4181060791015625,0.0,0.0,0.0,1.1264772415161133,0.0,0.0,0.0,0.4472183585166931]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42660.pnts"}},{"boundingVolume":{"box":[63.50863265991211,32.83268737792969,2.6440703868865967,1.0515327453613281,0.0,0.0,0.0,1.113668441772461,0.0,0.0,0.0,0.5644819736480713]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42661.pnts"}},{"boundingVolume":{"box":[63.86390686035156,35.100311279296875,1.6900334358215332,1.417135238647461,0.0,0.0,0.0,1.1130962371826172,0.0,0.0,0.0,0.3885534405708313]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42662.pnts"}},{"boundingVolume":{"box":[63.862205505371094,35.10737609863281,2.5586414337158203,1.4175891876220703,0.0,0.0,0.0,1.1309394836425781,0.0,0.0,0.0,0.4777446985244751]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42663.pnts"}},{"boundingVolume":{"box":[66.70103454589844,32.843994140625,1.12637460231781,1.4183197021484375,0.0,0.0,0.0,1.1298885345458984,0.0,0.0,0.0,0.20142939686775208]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42664.pnts"}},{"boundingVolume":{"box":[66.69841003417969,35.10255432128906,1.6144651174545288,1.4168052673339844,0.0,0.0,0.0,1.1284008026123047,0.0,0.0,0.0,0.4636000394821167]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42666.pnts"}},{"boundingVolume":{"box":[66.70721435546875,35.13499069213867,2.5659022331237793,1.4115943908691406,0.0,0.0,0.0,1.0809249877929688,0.0,0.0,0.0,0.4869915246963501]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r42667.pnts"}}],"content":{"uri":"points/r4266.pnts"}}],"content":{"uri":"points/r426.pnts"}}],"content":{"uri":"points/r42.pnts"}},{"boundingVolume":{"box":[79.64178085327148,9.329950094223022,0.8809214234352112,11.52203369140625,0.0,0.0,0.0,8.789467096328735,0.0,0.0,0.0,2.3120781779289246]},"geometricError":11.62742462579651,"refine":"ADD","children":[{"boundingVolume":{"box":[77.71636962890625,8.115427017211914,-0.23804733157157898,1.7554893493652344,0.0,0.0,0.0,0.9440271854400635,0.0,0.0,0.0,0.9141584634780884]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r440.pnts"}},{"boundingVolume":{"box":[73.79623794555664,13.589601516723633,1.0546374320983887,5.676490783691406,0.0,0.0,0.0,4.529809951782227,0.0,0.0,0.0,2.138362169265747]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[70.96543884277344,11.904481887817383,0.5645512342453003,2.830524444580078,0.0,0.0,0.0,1.6661343574523926,0.0,0.0,0.0,1.578774333000183]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r4420.pnts"}},{"boundingVolume":{"box":[70.95787620544434,15.85440444946289,1.0120518207550049,2.8381290435791016,0.0,0.0,0.0,2.2646632194519043,0.0,0.0,0.0,1.8918020725250244]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[69.54013061523438,14.727876663208008,0.5889348983764648,1.4177742004394531,0.0,0.0,0.0,1.125150203704834,0.0,0.0,0.0,1.464829683303833]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44220.pnts"}},{"boundingVolume":{"box":[69.53889465332031,16.991701126098633,0.9983364343643188,1.4190139770507812,0.0,0.0,0.0,1.1252455711364746,0.0,0.0,0.0,1.0801934003829956]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44222.pnts"}},{"boundingVolume":{"box":[69.54206848144531,17.01732063293457,2.473327159881592,1.4138145446777344,0.0,0.0,0.0,1.1001801490783691,0.0,0.0,0.0,0.3915656805038452]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44223.pnts"}},{"boundingVolume":{"box":[72.37702178955078,14.722594261169434,0.7976061105728149,1.4189834594726562,0.0,0.0,0.0,1.1318778991699219,0.0,0.0,0.0,1.2808817625045776]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44224.pnts"}},{"boundingVolume":{"box":[72.38924407958984,14.71440315246582,2.344485282897949,1.40350341796875,0.0,0.0,0.0,1.1229748725891113,0.0,0.0,0.0,0.26566779613494873]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44225.pnts"}},{"boundingVolume":{"box":[72.37654113769531,16.986812591552734,1.201316237449646,1.4177742004394531,0.0,0.0,0.0,1.132157325744629,0.0,0.0,0.0,0.8771239519119263]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44226.pnts"}},{"boundingVolume":{"box":[72.37940979003906,16.982990264892578,2.4676265716552734,1.4134025573730469,0.0,0.0,0.0,1.1095800399780273,0.0,0.0,0.0,0.38863396644592285]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44227.pnts"}}],"content":{"uri":"points/r4422.pnts"}},{"boundingVolume":{"box":[76.63450622558594,11.324739694595337,0.7715566456317902,2.838214874267578,0.0,0.0,0.0,2.2648255825042725,0.0,0.0,0.0,1.8525366485118866]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[75.22320556640625,10.34805679321289,-0.5232464671134949,1.4112701416015625,0.0,0.0,0.0,0.9450221061706543,0.0,0.0,0.0,0.5348724722862244]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44240.pnts"}},{"boundingVolume":{"box":[75.21703338623047,12.462197303771973,0.5827558040618896,1.4167938232421875,0.0,0.0,0.0,1.1248531341552734,0.0,0.0,0.0,1.4943623542785645]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44242.pnts"}},{"boundingVolume":{"box":[78.05189514160156,10.192163467407227,0.2961490750312805,1.4172935485839844,0.0,0.0,0.0,1.132249355316162,0.0,0.0,0.0,1.377129077911377]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44244.pnts"}},{"boundingVolume":{"box":[78.05469512939453,12.457191467285156,0.9610024690628052,1.417449951171875,0.0,0.0,0.0,1.1323738098144531,0.0,0.0,0.0,1.1141232252120972]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44246.pnts"}},{"boundingVolume":{"box":[77.21394348144531,12.959053039550781,2.342841625213623,0.523101806640625,0.0,0.0,0.0,0.6001906394958496,0.0,0.0,0.0,0.2640126943588257]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44247.pnts"}}],"content":{"uri":"points/r4424.pnts"}},{"boundingVolume":{"box":[76.63451194763184,15.854514122009277,1.6945381164550781,2.838205337524414,0.0,0.0,0.0,2.264897346496582,0.0,0.0,0.0,1.4984614849090576]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[75.215087890625,14.724323272705078,1.1475436687469482,1.4187812805175781,0.0,0.0,0.0,1.129178524017334,0.0,0.0,0.0,0.9307664036750793]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44260.pnts"}},{"boundingVolume":{"box":[75.21719360351562,14.721517562866211,2.4133124351501465,1.4123420715332031,0.0,0.0,0.0,1.1228981018066406,0.0,0.0,0.0,0.3342818021774292]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44261.pnts"}},{"boundingVolume":{"box":[75.2151107788086,16.987890243530273,1.1933366060256958,1.4163589477539062,0.0,0.0,0.0,1.1315021514892578,0.0,0.0,0.0,0.8811124563217163]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44262.pnts"}},{"boundingVolume":{"box":[74.46034240722656,16.99037742614746,2.3854846954345703,0.663238525390625,0.0,0.0,0.0,1.104600429534912,0.0,0.0,0.0,0.299283504486084]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44263.pnts"}},{"boundingVolume":{"box":[78.05484008789062,14.717816352844238,1.1367202997207642,1.41741943359375,0.0,0.0,0.0,1.1279268264770508,0.0,0.0,0.0,0.9406436681747437]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44264.pnts"}},{"boundingVolume":{"box":[77.69892883300781,14.755752563476562,2.549528121948242,1.0368194580078125,0.0,0.0,0.0,1.098710536956787,0.0,0.0,0.0,0.4674750566482544]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44265.pnts"}},{"boundingVolume":{"box":[78.05093383789062,16.982593536376953,1.384170651435852,1.4159393310546875,0.0,0.0,0.0,1.1081476211547852,0.0,0.0,0.0,0.6896616220474243]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44266.pnts"}},{"boundingVolume":{"box":[78.23457336425781,16.987037658691406,2.605252742767334,1.2024040222167969,0.0,0.0,0.0,1.1302518844604492,0.0,0.0,0.0,0.525307297706604]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44267.pnts"}}],"content":{"uri":"points/r4426.pnts"}}],"content":{"uri":"points/r442.pnts"}},{"boundingVolume":{"box":[85.3186264038086,4.800078630447388,0.35573214292526245,5.845188140869141,0.0,0.0,0.0,4.259595632553101,0.0,0.0,0.0,1.7868888974189758]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[82.31146240234375,6.804653763771057,0.43318474292755127,2.838024139404297,0.0,0.0,0.0,2.254928946495056,0.0,0.0,0.0,1.709436297416687]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[81.390625,6.236666679382324,-1.1150202751159668,0.9158782958984375,0.0,0.0,0.0,0.549307107925415,0.0,0.0,0.0,0.09556227922439575]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44420.pnts"}},{"boundingVolume":{"box":[80.89120483398438,7.945695400238037,0.08157020807266235,1.4176292419433594,0.0,0.0,0.0,1.1138873100280762,0.0,0.0,0.0,1.2598881721496582]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44422.pnts"}},{"boundingVolume":{"box":[83.73799133300781,5.6700944900512695,-0.21307373046875,1.4048690795898438,0.0,0.0,0.0,1.120239019393921,0.0,0.0,0.0,1.0631778240203857]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44424.pnts"}},{"boundingVolume":{"box":[83.73053741455078,7.940586090087891,0.535874605178833,1.4189300537109375,0.0,0.0,0.0,1.1171314716339111,0.0,0.0,0.0,1.5410747528076172]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44426.pnts"}}],"content":{"uri":"points/r4442.pnts"}},{"boundingVolume":{"box":[88.17060852050781,2.532121419906616,-0.31100142002105713,2.993206024169922,0.0,0.0,0.0,1.991638422012329,0.0,0.0,0.0,1.1201553344726562]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r4444.pnts"}},{"boundingVolume":{"box":[88.11649894714355,6.802956223487854,0.3812773823738098,2.9667835235595703,0.0,0.0,0.0,2.2567180395126343,0.0,0.0,0.0,1.6559576988220215]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[86.56907653808594,5.673692226409912,0.051205456256866455,1.4186897277832031,0.0,0.0,0.0,1.1209936141967773,0.0,0.0,0.0,1.3258857727050781]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44460.pnts"}},{"boundingVolume":{"box":[86.56878662109375,7.924711227416992,0.9059348106384277,1.4190711975097656,0.0,0.0,0.0,1.129814863204956,0.0,0.0,0.0,1.0699152946472168]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44462.pnts"}},{"boundingVolume":{"box":[89.533447265625,5.670458793640137,0.6151924729347229,1.54541015625,0.0,0.0,0.0,1.124220609664917,0.0,0.0,0.0,1.3449089527130127]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44464.pnts"}},{"boundingVolume":{"box":[89.5173568725586,7.92736291885376,0.9162556529045105,1.5282821655273438,0.0,0.0,0.0,1.1323113441467285,0.0,0.0,0.0,1.0924274921417236]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44466.pnts"}}],"content":{"uri":"points/r4446.pnts"}}],"content":{"uri":"points/r444.pnts"}},{"boundingVolume":{"box":[85.22712898254395,13.589582204818726,1.2795836925506592,5.754125595092773,0.0,0.0,0.0,4.529834985733032,0.0,0.0,0.0,1.9046013355255127]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[82.31117630004883,11.323667287826538,0.7041182518005371,2.8381729125976562,0.0,0.0,0.0,2.26358962059021,0.0,0.0,0.0,1.321936845779419]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[80.89190673828125,10.19082260131836,0.5425616502761841,1.4187049865722656,0.0,0.0,0.0,1.1297354698181152,0.0,0.0,0.0,1.160380244255066]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44600.pnts"}},{"boundingVolume":{"box":[80.89205169677734,12.456974983215332,0.8985548615455627,1.4190216064453125,0.0,0.0,0.0,1.113245964050293,0.0,0.0,0.0,0.8094398379325867]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44602.pnts"}},{"boundingVolume":{"box":[83.7314453125,10.193092346191406,0.9675275683403015,1.4165916442871094,0.0,0.0,0.0,1.1315398216247559,0.0,0.0,0.0,0.9986785054206848]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44604.pnts"}},{"boundingVolume":{"box":[83.73033142089844,12.456033706665039,0.8755902051925659,1.4190177917480469,0.0,0.0,0.0,1.131223201751709,0.0,0.0,0.0,0.832556962966919]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44606.pnts"}}],"content":{"uri":"points/r4460.pnts"}},{"boundingVolume":{"box":[82.31135368347168,15.857870101928711,1.644254207611084,2.8381900787353516,0.0,0.0,0.0,2.261547088623047,0.0,0.0,0.0,1.539930820465088]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[80.89288330078125,14.725428581237793,0.9825254678726196,1.4180564880371094,0.0,0.0,0.0,1.128972053527832,0.0,0.0,0.0,0.8225409984588623]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44620.pnts"}},{"boundingVolume":{"box":[80.89125061035156,16.98571014404297,1.125828742980957,1.4180870056152344,0.0,0.0,0.0,1.1310815811157227,0.0,0.0,0.0,0.9502031207084656]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44622.pnts"}},{"boundingVolume":{"box":[80.88825988769531,17.49964141845703,2.6177525520324707,1.414337158203125,0.0,0.0,0.0,0.6195478439331055,0.0,0.0,0.0,0.5356838703155518]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44623.pnts"}},{"boundingVolume":{"box":[83.73070526123047,14.725944519042969,1.0914701223373413,1.4164505004882812,0.0,0.0,0.0,1.128307819366455,0.0,0.0,0.0,0.9871467351913452]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44624.pnts"}},{"boundingVolume":{"box":[83.26603698730469,15.495643615722656,2.1357994079589844,0.8751640319824219,0.0,0.0,0.0,0.35066986083984375,0.0,0.0,0.0,0.056891560554504395]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44625.pnts"}},{"boundingVolume":{"box":[83.73100280761719,16.986852645874023,1.1187405586242676,1.4184379577636719,0.0,0.0,0.0,1.1323065757751465,0.0,0.0,0.0,0.9595516324043274]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44626.pnts"}},{"boundingVolume":{"box":[83.75545501708984,17.001285552978516,2.4481077194213867,1.3938522338867188,0.0,0.0,0.0,1.1065802574157715,0.0,0.0,0.0,0.36830365657806396]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44627.pnts"}}],"content":{"uri":"points/r4462.pnts"}},{"boundingVolume":{"box":[88.06367301940918,11.324602603912354,0.985470175743103,2.9140377044677734,0.0,0.0,0.0,2.26485538482666,0.0,0.0,0.0,1.0894066095352173]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[86.569580078125,10.19200325012207,0.9454211592674255,1.417999267578125,0.0,0.0,0.0,1.1312732696533203,0.0,0.0,0.0,1.0102434158325195]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44640.pnts"}},{"boundingVolume":{"box":[86.56861114501953,12.459115982055664,1.0455659627914429,1.418975830078125,0.0,0.0,0.0,1.1303420066833496,0.0,0.0,0.0,1.0293108224868774]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44642.pnts"}},{"boundingVolume":{"box":[89.48283386230469,10.188200950622559,0.8712379932403564,1.4948387145996094,0.0,0.0,0.0,1.1283636093139648,0.0,0.0,0.0,0.9734179973602295]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44644.pnts"}},{"boundingVolume":{"box":[89.45429992675781,12.464470863342285,0.9485765099525452,1.4660797119140625,0.0,0.0,0.0,1.1249780654907227,0.0,0.0,0.0,0.9985417723655701]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44646.pnts"}}],"content":{"uri":"points/r4464.pnts"}},{"boundingVolume":{"box":[88.0011215209961,15.854475975036621,1.0886800289154053,2.851287841796875,0.0,0.0,0.0,2.2648725509643555,0.0,0.0,0.0,1.1168193817138672]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[86.56866455078125,14.722016334533691,1.0765413045883179,1.4180946350097656,0.0,0.0,0.0,1.1323184967041016,0.0,0.0,0.0,1.0015736818313599]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44660.pnts"}},{"boundingVolume":{"box":[86.56812286376953,17.003253936767578,1.081020474433899,1.4182891845703125,0.0,0.0,0.0,1.1159334182739258,0.0,0.0,0.0,0.9964253306388855]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44662.pnts"}},{"boundingVolume":{"box":[89.42073822021484,14.721990585327148,1.0249896049499512,1.431671142578125,0.0,0.0,0.0,1.127408504486084,0.0,0.0,0.0,1.0520553588867188]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44664.pnts"}},{"boundingVolume":{"box":[89.40872192382812,16.985618591308594,1.0550248622894287,1.4120407104492188,0.0,0.0,0.0,1.131002426147461,0.0,0.0,0.0,1.0234358310699463]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r44666.pnts"}}],"content":{"uri":"points/r4466.pnts"}}],"content":{"uri":"points/r446.pnts"}}],"content":{"uri":"points/r44.pnts"}},{"boundingVolume":{"box":[79.44641494750977,27.17913818359375,1.7391794323921204,11.326744079589844,0.0,0.0,0.0,9.059700012207031,0.0,0.0,0.0,1.6668296456336975]},"geometricError":11.62742462579651,"refine":"ADD","children":[{"boundingVolume":{"box":[73.79626274108887,22.649261474609375,1.742753654718399,5.676549911499023,0.0,0.0,0.0,4.529823303222656,0.0,0.0,0.0,1.600234717130661]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[70.95774459838867,20.38427972793579,1.5685911178588867,2.838031768798828,0.0,0.0,0.0,2.2648072242736816,0.0,0.0,0.0,1.4172086715698242]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[69.54005432128906,19.251914978027344,1.2250750064849854,1.41650390625,0.0,0.0,0.0,1.1283903121948242,0.0,0.0,0.0,0.853548526763916]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46000.pnts"}},{"boundingVolume":{"box":[69.54119110107422,19.247711181640625,2.383023977279663,1.416015625,0.0,0.0,0.0,1.1282386779785156,0.0,0.0,0.0,0.30402112007141113]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46001.pnts"}},{"boundingVolume":{"box":[69.53866577148438,21.516983032226562,1.1154873371124268,1.4189529418945312,0.0,0.0,0.0,1.132044792175293,0.0,0.0,0.0,0.9628183245658875]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46002.pnts"}},{"boundingVolume":{"box":[70.08860778808594,21.520784378051758,2.3974785804748535,0.8673133850097656,0.0,0.0,0.0,1.1060810089111328,0.0,0.0,0.0,0.3181959390640259]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46003.pnts"}},{"boundingVolume":{"box":[72.3785400390625,19.257719039916992,1.242509126663208,1.414794921875,0.0,0.0,0.0,1.1264305114746094,0.0,0.0,0.0,0.8361001014709473]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46004.pnts"}},{"boundingVolume":{"box":[72.37187194824219,19.25448989868164,2.521796226501465,1.4114151000976562,0.0,0.0,0.0,1.1297883987426758,0.0,0.0,0.0,0.44291770458221436]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46005.pnts"}},{"boundingVolume":{"box":[72.37699890136719,21.520381927490234,1.1265126466751099,1.4187774658203125,0.0,0.0,0.0,1.1286802291870117,0.0,0.0,0.0,0.9519001245498657]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46006.pnts"}},{"boundingVolume":{"box":[72.37578582763672,21.455936431884766,2.3395347595214844,1.3938980102539062,0.0,0.0,0.0,1.0715675354003906,0.0,0.0,0.0,0.26051080226898193]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46007.pnts"}}],"content":{"uri":"points/r4600.pnts"}},{"boundingVolume":{"box":[70.9578971862793,24.91416072845459,1.6567552089691162,2.8380813598632812,0.0,0.0,0.0,2.26485538482666,0.0,0.0,0.0,1.5130794048309326]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[69.54034423828125,23.778966903686523,1.052833914756775,1.4168205261230469,0.0,0.0,0.0,1.1296615600585938,0.0,0.0,0.0,0.9091581106185913]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46020.pnts"}},{"boundingVolume":{"box":[69.53890991210938,26.060396194458008,1.141212821006775,1.4187202453613281,0.0,0.0,0.0,1.1180973052978516,0.0,0.0,0.0,0.9359346628189087]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46022.pnts"}},{"boundingVolume":{"box":[69.53408813476562,26.06892204284668,2.614100217819214,1.3928947448730469,0.0,0.0,0.0,1.1062870025634766,0.0,0.0,0.0,0.5344951152801514]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46023.pnts"}},{"boundingVolume":{"box":[72.38023376464844,23.783077239990234,1.0599993467330933,1.4157447814941406,0.0,0.0,0.0,1.1310453414916992,0.0,0.0,0.0,0.9006901979446411]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46024.pnts"}},{"boundingVolume":{"box":[72.37763977050781,26.043933868408203,1.1254328489303589,1.4142837524414062,0.0,0.0,0.0,1.1296167373657227,0.0,0.0,0.0,0.9506615400314331]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46026.pnts"}},{"boundingVolume":{"box":[72.01033782958984,26.6776123046875,2.534924030303955,1.0496139526367188,0.0,0.0,0.0,0.4974851608276367,0.0,0.0,0.0,0.4547327756881714]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46027.pnts"}}],"content":{"uri":"points/r4602.pnts"}},{"boundingVolume":{"box":[76.63459205627441,20.384337902069092,1.789187490940094,2.838216781616211,0.0,0.0,0.0,2.264883518218994,0.0,0.0,0.0,1.553800880908966]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[75.21546936035156,19.25003433227539,1.244149088859558,1.4155540466308594,0.0,0.0,0.0,1.1304597854614258,0.0,0.0,0.0,0.8334237337112427]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46040.pnts"}},{"boundingVolume":{"box":[75.20579528808594,19.263259887695312,2.5655517578125,1.4027976989746094,0.0,0.0,0.0,1.120041847229004,0.0,0.0,0.0,0.48574841022491455]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46041.pnts"}},{"boundingVolume":{"box":[75.2154541015625,21.51754379272461,1.157048225402832,1.4190788269042969,0.0,0.0,0.0,1.1201868057250977,0.0,0.0,0.0,0.9216616153717041]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46042.pnts"}},{"boundingVolume":{"box":[75.21591186523438,21.519426345825195,2.64849853515625,1.4183425903320312,0.0,0.0,0.0,1.1297950744628906,0.0,0.0,0.0,0.5691977739334106]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46043.pnts"}},{"boundingVolume":{"box":[78.05488586425781,19.25251007080078,1.4236507415771484,1.4179229736328125,0.0,0.0,0.0,1.1318120956420898,0.0,0.0,0.0,0.6223539710044861]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46044.pnts"}},{"boundingVolume":{"box":[78.04317474365234,19.251083374023438,2.717012882232666,1.395721435546875,0.0,0.0,0.0,1.102238655090332,0.0,0.0,0.0,0.625975489616394]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46045.pnts"}},{"boundingVolume":{"box":[78.0533447265625,21.516735076904297,1.2155083417892456,1.4185066223144531,0.0,0.0,0.0,1.1323118209838867,0.0,0.0,0.0,0.8630879521369934]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46046.pnts"}},{"boundingVolume":{"box":[78.04415893554688,21.551401138305664,2.692829132080078,1.4092941284179688,0.0,0.0,0.0,1.0970535278320312,0.0,0.0,0.0,0.6104371547698975]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46047.pnts"}}],"content":{"uri":"points/r4604.pnts"}},{"boundingVolume":{"box":[76.63454818725586,24.914109230041504,1.7224943935871124,2.8382644653320312,0.0,0.0,0.0,2.264822006225586,0.0,0.0,0.0,1.5799754559993744]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[75.21528625488281,23.77254295349121,1.1232270002365112,1.4190025329589844,0.0,0.0,0.0,1.1189002990722656,0.0,0.0,0.0,0.9533355832099915]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46060.pnts"}},{"boundingVolume":{"box":[75.61140441894531,23.18013572692871,2.5243911743164062,1.013885498046875,0.0,0.0,0.0,0.5293655395507812,0.0,0.0,0.0,0.44415414333343506]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46061.pnts"}},{"boundingVolume":{"box":[75.2154769897461,26.05219268798828,1.1118009090423584,1.4170761108398438,0.0,0.0,0.0,1.1267385482788086,0.0,0.0,0.0,0.9597392082214355]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46062.pnts"}},{"boundingVolume":{"box":[78.05351257324219,23.778003692626953,1.1233141422271729,1.418914794921875,0.0,0.0,0.0,1.1286725997924805,0.0,0.0,0.0,0.9513595104217529]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46064.pnts"}},{"boundingVolume":{"box":[78.0546875,23.36026382446289,2.6910109519958496,1.4010238647460938,0.0,0.0,0.0,0.7098608016967773,0.0,0.0,0.0,0.6114588975906372]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46065.pnts"}},{"boundingVolume":{"box":[78.0564193725586,26.059375762939453,1.100292444229126,1.4157943725585938,0.0,0.0,0.0,1.1181297302246094,0.0,0.0,0.0,0.9577735066413879]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46066.pnts"}}],"content":{"uri":"points/r4606.pnts"}}],"content":{"uri":"points/r460.pnts"}},{"boundingVolume":{"box":[73.79624557495117,31.70899534225464,1.7495858669281006,5.67657470703125,0.0,0.0,0.0,4.529842853546143,0.0,0.0,0.0,1.5892064571380615]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[70.95796203613281,29.44397211074829,1.8051623106002808,2.8382911682128906,0.0,0.0,0.0,2.2647509574890137,0.0,0.0,0.0,1.4828327894210815]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[69.53878784179688,28.31147003173828,1.246734380722046,1.4191169738769531,0.0,0.0,0.0,1.132248878479004,0.0,0.0,0.0,0.8313106894493103]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46200.pnts"}},{"boundingVolume":{"box":[69.54530334472656,27.917221069335938,2.6780290603637695,1.4126205444335938,0.0,0.0,0.0,0.713618278503418,0.0,0.0,0.0,0.5979260206222534]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46201.pnts"}},{"boundingVolume":{"box":[69.53910827636719,30.573013305664062,0.7831064462661743,1.4144096374511719,0.0,0.0,0.0,1.1289339065551758,0.0,0.0,0.0,0.13758966326713562]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46202.pnts"}},{"boundingVolume":{"box":[72.37614440917969,28.30315399169922,1.2010486125946045,1.4181785583496094,0.0,0.0,0.0,1.1173582077026367,0.0,0.0,0.0,0.8772626519203186]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46204.pnts"}},{"boundingVolume":{"box":[72.3768539428711,28.16351318359375,2.664287567138672,1.4179229736328125,0.0,0.0,0.0,0.983403205871582,0.0,0.0,0.0,0.5853358507156372]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46205.pnts"}},{"boundingVolume":{"box":[72.38337707519531,30.57649803161621,1.2581053972244263,1.4128761291503906,0.0,0.0,0.0,1.1322250366210938,0.0,0.0,0.0,0.6755062341690063]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46206.pnts"}}],"content":{"uri":"points/r4620.pnts"}},{"boundingVolume":{"box":[70.95648193359375,33.973976135253906,2.0105170607566833,2.8367271423339844,0.0,0.0,0.0,2.2648305892944336,0.0,0.0,0.0,1.317310631275177]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[69.53094482421875,32.84195327758789,0.9730973243713379,1.4111442565917969,0.0,0.0,0.0,1.1075820922851562,0.0,0.0,0.0,0.17487990856170654]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46220.pnts"}},{"boundingVolume":{"box":[69.55012512207031,35.11016845703125,1.533740520477295,1.4078254699707031,0.0,0.0,0.0,1.1286258697509766,0.0,0.0,0.0,0.53635174036026]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46222.pnts"}},{"boundingVolume":{"box":[72.37618255615234,32.83851623535156,0.8444491624832153,1.41558837890625,0.0,0.0,0.0,1.1292572021484375,0.0,0.0,0.0,0.1512427031993866]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46224.pnts"}},{"boundingVolume":{"box":[72.37326049804688,35.118865966796875,1.4731067419052124,1.4150810241699219,0.0,0.0,0.0,1.119192123413086,0.0,0.0,0.0,0.6052128076553345]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46226.pnts"}},{"boundingVolume":{"box":[72.48863220214844,35.68760299682617,2.7037196159362793,1.2845649719238281,0.0,0.0,0.0,0.5499458312988281,0.0,0.0,0.0,0.624108076095581]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46227.pnts"}}],"content":{"uri":"points/r4622.pnts"}},{"boundingVolume":{"box":[76.63456726074219,29.444072723388672,1.615796148777008,2.838237762451172,0.0,0.0,0.0,2.2649145126342773,0.0,0.0,0.0,1.455416738986969]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[75.21710205078125,28.308881759643555,1.158116102218628,1.4172782897949219,0.0,0.0,0.0,1.1295242309570312,0.0,0.0,0.0,0.9202679991722107]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46240.pnts"}},{"boundingVolume":{"box":[75.21561431884766,28.308555603027344,2.575108528137207,1.418060302734375,0.0,0.0,0.0,1.102705955505371,0.0,0.0,0.0,0.49610435962677]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46241.pnts"}},{"boundingVolume":{"box":[75.21487426757812,30.57233238220215,1.2696073055267334,1.4183998107910156,0.0,0.0,0.0,1.114370346069336,0.0,0.0,0.0,0.8075628280639648]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46242.pnts"}},{"boundingVolume":{"box":[75.79214477539062,30.579153060913086,2.4142796993255615,0.8381614685058594,0.0,0.0,0.0,1.1294364929199219,0.0,0.0,0.0,0.33391904830932617]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46243.pnts"}},{"boundingVolume":{"box":[78.05186462402344,28.312082290649414,1.1187759637832642,1.4169425964355469,0.0,0.0,0.0,1.1317691802978516,0.0,0.0,0.0,0.9583965539932251]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46244.pnts"}},{"boundingVolume":{"box":[78.05350494384766,28.320453643798828,2.4222044944763184,1.4177474975585938,0.0,0.0,0.0,1.1063547134399414,0.0,0.0,0.0,0.34307897090911865]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46245.pnts"}},{"boundingVolume":{"box":[78.0535888671875,30.57426643371582,1.2149049043655396,1.4189949035644531,0.0,0.0,0.0,1.1300678253173828,0.0,0.0,0.0,0.8636447787284851]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46246.pnts"}},{"boundingVolume":{"box":[78.05842590332031,30.564231872558594,2.469515562057495,1.4140968322753906,0.0,0.0,0.0,1.1081457138061523,0.0,0.0,0.0,0.3902890682220459]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46247.pnts"}}],"content":{"uri":"points/r4624.pnts"}},{"boundingVolume":{"box":[76.63449478149414,33.97409772872925,1.9341181516647339,2.8376731872558594,0.0,0.0,0.0,2.264740467071533,0.0,0.0,0.0,1.39565908908844]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[75.21973419189453,32.84178161621094,1.3486950397491455,1.4135055541992188,0.0,0.0,0.0,1.1319055557250977,0.0,0.0,0.0,0.7299594879150391]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46260.pnts"}},{"boundingVolume":{"box":[76.06757354736328,32.46421813964844,2.37691330909729,0.5503082275390625,0.0,0.0,0.0,0.7503795623779297,0.0,0.0,0.0,0.2977457046508789]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46261.pnts"}},{"boundingVolume":{"box":[75.21623992919922,35.10328674316406,1.4092113971710205,1.418304443359375,0.0,0.0,0.0,1.1291561126708984,0.0,0.0,0.0,0.6673251986503601]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46262.pnts"}},{"boundingVolume":{"box":[74.17261505126953,35.396080017089844,2.7537455558776855,0.37579345703125,0.0,0.0,0.0,0.50299072265625,0.0,0.0,0.0,0.5555411577224731]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46263.pnts"}},{"boundingVolume":{"box":[78.0528564453125,32.8356819152832,1.3084808588027954,1.4160804748535156,0.0,0.0,0.0,1.1169195175170898,0.0,0.0,0.0,0.7700217962265015]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46264.pnts"}},{"boundingVolume":{"box":[77.78347778320312,32.81920623779297,2.5184412002563477,1.1462936401367188,0.0,0.0,0.0,1.1087980270385742,0.0,0.0,0.0,0.43915724754333496]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46265.pnts"}},{"boundingVolume":{"box":[78.05309295654297,35.107669830322266,1.387311577796936,1.418365478515625,0.0,0.0,0.0,1.1311683654785156,0.0,0.0,0.0,0.6851679086685181]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46266.pnts"}}],"content":{"uri":"points/r4626.pnts"}}],"content":{"uri":"points/r462.pnts"}},{"boundingVolume":{"box":[85.12308692932129,22.64939832687378,1.7391794323921204,5.65007209777832,0.0,0.0,0.0,4.52972936630249,0.0,0.0,0.0,1.6668296456336975]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[82.31110191345215,20.384621620178223,1.789059817790985,2.838083267211914,0.0,0.0,0.0,2.2646636962890625,0.0,0.0,0.0,1.6169492602348328]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[80.88290405273438,19.24491310119629,1.2871897220611572,1.4098548889160156,0.0,0.0,0.0,1.1134529113769531,0.0,0.0,0.0,0.7848644256591797]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46400.pnts"}},{"boundingVolume":{"box":[80.88894653320312,19.255268096923828,2.6506965160369873,1.4145851135253906,0.0,0.0,0.0,1.1283845901489258,0.0,0.0,0.0,0.5631289482116699]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46401.pnts"}},{"boundingVolume":{"box":[80.89241027832031,21.51929473876953,1.2729181051254272,1.4185752868652344,0.0,0.0,0.0,1.129990577697754,0.0,0.0,0.0,0.800338864326477]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46402.pnts"}},{"boundingVolume":{"box":[80.90287780761719,21.515506744384766,2.743136405944824,1.4025459289550781,0.0,0.0,0.0,1.126877784729004,0.0,0.0,0.0,0.6628726720809937]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46403.pnts"}},{"boundingVolume":{"box":[83.7332992553711,19.252098083496094,1.1247342824935913,1.4155120849609375,0.0,0.0,0.0,1.1319475173950195,0.0,0.0,0.0,0.952623724937439]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46404.pnts"}},{"boundingVolume":{"box":[83.74160766601562,19.259002685546875,2.5477709770202637,1.4032363891601562,0.0,0.0,0.0,1.125162124633789,0.0,0.0,0.0,0.46796560287475586]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46405.pnts"}},{"boundingVolume":{"box":[83.73042297363281,21.505611419677734,1.2537364959716797,1.41876220703125,0.0,0.0,0.0,1.1211786270141602,0.0,0.0,0.0,0.824799120426178]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46406.pnts"}},{"boundingVolume":{"box":[83.73782348632812,21.516799926757812,2.6573872566223145,1.4107627868652344,0.0,0.0,0.0,1.131831169128418,0.0,0.0,0.0,0.5783029794692993]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46407.pnts"}}],"content":{"uri":"points/r4640.pnts"}},{"boundingVolume":{"box":[82.3112564086914,24.91424560546875,1.6740356385707855,2.8382415771484375,0.0,0.0,0.0,2.2648820877075195,0.0,0.0,0.0,1.54963818192482]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[80.89228057861328,23.781723022460938,1.155608892440796,1.41888427734375,0.0,0.0,0.0,1.1322212219238281,0.0,0.0,0.0,0.9199592471122742]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46420.pnts"}},{"boundingVolume":{"box":[80.8828353881836,23.781150817871094,2.6513168811798096,1.4052505493164062,0.0,0.0,0.0,1.111659049987793,0.0,0.0,0.0,0.5723569393157959]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46421.pnts"}},{"boundingVolume":{"box":[80.89232635498047,26.04462432861328,1.1011512279510498,1.4185714721679688,0.0,0.0,0.0,1.130289077758789,0.0,0.0,0.0,0.9767537713050842]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46422.pnts"}},{"boundingVolume":{"box":[81.08563232421875,25.959327697753906,2.5662808418273926,1.2031974792480469,0.0,0.0,0.0,1.0329456329345703,0.0,0.0,0.0,0.4841264486312866]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46423.pnts"}},{"boundingVolume":{"box":[83.72960662841797,23.781558990478516,1.177476406097412,1.4182357788085938,0.0,0.0,0.0,1.129969596862793,0.0,0.0,0.0,0.9011268019676208]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46424.pnts"}},{"boundingVolume":{"box":[83.73179626464844,23.777864456176758,2.6073923110961914,1.4078521728515625,0.0,0.0,0.0,1.1216011047363281,0.0,0.0,0.0,0.5281467437744141]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46425.pnts"}},{"boundingVolume":{"box":[83.73031616210938,26.047340393066406,1.1103945970535278,1.419036865234375,0.0,0.0,0.0,1.1317110061645508,0.0,0.0,0.0,0.9678334593772888]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46426.pnts"}},{"boundingVolume":{"box":[83.72399139404297,26.045185089111328,2.518375873565674,1.4115982055664062,0.0,0.0,0.0,1.111912727355957,0.0,0.0,0.0,0.4395047426223755]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46427.pnts"}}],"content":{"uri":"points/r4642.pnts"}},{"boundingVolume":{"box":[87.96141242980957,20.384449005126953,1.4994257688522339,2.811746597290039,0.0,0.0,0.0,2.2645835876464844,0.0,0.0,0.0,1.4265636205673218]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[86.56918334960938,19.251399993896484,1.106125831604004,1.4186363220214844,0.0,0.0,0.0,1.1313390731811523,0.0,0.0,0.0,0.9724331498146057]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46440.pnts"}},{"boundingVolume":{"box":[86.55894470214844,19.267709732055664,2.1920759677886963,1.4086151123046875,0.0,0.0,0.0,1.1051692962646484,0.0,0.0,0.0,0.11334443092346191]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46441.pnts"}},{"boundingVolume":{"box":[86.57090759277344,21.516849517822266,1.1268502473831177,1.4169044494628906,0.0,0.0,0.0,1.1320629119873047,0.0,0.0,0.0,0.9510108828544617]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46442.pnts"}},{"boundingVolume":{"box":[86.57411193847656,21.515573501586914,2.465527296066284,1.4133033752441406,0.0,0.0,0.0,1.10723876953125,0.0,0.0,0.0,0.3867316246032715]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46443.pnts"}},{"boundingVolume":{"box":[89.38052368164062,19.26066780090332,1.0806570053100586,1.3926353454589844,0.0,0.0,0.0,1.122701644897461,0.0,0.0,0.0,0.9967964291572571]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46444.pnts"}},{"boundingVolume":{"box":[89.33544921875,21.528949737548828,1.0980091094970703,1.3473320007324219,0.0,0.0,0.0,1.1170988082885742,0.0,0.0,0.0,0.9806346893310547]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46446.pnts"}},{"boundingVolume":{"box":[89.11247253417969,21.530860900878906,2.1520535945892334,1.0913429260253906,0.0,0.0,0.0,1.1040849685668945,0.0,0.0,0.0,0.07283186912536621]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46447.pnts"}}],"content":{"uri":"points/r4644.pnts"}},{"boundingVolume":{"box":[87.90761375427246,24.91408348083496,1.572076678276062,2.758054733276367,0.0,0.0,0.0,2.2647476196289062,0.0,0.0,0.0,1.4303077459335327]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[86.56687927246094,23.77332305908203,1.2135193347930908,1.4147987365722656,0.0,0.0,0.0,1.123612403869629,0.0,0.0,0.0,0.8631372451782227]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46460.pnts"}},{"boundingVolume":{"box":[86.5701904296875,23.783397674560547,2.5203206539154053,1.4170722961425781,0.0,0.0,0.0,1.1224050521850586,0.0,0.0,0.0,0.43842124938964844]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46461.pnts"}},{"boundingVolume":{"box":[86.56867980957031,26.052684783935547,1.108275055885315,1.4191207885742188,0.0,0.0,0.0,1.1256933212280273,0.0,0.0,0.0,0.9662616848945618]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46462.pnts"}},{"boundingVolume":{"box":[86.6073989868164,26.040664672851562,2.420990467071533,1.3751296997070312,0.0,0.0,0.0,1.121323585510254,0.0,0.0,0.0,0.34179067611694336]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46463.pnts"}},{"boundingVolume":{"box":[89.33073425292969,23.782649993896484,1.1225006580352783,1.3349342346191406,0.0,0.0,0.0,1.1314802169799805,0.0,0.0,0.0,0.9561730027198792]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46464.pnts"}},{"boundingVolume":{"box":[89.32414245605469,23.781494140625,2.354252338409424,1.3105545043945312,0.0,0.0,0.0,1.0965890884399414,0.0,0.0,0.0,0.27493011951446533]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46465.pnts"}},{"boundingVolume":{"box":[89.29806518554688,26.04031753540039,1.1260013580322266,1.3100852966308594,0.0,0.0,0.0,1.1257753372192383,0.0,0.0,0.0,0.9526216983795166]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46466.pnts"}},{"boundingVolume":{"box":[89.25457763671875,26.028804779052734,2.400085926055908,1.2418327331542969,0.0,0.0,0.0,1.1036005020141602,0.0,0.0,0.0,0.3202744722366333]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46467.pnts"}}],"content":{"uri":"points/r4646.pnts"}}],"content":{"uri":"points/r464.pnts"}},{"boundingVolume":{"box":[85.00867652893066,31.708984375,1.5156632661819458,5.535760879516602,0.0,0.0,0.0,4.5298004150390625,0.0,0.0,0.0,1.4205173254013062]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[82.3111400604248,29.444162368774414,1.524675726890564,2.838224411010742,0.0,0.0,0.0,2.2647457122802734,0.0,0.0,0.0,1.411504864692688]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[80.89265441894531,28.32630157470703,1.0960546731948853,1.4155921936035156,0.0,0.0,0.0,1.1173439025878906,0.0,0.0,0.0,0.9820390939712524]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46600.pnts"}},{"boundingVolume":{"box":[80.88816833496094,30.57851791381836,1.1643221378326416,1.4150314331054688,0.0,0.0,0.0,1.1303901672363281,0.0,0.0,0.0,0.9142991900444031]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46602.pnts"}},{"boundingVolume":{"box":[80.85356903076172,30.582422256469727,2.4380555152893066,1.3780517578125,0.0,0.0,0.0,1.1102237701416016,0.0,0.0,0.0,0.35895073413848877]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46603.pnts"}},{"boundingVolume":{"box":[83.73323059082031,28.310182571411133,1.0975117683410645,1.4145164489746094,0.0,0.0,0.0,1.1307659149169922,0.0,0.0,0.0,0.9793534278869629]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46604.pnts"}},{"boundingVolume":{"box":[83.72842407226562,28.30142593383789,2.5018510818481445,1.4169883728027344,0.0,0.0,0.0,1.109084129333496,0.0,0.0,0.0,0.42281973361968994]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46605.pnts"}},{"boundingVolume":{"box":[83.73030090332031,30.570091247558594,1.1359378099441528,1.4190635681152344,0.0,0.0,0.0,1.117340087890625,0.0,0.0,0.0,0.9426203966140747]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46606.pnts"}},{"boundingVolume":{"box":[83.7270736694336,30.379222869873047,2.2876901626586914,1.4107589721679688,0.0,0.0,0.0,0.9282150268554688,0.0,0.0,0.0,0.2085644006729126]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46607.pnts"}}],"content":{"uri":"points/r4660.pnts"}},{"boundingVolume":{"box":[82.31119537353516,33.9732551574707,1.5530551671981812,2.8380508422851562,0.0,0.0,0.0,2.2640151977539062,0.0,0.0,0.0,1.1326826810836792]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[80.89234924316406,32.83935546875,1.2781128883361816,1.4176597595214844,0.0,0.0,0.0,1.1298770904541016,0.0,0.0,0.0,0.8002088069915771]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46620.pnts"}},{"boundingVolume":{"box":[80.91644287109375,32.8422966003418,2.3822553157806396,1.3940010070800781,0.0,0.0,0.0,1.10015869140625,0.0,0.0,0.0,0.3034825325012207]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46621.pnts"}},{"boundingVolume":{"box":[80.90507507324219,35.108985900878906,1.3733699321746826,1.4059066772460938,0.0,0.0,0.0,1.1247234344482422,0.0,0.0,0.0,0.7053356766700745]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46622.pnts"}},{"boundingVolume":{"box":[80.73422241210938,35.11016082763672,2.324960708618164,1.2220954895019531,0.0,0.0,0.0,1.1253490447998047,0.0,0.0,0.0,0.24608123302459717]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46623.pnts"}},{"boundingVolume":{"box":[83.73202514648438,32.84170150756836,1.2495181560516357,1.4171791076660156,0.0,0.0,0.0,1.1321630477905273,0.0,0.0,0.0,0.8291456699371338]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46624.pnts"}},{"boundingVolume":{"box":[83.72564697265625,35.104427337646484,1.28485906124115,1.4143600463867188,0.0,0.0,0.0,1.1301307678222656,0.0,0.0,0.0,0.6120152473449707]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46626.pnts"}}],"content":{"uri":"points/r4662.pnts"}},{"boundingVolume":{"box":[87.84712409973145,29.444080352783203,1.2960728406906128,2.6973133087158203,0.0,0.0,0.0,2.2648496627807617,0.0,0.0,0.0,1.2009268999099731]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[86.5696029663086,28.31256866455078,1.0866280794143677,1.417938232421875,0.0,0.0,0.0,1.1314973831176758,0.0,0.0,0.0,0.991482138633728]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46640.pnts"}},{"boundingVolume":{"box":[85.90666198730469,27.866039276123047,2.243009567260742,0.7346916198730469,0.0,0.0,0.0,0.6545953750610352,0.0,0.0,0.0,0.16318321228027344]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46641.pnts"}},{"boundingVolume":{"box":[86.567626953125,30.573925018310547,1.101794719696045,1.417816162109375,0.0,0.0,0.0,1.1297378540039062,0.0,0.0,0.0,0.9746541976928711]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46642.pnts"}},{"boundingVolume":{"box":[86.56497192382812,29.91653060913086,2.289327383041382,1.4003028869628906,0.0,0.0,0.0,0.4057483673095703,0.0,0.0,0.0,0.2076723575592041]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46643.pnts"}},{"boundingVolume":{"box":[89.26792907714844,28.313629150390625,1.0864763259887695,1.2761878967285156,0.0,0.0,0.0,1.1298341751098633,0.0,0.0,0.0,0.9892619252204895]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46644.pnts"}},{"boundingVolume":{"box":[89.22819519042969,30.576480865478516,1.094220519065857,1.2391395568847656,0.0,0.0,0.0,1.1322698593139648,0.0,0.0,0.0,0.9700790643692017]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46646.pnts"}}],"content":{"uri":"points/r4664.pnts"}},{"boundingVolume":{"box":[87.78442764282227,33.9739031791687,1.1695407629013062,2.634765625,0.0,0.0,0.0,2.2648816108703613,0.0,0.0,0.0,0.9621864557266235]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[86.56333923339844,32.835533142089844,1.19697904586792,1.413360595703125,0.0,0.0,0.0,1.117079734802246,0.0,0.0,0.0,0.798905611038208]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46660.pnts"}},{"boundingVolume":{"box":[86.56349182128906,35.11190414428711,1.0149281024932861,1.4078369140625,0.0,0.0,0.0,1.1268806457519531,0.0,0.0,0.0,0.44155994057655334]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46662.pnts"}},{"boundingVolume":{"box":[89.20875549316406,32.838809967041016,1.1399563550949097,1.2104377746582031,0.0,0.0,0.0,1.1296892166137695,0.0,0.0,0.0,0.932602047920227]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46664.pnts"}},{"boundingVolume":{"box":[89.1878890991211,35.10236358642578,1.1294195652008057,1.1944427490234375,0.0,0.0,0.0,1.1148433685302734,0.0,0.0,0.0,0.7342095375061035]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r46666.pnts"}}],"content":{"uri":"points/r4666.pnts"}}],"content":{"uri":"points/r466.pnts"}}],"content":{"uri":"points/r46.pnts"}}],"content":{"uri":"points/r4.pnts"}},{"boundingVolume":{"box":[67.86808395385742,46.523040771484375,2.3218081295490265,22.45498275756836,0.0,0.0,0.0,10.284172058105469,0.0,0.0,0.0,1.8130800426006317]},"geometricError":23.25484925159302,"refine":"ADD","children":[{"boundingVolume":{"box":[56.766340255737305,45.29857063293457,2.470446825027466,11.353239059448242,0.0,0.0,0.0,9.0596923828125,0.0,0.0,0.0,1.6644413471221924]},"geometricError":11.62742462579651,"refine":"ADD","children":[{"boundingVolume":{"box":[51.08969974517822,40.768717765808105,2.601529747247696,5.676579475402832,0.0,0.0,0.0,4.5298051834106445,0.0,0.0,0.0,1.5333584249019623]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[48.25145435333252,38.50368595123291,2.7479336261749268,2.8380250930786133,0.0,0.0,0.0,2.264773368835449,0.0,0.0,0.0,1.3202307224273682]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[46.66925811767578,37.84653854370117,2.0041606426239014,1.2354602813720703,0.0,0.0,0.0,0.6572113037109375,0.0,0.0,0.0,0.07419389486312866]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60000.pnts"}},{"boundingVolume":{"box":[46.832969665527344,37.37126159667969,2.9625606536865234,1.418365478515625,0.0,0.0,0.0,1.1322784423828125,0.0,0.0,0.0,0.8837167024612427]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60001.pnts"}},{"boundingVolume":{"box":[46.83112716674805,39.63318634033203,1.7528001070022583,1.4176979064941406,0.0,0.0,0.0,1.1290855407714844,0.0,0.0,0.0,0.3250972032546997]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60002.pnts"}},{"boundingVolume":{"box":[46.84434509277344,39.45233917236328,2.804330587387085,1.406942367553711,0.0,0.0,0.0,0.9482212066650391,0.0,0.0,0.0,0.7248678207397461]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60003.pnts"}},{"boundingVolume":{"box":[49.67047882080078,37.373069763183594,3.074004888534546,1.4190006256103516,0.0,0.0,0.0,1.1306419372558594,0.0,0.0,0.0,0.96122145652771]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60005.pnts"}},{"boundingVolume":{"box":[49.66387176513672,39.68706512451172,1.8769793510437012,1.4116172790527344,0.0,0.0,0.0,1.0813941955566406,0.0,0.0,0.0,0.20144563913345337]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60006.pnts"}},{"boundingVolume":{"box":[49.67066955566406,39.63279724121094,2.9251718521118164,1.4187450408935547,0.0,0.0,0.0,1.1276416778564453,0.0,0.0,0.0,0.8462821245193481]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60007.pnts"}}],"content":{"uri":"points/r6000.pnts"}},{"boundingVolume":{"box":[48.25107955932617,43.02861785888672,2.294512540102005,2.8379592895507812,0.0,0.0,0.0,2.259859085083008,0.0,0.0,0.0,1.2263412177562714]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[46.83311080932617,41.910491943359375,1.6138453483581543,1.4170799255371094,0.0,0.0,0.0,1.1103191375732422,0.0,0.0,0.0,0.4624558091163635]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60020.pnts"}},{"boundingVolume":{"box":[45.7265510559082,42.73682403564453,2.3663973808288574,0.3130989074707031,0.0,0.0,0.0,0.296600341796875,0.0,0.0,0.0,0.28587520122528076]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60021.pnts"}},{"boundingVolume":{"box":[46.83222961425781,44.15803527832031,1.5733850002288818,1.4190216064453125,0.0,0.0,0.0,1.113525390625,0.0,0.0,0.0,0.5052136778831482]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60022.pnts"}},{"boundingVolume":{"box":[46.837188720703125,44.144866943359375,2.4090914726257324,1.413827896118164,0.0,0.0,0.0,1.1110477447509766,0.0,0.0,0.0,0.3299447298049927]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60023.pnts"}},{"boundingVolume":{"box":[49.66998291015625,41.90087127685547,1.5964288711547852,1.4163475036621094,0.0,0.0,0.0,1.1319446563720703,0.0,0.0,0.0,0.4553545117378235]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60024.pnts"}},{"boundingVolume":{"box":[49.82372283935547,41.811180114746094,2.5724375247955322,1.2643909454345703,0.0,0.0,0.0,1.0095939636230469,0.0,0.0,0.0,0.4931197166442871]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60025.pnts"}},{"boundingVolume":{"box":[49.66954040527344,44.179595947265625,1.593256950378418,1.4179744720458984,0.0,0.0,0.0,1.1086101531982422,0.0,0.0,0.0,0.4850967526435852]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60026.pnts"}},{"boundingVolume":{"box":[49.66510772705078,44.3852424621582,2.7925662994384766,1.4133739471435547,0.0,0.0,0.0,0.8786354064941406,0.0,0.0,0.0,0.7127071619033813]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60027.pnts"}}],"content":{"uri":"points/r6002.pnts"}},{"boundingVolume":{"box":[53.92800426483154,38.50378131866455,2.7550401389598846,2.838250160217285,0.0,0.0,0.0,2.2645673751831055,0.0,0.0,0.0,1.3798480331897736]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[53.22760772705078,37.364830017089844,1.8639776706695557,0.6980228424072266,0.0,0.0,0.0,1.1251506805419922,0.0,0.0,0.0,0.2144647240638733]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60040.pnts"}},{"boundingVolume":{"box":[52.510093688964844,37.377525329589844,3.106867790222168,1.413827896118164,0.0,0.0,0.0,1.125631332397461,0.0,0.0,0.0,1.0280203819274902]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60041.pnts"}},{"boundingVolume":{"box":[52.51206970214844,39.636810302734375,1.9656010866165161,1.4128971099853516,0.0,0.0,0.0,1.1018733978271484,0.0,0.0,0.0,0.11309826374053955]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60042.pnts"}},{"boundingVolume":{"box":[52.508541107177734,39.6360969543457,2.968674659729004,1.4184837341308594,0.0,0.0,0.0,1.1322517395019531,0.0,0.0,0.0,0.8899312019348145]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60043.pnts"}},{"boundingVolume":{"box":[55.347412109375,37.37369155883789,1.773646354675293,1.4186458587646484,0.0,0.0,0.0,1.1297073364257812,0.0,0.0,0.0,0.3045901656150818]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60044.pnts"}},{"boundingVolume":{"box":[55.338096618652344,37.370338439941406,2.8162145614624023,1.4084930419921875,0.0,0.0,0.0,1.131124496459961,0.0,0.0,0.0,0.7372236251831055]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60045.pnts"}},{"boundingVolume":{"box":[55.347190856933594,39.6346321105957,1.7232716083526611,1.4190635681152344,0.0,0.0,0.0,1.1307373046875,0.0,0.0,0.0,0.34807950258255005]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60046.pnts"}},{"boundingVolume":{"box":[55.35350799560547,39.646705627441406,2.911722421646118,1.4121360778808594,0.0,0.0,0.0,1.1213340759277344,0.0,0.0,0.0,0.8326225280761719]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60047.pnts"}}],"content":{"uri":"points/r6004.pnts"}},{"boundingVolume":{"box":[53.92802715301514,43.033714294433594,2.4396729469299316,2.838252067565918,0.0,0.0,0.0,2.2648086547851562,0.0,0.0,0.0,1.3399468660354614]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[52.509578704833984,41.904258728027344,1.7585920095443726,1.4183235168457031,0.0,0.0,0.0,1.1293220520019531,0.0,0.0,0.0,0.3198350667953491]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60060.pnts"}},{"boundingVolume":{"box":[52.5088996887207,41.90045166015625,2.8855011463165283,1.4191246032714844,0.0,0.0,0.0,1.1280651092529297,0.0,0.0,0.0,0.8066561222076416]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60061.pnts"}},{"boundingVolume":{"box":[52.508575439453125,44.16609191894531,1.5878292322158813,1.4174060821533203,0.0,0.0,0.0,1.1323890686035156,0.0,0.0,0.0,0.48744189739227295]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60062.pnts"}},{"boundingVolume":{"box":[52.517852783203125,44.15952682495117,2.667239189147949,1.4089527130126953,0.0,0.0,0.0,1.1218833923339844,0.0,0.0,0.0,0.5884809494018555]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60063.pnts"}},{"boundingVolume":{"box":[55.34619140625,41.901458740234375,1.7237884998321533,1.4178943634033203,0.0,0.0,0.0,1.1124992370605469,0.0,0.0,0.0,0.3538234233856201]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60064.pnts"}},{"boundingVolume":{"box":[55.3408203125,41.901123046875,2.9246597290039062,1.4060420989990234,0.0,0.0,0.0,1.1318416595458984,0.0,0.0,0.0,0.8448077440261841]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60065.pnts"}},{"boundingVolume":{"box":[55.34777069091797,44.15198516845703,1.7176098823547363,1.418508529663086,0.0,0.0,0.0,1.1117610931396484,0.0,0.0,0.0,0.3605514168739319]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60066.pnts"}},{"boundingVolume":{"box":[55.34801483154297,44.165103912353516,2.785210371017456,1.4158992767333984,0.0,0.0,0.0,1.1314582824707031,0.0,0.0,0.0,0.705681324005127]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60067.pnts"}}],"content":{"uri":"points/r6006.pnts"}}],"content":{"uri":"points/r600.pnts"}},{"boundingVolume":{"box":[51.08972454071045,49.82843017578125,2.3037473559379578,5.676623344421387,0.0,0.0,0.0,4.52983283996582,0.0,0.0,0.0,1.2391049265861511]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[48.25094032287598,47.56426525115967,2.270655393600464,2.837839126586914,0.0,0.0,0.0,2.26413631439209,0.0,0.0,0.0,1.161775827407837]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[46.83223342895508,46.43347930908203,1.6158970594406128,1.4191322326660156,0.0,0.0,0.0,1.1298961639404297,0.0,0.0,0.0,0.46104300022125244]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60200.pnts"}},{"boundingVolume":{"box":[46.832359313964844,48.692893981933594,1.5794092416763306,1.4189186096191406,0.0,0.0,0.0,1.1293830871582031,0.0,0.0,0.0,0.41102492809295654]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60202.pnts"}},{"boundingVolume":{"box":[49.66979217529297,46.42664337158203,1.593766450881958,1.4181442260742188,0.0,0.0,0.0,1.1114501953125,0.0,0.0,0.0,0.48488688468933105]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60204.pnts"}},{"boundingVolume":{"box":[49.67774200439453,46.432411193847656,2.740264892578125,1.4083576202392578,0.0,0.0,0.0,1.130350112915039,0.0,0.0,0.0,0.6615200042724609]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60205.pnts"}},{"boundingVolume":{"box":[49.670162200927734,48.700279235839844,1.602203369140625,1.4186172485351562,0.0,0.0,0.0,1.128122329711914,0.0,0.0,0.0,0.4741782546043396]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60206.pnts"}},{"boundingVolume":{"box":[49.806907653808594,48.6927490234375,2.6119937896728516,1.2808780670166016,0.0,0.0,0.0,1.1273059844970703,0.0,0.0,0.0,0.5321187973022461]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60207.pnts"}}],"content":{"uri":"points/r6020.pnts"}},{"boundingVolume":{"box":[48.251434326171875,52.093387603759766,2.3488658368587494,2.8382301330566406,0.0,0.0,0.0,2.2648754119873047,0.0,0.0,0.0,1.1939864456653595]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[46.83219909667969,50.96240997314453,1.640879511833191,1.4189395904541016,0.0,0.0,0.0,1.110055923461914,0.0,0.0,0.0,0.43694770336151123]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60220.pnts"}},{"boundingVolume":{"box":[46.83583068847656,50.97184753417969,2.6782121658325195,1.407449722290039,0.0,0.0,0.0,1.1214351654052734,0.0,0.0,0.0,0.593967080116272]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60221.pnts"}},{"boundingVolume":{"box":[46.83226776123047,53.23200988769531,1.6480762958526611,1.4190044403076172,0.0,0.0,0.0,1.1262531280517578,0.0,0.0,0.0,0.4145743250846863]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60222.pnts"}},{"boundingVolume":{"box":[46.83232879638672,53.2252197265625,2.812173366546631,1.4190711975097656,0.0,0.0,0.0,1.1317119598388672,0.0,0.0,0.0,0.730678915977478]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60223.pnts"}},{"boundingVolume":{"box":[49.6705322265625,50.95884704589844,1.6167869567871094,1.4190940856933594,0.0,0.0,0.0,1.1303348541259766,0.0,0.0,0.0,0.4619075655937195]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60224.pnts"}},{"boundingVolume":{"box":[49.673160552978516,50.964263916015625,2.747572183609009,1.4146766662597656,0.0,0.0,0.0,1.1070308685302734,0.0,0.0,0.0,0.6679153442382812]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60225.pnts"}},{"boundingVolume":{"box":[49.66595458984375,53.231201171875,1.6373567581176758,1.4140949249267578,0.0,0.0,0.0,1.1084918975830078,0.0,0.0,0.0,0.4412497878074646]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60226.pnts"}},{"boundingVolume":{"box":[49.67082214355469,53.22478485107422,2.732780933380127,1.4179821014404297,0.0,0.0,0.0,1.1295795440673828,0.0,0.0,0.0,0.6535288095474243]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60227.pnts"}}],"content":{"uri":"points/r6022.pnts"}},{"boundingVolume":{"box":[53.928070068359375,47.56341075897217,2.2514461874961853,2.838277816772461,0.0,0.0,0.0,2.2647218704223633,0.0,0.0,0.0,1.1815699934959412]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[52.50923156738281,46.42687225341797,1.5781729221343994,1.415252685546875,0.0,0.0,0.0,1.128183364868164,0.0,0.0,0.0,0.49981993436813354]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60240.pnts"}},{"boundingVolume":{"box":[52.51390075683594,46.43666076660156,2.756138801574707,1.4127368927001953,0.0,0.0,0.0,1.1260623931884766,0.0,0.0,0.0,0.6768773794174194]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60241.pnts"}},{"boundingVolume":{"box":[52.50935363769531,48.69245910644531,1.5926761627197266,1.4181461334228516,0.0,0.0,0.0,1.1133193969726562,0.0,0.0,0.0,0.4856566786766052]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60242.pnts"}},{"boundingVolume":{"box":[52.50609588623047,48.69538879394531,2.691585063934326,1.413839340209961,0.0,0.0,0.0,1.1318721771240234,0.0,0.0,0.0,0.6128578186035156]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60243.pnts"}},{"boundingVolume":{"box":[55.35137939453125,46.432159423828125,1.5799431800842285,1.413503646850586,0.0,0.0,0.0,1.1312808990478516,0.0,0.0,0.0,0.49811339378356934]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60244.pnts"}},{"boundingVolume":{"box":[55.34634017944336,46.42608642578125,2.692347288131714,1.414642333984375,0.0,0.0,0.0,1.124990463256836,0.0,0.0,0.0,0.6135401725769043]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60245.pnts"}},{"boundingVolume":{"box":[55.347251892089844,48.693077087402344,1.5751357078552246,1.4190921783447266,0.0,0.0,0.0,1.1295528411865234,0.0,0.0,0.0,0.5035621523857117]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60246.pnts"}},{"boundingVolume":{"box":[55.33873748779297,48.68882751464844,2.6740293502807617,1.4018077850341797,0.0,0.0,0.0,1.1122817993164062,0.0,0.0,0.0,0.5932009220123291]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60247.pnts"}}],"content":{"uri":"points/r6024.pnts"}},{"boundingVolume":{"box":[53.92803955078125,52.08493232727051,2.1266415119171143,2.8382816314697266,0.0,0.0,0.0,2.256185531616211,0.0,0.0,0.0,1.0619990825653076]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[52.50896072387695,50.96125030517578,1.596306562423706,1.4190330505371094,0.0,0.0,0.0,1.1320209503173828,0.0,0.0,0.0,0.4817695617675781]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60260.pnts"}},{"boundingVolume":{"box":[52.511131286621094,50.960121154785156,2.532777786254883,1.412567138671875,0.0,0.0,0.0,1.1309528350830078,0.0,0.0,0.0,0.4539217948913574]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60261.pnts"}},{"boundingVolume":{"box":[52.508270263671875,53.21726989746094,1.6069360971450806,1.4162464141845703,0.0,0.0,0.0,1.1238479614257812,0.0,0.0,0.0,0.47158920764923096]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60262.pnts"}},{"boundingVolume":{"box":[52.50123596191406,53.12379455566406,2.5270023345947266,1.411214828491211,0.0,0.0,0.0,1.0024890899658203,0.0,0.0,0.0,0.44798052310943604]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60263.pnts"}},{"boundingVolume":{"box":[55.34699630737305,50.95951843261719,1.5714620351791382,1.4184799194335938,0.0,0.0,0.0,1.1127681732177734,0.0,0.0,0.0,0.5068196058273315]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60264.pnts"}},{"boundingVolume":{"box":[55.34856414794922,50.964073181152344,2.63368558883667,1.4170475006103516,0.0,0.0,0.0,1.1291618347167969,0.0,0.0,0.0,0.554955005645752]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60265.pnts"}},{"boundingVolume":{"box":[55.19599151611328,52.6258544921875,1.5655319690704346,1.2530155181884766,0.0,0.0,0.0,0.5310249328613281,0.0,0.0,0.0,0.49400800466537476]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60266.pnts"}},{"boundingVolume":{"box":[54.864410400390625,52.34076690673828,2.5024631023406982,0.9287357330322266,0.0,0.0,0.0,0.2471294403076172,0.0,0.0,0.0,0.4057121276855469]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60267.pnts"}}],"content":{"uri":"points/r6026.pnts"}}],"content":{"uri":"points/r602.pnts"}},{"boundingVolume":{"box":[62.443095207214355,40.7687931060791,2.2197682857513428,5.676484107971191,0.0,0.0,0.0,4.529777526855469,0.0,0.0,0.0,1.2003540992736816]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[59.604798316955566,38.50385284423828,2.3660770058631897,2.8381776809692383,0.0,0.0,0.0,2.264802932739258,0.0,0.0,0.0,0.9908786416053772]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[58.18727111816406,37.366722106933594,1.8535573482513428,1.4164676666259766,0.0,0.0,0.0,1.1085357666015625,0.0,0.0,0.0,0.1932026743888855]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60400.pnts"}},{"boundingVolume":{"box":[58.185611724853516,39.63911437988281,1.7260037660598755,1.4189910888671875,0.0,0.0,0.0,1.1295356750488281,0.0,0.0,0.0,0.350805401802063]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60402.pnts"}},{"boundingVolume":{"box":[57.72846221923828,39.64740753173828,2.7111783027648926,0.9591426849365234,0.0,0.0,0.0,1.1055641174316406,0.0,0.0,0.0,0.6314457654953003]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60403.pnts"}},{"boundingVolume":{"box":[61.028160095214844,37.36630630493164,1.8095438480377197,1.4146919250488281,0.0,0.0,0.0,1.1270828247070312,0.0,0.0,0.0,0.21898746490478516]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60404.pnts"}},{"boundingVolume":{"box":[61.036766052246094,37.03865432739258,2.549825668334961,1.4045333862304688,0.0,0.0,0.0,0.7689361572265625,0.0,0.0,0.0,0.4400064945220947]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60405.pnts"}},{"boundingVolume":{"box":[61.02099609375,39.63434600830078,1.7421607971191406,1.4161701202392578,0.0,0.0,0.0,1.1089649200439453,0.0,0.0,0.0,0.13018083572387695]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60406.pnts"}}],"content":{"uri":"points/r6040.pnts"}},{"boundingVolume":{"box":[59.60474967956543,43.033671379089355,2.265930652618408,2.8381385803222656,0.0,0.0,0.0,2.264899253845215,0.0,0.0,0.0,1.1120378971099854]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[58.186927795410156,41.899024963378906,1.6795363426208496,1.4090099334716797,0.0,0.0,0.0,1.1302528381347656,0.0,0.0,0.0,0.3974723815917969]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60420.pnts"}},{"boundingVolume":{"box":[58.18699264526367,41.90381622314453,2.721259355545044,1.4168281555175781,0.0,0.0,0.0,1.108367919921875,0.0,0.0,0.0,0.6413564682006836]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60421.pnts"}},{"boundingVolume":{"box":[58.18560028076172,44.17505645751953,1.6172046661376953,1.4189891815185547,0.0,0.0,0.0,1.1105060577392578,0.0,0.0,0.0,0.46031278371810913]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60422.pnts"}},{"boundingVolume":{"box":[58.1917839050293,44.16893768310547,2.724144458770752,1.4111595153808594,0.0,0.0,0.0,1.1293773651123047,0.0,0.0,0.0,0.6445804834365845]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60423.pnts"}},{"boundingVolume":{"box":[61.02587890625,41.90478515625,1.7340097427368164,1.4170093536376953,0.0,0.0,0.0,1.1288318634033203,0.0,0.0,0.0,0.16444897651672363]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60424.pnts"}},{"boundingVolume":{"box":[60.19614028930664,42.390869140625,2.7955217361450195,0.5718307495117188,0.0,0.0,0.0,0.6253490447998047,0.0,0.0,0.0,0.4678558111190796]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60425.pnts"}},{"boundingVolume":{"box":[61.020538330078125,44.16460418701172,1.6257364749908447,1.415567398071289,0.0,0.0,0.0,1.1309242248535156,0.0,0.0,0.0,0.4443923830986023]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60426.pnts"}},{"boundingVolume":{"box":[61.02118682861328,44.17022705078125,2.6695804595947266,1.4124870300292969,0.0,0.0,0.0,1.1120281219482422,0.0,0.0,0.0,0.5904535055160522]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60427.pnts"}}],"content":{"uri":"points/r6042.pnts"}},{"boundingVolume":{"box":[65.2814302444458,38.50397777557373,2.2645132541656494,2.838149070739746,0.0,0.0,0.0,2.264693260192871,0.0,0.0,0.0,1.1431028842926025]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[63.862159729003906,37.373023986816406,1.6930879354476929,1.4185943603515625,0.0,0.0,0.0,1.1304569244384766,0.0,0.0,0.0,0.38498055934906006]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60440.pnts"}},{"boundingVolume":{"box":[63.860374450683594,37.36800765991211,2.625880479812622,1.4059696197509766,0.0,0.0,0.0,1.12872314453125,0.0,0.0,0.0,0.544567346572876]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60441.pnts"}},{"boundingVolume":{"box":[63.86064529418945,39.632530212402344,1.803918480873108,1.4075431823730469,0.0,0.0,0.0,1.128683090209961,0.0,0.0,0.0,0.26921069622039795]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60442.pnts"}},{"boundingVolume":{"box":[64.15884399414062,39.48921585083008,2.617422103881836,1.1218070983886719,0.0,0.0,0.0,0.9582099914550781,0.0,0.0,0.0,0.5332956314086914]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60443.pnts"}},{"boundingVolume":{"box":[66.69256591796875,37.37285614013672,1.6288228034973145,1.4092216491699219,0.0,0.0,0.0,1.109140396118164,0.0,0.0,0.0,0.4460403323173523]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60444.pnts"}},{"boundingVolume":{"box":[66.69880676269531,37.37579345703125,2.7373294830322266,1.4136390686035156,0.0,0.0,0.0,1.1279067993164062,0.0,0.0,0.0,0.6564916372299194]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60445.pnts"}},{"boundingVolume":{"box":[66.7056884765625,39.63658142089844,1.5997886657714844,1.4138908386230469,0.0,0.0,0.0,1.132089614868164,0.0,0.0,0.0,0.4783782958984375]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60446.pnts"}},{"boundingVolume":{"box":[66.69640350341797,39.633724212646484,2.621875762939453,1.414398193359375,0.0,0.0,0.0,1.1298294067382812,0.0,0.0,0.0,0.5428664684295654]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60447.pnts"}}],"content":{"uri":"points/r6044.pnts"}},{"boundingVolume":{"box":[65.28136348724365,43.03373146057129,2.0986270904541016,2.8381738662719727,0.0,0.0,0.0,2.2647628784179688,0.0,0.0,0.0,1.056621789932251]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[63.862030029296875,41.90214538574219,1.6528472900390625,1.4188404083251953,0.0,0.0,0.0,1.1088905334472656,0.0,0.0,0.0,0.11852473020553589]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60460.pnts"}},{"boundingVolume":{"box":[63.86320495605469,44.1712646484375,1.6872483491897583,1.413034439086914,0.0,0.0,0.0,1.1272296905517578,0.0,0.0,0.0,0.14393973350524902]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60462.pnts"}},{"boundingVolume":{"box":[66.69993591308594,41.89862823486328,1.617715835571289,1.4185562133789062,0.0,0.0,0.0,1.129659652709961,0.0,0.0,0.0,0.4604196548461914]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60464.pnts"}},{"boundingVolume":{"box":[66.84503173828125,41.906551361083984,2.557072639465332,1.2714462280273438,0.0,0.0,0.0,1.1116447448730469,0.0,0.0,0.0,0.47826409339904785]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60465.pnts"}},{"boundingVolume":{"box":[66.70538330078125,44.170013427734375,1.5817558765411377,1.414154052734375,0.0,0.0,0.0,1.1087779998779297,0.0,0.0,0.0,0.13521254062652588]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60466.pnts"}}],"content":{"uri":"points/r6046.pnts"}}],"content":{"uri":"points/r604.pnts"}},{"boundingVolume":{"box":[62.44256401062012,48.63619804382324,2.0687031745910645,5.67616081237793,0.0,0.0,0.0,3.337566375732422,0.0,0.0,0.0,1.262697696685791]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[59.604825019836426,47.56372833251953,2.1291123628616333,2.83815860748291,0.0,0.0,0.0,2.2646446228027344,0.0,0.0,0.0,1.1939197778701782]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[58.191795349121094,46.43902587890625,1.6002562046051025,1.412841796875,0.0,0.0,0.0,1.1243343353271484,0.0,0.0,0.0,0.47052764892578125]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60600.pnts"}},{"boundingVolume":{"box":[58.18470001220703,45.86090850830078,2.630533218383789,1.4180335998535156,0.0,0.0,0.0,0.5614356994628906,0.0,0.0,0.0,0.5489892959594727]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60601.pnts"}},{"boundingVolume":{"box":[58.18569564819336,48.69593048095703,1.543222188949585,1.4187965393066406,0.0,0.0,0.0,1.132284164428711,0.0,0.0,0.0,0.5351867079734802]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60602.pnts"}},{"boundingVolume":{"box":[58.189659118652344,48.71602249145508,2.6613731384277344,1.4115142822265625,0.0,0.0,0.0,1.1068496704101562,0.0,0.0,0.0,0.5820361375808716]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60603.pnts"}},{"boundingVolume":{"box":[61.02378845214844,46.43999099731445,1.5223240852355957,1.4188995361328125,0.0,0.0,0.0,1.1152000427246094,0.0,0.0,0.0,0.5522229671478271]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60604.pnts"}},{"boundingVolume":{"box":[61.023094177246094,46.422828674316406,2.6090996265411377,1.4007759094238281,0.0,0.0,0.0,1.1132144927978516,0.0,0.0,0.0,0.5302441120147705]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60605.pnts"}},{"boundingVolume":{"box":[61.021995544433594,48.707374572753906,1.5067548751831055,1.417205810546875,0.0,0.0,0.0,1.120849609375,0.0,0.0,0.0,0.5715622901916504]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60606.pnts"}},{"boundingVolume":{"box":[60.82252502441406,48.706024169921875,2.6958518028259277,1.217702865600586,0.0,0.0,0.0,1.1204757690429688,0.0,0.0,0.0,0.616202712059021]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60607.pnts"}}],"content":{"uri":"points/r6060.pnts"}},{"boundingVolume":{"box":[59.25507354736328,50.90110778808594,2.040224313735962,2.4882965087890625,0.0,0.0,0.0,1.0726566314697266,0.0,0.0,0.0,1.0833837985992432]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r6062.pnts"}},{"boundingVolume":{"box":[65.28100109100342,47.4278450012207,1.9952472448349,2.837723731994629,0.0,0.0,0.0,2.129213333129883,0.0,0.0,0.0,1.1886452436447144]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[63.862274169921875,46.43097686767578,1.4635614156723022,1.418996810913086,0.0,0.0,0.0,1.132345199584961,0.0,0.0,0.0,0.613080620765686]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60640.pnts"}},{"boundingVolume":{"box":[63.47153854370117,46.436378479003906,2.616665840148926,1.0221672058105469,0.0,0.0,0.0,1.111764907836914,0.0,0.0,0.0,0.5372999906539917]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60641.pnts"}},{"boundingVolume":{"box":[63.85528564453125,48.56043243408203,1.4633982181549072,1.4101886749267578,0.0,0.0,0.0,0.9966259002685547,0.0,0.0,0.0,0.6125624179840088]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60642.pnts"}},{"boundingVolume":{"box":[63.33787536621094,47.83845520019531,2.2595572471618652,0.8671627044677734,0.0,0.0,0.0,0.25194740295410156,0.0,0.0,0.0,0.18045973777770996]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60643.pnts"}},{"boundingVolume":{"box":[66.70013427734375,46.43775177001953,1.3190312385559082,1.4185905456542969,0.0,0.0,0.0,1.1257476806640625,0.0,0.0,0.0,0.47019076347351074]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60644.pnts"}},{"boundingVolume":{"box":[66.44107818603516,47.994117736816406,1.3030033111572266,1.1557159423828125,0.0,0.0,0.0,0.4302978515625,0.0,0.0,0.0,0.48273175954818726]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r60646.pnts"}}],"content":{"uri":"points/r6064.pnts"}}],"content":{"uri":"points/r606.pnts"}}],"content":{"uri":"points/r60.pnts"}},{"boundingVolume":{"box":[48.28422546386719,55.582767486572266,2.2196197509765625,2.869516372680664,0.0,0.0,0.0,1.2244453430175781,0.0,0.0,0.0,1.0214923620224]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r62.pnts"}},{"boundingVolume":{"box":[79.22140693664551,41.809261322021484,1.9430746734142303,11.101659774780273,0.0,0.0,0.0,5.570343017578125,0.0,0.0,0.0,1.4343465864658356]},"geometricError":11.62742462579651,"refine":"ADD","children":[{"boundingVolume":{"box":[73.79628562927246,40.76860237121582,2.040545880794525,5.676538467407227,0.0,0.0,0.0,4.529684066772461,0.0,0.0,0.0,1.3368753790855408]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[70.95796775817871,38.503294944763184,2.17293381690979,2.838167190551758,0.0,0.0,0.0,2.2642316818237305,0.0,0.0,0.0,1.2044874429702759]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[69.53851318359375,37.36785125732422,1.5861704349517822,1.4099311828613281,0.0,0.0,0.0,1.1281452178955078,0.0,0.0,0.0,0.48783326148986816]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64000.pnts"}},{"boundingVolume":{"box":[69.55337524414062,37.845672607421875,2.557262420654297,1.404327392578125,0.0,0.0,0.0,0.627227783203125,0.0,0.0,0.0,0.4760322570800781]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64001.pnts"}},{"boundingVolume":{"box":[69.53846740722656,39.64186477661133,1.5238420963287354,1.4186668395996094,0.0,0.0,0.0,1.1095848083496094,0.0,0.0,0.0,0.5546377301216125]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64002.pnts"}},{"boundingVolume":{"box":[69.54261016845703,39.637123107910156,2.725451946258545,1.414581298828125,0.0,0.0,0.0,1.1295089721679688,0.0,0.0,0.0,0.6424585580825806]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64003.pnts"}},{"boundingVolume":{"box":[72.38261413574219,37.37141799926758,1.5389220714569092,1.413299560546875,0.0,0.0,0.0,1.132354736328125,0.0,0.0,0.0,0.5382339954376221]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64004.pnts"}},{"boundingVolume":{"box":[72.37004089355469,37.3621826171875,2.688176155090332,1.4103279113769531,0.0,0.0,0.0,1.1224842071533203,0.0,0.0,0.0,0.6080296039581299]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64005.pnts"}},{"boundingVolume":{"box":[72.37557983398438,39.63518524169922,1.5432085990905762,1.4176063537597656,0.0,0.0,0.0,1.1312065124511719,0.0,0.0,0.0,0.5326402187347412]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64006.pnts"}},{"boundingVolume":{"box":[72.38240051269531,39.63384246826172,2.680650234222412,1.4137344360351562,0.0,0.0,0.0,1.108743667602539,0.0,0.0,0.0,0.6017357110977173]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64007.pnts"}}],"content":{"uri":"points/r6400.pnts"}},{"boundingVolume":{"box":[70.95792770385742,43.033430099487305,1.9752447009086609,2.8381805419921875,0.0,0.0,0.0,2.2642478942871094,0.0,0.0,0.0,1.2715741991996765]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[69.54170227050781,41.90248489379883,1.4256080389022827,1.4122238159179688,0.0,0.0,0.0,1.130828857421875,0.0,0.0,0.0,0.6530405282974243]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64020.pnts"}},{"boundingVolume":{"box":[69.36315155029297,41.90016174316406,2.442068099975586,1.2408447265625,0.0,0.0,0.0,1.1309795379638672,0.0,0.0,0.0,0.3629775047302246]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64021.pnts"}},{"boundingVolume":{"box":[69.53520202636719,44.16340637207031,1.4026377201080322,1.4154548645019531,0.0,0.0,0.0,1.1293773651123047,0.0,0.0,0.0,0.6734693050384521]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64022.pnts"}},{"boundingVolume":{"box":[69.09605407714844,43.74645233154297,2.3549246788024902,0.9567985534667969,0.0,0.0,0.0,0.6838207244873047,0.0,0.0,0.0,0.2724876403808594]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64023.pnts"}},{"boundingVolume":{"box":[72.3901138305664,41.90575408935547,1.3996775150299072,1.4059371948242188,0.0,0.0,0.0,1.116607666015625,0.0,0.0,0.0,0.677398681640625]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64024.pnts"}},{"boundingVolume":{"box":[72.51376342773438,41.906097412109375,2.6629819869995117,1.2737541198730469,0.0,0.0,0.0,1.1274738311767578,0.0,0.0,0.0,0.5838369131088257]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64025.pnts"}},{"boundingVolume":{"box":[72.38475036621094,44.15736389160156,1.392426609992981,1.4113578796386719,0.0,0.0,0.0,1.1159229278564453,0.0,0.0,0.0,0.6857911348342896]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64026.pnts"}},{"boundingVolume":{"box":[72.61122131347656,43.6362419128418,2.6391372680664062,1.1753768920898438,0.0,0.0,0.0,0.6025352478027344,0.0,0.0,0.0,0.5584162473678589]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64027.pnts"}}],"content":{"uri":"points/r6402.pnts"}},{"boundingVolume":{"box":[76.63322067260742,38.50381088256836,2.0189841389656067,2.8369369506835938,0.0,0.0,0.0,2.264892578125,0.0,0.0,0.0,1.1991501450538635]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[75.21534729003906,37.37206268310547,1.535061240196228,1.4190635681152344,0.0,0.0,0.0,1.106576919555664,0.0,0.0,0.0,0.5434871912002563]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64040.pnts"}},{"boundingVolume":{"box":[75.21408081054688,37.5514030456543,2.5052576065063477,1.4061012268066406,0.0,0.0,0.0,0.9423408508300781,0.0,0.0,0.0,0.4260441064834595]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64041.pnts"}},{"boundingVolume":{"box":[75.21527099609375,39.639625549316406,1.5028501749038696,1.4141883850097656,0.0,0.0,0.0,1.1290779113769531,0.0,0.0,0.0,0.5756756067276001]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64042.pnts"}},{"boundingVolume":{"box":[75.21533203125,39.62456130981445,2.642711639404297,1.4177513122558594,0.0,0.0,0.0,1.1179542541503906,0.0,0.0,0.0,0.5598193407058716]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64043.pnts"}},{"boundingVolume":{"box":[78.0498046875,37.36857604980469,1.536623239517212,1.4144859313964844,0.0,0.0,0.0,1.1294326782226562,0.0,0.0,0.0,0.5410313606262207]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64044.pnts"}},{"boundingVolume":{"box":[78.05339050292969,37.37873840332031,2.505617380142212,1.4167671203613281,0.0,0.0,0.0,1.0973873138427734,0.0,0.0,0.0,0.4255199432373047]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64045.pnts"}},{"boundingVolume":{"box":[78.0514907836914,39.63880157470703,1.448891043663025,1.3995361328125,0.0,0.0,0.0,1.113607406616211,0.0,0.0,0.0,0.6290570497512817]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64046.pnts"}},{"boundingVolume":{"box":[77.69259643554688,39.637779235839844,2.5774707794189453,1.0553703308105469,0.0,0.0,0.0,1.1308822631835938,0.0,0.0,0.0,0.4980095624923706]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64047.pnts"}}],"content":{"uri":"points/r6404.pnts"}},{"boundingVolume":{"box":[76.63461303710938,43.02120876312256,1.975896030664444,2.8382110595703125,0.0,0.0,0.0,2.2523889541625977,0.0,0.0,0.0,1.268124908208847]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[75.20800018310547,41.90120315551758,1.4061393737792969,1.4111709594726562,0.0,0.0,0.0,1.1323127746582031,0.0,0.0,0.0,0.6704707741737366]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64060.pnts"}},{"boundingVolume":{"box":[75.21857452392578,41.897491455078125,2.649855613708496,1.4135894775390625,0.0,0.0,0.0,1.1104259490966797,0.0,0.0,0.0,0.5690888166427612]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64061.pnts"}},{"boundingVolume":{"box":[75.21542358398438,44.153648376464844,1.3927233219146729,1.4190216064453125,0.0,0.0,0.0,1.1199493408203125,0.0,0.0,0.0,0.6849521994590759]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64062.pnts"}},{"boundingVolume":{"box":[75.06661987304688,44.12234115600586,2.474742889404297,1.2653656005859375,0.0,0.0,0.0,1.0811653137207031,0.0,0.0,0.0,0.3956730365753174]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64063.pnts"}},{"boundingVolume":{"box":[78.05583190917969,41.90180969238281,1.415199637413025,1.416900634765625,0.0,0.0,0.0,1.1314964294433594,0.0,0.0,0.0,0.6629401445388794]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64064.pnts"}},{"boundingVolume":{"box":[78.05229187011719,41.87645721435547,2.6132290363311768,1.3932304382324219,0.0,0.0,0.0,1.1076374053955078,0.0,0.0,0.0,0.5344762802124023]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64065.pnts"}},{"boundingVolume":{"box":[78.05301666259766,43.63644027709961,1.4076166152954102,1.4184112548828125,0.0,0.0,0.0,0.6023178100585938,0.0,0.0,0.0,0.6709368228912354]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64066.pnts"}},{"boundingVolume":{"box":[78.3204116821289,43.50102615356445,2.3472328186035156,1.1262588500976562,0.0,0.0,0.0,0.4194145202636719,0.0,0.0,0.0,0.26850640773773193]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64067.pnts"}}],"content":{"uri":"points/r6406.pnts"}}],"content":{"uri":"points/r640.pnts"}},{"boundingVolume":{"box":[70.93118286132812,46.339256286621094,1.7213143110275269,2.7955589294433594,0.0,0.0,0.0,1.0403480529785156,0.0,0.0,0.0,1.024471402168274]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r642.pnts"}},{"boundingVolume":{"box":[84.89802360534668,39.69674110412598,1.4997580349445343,5.425043106079102,0.0,0.0,0.0,3.4576416015625,0.0,0.0,0.0,0.9910299479961395]},"geometricError":5.813712312898255,"refine":"ADD","children":[{"boundingVolume":{"box":[82.31453895568848,38.504661560058594,1.6086860299110413,2.834962844848633,0.0,0.0,0.0,2.263967514038086,0.0,0.0,0.0,0.8391324877738953]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[80.90092468261719,37.37223815917969,1.4444317817687988,1.4102325439453125,0.0,0.0,0.0,1.131326675415039,0.0,0.0,0.0,0.6117146015167236]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64400.pnts"}},{"boundingVolume":{"box":[80.89344787597656,39.63615417480469,1.4137096405029297,1.4138717651367188,0.0,0.0,0.0,1.1319713592529297,0.0,0.0,0.0,0.5747190117835999]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64402.pnts"}},{"boundingVolume":{"box":[83.72354125976562,37.375244140625,1.3639065027236938,1.4121627807617188,0.0,0.0,0.0,1.1075706481933594,0.0,0.0,0.0,0.5943529605865479]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64404.pnts"}},{"boundingVolume":{"box":[83.7345962524414,39.643150329589844,1.4245069026947021,1.41473388671875,0.0,0.0,0.0,1.125478744506836,0.0,0.0,0.0,0.5672072172164917]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64406.pnts"}}],"content":{"uri":"points/r6440.pnts"}},{"boundingVolume":{"box":[82.30963134765625,41.96159362792969,1.6386255025863647,2.836650848388672,0.0,0.0,0.0,1.192789077758789,0.0,0.0,0.0,0.8521624803543091]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r6442.pnts"}},{"boundingVolume":{"box":[87.73634147644043,38.48886489868164,1.4453065395355225,2.586698532104492,0.0,0.0,0.0,2.249765396118164,0.0,0.0,0.0,0.9365784525871277]},"geometricError":2.9068561564491273,"refine":"ADD","children":[{"boundingVolume":{"box":[86.56089782714844,37.36856460571289,1.3093537092208862,1.4089736938476562,0.0,0.0,0.0,1.1293144226074219,0.0,0.0,0.0,0.706896185874939]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64440.pnts"}},{"boundingVolume":{"box":[86.56218719482422,39.635894775390625,1.4626699686050415,1.4125442504882812,0.0,0.0,0.0,1.1027355194091797,0.0,0.0,0.0,0.5381289720535278]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64442.pnts"}},{"boundingVolume":{"box":[89.15693664550781,37.3759651184082,1.1194241046905518,1.1655197143554688,0.0,0.0,0.0,1.1277732849121094,0.0,0.0,0.0,0.6062091588973999]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64444.pnts"}},{"boundingVolume":{"box":[89.12153625488281,39.25153350830078,1.5180691480636597,1.1335105895996094,0.0,0.0,0.0,0.7476291656494141,0.0,0.0,0.0,0.5590232610702515]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r64446.pnts"}}],"content":{"uri":"points/r6444.pnts"}},{"boundingVolume":{"box":[85.57203674316406,40.908729553222656,1.0051699876785278,0.3921852111816406,0.0,0.0,0.0,0.12539100646972656,0.0,0.0,0.0,0.0610407292842865]},"geometricError":0.0,"refine":"ADD","content":{"uri":"points/r6446.pnts"}}],"content":{"uri":"points/r644.pnts"}}],"content":{"uri":"points/r64.pnts"}}],"content":{"uri":"points/r6.pnts"}}],"content":{"uri":"points/r.pnts"}}],"content":{"uri":"preview.pnts"}},"asset":{"version":"1.0","extras":{"created_date":"2025-11-28T15:12:13.738321","generator":{"name":"py3dtiles","version":"12.0.0"}}},"geometricError":1328.5595363138668}
\ No newline at end of file
diff --git a/apps/story-map/src/App.css b/apps/story-map/src/App.css
new file mode 100644
index 00000000..34523bb1
--- /dev/null
+++ b/apps/story-map/src/App.css
@@ -0,0 +1,5 @@
+html, body, #root {
+ height: 100%;
+ margin: 0;
+ padding: 0;
+}
diff --git a/apps/story-map/src/App.tsx b/apps/story-map/src/App.tsx
new file mode 100644
index 00000000..a59d07b9
--- /dev/null
+++ b/apps/story-map/src/App.tsx
@@ -0,0 +1,370 @@
+import { MapLibreMap, MlGeoJsonLayer, TopToolbar, useMap } from '@mapcomponents/react-maplibre';
+import './App.css';
+import {
+ Button,
+ ButtonGroup,
+ Grid,
+ Step,
+ StepContent,
+ StepLabel,
+ Stepper,
+ Typography,
+} from '@mui/material';
+import PlayArrowIcon from '@mui/icons-material/PlayArrow';
+import PauseIcon from '@mui/icons-material/Pause';
+import { useEffect, useRef, useState } from 'react';
+import './i18n';
+import i18n from './i18n';
+import { useTranslation } from 'react-i18next';
+import MlThreeJsLayer from './components/MlThreeJsLayer';
+import { useStationContext } from './contexts/StationContext';
+import IconAnimationLayer from './components/IconAnimationLayer';
+import GeoJsonStationComponent from './components/GeoJson-StationComponent';
+import { Feature, LineString } from 'geojson';
+import routeData from './assets/route.json';
+import MapMagnifyStationComponent from './components/MapMagnify-StationComponent';
+import CreatePdfFormStationComponent from './components/CreatePdfForm-StationComponent';
+import MlHexagonMap from './components/MlHexagonMap';
+import PointCloudComponent from './components/3DTilesLayer';
+import ControlInformationGUI from './components/ControlInformationGUI';
+import RemoveRedEyeIcon from '@mui/icons-material/RemoveRedEye';
+import { LngLatLike } from 'maplibre-gl';
+import { grey } from '@mui/material/colors';
+
+interface AutoplayOptions {
+ isStarted: boolean;
+ isPaused: boolean;
+}
+type LanguageSelection = 'en' | 'de';
+
+function App() {
+ const [language, setLanguage] = useState('de');
+ const [showControls, setSchowControlls] = useState(false);
+ const [autoplay, setAutoplay] = useState({ isStarted: false, isPaused: false });
+
+ const stepRefs = useRef<(HTMLDivElement | null)[]>([]);
+
+ const { t } = useTranslation();
+ const {
+ stationInformations,
+ selectedStation,
+ selectedStationIndex,
+ selectStationById,
+ nextStation,
+ resetStations
+ } = useStationContext();
+
+ const mapHook = useMap({ mapId: 'map_1' });
+
+ useEffect(() => {
+ mapHook.map?.setProjection({ type: 'globe' });
+ mapHook.map?.setSky({
+ 'sky-color': '#199EF3',
+ 'sky-horizon-blend': 0.5,
+ 'horizon-color': '#ffffff',
+ 'horizon-fog-blend': 0.9,
+ 'fog-color': '#0000ff',
+ 'fog-ground-blend': 0.95,
+ });
+ }, [mapHook.map]);
+
+ useEffect(() => {
+ if (selectedStationIndex) {
+ const ref = stepRefs.current[selectedStationIndex];
+ if (ref) {
+ ref.scrollIntoView({ behavior: 'smooth', block: 'center' });
+ }
+ }
+ }, [selectedStationIndex]);
+
+ const handleChangeLanguage = () => {
+ const newLanguage: LanguageSelection = language === 'de' ? 'en' : 'de';
+ setLanguage(newLanguage);
+ i18n.changeLanguage(newLanguage);
+ };
+
+ return (
+ <>
+ {showControls && }
+
+ {/* TopToolbar */}
+
+
+
+ {selectedStation?.id === 'MlCreatePdfForm-Station' && (
+
+ )}
+
+ >
+ }
+ />
+
+
+ {/* Menu */}
+
+
+ {stationInformations.map((station, index) => (
+
+ {
+ stepRefs.current[index] = el;
+ }}
+ >
+
+ {
+
+ }
+
+
+ {t(station.description)}
+
+
+
+ ))}
+
+
+ {/**/}
+
+ {!autoplay.isStarted ? (
+
+ ) : (
+
+
+
+
+ )}
+
+
+ {/* Map */}
+
+
+
+
+
+
+
+
+
+ {/*Todo: Add button automation for that; IDEA: If button presses move MakerLayer to second map (map_2); will be retested to default if user leaves the station*/}
+
+
+
+
+
+
+
+
+ {/*
*/}
+
+ {(selectedStation ? selectedStation.id === 'useCameraFollowPath-Station' : false) &&
+ routeData && (
+
}
+ type="line"
+ options={{
+ paint: {
+ 'line-color': '#ec9a00',
+ 'line-width': 5,
+ 'line-opacity': 0.8,
+ },
+ }}
+ />
+ )}
+
+
+
+ >
+ );
+}
+
+export default App;
diff --git a/apps/story-map/src/assets/area.json b/apps/story-map/src/assets/area.json
new file mode 100644
index 00000000..8b64784b
--- /dev/null
+++ b/apps/story-map/src/assets/area.json
@@ -0,0 +1,62 @@
+{
+ "type": "FeatureCollection",
+ "name": "fläche",
+ "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+ "features": [
+ {
+ "type": "Feature",
+ "properties": { "id": 1 },
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [7.085157354944774, 50.753072390220943],
+ [7.084697814515203, 50.754045349862551],
+ [7.084102500776895, 50.754768861917093],
+ [7.08432182689101, 50.754886142498115],
+ [7.084431489948065, 50.754942304925812],
+ [7.084642982986676, 50.755023244776574],
+ [7.085546397694809, 50.754296432938581],
+ [7.085760501758586, 50.753951193361786],
+ [7.08594066249518, 50.753561350395678],
+ [7.085919774293836, 50.753508490082488],
+ [7.085426290537082, 50.753369731476369],
+ [7.085280073127671, 50.753285484979102],
+ [7.085162576995111, 50.7531054282315],
+ [7.085157354944774, 50.753078997824922],
+ [7.085157354944774, 50.753078997824922],
+ [7.085157354944774, 50.753072390220943]
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 2 },
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [7.085173021095781, 50.753044307893624],
+ [7.085184770709036, 50.753101298481418],
+ [7.085300961329012, 50.75326979198735],
+ [7.085439345662917, 50.753344953110556],
+ [7.085930218394505, 50.753486189619956],
+ [7.086191320911307, 50.752631330546485],
+ [7.086096018492674, 50.752565253832806],
+ [7.086071213753578, 50.752466964548645],
+ [7.086080352341665, 50.752439707819853],
+ [7.085898886092488, 50.752383542389254],
+ [7.085793139573183, 50.752643719919909],
+ [7.085646922163777, 50.752766787517899],
+ [7.085173021095781, 50.753044307893624]
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/apps/story-map/src/assets/carPaths.json b/apps/story-map/src/assets/carPaths.json
new file mode 100644
index 00000000..7c4c11fe
--- /dev/null
+++ b/apps/story-map/src/assets/carPaths.json
@@ -0,0 +1,519 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": { "id": "path1" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [7.099056699235694, 50.740341413782218],
+ [7.099287223133261, 50.740110083201834],
+ [7.099896464862538, 50.739503616525646],
+ [7.100558397768404, 50.738882553164238],
+ [7.100963461188411, 50.738488653005504],
+ [7.101888849977209, 50.738676224922841],
+ [7.102596887662586, 50.738853375488311],
+ [7.102277447404533, 50.739293122819163],
+ [7.101928368359648, 50.739897508147479],
+ [7.101289487843539, 50.740995802208367],
+ [7.101121534718172, 50.7411291796192],
+ [7.099474935449849, 50.740366422425176],
+ [7.099435417067409, 50.740397683210084],
+ [7.099313568721553, 50.740414355620153],
+ [7.099056699235694, 50.740341413782239],
+ [7.099056699235694, 50.740341413782239],
+ [7.099056699235694, 50.740341413782239],
+ [7.099056699235694, 50.740341413782239],
+ [7.099056699235694, 50.740341413782239],
+ [7.099056699235694, 50.740341413782239]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": "path2" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [7.101631980491347, 50.741042692747683],
+ [7.101712663855494, 50.740939533499244],
+ [7.10180487341452, 50.740850962246029],
+ [7.101897082973546, 50.740795735379834],
+ [7.101972826539888, 50.740756138718695],
+ [7.102232989224285, 50.740688407510142],
+ [7.102458573324042, 50.740665483078928],
+ [7.10283399795722, 50.740645684697476],
+ [7.103141912020397, 50.740639432575271],
+ [7.103242354575764, 50.740646726717756],
+ [7.103299985550155, 50.74069257558736],
+ [7.103304925347961, 50.740771768983656],
+ [7.10329669235162, 50.740896810915672],
+ [7.103263760366253, 50.74096454182277],
+ [7.103217655586739, 50.740998928245801],
+ [7.103153438215275, 50.741018726477918],
+ [7.103048055862102, 50.741024978549461],
+ [7.102605120658924, 50.741040608724717],
+ [7.102101261282819, 50.741081247155925],
+ [7.101931661558179, 50.741100003343064],
+ [7.101887203377936, 50.741102087363394],
+ [7.101791700620374, 50.741078121124012],
+ [7.101938247955253, 50.740970793901568],
+ [7.102167125253549, 50.740948911622134],
+ [7.102547489684533, 50.740919735233653],
+ [7.10286363674405, 50.740903063003515],
+ [7.103298338950887, 50.740895768900941],
+ [7.103262113766984, 50.740962457796321],
+ [7.103217655586739, 50.74100101227063],
+ [7.103160024612348, 50.741016642453864],
+ [7.103066168454053, 50.741022894525699],
+ [7.102595241063315, 50.741039566713205],
+ [7.102073269095255, 50.741083331177094],
+ [7.101939894554524, 50.741100003343064],
+ [7.101887203377936, 50.741102087363394],
+ [7.101796640418179, 50.741077079113325],
+ [7.101633627090616, 50.741040608724717],
+ [7.101633627090616, 50.741040608724717]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": "path3" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [7.098060506678357, 50.738438633700682],
+ [7.096953991970045, 50.73866372015177],
+ [7.097057727723952, 50.738905999497817],
+ [7.097403513570297, 50.739595315912261],
+ [7.097648856861276, 50.740118419458838],
+ [7.097783878001279, 50.740258051542646],
+ [7.097853035170548, 50.740283060230098],
+ [7.098379946936411, 50.740314321070642],
+ [7.098729025981296, 50.74017885727757],
+ [7.098715853187149, 50.740139260094807],
+ [7.098732319179833, 50.740070485960963],
+ [7.098837701533006, 50.739982955099073],
+ [7.098063799876893, 50.738436549561811],
+ [7.098063799876893, 50.738436549561811]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": "path4" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [7.106233402146473, 50.740404977390206],
+ [7.104698771628432, 50.740200739916808],
+ [7.103631775302581, 50.740084032389227],
+ [7.103210245889902, 50.740046519193591],
+ [7.101853448092835, 50.73989646611053],
+ [7.100852315737717, 50.739713067244963],
+ [7.099844596985526, 50.739483817652989],
+ [7.099423067572843, 50.73934209916208],
+ [7.098909328601138, 50.739037819776783],
+ [7.098728202681627, 50.738785641527748],
+ [7.09855366315919, 50.738222924836577],
+ [7.09837912363675, 50.73754140334627],
+ [7.098142013342113, 50.737524729913332],
+ [7.097529478414311, 50.737420520823115],
+ [7.09644601609578, 50.737126649939789],
+ [7.09516825506359, 50.73672231393742],
+ [7.093748886494326, 50.736167909414362],
+ [7.093301011493352, 50.735988664442878]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": "path5" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [7.093147775042023, 50.742681240029171],
+ [7.092338513722154, 50.741852706722248],
+ [7.091815454576386, 50.741367654038157],
+ [7.091476617519692, 50.741028322349464],
+ [7.091141070143164, 50.740699397261288],
+ [7.090608141956907, 50.740984604591127],
+ [7.090249566819243, 50.741138657462805],
+ [7.089782432236229, 50.741303118752981],
+ [7.090558796754475, 50.742179541963566],
+ [7.090828550527765, 50.74248139414096],
+ [7.092338513722154, 50.741856870242863],
+ [7.093141195681698, 50.74267083141023]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": "path6" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [7.094452133226283, 50.741625794289483],
+ [7.094823867084597, 50.741854788482598],
+ [7.094971902691888, 50.741815235020155],
+ [7.095169283501614, 50.742131661784214],
+ [7.095916040898402, 50.741933895307241],
+ [7.096064076505696, 50.742142070523002],
+ [7.096060786825532, 50.742316936989035],
+ [7.096060786825532, 50.742144152270484],
+ [7.095922620258726, 50.741933895307241],
+ [7.09534034687004, 50.74208794505595],
+ [7.095366664311337, 50.742321100468359],
+ [7.095189021582584, 50.743382775613583],
+ [7.093823804315329, 50.743332814970003],
+ [7.093728403590628, 50.743353631911305],
+ [7.093656030627063, 50.74340567422405],
+ [7.0936527409469, 50.743237056920862],
+ [7.093633002865928, 50.743093419479933],
+ [7.093550760861875, 50.742895657064942],
+ [7.093373118133125, 50.742614624827887],
+ [7.095169283501614, 50.742131661784214],
+ [7.094971902691888, 50.741817316782182],
+ [7.094820577404433, 50.74185062496182],
+ [7.094452133226282, 50.741625794289483]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": "path7" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [7.0961331597891, 50.741883933117748],
+ [7.096896365586699, 50.742077536305096],
+ [7.097070718635289, 50.742081699805709],
+ [7.09762996426284, 50.742133743532143],
+ [7.098784641999724, 50.742277383916957],
+ [7.100649890651616, 50.742483475873335],
+ [7.1007551604168, 50.742183705455076],
+ [7.100834112740692, 50.741975530424426],
+ [7.100992017388471, 50.741380144728218],
+ [7.10114992203625, 50.741122003122712],
+ [7.099682724683967, 50.740464151952025],
+ [7.099663809023036, 50.740470397417972],
+ [7.099543735697122, 50.740600511102684],
+ [7.099451624652582, 50.740675456420981],
+ [7.099387475889422, 50.740726460805114],
+ [7.099297009684966, 50.740781628749907],
+ [7.099242729962293, 50.740834714824103],
+ [7.099167067318564, 50.740940886791954],
+ [7.098864416743655, 50.741254196783942],
+ [7.098798623140413, 50.741313527675935],
+ [7.098721315656604, 50.741392635414968],
+ [7.098341357597886, 50.741243787847786],
+ [7.098208125551321, 50.741203192970062],
+ [7.097987716980456, 50.741307282322403],
+ [7.097912054336729, 50.741346836213893],
+ [7.097451499114043, 50.741492560789069],
+ [7.09614220640954, 50.741886014876712]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": "path8" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [7.10386966511023, 50.737158101722706],
+ [7.10347490349078, 50.736951986328634],
+ [7.103126197393602, 50.73683331341752],
+ [7.102879471381448, 50.736779181814342],
+ [7.102451812960379, 50.736747952014809],
+ [7.101089885373284, 50.736648016516405],
+ [7.101076726652634, 50.737343396605738],
+ [7.101119492494742, 50.737355888369216],
+ [7.10111620281458, 50.737480805820866],
+ [7.100823421280157, 50.737451658445288],
+ [7.100408921579736, 50.737430838880194],
+ [7.099964814757857, 50.737447494533001],
+ [7.098892379025021, 50.737522444897365],
+ [7.098750922778053, 50.737530772708219],
+ [7.098369319879253, 50.737539100517608],
+ [7.098102855786125, 50.737518280991381],
+ [7.097527161757765, 50.737420429094165],
+ [7.096454726024931, 50.73712687217585],
+ [7.096421829223313, 50.737041511308199],
+ [7.09643498794396, 50.736966560174174],
+ [7.096454726024932, 50.736920756644331],
+ [7.09645143634477, 50.73686037919564],
+ [7.096500781547202, 50.736806247623747],
+ [7.096504071227363, 50.736739624064754],
+ [7.096474464105905, 50.736398176837412],
+ [7.096438277624123, 50.73631489664826],
+ [7.096300111057316, 50.736225370279747],
+ [7.095790210632194, 50.735954708124893],
+ [7.095698099587657, 50.735890165380084],
+ [7.095652044065388, 50.735831868630896],
+ [7.095648754385225, 50.73576524368584],
+ [7.095961274000623, 50.735415461169367],
+ [7.096086281846781, 50.735209338106067],
+ [7.096208000012779, 50.734922013534614],
+ [7.096224448413587, 50.734872043863994],
+ [7.096201420652453, 50.734366097946562],
+ [7.095954694640299, 50.73393718478146],
+ [7.095839555834626, 50.73376228702373],
+ [7.095704678947982, 50.733491610635028],
+ [7.095724417028954, 50.733447885840867],
+ [7.095793500312357, 50.73343122876571]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": "path9" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [7.091905098360794, 50.736337798715027],
+ [7.09091161495185, 50.736516850851096],
+ [7.090576067575318, 50.736554326792948],
+ [7.089773385615773, 50.736700066281749],
+ [7.089457576320214, 50.736725050148571],
+ [7.089115449583361, 50.736745870027427],
+ [7.088154862976036, 50.736949904350318],
+ [7.086858728992183, 50.737228888618482],
+ [7.086760038587322, 50.737316331106733],
+ [7.086638320421327, 50.737472478001109],
+ [7.087296256453737, 50.73884654822313],
+ [7.087579168947677, 50.739446129867481],
+ [7.08766470063189, 50.739720935555631],
+ [7.087809446559022, 50.739895811063015],
+ [7.088276581142034, 50.740957541196408],
+ [7.090539881093536, 50.740208087130519],
+ [7.090678047660341, 50.740178941452321],
+ [7.090868849109743, 50.740158123099647],
+ [7.092441316227211, 50.739521077033267],
+ [7.093566386842637, 50.739225451405026],
+ [7.094329592640237, 50.739038082082857],
+ [7.094684878097739, 50.73891316878494],
+ [7.09559282982247, 50.738467641975596],
+ [7.095645464705063, 50.738459314331337],
+ [7.095711258308304, 50.738376037807242],
+ [7.095763893190897, 50.737751459156364],
+ [7.095786920952031, 50.737582821492531],
+ [7.095823107433815, 50.737391281681006],
+ [7.095786920952031, 50.737345478566539],
+ [7.09570796862814, 50.737332986800268],
+ [7.095645464705063, 50.737343396605723],
+ [7.094418414004612, 50.738097060372546],
+ [7.093901934219166, 50.7377785244039],
+ [7.092875554008604, 50.737237216481539],
+ [7.092572903433693, 50.737087314719929],
+ [7.09231630838105, 50.736824985482606],
+ [7.091888649959983, 50.736341962725966]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": "path10" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [7.098596307810434, 50.731923738936757],
+ [7.098540383247679, 50.731971629553144],
+ [7.098237732672767, 50.732086150393819],
+ [7.097737701288134, 50.732233985974105],
+ [7.097102793016854, 50.73244636866724],
+ [7.096507360907521, 50.732602531797845],
+ [7.095527036219225, 50.732891952756638],
+ [7.095204647563343, 50.732983567651559],
+ [7.09492831442973, 50.733123071806467],
+ [7.09459605673336, 50.733237589832065],
+ [7.093994045263702, 50.733437475169538],
+ [7.09340190283453, 50.733618620519827],
+ [7.093145307781889, 50.733651934530982],
+ [7.092704490640171, 50.733676920023797],
+ [7.09252684791142, 50.733693577011593],
+ [7.092319598061211, 50.733733137333886],
+ [7.091816276996414, 50.73387680348646],
+ [7.090862269749414, 50.734197448092864],
+ [7.090622123097583, 50.734326538158804],
+ [7.090526722372885, 50.734422314429438],
+ [7.09044119068867, 50.734540993449627],
+ [7.090474087490292, 50.734607620136174],
+ [7.0904905358911, 50.734657590088887],
+ [7.090401714526725, 50.734724216609585],
+ [7.090316182842512, 50.734734626994886],
+ [7.090224071797974, 50.734724216609585],
+ [7.090158278194732, 50.734690903361077],
+ [7.09012209171295, 50.734638851362867],
+ [7.090128671073273, 50.734578470972465],
+ [7.090181305955866, 50.734534747192903],
+ [7.090283286040892, 50.734499351722398],
+ [7.090388555806078, 50.734511844244452],
+ [7.090464218449804, 50.734543075535008],
+ [7.090487246210939, 50.734593045556593],
+ [7.090483956530778, 50.734657590088887],
+ [7.090470797810128, 50.734699231675421],
+ [7.090530012053047, 50.734780432662689],
+ [7.090635281818233, 50.73486371558031],
+ [7.090780027745363, 50.734955326618675],
+ [7.090960960154276, 50.735024034779855],
+ [7.09174719371301, 50.735280127947199],
+ [7.091990630045001, 50.735365492025117],
+ [7.09287884368876, 50.734276567852895],
+ [7.092924899211029, 50.734222433294669],
+ [7.093063065777836, 50.734143313443177],
+ [7.094036811105807, 50.733726890969422],
+ [7.093987465903377, 50.733437475169524],
+ [7.094648691615952, 50.733218850537938],
+ [7.094786858182759, 50.733239671975397],
+ [7.094921735069403, 50.733312546933576],
+ [7.094934893790052, 50.733364600405729],
+ [7.095494139417603, 50.733329204050946],
+ [7.09553690525971, 50.733414571684555]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": "path11" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [7.109787799721779, 50.730035143854444],
+ [7.108669308466675, 50.729726964553379],
+ [7.107932420110373, 50.730868050740128],
+ [7.107327118960554, 50.731784231209957],
+ [7.106537595721658, 50.731542694461766],
+ [7.106346794272257, 50.73146773452806],
+ [7.106090199219616, 50.731413596723563],
+ [7.105708596320817, 50.731317814300795],
+ [7.104800644596088, 50.73099714998181],
+ [7.103149225154729, 50.731842532997057],
+ [7.101905726053467, 50.732458861736824],
+ [7.10151096443402, 50.732138205228821],
+ [7.100964877527116, 50.731705107239947],
+ [7.10074775863642, 50.73180297107799],
+ [7.100642488871235, 50.731871683863389],
+ [7.100487873903616, 50.731913327926691],
+ [7.099484521454187, 50.732169438102048],
+ [7.099787172029097, 50.732662914735414],
+ [7.09990560051493, 50.732864884685206],
+ [7.099968104438012, 50.732914856497153],
+ [7.100066794842873, 50.733085593119071],
+ [7.100293782774054, 50.733191782655396],
+ [7.100596433348966, 50.73328339696387],
+ [7.100823421280147, 50.733375011093166],
+ [7.101093175053438, 50.733549910296979],
+ [7.101392535948184, 50.733778943981079],
+ [7.1017642698065, 50.734057947137728],
+ [7.10221166630854, 50.734422314429402],
+ [7.102323515434051, 50.7345160084177],
+ [7.102458392320695, 50.734595127639629],
+ [7.102836705539333, 50.734770022287542],
+ [7.10299132050695, 50.734817909993929],
+ [7.103351540484693, 50.734985516580657],
+ [7.103509445132473, 50.735060470884996],
+ [7.103914075792408, 50.735304071545691],
+ [7.104131194683103, 50.735408174005727],
+ [7.104391079415908, 50.735524768486272],
+ [7.104631226067738, 50.735599721927635],
+ [7.105045725768159, 50.735724644063382],
+ [7.105285872419988, 50.735289497182812],
+ [7.105348376343069, 50.735037568193611],
+ [7.105394431865338, 50.734785637849342],
+ [7.105420749306634, 50.734623235752082],
+ [7.105535888112306, 50.734412945020246],
+ [7.105687213399762, 50.734206817545044],
+ [7.105808931565758, 50.734083973466824],
+ [7.105963546533374, 50.733852859158262],
+ [7.106095133739857, 50.733655057718259],
+ [7.106216851905854, 50.733459337576512],
+ [7.106325411351202, 50.733261534474686],
+ [7.106407653355253, 50.733147016507644],
+ [7.107105065549612, 50.733334409398871],
+ [7.107197176594151, 50.733365641474514],
+ [7.107335343160956, 50.733496815964834],
+ [7.107443902606305, 50.733538458583361],
+ [7.107631414375544, 50.733588429676715],
+ [7.107733394460569, 50.733592593932094]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": "path12" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [7.124514052967252, 50.713722801706282],
+ [7.124221271432829, 50.713849865187953],
+ [7.124007442222295, 50.713985260322133],
+ [7.123359375230368, 50.714533085872446],
+ [7.122244173655425, 50.715457917519863],
+ [7.118053121128953, 50.718890466411146],
+ [7.11777678799534, 50.718986274242141],
+ [7.117355708934594, 50.719069585240305],
+ [7.115651654610645, 50.719327848393434],
+ [7.10993419048897, 50.720381713925846],
+ [7.109776285841193, 50.720319232440559],
+ [7.109690754156978, 50.72021509644663],
+ [7.109690754156978, 50.720090132948442],
+ [7.10993419048897, 50.719615268616302],
+ [7.110111833217721, 50.71927369655991],
+ [7.110167757780479, 50.71911540622618],
+ [7.110144730019345, 50.71901751588382],
+ [7.111049392063913, 50.719092495738842],
+ [7.111223745112504, 50.718430169535687],
+ [7.111352042638823, 50.718009441740115],
+ [7.111477050484981, 50.717686603494357],
+ [7.111641534493086, 50.717334603130858],
+ [7.111727066177298, 50.717163809102495],
+ [7.112161303958691, 50.716726406923485],
+ [7.113848909881831, 50.71501216760749],
+ [7.114424603910193, 50.715326692518673],
+ [7.114674619602509, 50.715437088179129],
+ [7.115072670902119, 50.715568312871255],
+ [7.115312817553949, 50.715630800690747],
+ [7.115497039643026, 50.715695371350037],
+ [7.115697710132912, 50.715759941920361],
+ [7.116085892392035, 50.715870336560378],
+ [7.116562896015535, 50.716016140403404],
+ [7.116724090343478, 50.716061964374674],
+ [7.116783304586393, 50.716061964374674],
+ [7.116839229149148, 50.716036969486794],
+ [7.11697081635563, 50.715905746106799],
+ [7.117250439169407, 50.71566204456925],
+ [7.117609014307072, 50.715291282534771],
+ [7.118158390894137, 50.714743465846077],
+ [7.118250501938675, 50.714664313095504],
+ [7.118944624452871, 50.714962176698748],
+ [7.119671643768687, 50.715295448416619],
+ [7.12010588155008, 50.715534986000115],
+ [7.120454587647261, 50.715720366420072],
+ [7.120813162784927, 50.715959901831958],
+ [7.121303325129074, 50.716259840099823],
+ [7.122369181501585, 50.716699329511577],
+ [7.123517279878145, 50.717155477670559],
+ [7.124336410238501, 50.717482485262394],
+ [7.124721302817461, 50.717665775144056],
+ [7.125188437400475, 50.717938625799178],
+ [7.125303576206147, 50.717986530712096],
+ [7.125379238849876, 50.71799486199631],
+ [7.12549766733571, 50.717928211681205],
+ [7.128925514064582, 50.715632883616621],
+ [7.129109736153656, 50.715412092958012],
+ [7.129228164639492, 50.71511631516281],
+ [7.129320275684028, 50.714970508520587],
+ [7.12943212480954, 50.714845531037653],
+ [7.127902423534178, 50.714453932766588],
+ [7.127208301019984, 50.714347700756555],
+ [7.125145671558367, 50.713860280212138],
+ [7.124796965461187, 50.713758212875113],
+ [7.124596294971303, 50.713726967727517],
+ [7.124510763287088, 50.713720718695491]
+ ]
+ }
+ }
+ ]
+}
diff --git a/apps/story-map/src/assets/lines.json b/apps/story-map/src/assets/lines.json
new file mode 100644
index 00000000..7d75d8a9
--- /dev/null
+++ b/apps/story-map/src/assets/lines.json
@@ -0,0 +1,154 @@
+{
+ "type": "FeatureCollection",
+ "name": "lines",
+ "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+ "features": [
+ {
+ "type": "Feature",
+ "properties": { "id": 1 },
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [7.081316536922614, 50.752708970565848],
+ [7.081124626572764, 50.75285929449263],
+ [7.081119404522428, 50.752879117392006],
+ [7.081129848623099, 50.752899766236574],
+ [7.081216012453645, 50.752955931047772],
+ [7.0812277620669, 50.752972450097054],
+ [7.081290426670932, 50.752984839380197],
+ [7.081466670869773, 50.753084779477611],
+ [7.081635081993112, 50.753232624354361],
+ [7.081795660040943, 50.753364775804251],
+ [7.081956238088778, 50.753496100937944],
+ [7.082118121649195, 50.753617514413001],
+ [7.082290449310283, 50.753739753511908],
+ [7.082253894957932, 50.753829780752241],
+ [7.082231701244003, 50.753847951366915]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 2 },
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [7.082296976873204, 50.753737275695507],
+ [7.082653381808639, 50.753453151878155],
+ [7.082460165946205, 50.753338345544115],
+ [7.082123343699529, 50.753611732826101]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 3 },
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [7.082453638383285, 50.753335867706461],
+ [7.082283921747364, 50.753234276249771],
+ [7.081965376676866, 50.753491971222367]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 4 },
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [7.08227608867186, 50.753231798406617],
+ [7.082098538960434, 50.753123599127335],
+ [7.081800882091279, 50.753362297967975]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 5 },
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [7.082094622422683, 50.753121121278298],
+ [7.081900101047665, 50.753012095791561],
+ [7.081640304043447, 50.753227668667719]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 6 },
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [7.081897490022497, 50.753008791984961],
+ [7.081699052109728, 50.752903896004398],
+ [7.081475809457863, 50.753082301626534]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 7 },
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [7.081697746597144, 50.752902244097335],
+ [7.081516280347966, 50.752807259341843],
+ [7.081298259746436, 50.752977405810711],
+ [7.081516280347966, 50.752806433386603],
+ [7.081325675510701, 50.752713100350505]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 7 },
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [7.081614193791764, 50.753147551661087],
+ [7.081888351434406, 50.752931152462892],
+ [7.082901429199598, 50.753401943332271],
+ [7.082794377167709, 50.753496100937923],
+ [7.082890985098925, 50.753540701842908],
+ [7.083679514699668, 50.752841949448779],
+ [7.084026781047013, 50.75252312987913]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 8 },
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [7.082084178322009, 50.753015399597906],
+ [7.083128588389214, 50.752080413093026],
+ [7.083008481231487, 50.752197700410484],
+ [7.083859675436259, 50.752579295142233],
+ [7.082945816627452, 50.753392031994338]
+ ]
+ ]
+ }
+ }
+ ]
+}
diff --git a/apps/story-map/src/assets/points.json b/apps/story-map/src/assets/points.json
new file mode 100644
index 00000000..4d92fed1
--- /dev/null
+++ b/apps/story-map/src/assets/points.json
@@ -0,0 +1,62 @@
+{
+ "type": "FeatureCollection",
+ "name": "points",
+ "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+ "features": [
+ {
+ "type": "Feature",
+ "properties": { "id": 1 },
+ "geometry": { "type": "MultiPoint", "coordinates": [[7.087645661929889, 50.753334215814604]] }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 2 },
+ "geometry": { "type": "MultiPoint", "coordinates": [[7.086977239486877, 50.753162418744836]] }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 3 },
+ "geometry": { "type": "MultiPoint", "coordinates": [[7.087392392488592, 50.753624947880816]] }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 4 },
+ "geometry": { "type": "MultiPoint", "coordinates": [[7.087251397129518, 50.754064346326537]] }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 5 },
+ "geometry": { "type": "MultiPoint", "coordinates": [[7.086290539867688, 50.753836388249283]] }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 6 },
+ "geometry": { "type": "MultiPoint", "coordinates": [[7.086878020530492, 50.75432699229993]] }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 7 },
+ "geometry": { "type": "MultiPoint", "coordinates": [[7.08657775263617, 50.754411236922614]] }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 8 },
+ "geometry": { "type": "MultiPoint", "coordinates": [[7.086178265785463, 50.754292303293582]] }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 9 },
+ "geometry": { "type": "MultiPoint", "coordinates": [[7.08564300562602, 50.754566510927901]] }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 10 },
+ "geometry": { "type": "MultiPoint", "coordinates": [[7.086233097313992, 50.754801072810125]] }
+ },
+ {
+ "type": "Feature",
+ "properties": { "id": 11 },
+ "geometry": { "type": "MultiPoint", "coordinates": [[7.085499399241779, 50.755180994491617]] }
+ }
+ ]
+}
diff --git a/apps/story-map/src/assets/preview.css b/apps/story-map/src/assets/preview.css
new file mode 100644
index 00000000..7f4449c1
--- /dev/null
+++ b/apps/story-map/src/assets/preview.css
@@ -0,0 +1,115 @@
+.root {
+ position: relative;
+}
+.mapContainer {
+ position: relative;
+}
+.will-change-container {
+ padding-left: 100px;
+ padding-top: 100px;
+ will-change: transform;
+}
+.will-change-target {
+ position: relative;
+ width: 100px;
+ height: 100px;
+ line-height: 100px;
+ text-align: center;
+ background: #ee8;
+ color: #333;
+ font-weight: bold;
+ border: 1px solid #333;
+ box-sizing: border-box;
+}
+.moveable-control-box {
+ z-index: 255;
+ cursor: pointer;
+}
+.moveable-rotation .moveable-rotation-control {
+ cursor: pointer !important;
+}
+.target {
+ position: fixed;
+ top: 0;
+ left: 0;
+ line-height: 100px;
+ text-align: center;
+ background: rgba(120, 210, 210, 0.1);
+ border: 3px solid #3a3;
+ box-sizing: border-box;
+ z-index: 250;
+ cursor: pointer;
+}
+
+.nested {
+ position: absolute;
+ border: 4px solid #ccc;
+ width: 100px;
+ height: 100px;
+ top: 50px;
+ left: 70px;
+ color: #333;
+ /* box-sizing: border-box; */
+}
+
+.nested.first {
+ top: 150px;
+}
+
+.nested.rotate {
+ transform-origin: 0 0;
+ transform: rotate(-30deg);
+}
+
+.nested.scale {
+ transform: scale(1.5, 1.5);
+}
+
+.nested .target {
+ top: 50px;
+ left: 50px;
+}
+
+/* pos guidelines */
+.moveable-normal.red {
+ background: red !important;
+}
+/* gap guidelines */
+.moveable-gap.red {
+ background: red !important;
+}
+/* When snapped to an element in elementGuidelines */
+.moveable-bold.red {
+ background: red !important;
+}
+/* A dashed line between target and element */
+.moveable-dashed.red {
+ border-top-color: red !important;
+ border-left-color: red !important;
+}
+
+/* pos guidelines */
+.moveable-normal.green {
+ background: green !important;
+}
+/* gap guidelines */
+.moveable-gap.green {
+ background: green !important;
+}
+/* When snapped to an element in elementGuidelines */
+.moveable-bold.green {
+ background: green !important;
+}
+/* A dashed line between target and element */
+.moveable-dashed.green {
+ border-top-color: green !important;
+ border-left-color: green !important;
+}
+.MuiDialog-root {
+ pointer-events: none;
+}
+.MuiDialog-root .react-draggable,
+.MuiDialog-root .MuiBackdrop-root,
+.MuiDialog-root .MuiDialog-container {
+ pointer-events: all;
+}
diff --git a/apps/story-map/src/assets/route.json b/apps/story-map/src/assets/route.json
new file mode 100644
index 00000000..30be3309
--- /dev/null
+++ b/apps/story-map/src/assets/route.json
@@ -0,0 +1,1309 @@
+{
+ "type": "Feature",
+ "properties": { "begin": "-23", "end": "-11" },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 7.085638047138517,
+ 50.76945740939362
+ ],
+ [
+ 7.092614706387437,
+ 50.76729082257119
+ ],
+ [
+ 7.098185442221093,
+ 50.7646377315985
+ ],
+ [
+ 7.099880221741497,
+ 50.76343693009306
+ ],
+ [
+ 7.100487989646847,
+ 50.76291608979361
+ ],
+ [
+ 7.100782070891372,
+ 50.76234563900397
+ ],
+ [
+ 7.101036941303292,
+ 50.76170077321519
+ ],
+ [
+ 7.101154573801102,
+ 50.760708654648056
+ ],
+ [
+ 7.10101733588699,
+ 50.75970411316795
+ ],
+ [
+ 7.100684043809864,
+ 50.75877396294056
+ ],
+ [
+ 7.100081177258587,
+ 50.75691360702198
+ ],
+ [
+ 7.097708921886099,
+ 50.75564852275567
+ ],
+ [
+ 7.096111080457523,
+ 50.75486713009624
+ ],
+ [
+ 7.094797517565319,
+ 50.754389605937874
+ ],
+ [
+ 7.090680380141994,
+ 50.753484157144065
+ ],
+ [
+ 7.088847273717798,
+ 50.752969407897325
+ ],
+ [
+ 7.087355551216711,
+ 50.75253402948829
+ ],
+ [
+ 7.083465586943021,
+ 50.75122666059175
+ ],
+ [
+ 7.081210964068344,
+ 50.75009787148728
+ ],
+ [
+ 7.080701223244502,
+ 50.74976295080262
+ ],
+ [
+ 7.080328720334773,
+ 50.749341195420776
+ ],
+ [
+ 7.080309114918471,
+ 50.74905588815493
+ ],
+ [
+ 7.08042674741628,
+ 50.74880779346688
+ ],
+ [
+ 7.080622801579296,
+ 50.74854729262939
+ ],
+ [
+ 7.081701099475881,
+ 50.74795185670046
+ ],
+ [
+ 7.08281860820507,
+ 50.747257171878324
+ ],
+ [
+ 7.085955474813319,
+ 50.745321924091115
+ ],
+ [
+ 7.08773956769676,
+ 50.74432945829873
+ ],
+ [
+ 7.089958056461611,
+ 50.74361199615757
+ ],
+ [
+ 7.094670082359358,
+ 50.742239008404724
+ ],
+ [
+ 7.097919680111342,
+ 50.74134883301148
+ ],
+ [
+ 7.098125536982507,
+ 50.74126818910854
+ ],
+ [
+ 7.09829218302107,
+ 50.741137917895024
+ ],
+ [
+ 7.098463730413709,
+ 50.740970425800825
+ ],
+ [
+ 7.098821529261211,
+ 50.740592015535185
+ ],
+ [
+ 7.098978372591624,
+ 50.74043382673031
+ ],
+ [
+ 7.099002879362001,
+ 50.740306654950686
+ ],
+ [
+ 7.098939161759019,
+ 50.74014846518186
+ ],
+ [
+ 7.098831331969361,
+ 50.73998407132648
+ ],
+ [
+ 7.098748008950079,
+ 50.739785557222454
+ ],
+ [
+ 7.098404914164803,
+ 50.73910936224057
+ ],
+ [
+ 7.098174550523259,
+ 50.73866579784398
+ ],
+ [
+ 7.097963792298017,
+ 50.73824084060041
+ ],
+ [
+ 7.097934384173564,
+ 50.73814778375505
+ ],
+ [
+ 7.097914778757263,
+ 50.7380113000258
+ ],
+ [
+ 7.097904976049112,
+ 50.73769180253995
+ ],
+ [
+ 7.09788537063281,
+ 50.73754601169099
+ ],
+ [
+ 7.097826554383905,
+ 50.73744674957668
+ ],
+ [
+ 7.097708921886095,
+ 50.73737230285453
+ ],
+ [
+ 7.097248194603009,
+ 50.73725132667432
+ ],
+ [
+ 7.09630223326646,
+ 50.73695974178017
+ ],
+ [
+ 7.095052387977235,
+ 50.73654407506915
+ ],
+ [
+ 7.093508461443488,
+ 50.73596709874404
+ ],
+ [
+ 7.092292925632791,
+ 50.7354800755613
+ ],
+ [
+ 7.091170515549527,
+ 50.73509851919597
+ ],
+ [
+ 7.089989289217359,
+ 50.73461769087858
+ ],
+ [
+ 7.088616910076251,
+ 50.73432608958791
+ ],
+ [
+ 7.087918467120508,
+ 50.734093427681564
+ ],
+ [
+ 7.087224925518841,
+ 50.7338654178921
+ ],
+ [
+ 7.087046026095088,
+ 50.73384680479906
+ ],
+ [
+ 7.086911238858016,
+ 50.733831293882545
+ ],
+ [
+ 7.086653917769057,
+ 50.7338545602554
+ ],
+ [
+ 7.08649217308457,
+ 50.7338638668013
+ ],
+ [
+ 7.086401498034174,
+ 50.7338561113465
+ ],
+ [
+ 7.086183387777821,
+ 50.73380647640545
+ ],
+ [
+ 7.085957925490352,
+ 50.73375218812841
+ ],
+ [
+ 7.085845194346619,
+ 50.733714961844946
+ ],
+ [
+ 7.084617405150735,
+ 50.73308055938263
+ ],
+ [
+ 7.084443407081059,
+ 50.73301231019507
+ ],
+ [
+ 7.084244902241005,
+ 50.73297198108296
+ ],
+ [
+ 7.084070904171329,
+ 50.7329099362273
+ ],
+ [
+ 7.083325898351869,
+ 50.73265244919802
+ ],
+ [
+ 7.082718130446521,
+ 50.73248958016559
+ ],
+ [
+ 7.08258089253241,
+ 50.73244769946572
+ ],
+ [
+ 7.082419147847924,
+ 50.73240116531084
+ ],
+ [
+ 7.082277008579737,
+ 50.73234842654609
+ ],
+ [
+ 7.0821250666034,
+ 50.73228017629179
+ ],
+ [
+ 7.082000082074477,
+ 50.732218130519776
+ ],
+ [
+ 7.0816569872892,
+ 50.73198856044872
+ ],
+ [
+ 7.081318793858001,
+ 50.73175433577073
+ ],
+ [
+ 7.080652209703747,
+ 50.731298292309184
+ ],
+ [
+ 7.080201285128812,
+ 50.73097719782074
+ ],
+ [
+ 7.080066497891739,
+ 50.73087637059494
+ ],
+ [
+ 7.079914555915402,
+ 50.73079105508052
+ ],
+ [
+ 7.079605770608653,
+ 50.73056768281592
+ ],
+ [
+ 7.078047140012679,
+ 50.72969279785738
+ ],
+ [
+ 7.077939310223021,
+ 50.729543879641426
+ ],
+ [
+ 7.077900099390418,
+ 50.72942598571806
+ ],
+ [
+ 7.077958915639322,
+ 50.72928947659405
+ ],
+ [
+ 7.078056942720831,
+ 50.729196401963236
+ ],
+ [
+ 7.078143941755677,
+ 50.72913202523541
+ ],
+ [
+ 7.078249320868296,
+ 50.72903895029179
+ ],
+ [
+ 7.07861937310098,
+ 50.72886986367111
+ ],
+ [
+ 7.080256425362124,
+ 50.72815317782466
+ ],
+ [
+ 7.080775968894104,
+ 50.72789256207127
+ ],
+ [
+ 7.081422947632041,
+ 50.72763194486813
+ ],
+ [
+ 7.081844464082515,
+ 50.72732168440265
+ ],
+ [
+ 7.082364007614495,
+ 50.72671356793015
+ ],
+ [
+ 7.08278552406497,
+ 50.726173702815025
+ ],
+ [
+ 7.083216843223594,
+ 50.72545387298479
+ ],
+ [
+ 7.083579543425164,
+ 50.725025693098736
+ ],
+ [
+ 7.083912835502284,
+ 50.724771265516004
+ ],
+ [
+ 7.084255930287553,
+ 50.72459750929971
+ ],
+ [
+ 7.084648038613575,
+ 50.72442375243907
+ ],
+ [
+ 7.086559566702935,
+ 50.723828009739265
+ ],
+ [
+ 7.088353462294487,
+ 50.723275699845146
+ ],
+ [
+ 7.089333733109543,
+ 50.72297782214369
+ ],
+ [
+ 7.090088541637136,
+ 50.72281026510445
+ ],
+ [
+ 7.090764928499524,
+ 50.72277923595736
+ ],
+ [
+ 7.091343288280407,
+ 50.72283508840733
+ ],
+ [
+ 7.091882437228688,
+ 50.72292196986385
+ ],
+ [
+ 7.092431388885119,
+ 50.72302746855876
+ ],
+ [
+ 7.092892116168196,
+ 50.72310193808275
+ ],
+ [
+ 7.093225408245315,
+ 50.723132967016156
+ ],
+ [
+ 7.093490081365379,
+ 50.72311434965858
+ ],
+ [
+ 7.093960611356604,
+ 50.72303677725573
+ ],
+ [
+ 7.094764433424951,
+ 50.72290645532985
+ ],
+ [
+ 7.098607095019968,
+ 50.72228586975795
+ ],
+ [
+ 7.100763690813091,
+ 50.721888690678625
+ ],
+ [
+ 7.102175280786772,
+ 50.72157839218048
+ ],
+ [
+ 7.104390692828798,
+ 50.72113155873337
+ ],
+ [
+ 7.10652768320562,
+ 50.72090193433235
+ ],
+ [
+ 7.112115226851437,
+ 50.71991515720749
+ ],
+ [
+ 7.115065842004755,
+ 50.71940003888159
+ ],
+ [
+ 7.116399010313231,
+ 50.71922005644497
+ ],
+ [
+ 7.117405153027723,
+ 50.719066572026435
+ ],
+ [
+ 7.117629250186125,
+ 50.71901835116875
+ ],
+ [
+ 7.117830205703211,
+ 50.71895008149399
+ ],
+ [
+ 7.117957640909169,
+ 50.71887870854588
+ ],
+ [
+ 7.118045865282523,
+ 50.71880112913115
+ ],
+ [
+ 7.124241176833678,
+ 50.713668189734896
+ ],
+ [
+ 7.128064233012397,
+ 50.70985691343371
+ ],
+ [
+ 7.13059333171524,
+ 50.7073831423881
+ ],
+ [
+ 7.131279521285779,
+ 50.70675924727255
+ ],
+ [
+ 7.131495180865091,
+ 50.706638192034674
+ ],
+ [
+ 7.13172554450663,
+ 50.706557488369114
+ ],
+ [
+ 7.131887289191114,
+ 50.70653576043542
+ ],
+ [
+ 7.132088244708201,
+ 50.70652644846075
+ ],
+ [
+ 7.132259792100835,
+ 50.70653265644407
+ ],
+ [
+ 7.132475451680148,
+ 50.7065543843792
+ ],
+ [
+ 7.132715618029837,
+ 50.706591632244574
+ ],
+ [
+ 7.1329410803173,
+ 50.7066599199209
+ ],
+ [
+ 7.133176345312914,
+ 50.706765455225046
+ ],
+ [
+ 7.133367498121848,
+ 50.70686167838355
+ ],
+ [
+ 7.133622368533764,
+ 50.706995148889376
+ ],
+ [
+ 7.135063366631896,
+ 50.70775250921552
+ ],
+ [
+ 7.135906399532843,
+ 50.70844467619037
+ ],
+ [
+ 7.136671010768587,
+ 50.70912131384844
+ ],
+ [
+ 7.137729703248846,
+ 50.710145563282246
+ ],
+ [
+ 7.138788395729106,
+ 50.71130635225464
+ ],
+ [
+ 7.139729455711561,
+ 50.71244849088887
+ ],
+ [
+ 7.140582291320658,
+ 50.71357198054634
+ ],
+ [
+ 7.143431851902436,
+ 50.71761182062817
+ ],
+ [
+ 7.144748442284644,
+ 50.71966690811874
+ ],
+ [
+ 7.14588555643011,
+ 50.720982613304194
+ ],
+ [
+ 7.146983459742972,
+ 50.72170251182634
+ ],
+ [
+ 7.14762063577276,
+ 50.72204383915719
+ ],
+ [
+ 7.225963879312019,
+ 50.76098226444658
+ ],
+ [
+ 7.238413318663234,
+ 50.77336976182926
+ ],
+ [
+ 7.239079902817472,
+ 50.77375410835144
+ ],
+ [
+ 7.239648459890203,
+ 50.77395247842535
+ ],
+ [
+ 7.240256227795538,
+ 50.77410125542867
+ ],
+ [
+ 7.241099260696487,
+ 50.77432442004632
+ ],
+ [
+ 7.241824661099627,
+ 50.7744855938302
+ ],
+ [
+ 7.242471639837564,
+ 50.77472115451528
+ ],
+ [
+ 7.243138223991802,
+ 50.77499390751058
+ ],
+ [
+ 7.24380480814604,
+ 50.77520467009934
+ ],
+ [
+ 7.246118247269572,
+ 50.775489817972414
+ ],
+ [
+ 7.251745001747993,
+ 50.77612209618529
+ ],
+ [
+ 7.254038835455221,
+ 50.77648162312164
+ ],
+ [
+ 7.258391237874068,
+ 50.77749820157183
+ ],
+ [
+ 7.263371013614554,
+ 50.77906021807802
+ ],
+ [
+ 7.26662551272054,
+ 50.780225497999474
+ ],
+ [
+ 7.269801590161321,
+ 50.78166346298259
+ ],
+ [
+ 7.273095300099909,
+ 50.78292784393174
+ ],
+ [
+ 7.27501663089742,
+ 50.78439051649292
+ ],
+ [
+ 7.281760894105004,
+ 50.78597709261895
+ ],
+ [
+ 7.287720940660544,
+ 50.788654317746726
+ ],
+ [
+ 7.29587679384181,
+ 50.79222371276345
+ ],
+ [
+ 7.301836840397349,
+ 50.79539627952608
+ ],
+ [
+ 7.314070620169245,
+ 50.800253855050066
+ ],
+ [
+ 7.319560136733558,
+ 50.80511092567024
+ ],
+ [
+ 7.324892809967462,
+ 50.81343615782411
+ ],
+ [
+ 7.324892809967462,
+ 50.815219943112766
+ ],
+ [
+ 7.3237949066546,
+ 50.81789549330918
+ ],
+ [
+ 7.321599100028875,
+ 50.81958002035009
+ ],
+ [
+ 7.318775920081513,
+ 50.821165402056465
+ ],
+ [
+ 7.216082749496262,
+ 50.84892562584377
+ ],
+ [
+ 7.215533797839831,
+ 50.8493217271854
+ ],
+ [
+ 7.215337743676818,
+ 50.850138675580105
+ ],
+ [
+ 7.215102478681206,
+ 50.852564680417586
+ ],
+ [
+ 7.215220111179012,
+ 50.8535300962237
+ ],
+ [
+ 7.215102478681207,
+ 50.85489154609108
+ ],
+ [
+ 7.214671159522582,
+ 50.85605493539531
+ ],
+ [
+ 7.214082997033548,
+ 50.85721829567818
+ ],
+ [
+ 7.212828250390277,
+ 50.858653891767766
+ ],
+ [
+ 7.210632443764552,
+ 50.86135170277899
+ ],
+ [
+ 7.205378192195853,
+ 50.86486604814258
+ ],
+ [
+ 7.201378687270425,
+ 50.86753875318271
+ ],
+ [
+ 7.197104706516781,
+ 50.87043401073129
+ ],
+ [
+ 7.193647087933583,
+ 50.87354147861542
+ ],
+ [
+ 9.885124913897732,
+ 53.39237106153733
+ ],
+ [
+ 9.886301238875799,
+ 53.39302577112215
+ ],
+ [
+ 9.889281262153569,
+ 53.39480278923034
+ ],
+ [
+ 9.893437610409405,
+ 53.396907056826144
+ ],
+ [
+ 9.901907150251489,
+ 53.40074123246886
+ ],
+ [
+ 9.909514051776323,
+ 53.404341302406195
+ ],
+ [
+ 9.915709363327476,
+ 53.40808131217031
+ ],
+ [
+ 9.920571506570152,
+ 53.41224168667883
+ ],
+ [
+ 9.92402205983915,
+ 53.41635491532683
+ ],
+ [
+ 9.926061023134467,
+ 53.420187338524435
+ ],
+ [
+ 9.927394191442945,
+ 53.42299133179619
+ ],
+ [
+ 9.92786472143417,
+ 53.42570168285297
+ ],
+ [
+ 9.928178408094988,
+ 53.42883239053915
+ ],
+ [
+ 9.928492094755804,
+ 53.43130875716747
+ ],
+ [
+ 9.927394191442946,
+ 53.43338785923603
+ ],
+ [
+ 9.927354980610342,
+ 53.43338785923603
+ ],
+ [
+ 9.925982601469263,
+ 53.43523326912462
+ ],
+ [
+ 9.924963119821607,
+ 53.436190981911444
+ ],
+ [
+ 9.923943638173949,
+ 53.4371253150497
+ ],
+ [
+ 9.922845734861086,
+ 53.43817641527481
+ ],
+ [
+ 9.92151256655261,
+ 53.43955448506794
+ ],
+ [
+ 9.920493084904951,
+ 53.44081573011323
+ ],
+ [
+ 9.919512814089897,
+ 53.44214700371172
+ ],
+ [
+ 9.91919912742908,
+ 53.443151270226544
+ ],
+ [
+ 9.918807019103058,
+ 53.44429563801448
+ ],
+ [
+ 9.918610964940047,
+ 53.44579027604837
+ ],
+ [
+ 9.918807019103058,
+ 53.4468178091929
+ ],
+ [
+ 9.919003073266069,
+ 53.44782196529772
+ ],
+ [
+ 9.919512814089899,
+ 53.44924642509648
+ ],
+ [
+ 9.919865711583318,
+ 53.44978350409468
+ ],
+ [
+ 9.920689139067964,
+ 53.45097439417029
+ ],
+ [
+ 9.921473355720009,
+ 53.45186170232222
+ ],
+ [
+ 9.922218361539453,
+ 53.45256219566375
+ ],
+ [
+ 9.922963367358895,
+ 53.4532393282449
+ ],
+ [
+ 9.923708373178334,
+ 53.45386975232239
+ ],
+ [
+ 9.924649433160788,
+ 53.454616909481125
+ ],
+ [
+ 9.925943390636663,
+ 53.455784316225724
+ ],
+ [
+ 9.926727607288708,
+ 53.45674156580906
+ ],
+ [
+ 9.92704129394952,
+ 53.457045079463896
+ ],
+ [
+ 9.927668667271156,
+ 53.45781552746006
+ ],
+ [
+ 9.928178408094986,
+ 53.45877273125489
+ ],
+ [
+ 9.928452883923201,
+ 53.459566493645035
+ ],
+ [
+ 9.928570516421008,
+ 53.46068707411032
+ ],
+ [
+ 9.928492094755802,
+ 53.46148080071283
+ ],
+ [
+ 9.9284332785069,
+ 53.46221615182308
+ ],
+ [
+ 9.928080381013478,
+ 53.46319660015771
+ ],
+ [
+ 9.927198137279929,
+ 53.46458552987224
+ ],
+ [
+ 9.926629580207196,
+ 53.46525079943781
+ ],
+ [
+ 9.924884698156397,
+ 53.46697811735026
+ ],
+ [
+ 9.922884945693683,
+ 53.46865868353205
+ ],
+ [
+ 9.921198879891788,
+ 53.46996574456111
+ ],
+ [
+ 9.919199127429073,
+ 53.471926260635286
+ ],
+ [
+ 9.918022802451008,
+ 53.47332657381368
+ ],
+ [
+ 9.916689634142532,
+ 53.47528693464048
+ ],
+ [
+ 9.915787784992679,
+ 53.47699050800279
+ ],
+ [
+ 9.915238833336248,
+ 53.47822730608426
+ ],
+ [
+ 9.914807514177625,
+ 53.479510737674936
+ ],
+ [
+ 9.914297773353793,
+ 53.48156414747084
+ ],
+ [
+ 9.914062508358182,
+ 53.483780785128204
+ ],
+ [
+ 9.914023297525581,
+ 53.485414022975064
+ ],
+ [
+ 9.913944875860375,
+ 53.487140520325454
+ ],
+ [
+ 9.913905665027773,
+ 53.489076913472445
+ ],
+ [
+ 9.913748821697364,
+ 53.4914097998481
+ ],
+ [
+ 9.913709610864755,
+ 53.4950255201384
+ ],
+ [
+ 9.912690129217097,
+ 53.500996615388175
+ ],
+ [
+ 9.912062755895462,
+ 53.50603407294396
+ ],
+ [
+ 9.912298020891075,
+ 53.50873912716672
+ ],
+ [
+ 9.913239080873531,
+ 53.51023149697665
+ ],
+ [
+ 9.914336984186393,
+ 53.51195698406221
+ ],
+ [
+ 9.916140682486096,
+ 53.513635768931266
+ ],
+ [
+ 9.918179645781409,
+ 53.51578078614885
+ ],
+ [
+ 9.92006176574632,
+ 53.51717965192217
+ ],
+ [
+ 9.921551777385204,
+ 53.51825208440577
+ ],
+ [
+ 9.92257125903286,
+ 53.51885822988915
+ ],
+ [
+ 9.923904427341338,
+ 53.519930619885365
+ ],
+ [
+ 9.926178655632267,
+ 53.52179558131215
+ ],
+ [
+ 9.927825510601561,
+ 53.52310100546227
+ ],
+ [
+ 9.93009973889249,
+ 53.52505906626077
+ ],
+ [
+ 9.931746593861785,
+ 53.52617791750823
+ ],
+ [
+ 9.932609232179033,
+ 53.527529823334575
+ ],
+ [
+ 9.933393448831078,
+ 53.528508762685696
+ ],
+ [
+ 9.933707135491895,
+ 53.52981397995676
+ ],
+ [
+ 9.93362871382669,
+ 53.53097931852923
+ ],
+ [
+ 9.933393448831078,
+ 53.53284379354698
+ ],
+ [
+ 9.932609232179033,
+ 53.53405565828836
+ ],
+ [
+ 9.931589750531376,
+ 53.53512766357241
+ ],
+ [
+ 9.930727112214127,
+ 53.5361530345355
+ ],
+ [
+ 9.92939394390565,
+ 53.53671231732215
+ ],
+ [
+ 9.926178655632267,
+ 53.538250306892856
+ ],
+ [
+ 9.92288494569368,
+ 53.5395552239284
+ ],
+ [
+ 9.917709115790181,
+ 53.54160572657967
+ ],
+ [
+ 9.913395924203938,
+ 53.54332993602601
+ ],
+ [
+ 9.908220094300441,
+ 53.54552004676008
+ ],
+ [
+ 9.904299011040218,
+ 53.546964525862556
+ ],
+ [
+ 9.902260047744905,
+ 53.547756638634425
+ ],
+ [
+ 9.900534771110406,
+ 53.54808279840799
+ ],
+ [
+ 9.898731072810701,
+ 53.54817598645304
+ ],
+ [
+ 9.895437362872112,
+ 53.54808279840799
+ ],
+ [
+ 9.894104194563637,
+ 53.54780323304169
+ ],
+ [
+ 9.8916731229423,
+ 53.547104311546605
+ ],
+ [
+ 9.889947846307802,
+ 53.546405378509576
+ ],
+ [
+ 9.886889401364826,
+ 53.5453336587689
+ ],
+ [
+ 9.884928859734714,
+ 53.54458809859633
+ ],
+ [
+ 9.883125161435014,
+ 53.54416871522813
+ ],
+ [
+ 9.878733548183563,
+ 53.544028919848685
+ ],
+ [
+ 9.87481246492334,
+ 53.544122116819615
+ ],
+ [
+ 9.873636139945273,
+ 53.544122116819615
+ ],
+ [
+ 9.869009261698208,
+ 53.54444830460195
+ ],
+ [
+ 9.867676093389733,
+ 53.54449490265137
+ ],
+ [
+ 9.863833431794713,
+ 53.545193867236854
+ ],
+ [
+ 9.860696565186533,
+ 53.54542685286709
+ ],
+ [
+ 9.857873385239174,
+ 53.545566643629634
+ ],
+ [
+ 9.85606968693947,
+ 53.54584622376968
+ ],
+ [
+ 9.854187566974565,
+ 53.54607920580902
+ ],
+ [
+ 9.84846278541464,
+ 53.54687133515003
+ ],
+ [
+ 9.843365377176346,
+ 53.547337286660735
+ ],
+ [
+ 9.83866007726408,
+ 53.54812939245616
+ ],
+ [
+ 9.83285687403895,
+ 53.548874890250616
+ ],
+ [
+ 9.828151574126682,
+ 53.54962037491315
+ ],
+ [
+ 9.824073647536048,
+ 53.55031925485791
+ ],
+ [
+ 9.818113600980508,
+ 53.5512044862194
+ ],
+ [
+ 9.811839867764151,
+ 53.55190334000342
+ ],
+ [
+ 9.805958242873816,
+ 53.55288171591158
+ ],
+ [
+ 9.80384086,
+ 53.553301012947465
+ ]
+ ]
+ }
+}
diff --git a/apps/story-map/src/components/3DTilesLayer.tsx b/apps/story-map/src/components/3DTilesLayer.tsx
new file mode 100644
index 00000000..6efceab2
--- /dev/null
+++ b/apps/story-map/src/components/3DTilesLayer.tsx
@@ -0,0 +1,43 @@
+import { useEffect, useRef } from 'react';
+import { useMap } from '@mapcomponents/react-maplibre';
+import { useDeckGl } from '@mapcomponents/deck-gl';
+import { Tile3DLayer } from "@deck.gl/geo-layers";
+
+const PointCloudComponent = () => {
+ const mapHook = useMap({mapId: 'map_1'});
+ const deckGlHook = useDeckGl();
+
+ const initializedRef = useRef(false);
+
+ useEffect(() => {
+ if (
+ !mapHook.map ||
+ (initializedRef.current)
+ ) return;
+ initializedRef.current = true;
+
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore
+ const pointcloudLayer = new Tile3DLayer({
+ id: "pointcloud_Tileset",
+ data: 'tileset/tileset.json',
+
+ pointSize: 1.5,
+ });
+
+ deckGlHook.addLayer(pointcloudLayer);
+
+ return () => {
+ // eslint-disable-next-line @typescript-eslint/no-unused-expressions
+ pointcloudLayer && deckGlHook.removeLayer(pointcloudLayer);
+ initializedRef.current = false;
+ };
+ }, [mapHook.map]);
+
+ return (
+ <>
+ >
+ );
+};
+
+export default PointCloudComponent;
diff --git a/apps/story-map/src/components/ControlInformationGUI.tsx b/apps/story-map/src/components/ControlInformationGUI.tsx
new file mode 100644
index 00000000..9fc8e976
--- /dev/null
+++ b/apps/story-map/src/components/ControlInformationGUI.tsx
@@ -0,0 +1,17 @@
+const ControlInformationGUI = () => {
+ return (
+
+ {/*todo: conzept überlegen*/}
+
+ );
+};
+
+export default ControlInformationGUI;
diff --git a/apps/story-map/src/components/CreatePdfForm-StationComponent.tsx b/apps/story-map/src/components/CreatePdfForm-StationComponent.tsx
new file mode 100644
index 00000000..3b08f1f1
--- /dev/null
+++ b/apps/story-map/src/components/CreatePdfForm-StationComponent.tsx
@@ -0,0 +1,77 @@
+import React, { useState } from 'react';
+import { PdfForm, PdfFormProps } from '@mapcomponents/react-maplibre';
+import { PdfContextProvider } from '@mapcomponents/react-maplibre';
+import { Dialog, DialogContent, DialogTitle, Button, Paper } from '@mui/material';
+import Draggable from 'react-draggable';
+import '../assets/preview.css';
+
+const PaperComponent = (props: object) => {
+ const nodeRef = React.useRef(null);
+
+ return (
+ }
+ handle="#draggable-dialog-title"
+ cancel={'[class*="MuiDialogContent-root"]'}
+ >
+
+
+ );
+};
+
+interface CreatePdfFormStationComponentProps extends PdfFormProps {
+ /**
+ * Show button to toggle PDF form display
+ */
+ showButton?: boolean;
+}
+
+const CreatePdfFormStationComponent = (props: CreatePdfFormStationComponentProps) => {
+ const { showButton = true, ...pdfFormProps } = props;
+
+ const [open, setOpen] = useState(false);
+
+ const handleToggle = () => {
+ setOpen(!open);
+ };
+
+ return (
+ <>
+ {showButton && (
+
+ )}
+ {open && (
+
+ )}
+ >
+ );
+};
+
+export default CreatePdfFormStationComponent;
diff --git a/apps/story-map/src/components/GeoJson-StationComponent.tsx b/apps/story-map/src/components/GeoJson-StationComponent.tsx
new file mode 100644
index 00000000..b9aa3a3d
--- /dev/null
+++ b/apps/story-map/src/components/GeoJson-StationComponent.tsx
@@ -0,0 +1,46 @@
+import { MlGeoJsonLayer } from '@mapcomponents/react-maplibre';
+import area from '../assets/area.json';
+import lines from '../assets/lines.json';
+import points from '../assets/points.json';
+
+function GeoJsonStationComponent() {
+ return (
+ <>
+
+
+
+ >
+ );
+}
+
+export default GeoJsonStationComponent;
diff --git a/apps/story-map/src/components/IconAnimationLayer.tsx b/apps/story-map/src/components/IconAnimationLayer.tsx
new file mode 100644
index 00000000..1930de2a
--- /dev/null
+++ b/apps/story-map/src/components/IconAnimationLayer.tsx
@@ -0,0 +1,229 @@
+import { useEffect, useMemo, useRef, useState } from 'react';
+import { MlGeoJsonLayer, useMap } from '@mapcomponents/react-maplibre';
+import * as d3 from 'd3';
+import carPathsData from '../assets/carPaths.json';
+
+export interface IconAnimationLayerProps {
+ mapId?: string;
+ iconUrl?: string;
+ iconSize?: number;
+ animationDuration?: number;
+ fps?: number;
+ showPaths?: boolean;
+ pathColor?: string;
+ pathWidth?: number;
+}
+
+const IconAnimationLayer = ({
+ mapId,
+ iconUrl = '/icon-layer-car.png',
+ iconSize = 1,
+ animationDuration = 20000,
+ fps = 30,
+ showPaths = false,
+ pathColor = '#000',
+ pathWidth = 2,
+}: IconAnimationLayerProps) => {
+ const icon = iconUrl;
+ const mapHook = useMap({ mapId });
+ const [iconPositions, setIconPositions] = useState<
+ Record
+ >({});
+ const animationFrameRef = useRef(undefined);
+ const lastUpdateTimeRef = useRef(0);
+
+ // Import paths from external JSON file
+ const paths = useMemo(() => carPathsData as GeoJSON.FeatureCollection, []);
+
+ const getIconGeoJson = useMemo(
+ (): GeoJSON.FeatureCollection => ({
+ type: 'FeatureCollection',
+ features: Object.entries(iconPositions).map(([pathName, data]) => ({
+ type: 'Feature',
+ properties: {
+ name: pathName,
+ icon: 'icon',
+ bearing: data.bearing,
+ },
+ geometry: {
+ type: 'Point',
+ coordinates: data.position,
+ },
+ })),
+ }),
+ [iconPositions]
+ );
+
+ useEffect(() => {
+ if (!mapHook.map) return;
+
+ // Load the car icon
+ const loadImage = async () => {
+ if (mapHook.map?.hasImage('icon')) return;
+
+ const img = new Image();
+ img.src = icon;
+ await new Promise((resolve, reject) => {
+ img.onload = () => {
+ if (!mapHook.map?.hasImage('icon')) {
+ mapHook.map?.addImage('icon', img);
+ }
+ resolve();
+ };
+ img.onerror = reject;
+ });
+ };
+
+ loadImage();
+
+ interface PathSegment {
+ interpolator: (t: number) => [number, number];
+ distance: number;
+ start: number;
+ }
+
+ // Pre-calculate all interpolators once
+ const pathInterpolators = paths.features.map((feature) => {
+ const pathName = feature.properties?.id || 'unknown';
+ const coordinates = (feature.geometry as GeoJSON.LineString).coordinates as [
+ number,
+ number,
+ ][];
+ const segments: PathSegment[] = [];
+ let totalDistance = 0;
+
+ for (let i = 0; i < coordinates.length - 1; i++) {
+ const start = coordinates[i] as [number, number];
+ const end = coordinates[i + 1] as [number, number];
+ const interpolator = d3.geoInterpolate(start, end);
+ const distance = d3.geoDistance(start, end);
+ segments.push({ interpolator, distance, start: totalDistance });
+ totalDistance += distance;
+ }
+
+ return { pathName, segments, totalDistance };
+ });
+
+ // Animation parameters
+ const duration = animationDuration;
+ const FPS_TARGET = fps;
+ const FRAME_DURATION = 1000 / FPS_TARGET;
+ const startTime = performance.now();
+
+ // Calculate bearing between two geographic points (in degrees)
+ const calculateBearing = (start: [number, number], end: [number, number]): number => {
+ const [lon1, lat1] = start;
+ const [lon2, lat2] = end;
+
+ const dLon = ((lon2 - lon1) * Math.PI) / 180;
+ const lat1Rad = (lat1 * Math.PI) / 180;
+ const lat2Rad = (lat2 * Math.PI) / 180;
+
+ const y = Math.sin(dLon) * Math.cos(lat2Rad);
+ const x =
+ Math.cos(lat1Rad) * Math.sin(lat2Rad) -
+ Math.sin(lat1Rad) * Math.cos(lat2Rad) * Math.cos(dLon);
+
+ const bearing = Math.atan2(y, x);
+ return ((bearing * 180) / Math.PI + 360) % 360;
+ };
+
+ // Binary search for segment
+ const findSegment = (segments: PathSegment[], targetDistance: number): PathSegment => {
+ let left = 0;
+ let right = segments.length - 1;
+
+ while (left < right) {
+ const mid = Math.floor((left + right + 1) / 2);
+ if (segments[mid].start <= targetDistance) {
+ left = mid;
+ } else {
+ right = mid - 1;
+ }
+ }
+
+ return segments[left];
+ };
+
+ // Single animation loop for all icons
+ const animate = (currentTime: number) => {
+ // Throttle to target FPS
+ if (currentTime - lastUpdateTimeRef.current < FRAME_DURATION) {
+ animationFrameRef.current = requestAnimationFrame(animate);
+ return;
+ }
+
+ lastUpdateTimeRef.current = currentTime;
+ const elapsed = currentTime - startTime;
+
+ // Calculate all positions and bearings in one pass
+ const newPositions: Record = {};
+
+ pathInterpolators.forEach(({ pathName, segments, totalDistance }, index) => {
+ const offsetElapsed = (elapsed + index * 3500) % duration;
+ const t = offsetElapsed / duration;
+ const targetDistance = t * totalDistance;
+
+ // Use binary search for segment
+ const currentSegment = findSegment(segments, targetDistance);
+
+ // Calculate position within the segment
+ const segmentProgress = (targetDistance - currentSegment.start) / currentSegment.distance;
+ const position = currentSegment.interpolator(segmentProgress);
+
+ // Calculate bearing: look slightly ahead on the path for smooth rotation
+ const lookAheadProgress = Math.min(segmentProgress + 0.01, 1);
+ const lookAheadPosition = currentSegment.interpolator(lookAheadProgress);
+ const bearing = calculateBearing(position, lookAheadPosition);
+
+ newPositions[pathName] = { position, bearing };
+ });
+
+ // Single state update for all icons
+ setIconPositions(newPositions);
+
+ animationFrameRef.current = requestAnimationFrame(animate);
+ };
+
+ // Start animation
+ animationFrameRef.current = requestAnimationFrame(animate);
+
+ // Cleanup
+ return () => {
+ if (animationFrameRef.current) {
+ cancelAnimationFrame(animationFrameRef.current);
+ }
+ };
+ }, [mapHook.map, paths, icon, animationDuration, fps]);
+
+ return (
+ <>
+ {showPaths && (
+
+ )}
+
+
+ >
+ );
+};
+
+export default IconAnimationLayer;
diff --git a/apps/story-map/src/components/MapMagnify-StationComponent.tsx b/apps/story-map/src/components/MapMagnify-StationComponent.tsx
new file mode 100644
index 00000000..375ccb05
--- /dev/null
+++ b/apps/story-map/src/components/MapMagnify-StationComponent.tsx
@@ -0,0 +1,58 @@
+import { MlLayer, MlLayerMagnify, MlWmsLayer, useMap } from '@mapcomponents/react-maplibre';
+import { useEffect } from 'react';
+import maplibregl from 'maplibre-gl';
+import { cogProtocol } from '@geomatico/maplibre-cog-protocol';
+
+interface MapMagnifyStationComponentProps {
+ showMapMagnify: boolean;
+}
+
+export default function MapMagnifyStationComponent(props: MapMagnifyStationComponentProps) {
+ const mapHook = useMap({mapId: 'map_1'});
+
+ useEffect(() => {
+ maplibregl.addProtocol('cog', cogProtocol);
+
+ mapHook.map?.addSource('Test_OldMap', {
+ url: 'cog://http://localhost:5173/OldMap_COG.tif',
+ type: 'raster',
+ tileSize: 256,
+ minzoom: 13,
+ });
+ }, [mapHook.map]);
+
+ return (
+ <>
+ {props.showMapMagnify ? (
+ <>
+
+
+ >
+ ) : (
+
+ )}
+ >
+ );
+}
diff --git a/apps/story-map/src/components/MarkerComponent.tsx b/apps/story-map/src/components/MarkerComponent.tsx
new file mode 100644
index 00000000..3243bd08
--- /dev/null
+++ b/apps/story-map/src/components/MarkerComponent.tsx
@@ -0,0 +1,40 @@
+import { MlMarker } from '@mapcomponents/react-maplibre';
+import { useTranslation } from 'react-i18next';
+import { StationType } from '../contexts/StationContext';
+import { createMarkerContentHtml } from '../utils/markerContent';
+
+interface MarkerComponentProps {
+ selectedStation: StationType | undefined;
+}
+
+const MarkerComponent = ({ selectedStation }: MarkerComponentProps) => {
+ const { t } = useTranslation();
+
+ if (!selectedStation) {
+ return null;
+ }
+
+ return (
+
+ );
+};
+
+export default MarkerComponent;
diff --git a/apps/story-map/src/components/MlHexagonMap.tsx b/apps/story-map/src/components/MlHexagonMap.tsx
new file mode 100644
index 00000000..02fc0fcc
--- /dev/null
+++ b/apps/story-map/src/components/MlHexagonMap.tsx
@@ -0,0 +1,184 @@
+import { useEffect, useMemo, useRef, useState } from 'react';
+import { HexagonLayer, HexagonLayerProps } from '@deck.gl/aggregation-layers';
+import { useMap } from '@mapcomponents/react-maplibre';
+import { useDeckGl } from '@mapcomponents/deck-gl';
+import { Material } from '@deck.gl/core';
+
+export interface MlHexagonMapProps {
+ /**
+ * Id of the target MapLibre instance in mapContext
+ */
+ mapId?: string;
+ /**
+ * Id of an existing layer in the mapLibre instance to help specify the layer order
+ * This layer will be visually beneath the layer with the "insertBeforeLayer" id.
+ */
+ insertBeforeLayer?: string;
+
+ /**
+ * @default looking for a file called "hexa_data.json" in the public folder
+ */
+ url?: string;
+
+ /**
+ * If false layer will be rendered in 2D
+ * @default true
+ */
+ extruded?: boolean;
+
+ /**
+ * If false hexagon won't be highlighted if hovered via mouse
+ * @default false
+ */
+ autoHighlight?: boolean;
+
+ /**
+ * Opacity of the hexagons value is between 0 and 1
+ * @default 0.8
+ */
+ layerOpacity?: number;
+
+ /**
+ * Range of elevation will be set as [min, max]
+ */
+ elevationRange?: [number, number];
+
+ /**
+ * @default 10
+ */
+ elevationScale?: number
+
+ /**
+ * Material of hexagons
+ * @default { ambient: 0.8, diffuse: 0.5, shininess: 20, specularColor: specularColor }
+ */
+ material?: Material;
+ specularColor?: [number, number, number]
+
+ /**
+ * @default 16
+ */
+ radius?: number;
+}
+
+
+const MlHexagonMap = (props: MlHexagonMapProps) => {
+ const DATA_URL = props.url ?? 'hexa_data.json';
+ const deckGlHook = useDeckGl();
+ const [noiseData, setNoiseData] = useState({
+ type: '',
+ features: [],
+ });
+ const getJsonData = () => {
+ fetch(DATA_URL, {
+ headers: {
+ 'Content-Type': 'application/json',
+ Accept: 'application/json',
+ },
+ })
+ .then(function (response) {
+ return response.json();
+ })
+ .then(function (json) {
+ setNoiseData(json);
+ });
+ };
+ useEffect(() => {
+ getJsonData();
+ }, []);
+
+ const layerOpacity = props.layerOpacity ?? 0.8;
+ const specularColor: [number, number, number] = props.specularColor ?? [51, 51, 51];
+ const getColorRange: (layerOpacity: number) => [number, number, number, number][] = (
+ layerOpacity: number
+ ) => [
+ [1, 152, 189, Math.round(80 * layerOpacity)],
+ [73, 227, 206, Math.round(90 * layerOpacity)],
+ [216, 254, 181, Math.round(100 * layerOpacity)],
+ [254, 237, 177, Math.round(110 * layerOpacity)],
+ [254, 173, 84, Math.round(120 * layerOpacity)],
+ [209, 55, 78, Math.round(150 * layerOpacity)],
+ ];
+ const elevationRange: [number, number] = props.elevationRange ?? [1,10];
+
+ const deckGlLayerProps = useMemo(() => {
+ return {
+ id: 'MlHexagonLayer',
+
+ data: noiseData ? noiseData.features : [],
+ type: HexagonLayer,
+ colorRange: getColorRange(layerOpacity),
+ coverage: 0.9,
+ elevationRange: elevationRange,
+ elevationScale: props.elevationScale ?? 10,
+ extruded: props.extruded ?? true,
+ autoHighlight: props.autoHighlight ?? false,
+ getPosition: (d: any) => {
+ return d.geometry.coordinates;
+ },
+ pickable: true,
+ radius: props.radius ?? 16,
+ material: props.material ?? {
+ ambient: 0.8,
+ diffuse: 0.5,
+ shininess: 20,
+ specularColor: specularColor,
+ },
+ transitions: {
+ elevationScale: 1500,
+ },
+ getColorValue: (points: any[]) => {
+ const elVal = points.reduce((acc, point) => {
+ if (!point?.properties && point.source.properties)
+ return acc < point.source.properties.dba ? point.source.properties.dba : acc;
+ return acc < point.properties.dba ? point.properties.dba : acc;
+ }, -Infinity);
+ return Math.round(elVal);
+ },
+ getElevationValue: (points: any): number => {
+ const elVal = points.reduce((acc: any, point: any) => {
+ if (!point.properties && point.source.properties)
+ return acc < point.source.properties.dba ? point.source.properties.dba : acc;
+ return acc < point.properties.dba ? point.properties.dba : acc;
+ }, -Infinity);
+ return Math.round(elVal);
+ },
+ _filterData: null,
+ };
+ }, [noiseData.features]);
+
+ const mapHook = useMap({
+ mapId: props.mapId,
+ waitForLayer: props.insertBeforeLayer,
+ });
+
+ const initializedRef = useRef(false);
+
+ // add deckGl Layer
+ useEffect(() => {
+ if (
+ !mapHook.map ||
+ noiseData.features.length <= 0 ||
+ (initializedRef.current && noiseData.features.length >= 0)
+ )
+ return;
+ initializedRef.current = true;
+
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore
+ const hexagonLayer = new HexagonLayer({
+ ...deckGlLayerProps,
+ } as unknown as HexagonLayerProps);
+ deckGlHook.addLayer(hexagonLayer);
+
+ return () => {
+ // eslint-disable-next-line @typescript-eslint/no-unused-expressions
+ hexagonLayer && deckGlHook.removeLayer(hexagonLayer);
+ initializedRef.current = false;
+ };
+ }, [mapHook.map, props.mapId, deckGlLayerProps]);
+
+ return <>>;
+};
+
+export default MlHexagonMap;
diff --git a/apps/story-map/src/components/MlThreeJsLayer.tsx b/apps/story-map/src/components/MlThreeJsLayer.tsx
new file mode 100644
index 00000000..f2cdfeb0
--- /dev/null
+++ b/apps/story-map/src/components/MlThreeJsLayer.tsx
@@ -0,0 +1,203 @@
+import { useEffect, useRef } from 'react';
+import maplibregl, { CustomLayerInterface, LngLatLike } from 'maplibre-gl';
+import * as THREE from 'three';
+import { useMap } from '@mapcomponents/react-maplibre';
+import { GLTFLoader } from 'three-stdlib';
+
+/**
+ * Renders obj or gltf 3D Models on the MapLibreMap referenced by props.mapId
+ *
+ * @component
+ */
+
+export interface MlThreeJsLayerProps {
+ mapId?: string;
+ url: string;
+ position: number[];
+ rotation: number[];
+ scale: number;
+ init?: () => void;
+ onDone?: () => void;
+}
+
+type ThreeJsCustomLayer = CustomLayerInterface & {
+ camera?: THREE.Camera;
+ scene?: THREE.Scene;
+ map?: maplibregl.Map;
+ renderer?: THREE.WebGLRenderer;
+};
+
+const convertDegreeToRadians = (degree: number) => {
+ return degree * (Math.PI / 180);
+};
+
+const MlThreeJsLayer = (props: MlThreeJsLayerProps) => {
+ const mapHook = useMap({mapId: props.mapId});
+
+ const layerName = '3d-model';
+ const initializedRef = useRef(false);
+ const initFuncRef = useRef(props.init);
+
+ const cleanup = () => {
+ if (mapHook.map && mapHook.map.style) {
+ if (mapHook.map.getLayer(layerName)) {
+ mapHook.map.removeLayer(layerName);
+ }
+ }
+ };
+
+ useEffect(() => {
+ if (typeof initFuncRef.current === 'function') {
+ initFuncRef.current();
+ }
+ return cleanup;
+ }, []);
+
+ useEffect(() => {
+ if (!mapHook.map || initializedRef.current) return;
+
+ initializedRef.current = true;
+
+ // parameters to ensure the model is georeferenced correctly on the map
+ const modelOrigin = props.position ?? [7.099771581806502, 50.73395746209983];
+ // 50.73395746209983, 7.099771581806502
+ const modelAltitude = props.position[2] ?? 0;
+ const modelRotate = props.rotation
+ ? [
+ convertDegreeToRadians(props.rotation[0]),
+ convertDegreeToRadians(props.rotation[1]),
+ convertDegreeToRadians(props.rotation[2]),
+ ]
+ : [Math.PI / 2, 90, 0];
+
+ const modelAsMercatorCoordinate = maplibregl.MercatorCoordinate.fromLngLat(
+ modelOrigin as LngLatLike,
+ modelAltitude
+ );
+
+ // transformation parameters to position, rotate and scale the 3D model onto the map
+ const modelTransform = {
+ translateX: modelAsMercatorCoordinate.x + 0.0000008,
+ translateY: modelAsMercatorCoordinate.y + 0.0000018,
+ translateZ: modelAsMercatorCoordinate.z,
+ rotateX: modelRotate[0],
+ rotateY: modelRotate[1],
+ rotateZ: modelRotate[2],
+ /* Since our 3D model is in real world meters, a scale transform needs to be
+ * applied since the CustomLayerInterface expects units in MercatorCoordinates.
+ */
+ scale: props.scale ?? modelAsMercatorCoordinate.meterInMercatorCoordinateUnits() + 0.00000003,
+ };
+
+ //var THREE = window.THREE;
+
+ // configuration of the custom layer for a 3D model per the CustomLayerInterface
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore
+ const customLayer: ThreeJsCustomLayer = {
+ id: '3d-model',
+ type: 'custom',
+ renderingMode: '3d',
+ camera: undefined,
+ scene: undefined,
+ onAdd: function (map: maplibregl.Map, gl: WebGL2RenderingContext) {
+ // eslint-disable-next-line @typescript-eslint/no-this-alias
+ const self = this;
+ this.camera = new THREE.Camera();
+ this.scene = new THREE.Scene();
+
+
+ const sunLight = new THREE.DirectionalLight(0xffffff, 3); // RGB(229, 227, 165), intensity 4
+ sunLight.position.set(
+ -5.619660954998525e-14,
+ 888.4981803423489,
+ -458.8801406994369
+ );
+ console.log(sunLight.position);
+ sunLight.name = "sunlight";
+ this.scene.add(sunLight);
+
+// Enable shadows if needed (deck.gl had _shadow: false)
+ sunLight.castShadow = false; // Set to true to enable
+
+ // use the three.js GLTF loader to add the 3D model to the three.js scene
+ const loader = new GLTFLoader();
+ loader.load(
+ props.url,
+ function (gltf: { scene: THREE.Object3D }) {
+ gltf.scene.traverse((node) => {
+ if ((node as THREE.Mesh).isMesh) {
+ node.castShadow = true;
+ }
+ });
+ self.scene?.add(gltf.scene);
+ if (typeof props.onDone === 'function') {
+ props.onDone();
+ }
+ }.bind(this)
+ );
+ this.map = map;
+
+ // use the Mapbox GL JS map canvas for three.js
+ this.renderer = new THREE.WebGLRenderer({
+ canvas: map.getCanvas(),
+ context: gl,
+ antialias: true,
+ });
+
+ this.renderer.autoClear = false;
+ this.renderer.shadowMap.enabled = true;
+ this.renderer.shadowMap.type = THREE.PCFSoftShadowMap;
+ },
+ render: function (_gl, matrix) {
+ const rotationX = new THREE.Matrix4().makeRotationAxis(
+ new THREE.Vector3(1, 0, 0),
+ modelTransform.rotateX
+ );
+ const rotationY = new THREE.Matrix4().makeRotationAxis(
+ new THREE.Vector3(0, 1, 0),
+ modelTransform.rotateY
+ );
+ const rotationZ = new THREE.Matrix4().makeRotationAxis(
+ new THREE.Vector3(0, 0, 1),
+ modelTransform.rotateZ
+ );
+
+ const m = new THREE.Matrix4().fromArray(
+ Object.values(matrix.defaultProjectionData.mainMatrix)
+ );
+ const l = new THREE.Matrix4()
+ .makeTranslation(
+ modelTransform.translateX,
+ modelTransform.translateY,
+ modelTransform.translateZ
+ )
+ .scale(
+ new THREE.Vector3(modelTransform.scale, -modelTransform.scale, modelTransform.scale)
+ )
+ .multiply(rotationX)
+ .multiply(rotationY)
+ .multiply(rotationZ);
+
+ if (this.camera && this.scene) {
+ this.camera.projectionMatrix = m.multiply(l);
+ this.renderer?.resetState();
+ this.renderer?.render(this.scene, this.camera);
+ this.map?.triggerRepaint();
+ }
+ },
+ };
+
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-expect-error
+ mapHook.map?.addLayer(customLayer);
+
+ if (mapHook.map?.getLayer(layerName)) {
+ mapHook.map.setLayoutProperty(layerName, 'visibility', 'visible');
+ }
+ }, [mapHook.map, props]);
+
+ return <>>;
+};
+
+export default MlThreeJsLayer;
diff --git a/apps/story-map/src/components/useCameraFollowPath.tsx b/apps/story-map/src/components/useCameraFollowPath.tsx
new file mode 100644
index 00000000..c7f8409a
--- /dev/null
+++ b/apps/story-map/src/components/useCameraFollowPath.tsx
@@ -0,0 +1,202 @@
+import { useCallback, useEffect, useRef } from 'react';
+
+import * as turf from '@turf/turf';
+import { useMap } from '@mapcomponents/react-maplibre';
+import { LngLatLike } from 'maplibre-gl';
+
+interface useCameraFollowPathProps {
+ /**
+ * Id of the target MapLibre instance in mapContext
+ */
+ mapId?: string;
+ /**
+ * Id of an existing layer in the mapLibre instance to help specify the layer order
+ * This layer will be visually beneath the layer with the "insertBeforeLayer" id.
+ */
+ insertBeforeLayer?: string;
+ /* pause is an useRef const and is triggerd in the storie */
+ pause?: boolean;
+ /* zoom is an useRef const and is triggerd in the storie */
+ zoom?: number;
+ /* pitch is an useRef const and is triggerd in the storie */
+ pitch?: number;
+ /* speed is an useRef const and is triggerd in the storie */
+ speed?: number;
+ /* kmPerStep is an useRef const */
+ kmPerStep?: number;
+ /* route is a json file, which is defined loaded in the storie */
+ route?: any;
+ /* stepDuration is a const */
+ stepDuration?: number;
+ /* timeoutId is an useRef const */
+ timeoutId?: number;
+
+ onPositionChange?: (position: LngLatLike) => void;
+}
+export type { useCameraFollowPathProps };
+
+/**
+ * Component template
+ *
+ */
+const useCameraFollowPath = (props: useCameraFollowPathProps) => {
+ // Use a useRef hook to reference the layer object to be able to access it later inside useEffect hooks
+ // without the requirement of adding it to the dependency list (ignore the false eslint exhaustive deps warning)
+ const initializedRef = useRef(false);
+ const pause = useRef(props.pause);
+ const zoom = useRef(props.zoom);
+ const pitch = useRef(props.pitch);
+ const step = useRef(1);
+ const speed = useRef(props.speed);
+ const timeoutId = useRef(null);
+ const bearingRef = useRef(null);
+
+ const kmPerStep = props.kmPerStep || 0.01;
+ const routeDistance = turf.length(props.route);
+ const stepDuration = props.stepDuration || 70;
+
+ const mapHook = useMap({
+ mapId: props.mapId,
+ waitForLayer: props.insertBeforeLayer,
+ });
+
+ useEffect(() => {
+ pause.current = props.pause;
+ if (!pause.current) {
+ if (props.pitch) mapHook.map?.setPitch(props.pitch);
+ play();
+ }
+ }, [props.pause]);
+ useEffect(() => {
+ if (!mapHook.map) return;
+ zoom.current = props.zoom;
+ if (typeof zoom.current !== 'undefined' && mapHook.map.map.getZoom() !== zoom.current) {
+ mapHook.map.map.setZoom(zoom.current);
+ }
+ }, [mapHook.map, props.zoom]);
+ useEffect(() => {
+ if (!mapHook.map) return;
+ pitch.current = props.pitch;
+ if (typeof pitch.current !== 'undefined' && pitch.current !== mapHook.map.map.getPitch()) {
+ mapHook.map.map.setPitch(pitch.current);
+ }
+ }, [mapHook.map, props.pitch]);
+ useEffect(() => {
+ speed.current = props.speed;
+ }, [props.speed]);
+
+ const disableInteractivity = useCallback(() => {
+ if (!mapHook.map) return;
+ mapHook.map.map['scrollZoom'].disable();
+ mapHook.map.map['boxZoom'].disable();
+ mapHook.map.map['dragRotate'].disable();
+ mapHook.map.map['dragPan'].disable();
+ mapHook.map.map['keyboard'].disable();
+ mapHook.map.map['doubleClickZoom'].disable();
+ mapHook.map.map['touchZoomRotate'].disable();
+ }, [mapHook.map]);
+ const enableInteractivity = useCallback(() => {
+ if (!mapHook.map) return;
+ mapHook.map.map['scrollZoom'].enable();
+ mapHook.map.map['boxZoom'].enable();
+ mapHook.map.map['dragRotate'].enable();
+ mapHook.map.map['dragPan'].enable();
+ mapHook.map.map['keyboard'].enable();
+ mapHook.map.map['doubleClickZoom'].enable();
+ mapHook.map.map['touchZoomRotate'].enable();
+ }, [mapHook.map]);
+
+ function play() {
+ if (!mapHook.map) return;
+
+ if (!pause.current) {
+ disableInteractivity();
+ if (typeof zoom.current !== 'undefined' && mapHook.map.map.getZoom() !== zoom.current) {
+ mapHook.map.map.setZoom(zoom.current);
+ }
+
+ const alongRoutelati = turf.along(props.route, step.current * kmPerStep).geometry.coordinates;
+
+ if (step.current * kmPerStep < routeDistance) {
+ const targetBearing = turf.bearing(
+ turf.point([mapHook.map.map.getCenter().lng, mapHook.map.map.getCenter().lat]),
+ turf.point(alongRoutelati)
+ );
+
+ let finalBearing: number;
+
+ // Only interpolate bearing if speed is 10 or less
+ if (!speed.current || speed.current <= 10) {
+ // Interpolate bearing to avoid sudden jumps
+ const currentBearing = bearingRef.current ?? targetBearing;
+ let bearingDiff = targetBearing - currentBearing;
+
+ // Normalize bearing difference to shortest rotation (-180 to 180)
+ if (bearingDiff > 180) bearingDiff -= 360;
+ if (bearingDiff < -180) bearingDiff += 360;
+
+ const smoothedBearing = currentBearing + bearingDiff * 0.3; // Interpolate 30% towards target
+ bearingRef.current = smoothedBearing;
+ finalBearing = smoothedBearing;
+ } else {
+ // Use target bearing directly for high speeds
+ bearingRef.current = targetBearing;
+ finalBearing = targetBearing;
+ }
+
+ mapHook.map.map.easeTo({
+ center: alongRoutelati as LngLatLike,
+ bearing: finalBearing,
+ duration: stepDuration,
+ easing: (t) => t,
+ essential: true,
+ });
+
+ if (typeof speed.current !== 'undefined') {
+ step.current = step.current + speed.current;
+ } else {
+ step.current++;
+ }
+ setTimeout(() => {
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-expect-error
+ props.onPositionChange?.(alongRoutelati);
+ play();
+ }, 100);
+ } else {
+ bearingRef.current = null;
+ enableInteractivity();
+ console.log('ENABLE CONTROLS');
+ step.current = 1;
+ }
+ } else {
+ enableInteractivity();
+ }
+ }
+
+ function reset() {
+ if (!mapHook.map) return;
+ enableInteractivity();
+ step.current = 1;
+ }
+
+ useEffect(() => {
+ if (!mapHook.map || initializedRef.current) return;
+ initializedRef.current = true;
+ }, [mapHook.map]);
+
+ useEffect(() => {
+ return () => {
+ if (timeoutId.current) {
+ clearTimeout(timeoutId.current);
+ }
+ };
+ }, []);
+
+ return {
+ play: play,
+ reset: reset,
+ };
+};
+
+export default useCameraFollowPath;
diff --git a/apps/story-map/src/contexts/StationContext.tsx b/apps/story-map/src/contexts/StationContext.tsx
new file mode 100644
index 00000000..d0ce1ec2
--- /dev/null
+++ b/apps/story-map/src/contexts/StationContext.tsx
@@ -0,0 +1,266 @@
+import React, {
+ createContext,
+ Dispatch,
+ PropsWithChildren,
+ SetStateAction,
+ useCallback,
+ useContext,
+ useState,
+} from 'react';
+import { Position } from 'geojson';
+import { useMap } from '@mapcomponents/react-maplibre';
+import { LngLatLike } from 'maplibre-gl';
+
+export interface StationType {
+ label: string;
+ id: string;
+ stationTitle: string;
+ description: string;
+ breakpoint: Position;
+ markerCoordinates: Position;
+ presentationPosition: CameraPositionType;
+}
+
+export interface CameraPositionType {
+ zoom?: number;
+ pitch?: number;
+ bearing?: number;
+}
+
+interface StationContextType {
+ stationInformations: StationType[];
+ selectStationById: (id: string) => void;
+ selectedStation: StationType | undefined;
+ setSelectedStation: Dispatch>;
+ selectedStationIndex: number | undefined;
+ nextStation: () => void;
+ resetStations: () => void;
+}
+
+const StationContext = createContext(undefined);
+
+export const StationProvider: React.FC = ({ children }) => {
+ const stationInformations = [
+ {
+ label: 'MlMarker',
+ id: 'MlMarker-Station',
+ stationTitle: 'MlMarker.title',
+ description: 'MlMarker.description',
+ breakpoint: [7.085638047138517, 50.76945740939362],
+ markerCoordinates: [7.08563805, 50.76945741],
+ presentationPosition: {
+ zoom: 16,
+ pitch: 45,
+ bearing: 180,
+ },
+ },
+ {
+ label: 'MlThreeJsLayer',
+ id: 'MlThreeJsLayer-Station',
+ stationTitle: 'MlThreeJsLayer.title',
+ description: 'MlThreeJsLayer.description',
+ breakpoint: [7.098185442221093, 50.7646377315985],
+ markerCoordinates: [7.09818544, 50.76463773],
+ presentationPosition: {
+ zoom: 16,
+ pitch: 45,
+ bearing: 180,
+ },
+ },
+ {
+ label: 'MlGeoJsonLayer',
+ id: 'MlGeoJsonLayer-Station',
+ stationTitle: 'MlGeoJsonLayer.title',
+ description: 'MlGeoJsonLayer.description',
+ breakpoint: [7.087355551216711, 50.75253402948829],
+ markerCoordinates: [7.084156, 50.755443],
+ presentationPosition: {
+ zoom: 14.9,
+ pitch: 20,
+ bearing: 330,
+ },
+ },
+ {
+ label: 'MlFillExtrusionLayer',
+ id: 'MlFillExtrusionLayer-Station',
+ stationTitle: 'MlFillExtrusionLayer.title',
+ description: 'MlFillExtrusionLayer.description',
+ breakpoint: [7.089958056461611, 50.74361199615757],
+ markerCoordinates: [7.08995806, 50.743612],
+ presentationPosition: {
+ zoom: 16,
+ pitch: 45,
+ bearing: 180,
+ },
+ },
+ {
+ label: 'MlIconLayer',
+ id: 'MlIconLayer-Station',
+ stationTitle: 'MlIconLayer.title',
+ description: 'MlIconLayer.description',
+ breakpoint: [7.098939161759019, 50.74014846518186],
+ markerCoordinates: [7.09893916, 50.74014847],
+ presentationPosition: {
+ zoom: 16,
+ pitch: 45,
+ bearing: 180,
+ },
+ },
+ {
+ label: 'MlMapMagnify',
+ id: 'MlMapMagnify-Station',
+ stationTitle: 'MlMapMagnify.title',
+ description: 'MlMapMagnify.description',
+ breakpoint: [7.077900099390418, 50.72942598571806],
+ markerCoordinates: [7.07094, 50.73064],
+ presentationPosition: {
+ zoom: 14.9,
+ pitch: 50,
+ bearing: 230,
+ },
+ },
+ {
+ label: 'MlHexagonMap',
+ id: 'MlHexagonMap-Station',
+ stationTitle: 'MlHexagonMap.title',
+ description: 'MlHexagonMap.description',
+ breakpoint: [7.117405153027723, 50.719066572026435],
+ markerCoordinates: [7.1161140331124955, 50.724392629576926],
+ presentationPosition: {
+ zoom: 14.9,
+ pitch: 75,
+ bearing: 120,
+ },
+ },
+ {
+ label: 'PointCloud',
+ id: 'PointCloud-Station',
+ stationTitle: 'PointCloud.title',
+ description: 'PointCloud.description',
+ breakpoint: [7.143431851902436, 50.71761182062817],
+ markerCoordinates: [7.147225, 50.722738],
+ presentationPosition: {
+ zoom: 16.5,
+ pitch: 70,
+ bearing: 20,
+ },
+ },
+ {
+ label: 'MlCreatePdfForm',
+ id: 'MlCreatePdfForm-Station',
+ stationTitle: 'MlCreatePdfForm.title',
+ description: 'MlCreatePdfForm.description',
+ breakpoint: [7.225963879312019, 50.76098226444658],
+ markerCoordinates: [7.22596388, 50.76098226],
+ presentationPosition: {
+ zoom: 14.9,
+ pitch: 0,
+ bearing: 0,
+ },
+ },
+ {
+ label: 'MlTerrainLayer',
+ id: 'MlTerrainLayer-Station',
+ stationTitle: 'MlTerrainLayer.title',
+ description: 'MlTerrainLayer.description',
+ breakpoint: [7.27501663089742, 50.78439051649292],
+ markerCoordinates: [7.27501663, 50.78439052],
+ presentationPosition: {
+ zoom: 16,
+ pitch: 45,
+ bearing: 180,
+ },
+ },
+ {
+ label: 'MultiTab',
+ id: 'MultiTab-Station',
+ stationTitle: 'MultiTab.title',
+ description: 'MultiTab.description',
+ breakpoint: [7.193647087933583, 50.87354147861542],
+ markerCoordinates: [7.19364709, 50.87354148],
+ presentationPosition: {
+ zoom: 16,
+ pitch: 45,
+ bearing: 180,
+ },
+ },
+ {
+ label: '3DTiles',
+ id: '3DTiles-Station',
+ stationTitle: '3DTiles.title',
+ description: '3DTiles.description',
+ breakpoint: [9.928492094755804, 53.43130875716747],
+ markerCoordinates: [9.92849209, 53.43130876],
+ presentationPosition: {
+ zoom: 16,
+ pitch: 45,
+ bearing: 180,
+ },
+ },
+ ];
+ const mapHook = useMap({mapId: 'map_1'});
+
+ const [selectedStation, setSelectedStation] = useState(undefined);
+ const [selectedStationIndex, setSelectedStationIndex] = useState(undefined);
+
+ const selectStationById = useCallback((id: string) => {
+ const station = stationInformations.find((s) => s.id === id);
+ const index = stationInformations.findIndex((s) => s.id === id);
+ if (station) {
+ setSelectedStation(station);
+ }
+ if (index || index === 0) {
+ setSelectedStationIndex(index);
+ }
+ }, []);
+
+ const nextStation = () => {
+ let currentStation = 0
+ setSelectedStationIndex((prevState) => {
+ if (prevState === undefined) {
+ currentStation = 0;
+ return 0;
+ } else if (prevState + 1 > stationInformations.length - 1){
+ currentStation = 0;
+ return 0;
+ }
+ else {
+ currentStation = prevState + 1;
+ return prevState + 1;
+ }
+ });
+ if (mapHook.map) {
+ mapHook.map.easeTo({
+ center: stationInformations[currentStation].breakpoint as LngLatLike,
+ ...stationInformations[currentStation].presentationPosition,
+ });
+ }
+ setSelectedStation(stationInformations[currentStation])
+ };
+
+ const resetStations = () => {
+ setSelectedStationIndex(undefined);
+ }
+
+ return (
+
+ {children}
+
+ );
+};
+
+export const useStationContext = () => {
+ const ctx = useContext(StationContext);
+ if (!ctx) throw new Error('useStationContext must be used within StationProvider');
+ return ctx;
+};
diff --git a/apps/story-map/src/i18n.ts b/apps/story-map/src/i18n.ts
new file mode 100644
index 00000000..dbe6ed48
--- /dev/null
+++ b/apps/story-map/src/i18n.ts
@@ -0,0 +1,118 @@
+import i18n from 'i18next';
+import { initReactI18next } from 'react-i18next';
+
+const resources = {
+ en: {
+ translation: {
+ // button labels
+ LanguageSwitcherButton: 'deutsch',
+ StartWalkThroughButton: 'start walk through',
+ StopWalkThroughButton: 'stop walk through',
+ ControlInformationButton: 'Controls',
+
+ // marker content - titles
+ 'MlMarker.title': 'Marker',
+ 'useCameraFollowPath.title': 'Camera follows a path',
+ 'MlThreeJsLayer.title': '3D models',
+ 'MlGeoJsonLayer.title': 'GeoJSON objects',
+ 'MlFillExtrusionLayer.title': '2D to 3D (extrusion)',
+ 'MlIconLayer.title': 'Animation of icons',
+ 'MlMapMagnify.title': 'Map curtain',
+ 'MlHexagonMap.title': 'Noise Map (with deck.gl)',
+ 'PointCloud.title': 'Point Cloud',
+ 'MlCreatePdfForm.title': 'PDF of a map view',
+ 'MlTerrainLayer.title': 'Terrain visualisation',
+ 'MultiTab.title': 'Communication between browser tabs',
+ '3DTiles.title': 'Photorealistic 3D tiles',
+
+ // marker content - descriptions
+ 'MlMarker.description':
+ "Hi, I'm a marker. I'll show you around and introduce you to some other exciting components.",
+ 'useCameraFollowPath.description':
+ 'Fancy an exciting journey? Come with me and discover a selection of interesting components!',
+ 'MlThreeJsLayer.description': "I'm 3D. Cool, isn't it? Can you see my shadow?",
+ 'MlGeoJsonLayer.description':
+ "Points, LineStrings or Polygons? It doesn't matter, with me you can easily represent all these geometric types.",
+ 'MlFillExtrusionLayer.description':
+ 'Simply turn 2D into 3D? Why not! I do this by extrusion.',
+ 'MlIconLayer.description': "That's cool! Now there's really some movement on the map!",
+ 'MlMapMagnify.description':
+ 'Take a quick peek behind the curtain! What could be hiding behind it?',
+ 'MlHexagonMap.description':
+ "It's pretty noisy here on the street! Time to create a noise map.",
+ 'PointCloud.description':
+ "Imagine lots of three-dimensional points coming together to form an object. That's a point cloud. How beautiful!",
+ 'MlCreatePdfForm.description':
+ 'Move it a little more to the left! Make it a little bigger... Perfect, now the view fits! Now just create the PDF.',
+ 'MlTerrainLayer.description':
+ "Phew, it's quite hilly here! Let's take a closer look at the terrain!",
+ 'MultiTab.description':
+ "Sometimes one browser tab isn't enough? No problem, communication also works between different tabs! Feel free to give it a try.",
+ '3DTiles.description':
+ "A must-see on any trip to Hamburg! The Elbphilharmonie. So realistic, it's almost like being there.",
+ },
+ },
+ de: {
+ translation: {
+ // button labels
+ LanguageSwitcherButton: 'english',
+ StartWalkThroughButton: 'durchlauf starten',
+ StopWalkThroughButton: 'durchlauf stoppen',
+ ControlInformationButton: 'Bewegungs-Information',
+
+ // marker content - titles
+ 'MlMarker.title': 'Marker',
+ 'useCameraFollowPath.title': 'Kamera folgt einer Route',
+ 'MlThreeJsLayer.title': '3D-Modelle',
+ 'MlGeoJsonLayer.title': 'GeoJSON Objekte',
+ 'MlFillExtrusionLayer.title': '2D zu 3D (Extrusion)',
+ 'MlIconLayer.title': 'Animation von Symbolen',
+ 'MlMapMagnify.title': 'Kartenvorhang',
+ 'MlHexagonMap.title': 'Lärmkarte (mit deck.gl)',
+ 'PointCloud.title': 'Punktwolke',
+ 'MlCreatePdfForm.title': 'PDF eines Kartenausschnitts',
+ 'MlTerrainLayer.title': 'Geländedarstellung',
+ 'MultiTab.title': 'Kommunikation zwischen Browser-Tabs',
+ '3DTiles.title': 'Fotorealistische 3D-Kacheln',
+
+ // marker content - descriptions
+ 'MlMarker.description':
+ 'Hi, ich bin ein Marker. Ich führe dich etwas herum und stelle dir weitere spannende Komponenten vor.',
+ 'useCameraFollowPath.description':
+ 'Lust auf eine aufregende Reise? Komm mit und entdecke mit mir eine Auswahl an spannenden Komponenten!',
+ 'MlThreeJsLayer.description': 'Ich bin 3D. Cool, oder? Siehst du meinen Schattenwurf?',
+ 'MlGeoJsonLayer.description':
+ 'Punkte, Linien oder Flächen? Egal, mit mir kannst du einfach all diese Geometrieformen darstellen.',
+ 'MlFillExtrusionLayer.description':
+ 'Einfach aus 2D 3D machen? Warum nicht! Ich mache das durch Extrusion.',
+ 'MlIconLayer.description': 'Das ist ja cool! Jetzt kommt richtig Bewegung auf die Karte!',
+ 'MlMapMagnify.description':
+ 'Kurz mal hinter den Vorhang linsen! Was sich dahinter wohl verbirgt?',
+ 'MlHexagonMap.description':
+ 'Ganz schön laut hier auf der Straße! Zeit, mal eine Lärmkarte zu erstellen.',
+ 'PointCloud.description':
+ 'Stell dir vor, ganz viele dreidimensionale Punkte versammeln sich zu einer Form eines Objekts. Das ist eine Punktwolke. Wie schön!',
+ 'MlCreatePdfForm.description':
+ 'Noch ein bisschen mehr nach links verschieben! Noch ein bisschen größer ziehen... Perfekt, jetzt passt der Ausschnitt! Jetzt nur noch das PDF erstellen.',
+ 'MlTerrainLayer.description':
+ 'Puh, ganz schön hügelig hier! Lass uns das Gelände mal genauer anschauen!',
+ 'MultiTab.description':
+ 'Manchmal ist ein Browser-Tab nicht genug? Kein Problem, die Kommunikation funktioniert auch zwischen verschiedenen Tabs! Probiere es gerne aus.',
+ '3DTiles.description':
+ 'Darf bei keinem Ausflug nach Hamburg fehlen! Die Elbphilharmonie. So realistisch, als würdest du fast vor Ort sein.',
+ },
+ },
+};
+
+i18n
+ .use(initReactI18next) // passes i18n down to react-i18next
+ .init({
+ resources,
+ lng: 'de', // default language
+ fallbackLng: 'en',
+ interpolation: {
+ escapeValue: false, // react already safes from xss
+ },
+ });
+
+export default i18n;
diff --git a/apps/story-map/src/index.css b/apps/story-map/src/index.css
new file mode 100644
index 00000000..90b0360d
--- /dev/null
+++ b/apps/story-map/src/index.css
@@ -0,0 +1,3 @@
+body {
+ padding: 0;
+}
diff --git a/apps/story-map/src/main.tsx b/apps/story-map/src/main.tsx
new file mode 100644
index 00000000..463c9d9a
--- /dev/null
+++ b/apps/story-map/src/main.tsx
@@ -0,0 +1,20 @@
+import React from 'react';
+import ReactDOM from 'react-dom/client';
+import App from './App';
+import './index.css';
+import 'maplibre-gl/dist/maplibre-gl.css';
+import { MapComponentsProvider } from '@mapcomponents/react-maplibre';
+import { StationProvider } from './contexts/StationContext';
+import { DeckGlContextProvider } from '@mapcomponents/deck-gl';
+
+ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
+
+
+
+
+
+
+
+
+
+);
diff --git a/apps/story-map/src/styles.css b/apps/story-map/src/styles.css
new file mode 100644
index 00000000..90d4ee00
--- /dev/null
+++ b/apps/story-map/src/styles.css
@@ -0,0 +1 @@
+/* You can add global styles to this file, and also import other style files */
diff --git a/apps/story-map/src/utils/markerContent.ts b/apps/story-map/src/utils/markerContent.ts
new file mode 100644
index 00000000..32f7ca65
--- /dev/null
+++ b/apps/story-map/src/utils/markerContent.ts
@@ -0,0 +1,33 @@
+import { TFunction } from 'i18next';
+
+/**
+ * Creates HTML content for markers using i18n translations
+ * @param t - The translation function from useTranslation
+ * @param stationTitle - Translation key for the station title
+ * @param label - Translation key for the marker label
+ * @param description - Translation key for the marker description
+ * @param coordinates - Coordinates string to display (optional)
+ * @returns HTML string for marker content
+ */
+export const createMarkerContentHtml = (
+ t: TFunction,
+ stationTitle: string,
+ label: string,
+ description: string,
+ markerCoordinates: string
+): string => {
+ return `
+
+
+ ${t(stationTitle)}
+
+
+ ${t(label)}
+
+
${t(description)}
+
+
📍 ${markerCoordinates}
+
+
+ `;
+};
diff --git a/apps/story-map/src/vite-env.d.ts b/apps/story-map/src/vite-env.d.ts
new file mode 100644
index 00000000..11f02fe2
--- /dev/null
+++ b/apps/story-map/src/vite-env.d.ts
@@ -0,0 +1 @@
+///
diff --git a/apps/story-map/tsconfig.json b/apps/story-map/tsconfig.json
new file mode 100644
index 00000000..e00568e1
--- /dev/null
+++ b/apps/story-map/tsconfig.json
@@ -0,0 +1,26 @@
+{
+ "compilerOptions": {
+ "target": "ES2023",
+ "useDefineForClassFields": true,
+ "lib": ["ES2023", "DOM", "DOM.Iterable"],
+ "module": "ESNext",
+ "skipLibCheck": true,
+ "noImplicitAny": false,
+
+ /* Bundler mode */
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "allowSyntheticDefaultImports": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "react-jsx",
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noFallthroughCasesInSwitch": true,
+ },
+ "include": ["src", "../../packages/react-maplibre/src", "../../packages/deck-gl/src"],
+ "extends": "../../tsconfig.base.json"
+}
diff --git a/apps/story-map/vite.config.ts b/apps/story-map/vite.config.ts
new file mode 100644
index 00000000..71b7023a
--- /dev/null
+++ b/apps/story-map/vite.config.ts
@@ -0,0 +1,23 @@
+///
+import { defineConfig } from 'vite';
+import react from '@vitejs/plugin-react';
+import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
+import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin';
+
+export default defineConfig(() => ({
+ root: __dirname,
+ cacheDir: '../../node_modules/.vite/apps/story-map',
+ plugins: [react(), nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])],
+ // Uncomment this if you are using workers.
+ // worker: {
+ // plugins: [ nxViteTsPaths() ],
+ // },
+ build: {
+ outDir: '../../dist/apps/story-map',
+ emptyOutDir: true,
+ reportCompressedSize: true,
+ commonjsOptions: {
+ transformMixedEsModules: true,
+ },
+ },
+}));
diff --git a/package.json b/package.json
index 47be638f..dc72a91b 100644
--- a/package.json
+++ b/package.json
@@ -18,8 +18,8 @@
"babel-plugin-inline-react-svg": "^2.0.2",
"babel-plugin-styled-components": "^2.1.4",
"globals": "^16.3.0",
- "react": "19.1.0",
- "react-dom": "19.1.0"
+ "react": "19.2.1",
+ "react-dom": "19.2.1"
},
"devDependencies": {
"@babel/core": "^7.28.3",
diff --git a/packages/deck-gl/src/hooks/useDeckGl.tsx b/packages/deck-gl/src/hooks/useDeckGl.tsx
index 05b19573..35784ece 100644
--- a/packages/deck-gl/src/hooks/useDeckGl.tsx
+++ b/packages/deck-gl/src/hooks/useDeckGl.tsx
@@ -4,21 +4,16 @@ import { Layer } from '@deck.gl/core';
function useDeckGl() {
const deckGlContext = useContext(DeckGlContext);
- const layerArray = deckGlContext.deckGlLayerArray;
function addLayer(layer: Layer) {
- const newDeckGLLayerArray = [...layerArray];
- newDeckGLLayerArray.push(layer);
- deckGlContext.setDeckGlLayerArray(newDeckGLLayerArray);
+ deckGlContext.setDeckGlLayerArray(prevState => [...prevState, layer])
}
function removeLayer(layer: Layer) {
- const newDeckGLLayerArray = layerArray.filter((l) => l !== layer);
- deckGlContext.setDeckGlLayerArray(newDeckGLLayerArray);
+ deckGlContext.setDeckGlLayerArray(prevState => prevState.filter((l) => l !== layer));
}
return {
addLayer,
removeLayer,
- layerArray,
};
}
export default useDeckGl;
diff --git a/packages/react-maplibre/src/index.ts b/packages/react-maplibre/src/index.ts
index 21c4a87f..7bcafe1b 100644
--- a/packages/react-maplibre/src/index.ts
+++ b/packages/react-maplibre/src/index.ts
@@ -12,6 +12,8 @@ export { default as MlCreatePdfButton } from './components/MlCreatePdfButton/MlC
export { default as MlCreatePdfForm } from './components/MlCreatePdfForm/MlCreatePdfForm';
export { default as MlPdfPreview } from './components/MlCreatePdfForm/lib/PdfPreview';
export { default as PdfContext } from './components/MlCreatePdfForm/lib/PdfContext';
+export { PdfContextProvider } from './components/MlCreatePdfForm/lib/PdfContext';
+export * from './components/MlCreatePdfForm/lib/PdfForm';
export { default as PdfForm } from './components/MlCreatePdfForm/lib/PdfForm';
export { default as MlFeatureEditor } from './components/MlFeatureEditor/MlFeatureEditor';
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b49b22c0..06162647 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,101 +10,101 @@ importers:
dependencies:
'@babel/plugin-transform-typescript':
specifier: ^7.28.0
- version: 7.28.0(@babel/core@7.28.3)
+ version: 7.28.5(@babel/core@7.28.5)
'@cypress/react':
specifier: ^9.0.1
- version: 9.0.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(cypress@14.5.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 9.0.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(cypress@14.5.4)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@eslint/eslintrc':
specifier: ^3.3.1
version: 3.3.1
'@storybook/addon-docs':
specifier: ^9.1.4
- version: 9.1.4(@types/react@19.1.8)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))
+ version: 9.1.16(@types/react@19.1.8)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))
'@storybook/addons':
specifier: ^7.6.17
- version: 7.6.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 7.6.17(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@typescript-eslint/eslint-plugin':
specifier: ^8.42.0
- version: 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
+ version: 8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
'@typescript-eslint/parser':
specifier: ^8.42.0
- version: 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
+ version: 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
babel-plugin-inline-react-svg:
specifier: ^2.0.2
- version: 2.0.2(@babel/core@7.28.3)
+ version: 2.0.2(@babel/core@7.28.5)
babel-plugin-styled-components:
specifier: ^2.1.4
- version: 2.1.4(@babel/core@7.28.3)(styled-components@6.1.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ version: 2.1.4(@babel/core@7.28.5)(styled-components@6.1.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1))
globals:
specifier: ^16.3.0
- version: 16.3.0
+ version: 16.5.0
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.1
+ version: 19.2.1
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.1
+ version: 19.2.1(react@19.2.1)
devDependencies:
'@babel/core':
specifier: ^7.28.3
- version: 7.28.3
+ version: 7.28.5
'@babel/plugin-proposal-private-property-in-object':
specifier: ^7.21.11
- version: 7.21.11(@babel/core@7.28.3)
+ version: 7.21.11(@babel/core@7.28.5)
'@babel/preset-react':
specifier: ^7.27.1
- version: 7.27.1(@babel/core@7.28.3)
+ version: 7.28.5(@babel/core@7.28.5)
'@cypress/webpack-dev-server':
specifier: ^4.1.1
- version: 4.1.1(@rspack/core@1.5.2(@swc/helpers@0.5.17))(cypress@14.5.4)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
+ version: 4.1.1(@rspack/core@1.6.5(@swc/helpers@0.5.17))(cypress@14.5.4)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
'@eslint/js':
specifier: ^9.34.0
- version: 9.34.0
+ version: 9.39.1
'@nrwl/vite':
specifier: ^19.8.4
- version: 19.8.4(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))(vitest@3.2.4)
+ version: 19.8.4(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))(vitest@3.2.4)
'@nx/cypress':
specifier: ^21.5.1
- version: 21.5.1(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@14.5.4)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)
+ version: 21.6.9(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@14.5.4)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)
'@nx/eslint':
specifier: 21.2.2
- version: 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ version: 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
'@nx/eslint-plugin':
specifier: 21.2.2
- version: 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3))(eslint-config-prettier@10.1.8(eslint@9.34.0(jiti@2.4.2)))(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)
+ version: 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3))(eslint-config-prettier@10.1.8(eslint@9.39.1(jiti@2.4.2)))(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)
'@nx/js':
specifier: 21.3.10
- version: 21.3.10(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ version: 21.3.10(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
'@nx/react':
specifier: 21.2.2
- version: 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(@zkochan/js-yaml@0.0.7)(esbuild@0.25.9)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
+ version: 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(@zkochan/js-yaml@0.0.7)(esbuild@0.25.12)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.8.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
'@nx/storybook':
specifier: 21.2.2
- version: 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@14.5.4)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.8.3)
+ version: 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@14.5.4)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.8.3)
'@nx/vite':
specifier: 21.3.10
- version: 21.3.10(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))(vitest@3.2.4)
+ version: 21.3.10(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))(vitest@3.2.4)
'@nx/web':
specifier: 21.3.10
- version: 21.3.10(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ version: 21.3.10(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
'@nx/workspace':
specifier: ^21.4.1
- version: 21.4.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ version: 21.6.9(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
'@storybook/addon-links':
specifier: ^9.1.4
- version: 9.1.4(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))
+ version: 9.1.16(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))
'@storybook/react-vite':
specifier: 9.1.1
- version: 9.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rollup@4.50.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ version: 9.1.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(rollup@4.53.3)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
'@storybook/testing-react':
specifier: ^2.0.1
- version: 2.0.1(@storybook/client-logger@7.6.17)(@storybook/preview-api@7.6.17)(@storybook/react@9.1.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.8.3))(@storybook/types@7.6.17)(react@19.1.0)
+ version: 2.0.1(@storybook/client-logger@7.6.17)(@storybook/preview-api@7.6.17)(@storybook/react@9.1.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.8.3))(@storybook/types@7.6.17)(react@19.2.1)
'@swc-node/register':
specifier: ~1.10.10
- version: 1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3)
+ version: 1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3)
'@swc/cli':
specifier: ~0.7.8
- version: 0.7.8(@swc/core@1.12.14(@swc/helpers@0.5.17))(chokidar@4.0.3)
+ version: 0.7.9(@swc/core@1.12.14(@swc/helpers@0.5.17))(chokidar@4.0.3)
'@swc/core':
specifier: ~1.12.14
version: 1.12.14(@swc/helpers@0.5.17)
@@ -116,10 +116,10 @@ importers:
version: 10.4.0
'@testing-library/react':
specifier: 16.3.0
- version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@types/node':
specifier: ^24.3.1
- version: 24.3.1
+ version: 24.10.1
'@types/react':
specifier: 19.1.8
version: 19.1.8
@@ -128,7 +128,7 @@ importers:
version: 19.1.6(@types/react@19.1.8)
'@vitejs/plugin-react':
specifier: ^4.7.0
- version: 4.7.0(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ version: 4.7.0(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
'@vitest/ui':
specifier: ^3.2.4
version: 3.2.4(vitest@3.2.4)
@@ -140,31 +140,31 @@ importers:
version: 14.5.4
eslint:
specifier: ^9.34.0
- version: 9.34.0(jiti@2.4.2)
+ version: 9.39.1(jiti@2.4.2)
eslint-config-prettier:
specifier: ^10.1.8
- version: 10.1.8(eslint@9.34.0(jiti@2.4.2))
+ version: 10.1.8(eslint@9.39.1(jiti@2.4.2))
eslint-plugin-cypress:
specifier: ^5.1.1
- version: 5.1.1(eslint@9.34.0(jiti@2.4.2))
+ version: 5.2.0(eslint@9.39.1(jiti@2.4.2))
eslint-plugin-import:
specifier: 2.32.0
- version: 2.32.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.34.0(jiti@2.4.2))
+ version: 2.32.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.39.1(jiti@2.4.2))
eslint-plugin-jsx-a11y:
specifier: 6.10.2
- version: 6.10.2(eslint@9.34.0(jiti@2.4.2))
+ version: 6.10.2(eslint@9.39.1(jiti@2.4.2))
eslint-plugin-react:
specifier: 7.37.5
- version: 7.37.5(eslint@9.34.0(jiti@2.4.2))
+ version: 7.37.5(eslint@9.39.1(jiti@2.4.2))
eslint-plugin-react-hooks:
specifier: 5.2.0
- version: 5.2.0(eslint@9.34.0(jiti@2.4.2))
+ version: 5.2.0(eslint@9.39.1(jiti@2.4.2))
eslint-plugin-storybook:
specifier: 9.1.1
- version: 9.1.1(eslint@9.34.0(jiti@2.4.2))(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.8.3)
+ version: 9.1.1(eslint@9.39.1(jiti@2.4.2))(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.8.3)
html-webpack-plugin:
specifier: ^5.6.4
- version: 5.6.4(@rspack/core@1.5.2(@swc/helpers@0.5.17))(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
+ version: 5.6.5(@rspack/core@1.6.5(@swc/helpers@0.5.17))(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
jiti:
specifier: 2.4.2
version: 2.4.2
@@ -173,19 +173,19 @@ importers:
version: 26.1.0
nx:
specifier: 21.3.10
- version: 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ version: 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
prettier:
specifier: ^3.6.2
version: 3.6.2
storybook:
specifier: 9.1.1
- version: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ version: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
syncpack:
specifier: ^13.0.4
version: 13.0.4(typescript@5.8.3)
ts-node:
specifier: 10.9.2
- version: 10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.8.3)
+ version: 10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.8.3)
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -194,16 +194,107 @@ importers:
version: 5.8.3
typescript-eslint:
specifier: ^8.42.0
- version: 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
+ version: 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
vite:
specifier: ^7.1.4
- version: 7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)
+ version: 7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
vite-plugin-dts:
specifier: ~4.5.4
- version: 4.5.4(@types/node@24.3.1)(rollup@4.50.0)(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ version: 4.5.4(@types/node@24.10.1)(rollup@4.53.3)(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
vitest:
specifier: ^3.2.4
- version: 3.2.4(@types/node@24.3.1)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.44.0)(yaml@2.8.1)
+ version: 3.2.4(@types/node@24.10.1)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.44.1)(yaml@2.8.1)
+
+ apps/story-map:
+ dependencies:
+ '@deck.gl/aggregation-layers':
+ specifier: ^9.2.2
+ version: 9.2.2(@deck.gl/core@9.2.2)(@deck.gl/layers@9.2.2(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))))(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))
+ '@deck.gl/core':
+ specifier: ^9.2.2
+ version: 9.2.2
+ '@deck.gl/geo-layers':
+ specifier: ^9.2.2
+ version: 9.2.5(@deck.gl/core@9.2.2)(@deck.gl/extensions@9.2.5(@deck.gl/core@9.2.2)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))))(@deck.gl/layers@9.2.2(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))))(@deck.gl/mesh-layers@9.2.5(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/gltf@9.2.4(@luma.gl/constants@9.2.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@loaders.gl/core@4.3.4)(@luma.gl/constants@9.2.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))
+ '@emotion/react':
+ specifier: ^11.14.0
+ version: 11.14.0(@types/react@19.2.7)(react@19.2.1)
+ '@emotion/styled':
+ specifier: ^11.14.1
+ version: 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@geomatico/maplibre-cog-protocol':
+ specifier: ^0.8.0
+ version: 0.8.0(maplibre-gl@5.14.0)
+ '@mapcomponents/react-maplibre':
+ specifier: workspace:^
+ version: link:../../packages/react-maplibre/dist
+ '@mui/icons-material':
+ specifier: ^7.3.6
+ version: 7.3.6(@mui/material@7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@mui/material':
+ specifier: ^7.3.6
+ version: 7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@turf/turf':
+ specifier: ^7.3.1
+ version: 7.3.1
+ d3:
+ specifier: ^7.9.0
+ version: 7.9.0
+ geojson:
+ specifier: ^0.5.0
+ version: 0.5.0
+ i18next:
+ specifier: ^25.7.2
+ version: 25.7.2(typescript@5.9.3)
+ maplibre-gl:
+ specifier: ^5.14.0
+ version: 5.14.0
+ react-draggable:
+ specifier: ^4.5.0
+ version: 4.5.0(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react-i18next:
+ specifier: ^16.4.1
+ version: 16.4.1(i18next@25.7.2(typescript@5.9.3))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.9.3)
+ three:
+ specifier: ^0.182.0
+ version: 0.182.0
+ three-stdlib:
+ specifier: ^2.36.1
+ version: 2.36.1(three@0.182.0)
+ devDependencies:
+ '@types/geojson':
+ specifier: ^7946.0.16
+ version: 7946.0.16
+ '@types/react':
+ specifier: ^19.2.7
+ version: 19.2.7
+ '@types/react-dom':
+ specifier: ^19.2.3
+ version: 19.2.3(@types/react@19.2.7)
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^8.49.0
+ version: 8.49.0(@typescript-eslint/parser@8.49.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ '@typescript-eslint/parser':
+ specifier: ^8.49.0
+ version: 8.49.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ '@vitejs/plugin-react':
+ specifier: ^5.1.2
+ version: 5.1.2(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+ eslint:
+ specifier: ^9.39.1
+ version: 9.39.1(jiti@2.4.2)
+ eslint-plugin-react-hooks:
+ specifier: ^7.0.1
+ version: 7.0.1(eslint@9.39.1(jiti@2.4.2))
+ eslint-plugin-react-refresh:
+ specifier: ^0.4.24
+ version: 0.4.24(eslint@9.39.1(jiti@2.4.2))
+ typescript:
+ specifier: ^5.9.3
+ version: 5.9.3
+ vite:
+ specifier: ^7.2.7
+ version: 7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
apps/storybook-composition: {}
@@ -217,28 +308,59 @@ importers:
dependencies:
'@deck.gl/aggregation-layers':
specifier: ^9.1.14
- version: 9.1.14(@deck.gl/core@9.1.14)(@deck.gl/layers@9.1.14(@deck.gl/core@9.1.14)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.1.9)(@luma.gl/engine@9.1.9(@luma.gl/core@9.1.9)(@luma.gl/shadertools@9.1.9(@luma.gl/core@9.1.9))))(@luma.gl/core@9.1.9)(@luma.gl/engine@9.1.9(@luma.gl/core@9.1.9)(@luma.gl/shadertools@9.1.9(@luma.gl/core@9.1.9)))
+ version: 9.2.2(@deck.gl/core@9.2.2)(@deck.gl/layers@9.2.2(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))))(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))
+ '@deck.gl/core':
+ specifier: ^9.1.14
+ version: 9.2.2
+ '@deck.gl/mapbox':
+ specifier: ^9.1.14
+ version: 9.2.2(@deck.gl/core@9.2.2)(@luma.gl/constants@9.2.4)(@luma.gl/core@9.2.4)(@math.gl/web-mercator@4.1.0)
+ '@mapcomponents/react-maplibre':
+ specifier: workspace:^
+ version: link:../react-maplibre/dist
+ '@mui/icons-material':
+ specifier: ^7.3.2
+ version: 7.3.5(@mui/material@7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@mui/material':
+ specifier: ^7.3.2
+ version: 7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@storybook/react':
+ specifier: ^9.1.4
+ version: 9.1.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.9.3)
+ maplibre-gl:
+ specifier: ^5.7.0
+ version: 5.13.0
+ devDependencies:
+ '@types/geojson':
+ specifier: ^7946.0.16
+ version: 7946.0.16
+
+ packages/deck-gl/dist:
+ dependencies:
+ '@deck.gl/aggregation-layers':
+ specifier: ^9.1.14
+ version: 9.2.2(@deck.gl/core@9.2.2)(@deck.gl/layers@9.2.2(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))))(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))
'@deck.gl/core':
specifier: ^9.1.14
- version: 9.1.14
+ version: 9.2.2
'@deck.gl/mapbox':
specifier: ^9.1.14
- version: 9.1.14(@deck.gl/core@9.1.14)(@luma.gl/core@9.1.9)
+ version: 9.2.2(@deck.gl/core@9.2.2)(@luma.gl/constants@9.2.4)(@luma.gl/core@9.2.4)(@math.gl/web-mercator@4.1.0)
'@mapcomponents/react-maplibre':
specifier: workspace:^
- version: link:../react-maplibre
+ version: link:../../react-maplibre/dist
'@mui/icons-material':
specifier: ^7.3.2
- version: 7.3.2(@mui/material@7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
+ version: 7.3.5(@mui/material@7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
'@mui/material':
specifier: ^7.3.2
- version: 7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@storybook/react':
specifier: ^9.1.4
- version: 9.1.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.9.2)
+ version: 9.1.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.9.3)
maplibre-gl:
specifier: ^5.7.0
- version: 5.7.1
+ version: 5.13.0
devDependencies:
'@types/geojson':
specifier: ^7946.0.16
@@ -248,25 +370,25 @@ importers:
dependencies:
'@emotion/react':
specifier: ^11.14.0
- version: 11.14.0(@types/react@19.1.12)(react@19.1.0)
+ version: 11.14.0(@types/react@19.2.7)(react@19.2.1)
'@emotion/styled':
specifier: ^11.14.1
- version: 11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
+ version: 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
'@mapcomponents/react-maplibre':
specifier: workspace:^
- version: link:../react-maplibre
+ version: link:../react-maplibre/dist
'@mui/icons-material':
specifier: ^7.3.2
- version: 7.3.2(@mui/material@7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
+ version: 7.3.5(@mui/material@7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
'@mui/material':
specifier: ^7.3.2
- version: 7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@turf/helpers':
specifier: ^7.2.0
- version: 7.2.0
+ version: 7.3.0
'@turf/turf':
specifier: ^7.2.0
- version: 7.2.0
+ version: 7.3.0
'@types/geojson':
specifier: ^7946.0.16
version: 7946.0.16
@@ -275,16 +397,16 @@ importers:
version: 4.17.21
maplibre-gl:
specifier: ^5.7.0
- version: 5.7.1
+ version: 5.13.0
ra-data-fakerest:
specifier: ^5.11.0
- version: 5.11.0(ra-core@5.11.0(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.62.0(react@19.1.0))(react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0))
+ version: 5.13.2(ra-core@5.13.2(@tanstack/react-query@5.90.10(react@19.2.1))(react-dom@19.2.1(react@19.2.1))(react-hook-form@7.66.1(react@19.2.1))(react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1))
react-admin:
specifier: ^5.11.0
- version: 5.11.0(@mui/system@7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@mui/utils@7.3.2(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(csstype@3.1.3)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)
+ version: 5.13.2(@mui/system@7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@mui/utils@7.3.6(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(csstype@3.2.3)(react-dom@19.2.1(react@19.2.1))(react-is@19.2.0)(react@19.2.1)
react-router-dom:
specifier: ^7.8.2
- version: 7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
wellknown:
specifier: ^0.5.0
version: 0.5.0
@@ -293,25 +415,25 @@ importers:
dependencies:
'@dnd-kit/core':
specifier: ^6.3.1
- version: 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@dnd-kit/modifiers':
specifier: ^9.0.0
- version: 9.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ version: 9.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
'@dnd-kit/sortable':
specifier: ^10.0.0
- version: 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ version: 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
'@dnd-kit/utilities':
specifier: ^3.2.2
- version: 3.2.2(react@19.1.0)
+ version: 3.2.2(react@19.2.1)
'@emotion/css':
specifier: ^11.13.5
version: 11.13.5
'@emotion/react':
specifier: ^11.14.0
- version: 11.14.0(@types/react@19.1.12)(react@19.1.0)
+ version: 11.14.0(@types/react@19.2.7)(react@19.2.1)
'@emotion/styled':
specifier: ^11.14.1
- version: 11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
+ version: 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
'@mapbox/mapbox-gl-draw':
specifier: 1.4.3
version: 1.4.3
@@ -320,22 +442,22 @@ importers:
version: 0.3.1
'@mui/icons-material':
specifier: ^7.3.2
- version: 7.3.2(@mui/material@7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
+ version: 7.3.5(@mui/material@7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
'@mui/material':
specifier: ^7.3.2
- version: 7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@mui/system':
specifier: ^7.3.2
- version: 7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
+ version: 7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
'@reduxjs/toolkit':
specifier: ^2.9.0
- version: 2.9.0(react-redux@9.2.0(@types/react@19.1.12)(react@19.1.0)(redux@5.0.1))(react@19.1.0)
+ version: 2.11.0(react-redux@9.2.0(@types/react@19.2.7)(react@19.2.1)(redux@5.0.1))(react@19.2.1)
'@testing-library/dom':
specifier: ^10.4.1
version: 10.4.1
'@testing-library/jest-dom':
specifier: ^6.8.0
- version: 6.8.0
+ version: 6.9.1
'@testing-library/user-event':
specifier: ^14.6.1
version: 14.6.1(@testing-library/dom@10.4.1)
@@ -344,10 +466,10 @@ importers:
version: 7.1.2
'@turf/helpers':
specifier: ^7.2.0
- version: 7.2.0
+ version: 7.3.0
'@turf/turf':
specifier: ^7.2.0
- version: 7.2.0
+ version: 7.3.0
'@types/d3':
specifier: ^7.4.3
version: 7.4.3
@@ -356,7 +478,7 @@ importers:
version: 7946.0.16
'@types/react-color':
specifier: ^3.0.13
- version: 3.0.13(@types/react@19.1.12)
+ version: 3.0.13(@types/react@19.2.7)
'@types/topojson-client':
specifier: ^3.1.5
version: 3.1.5
@@ -377,25 +499,25 @@ importers:
version: 7.9.0
jspdf:
specifier: ^3.0.2
- version: 3.0.2
+ version: 3.0.4
maplibre-gl:
specifier: 5.6.0
version: 5.6.0
osm2geojson-lite:
specifier: ^1.1.2
- version: 1.1.2
+ version: 1.2.0
pako:
specifier: ^2.1.0
version: 2.1.0
react-color:
specifier: ^2.19.3
- version: 2.19.3(react@19.1.0)
+ version: 2.19.3(react@19.2.1)
react-moveable:
specifier: ^0.56.0
version: 0.56.0
react-redux:
specifier: ^9.2.0
- version: 9.2.0(@types/react@19.1.12)(react@19.1.0)(redux@5.0.1)
+ version: 9.2.0(@types/react@19.2.7)(react@19.2.1)(redux@5.0.1)
redux:
specifier: ^5.0.1
version: 5.0.1
@@ -417,10 +539,10 @@ importers:
devDependencies:
'@testing-library/react':
specifier: ^16.3.0
- version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.1.9(@types/react@19.1.12))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@types/chai':
specifier: ^5.2.2
- version: 5.2.2
+ version: 5.2.3
'@types/elasticlunr':
specifier: ^0.9.9
version: 0.9.9
@@ -450,10 +572,10 @@ importers:
version: 2.0.4
'@types/react':
specifier: ^19.1.12
- version: 19.1.12
+ version: 19.2.7
'@types/react-dom':
specifier: ^19.1.9
- version: 19.1.9(@types/react@19.1.12)
+ version: 19.2.3(@types/react@19.2.7)
'@types/sql.js':
specifier: ^1.4.9
version: 1.4.9
@@ -465,61 +587,61 @@ importers:
version: 10.0.0
'@typescript-eslint/eslint-plugin':
specifier: ^8.42.0
- version: 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)
+ version: 8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
'@typescript-eslint/parser':
specifier: ^8.42.0
- version: 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)
+ version: 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
avj:
specifier: ^0.0.0
version: 0.0.0
babel-jest:
specifier: ^30.1.2
- version: 30.1.2(@babel/core@7.28.3)
+ version: 30.2.0(@babel/core@7.28.5)
babel-loader:
specifier: ^10.0.0
- version: 10.0.0(@babel/core@7.28.3)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
+ version: 10.0.0(@babel/core@7.28.5)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
babel-plugin-inline-react-svg:
specifier: ^2.0.2
- version: 2.0.2(@babel/core@7.28.3)
+ version: 2.0.2(@babel/core@7.28.5)
babel-plugin-styled-components:
specifier: ^2.1.4
- version: 2.1.4(@babel/core@7.28.3)(styled-components@6.1.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ version: 2.1.4(@babel/core@7.28.5)(styled-components@6.1.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1))
babel-preset-react-app:
specifier: ^10.1.0
version: 10.1.0
chai:
specifier: ^6.0.1
- version: 6.0.1
+ version: 6.2.1
elasticlunr:
specifier: ^0.9.5
version: 0.9.5
eslint-plugin-storybook:
specifier: ^9.1.4
- version: 9.1.4(eslint@9.34.0(jiti@2.4.2))(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.9.2)
+ version: 9.1.16(eslint@9.39.1(jiti@2.4.2))(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.9.3)
glob:
specifier: ^11.0.3
- version: 11.0.3
+ version: 11.1.0
jest:
specifier: 30.0.5
- version: 30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2))
+ version: 30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))
jest-circus:
specifier: 30.0.5
version: 30.0.5(babel-plugin-macros@3.1.0)
jest-environment-jsdom:
specifier: ^30.1.2
- version: 30.1.2
+ version: 30.2.0
jest-enzyme:
specifier: ^7.1.2
- version: 7.1.2(enzyme@3.11.0)(jest@30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2)))(react@19.1.0)
+ version: 7.1.2(enzyme@3.11.0)(jest@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)))(react@19.2.1)
jest-resolve:
specifier: 30.0.5
version: 30.0.5
jest-watch-typeahead:
specifier: 3.0.1
- version: 3.0.1(jest@30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2)))
+ version: 3.0.1(jest@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)))
mocha:
specifier: ^11.7.2
- version: 11.7.2
+ version: 11.7.5
node-fetch:
specifier: ^3.3.2
version: 3.3.2
@@ -534,13 +656,13 @@ importers:
version: 3.0.0
react-dev-utils:
specifier: ^12.0.1
- version: 12.0.1(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
+ version: 12.0.1(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
react-draggable:
specifier: ^4.5.0
- version: 4.5.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 4.5.0(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
react-i18next:
specifier: ^15.7.3
- version: 15.7.3(i18next@25.5.1(typescript@5.9.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.9.2)
+ version: 15.7.4(i18next@25.7.2(typescript@5.9.3))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.9.3)
showdown:
specifier: ^2.1.0
version: 2.1.0
@@ -549,229 +671,490 @@ importers:
version: 1.13.0
ts-jest:
specifier: ^29.4.1
- version: 29.4.1(@babel/core@7.28.3)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.28.3))(esbuild@0.25.9)(jest-util@30.0.5)(jest@30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2)))(typescript@5.9.2)
+ version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(esbuild@0.25.12)(jest-util@30.2.0)(jest@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3)
ts-loader:
specifier: ^9.5.4
- version: 9.5.4(typescript@5.9.2)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
-
-packages:
-
- '@adobe/css-tools@4.4.4':
- resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==}
-
- '@ampproject/remapping@2.3.0':
- resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
- engines: {node: '>=6.0.0'}
-
- '@asamuzakjp/css-color@3.2.0':
- resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
-
- '@babel/code-frame@7.27.1':
- resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/compat-data@7.28.0':
- resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/core@7.28.3':
- resolution: {integrity: sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/generator@7.28.3':
- resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-annotate-as-pure@7.27.3':
- resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-compilation-targets@7.27.2':
- resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-create-class-features-plugin@7.28.3':
- resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-create-regexp-features-plugin@7.27.1':
- resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-define-polyfill-provider@0.6.5':
- resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
-
- '@babel/helper-globals@7.28.0':
- resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-member-expression-to-functions@7.27.1':
- resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-module-imports@7.27.1':
- resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-module-transforms@7.28.3':
- resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-optimise-call-expression@7.27.1':
- resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-plugin-utils@7.27.1':
- resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-remap-async-to-generator@7.27.1':
- resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-replace-supers@7.27.1':
- resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
- resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-string-parser@7.27.1':
- resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-identifier@7.27.1':
- resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-option@7.27.1':
- resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-wrap-function@7.28.3':
- resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helpers@7.28.3':
- resolution: {integrity: sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.28.3':
- resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1':
- resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1':
- resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1':
- resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1':
- resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
-
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3':
- resolution: {integrity: sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-proposal-class-properties@7.18.6':
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-decorators@7.28.0':
- resolution: {integrity: sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6':
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-numeric-separator@7.18.6':
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-optional-chaining@7.21.0':
- resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-private-methods@7.18.6':
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
- resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-private-property-in-object@7.21.11':
- resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-async-generators@7.8.4':
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-bigint@7.8.3':
- resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ version: 9.5.4(typescript@5.9.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
- '@babel/plugin-syntax-class-properties@7.12.13':
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ packages/react-maplibre/dist:
+ dependencies:
+ '@dnd-kit/core':
+ specifier: ^6.3.1
+ version: 6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@dnd-kit/modifiers':
+ specifier: ^9.0.0
+ version: 9.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
+ '@dnd-kit/sortable':
+ specifier: ^10.0.0
+ version: 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
+ '@dnd-kit/utilities':
+ specifier: ^3.2.2
+ version: 3.2.2(react@19.2.1)
+ '@emotion/css':
+ specifier: ^11.13.5
+ version: 11.13.5
+ '@emotion/react':
+ specifier: ^11.14.0
+ version: 11.14.0(@types/react@19.2.7)(react@19.2.1)
+ '@emotion/styled':
+ specifier: ^11.14.1
+ version: 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@mapbox/mapbox-gl-draw':
+ specifier: 1.4.3
+ version: 1.4.3
+ '@mapbox/mapbox-gl-sync-move':
+ specifier: ^0.3.1
+ version: 0.3.1
+ '@mui/icons-material':
+ specifier: ^7.3.2
+ version: 7.3.5(@mui/material@7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@mui/material':
+ specifier: ^7.3.2
+ version: 7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@mui/system':
+ specifier: ^7.3.2
+ version: 7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@reduxjs/toolkit':
+ specifier: ^2.9.0
+ version: 2.11.0(react-redux@9.2.0(@types/react@19.2.7)(react@19.2.1)(redux@5.0.1))(react@19.2.1)
+ '@testing-library/dom':
+ specifier: ^10.4.1
+ version: 10.4.1
+ '@testing-library/jest-dom':
+ specifier: ^6.8.0
+ version: 6.9.1
+ '@testing-library/user-event':
+ specifier: ^14.6.1
+ version: 14.6.1(@testing-library/dom@10.4.1)
+ '@tmcw/togeojson':
+ specifier: ^7.1.2
+ version: 7.1.2
+ '@turf/helpers':
+ specifier: ^7.2.0
+ version: 7.3.0
+ '@turf/turf':
+ specifier: ^7.2.0
+ version: 7.3.0
+ '@types/d3':
+ specifier: ^7.4.3
+ version: 7.4.3
+ '@types/geojson':
+ specifier: ^7946.0.16
+ version: 7946.0.16
+ '@types/react-color':
+ specifier: ^3.0.13
+ version: 3.0.13(@types/react@19.2.7)
+ '@types/topojson-client':
+ specifier: ^3.1.5
+ version: 3.1.5
+ '@types/topojson-specification':
+ specifier: ^1.0.5
+ version: 1.0.5
+ '@xmldom/xmldom':
+ specifier: ^0.9.8
+ version: 0.9.8
+ camelcase:
+ specifier: ^8.0.0
+ version: 8.0.0
+ csv2geojson:
+ specifier: ^5.1.2
+ version: 5.1.2
+ d3:
+ specifier: ^7.9.0
+ version: 7.9.0
+ jspdf:
+ specifier: ^3.0.2
+ version: 3.0.4
+ maplibre-gl:
+ specifier: 5.6.0
+ version: 5.6.0
+ osm2geojson-lite:
+ specifier: ^1.1.2
+ version: 1.2.0
+ pako:
+ specifier: ^2.1.0
+ version: 2.1.0
+ react-color:
+ specifier: ^2.19.3
+ version: 2.19.3(react@19.2.1)
+ react-moveable:
+ specifier: ^0.56.0
+ version: 0.56.0
+ react-redux:
+ specifier: ^9.2.0
+ version: 9.2.0(@types/react@19.2.7)(react@19.2.1)(redux@5.0.1)
+ redux:
+ specifier: ^5.0.1
+ version: 5.0.1
+ redux-thunk:
+ specifier: ^3.1.0
+ version: 3.1.0(redux@5.0.1)
+ three:
+ specifier: ^0.179.1
+ version: 0.179.1
+ topojson-client:
+ specifier: ^3.1.0
+ version: 3.1.0
+ uuid:
+ specifier: ^11.1.0
+ version: 11.1.0
+ wms-capabilities:
+ specifier: ^0.6.0
+ version: 0.6.0
+ devDependencies:
+ '@testing-library/react':
+ specifier: ^16.3.0
+ version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@types/chai':
+ specifier: ^5.2.2
+ version: 5.2.3
+ '@types/elasticlunr':
+ specifier: ^0.9.9
+ version: 0.9.9
+ '@types/enzyme':
+ specifier: ^3.10.19
+ version: 3.10.19
+ '@types/expect':
+ specifier: ^24.3.2
+ version: 24.3.2
+ '@types/jest':
+ specifier: ^30.0.0
+ version: 30.0.0
+ '@types/mapbox__mapbox-gl-draw':
+ specifier: ^1.4.9
+ version: 1.4.9
+ '@types/mapbox__point-geometry':
+ specifier: ^0.1.4
+ version: 0.1.4
+ '@types/mapbox__vector-tile':
+ specifier: ^2.0.0
+ version: 2.0.0
+ '@types/mocha':
+ specifier: ^10.0.10
+ version: 10.0.10
+ '@types/pako':
+ specifier: ^2.0.4
+ version: 2.0.4
+ '@types/react':
+ specifier: ^19.1.12
+ version: 19.2.7
+ '@types/react-dom':
+ specifier: ^19.1.9
+ version: 19.2.3(@types/react@19.2.7)
+ '@types/sql.js':
+ specifier: ^1.4.9
+ version: 1.4.9
+ '@types/three':
+ specifier: ^0.179.0
+ version: 0.179.0
+ '@types/uuid':
+ specifier: ^10.0.0
+ version: 10.0.0
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^8.42.0
+ version: 8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ '@typescript-eslint/parser':
+ specifier: ^8.42.0
+ version: 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ avj:
+ specifier: ^0.0.0
+ version: 0.0.0
+ babel-jest:
+ specifier: ^30.1.2
+ version: 30.2.0(@babel/core@7.28.5)
+ babel-loader:
+ specifier: ^10.0.0
+ version: 10.0.0(@babel/core@7.28.5)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
+ babel-plugin-inline-react-svg:
+ specifier: ^2.0.2
+ version: 2.0.2(@babel/core@7.28.5)
+ babel-plugin-styled-components:
+ specifier: ^2.1.4
+ version: 2.1.4(@babel/core@7.28.5)(styled-components@6.1.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1))
+ babel-preset-react-app:
+ specifier: ^10.1.0
+ version: 10.1.0
+ chai:
+ specifier: ^6.0.1
+ version: 6.2.1
+ elasticlunr:
+ specifier: ^0.9.5
+ version: 0.9.5
+ eslint-plugin-storybook:
+ specifier: ^9.1.4
+ version: 9.1.16(eslint@9.39.1(jiti@2.4.2))(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.9.3)
+ glob:
+ specifier: ^11.0.3
+ version: 11.1.0
+ jest:
+ specifier: 30.0.5
+ version: 30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))
+ jest-circus:
+ specifier: 30.0.5
+ version: 30.0.5(babel-plugin-macros@3.1.0)
+ jest-environment-jsdom:
+ specifier: ^30.1.2
+ version: 30.2.0
+ jest-enzyme:
+ specifier: ^7.1.2
+ version: 7.1.2(enzyme@3.11.0)(jest@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)))(react@19.2.1)
+ jest-resolve:
+ specifier: 30.0.5
+ version: 30.0.5
+ jest-watch-typeahead:
+ specifier: 3.0.1
+ version: 3.0.1(jest@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)))
+ mocha:
+ specifier: ^11.7.2
+ version: 11.7.5
+ node-fetch:
+ specifier: ^3.3.2
+ version: 3.3.2
+ path-browserify:
+ specifier: ^1.0.1
+ version: 1.0.1
+ postcss:
+ specifier: ^8.5.6
+ version: 8.5.6
+ react-app-polyfill:
+ specifier: ^3.0.0
+ version: 3.0.0
+ react-dev-utils:
+ specifier: ^12.0.1
+ version: 12.0.1(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
+ react-draggable:
+ specifier: ^4.5.0
+ version: 4.5.0(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react-i18next:
+ specifier: ^15.7.3
+ version: 15.7.4(i18next@25.7.2(typescript@5.9.3))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.9.3)
+ showdown:
+ specifier: ^2.1.0
+ version: 2.1.0
+ sql.js:
+ specifier: ^1.13.0
+ version: 1.13.0
+ ts-jest:
+ specifier: ^29.4.1
+ version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(esbuild@0.25.12)(jest-util@30.2.0)(jest@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3)
+ ts-loader:
+ specifier: ^9.5.4
+ version: 9.5.4(typescript@5.9.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
+
+packages:
+
+ '@adobe/css-tools@4.4.4':
+ resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==}
+
+ '@asamuzakjp/css-color@3.2.0':
+ resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
+
+ '@babel/code-frame@7.27.1':
+ resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/compat-data@7.28.5':
+ resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/core@7.28.5':
+ resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/generator@7.28.5':
+ resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-annotate-as-pure@7.27.3':
+ resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-compilation-targets@7.27.2':
+ resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-create-class-features-plugin@7.28.5':
+ resolution: {integrity: sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-create-regexp-features-plugin@7.28.5':
+ resolution: {integrity: sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-define-polyfill-provider@0.6.5':
+ resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+ '@babel/helper-globals@7.28.0':
+ resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-member-expression-to-functions@7.28.5':
+ resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-imports@7.27.1':
+ resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-transforms@7.28.3':
+ resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-optimise-call-expression@7.27.1':
+ resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-plugin-utils@7.27.1':
+ resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-remap-async-to-generator@7.27.1':
+ resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-replace-supers@7.27.1':
+ resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
+ resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-string-parser@7.27.1':
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-identifier@7.28.5':
+ resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-option@7.27.1':
+ resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-wrap-function@7.28.3':
+ resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helpers@7.28.4':
+ resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/parser@7.28.5':
+ resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5':
+ resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1':
+ resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1':
+ resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1':
+ resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
+
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3':
+ resolution: {integrity: sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-proposal-class-properties@7.18.6':
+ resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-proposal-decorators@7.28.0':
+ resolution: {integrity: sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6':
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-proposal-numeric-separator@7.18.6':
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-proposal-optional-chaining@7.21.0':
+ resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-proposal-private-methods@7.18.6':
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-proposal-private-property-in-object@7.21.11':
+ resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==}
+ engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-async-generators@7.8.4':
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-bigint@7.8.3':
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-class-properties@7.12.13':
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
'@babel/plugin-syntax-class-static-block@7.14.5':
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
@@ -897,8 +1280,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.28.0':
- resolution: {integrity: sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==}
+ '@babel/plugin-transform-block-scoping@7.28.5':
+ resolution: {integrity: sha512-45DmULpySVvmq9Pj3X9B+62Xe+DJGov27QravQJU1LLcapR6/10i+gYVAucGGJpHBp5mYxIMK4nDAT/QDLr47g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -915,8 +1298,8 @@ packages:
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.28.3':
- resolution: {integrity: sha512-DoEWC5SuxuARF2KdKmGUq3ghfPMO6ZzR12Dnp5gubwbeWJo4dbNWXJPVlwvh4Zlq6Z7YVvL8VFxeSOJgjsx4Sg==}
+ '@babel/plugin-transform-classes@7.28.4':
+ resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -927,8 +1310,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.28.0':
- resolution: {integrity: sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==}
+ '@babel/plugin-transform-destructuring@7.28.5':
+ resolution: {integrity: sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -963,8 +1346,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.27.1':
- resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==}
+ '@babel/plugin-transform-exponentiation-operator@7.28.5':
+ resolution: {integrity: sha512-D4WIMaFtwa2NizOp+dnoFjRez/ClKiC2BqqImwKd1X28nqBtZEyCYJ2ozQrrzlxAFrcrjxo39S6khe9RNDlGzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1005,8 +1388,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.27.1':
- resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==}
+ '@babel/plugin-transform-logical-assignment-operators@7.28.5':
+ resolution: {integrity: sha512-axUuqnUTBuXyHGcJEVVh9pORaN6wC5bYfE7FGzPiaWa3syib9m7g+/IT/4VgCOe2Upef43PHzeAvcrVek6QuuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1029,8 +1412,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.27.1':
- resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==}
+ '@babel/plugin-transform-modules-systemjs@7.28.5':
+ resolution: {integrity: sha512-vn5Jma98LCOeBy/KpeQhXcV2WZgaRUtjwQmjoBuLNlOmkg0fB5pdvYVeWRYI69wWKwK2cD1QbMiUQnoujWvrew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1065,8 +1448,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.28.0':
- resolution: {integrity: sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==}
+ '@babel/plugin-transform-object-rest-spread@7.28.4':
+ resolution: {integrity: sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1083,8 +1466,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.27.1':
- resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==}
+ '@babel/plugin-transform-optional-chaining@7.28.5':
+ resolution: {integrity: sha512-N6fut9IZlPnjPwgiQkXNhb+cT8wQKFlJNqcZkWlcTqkcqx6/kU4ynGmLFoa4LViBSirn05YAwk+sQBbPfxtYzQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1155,8 +1538,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.28.3':
- resolution: {integrity: sha512-K3/M/a4+ESb5LEldjQb+XSrpY0nF+ZBFlTCbSnKaYAMfD8v33O6PMs4uYnOk19HlcsI8WMu3McdFPTiQHF/1/A==}
+ '@babel/plugin-transform-regenerator@7.28.4':
+ resolution: {integrity: sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1173,8 +1556,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.28.3':
- resolution: {integrity: sha512-Y6ab1kGqZ0u42Zv/4a7l0l72n9DKP/MKoKWaUSBylrhNZO2prYuqFOLbn5aW5SIFXwSH93yfjbgllL8lxuGKLg==}
+ '@babel/plugin-transform-runtime@7.28.5':
+ resolution: {integrity: sha512-20NUVgOrinudkIBzQ2bNxP08YpKprUkRTiRSd2/Z5GOdPImJGkoN4Z7IQe1T5AdyKI1i5L6RBmluqdSzvaq9/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1209,8 +1592,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.28.0':
- resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==}
+ '@babel/plugin-transform-typescript@7.28.5':
+ resolution: {integrity: sha512-x2Qa+v/CuEoX7Dr31iAfr0IhInrVOWZU/2vJMJ00FOR/2nM0BcBEclpaf9sWCDc+v5e9dMrhSH8/atq/kX7+bA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1239,8 +1622,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.28.3':
- resolution: {integrity: sha512-ROiDcM+GbYVPYBOeCR6uBXKkQpBExLl8k9HO1ygXEyds39j+vCCsjmj7S8GOniZQlEs81QlkdJZe76IpLSiqpg==}
+ '@babel/preset-env@7.28.5':
+ resolution: {integrity: sha512-S36mOoi1Sb6Fz98fBfE+UZSpYw5mJm0NUHtIKrOuNcqeFauy1J6dIvXm2KRVKobOSaGq4t/hBXdN4HGU3wL9Wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1250,32 +1633,32 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/preset-react@7.27.1':
- resolution: {integrity: sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==}
+ '@babel/preset-react@7.28.5':
+ resolution: {integrity: sha512-Z3J8vhRq7CeLjdC58jLv4lnZ5RKFUJWqH5emvxmv9Hv3BD1T9R/Im713R4MTKwvFaV74ejZ3sM01LyEKk4ugNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-typescript@7.27.1':
- resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==}
+ '@babel/preset-typescript@7.28.5':
+ resolution: {integrity: sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/runtime@7.28.3':
- resolution: {integrity: sha512-9uIQ10o0WGdpP6GDhXcdOJPJuDgFtIDtN/9+ArJQ2NAfAmiuhTQdzkaTGR33v43GYS2UrSA0eX2pPPHoFVvpxA==}
+ '@babel/runtime@7.28.4':
+ resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
engines: {node: '>=6.9.0'}
'@babel/template@7.27.2':
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.28.3':
- resolution: {integrity: sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==}
+ '@babel/traverse@7.28.5':
+ resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.28.2':
- resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
+ '@babel/types@7.28.5':
+ resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@0.2.3':
@@ -1351,30 +1734,59 @@ packages:
'@daybrush/utils@1.13.0':
resolution: {integrity: sha512-ALK12C6SQNNHw1enXK+UO8bdyQ+jaWNQ1Af7Z3FNxeAwjYhQT7do+TRE4RASAJ3ObaS2+TJ7TXR3oz2Gzbw0PQ==}
- '@deck.gl/aggregation-layers@9.1.14':
- resolution: {integrity: sha512-EEciz1/SL1bdf/lm+DRy9Arno81vLWc9frcz2w/ZFdIKxVfcJmAFtyKeo2BJdjR9aspNxpOW+RJdl3/tK/ICYw==}
+ '@deck.gl/aggregation-layers@9.2.2':
+ resolution: {integrity: sha512-qWs3NAXzjDd3wIizP7ryTS6gJ5NThJnwfi0tmI2u8FuDr1ta01jcwwLsOxoBuQ0m+XPzCMzrbWaXQL2cCcgUPw==}
+ peerDependencies:
+ '@deck.gl/core': ~9.2.0
+ '@deck.gl/layers': ~9.2.0
+ '@luma.gl/core': ~9.2.2
+ '@luma.gl/engine': ~9.2.2
+
+ '@deck.gl/core@9.2.2':
+ resolution: {integrity: sha512-ZvCV8kcC730t62Q+iiCn8SOPgDCEyvV6i/GvIXf59Rnyl8pRvo7wcbl5zorbIEFng+a+EcYv/tEAZcAkwe1oEA==}
+
+ '@deck.gl/extensions@9.2.5':
+ resolution: {integrity: sha512-GJRPmG+GD1tdblpplQlb4jlNywRb8aQYPEowPLKxglXSGRzgpOrqJYI1PcJhCowdL7/S8bCY1ay8nkXE3gRsgw==}
peerDependencies:
- '@deck.gl/core': ^9.1.0
- '@deck.gl/layers': ^9.1.0
- '@luma.gl/core': ~9.1.9
- '@luma.gl/engine': ~9.1.9
+ '@deck.gl/core': ~9.2.0
+ '@luma.gl/core': ~9.2.4
+ '@luma.gl/engine': ~9.2.4
- '@deck.gl/core@9.1.14':
- resolution: {integrity: sha512-tXakSSvi5g+EvxSsnnjoRO8z3XxHxISTRzzIqcs3AZuWHnDptK28y9iD0Da21ILop1IYLaWE1QTUe6IAdp/Wag==}
+ '@deck.gl/geo-layers@9.2.5':
+ resolution: {integrity: sha512-QVjLwHEAtNqRdjBuYJwztCAwSTmgWujPT0geGWaFhr7ZvyigAqi3l2ETys5YqjjJ87bKnUBwd6iOyw1xkXbsCw==}
+ peerDependencies:
+ '@deck.gl/core': ~9.2.0
+ '@deck.gl/extensions': ~9.2.0
+ '@deck.gl/layers': ~9.2.0
+ '@deck.gl/mesh-layers': ~9.2.0
+ '@loaders.gl/core': ^4.2.0
+ '@luma.gl/core': ~9.2.4
+ '@luma.gl/engine': ~9.2.4
- '@deck.gl/layers@9.1.14':
- resolution: {integrity: sha512-cCClyZxznzXLPJnH2er7ZJAnXYuEHH/0hcDoc5Lp3SNByx3ASNrZcizIBOCxO7132LHFN4cSeyz0JVP8p56TDg==}
+ '@deck.gl/layers@9.2.2':
+ resolution: {integrity: sha512-O1tmE6I7KQs3Wv2W+KkLo3mOW6CqWn92jwkCq7i5b7OZwxNfzdEQFK3bDpQTfDEp1BTwR6bMP1TkhGBVksQJ2Q==}
peerDependencies:
- '@deck.gl/core': ^9.1.0
+ '@deck.gl/core': ~9.2.0
'@loaders.gl/core': ^4.2.0
- '@luma.gl/core': ~9.1.9
- '@luma.gl/engine': ~9.1.9
+ '@luma.gl/core': ~9.2.2
+ '@luma.gl/engine': ~9.2.2
- '@deck.gl/mapbox@9.1.14':
- resolution: {integrity: sha512-l3c5NFwKjIOeVWMtqK5LR8MA4grRe7tpLctkovNIo+owPBoW+q7gAWBJ1hGFmE1sxVFhoqZx70FqBAT9Mqn1ow==}
+ '@deck.gl/mapbox@9.2.2':
+ resolution: {integrity: sha512-k6MAoJOWhVykisTgyb+ztOvXwJcMo/6R5J2lkqqyzbfJDP0RB8tUPGU3Evn/v2+vqW/i7AyxMPyN6Ol405V03w==}
peerDependencies:
- '@deck.gl/core': ^9.1.0
- '@luma.gl/core': ~9.1.9
+ '@deck.gl/core': ~9.2.0
+ '@luma.gl/constants': ~9.2.2
+ '@luma.gl/core': ~9.2.2
+ '@math.gl/web-mercator': ^4.1.0
+
+ '@deck.gl/mesh-layers@9.2.5':
+ resolution: {integrity: sha512-OJ7Nx6xhp7+bQ4S4asUUp7PdGwcfmQpQhe5SHDGy1UBZ0yZE+ojOo9uvVfXvGBnqq4Zpg9avV+WRN1/BffBsOw==}
+ peerDependencies:
+ '@deck.gl/core': ~9.2.0
+ '@luma.gl/core': ~9.2.4
+ '@luma.gl/engine': ~9.2.4
+ '@luma.gl/gltf': ~9.2.4
+ '@luma.gl/shadertools': ~9.2.4
'@dimforge/rapier3d-compat@0.12.0':
resolution: {integrity: sha512-uekIGetywIgopfD97oDL5PfeezkFpNhwlzlaEYNOA0N6ghdsOvh/HYjSMek5Q2O1PYvRSDFcqFVJl4r4ZBwOow==}
@@ -1423,11 +1835,11 @@ packages:
'@egjs/list-differ@1.0.1':
resolution: {integrity: sha512-OTFTDQcWS+1ZREOdCWuk5hCBgYO4OsD30lXcOCyVOAjXMhgL5rBRDnt/otb6Nz8CzU0L/igdcaQBDLWc4t9gvg==}
- '@emnapi/core@1.5.0':
- resolution: {integrity: sha512-sbP8GzB1WDzacS8fgNPpHlp6C9VZe+SJP3F90W9rLemaQj2PzIuTEl1qDOYQf58YIpyjViI24y9aPWCjEzY2cg==}
+ '@emnapi/core@1.7.1':
+ resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==}
- '@emnapi/runtime@1.5.0':
- resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==}
+ '@emnapi/runtime@1.7.1':
+ resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==}
'@emnapi/wasi-threads@1.1.0':
resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
@@ -1498,14 +1910,8 @@ packages:
'@emotion/weak-memoize@0.4.0':
resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
- '@esbuild/aix-ppc64@0.25.5':
- resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [aix]
-
- '@esbuild/aix-ppc64@0.25.9':
- resolution: {integrity: sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==}
+ '@esbuild/aix-ppc64@0.25.12':
+ resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
@@ -1516,14 +1922,8 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.25.5':
- resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [android]
-
- '@esbuild/android-arm64@0.25.9':
- resolution: {integrity: sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==}
+ '@esbuild/android-arm64@0.25.12':
+ resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
@@ -1534,14 +1934,8 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.25.5':
- resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [android]
-
- '@esbuild/android-arm@0.25.9':
- resolution: {integrity: sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==}
+ '@esbuild/android-arm@0.25.12':
+ resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
@@ -1552,14 +1946,8 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.25.5':
- resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [android]
-
- '@esbuild/android-x64@0.25.9':
- resolution: {integrity: sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==}
+ '@esbuild/android-x64@0.25.12':
+ resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
@@ -1570,14 +1958,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.25.5':
- resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [darwin]
-
- '@esbuild/darwin-arm64@0.25.9':
- resolution: {integrity: sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==}
+ '@esbuild/darwin-arm64@0.25.12':
+ resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
@@ -1588,14 +1970,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.5':
- resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [darwin]
-
- '@esbuild/darwin-x64@0.25.9':
- resolution: {integrity: sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==}
+ '@esbuild/darwin-x64@0.25.12':
+ resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
@@ -1606,14 +1982,8 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.25.5':
- resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [freebsd]
-
- '@esbuild/freebsd-arm64@0.25.9':
- resolution: {integrity: sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==}
+ '@esbuild/freebsd-arm64@0.25.12':
+ resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
@@ -1624,14 +1994,8 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.5':
- resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [freebsd]
-
- '@esbuild/freebsd-x64@0.25.9':
- resolution: {integrity: sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==}
+ '@esbuild/freebsd-x64@0.25.12':
+ resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
@@ -1642,14 +2006,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.25.5':
- resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [linux]
-
- '@esbuild/linux-arm64@0.25.9':
- resolution: {integrity: sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==}
+ '@esbuild/linux-arm64@0.25.12':
+ resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
@@ -1660,14 +2018,8 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.25.5':
- resolution: {integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [linux]
-
- '@esbuild/linux-arm@0.25.9':
- resolution: {integrity: sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==}
+ '@esbuild/linux-arm@0.25.12':
+ resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
@@ -1678,14 +2030,8 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.25.5':
- resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [linux]
-
- '@esbuild/linux-ia32@0.25.9':
- resolution: {integrity: sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==}
+ '@esbuild/linux-ia32@0.25.12':
+ resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
@@ -1696,14 +2042,8 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.25.5':
- resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==}
- engines: {node: '>=18'}
- cpu: [loong64]
- os: [linux]
-
- '@esbuild/linux-loong64@0.25.9':
- resolution: {integrity: sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==}
+ '@esbuild/linux-loong64@0.25.12':
+ resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
@@ -1714,14 +2054,8 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.25.5':
- resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==}
- engines: {node: '>=18'}
- cpu: [mips64el]
- os: [linux]
-
- '@esbuild/linux-mips64el@0.25.9':
- resolution: {integrity: sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==}
+ '@esbuild/linux-mips64el@0.25.12':
+ resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
@@ -1732,14 +2066,8 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.25.5':
- resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [linux]
-
- '@esbuild/linux-ppc64@0.25.9':
- resolution: {integrity: sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==}
+ '@esbuild/linux-ppc64@0.25.12':
+ resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
@@ -1750,14 +2078,8 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.5':
- resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==}
- engines: {node: '>=18'}
- cpu: [riscv64]
- os: [linux]
-
- '@esbuild/linux-riscv64@0.25.9':
- resolution: {integrity: sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==}
+ '@esbuild/linux-riscv64@0.25.12':
+ resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
@@ -1768,14 +2090,8 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.25.5':
- resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==}
- engines: {node: '>=18'}
- cpu: [s390x]
- os: [linux]
-
- '@esbuild/linux-s390x@0.25.9':
- resolution: {integrity: sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==}
+ '@esbuild/linux-s390x@0.25.12':
+ resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
@@ -1786,26 +2102,14 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.25.5':
- resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [linux]
-
- '@esbuild/linux-x64@0.25.9':
- resolution: {integrity: sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==}
+ '@esbuild/linux-x64@0.25.12':
+ resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.5':
- resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [netbsd]
-
- '@esbuild/netbsd-arm64@0.25.9':
- resolution: {integrity: sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==}
+ '@esbuild/netbsd-arm64@0.25.12':
+ resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
@@ -1816,26 +2120,14 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.5':
- resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [netbsd]
-
- '@esbuild/netbsd-x64@0.25.9':
- resolution: {integrity: sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==}
+ '@esbuild/netbsd-x64@0.25.12':
+ resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.5':
- resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [openbsd]
-
- '@esbuild/openbsd-arm64@0.25.9':
- resolution: {integrity: sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==}
+ '@esbuild/openbsd-arm64@0.25.12':
+ resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
@@ -1846,20 +2138,14 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.5':
- resolution: {integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [openbsd]
-
- '@esbuild/openbsd-x64@0.25.9':
- resolution: {integrity: sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==}
+ '@esbuild/openbsd-x64@0.25.12':
+ resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/openharmony-arm64@0.25.9':
- resolution: {integrity: sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==}
+ '@esbuild/openharmony-arm64@0.25.12':
+ resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
@@ -1870,14 +2156,8 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.25.5':
- resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [sunos]
-
- '@esbuild/sunos-x64@0.25.9':
- resolution: {integrity: sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==}
+ '@esbuild/sunos-x64@0.25.12':
+ resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
@@ -1888,14 +2168,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.25.5':
- resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [win32]
-
- '@esbuild/win32-arm64@0.25.9':
- resolution: {integrity: sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==}
+ '@esbuild/win32-arm64@0.25.12':
+ resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
@@ -1906,14 +2180,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.25.5':
- resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [win32]
-
- '@esbuild/win32-ia32@0.25.9':
- resolution: {integrity: sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==}
+ '@esbuild/win32-ia32@0.25.12':
+ resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
@@ -1924,56 +2192,55 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.25.5':
- resolution: {integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [win32]
-
- '@esbuild/win32-x64@0.25.9':
- resolution: {integrity: sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==}
+ '@esbuild/win32-x64@0.25.12':
+ resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.8.0':
- resolution: {integrity: sha512-MJQFqrZgcW0UNYLGOuQpey/oTN59vyWwplvCGZztn1cKz9agZPPYpJB7h2OMmuu7VLqkvEjN8feFZJmxNF9D+Q==}
+ '@eslint-community/eslint-utils@4.9.0':
+ resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.12.1':
- resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
+ '@eslint-community/regexpp@4.12.2':
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/config-array@0.21.0':
- resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==}
+ '@eslint/config-array@0.21.1':
+ resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/config-helpers@0.3.1':
- resolution: {integrity: sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==}
+ '@eslint/config-helpers@0.4.2':
+ resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.15.2':
- resolution: {integrity: sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==}
+ '@eslint/core@0.17.0':
+ resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.3.1':
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.34.0':
- resolution: {integrity: sha512-EoyvqQnBNsV1CWaEJ559rxXL4c8V92gxirbawSmVUOWXlsRxxQXl6LmCpdUblgxgSkDIqKnhzba2SjRTI/A5Rw==}
+ '@eslint/js@9.39.1':
+ resolution: {integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/object-schema@2.1.6':
- resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
+ '@eslint/object-schema@2.1.7':
+ resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.3.5':
- resolution: {integrity: sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==}
+ '@eslint/plugin-kit@0.4.1':
+ resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@geomatico/maplibre-cog-protocol@0.8.0':
+ resolution: {integrity: sha512-q5Pg7pOp/fRB/UrAUEZ4AEF/B68XwvxMg0YRk0z+UwwHfOKQThkY7u91Kusx2AwIme6QOURFK6Fvw39ooj68RQ==}
+ peerDependencies:
+ maplibre-gl: ^4.5.0 || ^5.0.0
+
'@humanfs/core@0.19.1':
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
@@ -2023,8 +2290,8 @@ packages:
resolution: {integrity: sha512-xY6b0XiL0Nav3ReresUarwl2oIz1gTnxGbGpho9/rbUWsLH0f1OD/VT84xs8c7VmH7MChnLb0pag6PhZhAdDiA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/console@30.1.2':
- resolution: {integrity: sha512-BGMAxj8VRmoD0MoA/jo9alMXSRoqW8KPeqOfEo1ncxnRLatTBCpRoOwlwlEMdudp68Q6WSGwYrrLtTGOh8fLzw==}
+ '@jest/console@30.2.0':
+ resolution: {integrity: sha512-+O1ifRjkvYIkBqASKWgLxrpEhQAAE7hY77ALLUufSk5717KfOShg6IbqLmdsLMPdUiFvA2kTs0R7YZy+l0IzZQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
'@jest/core@30.0.5':
@@ -2040,8 +2307,8 @@ packages:
resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/environment-jsdom-abstract@30.1.2':
- resolution: {integrity: sha512-u8kTh/ZBl97GOmnGJLYK/1GuwAruMC4hoP6xuk/kwltmVWsA9u/6fH1/CsPVGt2O+Wn2yEjs8n1B1zZJ62Cx0w==}
+ '@jest/environment-jsdom-abstract@30.2.0':
+ resolution: {integrity: sha512-kazxw2L9IPuZpQ0mEt9lu9Z98SqR74xcagANmMBU16X0lS23yPc0+S6hGLUz8kVRlomZEs/5S/Zlpqwf5yu6OQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
canvas: ^3.0.0
@@ -2058,16 +2325,16 @@ packages:
resolution: {integrity: sha512-aRX7WoaWx1oaOkDQvCWImVQ8XNtdv5sEWgk4gxR6NXb7WBUnL5sRak4WRzIQRZ1VTWPvV4VI4mgGjNL9TeKMYA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/environment@30.1.2':
- resolution: {integrity: sha512-N8t1Ytw4/mr9uN28OnVf0SYE2dGhaIxOVYcwsf9IInBKjvofAjbFRvedvBBlyTYk2knbJTiEjEJ2PyyDIBnd9w==}
+ '@jest/environment@30.2.0':
+ resolution: {integrity: sha512-/QPTL7OBJQ5ac09UDRa3EQes4gt1FTEG/8jZ/4v5IVzx+Cv7dLxlVIvfvSVRiiX2drWyXeBjkMSR8hvOWSog5g==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
'@jest/expect-utils@30.0.5':
resolution: {integrity: sha512-F3lmTT7CXWYywoVUGTCmom0vXq3HTTkaZyTAzIy+bXSBizB7o5qzlC9VCtq0arOa8GqmNsbg/cE9C6HLn7Szew==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/expect-utils@30.1.2':
- resolution: {integrity: sha512-HXy1qT/bfdjCv7iC336ExbqqYtZvljrV8odNdso7dWK9bSeHtLlvwWWC3YSybSPL03Gg5rug6WLCZAZFH72m0A==}
+ '@jest/expect-utils@30.2.0':
+ resolution: {integrity: sha512-1JnRfhqpD8HGpOmQp180Fo9Zt69zNtC+9lR+kT7NVL05tNXIi+QC8Csz7lfidMoVLPD3FnOtcmp0CEFnxExGEA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
'@jest/expect@30.0.5':
@@ -2082,8 +2349,8 @@ packages:
resolution: {integrity: sha512-ZO5DHfNV+kgEAeP3gK3XlpJLL4U3Sz6ebl/n68Uwt64qFFs5bv4bfEEjyRGK5uM0C90ewooNgFuKMdkbEoMEXw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/fake-timers@30.1.2':
- resolution: {integrity: sha512-Beljfv9AYkr9K+ETX9tvV61rJTY706BhBUtiaepQHeEGfe0DbpvUA5Z3fomwc5Xkhns6NWrcFDZn+72fLieUnA==}
+ '@jest/fake-timers@30.2.0':
+ resolution: {integrity: sha512-HI3tRLjRxAbBy0VO8dqqm7Hb2mIa8d5bg/NJkyQcOk7V118ObQML8RC5luTF/Zsg4474a+gDvhce7eTnP4GhYw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
'@jest/get-type@30.0.1':
@@ -2139,8 +2406,8 @@ packages:
resolution: {integrity: sha512-wPyztnK0gbDMQAJZ43tdMro+qblDHH1Ru/ylzUo21TBKqt88ZqnKKK2m30LKmLLoKtR2lxdpCC/P3g1vfKcawQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/test-result@30.1.3':
- resolution: {integrity: sha512-P9IV8T24D43cNRANPPokn7tZh0FAFnYS2HIfi5vK18CjRkTDR9Y3e1BoEcAJnl4ghZZF4Ecda4M/k41QkvurEQ==}
+ '@jest/test-result@30.2.0':
+ resolution: {integrity: sha512-RF+Z+0CCHkARz5HT9mcQCBulb1wgCP3FBvl9VFokMX27acKphwyQsNuWH3c+ojd1LeWBLoTYoxF0zm6S/66mjg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
'@jest/test-sequencer@30.0.5':
@@ -2155,8 +2422,8 @@ packages:
resolution: {integrity: sha512-Vk8amLQCmuZyy6GbBht1Jfo9RSdBtg7Lks+B0PecnjI8J+PCLQPGh7uI8Q/2wwpW2gLdiAfiHNsmekKlywULqg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/transform@30.1.2':
- resolution: {integrity: sha512-UYYFGifSgfjujf1Cbd3iU/IQoSd6uwsj8XHj5DSDf5ERDcWMdJOPTkHWXj4U+Z/uMagyOQZ6Vne8C4nRIrCxqA==}
+ '@jest/transform@30.2.0':
+ resolution: {integrity: sha512-XsauDV82o5qXbhalKxD7p4TZYYdwcaEXC77PPD2HixEFF+6YGppjrAAQurTl2ECWcEomHBMMNS9AH3kcCFx8jA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
'@jest/types@24.9.0':
@@ -2167,6 +2434,10 @@ packages:
resolution: {integrity: sha512-aREYa3aku9SSnea4aX6bhKn4bgv3AXkgijoQgbYV3yvbiGt6z+MQ85+6mIhx9DsKW2BuB/cLR/A+tcMThx+KLQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ '@jest/types@30.2.0':
+ resolution: {integrity: sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@joshwooding/vite-plugin-react-docgen-typescript@0.6.1':
resolution: {integrity: sha512-J4BaTocTOYFkMHIra1JDWrMWpNmBl4EkplIwHEsV8aeUOtdWjwSnln9U7twjMFTAEB7mptNtSKyVi1Y2W9sDJw==}
peerDependencies:
@@ -2179,6 +2450,9 @@ packages:
'@jridgewell/gen-mapping@0.3.13':
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
+ '@jridgewell/remapping@2.3.5':
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
+
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
@@ -2189,8 +2463,8 @@ packages:
'@jridgewell/sourcemap-codec@1.5.5':
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
- '@jridgewell/trace-mapping@0.3.30':
- resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==}
+ '@jridgewell/trace-mapping@0.3.31':
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
'@jridgewell/trace-mapping@0.3.9':
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
@@ -2201,8 +2475,8 @@ packages:
peerDependencies:
tslib: '2'
- '@jsonjoy.com/buffers@1.0.0':
- resolution: {integrity: sha512-NDigYR3PHqCnQLXYyoLbnEdzMMvzeiCWo1KOut7Q0CoIqg9tUAPKJ1iq/2nFhc5kZtexzutNY0LFjdwWL3Dw3Q==}
+ '@jsonjoy.com/buffers@1.2.1':
+ resolution: {integrity: sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
@@ -2213,8 +2487,8 @@ packages:
peerDependencies:
tslib: '2'
- '@jsonjoy.com/json-pack@1.11.0':
- resolution: {integrity: sha512-nLqSTAYwpk+5ZQIoVp7pfd/oSKNWlEdvTq2LzVA4r2wtWZg6v+5u0VgBOaDJuUfNOuw/4Ysq6glN5QKSrOCgrA==}
+ '@jsonjoy.com/json-pack@1.21.0':
+ resolution: {integrity: sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
@@ -2234,9 +2508,39 @@ packages:
'@leichtgewicht/ip-codec@2.0.5':
resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
+ '@loaders.gl/3d-tiles@4.3.4':
+ resolution: {integrity: sha512-JQ3y3p/KlZP7lfobwON5t7H9WinXEYTvuo3SRQM8TBKhM+koEYZhvI2GwzoXx54MbBbY+s3fm1dq5UAAmaTsZw==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
+ '@loaders.gl/compression@4.3.4':
+ resolution: {integrity: sha512-+o+5JqL9Sx8UCwdc2MTtjQiUHYQGJALHbYY/3CT+b9g/Emzwzez2Ggk9U9waRfdHiBCzEgRBivpWZEOAtkimXQ==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
'@loaders.gl/core@4.3.4':
resolution: {integrity: sha512-cG0C5fMZ1jyW6WCsf4LoHGvaIAJCEVA/ioqKoYRwoSfXkOf+17KupK1OUQyUCw5XoRn+oWA1FulJQOYlXnb9Gw==}
+ '@loaders.gl/crypto@4.3.4':
+ resolution: {integrity: sha512-3VS5FgB44nLOlAB9Q82VOQnT1IltwfRa1miE0mpHCe1prYu1M/dMnEyynusbrsp+eDs3EKbxpguIS9HUsFu5dQ==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
+ '@loaders.gl/draco@4.3.4':
+ resolution: {integrity: sha512-4Lx0rKmYENGspvcgV5XDpFD9o+NamXoazSSl9Oa3pjVVjo+HJuzCgrxTQYD/3JvRrolW/QRehZeWD/L/cEC6mw==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
+ '@loaders.gl/gis@4.3.4':
+ resolution: {integrity: sha512-8xub38lSWW7+ZXWuUcggk7agRHJUy6RdipLNKZ90eE0ZzLNGDstGD1qiBwkvqH0AkG+uz4B7Kkiptyl7w2Oa6g==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
+ '@loaders.gl/gltf@4.3.4':
+ resolution: {integrity: sha512-EiUTiLGMfukLd9W98wMpKmw+hVRhQ0dJ37wdlXK98XPeGGB+zTQxCcQY+/BaMhsSpYt/OOJleHhTfwNr8RgzRg==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
'@loaders.gl/images@4.3.4':
resolution: {integrity: sha512-qgc33BaNsqN9cWa/xvcGvQ50wGDONgQQdzHCKDDKhV2w/uptZoR5iofJfuG8UUV2vUMMd82Uk9zbopRx2rS4Ag==}
peerDependencies:
@@ -2247,37 +2551,85 @@ packages:
peerDependencies:
'@loaders.gl/core': ^4.3.0
+ '@loaders.gl/math@4.3.4':
+ resolution: {integrity: sha512-UJrlHys1fp9EUO4UMnqTCqvKvUjJVCbYZ2qAKD7tdGzHJYT8w/nsP7f/ZOYFc//JlfC3nq+5ogvmdpq2pyu3TA==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
+ '@loaders.gl/mvt@4.3.4':
+ resolution: {integrity: sha512-9DrJX8RQf14htNtxsPIYvTso5dUce9WaJCWCIY/79KYE80Be6dhcEYMknxBS4w3+PAuImaAe66S5xo9B7Erm5A==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
'@loaders.gl/schema@4.3.4':
resolution: {integrity: sha512-1YTYoatgzr/6JTxqBLwDiD3AVGwQZheYiQwAimWdRBVB0JAzych7s1yBuE0CVEzj4JDPKOzVAz8KnU1TiBvJGw==}
peerDependencies:
'@loaders.gl/core': ^4.3.0
+ '@loaders.gl/terrain@4.3.4':
+ resolution: {integrity: sha512-JszbRJGnxL5Fh82uA2U8HgjlsIpzYoCNNjy3cFsgCaxi4/dvjz3BkLlBilR7JlbX8Ka+zlb4GAbDDChiXLMJ/g==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
+ '@loaders.gl/textures@4.3.4':
+ resolution: {integrity: sha512-arWIDjlE7JaDS6v9by7juLfxPGGnjT9JjleaXx3wq/PTp+psLOpGUywHXm38BNECos3MFEQK3/GFShWI+/dWPw==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
+ '@loaders.gl/tiles@4.3.4':
+ resolution: {integrity: sha512-oC0zJfyvGox6Ag9ABF8fxOkx9yEFVyzTa9ryHXl2BqLiQoR1v3p+0tIJcEbh5cnzHfoTZzUis1TEAZluPRsHBQ==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
+ '@loaders.gl/wms@4.3.4':
+ resolution: {integrity: sha512-yXF0wuYzJUdzAJQrhLIua6DnjOiBJusaY1j8gpvuH1VYs3mzvWlIRuZKeUd9mduQZKK88H2IzHZbj2RGOauq4w==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
'@loaders.gl/worker-utils@4.3.4':
resolution: {integrity: sha512-EbsszrASgT85GH3B7jkx7YXfQyIYo/rlobwMx6V3ewETapPUwdSAInv+89flnk5n2eu2Lpdeh+2zS6PvqbL2RA==}
peerDependencies:
'@loaders.gl/core': ^4.3.0
- '@luma.gl/constants@9.1.9':
- resolution: {integrity: sha512-yc9fml04OeTTcwK+7gmDMxoLQ67j4ZiAFXjmYvPomYyBVzS0NZxTDuwcCBmnxjLOiroOZW8FRRrVc/yOiFug2w==}
+ '@loaders.gl/xml@4.3.4':
+ resolution: {integrity: sha512-p+y/KskajsvyM3a01BwUgjons/j/dUhniqd5y1p6keLOuwoHlY/TfTKd+XluqfyP14vFrdAHCZTnFCWLblN10w==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
+ '@loaders.gl/zip@4.3.4':
+ resolution: {integrity: sha512-bHY4XdKYJm3vl9087GMoxnUqSURwTxPPh6DlAGOmz6X9Mp3JyWuA2gk3tQ1UIuInfjXKph3WAUfGe6XRIs1sfw==}
+ peerDependencies:
+ '@loaders.gl/core': ^4.3.0
+
+ '@luma.gl/constants@9.2.4':
+ resolution: {integrity: sha512-Cy0OAg3uJbbHhPJGeik6ZhII0EMokTXmo6MtP7dyUrS+pSG5N176G4WYD9zS4DaJm2cLUW4UJzsu5B4Cd8rBuw==}
+
+ '@luma.gl/core@9.2.4':
+ resolution: {integrity: sha512-oYuHlpvd4e6E4hre7I7gnmCtcTDdpgREnumgjcPTe8VVsimnYM2P+vBqdOE7AUlOHDS8r//7YxM2bFvlDkcM8w==}
- '@luma.gl/core@9.1.9':
- resolution: {integrity: sha512-1i9N7+I/UbFjx3axSMlc3/NufA+C2iBv/7mw51gRE/ypQPgvFmY/QqXBVZRe+nthF+OhlUMhO19TBndzYFTWhA==}
+ '@luma.gl/engine@9.2.4':
+ resolution: {integrity: sha512-UJXif5qMPMxTCj0GbPqJLn3+L5BEwqpl6utWn2mG1gnVF/urXruMYn3kjUNoGKhk5CHOtb6ON1Dc+FL0hBYgQA==}
+ peerDependencies:
+ '@luma.gl/core': ~9.2.0
+ '@luma.gl/shadertools': ~9.2.0
- '@luma.gl/engine@9.1.9':
- resolution: {integrity: sha512-n1GLK1sUMFkWxdb+aZYn6ZBFltFEMi7X+6ZPxn2pBsNT6oeF4AyvH5AyqhOpvHvUnCLDt3Zsf1UIfx3MI//YSw==}
+ '@luma.gl/gltf@9.2.4':
+ resolution: {integrity: sha512-OhT9Aq8/MC9r/ii8hAW7sPlIbol1ZG74jsZXsFsoGzw9gfuxT5LX71rQ/oKnsDz7dGf2cM+bM3qe8C7QiIaUvw==}
peerDependencies:
- '@luma.gl/core': ^9.1.0
- '@luma.gl/shadertools': ^9.1.0
+ '@luma.gl/constants': ~9.2.0
+ '@luma.gl/core': ~9.2.0
+ '@luma.gl/engine': ~9.2.0
+ '@luma.gl/shadertools': ~9.2.0
- '@luma.gl/shadertools@9.1.9':
- resolution: {integrity: sha512-Uqp2xfgIEunRMLXTeCJ4uEMlWcUGcYMZGJ8GAOrAeDzn4bMKVRKmZDC71vkuTctnaodM3UdrI9W6s1sJlrXsxw==}
+ '@luma.gl/shadertools@9.2.4':
+ resolution: {integrity: sha512-PoBvat7sTQp0ZPVWXm5o4Xopssk9WI75g4YZUPBhya1MUdyzY2AUe9vOnxhJ9fqSYzhBGj5y/RDrxXPHz8gIjw==}
peerDependencies:
- '@luma.gl/core': ^9.1.0
+ '@luma.gl/core': ~9.2.0
- '@luma.gl/webgl@9.1.9':
- resolution: {integrity: sha512-jecHjhNSWkXH0v62rM6G5fIIkOmsrND27099iKgdutFvHIvd4QS4UzGWEEa9AEPlP0rTLqXkA6y6YL7f42ZkVg==}
+ '@luma.gl/webgl@9.2.4':
+ resolution: {integrity: sha512-s2o4TU8HJLlFdjDUp9xW3ataWXiTefpZfjH5M2XJot0qnXM6aXXAihFdmWJXQozmKEP3Sg9bCFxw9INQNWtbkQ==}
peerDependencies:
- '@luma.gl/core': ^9.1.0
+ '@luma.gl/core': ~9.2.0
'@mapbox/extent@0.4.0':
resolution: {integrity: sha512-MSoKw3qPceGuupn04sdaJrFeLKvcSETVLZCGS8JA9x6zXQL3FWiKaIXYIZEDXd5jpXpWlRxinCZIN49yRy0C9A==}
@@ -2313,6 +2665,9 @@ packages:
'@mapbox/mapbox-gl-sync-move@0.3.1':
resolution: {integrity: sha512-Y3PMyj0m/TBJa9OkQnO2TiVDu8sFUPmLF7q/THUHrD/g42qrURpMJJ4kufq4sR60YFMwZdCGBshrbgK5v2xXWw==}
+ '@mapbox/martini@0.2.0':
+ resolution: {integrity: sha512-7hFhtkb0KTLEls+TRw/rWayq5EeHtTaErgm/NskVoXmtgAQu/9D299aeyj6mzAR/6XUnYRp2lU+4IcrYRFjVsQ==}
+
'@mapbox/point-geometry@0.1.0':
resolution: {integrity: sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==}
@@ -2324,6 +2679,10 @@ packages:
engines: {node: '>=8.0.0'}
hasBin: true
+ '@mapbox/sphericalmercator@1.2.0':
+ resolution: {integrity: sha512-ZTOuuwGuMOJN+HEmG/68bSEw15HHaMWmQ5gdTsWdWsjDe56K1kGvLOK6bOSC8gWgIvEO0w6un/2Gvv1q5hJSkQ==}
+ hasBin: true
+
'@mapbox/tiny-sdf@2.0.7':
resolution: {integrity: sha512-25gQLQMcpivjOSA40g3gO6qgiFPDpWRoMfd+G/GoppPIeP6JDaMMkMrEJnMZhKyyS6iKwVt5YKu02vCUyJM3Ug==}
@@ -2344,12 +2703,31 @@ packages:
resolution: {integrity: sha512-IGJtuBbaGzOUgODdBRg66p8stnwj9iDXkgbYKoYcNiiQmaez5WVRfXm4b03MCDwmZyX93csbfHFWEJJYHnn5oA==}
hasBin: true
+ '@maplibre/maplibre-gl-style-spec@24.3.1':
+ resolution: {integrity: sha512-TUM5JD40H2mgtVXl5IwWz03BuQabw8oZQLJTmPpJA0YTYF+B+oZppy5lNMO6bMvHzB+/5mxqW9VLG3wFdeqtOw==}
+ hasBin: true
+
+ '@maplibre/mlt@1.1.0':
+ resolution: {integrity: sha512-anR8WxKIgZUJQLlZtID0v06wd9Q//9K/6lLLU3dOzmeO/xLEzAwmEqP24jEnEUBcnZGkM4vidz9H6Q4guNAAlw==}
+
+ '@maplibre/mlt@1.1.2':
+ resolution: {integrity: sha512-SQKdJ909VGROkA6ovJgtHNs9YXV4YXUPS+VaZ50I2Mt951SLlUm2Cv34x5Xwc1HiFlsd3h2Yrs5cn7xzqBmENw==}
+
'@maplibre/vt-pbf@4.0.3':
resolution: {integrity: sha512-YsW99BwnT+ukJRkseBcLuZHfITB4puJoxnqPVjo72rhW/TaawVYsgQHcqWLzTxqknttYoDpgyERzWSa/XrETdA==}
+ '@maplibre/vt-pbf@4.1.0':
+ resolution: {integrity: sha512-9LjFAoWtxdGRns8RK9vG3Fcw/fb3eHMxvAn2jffwn3jnVO1k49VOv6+FEza70rK7WzF8GnBiKa0K39RyfevKUw==}
+
'@math.gl/core@4.1.0':
resolution: {integrity: sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==}
+ '@math.gl/culling@4.1.0':
+ resolution: {integrity: sha512-jFmjFEACnP9kVl8qhZxFNhCyd47qPfSVmSvvjR0/dIL6R9oD5zhR1ub2gN16eKDO/UM7JF9OHKU3EBIfeR7gtg==}
+
+ '@math.gl/geospatial@4.1.0':
+ resolution: {integrity: sha512-BzsUhpVvnmleyYF6qdqJIip6FtIzJmnWuPTGhlBuPzh7VBHLonCFSPtQpbkRuoyAlbSyaGXcVt6p6lm9eK2vtg==}
+
'@math.gl/polygon@4.1.0':
resolution: {integrity: sha512-YA/9PzaCRHbIP5/0E9uTYrqe+jsYTQoqoDWhf6/b0Ixz8bPZBaGDEafLg3z7ffBomZLacUty9U3TlPjqMtzPjA==}
@@ -2368,44 +2746,38 @@ packages:
'@types/react': '>=16'
react: '>=16'
- '@microsoft/api-extractor-model@7.30.7':
- resolution: {integrity: sha512-TBbmSI2/BHpfR9YhQA7nH0nqVmGgJ0xH0Ex4D99/qBDAUpnhA2oikGmdXanbw9AWWY/ExBYIpkmY8dBHdla3YQ==}
+ '@microsoft/api-extractor-model@7.32.1':
+ resolution: {integrity: sha512-u4yJytMYiUAnhcNQcZDTh/tVtlrzKlyKrQnLOV+4Qr/5gV+cpufWzCYAB1Q23URFqD6z2RoL2UYncM9xJVGNKA==}
- '@microsoft/api-extractor@7.52.11':
- resolution: {integrity: sha512-IKQ7bHg6f/Io3dQds6r9QPYk4q0OlR9A4nFDtNhUt3UUIhyitbxAqRN1CLjUVtk6IBk3xzyCMOdwwtIXQ7AlGg==}
+ '@microsoft/api-extractor@7.55.1':
+ resolution: {integrity: sha512-l8Z+8qrLkZFM3HM95Dbpqs6G39fpCa7O5p8A7AkA6hSevxkgwsOlLrEuPv0ADOyj5dI1Af5WVDiwpKG/ya5G3w==}
hasBin: true
- '@microsoft/tsdoc-config@0.17.1':
- resolution: {integrity: sha512-UtjIFe0C6oYgTnad4q1QP4qXwLhe6tIpNTRStJ2RZEPIkqQPREAwE5spzVxsdn9UaEMUqhh0AqSx3X4nWAKXWw==}
+ '@microsoft/tsdoc-config@0.18.0':
+ resolution: {integrity: sha512-8N/vClYyfOH+l4fLkkr9+myAoR6M7akc8ntBJ4DJdWH2b09uVfr71+LTMpNyG19fNqWDg8KEDZhx5wxuqHyGjw==}
- '@microsoft/tsdoc@0.15.1':
- resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==}
+ '@microsoft/tsdoc@0.16.0':
+ resolution: {integrity: sha512-xgAyonlVVS+q7Vc7qLW0UrJU7rSFcETRWsqdXZtjzRU8dF+6CkozTK4V4y1LwOX7j8r/vHphjDeMeGI4tNGeGA==}
'@modern-js/node-bundle-require@2.67.6':
resolution: {integrity: sha512-rRiDQkrm3kgn0E/GNrcvqo4c71PaUs2R8Xmpv6GUKbEr6lz7VNgfZmAhdAQPtNfRfiBe+1sFLzEcwfEdDo/dTA==}
- '@modern-js/node-bundle-require@2.68.2':
- resolution: {integrity: sha512-MWk/pYx7KOsp+A/rN0as2ji/Ba8x0m129aqZ3Lj6T6CCTWdz0E/IsamPdTmF9Jnb6whQoBKtWSaLTCQlmCoY0Q==}
-
'@modern-js/utils@2.67.6':
resolution: {integrity: sha512-cxY7HsSH0jIN3rlL6RZ0tgzC1tH0gHW++8X6h7sXCNCylhUdbGZI9yTGbpAS8bU7c97NmPaTKg+/ILt00Kju1Q==}
- '@modern-js/utils@2.68.2':
- resolution: {integrity: sha512-revom/i/EhKfI0STNLo/AUbv7gY0JY0Ni2gO6P/Z4cTyZZRgd5j90678YB2DGn+LtmSrEWtUphyDH5Jn1RKjgg==}
-
'@module-federation/bridge-react-webpack-plugin@0.15.0':
resolution: {integrity: sha512-bbinV0gC82x0JGrT6kNV1tQHi4UBxqY79mZJKWVbGpSMPM+nifC9y/nQCYhZZajT7D/5zIHNkP0BKrQmPA7ArA==}
- '@module-federation/bridge-react-webpack-plugin@0.18.4':
- resolution: {integrity: sha512-tYgso9izSinWzzVlsOUsBjW5lPMsvsVp95Jrw5W4Ajg9Un/yTkjOqEqmsMYpiL7drEN2+gPPVYyQ/hUK4QWz8Q==}
+ '@module-federation/bridge-react-webpack-plugin@0.21.6':
+ resolution: {integrity: sha512-lJMmdhD4VKVkeg8RHb+Jwe6Ou9zKVgjtb1inEURDG/sSS2ksdZA8pVKLYbRPRbdmjr193Y8gJfqFbI2dqoyc/g==}
'@module-federation/cli@0.15.0':
resolution: {integrity: sha512-ZFQ7TA7vwSro4n21/+9cGxVkeRU9IcXcQGs1GIToz/JFvomTHbGN33iplR3GNMhuMNyXQ/wxe2gWkEmIBCzW2w==}
engines: {node: '>=16.0.0'}
hasBin: true
- '@module-federation/cli@0.18.4':
- resolution: {integrity: sha512-31c+2OjtRdsYq7oV+rCoTO9AXizT3D9CNzofZ9EVRGsaS9+H+nJKTkK+pw+IhK0Y8I0HsP+uxgLrazqF0tLbgg==}
+ '@module-federation/cli@0.21.6':
+ resolution: {integrity: sha512-qNojnlc8pTyKtK7ww3i/ujLrgWwgXqnD5DcDPsjADVIpu7STaoaVQ0G5GJ7WWS/ajXw6EyIAAGW/AMFh4XUxsQ==}
engines: {node: '>=16.0.0'}
hasBin: true
@@ -2415,8 +2787,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@module-federation/data-prefetch@0.18.4':
- resolution: {integrity: sha512-XOHFFO1wrVbjjfP2JRMbht+ILim5Is6Mfb5f2H4I9w0CSaZNRltG0fTnebECB1jgosrd8xaYnrwzXsCI/S53qQ==}
+ '@module-federation/data-prefetch@0.21.6':
+ resolution: {integrity: sha512-8HD7ZhtWZ9vl6i3wA7M8cEeCRdtvxt09SbMTfqIPm+5eb/V4ijb8zGTYSRhNDb5RCB+BAixaPiZOWKXJ63/rVw==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -2430,8 +2802,8 @@ packages:
vue-tsc:
optional: true
- '@module-federation/dts-plugin@0.18.4':
- resolution: {integrity: sha512-5FlrajLCypQ8+vEsncgEGpDmxUDG+Ub6ogKOE00e2gMxcYlgcCZNUSn5VbEGdCMcHQmIK2xt3WGQT30/7j2KiQ==}
+ '@module-federation/dts-plugin@0.21.6':
+ resolution: {integrity: sha512-YIsDk8/7QZIWn0I1TAYULniMsbyi2LgKTi9OInzVmZkwMC6644x/ratTWBOUDbdY1Co+feNkoYeot1qIWv2L7w==}
peerDependencies:
typescript: ^4.9.0 || ^5.0.0
vue-tsc: '>=1.0.24'
@@ -2454,8 +2826,8 @@ packages:
webpack:
optional: true
- '@module-federation/enhanced@0.18.4':
- resolution: {integrity: sha512-KiBw7e+aIBFoO2cmN5hJlKrYv3nUuXsB8yOSVnV9JBAkYNyRZQ9xoSbRCDt8rDRz/ydgEURUIwnGyL2ZU5jZYw==}
+ '@module-federation/enhanced@0.21.6':
+ resolution: {integrity: sha512-8PFQxtmXc6ukBC4CqGIoc96M2Ly9WVwCPu4Ffvt+K/SB6rGbeFeZoYAwREV1zGNMJ5v5ly6+AHIEOBxNuSnzSg==}
hasBin: true
peerDependencies:
typescript: ^4.9.0 || ^5.0.0
@@ -2472,36 +2844,36 @@ packages:
'@module-federation/error-codes@0.15.0':
resolution: {integrity: sha512-CFJSF+XKwTcy0PFZ2l/fSUpR4z247+Uwzp1sXVkdIfJ/ATsnqf0Q01f51qqSEA6MYdQi6FKos9FIcu3dCpQNdg==}
- '@module-federation/error-codes@0.18.0':
- resolution: {integrity: sha512-Woonm8ehyVIUPXChmbu80Zj6uJkC0dD9SJUZ/wOPtO8iiz/m+dkrOugAuKgoiR6qH4F+yorWila954tBz4uKsQ==}
+ '@module-federation/error-codes@0.21.4':
+ resolution: {integrity: sha512-ClpL5MereWNXh+EgDjz7w4RrC1JlisQTvXDa1gLxpviHafzNDfdViVmuhi9xXVuj+EYo8KU70Y999KHhk9424Q==}
- '@module-federation/error-codes@0.18.4':
- resolution: {integrity: sha512-cpLsqL8du9CfTTCKvXbRg93ALF+lklqHnuPryhbwVEQg2eYo6CMoMQ6Eb7kJhLigUABIDujbHD01SvBbASGkeQ==}
+ '@module-federation/error-codes@0.21.6':
+ resolution: {integrity: sha512-MLJUCQ05KnoVl8xd6xs9a5g2/8U+eWmVxg7xiBMeR0+7OjdWUbHwcwgVFatRIwSZvFgKHfWEiI7wsU1q1XbTRQ==}
'@module-federation/inject-external-runtime-core-plugin@0.15.0':
resolution: {integrity: sha512-D6+FO2oj2Gr6QpfWv3i9RI9VJM2IFCMiFQKg5zOpKw1qdrPRWb35fiXAXGjw9RrVgrZz0Z1b9OP4zC9hfbpnQQ==}
peerDependencies:
'@module-federation/runtime-tools': 0.15.0
- '@module-federation/inject-external-runtime-core-plugin@0.18.4':
- resolution: {integrity: sha512-x+IakEXu+ammna2SMKkb1NRDXKxhKckOJIYanNHh1FtG2bvhu8xJplShvStmfO+BUv1n0KODSq89qGVYxFMbGQ==}
+ '@module-federation/inject-external-runtime-core-plugin@0.21.6':
+ resolution: {integrity: sha512-DJQne7NQ988AVi3QB8byn12FkNb+C2lBeU1NRf8/WbL0gmHsr6kW8hiEJCm8LYaURwtsQqtsEV7i+8+51qjSmQ==}
peerDependencies:
- '@module-federation/runtime-tools': 0.18.4
+ '@module-federation/runtime-tools': 0.21.6
'@module-federation/managers@0.15.0':
resolution: {integrity: sha512-YMIiFRgMHtuMcLBgOYyfkFpwU9vo6l0VjOZE5Wdr33DltQBUgp9Lo8+2AkyZ4TTkelqjvUWSNKKYV3MV4GL7gw==}
- '@module-federation/managers@0.18.4':
- resolution: {integrity: sha512-wJ8wheGNq4vnaLHx17F8Y0L+T9nzO5ijqMxQ7q9Yohm7MGeC5DoSjjurv/afxL6Dg5rGky+kHsYGM4qRTMFXaA==}
+ '@module-federation/managers@0.21.6':
+ resolution: {integrity: sha512-BeV6m2/7kF5MDVz9JJI5T8h8lMosnXkH2bOxxFewcra7ZjvDOgQu7WIio0mgk5l1zjNPvnEVKhnhrenEdcCiWg==}
'@module-federation/manifest@0.15.0':
resolution: {integrity: sha512-x+UVFkdoKiNZhpUO8H/9jlM3nmC5bIApZvbC2TQuNva+ElCPotdhEO8jduiVkBnc2lr8D9qnFm8U5Kx/aFnGlA==}
- '@module-federation/manifest@0.18.4':
- resolution: {integrity: sha512-1+sfldRpYmJX/SDqG3gWeeBbPb0H0eKyQcedf77TQGwFypVAOJwI39qV0yp3FdjutD7GdJ2TGPBHnGt7AbEvKA==}
+ '@module-federation/manifest@0.21.6':
+ resolution: {integrity: sha512-yg93+I1qjRs5B5hOSvjbjmIoI2z3th8/yst9sfwvx4UDOG1acsE3HHMyPN0GdoIGwplC/KAnU5NmUz4tREUTGQ==}
- '@module-federation/node@2.7.15':
- resolution: {integrity: sha512-AtZTx1spzsSurHA5ARML13r+9wnpKxWsbOQiyLg3Tl9rt6t/sERu02bNL3XW29WfzAnX6gvFhYeILo0xO5m/lw==}
+ '@module-federation/node@2.7.25':
+ resolution: {integrity: sha512-/u4f+GYRZfHpSvdt5n40lMCS9Cmve7N3JlDreaFXz8xrWDNOp2wvMgiVGpndo5J4iQdtLjpavWStahGQ05B2cQ==}
peerDependencies:
next: '*'
react: ^16||^17||^18||^19
@@ -2527,8 +2899,8 @@ packages:
vue-tsc:
optional: true
- '@module-federation/rspack@0.18.4':
- resolution: {integrity: sha512-gnvXKtk/w0ML15JHueWej5/8Lkoho7EoYUxvO77nBCnGOlXNqVYqLZ3REy2SS/8SQ4vQK156eSiyUkth2OYQqw==}
+ '@module-federation/rspack@0.21.6':
+ resolution: {integrity: sha512-SB+z1P+Bqe3R6geZje9dp0xpspX6uash+zO77nodmUy8PTTBlkL7800Cq2FMLKUdoTZHJTBVXf0K6CqQWSlItg==}
peerDependencies:
'@rspack/core': '>=0.7'
typescript: ^4.9.0 || ^5.0.0
@@ -2542,75 +2914,109 @@ packages:
'@module-federation/runtime-core@0.15.0':
resolution: {integrity: sha512-RYzI61fRDrhyhaEOXH3AgIGlHiot0wPFXu7F43cr+ZnTi+VlSYWLdlZ4NBuT9uV6JSmH54/c+tEZm5SXgKR2sQ==}
- '@module-federation/runtime-core@0.18.0':
- resolution: {integrity: sha512-ZyYhrDyVAhUzriOsVfgL6vwd+5ebYm595Y13KeMf6TKDRoUHBMTLGQ8WM4TDj8JNsy7LigncK8C03fn97of0QQ==}
+ '@module-federation/runtime-core@0.21.4':
+ resolution: {integrity: sha512-SGpmoOLGNxZofpTOk6Lxb2ewaoz5wMi93AFYuuJB04HTVcngEK+baNeUZ2D/xewrqNIJoMY6f5maUjVfIIBPUA==}
- '@module-federation/runtime-core@0.18.4':
- resolution: {integrity: sha512-LGGlFXlNeTbIGBFDiOvg0zz4jBWCGPqQatXdKx7mylXhDij7YmwbuW19oenX+P1fGhmoBUBM5WndmR87U66qWA==}
+ '@module-federation/runtime-core@0.21.6':
+ resolution: {integrity: sha512-5Hd1Y5qp5lU/aTiK66lidMlM/4ji2gr3EXAtJdreJzkY+bKcI5+21GRcliZ4RAkICmvdxQU5PHPL71XmNc7Lsw==}
'@module-federation/runtime-tools@0.15.0':
resolution: {integrity: sha512-kzFn3ObUeBp5vaEtN1WMxhTYBuYEErxugu1RzFUERD21X3BZ+b4cWwdFJuBDlsmVjctIg/QSOoZoPXRKAO0foA==}
- '@module-federation/runtime-tools@0.18.0':
- resolution: {integrity: sha512-fSga9o4t1UfXNV/Kh6qFvRyZpPp3EHSPRISNeyT8ZoTpzDNiYzhtw0BPUSSD8m6C6XQh2s/11rI4g80UY+d+hA==}
+ '@module-federation/runtime-tools@0.21.4':
+ resolution: {integrity: sha512-RzFKaL0DIjSmkn76KZRfzfB6dD07cvID84950jlNQgdyoQFUGkqD80L6rIpVCJTY/R7LzR3aQjHnoqmq4JPo3w==}
- '@module-federation/runtime-tools@0.18.4':
- resolution: {integrity: sha512-wSGTdx77R8BQX+q6nAcUuHPydYYm0F97gAEP9RTW1UlzXnM/0AFysDHujvtRQf5vyXkhj//HdcH6LIJJCImy2g==}
+ '@module-federation/runtime-tools@0.21.6':
+ resolution: {integrity: sha512-fnP+ZOZTFeBGiTAnxve+axGmiYn2D60h86nUISXjXClK3LUY1krUfPgf6MaD4YDJ4i51OGXZWPekeMe16pkd8Q==}
'@module-federation/runtime@0.15.0':
resolution: {integrity: sha512-dTPsCNum9Bhu3yPOcrPYq0YnM9eCMMMNB1wuiqf1+sFbQlNApF0vfZxooqz3ln0/MpgE0jerVvFsLVGfqvC9Ug==}
- '@module-federation/runtime@0.18.0':
- resolution: {integrity: sha512-+C4YtoSztM7nHwNyZl6dQKGUVJdsPrUdaf3HIKReg/GQbrt9uvOlUWo2NXMZ8vDAnf/QRrpSYAwXHmWDn9Obaw==}
+ '@module-federation/runtime@0.21.4':
+ resolution: {integrity: sha512-wgvGqryurVEvkicufJmTG0ZehynCeNLklv8kIk5BLIsWYSddZAE+xe4xov1kgH5fIJQAoQNkRauFFjVNlHoAkA==}
- '@module-federation/runtime@0.18.4':
- resolution: {integrity: sha512-2et6p7pjGRHzpmrW425jt/BiAU7QHgkZtbQB7pj01eQ8qx6SloFEBk9ODnV8/ztSm9H2T3d8GxXA6/9xVOslmQ==}
+ '@module-federation/runtime@0.21.6':
+ resolution: {integrity: sha512-+caXwaQqwTNh+CQqyb4mZmXq7iEemRDrTZQGD+zyeH454JAYnJ3s/3oDFizdH6245pk+NiqDyOOkHzzFQorKhQ==}
'@module-federation/sdk@0.15.0':
resolution: {integrity: sha512-PWiYbGcJrKUD6JZiEPihrXhV3bgXdll4bV7rU+opV7tHaun+Z0CdcawjZ82Xnpb8MCPGmqHwa1MPFeUs66zksw==}
- '@module-federation/sdk@0.18.0':
- resolution: {integrity: sha512-Lo/Feq73tO2unjmpRfyyoUkTVoejhItXOk/h5C+4cistnHbTV8XHrW/13fD5e1Iu60heVdAhhelJd6F898Ve9A==}
+ '@module-federation/sdk@0.21.4':
+ resolution: {integrity: sha512-tzvhOh/oAfX++6zCDDxuvioHY4Jurf8vcfoCbKFxusjmyKr32GPbwFDazUP+OPhYCc3dvaa9oWU6X/qpUBLfJw==}
- '@module-federation/sdk@0.18.4':
- resolution: {integrity: sha512-dErzOlX+E3HS2Sg1m12Hi9nCnfvQPuIvlq9N47KxrbT2TIU3KKYc9q/Ua+QWqxfTyMVFpbNDwFMJ1R/w/gYf4A==}
+ '@module-federation/sdk@0.21.6':
+ resolution: {integrity: sha512-x6hARETb8iqHVhEsQBysuWpznNZViUh84qV2yE7AD+g7uIzHKiYdoWqj10posbo5XKf/147qgWDzKZoKoEP2dw==}
'@module-federation/third-party-dts-extractor@0.15.0':
resolution: {integrity: sha512-rML74G1NB9wtHubXP+ZTMI5HZkYypN/E93w8Zkwr6rc/k1eoZZza2lghw2znCNeu3lDlhvI9i4iaVsJQrX4oQA==}
- '@module-federation/third-party-dts-extractor@0.18.4':
- resolution: {integrity: sha512-PpiC0jxOegNR/xjhNOkjSYnUqMNJAy1kWsRd10to3Y64ZvGRf7/HF+x3aLIX8MbN7Ioy9F7Gd5oax6rtm+XmNQ==}
+ '@module-federation/third-party-dts-extractor@0.21.6':
+ resolution: {integrity: sha512-Il6x4hLsvCgZNk1DFwuMBNeoxD1BsZ5AW2BI/nUgu0k5FiAvfcz1OFawRFEHtaM/kVrCsymMOW7pCao90DaX3A==}
'@module-federation/webpack-bundler-runtime@0.15.0':
resolution: {integrity: sha512-i+3wu2Ljh2TmuUpsnjwZVupOVqV50jP0ndA8PSP4gwMKlgdGeaZ4VH5KkHAXGr2eiYUxYLMrJXz1+eILJqeGDg==}
- '@module-federation/webpack-bundler-runtime@0.18.0':
- resolution: {integrity: sha512-TEvErbF+YQ+6IFimhUYKK3a5wapD90d90sLsNpcu2kB3QGT7t4nIluE25duXuZDVUKLz86tEPrza/oaaCWTpvQ==}
+ '@module-federation/webpack-bundler-runtime@0.21.4':
+ resolution: {integrity: sha512-dusmR3uPnQh9u9ChQo3M+GLOuGFthfvnh7WitF/a1eoeTfRmXqnMFsXtZCUK+f/uXf+64874Zj/bhAgbBcVHZA==}
+
+ '@module-federation/webpack-bundler-runtime@0.21.6':
+ resolution: {integrity: sha512-7zIp3LrcWbhGuFDTUMLJ2FJvcwjlddqhWGxi/MW3ur1a+HaO8v5tF2nl+vElKmbG1DFLU/52l3PElVcWf/YcsQ==}
- '@module-federation/webpack-bundler-runtime@0.18.4':
- resolution: {integrity: sha512-nPHp2wRS4/yfrGRQchZ0cyvdUZk+XgUmD0qWQl95xmeIeXUb90s3JrWFHSmS6Dt1gwMgJOeNpzzZDcBSy2P1VQ==}
+ '@mui/core-downloads-tracker@7.3.5':
+ resolution: {integrity: sha512-kOLwlcDPnVz2QMhiBv0OQ8le8hTCqKM9cRXlfVPL91l3RGeOsxrIhNRsUt3Xb8wb+pTVUolW+JXKym93vRKxCw==}
+
+ '@mui/core-downloads-tracker@7.3.6':
+ resolution: {integrity: sha512-QaYtTHlr8kDFN5mE1wbvVARRKH7Fdw1ZuOjBJcFdVpfNfRYKF3QLT4rt+WaB6CKJvpqxRsmEo0kpYinhH5GeHg==}
+
+ '@mui/icons-material@7.3.5':
+ resolution: {integrity: sha512-LciL1GLMZ+VlzyHAALSVAR22t8IST4LCXmljcUSx2NOutgO2XnxdIp8ilFbeNf9wpo0iUFbAuoQcB7h+HHIf3A==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ '@mui/material': ^7.3.5
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@mui/core-downloads-tracker@7.3.2':
- resolution: {integrity: sha512-AOyfHjyDKVPGJJFtxOlept3EYEdLoar/RvssBTWVAvDJGIE676dLi2oT/Kx+FoVXFoA/JdV7DEMq/BVWV3KHRw==}
+ '@mui/icons-material@7.3.6':
+ resolution: {integrity: sha512-0FfkXEj22ysIq5pa41A2NbcAhJSvmcZQ/vcTIbjDsd6hlslG82k5BEBqqS0ZJprxwIL3B45qpJ+bPHwJPlF7uQ==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ '@mui/material': ^7.3.6
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@mui/icons-material@7.3.2':
- resolution: {integrity: sha512-TZWazBjWXBjR6iGcNkbKklnwodcwj0SrChCNHc9BhD9rBgET22J1eFhHsEmvSvru9+opDy3umqAimQjokhfJlQ==}
+ '@mui/material@7.3.5':
+ resolution: {integrity: sha512-8VVxFmp1GIm9PpmnQoCoYo0UWHoOrdA57tDL62vkpzEgvb/d71Wsbv4FRg7r1Gyx7PuSo0tflH34cdl/NvfHNQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
- '@mui/material': ^7.3.2
+ '@emotion/react': ^11.5.0
+ '@emotion/styled': ^11.3.0
+ '@mui/material-pigment-css': ^7.3.5
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
+ '@mui/material-pigment-css':
+ optional: true
'@types/react':
optional: true
- '@mui/material@7.3.2':
- resolution: {integrity: sha512-qXvbnawQhqUVfH1LMgMaiytP+ZpGoYhnGl7yYq2x57GYzcFL/iPzSZ3L30tlbwEjSVKNYcbiKO8tANR1tadjUg==}
+ '@mui/material@7.3.6':
+ resolution: {integrity: sha512-R4DaYF3dgCQCUAkr4wW1w26GHXcf5rCmBRHVBuuvJvaGLmZdD8EjatP80Nz5JCw0KxORAzwftnHzXVnjR8HnFw==}
engines: {node: '>=14.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
- '@mui/material-pigment-css': ^7.3.2
+ '@mui/material-pigment-css': ^7.3.6
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -2624,8 +3030,18 @@ packages:
'@types/react':
optional: true
- '@mui/private-theming@7.3.2':
- resolution: {integrity: sha512-ha7mFoOyZGJr75xeiO9lugS3joRROjc8tG1u4P50dH0KR7bwhHznVMcYg7MouochUy0OxooJm/OOSpJ7gKcMvg==}
+ '@mui/private-theming@7.3.5':
+ resolution: {integrity: sha512-cTx584W2qrLonwhZLbEN7P5pAUu0nZblg8cLBlTrZQ4sIiw8Fbvg7GvuphQaSHxPxrCpa7FDwJKtXdbl2TSmrA==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@mui/private-theming@7.3.6':
+ resolution: {integrity: sha512-Ws9wZpqM+FlnbZXaY/7yvyvWQo1+02Tbx50mVdNmzWEi51C51y56KAbaDCYyulOOBL6BJxuaqG8rNNuj7ivVyw==}
engines: {node: '>=14.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -2634,8 +3050,21 @@ packages:
'@types/react':
optional: true
- '@mui/styled-engine@7.3.2':
- resolution: {integrity: sha512-PkJzW+mTaek4e0nPYZ6qLnW5RGa0KN+eRTf5FA2nc7cFZTeM+qebmGibaTLrgQBy3UpcpemaqfzToBNkzuxqew==}
+ '@mui/styled-engine@7.3.5':
+ resolution: {integrity: sha512-zbsZ0uYYPndFCCPp2+V3RLcAN6+fv4C8pdwRx6OS3BwDkRCN8WBehqks7hWyF3vj1kdQLIWrpdv/5Y0jHRxYXQ==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ '@emotion/react': ^11.4.1
+ '@emotion/styled': ^11.3.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
+
+ '@mui/styled-engine@7.3.6':
+ resolution: {integrity: sha512-+wiYbtvj+zyUkmDB+ysH6zRjuQIJ+CM56w0fEXV+VDNdvOuSywG+/8kpjddvvlfMLsaWdQe5oTuYGBcodmqGzQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
'@emotion/react': ^11.4.1
@@ -2647,8 +3076,8 @@ packages:
'@emotion/styled':
optional: true
- '@mui/system@7.3.2':
- resolution: {integrity: sha512-9d8JEvZW+H6cVkaZ+FK56R53vkJe3HsTpcjMUtH8v1xK6Y1TjzHdZ7Jck02mGXJsE6MQGWVs3ogRHTQmS9Q/rA==}
+ '@mui/system@7.3.5':
+ resolution: {integrity: sha512-yPaf5+gY3v80HNkJcPi6WT+r9ebeM4eJzrREXPxMt7pNTV/1eahyODO4fbH3Qvd8irNxDFYn5RQ3idHW55rA6g==}
engines: {node: '>=14.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
@@ -2663,16 +3092,50 @@ packages:
'@types/react':
optional: true
- '@mui/types@7.4.6':
- resolution: {integrity: sha512-NVBbIw+4CDMMppNamVxyTccNv0WxtDb7motWDlMeSC8Oy95saj1TIZMGynPpFLePt3yOD8TskzumeqORCgRGWw==}
+ '@mui/system@7.3.6':
+ resolution: {integrity: sha512-8fehAazkHNP1imMrdD2m2hbA9sl7Ur6jfuNweh5o4l9YPty4iaZzRXqYvBCWQNwFaSHmMEj2KPbyXGp7Bt73Rg==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ '@emotion/react': ^11.5.0
+ '@emotion/styled': ^11.3.0
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
+ '@types/react':
+ optional: true
+
+ '@mui/types@7.4.8':
+ resolution: {integrity: sha512-ZNXLBjkPV6ftLCmmRCafak3XmSn8YV0tKE/ZOhzKys7TZXUiE0mZxlH8zKDo6j6TTUaDnuij68gIG+0Ucm7Xhw==}
+ peerDependencies:
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@mui/types@7.4.9':
+ resolution: {integrity: sha512-dNO8Z9T2cujkSIaCnWwprfeKmTWh97cnjkgmpFJ2sbfXLx8SMZijCYHOtP/y5nnUb/Rm2omxbDMmtUoSaUtKaw==}
+ peerDependencies:
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@mui/utils@7.3.5':
+ resolution: {integrity: sha512-jisvFsEC3sgjUjcPnR4mYfhzjCDIudttSGSbe1o/IXFNu0kZuR+7vqQI0jg8qtcVZBHWrwTfvAZj9MNMumcq1g==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@mui/utils@7.3.2':
- resolution: {integrity: sha512-4DMWQGenOdLnM3y/SdFQFwKsCLM+mqxzvoWp9+x2XdEzXapkznauHLiXtSohHs/mc0+5/9UACt1GdugCX2te5g==}
+ '@mui/utils@7.3.6':
+ resolution: {integrity: sha512-jn+Ba02O6PiFs7nKva8R2aJJ9kJC+3kQ2R0BbKNY3KQQ36Qng98GnPRFTlbwYTdMD6hLEBKaMLUktyg/rTfd2w==}
engines: {node: '>=14.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -2793,8 +3256,8 @@ packages:
'@napi-rs/wasm-runtime@0.2.4':
resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==}
- '@napi-rs/wasm-runtime@1.0.3':
- resolution: {integrity: sha512-rZxtMsLwjdXkMUGC3WwsPwLNVqVqnTJT6MNIB6e+5fhMcSCPP0AOsNWuMQ5mdCq6HNjs/ZeWAEchpqeprqBD2Q==}
+ '@napi-rs/wasm-runtime@1.0.7':
+ resolution: {integrity: sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -2832,8 +3295,8 @@ packages:
cypress:
optional: true
- '@nx/cypress@21.5.1':
- resolution: {integrity: sha512-CWdVop99nCmgaUFI/WEcLkw5d+x9d+O33aWZMplfJBJeEhnTtm/X8rOpW0FKX+uQzGNp6YTlf41CFfjhWTmwXQ==}
+ '@nx/cypress@21.6.9':
+ resolution: {integrity: sha512-enB1T7VKYWWqkYTp8hsxAF8dgFe+vKhuH2hiEgI8lPPdP/5bhMYVObFeQwCZQGEYzd8GUcJzfjjybXnfqFKDow==}
peerDependencies:
cypress: '>= 3 < 15'
peerDependenciesMeta:
@@ -2855,13 +3318,8 @@ packages:
peerDependencies:
nx: 21.3.10
- '@nx/devkit@21.4.1':
- resolution: {integrity: sha512-rWgMNG2e0tSG5L3vffuMH/aRkn+i9vYHelWkgVAslGBOaqriEg1dCSL/W9I3Fd5lnucHy3DrG1f19uDjv7Dm0A==}
- peerDependencies:
- nx: '>= 20 <= 22'
-
- '@nx/devkit@21.5.1':
- resolution: {integrity: sha512-eVFFLMUcxO/holHdWo0YabyUs6H3wNvnovt/0LddIRGoiMHWpbFZLB/KThiyUWvuFVuqqyDzRmS0XRo/M2kOqQ==}
+ '@nx/devkit@21.6.9':
+ resolution: {integrity: sha512-Si7Lo5OgiHz/xU/NL1v5LnynE5oGrQmYE3KXxZoSRWij/nxZKi0wEB0W6dT3MtQW8RY1y5mg45Ti0Ym+Clhi8Q==}
peerDependencies:
nx: '>= 20 <= 22'
@@ -2883,8 +3341,8 @@ packages:
'@zkochan/js-yaml':
optional: true
- '@nx/eslint@21.5.1':
- resolution: {integrity: sha512-4ytlak7+gjOMoHX/QuLN1+y80ykA97ZF4V7jaGMgWMGO1PMMToA1TonaD7igbkIOHXe90rd3n6UZ4MFPsTMbiA==}
+ '@nx/eslint@21.6.9':
+ resolution: {integrity: sha512-psd6GtWII5i1M15TTmdh8UZ/pBWlh6JtaVwlE5tk/GHlnCGXHEY+g3gKTsetjbuHjaocdwrfEy4TIB5J5Zh3HQ==}
peerDependencies:
'@zkochan/js-yaml': 0.0.7
eslint: ^8.0.0 || ^9.0.0
@@ -2916,8 +3374,8 @@ packages:
verdaccio:
optional: true
- '@nx/js@21.5.1':
- resolution: {integrity: sha512-1bmmIztTZvsZ8g5c1Vg1OHcpdJfUbmbANJAWAEmKw22X8Bdwhzi4Vfg8oYtTn1YvFpePV7GRxaFsG7sLI0VrYw==}
+ '@nx/js@21.6.9':
+ resolution: {integrity: sha512-KJnqe6W0Ly5AgpBOhygcVs5RssVKnKrISVp42CSirKx3nei6cus9VItwKBvBBAqmYw4AlrCe+/A2twTQCkeq1A==}
peerDependencies:
verdaccio: ^6.0.5
peerDependenciesMeta:
@@ -2943,13 +3401,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@nx/nx-darwin-arm64@21.4.1':
- resolution: {integrity: sha512-9BbkQnxGEDNX2ESbW4Zdrq1i09y6HOOgTuGbMJuy4e8F8rU/motMUqOpwmFgLHkLgPNZiOC2VXht3or/kQcpOg==}
- cpu: [arm64]
- os: [darwin]
-
- '@nx/nx-darwin-arm64@21.5.1':
- resolution: {integrity: sha512-IygLfkQ9IlLG6UVlIdycGhXcK2uJynPwlQu6PcbprCc7iR7Y9QS62EJTDaIWoSIndyTZOL0vzTsucaGrTbW0iQ==}
+ '@nx/nx-darwin-arm64@21.6.9':
+ resolution: {integrity: sha512-rN5cJAjKvyXfi+Zep7wvSNtGr35X1/qrm96K/Sf4sybvowyHmDdEMYxkR6BPNT8ct5JGMm35xPfx1yF/rJek3w==}
cpu: [arm64]
os: [darwin]
@@ -2969,13 +3422,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@nx/nx-darwin-x64@21.4.1':
- resolution: {integrity: sha512-dnkmap1kc6aLV8CW1ihjsieZyaDDjlIB5QA2reTCLNSdTV446K6Fh0naLdaoG4ZkF27zJA/qBOuAaLzRHFJp3g==}
- cpu: [x64]
- os: [darwin]
-
- '@nx/nx-darwin-x64@21.5.1':
- resolution: {integrity: sha512-TuCv71+SSFkhvBtzK38m4zX5L2IssVN1pv7qYgQt/mu6GSShLowPnciIfd+1rLZ669Rnq6Nw19y6pLtrvrM6pg==}
+ '@nx/nx-darwin-x64@21.6.9':
+ resolution: {integrity: sha512-rb/Dtum094nfJL8lYohne1duZr8uNQ4gvWTq/Cw/xowJwXGq3xzsSS2WTpDpRBMF45K+42fipGHNeHbCyYSF7g==}
cpu: [x64]
os: [darwin]
@@ -2995,13 +3443,8 @@ packages:
cpu: [x64]
os: [freebsd]
- '@nx/nx-freebsd-x64@21.4.1':
- resolution: {integrity: sha512-RpxDBGOPeDqJjpbV7F3lO/w1aIKfLyG/BM0OpJfTgFVpUIl50kMj5M1m4W9A8kvYkfOD9pDbUaWszom7d57yjg==}
- cpu: [x64]
- os: [freebsd]
-
- '@nx/nx-freebsd-x64@21.5.1':
- resolution: {integrity: sha512-degNAUzVQvgbGHbaXhuVS9I7EgeClQ3tkUUXw40eiO/q6GQx8DeVzIFM40dD2qHmWXGX4UVrF0u0QvkdOreapA==}
+ '@nx/nx-freebsd-x64@21.6.9':
+ resolution: {integrity: sha512-Cd7QHeivvLBiQ6iRTsvprGk1YS+CaUCMw4A+3TOvHz608a/U3mEye8oRy2fyFTTL/lsH6dlihT3xi+HNyXKAyA==}
cpu: [x64]
os: [freebsd]
@@ -3021,13 +3464,8 @@ packages:
cpu: [arm]
os: [linux]
- '@nx/nx-linux-arm-gnueabihf@21.4.1':
- resolution: {integrity: sha512-2OyBoag2738XWmWK3ZLBuhaYb7XmzT3f8HzomggLDJoDhwDekjgRoNbTxogAAj6dlXSeuPjO81BSlIfXQcth3w==}
- cpu: [arm]
- os: [linux]
-
- '@nx/nx-linux-arm-gnueabihf@21.5.1':
- resolution: {integrity: sha512-t/EFYOdFs9uzWHjhU+QfmBOcbPpx1/svT5G5Xy+kRt+lxSISQSe7ysEypfJPCBr5m71sV4ZEOdVAuMnf5sak2g==}
+ '@nx/nx-linux-arm-gnueabihf@21.6.9':
+ resolution: {integrity: sha512-ASXay2jKhSU4tfY9Z2ByysqDQxYgTHCtoJ+XR5xRv9aoIos6oYeKAqQV/RLXpTklugu08nBtL/4IRw58x4oU4A==}
cpu: [arm]
os: [linux]
@@ -3042,18 +3480,13 @@ packages:
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-arm64-gnu@21.3.10':
- resolution: {integrity: sha512-9Phr9FBVDr86QQ32Qxf7GyfBpgPfYDf0TWkWZe/EhR3UijoCM3a2WMyoLWxhl+oTkjxQVBP7adqToh7Da0hyuQ==}
- cpu: [arm64]
- os: [linux]
-
- '@nx/nx-linux-arm64-gnu@21.4.1':
- resolution: {integrity: sha512-2pg7/zjBDioUWJ3OY8Ixqy64eokKT5sh4iq1bk22bxOCf676aGrAu6khIxy4LBnPIdO0ZOK7KCJ7xOFP4phZqA==}
+ '@nx/nx-linux-arm64-gnu@21.3.10':
+ resolution: {integrity: sha512-9Phr9FBVDr86QQ32Qxf7GyfBpgPfYDf0TWkWZe/EhR3UijoCM3a2WMyoLWxhl+oTkjxQVBP7adqToh7Da0hyuQ==}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-arm64-gnu@21.5.1':
- resolution: {integrity: sha512-OubBjD8BN11nEjrHCno5EOXs6iUOgvfStsqQ/90sN8856PTh1uM86tklUi68Xx8dgMAc2nUrFqqlOL2KYT8t/w==}
+ '@nx/nx-linux-arm64-gnu@21.6.9':
+ resolution: {integrity: sha512-1VS38xnAC8iH05A0nnbNn1hi9ypRnEPUfgLL3tPhAwQTWX2DQz4xR/j0NYNcCzL6yBe/JhdKlYoN/LI38lj2UA==}
cpu: [arm64]
os: [linux]
@@ -3073,13 +3506,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-arm64-musl@21.4.1':
- resolution: {integrity: sha512-whNxh12au/inQtkZju1ZfXSqDS0hCh/anzVCXfLYWFstdwv61XiRmFCSHeN0gRDthlncXFdgKoT1bGG5aMYLtA==}
- cpu: [arm64]
- os: [linux]
-
- '@nx/nx-linux-arm64-musl@21.5.1':
- resolution: {integrity: sha512-11mPv4uW/IqgIH3p2QHt7GZd3hrAE3MDJNZvo1Zj0O7o4ukWh/G7GHEQzAqYe4qdm91TOHNCkKJihSf8Ha3DBg==}
+ '@nx/nx-linux-arm64-musl@21.6.9':
+ resolution: {integrity: sha512-PScHPs0dp+Cc17RvY4Y5wlDXT6xdDlsyhna2JLawodVCyUVArtnbF7whn/VEZKesDD/vAf1avCt4oAjuYS8VXg==}
cpu: [arm64]
os: [linux]
@@ -3099,13 +3527,8 @@ packages:
cpu: [x64]
os: [linux]
- '@nx/nx-linux-x64-gnu@21.4.1':
- resolution: {integrity: sha512-UHw57rzLio0AUDXV3l+xcxT3LjuXil7SHj+H8aYmXTpXktctQU2eYGOs5ATqJ1avVQRSejJugHF0i8oLErC28A==}
- cpu: [x64]
- os: [linux]
-
- '@nx/nx-linux-x64-gnu@21.5.1':
- resolution: {integrity: sha512-b0eN0bZAq4qIa849CO1gjpvAM14safR8e7l0nMFUcB0llNGyA3C8SStQ03nw6+HuXwzEhIWVnHrJhvJPmPZ8KQ==}
+ '@nx/nx-linux-x64-gnu@21.6.9':
+ resolution: {integrity: sha512-s8oX6/pLolHH3EyFJPcKITv+rzN/IZuidMCNkGfcr0jYVqrTZcJo8xUEwAQzf6u6J6urOm0bUK3BDuwJLEKESg==}
cpu: [x64]
os: [linux]
@@ -3125,13 +3548,8 @@ packages:
cpu: [x64]
os: [linux]
- '@nx/nx-linux-x64-musl@21.4.1':
- resolution: {integrity: sha512-qqE2Gy/DwOLIyePjM7GLHp/nDLZJnxHmqTeCiTQCp/BdbmqjRkSUz5oL+Uua0SNXaTu5hjAfvjXAhSTgBwVO6g==}
- cpu: [x64]
- os: [linux]
-
- '@nx/nx-linux-x64-musl@21.5.1':
- resolution: {integrity: sha512-DjMtLCDLhJgAoFaEme8/+5jENd11k6cddYXzs04zd0GG+5TggQHLo9LwtkuYf8BFi1v8XrpYLo0V647YLncAXg==}
+ '@nx/nx-linux-x64-musl@21.6.9':
+ resolution: {integrity: sha512-bojpGcscRrnet5N3waeHYnBHW0y6r5tSQ1phnwMjgoBFmWXw+0M+z/f2dfZcTtBmWc7Y/TnzaGb8EenC3a63cQ==}
cpu: [x64]
os: [linux]
@@ -3151,13 +3569,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@nx/nx-win32-arm64-msvc@21.4.1':
- resolution: {integrity: sha512-NtEzMiRrSm2DdL4ntoDdjeze8DBrfZvLtx3Dq6+XmOhwnigR6umfWfZ6jbluZpuSQcxzQNVifqirdaQKYaYwDQ==}
- cpu: [arm64]
- os: [win32]
-
- '@nx/nx-win32-arm64-msvc@21.5.1':
- resolution: {integrity: sha512-H15phBFnx33GTJnuJom3lnjb18tt/87E26mZuJoxwIPdFVkCmUKiB5YP6rA7lIknzPD1mkCE1E6zFIjnIuNQyQ==}
+ '@nx/nx-win32-arm64-msvc@21.6.9':
+ resolution: {integrity: sha512-cS1bdMiJBs4AcykJ3+vtAdw4RkZLLfXT20o+k07dEskRFADIa5yXdOs2j0qKoe7iCiORKCH+gI/YsPHCyHfV9Q==}
cpu: [arm64]
os: [win32]
@@ -3177,13 +3590,8 @@ packages:
cpu: [x64]
os: [win32]
- '@nx/nx-win32-x64-msvc@21.4.1':
- resolution: {integrity: sha512-gpG+Y4G/mxGrfkUls6IZEuuBxRaKLMSEoVFLMb9JyyaLEDusn+HJ1m90XsOedjNLBHGMFigsd/KCCsXfFn4njg==}
- cpu: [x64]
- os: [win32]
-
- '@nx/nx-win32-x64-msvc@21.5.1':
- resolution: {integrity: sha512-bKw/CDrtRMm8J+IslPOdFaCaEeGaWWo6CSUqnlfM3hXaWYJMamsWfmbUfzipAcYCq2BJ8/IEcJ41K7ANpVdq1w==}
+ '@nx/nx-win32-x64-msvc@21.6.9':
+ resolution: {integrity: sha512-EX0ja8gWnmomiSbK9K58oATpTn/+KU6RKcrfzqA3yL5x/a+kEPSf66QOXGQjDpCGKWMoxN+6ex7zhpmqbqKxgg==}
cpu: [x64]
os: [win32]
@@ -3222,11 +3630,8 @@ packages:
'@nx/workspace@21.3.10':
resolution: {integrity: sha512-pMT3gqU1KsLcSSUpq+W80d61WrjoDKvbj8/8c26F4BbZt7y9QGzwPS3ZAMdMm16h5SGKcRWxw+WE68yF2C2vtw==}
- '@nx/workspace@21.4.1':
- resolution: {integrity: sha512-3e33eTb1hRx6/i416Wc0mk/TPANxjx2Kz8ecnyqFFII5CM9tX7CPCwDF4O75N9mysI6PCKJ+Hc/1q76HZR4UgA==}
-
- '@nx/workspace@21.5.1':
- resolution: {integrity: sha512-Z3iuXaq2D5h6R8KInw5+EwX+pjuvrmSEhAYEtFWXrrRX/HQ3mnSRJQi8y2izLxv5yaTN6l/ufQ0NnDzPRLGpJg==}
+ '@nx/workspace@21.6.9':
+ resolution: {integrity: sha512-tUucr8hrpdhFITMjEEF8vm1j0GSW0ecFTySViWnnVvYyyv7tbidK/76MV/iyV/SjSamOHm2zIXS9fCfXV4LpAQ==}
'@oxc-resolver/binding-darwin-arm64@5.3.0':
resolution: {integrity: sha512-hXem5ZAguS7IlSiHg/LK0tEfLj4eUo+9U6DaFwwBEGd0L0VIF9LmuiHydRyOrdnnmi9iAAFMAn/wl2cUoiuruA==}
@@ -3293,6 +3698,9 @@ packages:
cpu: [x64]
os: [win32]
+ '@petamoriken/float16@3.9.3':
+ resolution: {integrity: sha512-8awtpHXCx/bNpFt4mt2xdkgtgVvKqty8VbjHI/WWWQuEw+KLzFot3f4+LkQY9YmOtq7A5GdOnqoIC8Pdygjk2g==}
+
'@phenomnomnominal/tsquery@5.0.1':
resolution: {integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==}
peerDependencies:
@@ -3321,8 +3729,8 @@ packages:
'@probe.gl/stats@4.1.0':
resolution: {integrity: sha512-EI413MkWKBDVNIfLdqbeNSJTs7ToBz/KVGkwi3D+dQrSIkRI2IYbWGAU3xX+D6+CI4ls8ehxMhNpUVMaZggDvQ==}
- '@reduxjs/toolkit@2.9.0':
- resolution: {integrity: sha512-fSfQlSRu9Z5yBkvsNhYF2rPS8cGXn/TZVrlwN1948QyZ8xMZ0JvP50S2acZNaf+o63u6aEeMjipFyksjIcWrog==}
+ '@reduxjs/toolkit@2.11.0':
+ resolution: {integrity: sha512-hBjYg0aaRL1O2Z0IqWhnTLytnjDIxekmRxm1snsHjHaKVmIF1HiImWqsq+PuEbn6zdMlkIj9WofK1vR8jjx+Xw==}
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18 || ^19
react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0
@@ -3335,6 +3743,9 @@ packages:
'@rolldown/pluginutils@1.0.0-beta.27':
resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
+ '@rolldown/pluginutils@1.0.0-beta.53':
+ resolution: {integrity: sha512-vENRlFU4YbrwVqNDZ7fLvy+JR1CRkyr01jhSiDpE1u6py3OMzQfztQU2jxykW3ALNxO4kSlqIDeYyD0Y9RcQeQ==}
+
'@rollup/pluginutils@5.3.0':
resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==}
engines: {node: '>=14.0.0'}
@@ -3344,165 +3755,170 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.50.0':
- resolution: {integrity: sha512-lVgpeQyy4fWN5QYebtW4buT/4kn4p4IJ+kDNB4uYNT5b8c8DLJDg6titg20NIg7E8RWwdWZORW6vUFfrLyG3KQ==}
+ '@rollup/rollup-android-arm-eabi@4.53.3':
+ resolution: {integrity: sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.50.0':
- resolution: {integrity: sha512-2O73dR4Dc9bp+wSYhviP6sDziurB5/HCym7xILKifWdE9UsOe2FtNcM+I4xZjKrfLJnq5UR8k9riB87gauiQtw==}
+ '@rollup/rollup-android-arm64@4.53.3':
+ resolution: {integrity: sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.50.0':
- resolution: {integrity: sha512-vwSXQN8T4sKf1RHr1F0s98Pf8UPz7pS6P3LG9NSmuw0TVh7EmaE+5Ny7hJOZ0M2yuTctEsHHRTMi2wuHkdS6Hg==}
+ '@rollup/rollup-darwin-arm64@4.53.3':
+ resolution: {integrity: sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.50.0':
- resolution: {integrity: sha512-cQp/WG8HE7BCGyFVuzUg0FNmupxC+EPZEwWu2FCGGw5WDT1o2/YlENbm5e9SMvfDFR6FRhVCBePLqj0o8MN7Vw==}
+ '@rollup/rollup-darwin-x64@4.53.3':
+ resolution: {integrity: sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.50.0':
- resolution: {integrity: sha512-UR1uTJFU/p801DvvBbtDD7z9mQL8J80xB0bR7DqW7UGQHRm/OaKzp4is7sQSdbt2pjjSS72eAtRh43hNduTnnQ==}
+ '@rollup/rollup-freebsd-arm64@4.53.3':
+ resolution: {integrity: sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.50.0':
- resolution: {integrity: sha512-G/DKyS6PK0dD0+VEzH/6n/hWDNPDZSMBmqsElWnCRGrYOb2jC0VSupp7UAHHQ4+QILwkxSMaYIbQ72dktp8pKA==}
+ '@rollup/rollup-freebsd-x64@4.53.3':
+ resolution: {integrity: sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.50.0':
- resolution: {integrity: sha512-u72Mzc6jyJwKjJbZZcIYmd9bumJu7KNmHYdue43vT1rXPm2rITwmPWF0mmPzLm9/vJWxIRbao/jrQmxTO0Sm9w==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.53.3':
+ resolution: {integrity: sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.50.0':
- resolution: {integrity: sha512-S4UefYdV0tnynDJV1mdkNawp0E5Qm2MtSs330IyHgaccOFrwqsvgigUD29uT+B/70PDY1eQ3t40+xf6wIvXJyg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.53.3':
+ resolution: {integrity: sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.50.0':
- resolution: {integrity: sha512-1EhkSvUQXJsIhk4msxP5nNAUWoB4MFDHhtc4gAYvnqoHlaL9V3F37pNHabndawsfy/Tp7BPiy/aSa6XBYbaD1g==}
+ '@rollup/rollup-linux-arm64-gnu@4.53.3':
+ resolution: {integrity: sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.50.0':
- resolution: {integrity: sha512-EtBDIZuDtVg75xIPIK1l5vCXNNCIRM0OBPUG+tbApDuJAy9mKago6QxX+tfMzbCI6tXEhMuZuN1+CU8iDW+0UQ==}
+ '@rollup/rollup-linux-arm64-musl@4.53.3':
+ resolution: {integrity: sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.50.0':
- resolution: {integrity: sha512-BGYSwJdMP0hT5CCmljuSNx7+k+0upweM2M4YGfFBjnFSZMHOLYR0gEEj/dxyYJ6Zc6AiSeaBY8dWOa11GF/ppQ==}
+ '@rollup/rollup-linux-loong64-gnu@4.53.3':
+ resolution: {integrity: sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-ppc64-gnu@4.50.0':
- resolution: {integrity: sha512-I1gSMzkVe1KzAxKAroCJL30hA4DqSi+wGc5gviD0y3IL/VkvcnAqwBf4RHXHyvH66YVHxpKO8ojrgc4SrWAnLg==}
+ '@rollup/rollup-linux-ppc64-gnu@4.53.3':
+ resolution: {integrity: sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.50.0':
- resolution: {integrity: sha512-bSbWlY3jZo7molh4tc5dKfeSxkqnf48UsLqYbUhnkdnfgZjgufLS/NTA8PcP/dnvct5CCdNkABJ56CbclMRYCA==}
+ '@rollup/rollup-linux-riscv64-gnu@4.53.3':
+ resolution: {integrity: sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.50.0':
- resolution: {integrity: sha512-LSXSGumSURzEQLT2e4sFqFOv3LWZsEF8FK7AAv9zHZNDdMnUPYH3t8ZlaeYYZyTXnsob3htwTKeWtBIkPV27iQ==}
+ '@rollup/rollup-linux-riscv64-musl@4.53.3':
+ resolution: {integrity: sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.50.0':
- resolution: {integrity: sha512-CxRKyakfDrsLXiCyucVfVWVoaPA4oFSpPpDwlMcDFQvrv3XY6KEzMtMZrA+e/goC8xxp2WSOxHQubP8fPmmjOQ==}
+ '@rollup/rollup-linux-s390x-gnu@4.53.3':
+ resolution: {integrity: sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.50.0':
- resolution: {integrity: sha512-8PrJJA7/VU8ToHVEPu14FzuSAqVKyo5gg/J8xUerMbyNkWkO9j2ExBho/68RnJsMGNJq4zH114iAttgm7BZVkA==}
+ '@rollup/rollup-linux-x64-gnu@4.53.3':
+ resolution: {integrity: sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.50.0':
- resolution: {integrity: sha512-SkE6YQp+CzpyOrbw7Oc4MgXFvTw2UIBElvAvLCo230pyxOLmYwRPwZ/L5lBe/VW/qT1ZgND9wJfOsdy0XptRvw==}
+ '@rollup/rollup-linux-x64-musl@4.53.3':
+ resolution: {integrity: sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-openharmony-arm64@4.50.0':
- resolution: {integrity: sha512-PZkNLPfvXeIOgJWA804zjSFH7fARBBCpCXxgkGDRjjAhRLOR8o0IGS01ykh5GYfod4c2yiiREuDM8iZ+pVsT+Q==}
+ '@rollup/rollup-openharmony-arm64@4.53.3':
+ resolution: {integrity: sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==}
cpu: [arm64]
os: [openharmony]
- '@rollup/rollup-win32-arm64-msvc@4.50.0':
- resolution: {integrity: sha512-q7cIIdFvWQoaCbLDUyUc8YfR3Jh2xx3unO8Dn6/TTogKjfwrax9SyfmGGK6cQhKtjePI7jRfd7iRYcxYs93esg==}
+ '@rollup/rollup-win32-arm64-msvc@4.53.3':
+ resolution: {integrity: sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.50.0':
- resolution: {integrity: sha512-XzNOVg/YnDOmFdDKcxxK410PrcbcqZkBmz+0FicpW5jtjKQxcW1BZJEQOF0NJa6JO7CZhett8GEtRN/wYLYJuw==}
+ '@rollup/rollup-win32-ia32-msvc@4.53.3':
+ resolution: {integrity: sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.50.0':
- resolution: {integrity: sha512-xMmiWRR8sp72Zqwjgtf3QbZfF1wdh8X2ABu3EaozvZcyHJeU0r+XAnXdKgs4cCAp6ORoYoCygipYP1mjmbjrsg==}
+ '@rollup/rollup-win32-x64-gnu@4.53.3':
+ resolution: {integrity: sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==}
cpu: [x64]
os: [win32]
- '@rspack/binding-darwin-arm64@1.5.2':
- resolution: {integrity: sha512-aO76T6VQvAFt1LJNRA5aPOJ+szeTLlzC5wubsnxgWWjG53goP+Te35kFjDIDe+9VhKE/XqRId6iNAymaEsN+Uw==}
+ '@rollup/rollup-win32-x64-msvc@4.53.3':
+ resolution: {integrity: sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==}
+ cpu: [x64]
+ os: [win32]
+
+ '@rspack/binding-darwin-arm64@1.6.5':
+ resolution: {integrity: sha512-DaAJTlaenqZIqFqIYcitn0SzjJ7WpC9234JpiSDZdRyXii9qJJiToVwxSPY/CmkrP0201+aC4pzN4tI9T0Ummw==}
cpu: [arm64]
os: [darwin]
- '@rspack/binding-darwin-x64@1.5.2':
- resolution: {integrity: sha512-XNSmUOwdGs2PEdCKTFCC0/vu/7U9nMhAlbHJKlmdt0V4iPvFyaNWxkNdFqzLc05jlJOfgDdwbwRb91y9IcIIFQ==}
+ '@rspack/binding-darwin-x64@1.6.5':
+ resolution: {integrity: sha512-fPVfp7W/GMbHayb5hbefiMI30JxlsqPexOItHGtufHmTCrNne1aHmApspyUZIUUxG36oDRHuGPnfh+IQbHR6+g==}
cpu: [x64]
os: [darwin]
- '@rspack/binding-linux-arm64-gnu@1.5.2':
- resolution: {integrity: sha512-rNxRfgC5khlrhyEP6y93+45uQ4TI7CdtWqh5PKsaR6lPepG1rH4L8VE+etejSdhzXH6wQ76Rw4wzb96Hx+5vuQ==}
+ '@rspack/binding-linux-arm64-gnu@1.6.5':
+ resolution: {integrity: sha512-K68YDoV2e4s+nlrKZxgF0HehiiRwOAGgZFUwJNRMZ7MUrTGMNlPTJlM+bNdaCjDb6GFxBVFcNwIa1sU+0tF1zg==}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-arm64-musl@1.5.2':
- resolution: {integrity: sha512-kTFX+KsGgArWC5q+jJWz0K/8rfVqZOn1ojv1xpCCcz/ogWRC/qhDGSOva6Wandh157BiR93Vfoe1gMvgjpLe5g==}
+ '@rspack/binding-linux-arm64-musl@1.6.5':
+ resolution: {integrity: sha512-JPtxFBOq7RRmBIwpdGIStf8iyCILehDsjQtEB0Kkhtm7TsAkVGwtC41GLcNuPxcQBKqNDmD8cy3yLYhXadH2CQ==}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-x64-gnu@1.5.2':
- resolution: {integrity: sha512-Lh/6WZGq30lDV6RteQQu7Phw0RH2Z1f4kGR+MsplJ6X4JpnziDow+9oxKdu6FvFHWxHByncpveVeInusQPmL7Q==}
+ '@rspack/binding-linux-x64-gnu@1.6.5':
+ resolution: {integrity: sha512-oh4ZNo2HtizZ/E6UK3BEONu20h8VVBw9GAXuWmo1u22cJSihzg+WfRNCMjRDil82LqSsyAgBwnU+dEjEYGKyAA==}
cpu: [x64]
os: [linux]
- '@rspack/binding-linux-x64-musl@1.5.2':
- resolution: {integrity: sha512-CsLC/SIOIFs6CBmusSAF0FECB62+J36alMdwl7j6TgN6nX3UQQapnL1aVWuQaxU6un/1Vpim0V/EZbUYIdJQ4g==}
+ '@rspack/binding-linux-x64-musl@1.6.5':
+ resolution: {integrity: sha512-8Xebp5bvPJqjifpkFEAX5nUvoU2JvbMU3gwAkEovRRuvooCXnVT2tqkUBjkR3AhivAGgAxAr9hRzUUz/6QWt3Q==}
cpu: [x64]
os: [linux]
- '@rspack/binding-wasm32-wasi@1.5.2':
- resolution: {integrity: sha512-cuVbGr1b4q0Z6AtEraI3becZraPMMgZtZPRaIsVLeDXCmxup/maSAR3T6UaGf4Q2SNcFfjw4neGz5UJxPK8uvA==}
+ '@rspack/binding-wasm32-wasi@1.6.5':
+ resolution: {integrity: sha512-oINZNqzTxM+9dSUOjAORodHXYoJYzXvpaHI2U6ecEmoWaBCs+x3V3Po8DhpNFBwotB+jGlcoVhEHjpg5uaO6pw==}
cpu: [wasm32]
- '@rspack/binding-win32-arm64-msvc@1.5.2':
- resolution: {integrity: sha512-4vJQdzRTSuvmvL3vrOPuiA7f9v9frNc2RFWDxqg+GYt0YAjDStssp+lkVbRYyXnTYVJkARSuO6N+BOiI+kLdsQ==}
+ '@rspack/binding-win32-arm64-msvc@1.6.5':
+ resolution: {integrity: sha512-UUmep2ayuZxWPdrzkrzAFxVgYUWTB82pa9bkAGyeDO9SNkz8vTpdtbDaTvAzjFb8Pn+ErktDEDBKT57FLjxwxQ==}
cpu: [arm64]
os: [win32]
- '@rspack/binding-win32-ia32-msvc@1.5.2':
- resolution: {integrity: sha512-zPbu3lx/NrNxdjZzTIjwD0mILUOpfhuPdUdXIFiOAO8RiWSeQpYOvyI061s/+bNOmr4A+Z0uM0dEoOClfkhUFg==}
+ '@rspack/binding-win32-ia32-msvc@1.6.5':
+ resolution: {integrity: sha512-7nx+mMimpmCMstcW7nsyToXy5TK7N+YGPu2W/oioX7qv9ZCuJGTddjzLS84wN8DVrNIirg4mcxpBsmOQMZeHQA==}
cpu: [ia32]
os: [win32]
- '@rspack/binding-win32-x64-msvc@1.5.2':
- resolution: {integrity: sha512-duLNUTshX38xhC10/W9tpkPca7rOifP2begZjdb1ikw7C4AI0I7VnBnYt8qPSxGISoclmhOBxU/LuAhS8jMMlg==}
+ '@rspack/binding-win32-x64-msvc@1.6.5':
+ resolution: {integrity: sha512-pzO7rYFu6f6stgSccolZHiXGTTwKrIGHHNV1ALY1xPRmQEdbHcbMwadeaG99JL2lRLve9iNI+Z9Pr3oDVRN46g==}
cpu: [x64]
os: [win32]
- '@rspack/binding@1.5.2':
- resolution: {integrity: sha512-NKiBcsxmAzFDYRnK2ZHWbTtDFVT5/704eK4OfpgsDXPMkaMnBKijMKNgP5pbe18X4rUlz+8HnGm4+Xllo9EESw==}
+ '@rspack/binding@1.6.5':
+ resolution: {integrity: sha512-FzYsr5vdjaVQIlDTxZFlISOQGxl/4grpF2BeiNy60Fpw9eeADeXk55DVacbXPqpiz7Doj6cyhEyMszQOvihrqQ==}
- '@rspack/core@1.5.2':
- resolution: {integrity: sha512-ifjHqLczC81d1xjXPXCzxTFKNOFsEzuuLN44cMnyzQ/GWi4B48fyX7JHndWE7Lxd54cW1O9Ik7AdBN3Gq891EA==}
+ '@rspack/core@1.6.5':
+ resolution: {integrity: sha512-AqaOMA6MTNhqMYYwrhvPA+2uS662SkAi8Rb7B/IFOzh/Z5ooyczL4lUX+qyhAO3ymn50iwM4jikQCf9XfBiaQA==}
engines: {node: '>=18.12.0'}
peerDependencies:
'@swc/helpers': '>=0.5.1'
@@ -3510,34 +3926,41 @@ packages:
'@swc/helpers':
optional: true
- '@rspack/lite-tapable@1.0.1':
- resolution: {integrity: sha512-VynGOEsVw2s8TAlLf/uESfrgfrq2+rcXB1muPJYBWbsm1Oa6r5qVQhjA5ggM6z/coYPrsVMgovl3Ff7Q7OCp1w==}
- engines: {node: '>=16.0.0'}
+ '@rspack/lite-tapable@1.1.0':
+ resolution: {integrity: sha512-E2B0JhYFmVAwdDiG14+DW0Di4Ze4Jg10Pc4/lILUrd5DRCaklduz2OvJ5HYQ6G+hd+WTzqQb3QnDNfK4yvAFYw==}
'@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
- '@rushstack/node-core-library@5.14.0':
- resolution: {integrity: sha512-eRong84/rwQUlATGFW3TMTYVyqL1vfW9Lf10PH+mVGfIb9HzU3h5AASNIw+axnBLjnD0n3rT5uQBwu9fvzATrg==}
+ '@rushstack/node-core-library@5.19.0':
+ resolution: {integrity: sha512-BxAopbeWBvNJ6VGiUL+5lbJXywTdsnMeOS8j57Cn/xY10r6sV/gbsTlfYKjzVCUBZATX2eRzJHSMCchsMTGN6A==}
peerDependencies:
'@types/node': '*'
peerDependenciesMeta:
'@types/node':
optional: true
- '@rushstack/rig-package@0.5.3':
- resolution: {integrity: sha512-olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow==}
+ '@rushstack/problem-matcher@0.1.1':
+ resolution: {integrity: sha512-Fm5XtS7+G8HLcJHCWpES5VmeMyjAKaWeyZU5qPzZC+22mPlJzAsOxymHiWIfuirtPckX3aptWws+K2d0BzniJA==}
+ peerDependencies:
+ '@types/node': '*'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@rushstack/rig-package@0.6.0':
+ resolution: {integrity: sha512-ZQmfzsLE2+Y91GF15c65L/slMRVhF6Hycq04D4TwtdGaUAbIXXg9c5pKA5KFU7M4QMaihoobp9JJYpYcaY3zOw==}
- '@rushstack/terminal@0.15.4':
- resolution: {integrity: sha512-OQSThV0itlwVNHV6thoXiAYZlQh4Fgvie2CzxFABsbO2MWQsI4zOh3LRNigYSTrmS+ba2j0B3EObakPzf/x6Zg==}
+ '@rushstack/terminal@0.19.4':
+ resolution: {integrity: sha512-f4XQk02CrKfrMgyOfhYd3qWI944dLC21S4I/LUhrlAP23GTMDNG6EK5effQtFkISwUKCgD9vMBrJZaPSUquxWQ==}
peerDependencies:
'@types/node': '*'
peerDependenciesMeta:
'@types/node':
optional: true
- '@rushstack/ts-command-line@5.0.2':
- resolution: {integrity: sha512-+AkJDbu1GFMPIU8Sb7TLVXDv/Q7Mkvx+wAjEl8XiXVVq+p1FmWW6M3LYpJMmoHNckSofeMecgWg5lfMwNAAsEQ==}
+ '@rushstack/ts-command-line@5.1.4':
+ resolution: {integrity: sha512-H0I6VdJ6sOUbktDFpP2VW5N29w8v4hRoNZOQz02vtEi6ZTYL1Ju8u+TcFiFawUDrUsx/5MQTUhd79uwZZVwVlA==}
'@scena/dragscroll@1.4.0':
resolution: {integrity: sha512-3O8daaZD9VXA9CP3dra6xcgt/qrm0mg0xJCwiX6druCteQ9FFsXffkF8PrqxY4Z4VJ58fFKEa0RlKqbsi/XnRA==}
@@ -3574,16 +3997,16 @@ packages:
'@standard-schema/utils@0.3.0':
resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
- '@storybook/addon-docs@9.1.4':
- resolution: {integrity: sha512-ueGaA++UOICrM+ZyrN35HNt7JGgrKkX/X+RJwoL3UAbK1Nkbw1vNu7Rz+W4PRqU6gpRZ6xYFPkgJ2ZaPxCMJbg==}
+ '@storybook/addon-docs@9.1.16':
+ resolution: {integrity: sha512-JfaUD6fC7ySLg5duRdaWZ0FUUXrgUvqbZe/agCbSyOaIHOtJdhGaPjOC3vuXTAcV8/8/wWmbu0iXFMD08iKvdw==}
peerDependencies:
- storybook: ^9.1.4
+ storybook: ^9.1.16
- '@storybook/addon-links@9.1.4':
- resolution: {integrity: sha512-pWw7ikV3Tki9Na5cd16SQg4a2yc4Y148m1gZrN4lzxBGeCvGw2O9hsNWLOpqKvOCKRUjYGeUJZxA0PR1HSJO/A==}
+ '@storybook/addon-links@9.1.16':
+ resolution: {integrity: sha512-21SJAEuOX4Fh/5VSeakuiJJeSH2ezXBia0cZMTkKYz6GOtoojeGigo3tuebVlsn9myqnkMZxiufnnRa7Zne8vg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^9.1.4
+ storybook: ^9.1.16
peerDependenciesMeta:
react:
optional: true
@@ -3611,10 +4034,10 @@ packages:
peerDependencies:
storybook: ^9.1.1
- '@storybook/csf-plugin@9.1.4':
- resolution: {integrity: sha512-t7W6NpH7ZJ9sfBW8Snck4P7m8NWQNGgSgDNnXtjEgH4llgJveNpWy59ho+A4/xcC4Jr/0eTbbhngKXn5hkqctw==}
+ '@storybook/csf-plugin@9.1.16':
+ resolution: {integrity: sha512-GKlNNlmWeFBQxhQY5hZOSnFGbeKq69jal0dYNWoSImTjor28eYRHb9iQkDzRpijLPizBaB9MlxLsLrgFDp7adA==}
peerDependencies:
- storybook: ^9.1.4
+ storybook: ^9.1.16
'@storybook/csf@0.1.13':
resolution: {integrity: sha512-7xOOwCLGB3ebM87eemep89MYRFTko+D8qE7EdAAq74lgdqRR5cOUtYWJLjO2dLtP94nqoOdHJo6MdLLKzg412Q==}
@@ -3622,8 +4045,8 @@ packages:
'@storybook/global@5.0.0':
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
- '@storybook/icons@1.4.0':
- resolution: {integrity: sha512-Td73IeJxOyalzvjQL+JXx72jlIYHgs+REaHiREOqfpo3A2AYYG71AUbcv+lg7mEDIweKVCxsMQ0UKo634c8XeA==}
+ '@storybook/icons@1.6.0':
+ resolution: {integrity: sha512-hcFZIjW8yQz8O8//2WTIXylm5Xsgc+lW9ISLgUk1xGmptIJQRdlhVIXCpSyLrQaaRiyhQRaVg7l3BD9S216BHw==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
@@ -3642,19 +4065,12 @@ packages:
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
storybook: ^9.1.1
- '@storybook/react-dom-shim@9.1.4':
- resolution: {integrity: sha512-vGBmPMgae8zkS0r2u/1WgpYMKjQm7EdTL7hJ7WA9K4j3j9dj9Y+ok6xIotYqggcI04zTyKeZiv9vf/235Cuqpw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^9.1.4
-
- '@storybook/react-dom-shim@9.1.5':
- resolution: {integrity: sha512-blSq9uzSYnfgEYPHYKgM5O14n8hbXNiXx2GiVJyDSg8QPNicbsBg+lCb1TC7/USfV26pNZr/lGNNKGkcCEN6Gw==}
+ '@storybook/react-dom-shim@9.1.16':
+ resolution: {integrity: sha512-MsI4qTxdT6lMXQmo3IXhw3EaCC+vsZboyEZBx4pOJ+K/5cDJ6ZoQ3f0d4yGpVhumDxaxlnNAg954+f8WWXE1rQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^9.1.5
+ storybook: ^9.1.16
'@storybook/react-vite@9.1.1':
resolution: {integrity: sha512-9rMjAqgrcuVF/GS171fYSLuUs5QC3e0WPpIm2JOP7Z9qWctM1ApVb9UCYY7ZNl9Gc3kvjKsK5J1+A4Zw4a2+ag==}
@@ -3677,25 +4093,13 @@ packages:
typescript:
optional: true
- '@storybook/react@9.1.4':
- resolution: {integrity: sha512-n+UOugEsHjvdmanTqc9WOi/qGQy3EjoK7xLBEcE6qw+jHgufHemx9ZxNbmz1XxoRGcLkt0+3Qhck6ThIJwJX8Q==}
- engines: {node: '>=20.0.0'}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^9.1.4
- typescript: '>= 4.9.x'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@storybook/react@9.1.5':
- resolution: {integrity: sha512-fBVP7Go09gzpImtaMcZ2DipLEWdWeTmz7BrACr3Z8uCyKcoH8/d1Wv0JgIiBo1UKDh5ZgYx5pLafaPNqmVAepg==}
+ '@storybook/react@9.1.16':
+ resolution: {integrity: sha512-M/SkHJJdtiGpodBJq9+DYmSkEOD+VqlPxKI+FvbHESTNs//1IgqFIjEWetd8quhd9oj/gvo4ICBAPu+UmD6M9w==}
engines: {node: '>=20.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^9.1.5
+ storybook: ^9.1.16
typescript: '>= 4.9.x'
peerDependenciesMeta:
typescript:
@@ -3818,8 +4222,8 @@ packages:
'@swc-node/sourcemap-support@0.5.1':
resolution: {integrity: sha512-JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==}
- '@swc/cli@0.7.8':
- resolution: {integrity: sha512-27Ov4rm0s2C6LLX+NDXfDVB69LGs8K94sXtFhgeUyQ4DBywZuCgTBu2loCNHRr8JhT9DeQvJM5j9FAu/THbo4w==}
+ '@swc/cli@0.7.9':
+ resolution: {integrity: sha512-AFQu3ZZ9IcdClTknxbug08S9ed/q8F3aYkO5NoZ+6IjQ5UEo1s2HN1GRKNvUslYx2EoVYxd+6xGcp6C7wwtxyQ==}
engines: {node: '>= 16.14.0'}
hasBin: true
peerDependencies:
@@ -3847,487 +4251,847 @@ packages:
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.12.14':
- resolution: {integrity: sha512-akUAe1YrBqZf1EDdUxahQ8QZnJi8Ts6Ya0jf6GBIMvnXL4Y6QIuvKTRwfNxy7rJ+x9zpzP1Vlh14ZZkSKZ1EGA==}
- engines: {node: '>=10'}
- cpu: [arm64]
- os: [linux]
+ '@swc/core-linux-arm64-gnu@1.12.14':
+ resolution: {integrity: sha512-akUAe1YrBqZf1EDdUxahQ8QZnJi8Ts6Ya0jf6GBIMvnXL4Y6QIuvKTRwfNxy7rJ+x9zpzP1Vlh14ZZkSKZ1EGA==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@swc/core-linux-arm64-musl@1.12.14':
+ resolution: {integrity: sha512-ZkOOIpSMXuPAjfOXEIAEQcrPOgLi6CaXvA5W+GYnpIpFG21Nd0qb0WbwFRv4K8BRtl993Q21v0gPpOaFHU+wdA==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@swc/core-linux-x64-gnu@1.12.14':
+ resolution: {integrity: sha512-71EPPccwJiJUxd2aMwNlTfom2mqWEWYGdbeTju01tzSHsEuD7E6ePlgC3P3ngBqB3urj41qKs87z7zPOswT5Iw==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@swc/core-linux-x64-musl@1.12.14':
+ resolution: {integrity: sha512-nImF1hZJqKTcl0WWjHqlelOhvuB9rU9kHIw/CmISBUZXogjLIvGyop1TtJNz0ULcz2Oxr3Q2YpwfrzsgvgbGkA==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@swc/core-win32-arm64-msvc@1.12.14':
+ resolution: {integrity: sha512-sABFQFxSuStFoxvEWZUHWYldtB1B4A9eDNFd4Ty50q7cemxp7uoscFoaCqfXSGNBwwBwpS5EiPB6YN4y6hqmLQ==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@swc/core-win32-ia32-msvc@1.12.14':
+ resolution: {integrity: sha512-KBznRB02NASkpepRdWIK4f1AvmaJCDipKWdW1M1xV9QL2tE4aySJFojVuG1+t0tVDkjRfwcZjycQfRoJ4RjD7Q==}
+ engines: {node: '>=10'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@swc/core-win32-x64-msvc@1.12.14':
+ resolution: {integrity: sha512-SymoP2CJHzrYaFKjWvuQljcF7BkTpzaS1vpywv7K9EzdTb5N8qPDvNd+PhWUqBz9JHBhbJxpaeTDQBXF/WWPmw==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@swc/core@1.12.14':
+ resolution: {integrity: sha512-CJSn2vstd17ddWIHBsjuD4OQnn9krQfaq6EO+w9YfId5DKznyPmzxAARlOXG99cC8/3Kli8ysKy6phL43bSr0w==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@swc/helpers': '>=0.5.17'
+ peerDependenciesMeta:
+ '@swc/helpers':
+ optional: true
+
+ '@swc/counter@0.1.3':
+ resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
+
+ '@swc/helpers@0.5.17':
+ resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==}
+
+ '@swc/types@0.1.25':
+ resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==}
+
+ '@szmarczak/http-timer@5.0.1':
+ resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
+ engines: {node: '>=14.16'}
+
+ '@tanstack/query-core@5.90.10':
+ resolution: {integrity: sha512-EhZVFu9rl7GfRNuJLJ3Y7wtbTnENsvzp+YpcAV7kCYiXni1v8qZh++lpw4ch4rrwC0u/EZRnBHIehzCGzwXDSQ==}
+
+ '@tanstack/react-query@5.90.10':
+ resolution: {integrity: sha512-BKLss9Y8PQ9IUjPYQiv3/Zmlx92uxffUOX8ZZNoQlCIZBJPT5M+GOMQj7xislvVQ6l1BstBjcX0XB/aHfFYVNw==}
+ peerDependencies:
+ react: ^18 || ^19
+
+ '@testing-library/dom@10.4.0':
+ resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
+ engines: {node: '>=18'}
+
+ '@testing-library/dom@10.4.1':
+ resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==}
+ engines: {node: '>=18'}
+
+ '@testing-library/jest-dom@6.9.1':
+ resolution: {integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==}
+ engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
+
+ '@testing-library/react@16.3.0':
+ resolution: {integrity: sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@testing-library/dom': ^10.0.0
+ '@types/react': ^18.0.0 || ^19.0.0
+ '@types/react-dom': ^18.0.0 || ^19.0.0
+ react: ^18.0.0 || ^19.0.0
+ react-dom: ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@testing-library/user-event@14.6.1':
+ resolution: {integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==}
+ engines: {node: '>=12', npm: '>=6'}
+ peerDependencies:
+ '@testing-library/dom': '>=7.21.4'
+
+ '@tmcw/togeojson@7.1.2':
+ resolution: {integrity: sha512-QKnFs9DAuqqBVj4d6c69tV1Dj2TspSBTqffivoN0YoBCVdP/JY1+WaYCJbzU49RkoU5NOSOJ3jtFHCdEUVh21A==}
+
+ '@tokenizer/inflate@0.2.7':
+ resolution: {integrity: sha512-MADQgmZT1eKjp06jpI2yozxaU9uVs4GzzgSL+uEq7bVcJ9V1ZXQkeGNql1fsSI0gMy1vhvNTNbUqrx+pZfJVmg==}
+ engines: {node: '>=18'}
+
+ '@tokenizer/token@0.3.0':
+ resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
+
+ '@trysound/sax@0.2.0':
+ resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
+ engines: {node: '>=10.13.0'}
+
+ '@tsconfig/node10@1.0.12':
+ resolution: {integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==}
+
+ '@tsconfig/node12@1.0.11':
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+
+ '@tsconfig/node14@1.0.3':
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+
+ '@tsconfig/node16@1.0.4':
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
+
+ '@turf/along@7.3.0':
+ resolution: {integrity: sha512-j7ia4nS6Ii1PmGnaP6kOxDiA/fF8PnxgiL/OjGpln/AoYbauoP+tZqGvTvCiCTGB1kg/VqwNrvxUZ1bc2Lr5Sg==}
+
+ '@turf/along@7.3.1':
+ resolution: {integrity: sha512-z84b9PKsUB69BhkeHA6oPqRO7VaJHwTid1SpuIbwWzDqHTpq8buJBKlrKgHIIthuVr5P/AZiEXmf3R4ifRhDmw==}
+
+ '@turf/angle@7.3.0':
+ resolution: {integrity: sha512-qtV3mjF40BRLn/nWrxOw7ohDPZfMn/ATtK5Wwy9gVBKYkBHISif2YBHkq1sl9YM7DZ1MDY++2Ad2XdjQ6tGYzQ==}
+
+ '@turf/angle@7.3.1':
+ resolution: {integrity: sha512-Pcb0Fg8WHsOMKFvIPaYfORrlLYdytWjVAkVTnAqJdmGI+2n+eLROPjJO2sJbpX9yU/dlBgujOB7a1d0PJjhHyQ==}
+
+ '@turf/area@7.3.0':
+ resolution: {integrity: sha512-N1feXkRzwiNakzloykPWwTBmZcmHFfL/raGMwJmZ9QoHQZqDNVFrI0bmuX8hALUJ8jzpt/c/91M1CIuRMF9vIw==}
+
+ '@turf/area@7.3.1':
+ resolution: {integrity: sha512-9nSiwt4zB5QDMcSoTxF28WpK1f741MNKcpUJDiHVRX08CZ4qfGWGV9ZIPQ8TVEn5RE4LyYkFuQ47Z9pdEUZE9Q==}
+
+ '@turf/bbox-clip@7.3.0':
+ resolution: {integrity: sha512-jucgxPXClaB36EFAiGR1RDSG6SGtel92Xy6oA1inM7Xu2RKignBXy4oqRMVBxABdhmgOzePVMqVy2xHYZ7ZFBQ==}
+
+ '@turf/bbox-clip@7.3.1':
+ resolution: {integrity: sha512-YUeITFtp5QLbpSS0XyQa0GlgMqK4PMgjOeOGOTlWsfDYaqc5SErf7o5UyCOsLAPQW16QZVxJ26uTAE20YkluAA==}
+
+ '@turf/bbox-polygon@7.3.0':
+ resolution: {integrity: sha512-ITtYx64WRzuEo71Nu/ZGxTrJSN9EarUWKxDo2zMza22AG42pZjDVpehA9wRLmHn/tybbWSF4D/gyk1hd8hlXug==}
+
+ '@turf/bbox-polygon@7.3.1':
+ resolution: {integrity: sha512-2NvwPfuRtwJk7w5HIC/Knei3mUXrVT+t/0FB1zStgDbakmXrqKISaftlIh4YTOVlUsVnvq0tggjFMLZ/Xxo+lQ==}
+
+ '@turf/bbox@7.3.0':
+ resolution: {integrity: sha512-EC5GSUJlhXSiCVCEmgCSheZYm0s1ouKzUNqeEOsEYlqTbMAZ19RWgsg/xH2tjnuUw2JP9eGAUzQnCFX6JEV53w==}
+
+ '@turf/bbox@7.3.1':
+ resolution: {integrity: sha512-/IyMKoS7P9B0ch5PIlQ6gMfoE8gRr48+cSbzlyexvEjuDuaAV1VURjH1jAthS0ipFG8RrFxFJKnp7TLL1Skong==}
+
+ '@turf/bearing@7.3.0':
+ resolution: {integrity: sha512-2HVfi8c2qDIIuRLko+BFPeV2AKatrLJZqWh1E9vEzd9gLfFGHubyubuFX/W5wP3NK5vru/U3bqyOsQ9d9HPacw==}
+
+ '@turf/bearing@7.3.1':
+ resolution: {integrity: sha512-ex78l/LiY6uO6jO8AJepyWE6/tiWEbXjKLOgqUfJSkW23UcMVlhbAKzXDjbsdz9T66sXFC/6QNAh8oaZzmoo6w==}
+
+ '@turf/bezier-spline@7.3.0':
+ resolution: {integrity: sha512-CkBHgfnU87htfXtZFCpOVPOyfXnRt5+44M69zdHH3jG1XxQKhR7GirA4cEhVdtXyRrJNJXmzhCinYySgQukNgQ==}
+
+ '@turf/bezier-spline@7.3.1':
+ resolution: {integrity: sha512-7Mal/d8ttTQ5eu/mwgC53iH9eYBRTBHXsIqEEiTVHChh1iajNuS4/bwYdaxsQsRXKVaFfx+4dCy0cRmqhjgTrw==}
+
+ '@turf/boolean-clockwise@5.1.5':
+ resolution: {integrity: sha512-FqbmEEOJ4rU4/2t7FKx0HUWmjFEVqR+NJrFP7ymGSjja2SQ7Q91nnBihGuT+yuHHl6ElMjQ3ttsB/eTmyCycxA==}
+
+ '@turf/boolean-clockwise@7.3.0':
+ resolution: {integrity: sha512-39ZAGrTjey9sxasOCB1zgDqvXfWJ92S881gjOUFKp6UOTfNUibW0fjrZW5SLI72/LRNUkr4XeT09FXWYt+J/Tw==}
+
+ '@turf/boolean-clockwise@7.3.1':
+ resolution: {integrity: sha512-ik9j0CCrsp/JZ42tbCnyZg86YFoavEU/nyal3HsEgdY5WFYq43aMYqLPRi6yNqE48THEk3fl1BcfgJqAiUhDFA==}
+
+ '@turf/boolean-concave@7.3.0':
+ resolution: {integrity: sha512-YW9Z6RXmIo4YISJlwSg8bpkVvg2T3rnLBXc3T5mO087eanEB2vUo/UG03CJamzl7jFWJOcGGXy8rR0Lbwp4qJw==}
+
+ '@turf/boolean-concave@7.3.1':
+ resolution: {integrity: sha512-jAAt5MhqXSKmRmX7l09oeo9dObf7bMDuzfeUSSNAK+yAi9TE5QWlP4JtzOWC5+gKXsL8dvzE8mvsQj38FzQdEA==}
+
+ '@turf/boolean-contains@7.3.0':
+ resolution: {integrity: sha512-rqtatC8tNpeSWbG4IM03B1jkzA74JiZbSCDgObZdPl0SS1FfRUYmiyjUUbd5wxTarLGcTsYrTGYfVNRfCvfxdA==}
+
+ '@turf/boolean-contains@7.3.1':
+ resolution: {integrity: sha512-VvytV9ZcUgnitzm5ILVWIoOhoZOh8VZ4dnweUJM3N+A77CzXXFk8e4NqPNZ6tZVPY3ehxzDXrq1+iN87pMcB7g==}
+
+ '@turf/boolean-crosses@7.3.0':
+ resolution: {integrity: sha512-B7VFp8UDm1h+q3e54BS7oVQVPEto7L5O2s1KcJGe03DB3XrA/kFUVepaiaTxuKQL2kZrMMTqQjxNYpAiIEEygA==}
+
+ '@turf/boolean-crosses@7.3.1':
+ resolution: {integrity: sha512-Fn99AxTXQORiQjclUqUYQcA40oJJoJxMBFx/Vycd7v949Lnplt1qrUkBpbZNXQlvHF2gxrgirSfgBDaUnUJjzQ==}
+
+ '@turf/boolean-disjoint@7.3.0':
+ resolution: {integrity: sha512-u7b0thAtaw/+ZQPQJE/qK+Pe0sXbr2wvmm4uxEs4mOEhsoN0Wu4HcWtbWZuL4JoGBbmLV3+tnUC0tUn54jYEuA==}
+
+ '@turf/boolean-disjoint@7.3.1':
+ resolution: {integrity: sha512-bqVo+eAYaCq0lcr09zsZdWIAdv22UzGc/h2CCfaBwP5r4o/rFudNFLU9gb9BcM6dBUzrtTgBguShAZr7k3cGbw==}
+
+ '@turf/boolean-equal@7.3.0':
+ resolution: {integrity: sha512-6ZxBkWNpzM3+DvqRVB0UiSGYgwmmhZ+PHwpvGTeQM7wW3+RGfnjRJ8auyI1UNnvpWZBY5lESHxcOAHuve587yQ==}
+
+ '@turf/boolean-equal@7.3.1':
+ resolution: {integrity: sha512-nEsmmNdwD1nzYZLsO6hPC/X/Uag+eT0yuWamD0XxJAQhXBsnSATxKisCJXVJgXvO8M0qvEMW1zZrUGB6Fjfzzw==}
+
+ '@turf/boolean-intersects@7.3.0':
+ resolution: {integrity: sha512-+S7YJFrrQ7LxIImHqeaU8yiXG+65dB3qTnbpIx0aKJjJhUS6IAMc96O2e4kUNPWhjJKvRWf0Weu43stVPP90KQ==}
+
+ '@turf/boolean-intersects@7.3.1':
+ resolution: {integrity: sha512-nc6W8qFdzFkfsR6p506HINGu85nHk/Skm+cw3TRQZ5/A44hjf0kYnbhvS3qrCAws3bR+/FKK8O1bsO/Udk8kkg==}
+
+ '@turf/boolean-overlap@7.3.0':
+ resolution: {integrity: sha512-qHi8TxDp8CN8xkl7yLsAbvH82tFm5tgWl7GTIbLP1jDdyR4uQJ+3qD2WBYcnstKk7Nai9YPrLpxJJxzOB9HKBQ==}
+
+ '@turf/boolean-overlap@7.3.1':
+ resolution: {integrity: sha512-QhhsgCLzkwXIeZhaCmgE3H8yTANJGZatJ5IzQG3xnPTx7LiNAaa/ReN2/NroEv++8Yc0sr5Bkh6xWZOtew1dvQ==}
+
+ '@turf/boolean-parallel@7.3.0':
+ resolution: {integrity: sha512-WXtXBr6/gP7qgM+F0577xmsbPwm/4Yqlg7x2ULdhwJziTwQNtfOkxVO0DBRt0nqAPfxSyr3hHQHosQoHpVKvNA==}
+
+ '@turf/boolean-parallel@7.3.1':
+ resolution: {integrity: sha512-SXPyYiuaRB1ES/LtcUP11HWyloMJGzN1nYaCLG7H+6l2OKjVJl025qR6uxVElWCzAdElek9nGNeNya1hd9ZHaw==}
+
+ '@turf/boolean-point-in-polygon@7.3.0':
+ resolution: {integrity: sha512-zTVCH77sRJyzUPWVmoS/UCl4pDmChSpNhoVA+BC9XDGkLuBSKhAvK7hcOn/KF55z7RgbvQFNNR2lRqmQUi/OFg==}
+
+ '@turf/boolean-point-in-polygon@7.3.1':
+ resolution: {integrity: sha512-BUPW63vE43LctwkgannjmEFTX1KFR/18SS7WzFahJWK1ZoP0s1jrfxGX+pi0BH/3Dd9mA71hkGKDDnj1Ndcz0g==}
+
+ '@turf/boolean-point-on-line@7.3.0':
+ resolution: {integrity: sha512-K4PxA23/pxqmv5roUxKnLm+mY92DWUVfjv+6SzrNBymHQOjDoDp/RcpTHHFM3koaUJiQx7MZ8txus5kkw+mDOA==}
+
+ '@turf/boolean-point-on-line@7.3.1':
+ resolution: {integrity: sha512-8Hywuv7XFpSc8nfH0BJBtt+XTcJ7OjfjpX2Sz+ty8gyiY/2nCLLqq6amu3ebr67ruqZTDpPNQoGGUbUePjF3rA==}
+
+ '@turf/boolean-touches@7.3.0':
+ resolution: {integrity: sha512-5fgNlOd15eSI75zvGq3RrYlRaDyzvpEZxFrXjyRRQV8ks6VShU7HVl+rjBD8evFOigE0uApSpKGtsDk6wiN8cA==}
+
+ '@turf/boolean-touches@7.3.1':
+ resolution: {integrity: sha512-XqrQzYGTakoTWeTWT274pfObpbIpAM7L8CzGUa04rJD0l3bv3VK4TUw0v6+bywi5ea6TnJzvOzgvzTb1DtvBKA==}
+
+ '@turf/boolean-valid@7.3.0':
+ resolution: {integrity: sha512-NG4/ekbNy4/U+3nkOs643a9z1MV+lOjGqJrmyjcJwE9LQC2NAD20aNk0ms5hFivOEzcgEzfmXFfu/zZgJUIHag==}
+
+ '@turf/boolean-valid@7.3.1':
+ resolution: {integrity: sha512-lpw4J5HaV4Tv033s2j/i6QHt6Zx/8Lc90DTfOU0axgRSrs127kbKNJsmDEGvtmV7YjNp8aPbIG1wwAX9wg/dMA==}
+
+ '@turf/boolean-within@7.3.0':
+ resolution: {integrity: sha512-rGhKc/F4l/MI61OvZtCp8rB0Dr2ekuBNFXHlovFEKfn9z3Q5k5uananoK+Gma/w1XmVasut6Z1S3xLC8QOmnDg==}
+
+ '@turf/boolean-within@7.3.1':
+ resolution: {integrity: sha512-oxP4VU81RRCf59TXCBhVWEyJ5Lsr+wrqvqSAFxyBuur5oLmBqZdYyvL7FQJmYvG0uOxX7ohyHmSJMaTe4EhGDA==}
+
+ '@turf/buffer@7.3.0':
+ resolution: {integrity: sha512-egIGQjDYiJTYDeXgS9rf569KYCQ9OOE5+FM/lNIYkP2xRrGbSMB/2zT6VPZvcvjfiawNkOZEa8OlwhygacK2gA==}
+
+ '@turf/buffer@7.3.1':
+ resolution: {integrity: sha512-jtdI0Ir3GwPyY1V2dFX039HNhD8MIYLX39c7b9AZdLh7kBuD2VgXJmPvhtnivqMV2SmRlS4fd9cKzNj369/cGg==}
+
+ '@turf/center-mean@7.3.0':
+ resolution: {integrity: sha512-ThGhJU2SVak6Ol331Do+xSDr2gougYpBVdwGs9hLCudcdK8c9565BlQTAGY4py3EatjWV2l8rP1INebRwDTFvA==}
+
+ '@turf/center-mean@7.3.1':
+ resolution: {integrity: sha512-koVenhCl8JPEvtDwH6nhZpLAm9+7XOXosqKdkXyK1uDae3NRyoQQeIYD7nIJHJPCOyeacw6buWzAEoAleBj0XA==}
+
+ '@turf/center-median@7.3.0':
+ resolution: {integrity: sha512-Lp0kUGHM0HahZl54qb/B7zD3DXfFuBLhUS0t7fRlNfRywNUJSYh6SjCoLd1gYj7EFyOFWh4H8SUYgHDkh2U9oQ==}
+
+ '@turf/center-median@7.3.1':
+ resolution: {integrity: sha512-XIvxqnSdcUFOev4WO8AEQth4U3uzfQkxYVkKhZrxpVitqEeSDm5v3ANUeVGYqQ/QNTWvFAFn4zB5+XRRd8tayA==}
+
+ '@turf/center-of-mass@7.3.0':
+ resolution: {integrity: sha512-7v7gx56xRgeEXL+WOs5GoBaNXawkGDAYB7MyrZGy4aJw9hJdsEiK+0jX1vqniYlTL0WJ6u4tMJ3jhn6W4CTS3A==}
+
+ '@turf/center-of-mass@7.3.1':
+ resolution: {integrity: sha512-w2O7RLc0tSs+eEsZCaWa1lYiACsaQTJtie/a4bj5ta1TDTAEjyxC6Rp6br4mN1XPzeSFbEuNw+q9/VdSXU/mGA==}
+
+ '@turf/center@7.3.0':
+ resolution: {integrity: sha512-OrXgY9Hz9qnfhuEUrB2PHJnyiC0T1al292ZNTvG382G9ZdjUTRhzz4ajT5a4Mtar/QF+p2KwN8SiFlB2H2N7oQ==}
+
+ '@turf/center@7.3.1':
+ resolution: {integrity: sha512-czqNKLGGdik3phYsWCK5SHKBRkDulUArMlG4v62IQcNcRFq9MbOGqyN21GSshSMO792ynDeWzdXdcKmycQ14Yg==}
+
+ '@turf/centroid@7.3.0':
+ resolution: {integrity: sha512-6skXlwv6fCkdKsrkniizpEuC1IsAYQEyZG4XIzK5d3FGQTM/lVInLQP+wd9I6FLtW8b/6UbZcIjSU9wP/MMbTA==}
+
+ '@turf/centroid@7.3.1':
+ resolution: {integrity: sha512-hRnsDdVBH4pX9mAjYympb2q5W8TCMUMNEjcRrAF7HTCyjIuRmjJf8vUtlzf7TTn9RXbsvPc1vtm3kLw20Jm8DQ==}
+
+ '@turf/circle@7.3.0':
+ resolution: {integrity: sha512-aOkYxDABFyv9qtz8vB2GyYF6kmROgplnaR1IHpWSfHnoFH3/2mIlhhGdY17x+FSN4b7SYLskKRDSCTG4p90VEA==}
+
+ '@turf/circle@7.3.1':
+ resolution: {integrity: sha512-UY2OM1OK7IuyrtN3YE8026ZM3xM9VIkqZ0vRZln8g33D0AogrJVJ/I9T81/VpRPlxTnrbDpzQxJQBH+3vPG/Ow==}
+
+ '@turf/clean-coords@7.3.0':
+ resolution: {integrity: sha512-bdUS8hoWe0IBMCJu5i+2E+3TUQQ/tQqlBdUjGvRwZhy4QDlosXlx8ZZ7SG+H9M7rRaaOIvE7srDgr++yoKkv/Q==}
+
+ '@turf/clean-coords@7.3.1':
+ resolution: {integrity: sha512-uNo4lnTekvkw8dUCXIVCc38nZiHBrpy5jn0T8hlodZo/A4XAChFtLQi8NLcX8rtXcaNxeJo+yaPfpP3PSVI2jw==}
+
+ '@turf/clone@5.1.5':
+ resolution: {integrity: sha512-//pITsQ8xUdcQ9pVb4JqXiSqG4dos5Q9N4sYFoWghX21tfOV2dhc5TGqYOhnHrQS7RiKQL1vQ48kIK34gQ5oRg==}
+
+ '@turf/clone@7.3.0':
+ resolution: {integrity: sha512-mf6TFxrNrNs64hyXjkFqhEXi3m+0WduQ8Ixqh4VcHV7LdkXg+rW0CxuSGoOlLgjYa6iscHoGCycOrTDyYyD6EA==}
+
+ '@turf/clone@7.3.1':
+ resolution: {integrity: sha512-r7xDOfw9ohA7PhZW+8X9RMsO4szB4YqkhEROaELJyLtQ1bo8VNFtndpZdE6YHQpD7Pjlvlb6i99q8w1QLisEPg==}
+
+ '@turf/clusters-dbscan@7.3.0':
+ resolution: {integrity: sha512-dZ+Uk7bCP4zSzcOltafUCLk1wmyvllXbHbAWPNOhtOOEqRxvKMCmEoaBHG4ECd6vSRcIqrfeYEYa8faCeZYyqg==}
+
+ '@turf/clusters-dbscan@7.3.1':
+ resolution: {integrity: sha512-rY1wbQlljRhX5e+XM/yw4dKs2HniN45v+Xf5Xde6nv23WyEf/LLjpyD5yrsLa1awfJjD/NmD6axGVebnBBn9YA==}
+
+ '@turf/clusters-kmeans@7.3.0':
+ resolution: {integrity: sha512-tNhIwr1Mmzb0bpCcCJYDjKsZF+G1zf70czmLq5pg9kJGgTXF/ZmYJ9rWjd+U8w6xImyxHNrw0x+XpGXRjQ8FHw==}
+
+ '@turf/clusters-kmeans@7.3.1':
+ resolution: {integrity: sha512-HYvRninBY/b5ftkIkoVWjV/wHilNE56cdr6gTlrxuvm4EClilsLDSVYjeiMYU0pjI3xDTc7PlicQDGdnIavUqQ==}
+
+ '@turf/clusters@7.3.0':
+ resolution: {integrity: sha512-5DoUkSoUGM3NJEi5aGNAvP59pJkqgWXnP3RU6h31MxwJeJhTjEKv/U8OqRxwoQKXUJ9z/BNjhkcz9TJovn23Hg==}
+
+ '@turf/clusters@7.3.1':
+ resolution: {integrity: sha512-ZELehyYnsozw+AHOc426abmPaGJOt46BHnCN+hwtPOkqEbvdZYu+16Y+cjiFnY7FwbvzBjDMb9HRtKJFlAmupg==}
+
+ '@turf/collect@7.3.0':
+ resolution: {integrity: sha512-M5gp5H5jusyMfo66J7sZ+8PSAlbe9TX9Wew0zHKkyAcdk6BCZJMnxzOxH6C1Ir67BcMhDlav7x5ni2Yp4rE+2g==}
+
+ '@turf/collect@7.3.1':
+ resolution: {integrity: sha512-yVDz5YLcRGFipttb60Y4IAd7zWfbQk6mNW5Kt6/wa8+YueHFzsKJdtbErWfozCVuiKplQZWT5r+9J9g6RnhpjQ==}
+
+ '@turf/combine@7.3.0':
+ resolution: {integrity: sha512-PzHl5cjSlw316tex8nmkaZKrqvno8onQInKqYaMz1ke/1SH+ceoaRU9+o5VvF8n9OPNG1mqyt7ZIY/TEc0Q49g==}
+
+ '@turf/combine@7.3.1':
+ resolution: {integrity: sha512-iZBe36sKRq08fY3Ars0JpfYJm8N3LtLLnNzdTxHp8Ry2ORJGHvZHpcv3lQXWL7gyJwDPAye7pyrX7S99IB/1VA==}
+
+ '@turf/concave@7.3.0':
+ resolution: {integrity: sha512-YpyHZJ+/DSxRT6N1Jy9ni1XNADGMnbPSFd5y7F3R4cka68g4nRrThHsUdQ5ae1Gk0+Zr9Rc0oTbUkLfQRVIRRg==}
+
+ '@turf/concave@7.3.1':
+ resolution: {integrity: sha512-vZWqyAYH4qzOuiqPb+bj2jvpIGzYAH8byUhfFJ2gRFRL3/RfV8jdXL2r0Y6VFScqE6OLVGvtM3ITzXX1/9wTaA==}
+
+ '@turf/convex@7.3.0':
+ resolution: {integrity: sha512-Luh6OfidPCPiYV2VMKR/XM5+qjSS6N7mgMJNsj6eh8lXDpVhbi553qKNf1FYZ1R+x5hpE3QgX2PVwshRFf4TYw==}
+
+ '@turf/convex@7.3.1':
+ resolution: {integrity: sha512-k2T8QVSie4w+KhwUxjzi/6S6VFr33H9gnUawOh4chCGAgje9PljUZLCGbktHgDfAjX1FVzyUyriH+dm86Z7njQ==}
+
+ '@turf/destination@7.3.0':
+ resolution: {integrity: sha512-N3K/zs8htrLkJ43qvaaDupL7ePMuAuQ9lSuV4q0CmaeqhKUhrpyGbXEu68uUPHpEALC/Ozp8nFtkmizbRBy+QA==}
+
+ '@turf/destination@7.3.1':
+ resolution: {integrity: sha512-yyiJtbQJ4AB9Ny/FKDDNuWI9Sg4Jtd2PMpQPqOV3AFq8NNkg0xJSNmDHDxupb3oPqPWYPxyfVI3tBoF+Xhhoig==}
+
+ '@turf/difference@7.3.0':
+ resolution: {integrity: sha512-6mpNfjZZ5SnjXeRkO6d5KAVruhL3jntwRWIUuS7+oDVMgm4Y7mN+kDZsDz+YPonCGkBbQUYScoT9mzn+IPofXw==}
+
+ '@turf/difference@7.3.1':
+ resolution: {integrity: sha512-Ne2AR+1AdeH8aqY2VHcws+Z/1MHl8SlSbSWHBNVZUVEfvyzTrRg8/E+OC5vFaSUvNZXkB/OUufTCM9xsatLKXQ==}
+
+ '@turf/dissolve@7.3.0':
+ resolution: {integrity: sha512-Gxh7q7d/O1YK//ZdZa7Dex8VnnD24vto9PVxRtkEx+RhXSHLd2DyKu3aStOgW1MJoBLwTRUO4bKXSAmjZBA+9g==}
+
+ '@turf/dissolve@7.3.1':
+ resolution: {integrity: sha512-Xmjl4E1aGRMdJjq+HfsiAXZtfMKruq7O+8xvsqnHM6E8iBWlJNSw8ucrNB5RZME8BUojx0q8bvXgS3k68koGyw==}
+
+ '@turf/distance-weight@7.3.0':
+ resolution: {integrity: sha512-NZAKwvW/UI1YzuctLX7S2a0AcTm9BSwusu1XVbbuXBGULxJLHIQDYpJhXNBRkBQbH8kYaXO6LSgH+V5HVjvxuQ==}
+
+ '@turf/distance-weight@7.3.1':
+ resolution: {integrity: sha512-h82qLPeMxOfgN62ZysscQCu9IYB5AO+duw7peAQnMtFobpbcQK58158P0cNzxAoTVJXSO/mfR9dI9Zdz7NF75w==}
+
+ '@turf/distance@7.3.0':
+ resolution: {integrity: sha512-8FXmJxL8s80v7ZRRgCGNK6ufVlehhsBRxlV2rBiMQTC4nWfYNGVV42OFf17HlK2Mlbllv3Cp1jY3Ecu7fOdjxg==}
+
+ '@turf/distance@7.3.1':
+ resolution: {integrity: sha512-DK//doTGgYYjBkcWUywAe7wbZYcdP97hdEJ6rXYVYRoULwGGR3lhY96GNjozg6gaW9q2eSNYnZLpcL5iFVHqgw==}
+
+ '@turf/ellipse@7.3.0':
+ resolution: {integrity: sha512-9w62TQuso3TeIAtyZ8mDi1GQBqXvLlssRlEE6dZFyE7ekwzRtaxezRyfTjk/aPD4FV5W7nk8YjVtaEkrZ9zkmg==}
+
+ '@turf/ellipse@7.3.1':
+ resolution: {integrity: sha512-tcGbS+U7EktZg+UJad17LRU+8C067XDWdmURPCmycaib2zRxeNrImh2Y/589us6wsldlYYoBYRxDY/c1oxIUCA==}
+
+ '@turf/envelope@7.3.0':
+ resolution: {integrity: sha512-0pkFaRfEaknmsaQ2M9FmogWmBgP4NJU5HXReiF5PcpIxbNWfGoxDcw+1USTQJRHRNbP8PRnh0xRwt6WZQCXaeQ==}
+
+ '@turf/envelope@7.3.1':
+ resolution: {integrity: sha512-Sp3ct/LpWyHN5tTfPOcKXFoVDI1QH9BXtQ+aQzABFp3U5nY2Sz8LFg8SeFQm3K7PpoCnUwSfwDFA4aa+z+4l1g==}
+
+ '@turf/explode@7.3.0':
+ resolution: {integrity: sha512-oFnJbJz6rWSSnPUMSfGmSi7hYB8kx9TL8lc0naLwnmqmFkGEdYp98E9hhhIog5nl7XOw+maQjUj6g5NenR8AHw==}
- '@swc/core-linux-arm64-musl@1.12.14':
- resolution: {integrity: sha512-ZkOOIpSMXuPAjfOXEIAEQcrPOgLi6CaXvA5W+GYnpIpFG21Nd0qb0WbwFRv4K8BRtl993Q21v0gPpOaFHU+wdA==}
- engines: {node: '>=10'}
- cpu: [arm64]
- os: [linux]
+ '@turf/explode@7.3.1':
+ resolution: {integrity: sha512-H0Q8NnmrPoWKhsYYmVmkuT5F4t50N53ByGBf6Ys1n5B9YrFyrT+/aLDXF2C05r+QnW8nFtkM4lFG3ZSBHiq4Xg==}
- '@swc/core-linux-x64-gnu@1.12.14':
- resolution: {integrity: sha512-71EPPccwJiJUxd2aMwNlTfom2mqWEWYGdbeTju01tzSHsEuD7E6ePlgC3P3ngBqB3urj41qKs87z7zPOswT5Iw==}
- engines: {node: '>=10'}
- cpu: [x64]
- os: [linux]
+ '@turf/flatten@7.3.0':
+ resolution: {integrity: sha512-rzH//zTZQH93W0jh+0H+EDtvBD37jd1szxkOnOpOuUOJtDvdqH/3C7b0MFjvwcPCYhurtG90uW+y0mchjMbgoQ==}
- '@swc/core-linux-x64-musl@1.12.14':
- resolution: {integrity: sha512-nImF1hZJqKTcl0WWjHqlelOhvuB9rU9kHIw/CmISBUZXogjLIvGyop1TtJNz0ULcz2Oxr3Q2YpwfrzsgvgbGkA==}
- engines: {node: '>=10'}
- cpu: [x64]
- os: [linux]
+ '@turf/flatten@7.3.1':
+ resolution: {integrity: sha512-cM/uuQP8oZ4IDJG342uOlqQ8yD9RsAY9Gg9nsDOgJn6tN065aigRCNy2lfrNyLdK/CPTVEWQzx1EQa+zXGSgAg==}
- '@swc/core-win32-arm64-msvc@1.12.14':
- resolution: {integrity: sha512-sABFQFxSuStFoxvEWZUHWYldtB1B4A9eDNFd4Ty50q7cemxp7uoscFoaCqfXSGNBwwBwpS5EiPB6YN4y6hqmLQ==}
- engines: {node: '>=10'}
- cpu: [arm64]
- os: [win32]
+ '@turf/flip@7.3.0':
+ resolution: {integrity: sha512-ovRyjMSZ9ztJefZy3oWa3WDIj/sYWqN4bO8vUor3SlX8PuXzqX5LxBvINZBcX3BqI+u56I08uCQSL3Tl8H9+Yg==}
- '@swc/core-win32-ia32-msvc@1.12.14':
- resolution: {integrity: sha512-KBznRB02NASkpepRdWIK4f1AvmaJCDipKWdW1M1xV9QL2tE4aySJFojVuG1+t0tVDkjRfwcZjycQfRoJ4RjD7Q==}
- engines: {node: '>=10'}
- cpu: [ia32]
- os: [win32]
+ '@turf/flip@7.3.1':
+ resolution: {integrity: sha512-6sF41pWY8Tw7w72hYc87sR9zzDei7UZ4Db/z0mKuNKueyzl4iTQ/H2JVd/XLZ7Tasz7H8htmrbUO0GR8GY7qiQ==}
- '@swc/core-win32-x64-msvc@1.12.14':
- resolution: {integrity: sha512-SymoP2CJHzrYaFKjWvuQljcF7BkTpzaS1vpywv7K9EzdTb5N8qPDvNd+PhWUqBz9JHBhbJxpaeTDQBXF/WWPmw==}
- engines: {node: '>=10'}
- cpu: [x64]
- os: [win32]
+ '@turf/geojson-rbush@7.3.0':
+ resolution: {integrity: sha512-pej4q6pZGye/jYiQVehIHw2vcsSqubvGw93WBkuj8cZJm2OC7YAYzNpG5lcmdsr2HGR1Yrb1tCprVEUnsX92sQ==}
- '@swc/core@1.12.14':
- resolution: {integrity: sha512-CJSn2vstd17ddWIHBsjuD4OQnn9krQfaq6EO+w9YfId5DKznyPmzxAARlOXG99cC8/3Kli8ysKy6phL43bSr0w==}
- engines: {node: '>=10'}
- peerDependencies:
- '@swc/helpers': '>=0.5.17'
- peerDependenciesMeta:
- '@swc/helpers':
- optional: true
+ '@turf/geojson-rbush@7.3.1':
+ resolution: {integrity: sha512-EsrBBftZS5TvzRP2opLzwfnPXfmJi45KkGUcKSSFD0bxQe3BQUSmBrZbHMT8avB2s/XHrS/MniqsyeVOMwc35Q==}
- '@swc/counter@0.1.3':
- resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
+ '@turf/great-circle@7.3.0':
+ resolution: {integrity: sha512-DMBSFLD2/zAZAhAX2EQin+sogoT+arJ7dq9x2hRNTiEQYRZrKQyUMKPz9wNEsWB+evCLt3JsCn5djoVJByBSRw==}
- '@swc/helpers@0.5.17':
- resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==}
+ '@turf/great-circle@7.3.1':
+ resolution: {integrity: sha512-pfs7PzBRgYEEyecM0ni6iEF19grn9FmbHyaLz7voYInmc2ZHfWQaxuY4dcf9cziWDaiPlbuyr/RyE6envg1xpw==}
- '@swc/types@0.1.24':
- resolution: {integrity: sha512-tjTMh3V4vAORHtdTprLlfoMptu1WfTZG9Rsca6yOKyNYsRr+MUXutKmliB17orgSZk5DpnDxs8GUdd/qwYxOng==}
+ '@turf/helpers@5.1.5':
+ resolution: {integrity: sha512-/lF+JR+qNDHZ8bF9d+Cp58nxtZWJ3sqFe6n3u3Vpj+/0cqkjk4nXKYBSY0azm+GIYB5mWKxUXvuP/m0ZnKj1bw==}
- '@szmarczak/http-timer@5.0.1':
- resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
- engines: {node: '>=14.16'}
+ '@turf/helpers@7.3.0':
+ resolution: {integrity: sha512-5kWdgwI6e2vGbkt2qOD+Z2BiKQ7dfKN/PtWRLCpvzyOO59rk19R53CHi8nUT/Y1vQLgWmT6eNpiKwsWwPZGIdg==}
- '@tanstack/query-core@5.86.0':
- resolution: {integrity: sha512-Y6ibQm6BXbw6w1p3a5LrPn8Ae64M0dx7hGmnhrm9P+XAkCCKXOwZN0J5Z1wK/0RdNHtR9o+sWHDXd4veNI60tQ==}
+ '@turf/helpers@7.3.1':
+ resolution: {integrity: sha512-zkL34JVhi5XhsuMEO0MUTIIFEJ8yiW1InMu4hu/oRqamlY4mMoZql0viEmH6Dafh/p+zOl8OYvMJ3Vm3rFshgg==}
- '@tanstack/react-query@5.86.0':
- resolution: {integrity: sha512-jgS/v0oSJkGHucv9zxOS8rL7mjATh1XO3K4eqAV4WMpAly8okcBrGi1YxRZN5S4B59F54x9JFjWrK5vMAvJYqA==}
- peerDependencies:
- react: ^18 || ^19
+ '@turf/hex-grid@7.3.0':
+ resolution: {integrity: sha512-ySFWMwZTS1LSabtIPWMA7XAlEfBQW3WWteRYM1v+mypK14Vba0dNxf2hbbWaZIvoG3vFM/eWe6gvSTMFcw/8Qw==}
- '@testing-library/dom@10.4.0':
- resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
- engines: {node: '>=18'}
+ '@turf/hex-grid@7.3.1':
+ resolution: {integrity: sha512-cWAKxlU1aa06976C3RhpcilDzLnWwXkH/atNIWKGpLV/HubHrMXxhp9VMBKWaqsLbdn5x2uJjv4MxwWw9/373g==}
- '@testing-library/dom@10.4.1':
- resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==}
- engines: {node: '>=18'}
+ '@turf/interpolate@7.3.0':
+ resolution: {integrity: sha512-/Dw3xonymbFWgzKIi7AGyIMcPI7P1t3KCj6tD+NWm9f58xbooYbcP8//fd4EZcBprAH5uaLV/iuv4hG1dKfLtw==}
- '@testing-library/jest-dom@6.8.0':
- resolution: {integrity: sha512-WgXcWzVM6idy5JaftTVC8Vs83NKRmGJz4Hqs4oyOuO2J4r/y79vvKZsb+CaGyCSEbUPI6OsewfPd0G1A0/TUZQ==}
- engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
+ '@turf/interpolate@7.3.1':
+ resolution: {integrity: sha512-dquwDplzkSANMQdvxAu0dRF69EBIIlW/1zTPOB/BQfb/s7j6t8RskgbuV8ew1KpJPMmj7EbexejiMBtRWXTu4Q==}
- '@testing-library/react@16.3.0':
- resolution: {integrity: sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==}
- engines: {node: '>=18'}
- peerDependencies:
- '@testing-library/dom': ^10.0.0
- '@types/react': ^18.0.0 || ^19.0.0
- '@types/react-dom': ^18.0.0 || ^19.0.0
- react: ^18.0.0 || ^19.0.0
- react-dom: ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
+ '@turf/intersect@7.3.0':
+ resolution: {integrity: sha512-ASgfNwg7WBMacsHTEVNI5qbrzo7wQezwIZ44ndVvTl3MJbeoDdQ1FhLNNGAK3VCH7MH/c7cdqV2IkicqTIyUuQ==}
- '@testing-library/user-event@14.6.1':
- resolution: {integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==}
- engines: {node: '>=12', npm: '>=6'}
- peerDependencies:
- '@testing-library/dom': '>=7.21.4'
+ '@turf/intersect@7.3.1':
+ resolution: {integrity: sha512-676688YnF9wpprMioQWvxPlUMhtTvYITzw4XoG3lQmLjd/yt2cByanQHWpzWauLfYUlfuL13AeRGdqXRhSkhTQ==}
- '@tmcw/togeojson@7.1.2':
- resolution: {integrity: sha512-QKnFs9DAuqqBVj4d6c69tV1Dj2TspSBTqffivoN0YoBCVdP/JY1+WaYCJbzU49RkoU5NOSOJ3jtFHCdEUVh21A==}
+ '@turf/invariant@5.2.0':
+ resolution: {integrity: sha512-28RCBGvCYsajVkw2EydpzLdcYyhSA77LovuOvgCJplJWaNVyJYH6BOR3HR9w50MEkPqb/Vc/jdo6I6ermlRtQA==}
- '@tokenizer/inflate@0.2.7':
- resolution: {integrity: sha512-MADQgmZT1eKjp06jpI2yozxaU9uVs4GzzgSL+uEq7bVcJ9V1ZXQkeGNql1fsSI0gMy1vhvNTNbUqrx+pZfJVmg==}
- engines: {node: '>=18'}
+ '@turf/invariant@7.3.0':
+ resolution: {integrity: sha512-AmDFmdhpbLZv0zlI4EF4bVFE0iYmKcOBI2m8DTcFFUQDRusgjc+NLCnX1RIENfYyeI2FKHg84E9vSt6XytUDvw==}
- '@tokenizer/token@0.3.0':
- resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
+ '@turf/invariant@7.3.1':
+ resolution: {integrity: sha512-IdZJfDjIDCLH+Gu2yLFoSM7H23sdetIo5t4ET1/25X8gi3GE2XSqbZwaGjuZgNh02nisBewLqNiJs2bo+hrqZA==}
- '@trysound/sax@0.2.0':
- resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
- engines: {node: '>=10.13.0'}
+ '@turf/isobands@7.3.0':
+ resolution: {integrity: sha512-g/CqRgaF+Q1ECqOm5p0CQ1sxEgjPbuxMRSqOqfg7eI/T4/3f9QUEj2VuoISP8DL5nMYH9C6ohzppJHuN/XxYCw==}
- '@tsconfig/node10@1.0.11':
- resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
+ '@turf/isobands@7.3.1':
+ resolution: {integrity: sha512-An6+yUSrOStQSpZwKW9XN891kCW6eagtuofyudZ2BkoxcYRJ0vcDXo7RoiXuf9nHaG4k/xwhAzTqe8hdO1ltWA==}
- '@tsconfig/node12@1.0.11':
- resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+ '@turf/isolines@7.3.0':
+ resolution: {integrity: sha512-uGFJviPFSzLmEsZzJw3Beajm66Gyy2V2MS8tgej7Brat3CO7ChejNoMcPCeZ8P4Uk6k6Olc5CdcVWQqph6Ul4w==}
- '@tsconfig/node14@1.0.3':
- resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+ '@turf/isolines@7.3.1':
+ resolution: {integrity: sha512-TcwbTd7Z4BffYe1PtpXUtZvWCwTffta8VxqryGU30CbqKjNJYqrFbEQXS0mo4l3BEPPmT1lfMskUQ2g97O2MWQ==}
- '@tsconfig/node16@1.0.4':
- resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
+ '@turf/jsts@2.7.2':
+ resolution: {integrity: sha512-zAezGlwWHPyU0zxwcX2wQY3RkRpwuoBmhhNE9HY9kWhFDkCxZ3aWK5URKwa/SWKJbj9aztO+8vtdiBA28KVJFg==}
- '@turf/along@7.2.0':
- resolution: {integrity: sha512-Cf+d2LozABdb0TJoIcJwFKB+qisJY4nMUW9z6PAuZ9UCH7AR//hy2Z06vwYCKFZKP4a7DRPkOMBadQABCyoYuw==}
+ '@turf/kinks@7.3.0':
+ resolution: {integrity: sha512-9JdgGbOVI8DV/Gyp25cOVTAcRj9YThEj31RsUPBrKmyelZWU/SgQKquCkMrfBXNKNkfaAsKmPwPGGhQes26X+A==}
- '@turf/angle@7.2.0':
- resolution: {integrity: sha512-b28rs1NO8Dt/MXadFhnpqH7GnEWRsl+xF5JeFtg9+eM/+l/zGrdliPYMZtAj12xn33w22J1X4TRprAI0rruvVQ==}
+ '@turf/kinks@7.3.1':
+ resolution: {integrity: sha512-gGXNrhlF7zvLwRX672S0Be7bmYjbZEoZYnOGN6RvhyBFSSLFIbne+I74I+lWRzAzG/NhAMBXma5TpB09iTH06Q==}
- '@turf/area@7.2.0':
- resolution: {integrity: sha512-zuTTdQ4eoTI9nSSjerIy4QwgvxqwJVciQJ8tOPuMHbXJ9N/dNjI7bU8tasjhxas/Cx3NE9NxVHtNpYHL0FSzoA==}
+ '@turf/length@7.3.0':
+ resolution: {integrity: sha512-vZjSEPC5lM3tBB7RaiXVujvSe62jxaAHYl9E+yd4Egcv/zOKkFlK26j+1mtSyDwKE/r7nE4gd34KpT9k889vjA==}
- '@turf/bbox-clip@7.2.0':
- resolution: {integrity: sha512-q6RXTpqeUQAYLAieUL1n3J6ukRGsNVDOqcYtfzaJbPW+0VsAf+1cI16sN700t0sekbeU1DH/RRVAHhpf8+36wA==}
+ '@turf/length@7.3.1':
+ resolution: {integrity: sha512-QOr4qS3yi6qWIfQ/KLcy4rDLdemGCYpqz2YDh29R46seE+arSvlBI0KXvI36rPzgEMcUbQuVQyO65sOSqPaEjQ==}
- '@turf/bbox-polygon@7.2.0':
- resolution: {integrity: sha512-Aj4G1GAAy26fmOqMjUk0Z+Lcax5VQ9g1xYDbHLQWXvfTsaueBT+RzdH6XPnZ/seEEnZkio2IxE8V5af/osupgA==}
+ '@turf/line-arc@7.3.0':
+ resolution: {integrity: sha512-mClyl2eFWUQFEYsQGc+ml9aJC917dELAvVvvNyIKuI4T6lUkzpfRE8478dky+9Hw/5biDREJqdnIsZOWKYbtFg==}
- '@turf/bbox@7.2.0':
- resolution: {integrity: sha512-wzHEjCXlYZiDludDbXkpBSmv8Zu6tPGLmJ1sXQ6qDwpLE1Ew3mcWqt8AaxfTP5QwDNQa3sf2vvgTEzNbPQkCiA==}
+ '@turf/line-arc@7.3.1':
+ resolution: {integrity: sha512-QSuVP0YWcfl76QjPb5Y2GJqXnziSJ2AuaJm5RKEFt5ELugXdEcHkRtydkGov+ZRPmI93jVmXoEE0UXwQx7aYHA==}
- '@turf/bearing@7.2.0':
- resolution: {integrity: sha512-Jm0Xt3GgHjRrWvBtAGvgfnADLm+4exud2pRlmCYx8zfiKuNXQFkrcTZcOiJOgTfG20Agq28iSh15uta47jSIbg==}
+ '@turf/line-chunk@7.3.0':
+ resolution: {integrity: sha512-FQfeoNDptoAh6YTKufjDfMFUpVeIXJ+h6FDltUtun8+SjvfRfTizH2dpGz3ocCICmAupPjA5bWVj9R/z1NY7XQ==}
- '@turf/bezier-spline@7.2.0':
- resolution: {integrity: sha512-7BPkc3ufYB9KLvcaTpTsnpXzh9DZoENxCS0Ms9XUwuRXw45TpevwUpOsa3atO76iKQ5puHntqFO4zs8IUxBaaA==}
+ '@turf/line-chunk@7.3.1':
+ resolution: {integrity: sha512-fbJw/7Qlqz0XRMz0TgtFUivFHr51+++ZUBrARgs3w/pogeAdkrcWKBbuT2cowEsUkXDHaQ7MMpmuV8Uteru1qw==}
- '@turf/boolean-clockwise@7.2.0':
- resolution: {integrity: sha512-0fJeFSARxy6ealGBM4Gmgpa1o8msQF87p2Dx5V6uSqzT8VPDegX1NSWl4b7QgXczYa9qv7IAABttdWP0K7Q7eQ==}
+ '@turf/line-intersect@7.3.0':
+ resolution: {integrity: sha512-OJi54/VHBox+mRdK7IJLT1A/TJI+ORoYuYDtX2dqSMHeb2NnDS/9W6ipZ2wqt9aZDQzWKSlg2AkWtQWyVmlFfA==}
- '@turf/boolean-concave@7.2.0':
- resolution: {integrity: sha512-v3dTN04dfO6VqctQj1a+pjDHb6+/Ev90oAR2QjJuAntY4ubhhr7vKeJdk/w+tWNSMKULnYwfe65Du3EOu3/TeA==}
+ '@turf/line-intersect@7.3.1':
+ resolution: {integrity: sha512-HFPH4Hi+rG7XZ5rijkYL5C9JGVKd6gz6TToShVfqOt/qgGY9/bLYQxymgum/MG7sRhIa8xcKff2d57JrIVuSWA==}
- '@turf/boolean-contains@7.2.0':
- resolution: {integrity: sha512-dgRQm4uVO5XuLee4PLVH7CFQZKdefUBMIXTPITm2oRIDmPLJKHDOFKQTNkGJ73mDKKBR2lmt6eVH3br6OYrEYg==}
+ '@turf/line-offset@7.3.0':
+ resolution: {integrity: sha512-B3chEsRsS52tXWdWCXK5hcC53293yLqVj3G+s71BYEtDPvOT9maE23e889ThqvxbXWHtPIzWxX0rNr4AT+qDYw==}
- '@turf/boolean-crosses@7.2.0':
- resolution: {integrity: sha512-9GyM4UUWFKQOoNhHVSfJBf5XbPy8Fxfz9djjJNAnm/IOl8NmFUSwFPAjKlpiMcr6yuaAoc9R/1KokS9/eLqPvA==}
+ '@turf/line-offset@7.3.1':
+ resolution: {integrity: sha512-PyElfSyXETXcI8OKRsAJNdOcxlM718EG0d+b9zeO2uRztf2IlSb5w3lYiTIUSslEDA1gMQE31cJE8sAW40+nhg==}
- '@turf/boolean-disjoint@7.2.0':
- resolution: {integrity: sha512-xdz+pYKkLMuqkNeJ6EF/3OdAiJdiHhcHCV0ykX33NIuALKIEpKik0+NdxxNsZsivOW6keKwr61SI+gcVtHYcnQ==}
+ '@turf/line-overlap@7.3.0':
+ resolution: {integrity: sha512-wFgDhZuXTrQt/W7deO6rF6x9FPZntHh6r4VL9SqvllQ/H+Wq7eqV2ET8grDg939YWTzYbg5lfnxSVLSAVQFCzQ==}
- '@turf/boolean-equal@7.2.0':
- resolution: {integrity: sha512-TmjKYLsxXqEmdDtFq3QgX4aSogiISp3/doeEtDOs3NNSR8susOtBEZkmvwO6DLW+g/rgoQJIBR6iVoWiRqkBxw==}
+ '@turf/line-overlap@7.3.1':
+ resolution: {integrity: sha512-xIhTfPhJMwz57DvM+/JuzG2BUL/gR/pJfH6w+vofI3akej33LTR8b296h2dhcJjDixxprVVH062AD1Q3AGKyfg==}
- '@turf/boolean-intersects@7.2.0':
- resolution: {integrity: sha512-GLRyLQgK3F14drkK5Qi9Mv7Z9VT1bgQUd9a3DB3DACTZWDSwfh8YZUFn/HBwRkK8dDdgNEXaavggQHcPi1k9ow==}
+ '@turf/line-segment@7.3.0':
+ resolution: {integrity: sha512-ZXWXUDqdx/R5YIab5OztjjmPsZ7d9kUSHxVjHKPR2c/q1Ji10eZzHGKfMPoTDaQSTfVaiifyBuFyg2lKxJpolg==}
- '@turf/boolean-overlap@7.2.0':
- resolution: {integrity: sha512-ieM5qIE4anO+gUHIOvEN7CjyowF+kQ6v20/oNYJCp63TVS6eGMkwgd+I4uMzBXfVW66nVHIXjODdUelU+Xyctw==}
+ '@turf/line-segment@7.3.1':
+ resolution: {integrity: sha512-hHz1fM2LigNKmnhyHDXtbRrkBqltH/lYEvhgSmv3laZ9PsEYL8jvA3o7+IhLM9B4KPa8N6VGim6ZR5YA5bhLvQ==}
- '@turf/boolean-parallel@7.2.0':
- resolution: {integrity: sha512-iOtuzzff8nmwv05ROkSvyeGLMrfdGkIi+3hyQ+DH4IVyV37vQbqR5oOJ0Nt3Qq1Tjrq9fvF8G3OMdAv3W2kY9w==}
+ '@turf/line-slice-along@7.3.0':
+ resolution: {integrity: sha512-Xl3d5351ap1gnlT4c+PWYTMHukLgRyiwnNVJBMGVB7nB2FXN9/XWUmD5kHJ/NymSg1e0/EYT0u3TdCV5q+j85w==}
- '@turf/boolean-point-in-polygon@7.2.0':
- resolution: {integrity: sha512-lvEOjxeXIp+wPXgl9kJA97dqzMfNexjqHou+XHVcfxQgolctoJiRYmcVCWGpiZ9CBf/CJha1KmD1qQoRIsjLaA==}
+ '@turf/line-slice-along@7.3.1':
+ resolution: {integrity: sha512-RizIhPytHxEewCyUCSMrZ5a58sQev0kZ0jzAV/9iTzvGfRD1VU/RG2ThLpSEqXYKBBSty98rTeSlnwsvZpAraA==}
- '@turf/boolean-point-on-line@7.2.0':
- resolution: {integrity: sha512-H/bXX8+2VYeSyH8JWrOsu8OGmeA9KVZfM7M6U5/fSqGsRHXo9MyYJ94k39A9kcKSwI0aWiMXVD2UFmiWy8423Q==}
+ '@turf/line-slice@7.3.0':
+ resolution: {integrity: sha512-TpsQEZDMed0jMLPFY6OPjlvJL0oAae3XBV3D/TNx8bfBJ1F6daUWAL021FtUOZBzveDZQ+aH5IF5V0XOT/qdDA==}
- '@turf/boolean-touches@7.2.0':
- resolution: {integrity: sha512-8qb1CO+cwFATGRGFgTRjzL9aibfsbI91pdiRl7KIEkVdeN/H9k8FDrUA1neY7Yq48IaciuwqjbbojQ16FD9b0w==}
+ '@turf/line-slice@7.3.1':
+ resolution: {integrity: sha512-bp1L4sc7ZOYC4fwxpfWu+IR/COvLFGm5mjbLPK8VBJYa+kUNrzNcB3QE3A8yFRjwPtlUTCm5fDMLSoGtiJcy2g==}
- '@turf/boolean-valid@7.2.0':
- resolution: {integrity: sha512-xb7gdHN8VV6ivPJh6rPpgxmAEGReiRxqY+QZoEZVGpW2dXcmU1BdY6FA6G/cwvggXAXxJBREoANtEDgp/0ySbA==}
+ '@turf/line-split@7.3.0':
+ resolution: {integrity: sha512-SGgIqv53UQolYts5Ejwz1I4d2KzeS4zS7wpKzOvDQIOld2e6aaze0PZunWTV6qnTyO5udOnCcBSO+3b9D/tozA==}
- '@turf/boolean-within@7.2.0':
- resolution: {integrity: sha512-zB3AiF59zQZ27Dp1iyhp9mVAKOFHat8RDH45TZhLY8EaqdEPdmLGvwMFCKfLryQcUDQvmzP8xWbtUR82QM5C4g==}
+ '@turf/line-split@7.3.1':
+ resolution: {integrity: sha512-Ee4NRN+eYKYX8vJDNvMpyZFjOntKFokQ/E8yFtKMcN++vG7RbnPOo2/ag6TMZaIHsahj4UR2yhqJbHTaB6Dp+g==}
- '@turf/buffer@7.2.0':
- resolution: {integrity: sha512-QH1FTr5Mk4z1kpQNztMD8XBOZfpOXPOtlsxaSAj2kDIf5+LquA6HtJjZrjUngnGtzG5+XwcfyRL4ImvLnFjm5Q==}
+ '@turf/line-to-polygon@7.3.0':
+ resolution: {integrity: sha512-Dis/BB/zgKmFO3nskv6fGtVhTIUuVLrvm+w09uSUwiN4NdHqguBL8sQVddmQdy8jykSLQmYcYSuZhKYF2Ny2pQ==}
- '@turf/center-mean@7.2.0':
- resolution: {integrity: sha512-NaW6IowAooTJ35O198Jw3U4diZ6UZCCeJY+4E+WMLpks3FCxMDSHEfO2QjyOXQMGWZnVxVelqI5x9DdniDbQ+A==}
+ '@turf/line-to-polygon@7.3.1':
+ resolution: {integrity: sha512-GL4fjbdYYjfOmwTu4dtllNHm18E7+hoXqyca2Rqb2ZzXj++NHvifJ9iYHUSdpV4/mkvVD3U2rU6jzNkjQeXIaA==}
- '@turf/center-median@7.2.0':
- resolution: {integrity: sha512-/CgVyHNG4zAoZpvkl7qBCe4w7giWNVtLyTU5PoIfg1vWM4VpYw+N7kcBBH46bbzvVBn0vhmZr586r543EwdC/A==}
+ '@turf/mask@7.3.0':
+ resolution: {integrity: sha512-tnTZJg9CrGi9PXzSX/YKsFdsgsihSyksCP7qzV2uA2scLVm4XNwDcSusc27jQu8IyH7V2JvkiZews+bRQwhe1A==}
- '@turf/center-of-mass@7.2.0':
- resolution: {integrity: sha512-ij3pmG61WQPHGTQvOziPOdIgwTMegkYTwIc71Gl7xn4C0vWH6KLDSshCphds9xdWSXt2GbHpUs3tr4XGntHkEQ==}
+ '@turf/mask@7.3.1':
+ resolution: {integrity: sha512-rSNS6wNuBiaUR1aU7tobgkzHpot5v9GKCn+n5gQ3ad7KWqwwqLWfcCPeyHBWkWEoEwc2yfPqikMQugZbmxrorg==}
- '@turf/center@7.2.0':
- resolution: {integrity: sha512-UTNp9abQ2kuyRg5gCIGDNwwEQeF3NbpYsd1Q0KW9lwWuzbLVNn0sOwbxjpNF4J2HtMOs5YVOcqNvYyuoa2XrXw==}
+ '@turf/meta@5.2.0':
+ resolution: {integrity: sha512-ZjQ3Ii62X9FjnK4hhdsbT+64AYRpaI8XMBMcyftEOGSmPMUVnkbvuv3C9geuElAXfQU7Zk1oWGOcrGOD9zr78Q==}
- '@turf/centroid@7.2.0':
- resolution: {integrity: sha512-yJqDSw25T7P48au5KjvYqbDVZ7qVnipziVfZ9aSo7P2/jTE7d4BP21w0/XLi3T/9bry/t9PR1GDDDQljN4KfDw==}
+ '@turf/meta@7.3.0':
+ resolution: {integrity: sha512-fTLqdQqRm8qA2zHHUbBMY++YT9LDQejLG7OD70XF2dwg9nPiF9mUxO7nrsDp2IY8vNmH9OTAiMtlIjb0ssYccg==}
- '@turf/circle@7.2.0':
- resolution: {integrity: sha512-1AbqBYtXhstrHmnW6jhLwsv7TtmT0mW58Hvl1uZXEDM1NCVXIR50yDipIeQPjrCuJ/Zdg/91gU8+4GuDCAxBGA==}
+ '@turf/meta@7.3.1':
+ resolution: {integrity: sha512-NWsfOE5RVtWpLQNkfOF/RrYvLRPwwruxhZUV0UFIzHqfiRJ50aO9Y6uLY4bwCUe2TumLJQSR4yaoA72Rmr2mnQ==}
- '@turf/clean-coords@7.2.0':
- resolution: {integrity: sha512-+5+J1+D7wW7O/RDXn46IfCHuX1gIV1pIAQNSA7lcDbr3HQITZj334C4mOGZLEcGbsiXtlHWZiBtm785Vg8i+QQ==}
+ '@turf/midpoint@7.3.0':
+ resolution: {integrity: sha512-PHIZ1dYXLdTQy4MFG8trRFaJwEecasX9tJ4bXZQRg7VzfjoF83b/+7VmWD4j8H4hpX49PTfNC1w/6MD++uGSkA==}
- '@turf/clone@7.2.0':
- resolution: {integrity: sha512-JlGUT+/5qoU5jqZmf6NMFIoLDY3O7jKd53Up+zbpJ2vzUp6QdwdNzwrsCeONhynWM13F0MVtPXH4AtdkrgFk4g==}
+ '@turf/midpoint@7.3.1':
+ resolution: {integrity: sha512-hx3eT9ut0Qyl8fyitCREp9l+v5Q4uBILht5+VKQS3p5eK2ijLEsKw4VikNZhh2rZ7bHGrs6obG5/P5ZqDTObiA==}
- '@turf/clusters-dbscan@7.2.0':
- resolution: {integrity: sha512-VWVUuDreev56g3/BMlnq/81yzczqaz+NVTypN5CigGgP67e+u/CnijphiuhKjtjDd/MzGjXgEWBJc26Y6LYKAw==}
+ '@turf/moran-index@7.3.0':
+ resolution: {integrity: sha512-NsFp1/D3CB/PkzqHUHlXYupE3Mkd9CzVDByA9Rj8T1HPo6aUa6qlhqs1ah2b/VcYhtATzvYwuoIOC5pVkBE+IQ==}
- '@turf/clusters-kmeans@7.2.0':
- resolution: {integrity: sha512-BxQdK8jc8Mwm9yoClCYkktm4W004uiQGqb/i/6Y7a8xqgJITWDgTu/cy//wOxAWPk4xfe6MThjnqkszWW8JdyQ==}
+ '@turf/moran-index@7.3.1':
+ resolution: {integrity: sha512-9t70AjBB0bycJWLVprqS7mtRU+Ha+U4ji5lkKzyg31ZWAr0IwuawY2VQ/ydsodFMLCqmIf8QbWsltV/I/bRdjQ==}
- '@turf/clusters@7.2.0':
- resolution: {integrity: sha512-sKOrIKHHtXAuTKNm2USnEct+6/MrgyzMW42deZ2YG2RRKWGaaxHMFU2Yw71Yk4DqStOqTIBQpIOdrRuSOwbuQw==}
+ '@turf/nearest-neighbor-analysis@7.3.0':
+ resolution: {integrity: sha512-fefZokkUFU7p8nptQ4vAsj1qTWX5JpQEaFRA3HNWIMw6kHvqQts7eHYAOkZEX4DODH+BEGe+7I7HcBpPrlu5mA==}
- '@turf/collect@7.2.0':
- resolution: {integrity: sha512-zRVGDlYS8Bx/Zz4vnEUyRg4dmqHhkDbW/nIUIJh657YqaMj1SFi4Iv2i9NbcurlUBDJFkpuOhCvvEvAdskJ8UA==}
+ '@turf/nearest-neighbor-analysis@7.3.1':
+ resolution: {integrity: sha512-qwZON/7v1NbD1H1v3kTHJfLLml2/TNj5QQFRFBJiXRSCydMJT1sKEs5BwJe/9cBbmd0ln3gBWXCkG7Sk3sPgOQ==}
- '@turf/combine@7.2.0':
- resolution: {integrity: sha512-VEjm3IvnbMt3IgeRIhCDhhQDbLqCU1/5uN1+j1u6fyA095pCizPThGp4f/COSzC3t1s/iiV+fHuDsB6DihHffQ==}
+ '@turf/nearest-point-on-line@7.3.0':
+ resolution: {integrity: sha512-IqwvZ/IuFXE30tsOYs+aoSKpLz1RljqIW0FJZb9OVcZzvbhv+R1nUCh95zzPTlNtifRuHkreKVBUYzLNlsC6Sg==}
- '@turf/concave@7.2.0':
- resolution: {integrity: sha512-cpaDDlumK762kdadexw5ZAB6g/h2pJdihZ+e65lbQVe3WukJHAANnIEeKsdFCuIyNKrwTz2gWu5ws+OpjP48Yw==}
+ '@turf/nearest-point-on-line@7.3.1':
+ resolution: {integrity: sha512-FialyHfXXZWLayKQcUtdOtKv3ulOQ9FSI45kSmkDl8b96+VFWHX983Pc94tTrSTSg89+XX7MDr6gRl0yowmF4Q==}
- '@turf/convex@7.2.0':
- resolution: {integrity: sha512-HsgHm+zHRE8yPCE/jBUtWFyaaBmpXcSlyHd5/xsMhSZRImFzRzBibaONWQo7xbKZMISC3Nc6BtUjDi/jEVbqyA==}
+ '@turf/nearest-point-to-line@7.3.0':
+ resolution: {integrity: sha512-C9dg9J1KfNAhvtrc+G5or9/JEAiLE303+dlanu/WhCBOAS12osfbFMlc93cEKA9GKVVOvll0hQxDRdik3akmRw==}
- '@turf/destination@7.2.0':
- resolution: {integrity: sha512-8DUxtOO0Fvrh1xclIUj3d9C5WS20D21F5E+j+X9Q+ju6fcM4huOqTg5ckV1DN2Pg8caABEc5HEZJnGch/5YnYQ==}
+ '@turf/nearest-point-to-line@7.3.1':
+ resolution: {integrity: sha512-7zvhE15vlKBW7F3gYmxZMrnsS2HhXIt0Mpdymy6Y1oMWAXrYIqSeHl1Y/h2CiDh0v91K1KJXf2WyRYacosWiNA==}
- '@turf/difference@7.2.0':
- resolution: {integrity: sha512-NHKD1v3s8RX+9lOpvHJg6xRuJOKiY3qxHhz5/FmE0VgGqnCkE7OObqWZ5SsXG+Ckh0aafs5qKhmDdDV/gGi6JA==}
+ '@turf/nearest-point@7.3.0':
+ resolution: {integrity: sha512-EGfucsrDrcBuZ9YSD3djPBBpYEoX6S/VLDANEuku7OPmCd5UVyjKWBswFW1DKrksh+Cx5ZmSeCk9tz+RVPjJNw==}
- '@turf/dissolve@7.2.0':
- resolution: {integrity: sha512-gPG5TE3mAYuZqBut8tPYCKwi4hhx5Cq0ALoQMB9X0hrVtFIKrihrsj98XQM/5pL/UIpAxQfwisQvy6XaOFaoPA==}
+ '@turf/nearest-point@7.3.1':
+ resolution: {integrity: sha512-hLKGFzwAEop5z04X5BeurJvz0oVPHQX0rjeL3v83kgIjR/eavQucXKO3XkJBoF1AaT9Dv0mgB8rmj/qrwroWgg==}
- '@turf/distance-weight@7.2.0':
- resolution: {integrity: sha512-NeoyV0fXDH+7nIoNtLjAoH9XL0AS1pmTIyDxEE6LryoDTsqjnuR0YQxIkLCCWDqECoqaOmmBqpeWONjX5BwWCg==}
+ '@turf/planepoint@7.3.0':
+ resolution: {integrity: sha512-eIlwqVXb+W8QwFyuHvItRqo+2tbQcYJzfT2ySvqCHNwzBXrJSYtY0cF0GTQsSRnGYVw8PK/3aBmFNtDGBoBbCw==}
- '@turf/distance@7.2.0':
- resolution: {integrity: sha512-HBjjXIgEcD/wJYjv7/6OZj5yoky2oUvTtVeIAqO3lL80XRvoYmVg6vkOIu6NswkerwLDDNT9kl7+BFLJoHbh6Q==}
+ '@turf/planepoint@7.3.1':
+ resolution: {integrity: sha512-/DVTAZcOsSW54B9XDYUXyiL000vJ8WfONCF4FoM71VMeLS7PM3e+4W9gzN21q15XRn3nUftH12tJhqKEqDouvw==}
- '@turf/ellipse@7.2.0':
- resolution: {integrity: sha512-/Y75S5hE2+xjnTw4dXpQ5r/Y2HPM4xrwkPRCCQRpuuboKdEvm42azYmh7isPnMnBTVcmGb9UmGKj0HHAbiwt1g==}
+ '@turf/point-grid@7.3.0':
+ resolution: {integrity: sha512-O5pfVOllskiiFQK36G0I7t2Zi3C+wqzt/hBKYPyGEMno8fO6w022IXEtibXyuhAEF63xrDm3SMTBnL9bAFnDLw==}
- '@turf/envelope@7.2.0':
- resolution: {integrity: sha512-xOMtDeNKHwUuDfzQeoSNmdabsP0/IgVDeyzitDe/8j9wTeW+MrKzVbGz7627PT3h6gsO+2nUv5asfKtUbmTyHA==}
+ '@turf/point-grid@7.3.1':
+ resolution: {integrity: sha512-KqBlGgBzI/M7/awK25o9p8Q+mRjQDRU4mpHtqNzqNxgidk4JxnUnGybYTnsjp3n1Zid3yASv5kARJ4i/Jc5F7w==}
- '@turf/explode@7.2.0':
- resolution: {integrity: sha512-jyMXg93J1OI7/65SsLE1k9dfQD3JbcPNMi4/O3QR2Qb3BAs2039oFaSjtW+YqhMqVC4V3ZeKebMcJ8h9sK1n+A==}
+ '@turf/point-on-feature@7.3.0':
+ resolution: {integrity: sha512-B2MepPZTt5J/2iz75wa47HTOGV0ChAwy/hcl9EVMm0f9prcz33nYPqRu5iXfqGTQTw0jkIl5PESUkYbd7HERTQ==}
- '@turf/flatten@7.2.0':
- resolution: {integrity: sha512-q38Qsqr4l7mxp780zSdn0gp/WLBX+sa+gV6qIbDQ1HKCrrPK8QQJmNx7gk1xxEXVot6tq/WyAPysCQdX+kLmMA==}
+ '@turf/point-on-feature@7.3.1':
+ resolution: {integrity: sha512-uX15wjujBMeMKAN7OLK4RV6KCLxsoQiFRB9kMtbTeZj13mDo+Bz5SyNN+M2AXqrdsQI9+4h0UTwu3EjcXj/nEw==}
- '@turf/flip@7.2.0':
- resolution: {integrity: sha512-X0TQ0U/UYh4tyXdLO5itP1sO2HOvfrZC0fYSWmTfLDM14jEPkEK8PblofznfBygL+pIFtOS2is8FuVcp5XxYpQ==}
+ '@turf/point-to-line-distance@7.3.0':
+ resolution: {integrity: sha512-ijl+WPQ4D4cZJ4jWXYshRs9rLvDPMvIfodQxZibYFf7dq0V/MN45CmmUSR05se66oJJeNyZnwWiXpz4j/uS78g==}
- '@turf/geojson-rbush@7.2.0':
- resolution: {integrity: sha512-ST8fLv+EwxVkDgsmhHggM0sPk2SfOHTZJkdgMXVFT7gB9o4lF8qk4y4lwvCCGIfFQAp2yv/PN5EaGMEKutk6xw==}
+ '@turf/point-to-line-distance@7.3.1':
+ resolution: {integrity: sha512-vynnX3zIMmJY633fyAIKnzlsmL7OBhbk05YhWVSjCKvSQV8C2xMA9pWaLFacn1xu4nfMSVDUaNOrcAqwubN9pg==}
- '@turf/great-circle@7.2.0':
- resolution: {integrity: sha512-n30OiADyOKHhor0aXNgYfXQYXO3UtsOKmhQsY1D89/Oh1nCIXG/1ZPlLL9ZoaRXXBTUBjh99a+K8029NQbGDhw==}
+ '@turf/point-to-polygon-distance@7.3.0':
+ resolution: {integrity: sha512-hhb4xIBuyE0PDHJH8MX+bHVYIWK21qliM51vkBuvbRf6ktpcwnj+ZtpPzkK+M2VJwyIhouNdcza4K5VfmK3mtA==}
- '@turf/helpers@7.2.0':
- resolution: {integrity: sha512-cXo7bKNZoa7aC7ydLmUR02oB3IgDe7MxiPuRz3cCtYQHn+BJ6h1tihmamYDWWUlPHgSNF0i3ATc4WmDECZafKw==}
+ '@turf/point-to-polygon-distance@7.3.1':
+ resolution: {integrity: sha512-A2hTQjMKO2VEMdgOariICLCjt0BDc1wAQ7Mzqc4vFuol1/GlAed4JqyLg1zXuOVlZcojvXDk/XRuZwXDlRJkBA==}
- '@turf/hex-grid@7.2.0':
- resolution: {integrity: sha512-Yo2yUGxrTCQfmcVsSjDt0G3Veg8YD26WRd7etVPD9eirNNgXrIyZkbYA7zVV/qLeRWVmYIKRXg1USWl7ORQOGA==}
+ '@turf/points-within-polygon@7.3.0':
+ resolution: {integrity: sha512-hctQeP25rCxdWc9Kek+KIWXukicPFwY8kGIbN0//M/PETY8VqW4beWrpf/3uGYwzMP6NRAjczMeb1BkP78ooDA==}
- '@turf/interpolate@7.2.0':
- resolution: {integrity: sha512-Ifgjm1SEo6XujuSAU6lpRMvoJ1SYTreil1Rf5WsaXj16BQJCedht/4FtWCTNhSWTwEz2motQ1WNrjTCuPG94xA==}
+ '@turf/points-within-polygon@7.3.1':
+ resolution: {integrity: sha512-tVcQVykc1vvSqz+l/PA4EKVWfMrGtA3ZUxDYBoD2tSaM79EpdTcY1BzfxT5O2582SQ0AdNFXDXRTf7VI6u/+2Q==}
- '@turf/intersect@7.2.0':
- resolution: {integrity: sha512-81GMzKS9pKqLPa61qSlFxLFeAC8XbwyCQ9Qv4z6o5skWk1qmMUbEHeMqaGUTEzk+q2XyhZ0sju1FV4iLevQ/aw==}
+ '@turf/polygon-smooth@7.3.0':
+ resolution: {integrity: sha512-ugSAl9AAPQFsXATXwEKg0PNpw5LlLF+hHhJmhfpj7MfCsRlks9cUlMXwFcwTPAmi13AjBNK2n1F5vUeWkKiQ/w==}
- '@turf/invariant@7.2.0':
- resolution: {integrity: sha512-kV4u8e7Gkpq+kPbAKNC21CmyrXzlbBgFjO1PhrHPgEdNqXqDawoZ3i6ivE3ULJj2rSesCjduUaC/wyvH/sNr2Q==}
+ '@turf/polygon-smooth@7.3.1':
+ resolution: {integrity: sha512-CNi4SdpOycZRSBr4o0MlrFdC6x5xcXP6jKx2yXZf9FPrOWamHsDXa+NrywCOAPhgZKnBodRF6usKWudVMyPIgg==}
- '@turf/isobands@7.2.0':
- resolution: {integrity: sha512-lYoHeRieFzpBp29Jh19QcDIb0E+dzo/K5uwZuNga4wxr6heNU0AfkD4ByAHYIXHtvmp4m/JpSKq/2N6h/zvBkg==}
+ '@turf/polygon-tangents@7.3.0':
+ resolution: {integrity: sha512-+gQDD3zP+eDTyeo0egw6hV4roZUhPRVLaBXGKhbMHUE5PiDR3ye4ggrBhuwDJVWwmHwfeLags2ZMcjBZ7qUXUg==}
- '@turf/isolines@7.2.0':
- resolution: {integrity: sha512-4ZXKxvA/JKkxAXixXhN3UVza5FABsdYgOWXyYm3L5ryTPJVOYTVSSd9A+CAVlv9dZc3YdlsqMqLTXNOOre/kwg==}
+ '@turf/polygon-tangents@7.3.1':
+ resolution: {integrity: sha512-XPLeCLQAcU2xco+3kS5Mp4AKmCKjOGzyZoC6oy8BuvHg1HaaEs0ZRzcmf0x17cq7bruhJ7n/QkcudnAueae5mg==}
- '@turf/jsts@2.7.2':
- resolution: {integrity: sha512-zAezGlwWHPyU0zxwcX2wQY3RkRpwuoBmhhNE9HY9kWhFDkCxZ3aWK5URKwa/SWKJbj9aztO+8vtdiBA28KVJFg==}
+ '@turf/polygon-to-line@7.3.0':
+ resolution: {integrity: sha512-dVU2iK3cXacAaHUpobH1VWhcHhiCvRBblgYlI5Co2+ailbjt8aO76FUWfXzYM9ULobc2Tv1rrfk8Nkd2yqg4bQ==}
- '@turf/kinks@7.2.0':
- resolution: {integrity: sha512-BtxDxGewJR0Q5WR9HKBSxZhirFX+GEH1rD7/EvgDsHS8e1Y5/vNQQUmXdURjdPa4StzaUBsWRU5T3A356gLbPA==}
+ '@turf/polygon-to-line@7.3.1':
+ resolution: {integrity: sha512-qTOFzn7SLQ0TcKBsPFAFYz7iiq34ijqinpjyr9fHQlFHRHeWzUXiWyIn5a2uOHazkdhHCEXNX8JPkt6hjdZ/fQ==}
- '@turf/length@7.2.0':
- resolution: {integrity: sha512-LBmYN+iCgVtWNLsckVnpQIJENqIIPO63mogazMp23lrDGfWXu07zZQ9ZinJVO5xYurXNhc/QI2xxoqt2Xw90Ig==}
+ '@turf/polygonize@7.3.0':
+ resolution: {integrity: sha512-GRY5h1SdTRlpHukzR+WZ5r1SnhwG15BXkRQFwqOWVz84fIGva2DV60S7Nlgn4SfoN1Udfwx506YJ8IDCb0x2LA==}
- '@turf/line-arc@7.2.0':
- resolution: {integrity: sha512-kfWzA5oYrTpslTg5fN50G04zSypiYQzjZv3FLjbZkk6kta5fo4JkERKjTeA8x4XNojb+pfmjMBB0yIh2w2dDRw==}
+ '@turf/polygonize@7.3.1':
+ resolution: {integrity: sha512-BSamH4eDSbREtye/RZiIyt488KI/hO3+2FiDB8JUoHNESe3VNWk4KEy+sL6oqfhOZcRWndHtJ6MOi3HFptyJrw==}
- '@turf/line-chunk@7.2.0':
- resolution: {integrity: sha512-1ODyL5gETtWSL85MPI0lgp/78vl95M39gpeBxePXyDIqx8geDP9kXfAzctuKdxBoR4JmOVM3NT7Fz7h+IEkC+g==}
+ '@turf/projection@7.3.0':
+ resolution: {integrity: sha512-Dd0E77RnhyBdL5jvZP/FvXsKKnxXrDuHKr2iFBsNTc4OwonUrmvC/UVSMhRxHl7GI4S0shi0VI/NQ5dsAleMKg==}
- '@turf/line-intersect@7.2.0':
- resolution: {integrity: sha512-GhCJVEkc8EmggNi85EuVLoXF5T5jNVxmhIetwppiVyJzMrwkYAkZSYB3IBFYGUUB9qiNFnTwungVSsBV/S8ZiA==}
+ '@turf/projection@7.3.1':
+ resolution: {integrity: sha512-nDM3LG2j37B1tCpF4xL4rUBrQJcG585IRyDIxL2QEvP1LLv6dcm4fodw70HcGAj05Ux8bJr7IOXQXnobOJrlRA==}
- '@turf/line-offset@7.2.0':
- resolution: {integrity: sha512-1+OkYueDCbnEWzbfBh3taVr+3SyM2bal5jfnSEuDiLA6jnlScgr8tn3INo+zwrUkPFZPPAejL1swVyO5TjUahw==}
+ '@turf/quadrat-analysis@7.3.0':
+ resolution: {integrity: sha512-P3xUXgFLPL5WgzZ+4Ent6uuGM2Gee3NXkhBWz9OH4eersDN5NuqOEErQ8sZGLWGKTleS/pyNfIea9KXKgKi11A==}
- '@turf/line-overlap@7.2.0':
- resolution: {integrity: sha512-NNn7/jg53+N10q2Kyt66bEDqN3101iW/1zA5FW7J6UbKApDFkByh+18YZq1of71kS6oUYplP86WkDp16LFpqqw==}
+ '@turf/quadrat-analysis@7.3.1':
+ resolution: {integrity: sha512-Kwqtih5CnijULGoTobS0pXdzh/Yr3iGatJcKks4IaxA4+hlJ6Z+Mj47QfKvUtl/IP3lZpVzezewJ51Y989YtVg==}
- '@turf/line-segment@7.2.0':
- resolution: {integrity: sha512-E162rmTF9XjVN4rINJCd15AdQGCBlNqeWN3V0YI1vOUpZFNT2ii4SqEMCcH2d+5EheHLL8BWVwZoOsvHZbvaWA==}
+ '@turf/random@7.3.0':
+ resolution: {integrity: sha512-44qM8wxLy65nYNtP28+TJ5y4SK3kVPvi9Q1u25abqoJcuAf0EJBLXH3o1AHGz+GLv//h1/jbS4tzsB7wKBWM3g==}
- '@turf/line-slice-along@7.2.0':
- resolution: {integrity: sha512-4/gPgP0j5Rp+1prbhXqn7kIH/uZTmSgiubUnn67F8nb9zE+MhbRglhSlRYEZxAVkB7VrGwjyolCwvrROhjHp2A==}
+ '@turf/random@7.3.1':
+ resolution: {integrity: sha512-Iruica0gfdAuuqWG3SLe1MQOEP4IOGelPp81Cu552AamhHJmkEZCaiis2n28qdOlAbDs1NJZeJhRFNkiopiy+Q==}
- '@turf/line-slice@7.2.0':
- resolution: {integrity: sha512-bHotzZIaU1GPV3RMwttYpDrmcvb3X2i1g/WUttPZWtKrEo2VVAkoYdeZ2aFwtogERYS4quFdJ/TDzAtquBC8WQ==}
+ '@turf/rectangle-grid@7.3.0':
+ resolution: {integrity: sha512-K7BykOs1LJcJhuXNL3I7HcAd6YCq8POqlb9S2Zzd2tjbZtml2x5u8/PgxK6QXHbOaUD8GFmZornTymtvKPMepg==}
- '@turf/line-split@7.2.0':
- resolution: {integrity: sha512-yJTZR+c8CwoKqdW/aIs+iLbuFwAa3Yan+EOADFQuXXIUGps3bJUXx/38rmowNoZbHyP1np1+OtrotyHu5uBsfQ==}
+ '@turf/rectangle-grid@7.3.1':
+ resolution: {integrity: sha512-3/fwd1dzeGApxGXAzyVINFylmn8trYTPLG6jtqOgriAdiHPMTtPqSW58wpScC43oKbK3Bps9dSZ43jvcbrfGxw==}
- '@turf/line-to-polygon@7.2.0':
- resolution: {integrity: sha512-iKpJqc7EYc5NvlD4KaqrKKO6mXR7YWO/YwtW60E2FnsF/blnsy9OfAOcilYHgH3S/V/TT0VedC7DW7Kgjy2EIA==}
+ '@turf/rewind@5.1.5':
+ resolution: {integrity: sha512-Gdem7JXNu+G4hMllQHXRFRihJl3+pNl7qY+l4qhQFxq+hiU1cQoVFnyoleIqWKIrdK/i2YubaSwc3SCM7N5mMw==}
- '@turf/mask@7.2.0':
- resolution: {integrity: sha512-ulJ6dQqXC0wrjIoqFViXuMUdIPX5Q6GPViZ3kGfeVijvlLM7kTFBsZiPQwALSr5nTQg4Ppf3FD0Jmg8IErPrgA==}
+ '@turf/rewind@7.3.0':
+ resolution: {integrity: sha512-T1lhSAeYl5I0DWPSHCftZlVdQEyPll6EaFw9p8ydbTsJ2vLc6UkD7ZLbHJQxlh8IvIR6A1YYjzbnl2YQ1Vu5+w==}
- '@turf/meta@7.2.0':
- resolution: {integrity: sha512-igzTdHsQc8TV1RhPuOLVo74Px/hyPrVgVOTgjWQZzt3J9BVseCdpfY/0cJBdlSRI4S/yTmmHl7gAqjhpYH5Yaw==}
+ '@turf/rewind@7.3.1':
+ resolution: {integrity: sha512-gD2TGPNq3SE6IlpDwkVHQthZ2U2MElh6X4Vfld3K7VsBHJv4eBct6OOgSWZLkVVPHuWNlVFTNtcRh2LAznMtgw==}
- '@turf/midpoint@7.2.0':
- resolution: {integrity: sha512-AMn5S9aSrbXdE+Q4Rj+T5nLdpfpn+mfzqIaEKkYI021HC0vb22HyhQHsQbSeX+AWcS4CjD1hFsYVcgKI+5qCfw==}
+ '@turf/rhumb-bearing@7.3.0':
+ resolution: {integrity: sha512-xrHGmEEjTHkWh3b68569ESxe+4F2Y0cLDe3Qf7S2ZNm9TTGQ4bgUfpsOTq0snTo00Ss/H+hGBZA5nJe2+il3GA==}
- '@turf/moran-index@7.2.0':
- resolution: {integrity: sha512-Aexh1EmXVPJhApr9grrd120vbalIthcIsQ3OAN2Tqwf+eExHXArJEJqGBo9IZiQbIpFJeftt/OvUvlI8BeO1bA==}
+ '@turf/rhumb-bearing@7.3.1':
+ resolution: {integrity: sha512-GA/EUSOMapLp6qK5kOX+PkFg2MMUHzUSm/jVezv6Fted0dAlCgXHOrKgLm0tN8PqbH7Oj9xQhv9+3/1ze7W8YA==}
- '@turf/nearest-neighbor-analysis@7.2.0':
- resolution: {integrity: sha512-LmP/crXb7gilgsL0wL9hsygqc537W/a1W5r9XBKJT4SKdqjoXX5APJatJfd3nwXbRIqwDH0cDA9/YyFjBPlKnA==}
+ '@turf/rhumb-destination@7.3.0':
+ resolution: {integrity: sha512-Xt/JXB0JtXvTUq9kP+s3HJhsTrJCTVnl5hmNMUV7HvUxEnMcImFfFHc8GCBjXEMx8dqEK0OtRLZTqHl558v8Qg==}
- '@turf/nearest-point-on-line@7.2.0':
- resolution: {integrity: sha512-UOhAeoDPVewBQV+PWg1YTMQcYpJsIqfW5+EuZ5vJl60XwUa0+kqB/eVfSLNXmHENjKKIlEt9Oy9HIDF4VeWmXA==}
+ '@turf/rhumb-destination@7.3.1':
+ resolution: {integrity: sha512-HjtAFr5DTISUn9b4oaZpX79tYl72r4EyAj40HKwjQeV6KkwIe5/h4zryOSEpnvAK2Gnkmu1GxYeTGfM5z3J9JA==}
- '@turf/nearest-point-to-line@7.2.0':
- resolution: {integrity: sha512-EorU7Qj30A7nAjh++KF/eTPDlzwuuV4neBz7tmSTB21HKuXZAR0upJsx6M2X1CSyGEgNsbFB0ivNKIvymRTKBw==}
+ '@turf/rhumb-distance@7.3.0':
+ resolution: {integrity: sha512-j4WPrgvKOw1AwhD4os1k7Mtv3F58QRHlLLLm+WBnMeu8AaXyJPwwxy2SfhB4tm6uEZCErR9daRGZNOn2RV6PfQ==}
- '@turf/nearest-point@7.2.0':
- resolution: {integrity: sha512-0wmsqXZ8CGw4QKeZmS+NdjYTqCMC+HXZvM3XAQIU6k6laNLqjad2oS4nDrtcRs/nWDvcj1CR+Io7OiQ6sbpn5Q==}
+ '@turf/rhumb-distance@7.3.1':
+ resolution: {integrity: sha512-9ZvXU0ii2aywdphLhiawl3uxMEHucMmXCBiRj3WhmssTY9CZkFii9iImbJEqz5glxh6/gzXDcz1CCFQUdNP2xA==}
- '@turf/planepoint@7.2.0':
- resolution: {integrity: sha512-8Vno01tvi5gThUEKBQ46CmlEKDAwVpkl7stOPFvJYlA1oywjAL4PsmgwjXgleZuFtXQUPBNgv5a42Pf438XP4g==}
+ '@turf/sample@7.3.0':
+ resolution: {integrity: sha512-O/mVGWE+3SFLl8qtwu9ca183Qn2Fe8hHGjfQSCTBGSYk41mkwgmcKCp1aHI9GBh6MrKaZrHtPH8BgcTEztl85Q==}
- '@turf/point-grid@7.2.0':
- resolution: {integrity: sha512-ai7lwBV2FREPW3XiUNohT4opC1hd6+F56qZe20xYhCTkTD9diWjXHiNudQPSmVAUjgMzQGasblQQqvOdL+bJ3Q==}
+ '@turf/sample@7.3.1':
+ resolution: {integrity: sha512-s9IkXrrtaHRllgk9X2tmg8+SJKLG6orQwf0p1wZX8WxnHXvmnHaju465A3nmtGGVDI/RSD8KwU9aqPcc4AinNw==}
- '@turf/point-on-feature@7.2.0':
- resolution: {integrity: sha512-ksoYoLO9WtJ/qI8VI9ltF+2ZjLWrAjZNsCsu8F7nyGeCh4I8opjf4qVLytFG44XA2qI5yc6iXDpyv0sshvP82Q==}
+ '@turf/sector@7.3.0':
+ resolution: {integrity: sha512-Kah3Vffri+wzbx8oc6QCp1wZyzPIWkUaUtMfdWXVB7VW3yIduD6AGQPWWsAnlRtNrJFAZtzRzJ15dHmZnWAP/A==}
- '@turf/point-to-line-distance@7.2.0':
- resolution: {integrity: sha512-fB9Rdnb5w5+t76Gho2dYDkGe20eRrFk8CXi4v1+l1PC8YyLXO+x+l3TrtT8HzL/dVaZeepO6WUIsIw3ditTOPg==}
+ '@turf/sector@7.3.1':
+ resolution: {integrity: sha512-3BYJk7pQaqVr1Ji1ors6FUnhCJVHuobNf4bYW2yAUW1rxL+snuo6aTCsu39hpkwLj4BBknYt5w4MIOy5b8+QKg==}
- '@turf/point-to-polygon-distance@7.2.0':
- resolution: {integrity: sha512-w+WYuINgTiFjoZemQwOaQSje/8Kq+uqJOynvx7+gleQPHyWQ3VtTodtV4LwzVzXz8Sf7Mngx1Jcp2SNai5CJYA==}
+ '@turf/shortest-path@7.3.0':
+ resolution: {integrity: sha512-UDwuSrX8YVgQf/uDLyg4TrxnMR4vEuptqJ/eDN8AEdTQH/RVqPIeVrP00stsLMJyTsyYsUie2FRa25vCcFtZ9g==}
- '@turf/points-within-polygon@7.2.0':
- resolution: {integrity: sha512-jRKp8/mWNMzA+hKlQhxci97H5nOio9tp14R2SzpvkOt+cswxl+NqTEi1hDd2XetA7tjU0TSoNjEgVY8FfA0S6w==}
+ '@turf/shortest-path@7.3.1':
+ resolution: {integrity: sha512-B0j6MoTSeGw1inRJPfj+6lU4WVXBNFAafqs/BkccScnCHLLK+vMnsOkyQoDX2vdZnhPTEaGj7TEL1SIjV6IMgA==}
- '@turf/polygon-smooth@7.2.0':
- resolution: {integrity: sha512-KCp9wF2IEynvGXVhySR8oQ2razKP0zwg99K+fuClP21pSKCFjAPaihPEYq6e8uI/1J7ibjL5++6EMl+LrUTrLg==}
+ '@turf/simplify@7.3.0':
+ resolution: {integrity: sha512-5akWNR7CZQOCwpKUV7qlQGoi9e1tVUA76kCePUQ+dOuTx8lodXKBfjrDiBX/qNzzbSO7gcJHiwI7IwkZfO4zIg==}
- '@turf/polygon-tangents@7.2.0':
- resolution: {integrity: sha512-AHUUPmOjiQDrtP/ODXukHBlUG0C/9I1je7zz50OTfl2ZDOdEqFJQC3RyNELwq07grTXZvg5TS5wYx/Y7nsm47g==}
+ '@turf/simplify@7.3.1':
+ resolution: {integrity: sha512-8LRITQAyNAdvVInjm8pal3J7ZAZZBYrYd5oApXqHlIFK7gEiE21Hx9CZyog6AHDjxZCinwnEoGkzDxORh/mNMg==}
- '@turf/polygon-to-line@7.2.0':
- resolution: {integrity: sha512-9jeTN3LiJ933I5sd4K0kwkcivOYXXm1emk0dHorwXeSFSHF+nlYesEW3Hd889wb9lZd7/SVLMUeX/h39mX+vCA==}
+ '@turf/square-grid@7.3.0':
+ resolution: {integrity: sha512-+01bCjQto9rqY7yA56+6Od4+uGrEdPP0sg4V899Fj191yhgzumFljdBneiD6shAo+Ly2wiqUn+UY7TYNS9tKsw==}
- '@turf/polygonize@7.2.0':
- resolution: {integrity: sha512-U9v+lBhUPDv+nsg/VcScdiqCB59afO6CHDGrwIl2+5i6Ve+/KQKjpTV/R+NqoC1iMXAEq3brY6HY8Ukp/pUWng==}
+ '@turf/square-grid@7.3.1':
+ resolution: {integrity: sha512-WYCX8+nrqHyAhKBSBHFp1eU1gWrcojz9uVvhCbDO8NO14SLHowzWOgB61Gv8KlLXCUBjDr+rYWCt3ymyPzU5TA==}
- '@turf/projection@7.2.0':
- resolution: {integrity: sha512-/qke5vJScv8Mu7a+fU3RSChBRijE6EVuFHU3RYihMuYm04Vw8dBMIs0enEpoq0ke/IjSbleIrGQNZIMRX9EwZQ==}
+ '@turf/square@7.3.0':
+ resolution: {integrity: sha512-RN8U3TMT/gZpccB+SOwtOEJZGfMHbH3J8kgg/hiXo5xya9oewLdFEdKmqjRy+IgmXf5pMxGN0/PEz7XQvP7m5g==}
- '@turf/quadrat-analysis@7.2.0':
- resolution: {integrity: sha512-fDQh3+ldYNxUqS6QYlvJ7GZLlCeDZR6tD3ikdYtOsSemwW1n/4gm2xcgWJqy3Y0uszBwxc13IGGY7NGEjHA+0w==}
+ '@turf/square@7.3.1':
+ resolution: {integrity: sha512-LvMkII6bbHaFHp67jI029xHjWFK3pnqwF8c2pUNU+0dL+45KgrO2jaFTnNQdsjexPymI+uaNLlG809Y0aGGQlw==}
- '@turf/random@7.2.0':
- resolution: {integrity: sha512-fNXs5mOeXsrirliw84S8UCNkpm4RMNbefPNsuCTfZEXhcr1MuHMzq4JWKb4FweMdN1Yx2l/xcytkO0s71cJ50w==}
+ '@turf/standard-deviational-ellipse@7.3.0':
+ resolution: {integrity: sha512-ZQRo2uEQUQGFcL4GNXp7vCjPorW7/9B44s2/azYsk8qrlirj8FBUAMXkCr5EioTWJ9CHbcwGyyXoIHgvfG1fBQ==}
- '@turf/rectangle-grid@7.2.0':
- resolution: {integrity: sha512-f0o5ifvy0Ml/nHDJzMNcuSk4h11aa3BfvQNnYQhLpuTQu03j/ICZNlzKTLxwjcUqvxADUifty7Z9CX5W6zky4A==}
+ '@turf/standard-deviational-ellipse@7.3.1':
+ resolution: {integrity: sha512-u9ojpWyv3rnFioYZyya6VXVDrRPYymNROVKwGqnQzffYE1MdxhJ6ik/CvdcChzCNvSNVBJQUvnjjPq2C2uOsLA==}
- '@turf/rewind@7.2.0':
- resolution: {integrity: sha512-SZpRAZiZsE22+HVz6pEID+ST25vOdpAMGk5NO1JeqzhpMALIkIGnkG+xnun2CfYHz7wv8/Z0ADiAvei9rkcQYA==}
+ '@turf/tag@7.3.0':
+ resolution: {integrity: sha512-IVPr4UR2VmHtOlrE8TKLfVmeT77A8ca2Mkdag+zoVTecHCPcb+M7X98VtaVjW8ZXZhX0rwn8Jc5PtsSxthvwtA==}
- '@turf/rhumb-bearing@7.2.0':
- resolution: {integrity: sha512-jbdexlrR8X2ZauUciHx3tRwG+BXoMXke4B8p8/IgDlAfIrVdzAxSQN89FMzIKnjJ/kdLjo9bFGvb92bu31Etug==}
+ '@turf/tag@7.3.1':
+ resolution: {integrity: sha512-Y7G2EWm0/j78ss5wCnjGWKfmPbXw9yKJFg93EuMnwggIsDfKdQi/vdUInjQ0462RIQA87StlydPG09X/8bquwQ==}
- '@turf/rhumb-destination@7.2.0':
- resolution: {integrity: sha512-U9OLgLAHlH4Wfx3fBZf3jvnkDjdTcfRan5eI7VPV1+fQWkOteATpzkiRjCvSYK575GljVwWBjkKca8LziGWitQ==}
+ '@turf/tesselate@7.3.0':
+ resolution: {integrity: sha512-f3FInc/+BGsStCcVXwKXugnBB4j9jgse6mI9mB0YHqdap4Q23DYVo15HdSMFgSUGaffDDv7y4yMdU/9Uxuk9aw==}
- '@turf/rhumb-distance@7.2.0':
- resolution: {integrity: sha512-NsijTPON1yOc9tirRPEQQuJ5aQi7pREsqchQquaYKbHNWsexZjcDi4wnw2kM3Si4XjmgynT+2f7aXH7FHarHzw==}
+ '@turf/tesselate@7.3.1':
+ resolution: {integrity: sha512-iJnatp9RcJvyffBjqJaw5GbKE/PQosT8DH2kgG7pv4Re0xl3h/QvCjvTlCTEmJ5cNY4geZVKUXDvkkCkgQQVuA==}
- '@turf/sample@7.2.0':
- resolution: {integrity: sha512-f+ZbcbQJ9glQ/F26re8LadxO0ORafy298EJZe6XtbctRTJrNus6UNAsl8+GYXFqMnXM22tbTAznnJX3ZiWNorA==}
+ '@turf/tin@7.3.0':
+ resolution: {integrity: sha512-JomnJsyEYvZ5OX5sUNNss4hZVQisnPXzdz77hUjOYU42NE7krF+0WQEgQVHhG520AHWO6Ihd+LA8bzD8r20Ksg==}
- '@turf/sector@7.2.0':
- resolution: {integrity: sha512-zL06MjbbMG4DdpiNz+Q9Ax8jsCekt3R76uxeWShulAGkyDB5smdBOUDoRwxn05UX7l4kKv4Ucq2imQXhxKFd1w==}
+ '@turf/tin@7.3.1':
+ resolution: {integrity: sha512-pDtHE8rLXvV4zAC9mWmwToDDda2ZTty8IZqZIoUqTnlf6AJjzF7TJrhoE3a+zukRTUI1wowTFqe2NvwgNX0yew==}
- '@turf/shortest-path@7.2.0':
- resolution: {integrity: sha512-6fpx8feZ2jMSaeRaFdqFShGWkNb+veUOeyLFSHA/aRD9n/e9F2pWZoRbQWKbKTpcKFJ2FnDEqCZnh/GrcAsqWA==}
+ '@turf/transform-rotate@7.3.0':
+ resolution: {integrity: sha512-DAllZaae7LJ5KPYaCNztEwKcu+7PudHuAFcvNTxl3gIaVqvtOe2PuCH0Tdp95Zkvw8BOXxJzwEMMP0qCR22gkQ==}
- '@turf/simplify@7.2.0':
- resolution: {integrity: sha512-9YHIfSc8BXQfi5IvEMbCeQYqNch0UawIGwbboJaoV8rodhtk6kKV2wrpXdGqk/6Thg6/RWvChJFKVVTjVrULyQ==}
+ '@turf/transform-rotate@7.3.1':
+ resolution: {integrity: sha512-KAYebOkk7IT2j7S8M+ZxDAmyqeni9ZZGU9ouD6mvd/hTpDOlGG+ORRmg312RxG0NiThzCHLyeG1Nea1nEud6bg==}
- '@turf/square-grid@7.2.0':
- resolution: {integrity: sha512-EmzGXa90hz+tiCOs9wX+Lak6pH0Vghb7QuX6KZej+pmWi3Yz7vdvQLmy/wuN048+wSkD5c8WUo/kTeNDe7GnmA==}
+ '@turf/transform-scale@7.3.0':
+ resolution: {integrity: sha512-FouKS0QMhYXTzH6nSX4XoMejhR9VrRHrsRF2XjPkVNB/TiyRjufr0S3WT4wINlXWMg97me9M5O5MOM9YBo0T3A==}
- '@turf/square@7.2.0':
- resolution: {integrity: sha512-9pMoAGFvqzCDOlO9IRSSBCGXKbl8EwMx6xRRBMKdZgpS0mZgfm9xiptMmx/t1m4qqHIlb/N+3MUF7iMBx6upcA==}
+ '@turf/transform-scale@7.3.1':
+ resolution: {integrity: sha512-e8jBSWEn0BMxG0HR8ZMvkHgBgdwNrFRzbhy8DqQwZDgUN59fMeWGbjX5QR5Exl2gZBPaBXkgbDgEhh/JD3kYhw==}
- '@turf/standard-deviational-ellipse@7.2.0':
- resolution: {integrity: sha512-+uC0pR2nRjm90JvMXe/2xOCZsYV2II1ZZ2zmWcBWv6bcFXBspcxk2QfCC3k0bj6jDapELzoQgnn3cG5lbdQV2w==}
+ '@turf/transform-translate@7.3.0':
+ resolution: {integrity: sha512-qm+2zrQsqhoOK2sT3NnkPkJoEYgr1/+6bPkgHxe/uCAlqyXFR1oqoiTmvDfmqxrspUbgP09d1XLgJP1A5A2L3w==}
- '@turf/tag@7.2.0':
- resolution: {integrity: sha512-TAFvsbp5TCBqXue8ui+CtcLsPZ6NPC88L8Ad6Hb/R6VAi21qe0U42WJHQYXzWmtThoTNwxi+oKSeFbRDsr0FIA==}
+ '@turf/transform-translate@7.3.1':
+ resolution: {integrity: sha512-yeaW1EqfuuY4l5VBWSsItglaZ9qdTFD0QEIUW1ooOYuQvtKQ2MTKrcQIKLXZckxQrrNq4TXsZDaBbFs+U1wtcQ==}
- '@turf/tesselate@7.2.0':
- resolution: {integrity: sha512-zHGcG85aOJJu1seCm+CYTJ3UempX4Xtyt669vFG6Hbr/Hc7ii6STQ2ysFr7lJwFtU9uyYhphVrrgwIqwglvI/Q==}
+ '@turf/triangle-grid@7.3.0':
+ resolution: {integrity: sha512-Fv0Zjm4gl6YhStTsMn42bYj7Y7W0SG2oa7kQgKj5pD+iXpHkuy67F8WjxfZ8Ei4EMDBHZFgInNLLW7KDxo7BSg==}
- '@turf/tin@7.2.0':
- resolution: {integrity: sha512-y24Vt3oeE6ZXvyLJamP0Ke02rPlDGE9gF7OFADnR0mT+2uectb0UTIBC3kKzON80TEAlA3GXpKFkCW5Fo/O/Kg==}
+ '@turf/triangle-grid@7.3.1':
+ resolution: {integrity: sha512-lhZyqnQC/M8x8DgQURHNZP/HaJIqrL5We5ZvzJBX+lrH2u4DO831awJcuDniRuJ5e0QE5n4yMsBJO77KMNdKfw==}
- '@turf/transform-rotate@7.2.0':
- resolution: {integrity: sha512-EMCj0Zqy3cF9d3mGRqDlYnX2ZBXe3LgT+piDR0EuF5c5sjuKErcFcaBIsn/lg1gp4xCNZFinkZ3dsFfgGHf6fw==}
+ '@turf/truncate@7.3.0':
+ resolution: {integrity: sha512-Y0Xzl74CgZEeWydQn3+5p3Vd3HWP1w8+IWi/cYO6OeXyda/EeegUTvqzosfr29YV1nSNLQ5Q8/xYlxzjZ6P7pw==}
- '@turf/transform-scale@7.2.0':
- resolution: {integrity: sha512-HYB+pw938eeI8s1/zSWFy6hq+t38fuUaBb0jJsZB1K9zQ1WjEYpPvKF/0//80zNPlyxLv3cOkeBucso3hzI07A==}
+ '@turf/truncate@7.3.1':
+ resolution: {integrity: sha512-rcXHM2m17hyKoW1dJpOvTgUUWFOKluTKKsoLmhEE6aRAYwtuVetkcInt4qBtS1bv7MaL//glbvq0kdEGR0YaOA==}
- '@turf/transform-translate@7.2.0':
- resolution: {integrity: sha512-zAglR8MKCqkzDTjGMIQgbg/f+Q3XcKVzr9cELw5l9CrS1a0VTSDtBZLDm0kWx0ankwtam7ZmI2jXyuQWT8Gbug==}
+ '@turf/turf@7.3.0':
+ resolution: {integrity: sha512-jMeUUq+r67K0V/ZucwiUfvZ3rE+bgnXbtkHux12pxMgoYRdFA5kouBj+Ja7irgC7HIsYDTZaoIuoLaQdUM8Qqg==}
- '@turf/triangle-grid@7.2.0':
- resolution: {integrity: sha512-4gcAqWKh9hg6PC5nNSb9VWyLgl821cwf9yR9yEzQhEFfwYL/pZONBWCO1cwVF23vSYMSMm+/TwqxH4emxaArfw==}
+ '@turf/turf@7.3.1':
+ resolution: {integrity: sha512-0uKkNnM6Bo6cIzZcJ6wQ+FjFioTFXWS3woGDvQ5R7EPehNfdr4HTS39m1seE+HdI8lGItMZehb6fb0jtjP4Clg==}
- '@turf/truncate@7.2.0':
- resolution: {integrity: sha512-jyFzxYbPugK4XjV5V/k6Xr3taBjjvo210IbPHJXw0Zh7Y6sF+hGxeRVtSuZ9VP/6oRyqAOHKUrze+OOkPqBgUg==}
+ '@turf/union@7.3.0':
+ resolution: {integrity: sha512-W6A4R/FR6HuffmlFFE+3/zYQYzJsCccmVRQRDGBlWj+zy8Qdrraz+gGs213JzKgdWlJ7FT3SPAYAMUit1TuWIw==}
- '@turf/turf@7.2.0':
- resolution: {integrity: sha512-G1kKBu4hYgoNoRJgnpJohNuS7bLnoWHZ2G/4wUMym5xOSiYah6carzdTEsMoTsauyi7ilByWHx5UHwbjjCVcBw==}
+ '@turf/union@7.3.1':
+ resolution: {integrity: sha512-Fk8HvP2gRrRJz8xefeoFJJUeLwhih3HoPPKlqaDf/6L43jwAzBD6BPu59+AwRXOlaZeOUMNMGzgSgx0KKrBwBg==}
- '@turf/union@7.2.0':
- resolution: {integrity: sha512-Xex/cfKSmH0RZRWSJl4RLlhSmEALVewywiEXcu0aIxNbuZGTcpNoI0h4oLFrE/fUd0iBGFg/EGLXRL3zTfpg6g==}
+ '@turf/unkink-polygon@7.3.0':
+ resolution: {integrity: sha512-B0VLWtsBIoSzTxpJNbZgAR3J4QNk4LgehRNDv3+Dr4p9pJ7Z1Vz32tQtdXB3nvQOFteYrRIaZNJwZekJUCCiUA==}
- '@turf/unkink-polygon@7.2.0':
- resolution: {integrity: sha512-dFPfzlIgkEr15z6oXVxTSWshWi51HeITGVFtl1GAKGMtiXJx1uMqnfRsvljqEjaQu/4AzG1QAp3b+EkSklQSiQ==}
+ '@turf/unkink-polygon@7.3.1':
+ resolution: {integrity: sha512-6NVFkCpJUT2P4Yf3z/FI2uGDXqVdEqZqKGl2hYitmH7mNiKhU4bAvvcw7nCSfNG3sUyNhibbtOEopYMRgwimPw==}
- '@turf/voronoi@7.2.0':
- resolution: {integrity: sha512-3K6N0LtJsWTXxPb/5N2qD9e8f4q8+tjTbGV3lE3v8x06iCnNlnuJnqM5NZNPpvgvCatecBkhClO3/3RndE61Fw==}
+ '@turf/voronoi@7.3.0':
+ resolution: {integrity: sha512-wJ6eCTeuj8aKX8e/kTOcgcIMPv7llcYXQ02woQz/3dG/g0gAVSqnHILHAwXiObL5fq7IUwwTCc2k+88dzQgsWQ==}
+
+ '@turf/voronoi@7.3.1':
+ resolution: {integrity: sha512-yS+0EDwSIOizEXI+05qixw/OGZalpfsz9xzBWbCBA3Gu2boLMXErFZ73qzfu39Vwk+ILbu5em0p+VhULBzvH9w==}
'@tweenjs/tween.js@23.1.3':
resolution: {integrity: sha512-vJmvvwFxYuGnF2axRtPYocag6Clbb5YS7kLL+SO/TeVFzHqDIWrNKYtcsPMibjDx9O+bu+psAy9NKfWklassUA==}
- '@tybys/wasm-util@0.10.0':
- resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==}
+ '@tybys/wasm-util@0.10.1':
+ resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
'@tybys/wasm-util@0.9.0':
resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
@@ -4356,8 +5120,11 @@ packages:
'@types/bonjour@3.5.13':
resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
- '@types/chai@5.2.2':
- resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==}
+ '@types/brotli@1.3.4':
+ resolution: {integrity: sha512-cKYjgaS2DMdCKF7R0F5cgx1nfBYObN2ihIuPGQ4/dlIY6RpV7OWNwe9L8V4tTVKL2eZqOkNM9FM/rgTvLf4oXw==}
+
+ '@types/chai@5.2.3':
+ resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
'@types/cheerio@0.22.35':
resolution: {integrity: sha512-yD57BchKRvTV+JD53UZ6PD8KWY5g5rvvMLRnZR3EQBCZXiDT/HR+pKpMzFGlWNhFrXlo7VPZXtKvIEwZkAWOIA==}
@@ -4368,8 +5135,11 @@ packages:
'@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
- '@types/d3-array@3.2.1':
- resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
+ '@types/crypto-js@4.2.2':
+ resolution: {integrity: sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==}
+
+ '@types/d3-array@3.2.2':
+ resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
'@types/d3-axis@3.0.6':
resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==}
@@ -4470,11 +5240,14 @@ packages:
'@types/doctrine@0.0.9':
resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
+ '@types/draco3d@1.4.10':
+ resolution: {integrity: sha512-AX22jp8Y7wwaBgAixaSvkoG4M/+PlAcm3Qs4OW8yT9DM4xUpWKeFhLueTAyZF39pviAdcDdeJoACapiAceqNcw==}
+
'@types/elasticlunr@0.9.9':
resolution: {integrity: sha512-59TMY+u8jKLqSg0AZStCz4n8A7l/nVenmum6fFQa9bUOH26GNMEgDseiN813IxXmTQ0AivefnMlbileBggCf5g==}
- '@types/emscripten@1.41.1':
- resolution: {integrity: sha512-vW2aEgBUU1c2CB+qVMislA98amRVPszdALjqNCuUIJaEFZsNaFaM4g5IMXIs+6oHbmmb7q6zeXYubhtObJ9ZLg==}
+ '@types/emscripten@1.41.5':
+ resolution: {integrity: sha512-cMQm7pxu6BxtHyqJ7mQZ2kXWV5SLmugybFdHCBbJ5eHzOo6VhBckEgAT3//rP5FwPHNPeEiq4SmQ5ucBwsOo4Q==}
'@types/enzyme@3.10.19':
resolution: {integrity: sha512-kIfCo6/DdpgCHgmrLgPTugjzbZ46BUK8S2IP0kYo8+62LD2l1k8mSVsc+zQYNTdjDRoh2E9Spxu6F1NnEiW38Q==}
@@ -4492,11 +5265,11 @@ packages:
resolution: {integrity: sha512-5ev4tL5eBuX9wyC/SFHku1Sizyerg457LiwMgde3sq61TMHbnKjikzwsBLxLpFMflvKuWXfWVW0w3hZg4qml9w==}
deprecated: This is a stub types definition. expect provides its own type definitions, so you do not need this installed.
- '@types/express-serve-static-core@4.19.6':
- resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
+ '@types/express-serve-static-core@4.19.7':
+ resolution: {integrity: sha512-FvPtiIf1LfhzsaIXhv/PHan/2FeQBbtBDtfX2QfvPxdUelMDEckK08SM6nqo1MIZY3RUlfA+HV8+hFUSio78qg==}
- '@types/express@4.17.23':
- resolution: {integrity: sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ==}
+ '@types/express@4.17.25':
+ resolution: {integrity: sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw==}
'@types/geojson-vt@3.2.5':
resolution: {integrity: sha512-qDO7wqtprzlpe8FfQ//ClPV9xiuoh2nkIgiouIptON9w5jvD/fA4szvP9GBlDVdJ5dldAl0kX/sy3URbWwLx0g==}
@@ -4516,8 +5289,8 @@ packages:
'@types/http-errors@2.0.5':
resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
- '@types/http-proxy@1.17.16':
- resolution: {integrity: sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==}
+ '@types/http-proxy@1.17.17':
+ resolution: {integrity: sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==}
'@types/istanbul-lib-coverage@2.0.6':
resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
@@ -4571,8 +5344,8 @@ packages:
'@types/node-forge@1.3.14':
resolution: {integrity: sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==}
- '@types/node@24.3.1':
- resolution: {integrity: sha512-3vXmQDXy+woz+gnrTvuvNrPzekOi+Ds0ReMxw0LzBiK3a+1k0kQn9f2NWk+lgD4rJehFUmYy2gMhJ2ZI+7YP9g==}
+ '@types/node@24.10.1':
+ resolution: {integrity: sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -4580,6 +5353,9 @@ packages:
'@types/offscreencanvas@2019.7.3':
resolution: {integrity: sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A==}
+ '@types/pako@1.0.7':
+ resolution: {integrity: sha512-YBtzT2ztNF6R/9+UXj2wTGFnC9NklAnASt3sC0h2m1bbH7G6FyBIkt4AN8ThZpNfxUo1b2iMVO0UawiJymEt8A==}
+
'@types/pako@2.0.4':
resolution: {integrity: sha512-VWDCbrLeVXJM9fihYodcLiIv0ku+AlOa/TQ1SvYOaBuyrSKgEcro95LJyIsJ4vSo6BXIxOKxiJAat04CmST9Fw==}
@@ -4611,25 +5387,25 @@ packages:
peerDependencies:
'@types/react': ^19.0.0
- '@types/react-dom@19.1.9':
- resolution: {integrity: sha512-qXRuZaOsAdXKFyOhRBg6Lqqc0yay13vN7KrIg4L7N4aaHN68ma9OK3NE1BoDFgFOTfM7zg+3/8+2n8rLUH3OKQ==}
+ '@types/react-dom@19.2.3':
+ resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
peerDependencies:
- '@types/react': ^19.0.0
+ '@types/react': ^19.2.0
'@types/react-transition-group@4.4.12':
resolution: {integrity: sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==}
peerDependencies:
'@types/react': '*'
- '@types/react@16.14.66':
- resolution: {integrity: sha512-KPilYP4+25N2ki7vrB4adSR2ucAj95xJcGfKC09bsxcHT+QtB//K7i1FenPnbkLA0Xt9pRi1/RXC1wxFvL9Wtw==}
-
- '@types/react@19.1.12':
- resolution: {integrity: sha512-cMoR+FoAf/Jyq6+Df2/Z41jISvGZZ2eTlnsaJRptmZ76Caldwy1odD4xTr/gNV9VLj0AWgg/nmkevIyUfIIq5w==}
+ '@types/react@16.14.68':
+ resolution: {integrity: sha512-GEe60JEJg7wIvnUzXBX/A++ieyum98WXF/q2oFr1RVar8OK8JxU/uEYBXgv7jF87SoaDdxtAq3KUaJFlu02ziw==}
'@types/react@19.1.8':
resolution: {integrity: sha512-AwAfQ2Wa5bCx9WP8nZL2uMZWod7J7/JSplxbTmBQ5ms6QpqNYm672H0Vu9ZVKVngQ+ii4R/byguVEUZQyeg44g==}
+ '@types/react@19.2.7':
+ resolution: {integrity: sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==}
+
'@types/reactcss@1.2.13':
resolution: {integrity: sha512-gi3S+aUi6kpkF5vdhUsnkwbiSEIU/BEJyD7kBy2SudWBUuKmJk8AQKE0OVcQQeEy40Azh0lV6uynxlikYIJuwg==}
peerDependencies:
@@ -4647,14 +5423,17 @@ packages:
'@types/semver@7.5.8':
resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
- '@types/send@0.17.5':
- resolution: {integrity: sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==}
+ '@types/send@0.17.6':
+ resolution: {integrity: sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og==}
+
+ '@types/send@1.2.1':
+ resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==}
'@types/serve-index@1.9.4':
resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==}
- '@types/serve-static@1.15.8':
- resolution: {integrity: sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg==}
+ '@types/serve-static@1.15.10':
+ resolution: {integrity: sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==}
'@types/sinonjs__fake-timers@8.1.1':
resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==}
@@ -4719,8 +5498,8 @@ packages:
'@types/webpack@4.41.40':
resolution: {integrity: sha512-u6kMFSBM9HcoTpUXnL6mt2HSzftqb3JgYV6oxIgL2dl6sX6aCa5k6SOkzv5DuZjBTPUE/dJltKtwwuqrkZHpfw==}
- '@types/webxr@0.5.23':
- resolution: {integrity: sha512-GPe4AsfOSpqWd3xA/0gwoKod13ChcfV67trvxaW2krUbgb9gxQjnCx8zGshzMl8LSHZlNH5gQ8LNScsDuc7nGQ==}
+ '@types/webxr@0.5.24':
+ resolution: {integrity: sha512-h8fgEd/DpoS9CBrjEQXR+dIDraopAEfu4wYVNY2tEPwk60stPWhvZMf4Foo5FakuQ7HFZoa8WceaWFervK2Ovg==}
'@types/ws@8.18.1':
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
@@ -4731,69 +5510,128 @@ packages:
'@types/yargs@13.0.12':
resolution: {integrity: sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==}
- '@types/yargs@17.0.33':
- resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
+ '@types/yargs@17.0.35':
+ resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
'@types/yauzl@2.10.3':
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
- '@typescript-eslint/eslint-plugin@8.42.0':
- resolution: {integrity: sha512-Aq2dPqsQkxHOLfb2OPv43RnIvfj05nw8v/6n3B2NABIPpHnjQnaLo9QGMTvml+tv4korl/Cjfrb/BYhoL8UUTQ==}
+ '@typescript-eslint/eslint-plugin@8.48.0':
+ resolution: {integrity: sha512-XxXP5tL1txl13YFtrECECQYeZjBZad4fyd3cFV4a19LkAY/bIp9fev3US4S5fDVV2JaYFiKAZ/GRTOLer+mbyQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^8.48.0
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/eslint-plugin@8.49.0':
+ resolution: {integrity: sha512-JXij0vzIaTtCwu6SxTh8qBc66kmf1xs7pI4UOiMDFVct6q86G0Zs7KRcEoJgY3Cav3x5Tq0MF5jwgpgLqgKG3A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.42.0
+ '@typescript-eslint/parser': ^8.49.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/parser@8.42.0':
- resolution: {integrity: sha512-r1XG74QgShUgXph1BYseJ+KZd17bKQib/yF3SR+demvytiRXrwd12Blnz5eYGm8tXaeRdd4x88MlfwldHoudGg==}
+ '@typescript-eslint/parser@8.48.0':
+ resolution: {integrity: sha512-jCzKdm/QK0Kg4V4IK/oMlRZlY+QOcdjv89U2NgKHZk1CYTj82/RVSx1mV/0gqCVMJ/DA+Zf/S4NBWNF8GQ+eqQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/project-service@8.42.0':
- resolution: {integrity: sha512-vfVpLHAhbPjilrabtOSNcUDmBboQNrJUiNAGoImkZKnMjs2TIcWG33s4Ds0wY3/50aZmTMqJa6PiwkwezaAklg==}
+ '@typescript-eslint/parser@8.49.0':
+ resolution: {integrity: sha512-N9lBGA9o9aqb1hVMc9hzySbhKibHmB+N3IpoShyV6HyQYRGIhlrO5rQgttypi+yEeKsKI4idxC8Jw6gXKD4THA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/project-service@8.48.0':
+ resolution: {integrity: sha512-Ne4CTZyRh1BecBf84siv42wv5vQvVmgtk8AuiEffKTUo3DrBaGYZueJSxxBZ8fjk/N3DrgChH4TOdIOwOwiqqw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/project-service@8.49.0':
+ resolution: {integrity: sha512-/wJN0/DKkmRUMXjZUXYZpD1NEQzQAAn9QWfGwo+Ai8gnzqH7tvqS7oNVdTjKqOcPyVIdZdyCMoqN66Ia789e7g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/scope-manager@8.48.0':
+ resolution: {integrity: sha512-uGSSsbrtJrLduti0Q1Q9+BF1/iFKaxGoQwjWOIVNJv0o6omrdyR8ct37m4xIl5Zzpkp69Kkmvom7QFTtue89YQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/scope-manager@8.49.0':
+ resolution: {integrity: sha512-npgS3zi+/30KSOkXNs0LQXtsg9ekZ8OISAOLGWA/ZOEn0ZH74Ginfl7foziV8DT+D98WfQ5Kopwqb/PZOaIJGg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/tsconfig-utils@8.48.0':
+ resolution: {integrity: sha512-WNebjBdFdyu10sR1M4OXTt2OkMd5KWIL+LLfeH9KhgP+jzfDV/LI3eXzwJ1s9+Yc0Kzo2fQCdY/OpdusCMmh6w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/scope-manager@8.42.0':
- resolution: {integrity: sha512-51+x9o78NBAVgQzOPd17DkNTnIzJ8T/O2dmMBLoK9qbY0Gm52XJcdJcCl18ExBMiHo6jPMErUQWUv5RLE51zJw==}
+ '@typescript-eslint/tsconfig-utils@8.49.0':
+ resolution: {integrity: sha512-8prixNi1/6nawsRYxet4YOhnbW+W9FK/bQPxsGB1D3ZrDzbJ5FXw5XmzxZv82X3B+ZccuSxo/X8q9nQ+mFecWA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/tsconfig-utils@8.42.0':
- resolution: {integrity: sha512-kHeFUOdwAJfUmYKjR3CLgZSglGHjbNTi1H8sTYRYV2xX6eNz4RyJ2LIgsDLKf8Yi0/GL1WZAC/DgZBeBft8QAQ==}
+ '@typescript-eslint/type-utils@8.48.0':
+ resolution: {integrity: sha512-zbeVaVqeXhhab6QNEKfK96Xyc7UQuoFWERhEnj3mLVnUWrQnv15cJNseUni7f3g557gm0e46LZ6IJ4NJVOgOpw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/type-utils@8.42.0':
- resolution: {integrity: sha512-9KChw92sbPTYVFw3JLRH1ockhyR3zqqn9lQXol3/YbI6jVxzWoGcT3AsAW0mu1MY0gYtsXnUGV/AKpkAj5tVlQ==}
+ '@typescript-eslint/type-utils@8.49.0':
+ resolution: {integrity: sha512-KTExJfQ+svY8I10P4HdxKzWsvtVnsuCifU5MvXrRwoP2KOlNZ9ADNEWWsQTJgMxLzS5VLQKDjkCT/YzgsnqmZg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/types@8.42.0':
- resolution: {integrity: sha512-LdtAWMiFmbRLNP7JNeY0SqEtJvGMYSzfiWBSmx+VSZ1CH+1zyl8Mmw1TT39OrtsRvIYShjJWzTDMPWZJCpwBlw==}
+ '@typescript-eslint/types@8.48.0':
+ resolution: {integrity: sha512-cQMcGQQH7kwKoVswD1xdOytxQR60MWKM1di26xSUtxehaDs/32Zpqsu5WJlXTtTTqyAVK8R7hvsUnIXRS+bjvA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/types@8.49.0':
+ resolution: {integrity: sha512-e9k/fneezorUo6WShlQpMxXh8/8wfyc+biu6tnAqA81oWrEic0k21RHzP9uqqpyBBeBKu4T+Bsjy9/b8u7obXQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/typescript-estree@8.48.0':
+ resolution: {integrity: sha512-ljHab1CSO4rGrQIAyizUS6UGHHCiAYhbfcIZ1zVJr5nMryxlXMVWS3duFPSKvSUbFPwkXMFk1k0EMIjub4sRRQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/typescript-estree@8.49.0':
+ resolution: {integrity: sha512-jrLdRuAbPfPIdYNppHJ/D0wN+wwNfJ32YTAm10eJVsFmrVpXQnDWBn8niCSMlWjvml8jsce5E/O+86IQtTbJWA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/typescript-estree@8.42.0':
- resolution: {integrity: sha512-ku/uYtT4QXY8sl9EDJETD27o3Ewdi72hcXg1ah/kkUgBvAYHLwj2ofswFFNXS+FL5G+AGkxBtvGt8pFBHKlHsQ==}
+ '@typescript-eslint/utils@8.48.0':
+ resolution: {integrity: sha512-yTJO1XuGxCsSfIVt1+1UrLHtue8xz16V8apzPYI06W0HbEbEWHxHXgZaAgavIkoh+GeV6hKKd5jm0sS6OYxWXQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/utils@8.42.0':
- resolution: {integrity: sha512-JnIzu7H3RH5BrKC4NoZqRfmjqCIS1u3hGZltDYJgkVdqAezl4L9d1ZLw+36huCujtSBSAirGINF/S4UxOcR+/g==}
+ '@typescript-eslint/utils@8.49.0':
+ resolution: {integrity: sha512-N3W7rJw7Rw+z1tRsHZbK395TWSYvufBXumYtEGzypgMUthlg0/hmCImeA8hgO2d2G4pd7ftpxxul2J8OdtdaFA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/visitor-keys@8.42.0':
- resolution: {integrity: sha512-3WbiuzoEowaEn8RSnhJBrxSwX8ULYE9CXaPepS2C2W3NSA5NNIvBaslpBSBElPq0UGr0xVJlXFWOAKIkyylydQ==}
+ '@typescript-eslint/visitor-keys@8.48.0':
+ resolution: {integrity: sha512-T0XJMaRPOH3+LBbAfzR2jalckP1MSG/L9eUtY0DEzUyVaXJ/t6zN0nR7co5kz0Jko/nkSYCBRkz1djvjajVTTg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/visitor-keys@8.49.0':
+ resolution: {integrity: sha512-LlKaciDe3GmZFphXIc79THF/YYBugZ7FS1pO581E/edlVVNbZKDy93evqmrfQ9/Y4uN0vVhX4iuchq26mK/iiA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.3.0':
@@ -4900,6 +5738,12 @@ packages:
peerDependencies:
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
+ '@vitejs/plugin-react@5.1.2':
+ resolution: {integrity: sha512-EcA07pHJouywpzsoTUqNh5NwGayl2PPVEJKUSinGGSxFGYn+shYbqMGBg6FXDqgXum9Ou/ecb+411ssw8HImJQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ peerDependencies:
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
+
'@vitest/expect@3.2.4':
resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==}
@@ -4934,20 +5778,20 @@ packages:
'@vitest/utils@3.2.4':
resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==}
- '@volar/language-core@2.4.23':
- resolution: {integrity: sha512-hEEd5ET/oSmBC6pi1j6NaNYRWoAiDhINbT8rmwtINugR39loROSlufGdYMF9TaKGfz+ViGs1Idi3mAhnuPcoGQ==}
+ '@volar/language-core@2.4.26':
+ resolution: {integrity: sha512-hH0SMitMxnB43OZpyF1IFPS9bgb2I3bpCh76m2WEK7BE0A0EzpYsRp0CCH2xNKshr7kacU5TQBLYn4zj7CG60A==}
- '@volar/source-map@2.4.23':
- resolution: {integrity: sha512-Z1Uc8IB57Lm6k7q6KIDu/p+JWtf3xsXJqAX/5r18hYOTpJyBn0KXUR8oTJ4WFYOcDzWC9n3IflGgHowx6U6z9Q==}
+ '@volar/source-map@2.4.26':
+ resolution: {integrity: sha512-JJw0Tt/kSFsIRmgTQF4JSt81AUSI1aEye5Zl65EeZ8H35JHnTvFGmpDOBn5iOxd48fyGE+ZvZBp5FcgAy/1Qhw==}
- '@volar/typescript@2.4.23':
- resolution: {integrity: sha512-lAB5zJghWxVPqfcStmAP1ZqQacMpe90UrP5RJ3arDyrhy4aCUQqmxPPLB2PWDKugvylmO41ljK7vZ+t6INMTag==}
+ '@volar/typescript@2.4.26':
+ resolution: {integrity: sha512-N87ecLD48Sp6zV9zID/5yuS1+5foj0DfuYGdQ6KHj/IbKvyKv1zNX6VCmnKYwtmHadEO6mFc2EKISiu3RDPAvA==}
- '@vue/compiler-core@3.5.21':
- resolution: {integrity: sha512-8i+LZ0vf6ZgII5Z9XmUvrCyEzocvWT+TeR2VBUVlzIH6Tyv57E20mPZ1bCS+tbejgUgmjrEh7q/0F0bibskAmw==}
+ '@vue/compiler-core@3.5.25':
+ resolution: {integrity: sha512-vay5/oQJdsNHmliWoZfHPoVZZRmnSWhug0BYT34njkYTPqClh3DNWLkZNJBVSjsNMrg0CCrBfoKkjZQPM/QVUw==}
- '@vue/compiler-dom@3.5.21':
- resolution: {integrity: sha512-jNtbu/u97wiyEBJlJ9kmdw7tAr5Vy0Aj5CgQmo+6pxWNQhXZDPsRr1UWPN4v3Zf82s2H3kF51IbzZ4jMWAgPlQ==}
+ '@vue/compiler-dom@3.5.25':
+ resolution: {integrity: sha512-4We0OAcMZsKgYoGlMjzYvaoErltdFI2/25wqanuTu+S4gismOTRTBPi4IASOjxWdzIwrYSjnqONfKvuqkXzE2Q==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -4960,8 +5804,8 @@ packages:
typescript:
optional: true
- '@vue/shared@3.5.21':
- resolution: {integrity: sha512-+2k1EQpnYuVuu3N7atWyG3/xoFWIVJZq4Mz8XNOdScFI0etES75fbny/oU4lKWk/577P1zmg0ioYvpGEDZ3DLw==}
+ '@vue/shared@3.5.25':
+ resolution: {integrity: sha512-AbOPdQQnAnzs58H2FrrDxYj/TJfmeS2jdfEEhgiKINy+bnOANmVizIEgq1r+C5zsbs6l1CCQxtcj71rwNQ4jWg==}
'@webassemblyjs/ast@1.14.1':
resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
@@ -5008,8 +5852,8 @@ packages:
'@webassemblyjs/wast-printer@1.14.1':
resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
- '@webgpu/types@0.1.64':
- resolution: {integrity: sha512-84kRIAGV46LJTlJZWxShiOrNL30A+9KokD7RB3dRCIqODFjodS5tCD5yyiZ8kIReGVZSDfA3XkkwyyOIF6K62A==}
+ '@webgpu/types@0.1.66':
+ resolution: {integrity: sha512-YA2hLrwLpDsRueNDXIMqN9NTzD6bCDkuXbOSe0heS+f8YE8usA6Gbv1prj81pzVHrbaAma7zObnIC+I6/sXJgA==}
'@xhmikosr/archive-type@7.1.0':
resolution: {integrity: sha512-xZEpnGplg1sNPyEgFh0zbHxqlw5dtYg6viplmWSxUj12+QjU9SKu3U/2G73a15pEjLaOqTefNSZ1fOPUOT4Xgg==}
@@ -5076,6 +5920,9 @@ packages:
resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==}
hasBin: true
+ a5-js@0.5.0:
+ resolution: {integrity: sha512-VAw19sWdYadhdovb0ViOIi1SdKx6H6LwcGMRFKwMfgL5gcmL/1fKJHfgsNgNaJ7xC/eEyjs6VK+VVd4N0a+peg==}
+
abab@2.0.6:
resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
deprecated: Use your platform's native atob() and btoa() methods instead
@@ -5194,8 +6041,8 @@ packages:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
- ansi-escapes@7.0.0:
- resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==}
+ ansi-escapes@7.2.0:
+ resolution: {integrity: sha512-g6LhBsl+GBPRWGWsBtutpzBYuIIdBkLEvad5C/va/74Db018+5TZiyA26cZJAr3Rft5lprVqOIPxf5Vid6tqAw==}
engines: {node: '>=18'}
ansi-html-community@0.0.8:
@@ -5211,8 +6058,8 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.2.0:
- resolution: {integrity: sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==}
+ ansi-regex@6.2.2:
+ resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
engines: {node: '>=12'}
ansi-styles@3.2.1:
@@ -5227,8 +6074,8 @@ packages:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
- ansi-styles@6.2.1:
- resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
+ ansi-styles@6.2.3:
+ resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
engines: {node: '>=12'}
anymatch@2.0.0:
@@ -5401,19 +6248,24 @@ packages:
aws4@1.13.2:
resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==}
- axe-core@4.10.3:
- resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==}
+ axe-core@4.11.0:
+ resolution: {integrity: sha512-ilYanEU8vxxBexpJd8cWM4ElSQq4QctCLKih0TSfjIfCQTeyH/6zVrmIJfLPrKTKJRbiG+cfnZbQIjAlJmF1jQ==}
engines: {node: '>=4'}
- axios@1.11.0:
- resolution: {integrity: sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==}
+ axios@1.13.2:
+ resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
axobject-query@4.1.0:
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
engines: {node: '>= 0.4'}
- b4a@1.6.7:
- resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
+ b4a@1.7.3:
+ resolution: {integrity: sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==}
+ peerDependencies:
+ react-native-b4a: '*'
+ peerDependenciesMeta:
+ react-native-b4a:
+ optional: true
babel-jest@30.0.5:
resolution: {integrity: sha512-mRijnKimhGDMsizTvBTWotwNpzrkHr+VvZUQBof2AufXKB8NXrL1W69TG20EvOz7aevx6FTJIaBuBkYxS8zolg==}
@@ -5421,11 +6273,11 @@ packages:
peerDependencies:
'@babel/core': ^7.11.0
- babel-jest@30.1.2:
- resolution: {integrity: sha512-IQCus1rt9kaSh7PQxLYRY5NmkNrNlU2TpabzwV7T2jljnpdHOcmnYYv8QmE04Li4S3a2Lj8/yXyET5pBarPr6g==}
+ babel-jest@30.2.0:
+ resolution: {integrity: sha512-0YiBEOxWqKkSQWL9nNGGEgndoeL0ZpWrbLMNL5u/Kaxrli3Eaxlt3ZtIDktEvXt4L/R9r3ODr2zKwGM/2BjxVw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
- '@babel/core': ^7.11.0
+ '@babel/core': ^7.11.0 || ^8.0.0-0
babel-loader@10.0.0:
resolution: {integrity: sha512-z8jt+EdS61AMw22nSfoNJAZ0vrtmhPRVi6ghL3rCeRZI8cdNYFiV5xeV3HbE7rlZZNmGH8BVccwWt8/ED0QOHA==}
@@ -5449,14 +6301,18 @@ packages:
resolution: {integrity: sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==}
engines: {node: '>=6'}
- babel-plugin-istanbul@7.0.0:
- resolution: {integrity: sha512-C5OzENSx/A+gt7t4VH1I2XsflxyPUmXRFPKBxt33xncdOmq7oROVM3bZv9Ysjjkv8OJYDMa+tKuKMvqU/H3xdw==}
+ babel-plugin-istanbul@7.0.1:
+ resolution: {integrity: sha512-D8Z6Qm8jCvVXtIRkBnqNHX0zJ37rQcFJ9u8WOS6tkYOsRdHBzypCstaxWiu5ZIlqQtviRYbgnRLSoCEvjqcqbA==}
engines: {node: '>=12'}
babel-plugin-jest-hoist@30.0.1:
resolution: {integrity: sha512-zTPME3pI50NsFW8ZBaVIOeAxzEY7XHlmWeXXu9srI+9kNfzCUTy8MFan46xOGZY8NZThMqq+e3qZUKsvXbasnQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ babel-plugin-jest-hoist@30.2.0:
+ resolution: {integrity: sha512-ftzhzSGMUnOzcCXd6WHdBGMyuwy15Wnn0iyyWGKgBDLxf9/s5ABuraCSpBX2uG0jUg4rqJnxsLc5+oYBqoxVaA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
babel-plugin-macros@2.8.0:
resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==}
@@ -5507,14 +6363,25 @@ packages:
peerDependencies:
'@babel/core': ^7.11.0
+ babel-preset-jest@30.2.0:
+ resolution: {integrity: sha512-US4Z3NOieAQumwFnYdUWKvUKh8+YSnS/gB3t6YBiz0bskpu7Pine8pPCheNxlPEW4wnUkma2a94YuW2q3guvCQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ peerDependencies:
+ '@babel/core': ^7.11.0 || ^8.0.0-beta.1
+
babel-preset-react-app@10.1.0:
resolution: {integrity: sha512-f9B1xMdnkCIqe+2dHrJsoQFRz7reChaAHE/65SdaykPklQqhme2WaC08oD3is77x9ff98/9EazAKFDZv5rFEQg==}
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- bare-events@2.6.1:
- resolution: {integrity: sha512-AuTJkq9XmE6Vk0FJVNq5QxETrSA/vKHarWVBG5l/JbdCL1prJemiyJqUS0jrlXO0MftuPq4m3YVYhoNc5+aE/g==}
+ bare-events@2.8.2:
+ resolution: {integrity: sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==}
+ peerDependencies:
+ bare-abort-controller: '*'
+ peerDependenciesMeta:
+ bare-abort-controller:
+ optional: true
base64-arraybuffer@1.0.2:
resolution: {integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==}
@@ -5527,6 +6394,10 @@ packages:
resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
engines: {node: '>=0.10.0'}
+ baseline-browser-mapping@2.8.31:
+ resolution: {integrity: sha512-a28v2eWrrRWPpJSzxc+mKwm0ZtVx/G8SepdQZDArnXYU/XS+IF6mp8aB/4E+hH1tyGCoDo3KlUCdlSxGDsRkAw==}
+ hasBin: true
+
basic-auth@2.0.1:
resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
engines: {node: '>= 0.8'}
@@ -5595,14 +6466,17 @@ packages:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
+ brotli@1.3.3:
+ resolution: {integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==}
+
browser-process-hrtime@1.0.0:
resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
browser-stdout@1.3.1:
resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
- browserslist@4.25.4:
- resolution: {integrity: sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg==}
+ browserslist@4.28.0:
+ resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -5618,6 +6492,10 @@ packages:
engines: {node: '>= 0.4.0'}
hasBin: true
+ buf-compare@1.0.1:
+ resolution: {integrity: sha512-Bvx4xH00qweepGc43xFvMs5BKASXTbHaHm6+kDYIK9p/4iFwjATQkmPKHQSgJZzKbAymhztRbXUf1Nqhzl73/Q==}
+ engines: {node: '>=0.10.0'}
+
buffer-crc32@0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
@@ -5697,8 +6575,8 @@ packages:
camelize@1.0.1:
resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
- caniuse-lite@1.0.30001741:
- resolution: {integrity: sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==}
+ caniuse-lite@1.0.30001757:
+ resolution: {integrity: sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==}
canvg@3.0.11:
resolution: {integrity: sha512-5ON+q7jCTgMp9cjpu4Jo6XbvfYwSB2Ow3kzHKfIyJfaCAOHLbdKPQqGKgfED/R5B+3TFFfe8pegYA+b423SRyA==}
@@ -5715,12 +6593,12 @@ packages:
resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==}
engines: {node: '>=18'}
- chai@6.0.1:
- resolution: {integrity: sha512-/JOoU2//6p5vCXh00FpNgtlw0LjvhGttaWc+y7wpW9yjBm3ys0dI8tSKZxIOgNruz5J0RleccatSIC3uxEZP0g==}
+ chai@6.2.1:
+ resolution: {integrity: sha512-p4Z49OGG5W/WBCPSS/dH3jQ73kD6tiMmUM+bckNK6Jr5JHMG3k9bg/BvKR8lKmtVBKmOiuVaV2ws8s9oSbwysg==}
engines: {node: '>=18'}
- chalk-template@1.1.0:
- resolution: {integrity: sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg==}
+ chalk-template@1.1.2:
+ resolution: {integrity: sha512-2bxTP2yUH7AJj/VAXfcA+4IcWGdQ87HwBANLt5XxGTeomo8yG0y95N1um9i5StvhT/Bl0/2cARA5v1PpPXUxUA==}
engines: {node: '>=14.16'}
chalk@2.4.2:
@@ -5735,14 +6613,17 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- chalk@5.6.0:
- resolution: {integrity: sha512-46QrSQFyVSEyYAgQ22hQ+zDa60YHA4fBstHmtSApj1Y5vKtG27fWowW03jCk5KcbXEWPZUIR894aARCA/G1kfQ==}
+ chalk@5.6.2:
+ resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
+ charenc@0.0.2:
+ resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
+
cheap-ruler@4.0.0:
resolution: {integrity: sha512-0BJa8f4t141BYKQyn9NSQt1PguFQXMXwZiA5shfoaBYHAb2fFk2RAX+tiWMoQU+Agtzt3mdt0JtuyshAXqZ+Vw==}
@@ -5776,15 +6657,15 @@ packages:
ci-info@2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
- ci-info@4.3.0:
- resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==}
+ ci-info@4.3.1:
+ resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==}
engines: {node: '>=8'}
circular-json-es6@2.0.2:
resolution: {integrity: sha512-ODYONMMNb3p658Zv+Pp+/XPa5s6q7afhz3Tzyvo+VRh9WIrJ64J76ZC4GQxnlye/NesTn09jvOiuE8+xxfpwhQ==}
- cjs-module-lexer@2.1.0:
- resolution: {integrity: sha512-UX0OwmYRYQQetfrLEZeewIFFI+wSTofC+pMBLNuH3RUuu/xzG1oz84UCEDOSoQlN3fZ4+AzmV50ZYvGqkMh9yA==}
+ cjs-module-lexer@2.1.1:
+ resolution: {integrity: sha512-+CmxIZ/L2vNcEfvNtLdU0ZQ6mbq3FZnwAP2PPTiKP+1QOoKwlKlPgb8UKV0Dds7QVaMnHm+FwSft2VB0s/SLjQ==}
class-utils@0.3.6:
resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
@@ -5846,8 +6727,8 @@ packages:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- collect-v8-coverage@1.0.2:
- resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
+ collect-v8-coverage@1.0.3:
+ resolution: {integrity: sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==}
collection-visit@1.0.0:
resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==}
@@ -5986,11 +6867,15 @@ packages:
resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
- core-js-compat@3.45.1:
- resolution: {integrity: sha512-tqTt5T4PzsMIZ430XGviK4vzYSoeNJ6CXODi6c/voxOT6IZqBht5/EKaSNnYiEjjRYxjVz7DQIsOsY0XNi8PIA==}
+ core-assert@0.2.1:
+ resolution: {integrity: sha512-IG97qShIP+nrJCXMCgkNZgH7jZQ4n8RpPyPeXX++T6avR/KhLhgLiHKoEn5Rc1KjfycSfA9DMa6m+4C4eguHhw==}
+ engines: {node: '>=0.10.0'}
+
+ core-js-compat@3.47.0:
+ resolution: {integrity: sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ==}
- core-js@3.45.1:
- resolution: {integrity: sha512-L4NPsJlCfZsPeXukyzHFlg/i7IIVwHSItR0wg0FLNqYClJ4MQYTYLbC7EkjKYRLZF2iof2MUgN0EGy7MdQFChg==}
+ core-js@3.47.0:
+ resolution: {integrity: sha512-c3Q2VVkGAUyupsjRnaNX6u8Dq2vAdzm9iuPj5FW0fRxzlxgq9Q39MDq10IvmQSpLgHQNyQzQmOo6bgGHmH3NNg==}
core-util-is@1.0.2:
resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
@@ -6043,6 +6928,9 @@ packages:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
+ crypt@0.0.2:
+ resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
+
css-color-keywords@1.0.0:
resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
@@ -6111,6 +6999,9 @@ packages:
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+ csstype@3.2.3:
+ resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
+
csv2geojson@5.1.2:
resolution: {integrity: sha512-G9A1mw7jwGta4z9x+mJehRj3OkVaFKMULRj8mZJxdjZ6XN/1Icp7G2RQ0T0vnQoYSNTufK8yPh2fRTRkBPAcdQ==}
engines: {node: '>=6'}
@@ -6301,8 +7192,8 @@ packages:
resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==}
engines: {node: '>=4.0'}
- dayjs@1.11.18:
- resolution: {integrity: sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==}
+ dayjs@1.11.19:
+ resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==}
de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
@@ -6326,8 +7217,8 @@ packages:
supports-color:
optional: true
- debug@4.4.1:
- resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
+ debug@4.4.3:
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -6379,16 +7270,20 @@ packages:
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+ deep-strict-equal@0.2.0:
+ resolution: {integrity: sha512-3daSWyvZ/zwJvuMGlzG1O+Ow0YSadGfb3jsh9xoCutv2tWyB9dA4YvR9L9/fSdDZa2dByYQe+TqapSGUrjnkoA==}
+ engines: {node: '>=0.10.0'}
+
deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- default-browser-id@5.0.0:
- resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
+ default-browser-id@5.0.1:
+ resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==}
engines: {node: '>=18'}
- default-browser@5.2.1:
- resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
+ default-browser@5.4.0:
+ resolution: {integrity: sha512-XDuvSq38Hr1MdN47EDvYtx3U0MTqpCEn+F6ft8z2vYDzMrvQhVp0ui9oQdqW3MvK3vqUETglt1tVGgjLuJ5izg==}
engines: {node: '>=18'}
defaults@1.0.4:
@@ -6493,6 +7388,10 @@ packages:
resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
engines: {node: '>=0.3.1'}
+ diff@8.0.2:
+ resolution: {integrity: sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==}
+ engines: {node: '>=0.3.1'}
+
dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
@@ -6545,8 +7444,8 @@ packages:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
- dompurify@3.2.6:
- resolution: {integrity: sha512-/2GogDQlohXPZe6D6NOgQvXLPSYBqIWMnZ8zzOhn09REE4eyAzb+Hed3jhoM9OkuaJ8P6ZGTTVWQKAi8ieIzfQ==}
+ dompurify@3.3.0:
+ resolution: {integrity: sha512-r+f6MYR1gGN1eJv0TVQbhA7if/U7P87cdPl3HN5rikqaBSBxLiCb/b9O+2eG0cxz0ghyU+mU1QkbsOwERMYlWQ==}
domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
@@ -6565,6 +7464,9 @@ packages:
resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
engines: {node: '>=12'}
+ draco3d@1.5.7:
+ resolution: {integrity: sha512-m6WCKt/erDXcw+70IJXnG7M3awwQPAsZvJGX5zY7beBqpELw6RDGkYVU0W43AFxye4pDZ5i2Lbyc/NNGqwjUVQ==}
+
dunder-proto@1.0.1:
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
engines: {node: '>= 0.4'}
@@ -6587,8 +7489,8 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- effect@3.17.13:
- resolution: {integrity: sha512-JMz5oBxs/6mu4FP9Csjub4jYMUwMLrp+IzUmSDVIzn2NoeoyOXMl7x1lghfr3dLKWffWrdnv/d8nFFdgrHXPqw==}
+ effect@3.19.6:
+ resolution: {integrity: sha512-Eh1E/CI+xCAcMSDC5DtyE29yWJINC0zwBbwHappQPorjKyS69rCA8qzpsHpfhKnPDYgxdg8zkknii8mZ+6YMQA==}
ejs@3.1.10:
resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
@@ -6598,15 +7500,15 @@ packages:
elasticlunr@0.9.5:
resolution: {integrity: sha512-5YM9LFQgVYfuLNEoqMqVWIBuF2UNCA+xu/jz1TyryLN/wmBcQSb+GNAwvLKvEpGESwgGN8XA1nbLAt6rKlyHYQ==}
- electron-to-chromium@1.5.214:
- resolution: {integrity: sha512-TpvUNdha+X3ybfU78NoQatKvQEm1oq3lf2QbnmCEdw+Bd9RuIAY+hJTvq1avzHM0f7EJfnH3vbCnbzKzisc/9Q==}
+ electron-to-chromium@1.5.260:
+ resolution: {integrity: sha512-ov8rBoOBhVawpzdre+Cmz4FB+y66Eqrk6Gwqd8NGxuhv99GQ8XqMAr351KEkOt7gukXWDg6gJWEMKgL2RLMPtA==}
emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
engines: {node: '>=12'}
- emoji-regex@10.5.0:
- resolution: {integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==}
+ emoji-regex@10.6.0:
+ resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -6683,8 +7585,8 @@ packages:
enzyme@3.11.0:
resolution: {integrity: sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==}
- error-ex@1.3.2:
- resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+ error-ex@1.3.4:
+ resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
es-abstract@1.24.0:
resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==}
@@ -6734,13 +7636,8 @@ packages:
engines: {node: '>=12'}
hasBin: true
- esbuild@0.25.5:
- resolution: {integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==}
- engines: {node: '>=18'}
- hasBin: true
-
- esbuild@0.25.9:
- resolution: {integrity: sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==}
+ esbuild@0.25.12:
+ resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
engines: {node: '>=18'}
hasBin: true
@@ -6798,8 +7695,8 @@ packages:
eslint-import-resolver-webpack:
optional: true
- eslint-plugin-cypress@5.1.1:
- resolution: {integrity: sha512-LxTmZf1LLh9EklZBVvKNEZj71X9tCJnlYDviAJGsOgEVc6jz+tBODSpm02CS/9eJOfRqGsmVyvIw7LHXQ13RaA==}
+ eslint-plugin-cypress@5.2.0:
+ resolution: {integrity: sha512-vuCUBQloUSILxtJrUWV39vNIQPlbg0L7cTunEAzvaUzv9LFZZym+KFLH18n9j2cZuFPdlxOqTubCvg5se0DyGw==}
peerDependencies:
eslint: '>=9'
@@ -6825,6 +7722,17 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
+ eslint-plugin-react-hooks@7.0.1:
+ resolution: {integrity: sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
+
+ eslint-plugin-react-refresh@0.4.24:
+ resolution: {integrity: sha512-nLHIW7TEq3aLrEYWpVaJ1dRgFR+wLDPN8e8FpYAql/bMV2oBEfC37K0gLEGgv9fy66juNShSMV8OkTqzltcG/w==}
+ peerDependencies:
+ eslint: '>=8.40'
+
eslint-plugin-react@7.37.5:
resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==}
engines: {node: '>=4'}
@@ -6838,12 +7746,12 @@ packages:
eslint: '>=8'
storybook: ^9.1.1
- eslint-plugin-storybook@9.1.4:
- resolution: {integrity: sha512-IiIqGFo524PDELajyDLMtceikHpDUKBF6QlH5oJECy+xV3e0DHJkcuyokwxWveb1yg7tHfTLimCKNix2ftRETg==}
+ eslint-plugin-storybook@9.1.16:
+ resolution: {integrity: sha512-I8f3DXniPxFbcptVgOjtIHNvW6sDu1O2d1zNsxLKmeAvEaRLus1ij8iFHCgkNzMthrU5U2F4Wdo/aaSpz5kHjA==}
engines: {node: '>=20.0.0'}
peerDependencies:
eslint: '>=8'
- storybook: ^9.1.4
+ storybook: ^9.1.16
eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
@@ -6861,8 +7769,8 @@ packages:
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.34.0:
- resolution: {integrity: sha512-RNCHRX5EwdrESy3Jc9o8ie8Bog+PeYvvSR8sDGoZxNFTvZ4dlxUB3WzQ3bQMztFrSRODGrLLj8g6OFuGY/aiQg==}
+ eslint@9.39.1:
+ resolution: {integrity: sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -6923,6 +7831,9 @@ packages:
eventemitter3@5.0.1:
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
+ events-universal@1.0.1:
+ resolution: {integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==}
+
events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
@@ -6966,16 +7877,16 @@ packages:
resolution: {integrity: sha512-P0te2pt+hHI5qLJkIR+iMvS+lYUZml8rKKsohVHAGY+uClp9XVbdyYNJOIjSRpHVp8s8YqxJCiHUkSYZGr8rtQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- expect@30.1.2:
- resolution: {integrity: sha512-xvHszRavo28ejws8FpemjhwswGj4w/BetHIL8cU49u4sGyXDw2+p3YbeDbj6xzlxi6kWTjIRSTJ+9sNXPnF0Zg==}
+ expect@30.2.0:
+ resolution: {integrity: sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
express@4.21.2:
resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
engines: {node: '>= 0.10.0'}
- exsolve@1.0.7:
- resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==}
+ exsolve@1.0.8:
+ resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
ext-list@2.2.2:
resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==}
@@ -7042,6 +7953,10 @@ packages:
fast-uri@3.1.0:
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
+ fast-xml-parser@4.5.3:
+ resolution: {integrity: sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==}
+ hasBin: true
+
fastq@1.19.1:
resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
@@ -7068,6 +7983,12 @@ packages:
resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
engines: {node: ^12.20 || >= 14.13}
+ fflate@0.6.10:
+ resolution: {integrity: sha512-IQrh3lEPM93wVCEczc9SaAOvkmcoQn/G8Bo1e8ZPlY3X3bnAxWaBdvTdvM1hP62iZp0BXWDy4vTAy4fF0+Dlpg==}
+
+ fflate@0.7.4:
+ resolution: {integrity: sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==}
+
fflate@0.8.2:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
@@ -7222,8 +8143,8 @@ packages:
resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
engines: {node: '>= 0.12'}
- form-data@4.0.4:
- resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
+ form-data@4.0.5:
+ resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
engines: {node: '>= 6'}
formdata-polyfill@4.0.10:
@@ -7255,8 +8176,8 @@ packages:
resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
engines: {node: '>=14.14'}
- fs-extra@11.3.1:
- resolution: {integrity: sha512-eXvGGwZ5CL17ZSwHWd3bbgk7UUpF6IFHtP57NYYakPvHOs8GDgDe5KJI36jIJzDkJ6eJjuzRA8eBQb6SkKue0g==}
+ fs-extra@11.3.2:
+ resolution: {integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==}
engines: {node: '>=14.14'}
fs-extra@8.1.0:
@@ -7294,6 +8215,10 @@ packages:
functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ generator-function@2.0.1:
+ resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
+ engines: {node: '>= 0.4'}
+
gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
@@ -7310,6 +8235,14 @@ packages:
geojson-vt@4.0.2:
resolution: {integrity: sha512-AV9ROqlNqoZEIJGfm1ncNjEXfkz2hdFlZf0qkVfmkwdKa8vj7H16YUOT81rJw1rdFhyEDlN2Tds91p/glzbl5A==}
+ geojson@0.5.0:
+ resolution: {integrity: sha512-/Bx5lEn+qRF4TfQ5aLu6NH+UKtvIv7Lhc487y/c8BdludrCTpiWf9wyI0RTyqg49MFefIAvFDuEi5Dfd/zgNxQ==}
+ engines: {node: '>= 0.10'}
+
+ geotiff@2.1.3:
+ resolution: {integrity: sha512-PT6uoF5a1+kbC3tHmZSUsLHBp2QJlHasxxxxPW47QIY1VBKpFB+FcDvX+MxER6UzgLQZ0xDzJ9s48B9JbOCTqA==}
+ engines: {node: '>=10.19'}
+
gesto@1.19.4:
resolution: {integrity: sha512-hfr/0dWwh0Bnbb88s3QVJd1ZRJeOWcgHPPwmiH6NnafDYvhTsxg+SLYu+q/oPNh9JS3V+nlr6fNs8kvPAtcRDQ==}
@@ -7317,8 +8250,8 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.3.1:
- resolution: {integrity: sha512-R1QfovbPsKmosqTnPoRFiJ7CF9MLRgb53ChvMZm+r4p76/+8yKDy17qLL2PKInORy2RkZZekuK0efYgmzTkXyQ==}
+ get-east-asian-width@1.4.0:
+ resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
engines: {node: '>=18'}
get-intrinsic@1.3.0:
@@ -7370,8 +8303,8 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
- glob-to-regex.js@1.0.1:
- resolution: {integrity: sha512-CG/iEvgQqfzoVsMUbxSJcwbG2JwyZ3naEqPkeltwl0BSS8Bp83k3xlGms+0QdWFUAwV+uvo80wNswKF6FWEkKg==}
+ glob-to-regex.js@1.2.0:
+ resolution: {integrity: sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
@@ -7379,12 +8312,12 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@10.4.5:
- resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
+ glob@10.5.0:
+ resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==}
hasBin: true
- glob@11.0.3:
- resolution: {integrity: sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==}
+ glob@11.1.0:
+ resolution: {integrity: sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==}
engines: {node: 20 || >=22}
hasBin: true
@@ -7424,8 +8357,8 @@ packages:
resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
engines: {node: '>=18'}
- globals@16.3.0:
- resolution: {integrity: sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==}
+ globals@16.5.0:
+ resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==}
engines: {node: '>=18'}
globalthis@1.0.4:
@@ -7461,6 +8394,10 @@ packages:
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
engines: {node: '>=10'}
+ h3-js@4.3.0:
+ resolution: {integrity: sha512-zgvyHZz5bEKeuyYGh0bF9/kYSxJ2SqroopkXHqKnD3lfjaZawcxulcI9nWbNC54gakl/2eObRLHWueTf1iLSaA==}
+ engines: {node: '>=4', npm: '>=3', yarn: '>=1.3.0'}
+
handle-thing@2.0.1:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
@@ -7544,6 +8481,12 @@ packages:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
+ hermes-estree@0.25.1:
+ resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==}
+
+ hermes-parser@0.25.1:
+ resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==}
+
hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
@@ -7605,8 +8548,8 @@ packages:
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
- html-webpack-plugin@5.6.4:
- resolution: {integrity: sha512-V/PZeWsqhfpE27nKeX9EO2sbR+D17A+tLf6qU+ht66jdUsN0QLKJN27Z+1+gHrVMKgndBahes0PU6rRihDgHTw==}
+ html-webpack-plugin@5.6.5:
+ resolution: {integrity: sha512-4xynFbKNNk+WlzXeQQ+6YYsH2g7mpfPszQZUi3ovKlj+pDmngQ7vRXjrrmGROabmKwyQkcgcX5hqfOwHbFmK5g==}
engines: {node: '>=10.13.0'}
peerDependencies:
'@rspack/core': 0.x || 1.x
@@ -7649,6 +8592,10 @@ packages:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
+ http-errors@2.0.1:
+ resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
+ engines: {node: '>= 0.8'}
+
http-parser-js@0.5.10:
resolution: {integrity: sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==}
@@ -7706,8 +8653,8 @@ packages:
resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==}
engines: {node: '>=10.18'}
- i18next@25.5.1:
- resolution: {integrity: sha512-dDnnt362852mKtHGeAU9v3yF8NVQBdXGB++zmW8VMfNe4XEyR7JlSh815TWQHq9DvLfdkLJzFu90OmmRFd24Jw==}
+ i18next@25.7.2:
+ resolution: {integrity: sha512-58b4kmLpLv1buWUEwegMDUqZVR5J+rT+WTRFaBGL7lxDuJQQ0NrJFrq+eT2N94aYVR1k1Sr13QITNOL88tZCuw==}
peerDependencies:
typescript: ^5
peerDependenciesMeta:
@@ -7733,8 +8680,16 @@ packages:
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
engines: {node: '>= 4'}
- immer@10.1.3:
- resolution: {integrity: sha512-tmjF/k8QDKydUlm3mZU+tjM6zeq9/fFpPqH9SzWmBnVVKsPBg/V66qsMwb3/Bo90cgUN+ghdVBess+hPsxUyRw==}
+ image-size@0.7.5:
+ resolution: {integrity: sha512-Hiyv+mXHfFEP7LzUL/llg9RwFxxY+o9N3JVLIeG5E7iFIFAalxvRU9UZthBdYDEVnzHMgjnKJPPpay5BWf1g9g==}
+ engines: {node: '>=6.9.0'}
+ hasBin: true
+
+ immediate@3.0.6:
+ resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
+
+ immer@11.0.0:
+ resolution: {integrity: sha512-XtRG4SINt4dpqlnJvs70O2j6hH7H0X8fUzFsjMn1rwnETaxwp83HLNimXBjZ78MrKl3/d3/pkzDH0o0Lkxm37Q==}
immer@9.0.21:
resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==}
@@ -7882,6 +8837,9 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
hasBin: true
+ is-error@2.2.2:
+ resolution: {integrity: sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==}
+
is-extendable@0.1.1:
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
engines: {node: '>=0.10.0'}
@@ -7906,8 +8864,8 @@ packages:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
- is-generator-function@1.1.0:
- resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
+ is-generator-function@1.1.2:
+ resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==}
engines: {node: '>= 0.4'}
is-glob@4.0.3:
@@ -7939,8 +8897,8 @@ packages:
resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
engines: {node: '>= 0.4'}
- is-network-error@1.1.0:
- resolution: {integrity: sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==}
+ is-network-error@1.3.0:
+ resolution: {integrity: sha512-6oIwpsgRfnDiyEDLMay/GqCl3HoAtH5+RUKW29gYkL0QA+ipzpDLA16yQs7/RHCSu+BwgbJaOUqa4A99qNVQVw==}
engines: {node: '>=16'}
is-number-object@1.1.1:
@@ -8174,8 +9132,8 @@ packages:
resolution: {integrity: sha512-1UIqE9PoEKaHcIKvq2vbibrCog4Y8G0zmOxgQUVEiTqwR5hJVMCoDsN1vFvI5JvwD37hjueZ1C4l2FyGnfpE0A==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-diff@30.1.2:
- resolution: {integrity: sha512-4+prq+9J61mOVXCa4Qp8ZjavdxzrWQXrI80GNxP8f4tkI2syPuPrJgdRPZRrfUTRvIoUwcmNLbqEJy9W800+NQ==}
+ jest-diff@30.2.0:
+ resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-docblock@30.0.1:
@@ -8197,8 +9155,8 @@ packages:
resolution: {integrity: sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==}
engines: {node: '>= 6'}
- jest-environment-jsdom@30.1.2:
- resolution: {integrity: sha512-LXsfAh5+mDTuXDONGl1ZLYxtJEaS06GOoxJb2arcJTjIfh1adYg8zLD8f6P0df8VmjvCaMrLmc1PgHUI/YUTbg==}
+ jest-environment-jsdom@30.2.0:
+ resolution: {integrity: sha512-zbBTiqr2Vl78pKp/laGBREYzbZx9ZtqPjOK4++lL4BNDhxRnahg51HtoDrk9/VjIy9IthNEWdKVd7H5bqBhiWQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
canvas: ^3.0.0
@@ -8228,8 +9186,8 @@ packages:
resolution: {integrity: sha512-dkmlWNlsTSR0nH3nRfW5BKbqHefLZv0/6LCccG0xFCTWcJu8TuEwG+5Cm75iBfjVoockmO6J35o5gxtFSn5xeg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-haste-map@30.1.0:
- resolution: {integrity: sha512-JLeM84kNjpRkggcGpQLsV7B8W4LNUWz7oDNVnY1Vjj22b5/fAb3kk3htiD+4Na8bmJmjJR7rBtS2Rmq/NEcADg==}
+ jest-haste-map@30.2.0:
+ resolution: {integrity: sha512-sQA/jCb9kNt+neM0anSj6eZhLZUIhQgwDt7cPGjumgLM4rXsfb9kpnlacmvZz3Q5tb80nS+oG/if+NBKrHC+Xw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-leak-detector@30.0.5:
@@ -8240,8 +9198,8 @@ packages:
resolution: {integrity: sha512-uQgGWt7GOrRLP1P7IwNWwK1WAQbq+m//ZY0yXygyfWp0rJlksMSLQAA4wYQC3b6wl3zfnchyTx+k3HZ5aPtCbQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-matcher-utils@30.1.2:
- resolution: {integrity: sha512-7ai16hy4rSbDjvPTuUhuV8nyPBd6EX34HkBsBcBX2lENCuAQ0qKCPb/+lt8OSWUa9WWmGYLy41PrEzkwRwoGZQ==}
+ jest-matcher-utils@30.2.0:
+ resolution: {integrity: sha512-dQ94Nq4dbzmUWkQ0ANAWS9tBRfqCrn0bV9AMYdOi/MHW726xn7eQmMeRTpX2ViC00bpNaWXq+7o4lIQ3AX13Hg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-message-util@24.9.0:
@@ -8252,8 +9210,8 @@ packages:
resolution: {integrity: sha512-NAiDOhsK3V7RU0Aa/HnrQo+E4JlbarbmI3q6Pi4KcxicdtjV82gcIUrejOtczChtVQR4kddu1E1EJlW6EN9IyA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-message-util@30.1.0:
- resolution: {integrity: sha512-HizKDGG98cYkWmaLUHChq4iN+oCENohQLb7Z5guBPumYs+/etonmNFlg1Ps6yN9LTPyZn+M+b/9BbnHx3WTMDg==}
+ jest-message-util@30.2.0:
+ resolution: {integrity: sha512-y4DKFLZ2y6DxTWD4cDe07RglV88ZiNEdlRfGtqahfbIjfsw1nMCPx49Uev4IA/hWn3sDKyAnSPwoYSsAEdcimw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-mock@24.9.0:
@@ -8264,6 +9222,10 @@ packages:
resolution: {integrity: sha512-Od7TyasAAQX/6S+QCbN6vZoWOMwlTtzzGuxJku1GhGanAjz9y+QsQkpScDmETvdc9aSXyJ/Op4rhpMYBWW91wQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ jest-mock@30.2.0:
+ resolution: {integrity: sha512-JNNNl2rj4b5ICpmAcq+WbLH83XswjPbjH4T7yvGzfAGCPh1rw+xVNbtk+FnRslvt9lkCcdn9i1oAoKUuFsOxRw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
jest-pnp-resolver@1.2.3:
resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
@@ -8313,6 +9275,10 @@ packages:
resolution: {integrity: sha512-pvyPWssDZR0FlfMxCBoc0tvM8iUEskaRFALUtGQYzVEAqisAztmy+R8LnU14KT4XA0H/a5HMVTXat1jLne010g==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ jest-util@30.2.0:
+ resolution: {integrity: sha512-QKNsM0o3Xe6ISQU869e+DhG+4CK/48aHYdJZGlFQVTjnbvgpcKyxpzk29fGiO7i/J8VENZ+d2iGnSsvmuHywlA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
jest-validate@30.0.5:
resolution: {integrity: sha512-ouTm6VFHaS2boyl+k4u+Qip4TSH7Uld5tyD8psQ8abGgt2uYYB8VwVfAHWHjHc0NWmGGbwO5h0sCPOGHHevefw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
@@ -8327,8 +9293,8 @@ packages:
resolution: {integrity: sha512-z9slj/0vOwBDBjN3L4z4ZYaA+pG56d6p3kTUhFRYGvXbXMWhXmb/FIxREZCD06DYUwDKKnj2T80+Pb71CQ0KEg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-watcher@30.1.3:
- resolution: {integrity: sha512-6jQUZCP1BTL2gvG9E4YF06Ytq4yMb4If6YoQGRR6PpjtqOXSP3sKe2kqwB6SQ+H9DezOfZaSLnmka1NtGm3fCQ==}
+ jest-watcher@30.2.0:
+ resolution: {integrity: sha512-PYxa28dxJ9g777pGm/7PrbnMeA0Jr7osHP9bS7eJy9DuAjMgdGtxgf0uKMyoIsTWAkIbUW5hSDdJ3urmgXBqxg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-worker@24.9.0:
@@ -8343,8 +9309,8 @@ packages:
resolution: {integrity: sha512-ojRXsWzEP16NdUuBw/4H/zkZdHOa7MMYCk4E430l+8fELeLg/mqmMlRhjL7UNZvQrDmnovWZV4DxX03fZF48fQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-worker@30.1.0:
- resolution: {integrity: sha512-uvWcSjlwAAgIu133Tt77A05H7RIk3Ho8tZL50bQM2AkvLdluw9NG48lRCl3Dt+MOH719n/0nnb5YxUwcuJiKRA==}
+ jest-worker@30.2.0:
+ resolution: {integrity: sha512-0Q4Uk8WF7BUwqXHuAjc23vmopWJw5WH7w2tqBoUOZpOjW/ZnR44GXXd1r82RvnmI2GZge3ivrYXk/BE2+VtW2g==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest@30.0.5:
@@ -8370,12 +9336,12 @@ packages:
js-tokens@9.0.1:
resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
- js-yaml@3.14.1:
- resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
+ js-yaml@3.14.2:
+ resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==}
hasBin: true
- js-yaml@4.1.0:
- resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
+ js-yaml@4.1.1:
+ resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
hasBin: true
jsbn@0.1.1:
@@ -8393,11 +9359,6 @@ packages:
canvas:
optional: true
- jsesc@3.0.2:
- resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
- engines: {node: '>=6'}
- hasBin: true
-
jsesc@3.1.0:
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
engines: {node: '>=6'}
@@ -8439,8 +9400,8 @@ packages:
engines: {node: '>=6'}
hasBin: true
- jsonc-eslint-parser@2.4.0:
- resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==}
+ jsonc-eslint-parser@2.4.1:
+ resolution: {integrity: sha512-uuPNLJkKN8NXAlZlQ6kmUF9qO+T6Kyd7oV4+/7yy8Jz6+MZNyhPq8EdLpdfnPVzUC8qSf1b4j1azKaGnFsjmsw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
jsonc-parser@3.2.0:
@@ -8459,8 +9420,8 @@ packages:
jsonfile@6.2.0:
resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
- jspdf@3.0.2:
- resolution: {integrity: sha512-G0fQDJ5fAm6UW78HG6lNXyq09l0PrA1rpNY5i+ly17Zb1fMMFSmS+3lw4cnrAPGyouv2Y0ylujbY2Ieq3DSlKA==}
+ jspdf@3.0.4:
+ resolution: {integrity: sha512-dc6oQ8y37rRcHn316s4ngz/nOjayLF/FFxBF4V9zamQKRqXxyiH1zagkCdktdWhtoQId5K20xt1lB90XzkB+hQ==}
jsprim@1.4.2:
resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==}
@@ -8478,6 +9439,9 @@ packages:
resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
engines: {node: '>=4.0'}
+ jszip@3.10.1:
+ resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==}
+
kdbush@4.0.2:
resolution: {integrity: sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==}
@@ -8490,6 +9454,7 @@ packages:
keygrip@1.1.0:
resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==}
engines: {node: '>= 0.6'}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
@@ -8521,13 +9486,16 @@ packages:
resolution: {integrity: sha512-umfX9d3iuSxTQP4pnzLOz0HKnPg0FaUUIKcye2lOiz3KPu1Y3M3xlz76dISdFPQs37P9eJz1wUpcTS6KDPn9fA==}
engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4}
- koa@3.0.1:
- resolution: {integrity: sha512-oDxVkRwPOHhGlxKIDiDB2h+/l05QPtefD7nSqRgDfZt8P+QVYFWjfeK8jANf5O2YXjk8egd7KntvXKYx82wOag==}
+ koa@3.0.3:
+ resolution: {integrity: sha512-MeuwbCoN1daWS32/Ni5qkzmrOtQO2qrnfdxDHjrm6s4b59yG4nexAJ0pTEFyzjLp0pBVO80CZp0vW8Ze30Ebow==}
engines: {node: '>= 18'}
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
+ ktx-parse@0.7.1:
+ resolution: {integrity: sha512-FeA3g56ksdFNwjXJJsc1CCc7co+AJYDp6ipIp878zZ2bU8kWROatLYf39TQEd4/XRSUvBXovQ8gaVKWPXsCLEQ==}
+
language-subtag-registry@0.3.23:
resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
@@ -8535,8 +9503,8 @@ packages:
resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
engines: {node: '>=0.10'}
- launch-editor@2.11.1:
- resolution: {integrity: sha512-SEET7oNfgSaB6Ym0jufAdCeo3meJVeCaaDyzRygy0xsp2BFKCprcfHljTq4QkzTLUxEKkFK6OK4811YM2oSrRg==}
+ launch-editor@2.12.0:
+ resolution: {integrity: sha512-giOHXoOtifjdHqUamwKq6c49GzBdLjvxrd2D+Q4V6uOHopJv7p9VJxikDsQ/CBXZbEITgUqSVHXLTG3VhPP1Dg==}
lazy-ass@1.6.0:
resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==}
@@ -8546,6 +9514,9 @@ packages:
resolution: {integrity: sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==}
deprecated: use String.prototype.padStart()
+ lerc@3.0.0:
+ resolution: {integrity: sha512-Rm4J/WaHhRa93nCN2mwWDZFoRVF18G1f47C+kvQWyHGEZxFpTUi73p7lMVSAndyxGt6lJ2/CFbOcf9ra5p8aww==}
+
leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
@@ -8558,6 +9529,9 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
+ lie@3.3.0:
+ resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
+
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
@@ -8578,8 +9552,8 @@ packages:
resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
engines: {node: '>=4'}
- loader-runner@4.3.0:
- resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
+ loader-runner@4.3.1:
+ resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==}
engines: {node: '>=6.11.5'}
loader-utils@1.4.2:
@@ -8699,6 +9673,13 @@ packages:
long-timeout@0.1.1:
resolution: {integrity: sha512-BFRuQUqc7x2NWxfJBCyUrN8iYUYznzL9JROmRz1gZ6KlOIgmoD+njPVbb+VNn2nGMKggMsK79iUNErillsrx7w==}
+ long@3.2.0:
+ resolution: {integrity: sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==}
+ engines: {node: '>=0.6'}
+
+ long@5.3.2:
+ resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==}
+
loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
@@ -8716,8 +9697,8 @@ packages:
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lru-cache@11.2.1:
- resolution: {integrity: sha512-r8LA6i4LP4EeWOhqBaZZjDWwehd1xUJPCJd9Sv300H0ZmcUER4+JPh7bqqZeqs1o5pgtgvXm+d9UGrB5zZGDiQ==}
+ lru-cache@11.2.2:
+ resolution: {integrity: sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==}
engines: {node: 20 || >=22}
lru-cache@5.1.1:
@@ -8727,16 +9708,22 @@ packages:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
- luxon@3.7.1:
- resolution: {integrity: sha512-RkRWjA926cTvz5rAb1BqyWkKbbjzCGchDUIKMCUvNi17j6f6j8uHGDV82Aqcqtzd+icoYpELmG3ksgGiFNNcNg==}
+ luxon@3.7.2:
+ resolution: {integrity: sha512-vtEhXh/gNjI9Yg1u4jX/0YVPMvxzHuGgCm6tC5kZyb08yjGWGnqAjGJvcXbqQR2P3MyMEFnRbpcdFS6PBcLqew==}
engines: {node: '>=12'}
lz-string@1.5.0:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
- magic-string@0.30.18:
- resolution: {integrity: sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==}
+ lz4js@0.2.0:
+ resolution: {integrity: sha512-gY2Ia9Lm7Ep8qMiuGRhvUq0Q7qUereeldZPP1PMEJxPtEWHJLqw9pgX68oHajBH0nzJK4MaZEA/YNV3jT8u8Bg==}
+
+ lzo-wasm@0.0.4:
+ resolution: {integrity: sha512-VKlnoJRFrB8SdJhlVKvW5vI1gGwcZ+mvChEXcSX6r2xDNc/Q2FD9esfBmGCuPZdrJ1feO+YcVFd2PTk0c137Gw==}
+
+ magic-string@0.30.21:
+ resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
make-dir@4.0.0:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
@@ -8767,19 +9754,20 @@ packages:
resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
engines: {node: '>=0.10.0'}
- mapbox-gl@3.14.0:
- resolution: {integrity: sha512-KYhi9ZOQL4BB0J061admPH8O5ZZhhxsyiJ6DQCOkCaps0JEB4HF3SbJwu8S0pJKaQUxNS33sSbzW8iDSSauHPQ==}
+ mapbox-gl@3.16.0:
+ resolution: {integrity: sha512-rluV1Zp/0oHf1Y9BV+nePRNnKyTdljko3E19CzO5rBqtQaNUYS0ePCMPRtxOuWRwSdKp3f9NWJkOCjemM8nmjw==}
- maplibre-gl@5.6.0:
- resolution: {integrity: sha512-7TuHMozUC4rlIp08bSsxCixFn18P24otrlZU/7UGCO5RufFTJadFzauTrvBHr9FB67MbJ6nvFXEftGd0bUl4Iw==}
+ maplibre-gl@5.13.0:
+ resolution: {integrity: sha512-UsIVP34rZdM4TjrjhwBAhbC3HT7AzFx9p/draiAPlLr8/THozZF6WmJnZ9ck4q94uO55z7P7zoGCh+AZVoagsQ==}
engines: {node: '>=16.14.0', npm: '>=8.1.0'}
- maplibre-gl@5.7.1:
- resolution: {integrity: sha512-iCOQB6W/EGgQx8aU4SyfU5a5/GR2E+ELF92NMsqYfs3x+vnY+8mARmz4gor6XZHCz3tv19mnotVDRlRTMNKyGw==}
+ maplibre-gl@5.14.0:
+ resolution: {integrity: sha512-O2ok6N/bQ9NA9nJ22r/PRQQYkUe9JwfDMjBPkQ+8OwsVH4TpA5skIAM2wc0k+rni5lVbAVONVyBvgi1rF2vEPA==}
engines: {node: '>=16.14.0', npm: '>=8.1.0'}
- marchingsquares@1.3.3:
- resolution: {integrity: sha512-gz6nNQoVK7Lkh2pZulrT4qd4347S/toG9RXH2pyzhLgkL5mLkBoqgv4EvAGXcV0ikDW72n/OQb3Xe8bGagQZCg==}
+ maplibre-gl@5.6.0:
+ resolution: {integrity: sha512-7TuHMozUC4rlIp08bSsxCixFn18P24otrlZU/7UGCO5RufFTJadFzauTrvBHr9FB67MbJ6nvFXEftGd0bUl4Iw==}
+ engines: {node: '>=16.14.0', npm: '>=8.1.0'}
martinez-polygon-clipping@0.7.4:
resolution: {integrity: sha512-jBEwrKtA0jTagUZj2bnmb4Yg2s4KnJGRePStgI7bAVjtcipKiF39R4LZ2V/UT61jMYWrTcBhPazexeqd6JAVtw==}
@@ -8791,6 +9779,9 @@ packages:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
engines: {node: '>= 0.4'}
+ md5@2.3.0:
+ resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
+
mdn-data@2.0.14:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
@@ -8812,9 +9803,8 @@ packages:
resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
engines: {node: '>= 4.0.0'}
- memfs@4.38.2:
- resolution: {integrity: sha512-FpWsVHpAkoSh/LfY1BgAl72BVd374ooMRtDi2VqzBycX4XEfvC0XKACCe0C9VRZoYq5viuoyTv6lYXZ/Q7TrLQ==}
- engines: {node: '>= 4.0.0'}
+ memfs@4.51.0:
+ resolution: {integrity: sha512-4zngfkVM/GpIhC8YazOsM6E8hoB33NP0BCESPOA6z7qaL6umPJNqkO8CNYaLV2FB2MV6H1O3x2luHHOSqppv+A==}
memoizerific@1.11.3:
resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==}
@@ -8860,9 +9850,9 @@ packages:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
- mime-types@3.0.1:
- resolution: {integrity: sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==}
- engines: {node: '>= 0.6'}
+ mime-types@3.0.2:
+ resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==}
+ engines: {node: '>=18'}
mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
@@ -8896,6 +9886,10 @@ packages:
resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==}
engines: {node: 20 || >=22}
+ minimatch@10.1.1:
+ resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==}
+ engines: {node: 20 || >=22}
+
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
@@ -8936,8 +9930,8 @@ packages:
mlly@1.8.0:
resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==}
- mocha@11.7.2:
- resolution: {integrity: sha512-lkqVJPmqqG/w5jmmFtiRvtA2jkDyNVUcefFJKb2uyX4dekk8Okgqop3cgbFiaIvj8uCRJVTP5x9dfxGyXm2jvQ==}
+ mocha@11.7.5:
+ resolution: {integrity: sha512-mTT6RgopEYABzXWFx+GcJ+ZQ32kp4fMf0xvpZIIfSq9Z8lC/++MtcCnQ9t5FP2veYEP95FIYSvW+U9fV4xrlig==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
@@ -8964,8 +9958,8 @@ packages:
murmurhash-js@1.0.0:
resolution: {integrity: sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==}
- nan@2.23.0:
- resolution: {integrity: sha512-1UxuyYGdoQHcGg87Lkqm3FzefucTa0NAiOcuRsDmysep3c1LVCRK2krrUDafMWtjSG04htvAmvg96+SDknOmgQ==}
+ nan@2.23.1:
+ resolution: {integrity: sha512-r7bBUGKzlqk8oPBDYxt6Z0aEdF1G1rwlMcLk8LCOMbOzf0mG+JUfUzG4fIMWwHWP0iyaLWEQZJmtB7nOHEm/qw==}
nanoid@3.3.11:
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
@@ -8976,8 +9970,8 @@ packages:
resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
engines: {node: '>=0.10.0'}
- napi-postinstall@0.3.3:
- resolution: {integrity: sha512-uTp172LLXSxuSYHv/kou+f6KW3SMppU9ivthaVTXian9sOt3XM/zHYHpRZiLgQoxeWfYUnslNWQHF1+G71xcow==}
+ napi-postinstall@0.3.4:
+ resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
hasBin: true
@@ -9037,8 +10031,8 @@ packages:
resolution: {integrity: sha512-ZZFkaYzIfGfBvSM6QhA9dM8EEaUJOVewzGSRcXWbJELXDj0lajAtKaENCYxvF5yE+TgHg6NQb0CmgYMsMdcNJQ==}
engines: {node: '>= 0.4'}
- node-releases@2.0.19:
- resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
+ node-releases@2.0.27:
+ resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
node-schedule@2.1.1:
resolution: {integrity: sha512-OXdegQq03OmXEjt2hZP33W2YPs/E5BcFQks46+G2gAxs4gHOIVD1u7EqlYLYSKsaIpyKCK9Gbk0ta1/gjRSMRQ==}
@@ -9059,8 +10053,8 @@ packages:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- normalize-url@8.0.2:
- resolution: {integrity: sha512-Ee/R3SyN4BuynXcnTaekmaVdbDAEiNrHqjQIA37mHU8G9pf7aaAD4ZX3XjBLo6rsdcxA/gtkcNYZLt30ACgynw==}
+ normalize-url@8.1.0:
+ resolution: {integrity: sha512-X06Mfd/5aKsRHc0O0J5CUedwnPmnDtLF2+nq+KN9KSDlJHkPuh0JUviWjEWMe0SW/9TDdSLVPuk7L5gGTIA1/w==}
engines: {node: '>=14.16'}
npm-package-arg@11.0.1:
@@ -9082,8 +10076,8 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nwsapi@2.2.21:
- resolution: {integrity: sha512-o6nIY3qwiSXl7/LuOU0Dmuctd34Yay0yeuZRLFmDPrrdHpXKFndPj3hM+YEPVHYC5fx2otBx4Ilc/gyYSAUaIA==}
+ nwsapi@2.2.22:
+ resolution: {integrity: sha512-ujSMe1OWVn55euT1ihwCI1ZcAaAU3nxUiDwfDQldc51ZXaB9m2AyOn6/jh1BLe2t/G8xd6uKG1UBF2aZJeg2SQ==}
nx@19.8.4:
resolution: {integrity: sha512-fc833c3UKo6kuoG4z0kSKet17yWym3VzcQ+yPWYspxxxd8GFVVk42+9wieyVQDi9YqtKZQ6PdQfSEPm59/M7SA==}
@@ -9121,20 +10115,8 @@ packages:
'@swc/core':
optional: true
- nx@21.4.1:
- resolution: {integrity: sha512-nD8NjJGYk5wcqiATzlsLauvyrSHV2S2YmM2HBIKqTTwVP2sey07MF3wDB9U2BwxIjboahiITQ6pfqFgB79TF2A==}
- hasBin: true
- peerDependencies:
- '@swc-node/register': ^1.8.0
- '@swc/core': ^1.3.85
- peerDependenciesMeta:
- '@swc-node/register':
- optional: true
- '@swc/core':
- optional: true
-
- nx@21.5.1:
- resolution: {integrity: sha512-DnWUrqMy2pNzPR6DYRVXZwiMyXrjJhUKEdEW0dGFUuHYYS7fOCfqSwj91Zr7LsAQ70WLOOY3z3+UAcQY4Dkr/A==}
+ nx@21.6.9:
+ resolution: {integrity: sha512-RPuIb04QIOE2WLDcvKDjrAQlkI9+EnP8/9KyG/I296JA1lJhlIk7BH3F6Py7uLHD7B1adSBsCDf/tT6540Ng7A==}
hasBin: true
peerDependencies:
'@swc-node/register': ^1.8.0
@@ -9253,8 +10235,8 @@ packages:
resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
engines: {node: '>=18'}
- osm2geojson-lite@1.1.2:
- resolution: {integrity: sha512-6s1uW548fdyLTJ4Cp/hQTKvdgCl/E8nUvBMEzUXnAJPHAFHoIhwMqZ3KGdph2A1g48rsCeA6gVnkPruWGiwupw==}
+ osm2geojson-lite@1.2.0:
+ resolution: {integrity: sha512-NheOlfQqtCqTshSTRc5e0XX6sgEca7/iIDng4tF649vcMiCJMUi0lqRzHWVQWGrkPh52Z4rDax8NqaXngdo96A==}
hasBin: true
bundledDependencies: []
@@ -9322,6 +10304,9 @@ packages:
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+ pako@1.0.11:
+ resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
+
pako@2.1.0:
resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
@@ -9332,6 +10317,9 @@ packages:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
+ parse-headers@2.0.6:
+ resolution: {integrity: sha512-Tz11t3uKztEW5FEVZnj1ox8GKblWn+PvHY9TmJV5Mll2uHEwRdR/5Li1OlXoECjLYkApdhWy44ocONwXLiKO5A==}
+
parse-json@4.0.0:
resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
engines: {node: '>=4'}
@@ -9401,8 +10389,8 @@ packages:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
- path-scurry@2.0.0:
- resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
+ path-scurry@2.0.1:
+ resolution: {integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==}
engines: {node: 20 || >=22}
path-to-regexp@0.1.12:
@@ -9497,8 +10485,8 @@ packages:
polyclip-ts@0.16.8:
resolution: {integrity: sha512-JPtKbDRuPEuAjuTdhR62Gph7Is2BS1Szx69CFOO3g71lpJDFo78k4tFyi+qFOMVPePEzdSKkpGU3NBXPHHjvKQ==}
- portfinder@1.0.37:
- resolution: {integrity: sha512-yuGIEjDAYnnOex9ddMnKZEMFE0CcGo6zbfzDklkmT1m5z734ss6JMzN9rNB3+RR7iS+F10D4/BVIaXOyh8PQKw==}
+ portfinder@1.0.38:
+ resolution: {integrity: sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg==}
engines: {node: '>= 10.12'}
posix-character-classes@0.1.1:
@@ -9520,6 +10508,9 @@ packages:
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
+ potpack@1.0.2:
+ resolution: {integrity: sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==}
+
potpack@2.1.0:
resolution: {integrity: sha512-pcaShQc1Shq0y+E7GqJqvZj8DTthWV1KeHGdi0Z6IAin2Oi3JnLCOfwnCo84qc+HAp52wT9nK9H7FAJp5a44GQ==}
@@ -9558,6 +10549,10 @@ packages:
resolution: {integrity: sha512-D1tKtYvByrBkFLe2wHJl2bwMJIiT8rW+XA+TiataH79/FszLQMrpGEvzUVkzPau7OCO0Qnrhpe87PqtOAIB8Yw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ pretty-format@30.2.0:
+ resolution: {integrity: sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
proc-log@3.0.0:
resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -9645,6 +10640,14 @@ packages:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
+ quick-lru@6.1.2:
+ resolution: {integrity: sha512-AAFUA5O1d83pIHEhJwWCq/RQcRukCkn/NSm2QsTEMle5f2hP0ChI2+3Xb051PZCkLryI/Ir1MVKviT2FIloaTQ==}
+ engines: {node: '>=12'}
+
+ quick-lru@7.3.0:
+ resolution: {integrity: sha512-k9lSsjl36EJdK7I06v7APZCbyGT2vMTsYSRX1Q2nbYmnkBqgUhRkAuzH08Ciotteu/PLJmIF2+tti7o3C/ts2g==}
+ engines: {node: '>=18'}
+
quickselect@1.1.1:
resolution: {integrity: sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ==}
@@ -9654,33 +10657,35 @@ packages:
quickselect@3.0.0:
resolution: {integrity: sha512-XdjUArbK4Bm5fLLvlm5KpTFOiOThgfWWI4axAZDWg4E/0mKdZyI9tNEfds27qCi1ze/vwTR16kvmmGhRra3c2g==}
- ra-core@5.11.0:
- resolution: {integrity: sha512-R1eMWyCkk7JUzJPklf0pvf4NAYcDl0h8oQvUdl/vbNmpm5hf4tcqOnFU5/DaTSzv9+O/nHh1QykKskg1PFbR7w==}
+ ra-core@5.13.2:
+ resolution: {integrity: sha512-x02gVrawSU5aFdiu/ICvOQXO82JMZwoSMnQMYHewBllU0RTv30k/zTjLYrKflo0aSZZpBR8Cx5MT01joDfitNw==}
peerDependencies:
+ '@tanstack/react-query': ^5.83.0
react: ^18.0.0 || ^19.0.0
react-dom: ^18.0.0 || ^19.0.0
- react-hook-form: ^7.53.0
+ react-hook-form: ^7.65.0
react-router: ^6.28.1 || ^7.1.1
react-router-dom: ^6.28.1 || ^7.1.1
- ra-data-fakerest@5.11.0:
- resolution: {integrity: sha512-hU5Of7cEZ4u3dwbuum1DktFuN7DkYk3hCSIlorPhGs0V2fyYUQ7aYmy7RDYsp0MyOQrT4y28XsFl7LWGt4syPg==}
+ ra-data-fakerest@5.13.2:
+ resolution: {integrity: sha512-GrahvWlcRBdVbzYBmkAUnIwbaO9jNlHUC0ZABDSyB9rbvtwMYptGorax/jGZqgYDL+I7Mjz9o60DmDRrz05pnw==}
peerDependencies:
ra-core: ^5.0.0
- ra-i18n-polyglot@5.11.0:
- resolution: {integrity: sha512-kdrdfz4YMlCkQwc6St2NhKsbdtle7DaOlq4q9XZcbv4P2yBCCRaPjjmanllm9QbyIxdswLq6VlfZKmLtTEos3Q==}
+ ra-i18n-polyglot@5.13.2:
+ resolution: {integrity: sha512-k5b+TH/I6G99zUPRZ+piSInlY5rDgjCHLL7lz4EMMLLOXrhRtaclxrs/RdONMWHPEAj8u99Au6LCZ/JBNZ1Z/A==}
- ra-language-english@5.11.0:
- resolution: {integrity: sha512-QDVzLe0U2oGDT20rycOYf0S/xVXw6szzGSMCr5GAYA9/ruU9p/78Db9eLnghlkoIGINqKl+9fEt3ccOygFs8ww==}
+ ra-language-english@5.13.2:
+ resolution: {integrity: sha512-jvCQE5zC47btjpQVELPxEsaAGW2fzXHX47v9ONGKz7jZn5MtVh6Wl6LOTIBnSIpzQEZvAi13rcOcKxP7ICMq2A==}
- ra-ui-materialui@5.11.0:
- resolution: {integrity: sha512-7/mWe62w5a7jUXeNclT2CnSBNSW4Y2EJg9uXJZaPzDcAsaHwPWrp9liNHlhqlSBV/Z8tLmaMa1PwwmKc6SSpWQ==}
+ ra-ui-materialui@5.13.2:
+ resolution: {integrity: sha512-TfoBhDaaF28ucsS0vlpQuMKpridqdW8sxjsdLL902WT/I6vCppqZ5ZMNuDxmFN7e4z8S5OeLsan7Q2RZAER9Sw==}
peerDependencies:
'@mui/icons-material': ^5.16.12 || ^6.0.0 || ^7.0.0
'@mui/material': ^5.16.12 || ^6.0.0 || ^7.0.0
'@mui/system': ^5.15.20 || ^6.0.0 || ^7.0.0
'@mui/utils': ^5.15.20 || ^6.0.0 || ^7.0.0
+ '@tanstack/react-query': ^5.83.0
csstype: ^3.1.3
ra-core: ^5.0.0
react: ^18.0.0 || ^19.0.0
@@ -9723,8 +10728,8 @@ packages:
rbush@3.0.1:
resolution: {integrity: sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==}
- react-admin@5.11.0:
- resolution: {integrity: sha512-IZisRerv7hvGCJifIjWjHtgU1qzv+lHemuW1kb5ThLfdlP91AsissdLDmXRAdfuI77gTc3ahGKzjVZbht13F2g==}
+ react-admin@5.13.2:
+ resolution: {integrity: sha512-4T7kVA2qveKZQ8RF1RzygQPRG0GnEdA7YA3v4BAA9kCk0BVg96bbAgOXvRUAnVh77gl8Q1r+MY0jr88q1E+mCQ==}
peerDependencies:
react: ^18.0.0 || ^19.0.0
react-dom: ^18.0.0 || ^19.0.0
@@ -9756,14 +10761,14 @@ packages:
peerDependencies:
typescript: '>= 4.3.x'
- react-docgen@8.0.1:
- resolution: {integrity: sha512-kQKsqPLplY3Hx4jGnM3jpQcG3FQDt7ySz32uTHt3C9HAe45kNXG+3o16Eqn3Fw1GtMfHoN3b4J/z2e6cZJCmqQ==}
+ react-docgen@8.0.2:
+ resolution: {integrity: sha512-+NRMYs2DyTP4/tqWz371Oo50JqmWltR1h2gcdgUMAWZJIAvrd0/SqlCfx7tpzpl/s36rzw6qH2MjoNrxtRNYhA==}
engines: {node: ^20.9.0 || >=22}
- react-dom@19.1.0:
- resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
+ react-dom@19.2.1:
+ resolution: {integrity: sha512-ibrK8llX2a4eOskq1mXKu/TGZj9qzomO+sNfO98M6d9zIPOEhlBkMkBUBLd1vgS0gQsLDBzA+8jJBVXDnfHmJg==}
peerDependencies:
- react: ^19.1.0
+ react: ^19.2.1
react-draggable@4.5.0:
resolution: {integrity: sha512-VC+HBLEZ0XJxnOxVAZsdRi8rD04Iz3SiiKOoYzamjylUcju/hP9np/aZdLHf/7WOD268WMoNJMvYfB5yAK45cw==}
@@ -9785,22 +10790,38 @@ packages:
react-error-overlay@6.1.0:
resolution: {integrity: sha512-SN/U6Ytxf1QGkw/9ve5Y+NxBbZM6Ht95tuXNMKs8EJyFa/Vy/+Co3stop3KBHARfn/giv+Lj1uUnTfOJ3moFEQ==}
- react-hook-form@7.62.0:
- resolution: {integrity: sha512-7KWFejc98xqG/F4bAxpL41NB3o1nnvQO1RWZT3TqRZYL8RryQETGfEdVnJN2fy1crCiBLLjkRBVK05j24FxJGA==}
+ react-hook-form@7.66.1:
+ resolution: {integrity: sha512-2KnjpgG2Rhbi+CIiIBQQ9Df6sMGH5ExNyFl4Hw9qO7pIqMBR8Bvu9RQyjl3JM4vehzCh9soiNUM/xYMswb2EiA==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18 || ^19
- react-hotkeys-hook@5.1.0:
- resolution: {integrity: sha512-GCNGXjBzV9buOS3REoQFmSmE4WTvBhYQ0YrAeeMZI83bhXg3dRWsLHXDutcVDdEjwJqJCxk5iewWYX5LtFUd7g==}
+ react-hotkeys-hook@5.2.1:
+ resolution: {integrity: sha512-xbKh6zJxd/vJHT4Bw4+0pBD662Fk20V+VFhLqciCg+manTVO4qlqRqiwFOYelfHN9dBvWj9vxaPkSS26ZSIJGg==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- react-i18next@15.7.3:
- resolution: {integrity: sha512-AANws4tOE+QSq/IeMF/ncoHlMNZaVLxpa5uUGW1wjike68elVYr0018L9xYoqBr1OFO7G7boDPrbn0HpMCJxTw==}
+ react-i18next@15.7.4:
+ resolution: {integrity: sha512-nyU8iKNrI5uDJch0z9+Y5XEr34b0wkyYj3Rp+tfbahxtlswxSCjcUL9H0nqXo9IR3/t5Y5PKIA3fx3MfUyR9Xw==}
+ peerDependencies:
+ i18next: '>= 23.4.0'
+ react: '>= 16.8.0'
+ react-dom: '*'
+ react-native: '*'
+ typescript: ^5
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
+ react-native:
+ optional: true
+ typescript:
+ optional: true
+
+ react-i18next@16.4.1:
+ resolution: {integrity: sha512-GzsYomxb1/uE7nlJm0e1qQ8f+W9I3Xirh9VoycZIahk6C8Pmv/9Fd0ek6zjf1FSgtGLElDGqwi/4FOHEGUbsEQ==}
peerDependencies:
- i18next: '>= 25.4.1'
+ i18next: '>= 25.6.2'
react: '>= 16.8.0'
react-dom: '*'
react-native: '*'
@@ -9822,8 +10843,8 @@ packages:
react-is@18.3.1:
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
- react-is@19.1.1:
- resolution: {integrity: sha512-tr41fA15Vn8p4X9ntI+yCyeGSf1TlYaY5vlTZfQmeLBrFo3psOPX6HhTDnFNL9uj3EhP0KAQ80cugCl4b4BERA==}
+ react-is@19.2.0:
+ resolution: {integrity: sha512-x3Ax3kNSMIIkyVYhWPyO09bu0uttcAIoecO/um/rKGQ4EltYWVYtyiGkS/3xMynrbVQdS69Jhlv8FXUEZehlzA==}
react-moveable@0.56.0:
resolution: {integrity: sha512-FmJNmIOsOA36mdxbrc/huiE4wuXSRlmon/o+/OrfNhSiYYYL0AV5oObtPluEhb2Yr/7EfYWBHTxF5aWAvjg1SA==}
@@ -9844,15 +10865,19 @@ packages:
resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
engines: {node: '>=0.10.0'}
- react-router-dom@7.8.2:
- resolution: {integrity: sha512-Z4VM5mKDipal2jQ385H6UBhiiEDlnJPx6jyWsTYoZQdl5TrjxEV2a9yl3Fi60NBJxYzOTGTTHXPi0pdizvTwow==}
+ react-refresh@0.18.0:
+ resolution: {integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==}
+ engines: {node: '>=0.10.0'}
+
+ react-router-dom@7.9.6:
+ resolution: {integrity: sha512-2MkC2XSXq6HjGcihnx1s0DBWQETI4mlis4Ux7YTLvP67xnGxCvq+BcCQSO81qQHVUTM1V53tl4iVVaY5sReCOA==}
engines: {node: '>=20.0.0'}
peerDependencies:
react: '>=18'
react-dom: '>=18'
- react-router@7.8.2:
- resolution: {integrity: sha512-7M2fR1JbIZ/jFWqelpvSZx+7vd7UlBTfdZqf6OSdF9g6+sfdqJDAWcak6ervbHph200ePlu+7G8LdoiC3ReyAQ==}
+ react-router@7.9.6:
+ resolution: {integrity: sha512-Y1tUp8clYRXpfPITyuifmSoE2vncSME18uVLgaqyxh9H35JWpIfzHo+9y3Fzh5odk/jxPW29IgLgzcdwxGqyNA==}
engines: {node: '>=20.0.0'}
peerDependencies:
react: '>=18'
@@ -9870,8 +10895,8 @@ packages:
react: '>=16.6.0'
react-dom: '>=16.6.0'
- react@19.1.0:
- resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
+ react@19.2.1:
+ resolution: {integrity: sha512-DGrYcCWK7tvYMnWh79yrPHt+vdx9tY+1gPZa7nJQtO/p8bLTDaHp4dzwEhQB7pZ4Xe3ok4XKuEPrVuc+wlpkmw==}
engines: {node: '>=0.10.0'}
reactcss@1.2.3:
@@ -9945,8 +10970,8 @@ packages:
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
engines: {node: '>= 0.4'}
- regenerate-unicode-properties@10.2.0:
- resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
+ regenerate-unicode-properties@10.2.2:
+ resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==}
engines: {node: '>=4'}
regenerate@1.4.2:
@@ -9963,15 +10988,15 @@ packages:
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
- regexpu-core@6.2.0:
- resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
+ regexpu-core@6.4.0:
+ resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==}
engines: {node: '>=4'}
regjsgen@0.8.0:
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
- regjsparser@0.12.0:
- resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
+ regjsparser@0.13.0:
+ resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==}
hasBin: true
relateurl@0.2.7:
@@ -10066,8 +11091,8 @@ packages:
resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
engines: {node: '>=10'}
- resolve@1.22.10:
- resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ resolve@1.22.11:
+ resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
engines: {node: '>= 0.4'}
hasBin: true
@@ -10116,16 +11141,16 @@ packages:
robust-predicates@3.0.2:
resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==}
- rollup@4.50.0:
- resolution: {integrity: sha512-/Zl4D8zPifNmyGzJS+3kVoyXeDeT/GrsJM94sACNg9RtUE0hrHa1bNPtRSrfHTMH5HjRzce6K7rlTh3Khiw+pw==}
+ rollup@4.53.3:
+ resolution: {integrity: sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
rrweb-cssom@0.8.0:
resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==}
- rslog@1.2.11:
- resolution: {integrity: sha512-YgMMzQf6lL9q4rD9WS/lpPWxVNJ1ttY9+dOXJ0+7vJrKCAOT4GH0EiRnBi9mKOitcHiOwjqJPV1n/HRqqgZmOQ==}
+ rslog@1.3.1:
+ resolution: {integrity: sha512-cO4V+79h7+gSLKx1qk1jUhHzuCPN7LiH8PoEbmbGhQITMMk39JtyjxTkbSfL9P4CoR/RpOiJrDyVM/Iprhvq7w==}
rst-selector-parser@2.2.3:
resolution: {integrity: sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==}
@@ -10134,8 +11159,8 @@ packages:
resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==}
engines: {node: 6.* || >= 7.*}
- run-applescript@7.0.0:
- resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
+ run-applescript@7.1.0:
+ resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
engines: {node: '>=18'}
run-parallel@1.2.0:
@@ -10180,15 +11205,15 @@ packages:
deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added
hasBin: true
- sax@1.4.1:
- resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
+ sax@1.4.3:
+ resolution: {integrity: sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ==}
saxes@6.0.0:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
- scheduler@0.26.0:
- resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
+ scheduler@0.27.0:
+ resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
schema-utils@2.7.0:
resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
@@ -10198,8 +11223,8 @@ packages:
resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
engines: {node: '>= 10.13.0'}
- schema-utils@4.3.2:
- resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==}
+ schema-utils@4.3.3:
+ resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==}
engines: {node: '>= 10.13.0'}
secure-compare@3.0.1:
@@ -10245,8 +11270,8 @@ packages:
engines: {node: '>=10'}
hasBin: true
- semver@7.7.2:
- resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
+ semver@7.7.3:
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
engines: {node: '>=10'}
hasBin: true
@@ -10269,8 +11294,8 @@ packages:
resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
- set-cookie-parser@2.7.1:
- resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==}
+ set-cookie-parser@2.7.2:
+ resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==}
set-function-length@1.2.2:
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
@@ -10288,6 +11313,9 @@ packages:
resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
engines: {node: '>=0.10.0'}
+ setimmediate@1.0.5:
+ resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
+
setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
@@ -10400,6 +11428,9 @@ packages:
resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
engines: {node: '>=0.10.0'}
+ snappyjs@0.6.1:
+ resolution: {integrity: sha512-YIK6I2lsH072UE0aOFxxY1dPDCS43I5ktqHpeAsuLNYWkE5pGxRGWfDM4/vSUfNzXjC1Ivzt3qx31PCLmc9yqg==}
+
sockjs@0.3.24:
resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
@@ -10532,8 +11563,8 @@ packages:
resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
engines: {node: '>= 0.8'}
- std-env@3.9.0:
- resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==}
+ std-env@3.10.0:
+ resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
stdin-discarder@0.2.2:
resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
@@ -10563,8 +11594,8 @@ packages:
resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==}
engines: {node: '>=8.0'}
- streamx@2.22.1:
- resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==}
+ streamx@2.23.0:
+ resolution: {integrity: sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==}
strict-uri-encode@2.0.0:
resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
@@ -10634,8 +11665,8 @@ packages:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
- strip-ansi@7.1.0:
- resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
+ strip-ansi@7.1.2:
+ resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
engines: {node: '>=12'}
strip-bom@3.0.0:
@@ -10661,16 +11692,19 @@ packages:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
- strip-indent@4.0.0:
- resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==}
+ strip-indent@4.1.1:
+ resolution: {integrity: sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==}
engines: {node: '>=12'}
strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- strip-literal@3.0.0:
- resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
+ strip-literal@3.1.0:
+ resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
+
+ strnum@1.1.2:
+ resolution: {integrity: sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==}
strong-log-transformer@2.1.0:
resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==}
@@ -10756,8 +11790,8 @@ packages:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
engines: {node: '>=6'}
- tapable@2.2.3:
- resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==}
+ tapable@2.3.0:
+ resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
engines: {node: '>=6'}
tar-stream@2.2.0:
@@ -10791,8 +11825,8 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- terser@5.44.0:
- resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==}
+ terser@5.44.1:
+ resolution: {integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==}
engines: {node: '>=10'}
hasBin: true
@@ -10813,15 +11847,27 @@ packages:
text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
+ texture-compressor@1.0.2:
+ resolution: {integrity: sha512-dStVgoaQ11mA5htJ+RzZ51ZxIZqNOgWKAIvtjLrW1AliQQLCmrDqNzQZ8Jh91YealQ95DXt4MEduLzJmbs6lig==}
+ hasBin: true
+
thingies@2.5.0:
resolution: {integrity: sha512-s+2Bwztg6PhWUD7XMfeYm5qliDdSiZm7M7n8KjTkIsm3l/2lgVRc2/Gx/v+ZX8lT4FMA+i8aQvhcWylldc+ZNw==}
engines: {node: '>=10.18'}
peerDependencies:
tslib: ^2
+ three-stdlib@2.36.1:
+ resolution: {integrity: sha512-XyGQrFmNQ5O/IoKm556ftwKsBg11TIb301MB5dWNicziQBEs2g3gtOYIf7pFiLa0zI2gUwhtCjv9fmjnxKZ1Cg==}
+ peerDependencies:
+ three: '>=0.128.0'
+
three@0.179.1:
resolution: {integrity: sha512-5y/elSIQbrvKOISxpwXCR4sQqHtGiOI+MKLc3SsBdDXA2hz3Mdp3X59aUp8DyybMa34aeBwbFTpdoLJaUDEWSw==}
+ three@0.182.0:
+ resolution: {integrity: sha512-GbHabT+Irv+ihI1/f5kIIsZ+Ef9Sl5A1Y7imvS5RQjWgtTPfPnZ43JmlYI7NtCRDK9zir20lQpfg8/9Yd02OvQ==}
+
throttleit@1.0.1:
resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==}
@@ -10847,8 +11893,8 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- tinyglobby@0.2.14:
- resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
+ tinyglobby@0.2.15:
+ resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
engines: {node: '>=12.0.0'}
tinypool@1.1.1:
@@ -10868,8 +11914,8 @@ packages:
resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
engines: {node: '>=14.0.0'}
- tinyspy@4.0.3:
- resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==}
+ tinyspy@4.0.4:
+ resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==}
engines: {node: '>=14.0.0'}
tldts-core@6.1.86:
@@ -10968,8 +12014,8 @@ packages:
resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
engines: {node: '>=6.10'}
- ts-jest@29.4.1:
- resolution: {integrity: sha512-SaeUtjfpg9Uqu8IbeDKtdaS0g8lS6FT6OzM3ezrDfErPJPHNDo/Ey+VFGP1bQIDfagYDLyRpd7O15XpG1Es2Uw==}
+ ts-jest@29.4.5:
+ resolution: {integrity: sha512-HO3GyiWn2qvTQA4kTgjDcXiMwYQt68a1Y8+JuLRVpdIzm+UOLSHgl/XqR4c6nzJkq5rOkjc02O2I7P7l/Yof0Q==}
engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -11123,8 +12169,8 @@ packages:
typedarray@0.0.7:
resolution: {integrity: sha512-ueeb9YybpjhivjbHP2LdFDAjbS948fGEPj+ACAMs4xCMmh72OCOMQWBQKlaN4ZNQ04yfLSDLSx1tGRIoWimObQ==}
- typescript-eslint@8.42.0:
- resolution: {integrity: sha512-ozR/rQn+aQXQxh1YgbCzQWDFrsi9mcg+1PM3l/z5o1+20P7suOIaNg515bpr/OYt6FObz/NHcBstydDLHWeEKg==}
+ typescript-eslint@8.48.0:
+ resolution: {integrity: sha512-fcKOvQD9GUn3Xw63EgiDqhvWJ5jsyZUaekl3KVpGsDJnN46WJTe3jWxtQP9lMZm1LJNkFLlTaWAxK2vUQR+cqw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -11140,8 +12186,8 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- typescript@5.9.2:
- resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
+ typescript@5.9.3:
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -11164,11 +12210,11 @@ packages:
unbzip2-stream@1.4.3:
resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==}
- undici-types@7.10.0:
- resolution: {integrity: sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==}
+ undici-types@7.16.0:
+ resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
- undici@7.15.0:
- resolution: {integrity: sha512-7oZJCPvvMvTd0OlqWsIxTuItTpJBpU1tcbVl24FMn3xt3+VSunwUasmfPJRE57oNO1KsZ4PgA1xTdAX4hq8NyQ==}
+ undici@7.16.0:
+ resolution: {integrity: sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==}
engines: {node: '>=20.18.1'}
unicode-canonical-property-names-ecmascript@2.0.1:
@@ -11179,12 +12225,12 @@ packages:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
- unicode-match-property-value-ecmascript@2.2.0:
- resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
+ unicode-match-property-value-ecmascript@2.2.1:
+ resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==}
engines: {node: '>=4'}
- unicode-property-aliases-ecmascript@2.1.0:
- resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
+ unicode-property-aliases-ecmascript@2.2.0:
+ resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==}
engines: {node: '>=4'}
unicorn-magic@0.1.0:
@@ -11234,8 +12280,8 @@ packages:
resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}
engines: {node: '>=4'}
- update-browserslist-db@1.1.3:
- resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
+ update-browserslist-db@1.1.4:
+ resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -11250,8 +12296,8 @@ packages:
url-join@4.0.1:
resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
- use-sync-external-store@1.5.0:
- resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==}
+ use-sync-external-store@1.6.0:
+ resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -11332,8 +12378,48 @@ packages:
vite:
optional: true
- vite@7.1.4:
- resolution: {integrity: sha512-X5QFK4SGynAeeIt+A7ZWnApdUyHYm+pzv/8/A57LqSGcI88U6R6ipOs3uCesdc6yl7nl+zNO0t8LmqAdXcQihw==}
+ vite@7.2.4:
+ resolution: {integrity: sha512-NL8jTlbo0Tn4dUEXEsUg8KeyG/Lkmc4Fnzb8JXN/Ykm9G4HNImjtABMJgkQoVjOBN/j2WAwDTRytdqJbZsah7w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^20.19.0 || >=22.12.0
+ jiti: '>=1.21.0'
+ less: ^4.0.0
+ lightningcss: ^1.21.0
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: '>=0.54.8'
+ sugarss: ^5.0.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
+ vite@7.2.7:
+ resolution: {integrity: sha512-ITcnkFeR3+fI8P1wMgItjGrR10170d8auB4EpMLPqmx6uxElH3a/hHGQabSHKdqd4FXWO1nFIp9rRn7JQ34ACQ==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
@@ -11438,6 +12524,9 @@ packages:
resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
engines: {node: '>= 8'}
+ web-worker@1.5.0:
+ resolution: {integrity: sha512-RiMReJrTAiA+mBjGONMnjVDP2u3p9R1vkcGz6gDIrOMT3oGuYwX2WRMYI9ipkphSuE5XKEhydbhNEJh4NY9mlw==}
+
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
@@ -11453,8 +12542,8 @@ packages:
engines: {node: '>= 10.13.0'}
hasBin: true
- webpack-dev-middleware@7.4.2:
- resolution: {integrity: sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==}
+ webpack-dev-middleware@7.4.5:
+ resolution: {integrity: sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA==}
engines: {node: '>= 18.12.0'}
peerDependencies:
webpack: ^5.0.0
@@ -11486,8 +12575,8 @@ packages:
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
- webpack@5.101.3:
- resolution: {integrity: sha512-7b0dTKR3Ed//AD/6kkx/o7duS8H3f1a4w3BYpIriX4BzIhjkn4teo05cptsxvLesHFKK5KObnadmCHBwGc+51A==}
+ webpack@5.103.0:
+ resolution: {integrity: sha512-HU1JOuV1OavsZ+mfigY0j8d1TgQgbZ6M+J75zDkpEAwYeXjWSqrGJtgnPblJjd/mAyTNQ7ygw0MiKOn6etz8yw==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -11597,8 +12686,8 @@ packages:
wordwrap@1.0.0:
resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
- workerpool@9.3.3:
- resolution: {integrity: sha512-slxCaKbYjEdFT/o2rH9xS1hf4uRDch1w7Uo+apxhZ+sf/1d9e0ZVkn42kPNGP2dgjIx6YFvSevj0zHvbWe2jdw==}
+ workerpool@9.3.4:
+ resolution: {integrity: sha512-TmPRQYYSAnnDiEB0P/Ytip7bFGvqnSU6I2BcuSw7Hx+JSg/DsUi5ebYfc8GYaSdpuvOcEs6dXxPurOYpe9QFwg==}
wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
@@ -11680,6 +12769,9 @@ packages:
resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
engines: {node: '>=18'}
+ xml-utils@1.10.2:
+ resolution: {integrity: sha512-RqM+2o1RYs6T8+3DzDSoTRAUfrvaejbVHcp3+thnAtDKo8LskR+HomLajEy5UjTz24rpka7AxVBRR3g2wTUkJA==}
+
xmlchars@2.2.0:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
@@ -11741,19 +12833,29 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.2.1:
- resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==}
+ yocto-queue@1.2.2:
+ resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==}
engines: {node: '>=12.20'}
+ zod-validation-error@4.0.2:
+ resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ zod: ^3.25.0 || ^4.0.0
+
+ zod@4.1.13:
+ resolution: {integrity: sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==}
+
+ zstd-codec@0.1.5:
+ resolution: {integrity: sha512-v3fyjpK8S/dpY/X5WxqTK3IoCnp/ZOLxn144GZVlNUjtwAchzrVo03h+oMATFhCIiJ5KTr4V3vDQQYz4RU684g==}
+
+ zstddec@0.1.0:
+ resolution: {integrity: sha512-w2NTI8+3l3eeltKAdK8QpiLo/flRAr2p8AGeakfMZOXBxOg9HIu4LVDxBi81sYgVhFhdJjv1OrB5ssI8uFPoLg==}
+
snapshots:
'@adobe/css-tools@4.4.4': {}
- '@ampproject/remapping@2.3.0':
- dependencies:
- '@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.30
-
'@asamuzakjp/css-color@3.2.0':
dependencies:
'@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
@@ -11764,899 +12866,899 @@ snapshots:
'@babel/code-frame@7.27.1':
dependencies:
- '@babel/helper-validator-identifier': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.28.0': {}
+ '@babel/compat-data@7.28.5': {}
- '@babel/core@7.28.3':
+ '@babel/core@7.28.5':
dependencies:
- '@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.3
+ '@babel/generator': 7.28.5
'@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
- '@babel/helpers': 7.28.3
- '@babel/parser': 7.28.3
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
+ '@babel/helpers': 7.28.4
+ '@babel/parser': 7.28.5
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/traverse': 7.28.5
+ '@babel/types': 7.28.5
+ '@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.28.3':
+ '@babel/generator@7.28.5':
dependencies:
- '@babel/parser': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
'@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.30
+ '@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
'@babel/helper-annotate-as-pure@7.27.3':
dependencies:
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.5
'@babel/helper-compilation-targets@7.27.2':
dependencies:
- '@babel/compat-data': 7.28.0
+ '@babel/compat-data': 7.28.5
'@babel/helper-validator-option': 7.27.1
- browserslist: 4.25.4
+ browserslist: 4.28.0
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.3)':
+ '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/helper-member-expression-to-functions': 7.28.5
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.3)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5)
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.5
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.3)':
+ '@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-annotate-as-pure': 7.27.3
- regexpu-core: 6.2.0
+ regexpu-core: 6.4.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.3)':
+ '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
lodash.debounce: 4.0.8
- resolve: 1.22.10
+ resolve: 1.22.11
transitivePeerDependencies:
- supports-color
'@babel/helper-globals@7.28.0': {}
- '@babel/helper-member-expression-to-functions@7.27.1':
+ '@babel/helper-member-expression-to-functions@7.28.5':
dependencies:
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/traverse': 7.28.5
+ '@babel/types': 7.28.5
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.27.1':
dependencies:
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/traverse': 7.28.5
+ '@babel/types': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.3)':
+ '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-module-imports': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.5
'@babel/helper-plugin-utils@7.27.1': {}
- '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.3)':
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-wrap-function': 7.28.3
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.3)':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-member-expression-to-functions': 7.28.5
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/traverse': 7.28.5
+ '@babel/types': 7.28.5
transitivePeerDependencies:
- supports-color
'@babel/helper-string-parser@7.27.1': {}
- '@babel/helper-validator-identifier@7.27.1': {}
+ '@babel/helper-validator-identifier@7.28.5': {}
'@babel/helper-validator-option@7.27.1': {}
'@babel/helper-wrap-function@7.28.3':
dependencies:
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/traverse': 7.28.5
+ '@babel/types': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.28.3':
+ '@babel/helpers@7.28.4':
dependencies:
'@babel/template': 7.27.2
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.5
- '@babel/parser@7.28.3':
+ '@babel/parser@7.28.5':
dependencies:
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.5
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.3)
+ '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.28.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.3)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.28.3)':
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.3)
+ '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.28.3)':
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.5)
- '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.28.3)':
+ '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.5)
- '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.28.3)':
+ '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.28.3)':
+ '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.3)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
- '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.28.3)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.3)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.3)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.3)
- '@babel/traverse': 7.28.3
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.5)
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.3)
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-block-scoping@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.3)':
+ '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.28.3(@babel/core@7.28.3)':
+ '@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-globals': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.3)
- '@babel/traverse': 7.28.3
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5)
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
'@babel/template': 7.27.2
- '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.3)
+ '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-exponentiation-operator@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.3)
+ '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.5)
- '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-logical-assignment-operators@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-modules-systemjs@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.3
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-object-rest-spread@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.3)
- '@babel/traverse': 7.28.3
+ '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.5)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.5)
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.3)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-optional-chaining@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.3)':
+ '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-constant-elements@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-react-constant-elements@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.3)
- '@babel/types': 7.28.2
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5)
+ '@babel/types': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regenerator@7.28.3(@babel/core@7.28.3)':
+ '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-runtime@7.28.3(@babel/core@7.28.3)':
+ '@babel/plugin-transform-runtime@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
- babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.3)
- babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.3)
- babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.3)
+ babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.5)
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.5)
+ babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.5)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.3)':
+ '@babel/plugin-transform-typescript@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.3)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.3)':
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/preset-env@7.28.3(@babel/core@7.28.3)':
+ '@babel/preset-env@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/compat-data': 7.28.0
- '@babel/core': 7.28.3
+ '@babel/compat-data': 7.28.5
+ '@babel/core': 7.28.5
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.3)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.3)
- '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.3)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.3)
- '@babel/plugin-transform-classes': 7.28.3(@babel/core@7.28.3)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.3)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-regenerator': 7.28.3(@babel/core@7.28.3)
- '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.3)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.3)
- babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.3)
- babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.3)
- babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.3)
- core-js-compat: 3.45.1
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.28.5(@babel/core@7.28.5)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.5)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.5)
+ '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.5)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.5)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-block-scoping': 7.28.5(@babel/core@7.28.5)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.5)
+ '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.5)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.5)
+ '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.5)
+ '@babel/plugin-transform-exponentiation-operator': 7.28.5(@babel/core@7.28.5)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-logical-assignment-operators': 7.28.5(@babel/core@7.28.5)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-modules-systemjs': 7.28.5(@babel/core@7.28.5)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.5)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.28.5)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.5)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.5)
+ '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.5)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.5)
+ babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.5)
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.5)
+ babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.5)
+ core-js-compat: 3.47.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.3)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.5
esutils: 2.0.3
- '@babel/preset-react@7.27.1(@babel/core@7.28.3)':
+ '@babel/preset-react@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.28.3)
+ '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.5)
+ '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.28.5)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.27.1(@babel/core@7.28.3)':
+ '@babel/preset-typescript@7.28.5(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.3)
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5)
transitivePeerDependencies:
- supports-color
- '@babel/runtime@7.28.3': {}
+ '@babel/runtime@7.28.4': {}
'@babel/template@7.27.2':
dependencies:
'@babel/code-frame': 7.27.1
- '@babel/parser': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
- '@babel/traverse@7.28.3':
+ '@babel/traverse@7.28.5':
dependencies:
'@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.3
+ '@babel/generator': 7.28.5
'@babel/helper-globals': 7.28.0
- '@babel/parser': 7.28.3
+ '@babel/parser': 7.28.5
'@babel/template': 7.27.2
- '@babel/types': 7.28.2
- debug: 4.4.1(supports-color@8.1.1)
+ '@babel/types': 7.28.5
+ debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
- '@babel/types@7.28.2':
+ '@babel/types@7.28.5':
dependencies:
'@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
'@bcoe/v8-coverage@0.2.3': {}
@@ -12695,12 +13797,12 @@ snapshots:
'@csstools/css-tokenizer@3.0.4': {}
- '@cypress/react@9.0.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(cypress@14.5.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@cypress/react@9.0.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(cypress@14.5.4)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
'@types/react-dom': 19.1.6(@types/react@19.1.8)
cypress: 14.5.4
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.8
@@ -12712,7 +13814,7 @@ snapshots:
combined-stream: 1.0.8
extend: 3.0.2
forever-agent: 0.6.1
- form-data: 4.0.4
+ form-data: 4.0.5
http-signature: 1.4.0
is-typedarray: 1.0.0
isstream: 0.1.2
@@ -12725,19 +13827,19 @@ snapshots:
tunnel-agent: 0.6.0
uuid: 8.3.2
- '@cypress/webpack-dev-server@4.1.1(@rspack/core@1.5.2(@swc/helpers@0.5.17))(cypress@14.5.4)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))':
+ '@cypress/webpack-dev-server@4.1.1(@rspack/core@1.6.5(@swc/helpers@0.5.17))(cypress@14.5.4)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))':
dependencies:
cypress: 14.5.4
find-up: 6.3.0
fs-extra: 9.1.0
- html-webpack-plugin-4: html-webpack-plugin@4.5.2(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
- html-webpack-plugin-5: html-webpack-plugin@5.6.4(@rspack/core@1.5.2(@swc/helpers@0.5.17))(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
+ html-webpack-plugin-4: html-webpack-plugin@4.5.2(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
+ html-webpack-plugin-5: html-webpack-plugin@5.6.5(@rspack/core@1.6.5(@swc/helpers@0.5.17))(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
local-pkg: 0.4.1
- semver: 7.7.2
- speed-measure-webpack-plugin: 1.4.2(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
+ semver: 7.7.3
+ speed-measure-webpack-plugin: 1.4.2(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
tslib: 2.8.1
webpack-bundle-analyzer: 4.10.2
- webpack-dev-server: 5.2.2(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
+ webpack-dev-server: 5.2.2(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
webpack-merge: 5.10.0
transitivePeerDependencies:
- '@rspack/core'
@@ -12757,27 +13859,27 @@ snapshots:
'@daybrush/utils@1.13.0': {}
- '@deck.gl/aggregation-layers@9.1.14(@deck.gl/core@9.1.14)(@deck.gl/layers@9.1.14(@deck.gl/core@9.1.14)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.1.9)(@luma.gl/engine@9.1.9(@luma.gl/core@9.1.9)(@luma.gl/shadertools@9.1.9(@luma.gl/core@9.1.9))))(@luma.gl/core@9.1.9)(@luma.gl/engine@9.1.9(@luma.gl/core@9.1.9)(@luma.gl/shadertools@9.1.9(@luma.gl/core@9.1.9)))':
+ '@deck.gl/aggregation-layers@9.2.2(@deck.gl/core@9.2.2)(@deck.gl/layers@9.2.2(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))))(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))':
dependencies:
- '@deck.gl/core': 9.1.14
- '@deck.gl/layers': 9.1.14(@deck.gl/core@9.1.14)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.1.9)(@luma.gl/engine@9.1.9(@luma.gl/core@9.1.9)(@luma.gl/shadertools@9.1.9(@luma.gl/core@9.1.9)))
- '@luma.gl/constants': 9.1.9
- '@luma.gl/core': 9.1.9
- '@luma.gl/engine': 9.1.9(@luma.gl/core@9.1.9)(@luma.gl/shadertools@9.1.9(@luma.gl/core@9.1.9))
- '@luma.gl/shadertools': 9.1.9(@luma.gl/core@9.1.9)
+ '@deck.gl/core': 9.2.2
+ '@deck.gl/layers': 9.2.2(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))
+ '@luma.gl/constants': 9.2.4
+ '@luma.gl/core': 9.2.4
+ '@luma.gl/engine': 9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))
+ '@luma.gl/shadertools': 9.2.4(@luma.gl/core@9.2.4)
'@math.gl/core': 4.1.0
'@math.gl/web-mercator': 4.1.0
d3-hexbin: 0.2.2
- '@deck.gl/core@9.1.14':
+ '@deck.gl/core@9.2.2':
dependencies:
'@loaders.gl/core': 4.3.4
'@loaders.gl/images': 4.3.4(@loaders.gl/core@4.3.4)
- '@luma.gl/constants': 9.1.9
- '@luma.gl/core': 9.1.9
- '@luma.gl/engine': 9.1.9(@luma.gl/core@9.1.9)(@luma.gl/shadertools@9.1.9(@luma.gl/core@9.1.9))
- '@luma.gl/shadertools': 9.1.9(@luma.gl/core@9.1.9)
- '@luma.gl/webgl': 9.1.9(@luma.gl/core@9.1.9)
+ '@luma.gl/constants': 9.2.4
+ '@luma.gl/core': 9.2.4
+ '@luma.gl/engine': 9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))
+ '@luma.gl/shadertools': 9.2.4(@luma.gl/core@9.2.4)
+ '@luma.gl/webgl': 9.2.4(@luma.gl/core@9.2.4)
'@math.gl/core': 4.1.0
'@math.gl/sun': 4.1.0
'@math.gl/types': 4.1.0
@@ -12789,62 +13891,112 @@ snapshots:
gl-matrix: 3.4.4
mjolnir.js: 3.0.0
- '@deck.gl/layers@9.1.14(@deck.gl/core@9.1.14)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.1.9)(@luma.gl/engine@9.1.9(@luma.gl/core@9.1.9)(@luma.gl/shadertools@9.1.9(@luma.gl/core@9.1.9)))':
+ '@deck.gl/extensions@9.2.5(@deck.gl/core@9.2.2)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))':
+ dependencies:
+ '@deck.gl/core': 9.2.2
+ '@luma.gl/constants': 9.2.4
+ '@luma.gl/core': 9.2.4
+ '@luma.gl/engine': 9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))
+ '@luma.gl/shadertools': 9.2.4(@luma.gl/core@9.2.4)
+ '@math.gl/core': 4.1.0
+
+ '@deck.gl/geo-layers@9.2.5(@deck.gl/core@9.2.2)(@deck.gl/extensions@9.2.5(@deck.gl/core@9.2.2)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))))(@deck.gl/layers@9.2.2(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))))(@deck.gl/mesh-layers@9.2.5(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/gltf@9.2.4(@luma.gl/constants@9.2.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@loaders.gl/core@4.3.4)(@luma.gl/constants@9.2.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))':
+ dependencies:
+ '@deck.gl/core': 9.2.2
+ '@deck.gl/extensions': 9.2.5(@deck.gl/core@9.2.2)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))
+ '@deck.gl/layers': 9.2.2(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))
+ '@deck.gl/mesh-layers': 9.2.5(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/gltf@9.2.4(@luma.gl/constants@9.2.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))
+ '@loaders.gl/3d-tiles': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/gis': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/mvt': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/terrain': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/tiles': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/wms': 4.3.4(@loaders.gl/core@4.3.4)
+ '@luma.gl/core': 9.2.4
+ '@luma.gl/engine': 9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))
+ '@luma.gl/gltf': 9.2.4(@luma.gl/constants@9.2.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))
+ '@luma.gl/shadertools': 9.2.4(@luma.gl/core@9.2.4)
+ '@math.gl/core': 4.1.0
+ '@math.gl/culling': 4.1.0
+ '@math.gl/web-mercator': 4.1.0
+ '@types/geojson': 7946.0.16
+ a5-js: 0.5.0
+ h3-js: 4.3.0
+ long: 3.2.0
+ transitivePeerDependencies:
+ - '@luma.gl/constants'
+
+ '@deck.gl/layers@9.2.2(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))':
dependencies:
- '@deck.gl/core': 9.1.14
+ '@deck.gl/core': 9.2.2
'@loaders.gl/core': 4.3.4
'@loaders.gl/images': 4.3.4(@loaders.gl/core@4.3.4)
'@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
- '@luma.gl/core': 9.1.9
- '@luma.gl/engine': 9.1.9(@luma.gl/core@9.1.9)(@luma.gl/shadertools@9.1.9(@luma.gl/core@9.1.9))
- '@luma.gl/shadertools': 9.1.9(@luma.gl/core@9.1.9)
+ '@luma.gl/core': 9.2.4
+ '@luma.gl/engine': 9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))
+ '@luma.gl/shadertools': 9.2.4(@luma.gl/core@9.2.4)
'@mapbox/tiny-sdf': 2.0.7
'@math.gl/core': 4.1.0
'@math.gl/polygon': 4.1.0
'@math.gl/web-mercator': 4.1.0
earcut: 2.2.4
- '@deck.gl/mapbox@9.1.14(@deck.gl/core@9.1.14)(@luma.gl/core@9.1.9)':
+ '@deck.gl/mapbox@9.2.2(@deck.gl/core@9.2.2)(@luma.gl/constants@9.2.4)(@luma.gl/core@9.2.4)(@math.gl/web-mercator@4.1.0)':
dependencies:
- '@deck.gl/core': 9.1.14
- '@luma.gl/constants': 9.1.9
- '@luma.gl/core': 9.1.9
+ '@deck.gl/core': 9.2.2
+ '@luma.gl/constants': 9.2.4
+ '@luma.gl/core': 9.2.4
'@math.gl/web-mercator': 4.1.0
+ '@deck.gl/mesh-layers@9.2.5(@deck.gl/core@9.2.2)(@loaders.gl/core@4.3.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/gltf@9.2.4(@luma.gl/constants@9.2.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))':
+ dependencies:
+ '@deck.gl/core': 9.2.2
+ '@loaders.gl/gltf': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
+ '@luma.gl/core': 9.2.4
+ '@luma.gl/engine': 9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))
+ '@luma.gl/gltf': 9.2.4(@luma.gl/constants@9.2.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))
+ '@luma.gl/shadertools': 9.2.4(@luma.gl/core@9.2.4)
+ transitivePeerDependencies:
+ - '@loaders.gl/core'
+
'@dimforge/rapier3d-compat@0.12.0': {}
'@discoveryjs/json-ext@0.5.7': {}
- '@dnd-kit/accessibility@3.1.1(react@19.1.0)':
+ '@dnd-kit/accessibility@3.1.1(react@19.2.1)':
dependencies:
- react: 19.1.0
+ react: 19.2.1
tslib: 2.8.1
- '@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@dnd-kit/core@6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@dnd-kit/accessibility': 3.1.1(react@19.1.0)
- '@dnd-kit/utilities': 3.2.2(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@dnd-kit/accessibility': 3.1.1(react@19.2.1)
+ '@dnd-kit/utilities': 3.2.2(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
tslib: 2.8.1
- '@dnd-kit/modifiers@9.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)':
+ '@dnd-kit/modifiers@9.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)':
dependencies:
- '@dnd-kit/core': 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@dnd-kit/utilities': 3.2.2(react@19.1.0)
- react: 19.1.0
+ '@dnd-kit/core': 6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@dnd-kit/utilities': 3.2.2(react@19.2.1)
+ react: 19.2.1
tslib: 2.8.1
- '@dnd-kit/sortable@10.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)':
+ '@dnd-kit/sortable@10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)':
dependencies:
- '@dnd-kit/core': 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@dnd-kit/utilities': 3.2.2(react@19.1.0)
- react: 19.1.0
+ '@dnd-kit/core': 6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@dnd-kit/utilities': 3.2.2(react@19.2.1)
+ react: 19.2.1
tslib: 2.8.1
- '@dnd-kit/utilities@3.2.2(react@19.1.0)':
+ '@dnd-kit/utilities@3.2.2(react@19.2.1)':
dependencies:
- react: 19.1.0
+ react: 19.2.1
tslib: 2.8.1
'@egjs/agent@2.4.4': {}
@@ -12857,12 +14009,12 @@ snapshots:
'@egjs/list-differ@1.0.1': {}
- '@emnapi/core@1.5.0':
+ '@emnapi/core@1.7.1':
dependencies:
'@emnapi/wasi-threads': 1.1.0
tslib: 2.8.1
- '@emnapi/runtime@1.5.0':
+ '@emnapi/runtime@1.7.1':
dependencies:
tslib: 2.8.1
@@ -12873,7 +14025,7 @@ snapshots:
'@emotion/babel-plugin@11.13.5':
dependencies:
'@babel/helper-module-imports': 7.27.1
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
'@emotion/hash': 0.9.2
'@emotion/memoize': 0.9.0
'@emotion/serialize': 1.3.3
@@ -12918,19 +14070,19 @@ snapshots:
'@emotion/memoize@0.9.0': {}
- '@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0)':
+ '@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1)':
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
'@emotion/babel-plugin': 11.13.5
'@emotion/cache': 11.14.0
'@emotion/serialize': 1.3.3
- '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.1.0)
+ '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.2.1)
'@emotion/utils': 1.4.2
'@emotion/weak-memoize': 0.4.0
hoist-non-react-statics: 3.3.2
- react: 19.1.0
+ react: 19.2.1
optionalDependencies:
- '@types/react': 19.1.12
+ '@types/react': 19.2.7
transitivePeerDependencies:
- supports-color
@@ -12940,22 +14092,22 @@ snapshots:
'@emotion/memoize': 0.9.0
'@emotion/unitless': 0.10.0
'@emotion/utils': 1.4.2
- csstype: 3.1.3
+ csstype: 3.2.3
'@emotion/sheet@1.4.0': {}
- '@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)':
+ '@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)':
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
'@emotion/babel-plugin': 11.13.5
'@emotion/is-prop-valid': 1.4.0
- '@emotion/react': 11.14.0(@types/react@19.1.12)(react@19.1.0)
+ '@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.1)
'@emotion/serialize': 1.3.3
- '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.1.0)
+ '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.2.1)
'@emotion/utils': 1.4.2
- react: 19.1.0
+ react: 19.2.1
optionalDependencies:
- '@types/react': 19.1.12
+ '@types/react': 19.2.7
transitivePeerDependencies:
- supports-color
@@ -12963,277 +14115,212 @@ snapshots:
'@emotion/unitless@0.8.1': {}
- '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@19.1.0)':
+ '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@19.2.1)':
dependencies:
- react: 19.1.0
+ react: 19.2.1
'@emotion/utils@1.4.2': {}
'@emotion/weak-memoize@0.4.0': {}
- '@esbuild/aix-ppc64@0.25.5':
- optional: true
-
- '@esbuild/aix-ppc64@0.25.9':
+ '@esbuild/aix-ppc64@0.25.12':
optional: true
'@esbuild/android-arm64@0.17.19':
optional: true
- '@esbuild/android-arm64@0.25.5':
- optional: true
-
- '@esbuild/android-arm64@0.25.9':
+ '@esbuild/android-arm64@0.25.12':
optional: true
'@esbuild/android-arm@0.17.19':
optional: true
- '@esbuild/android-arm@0.25.5':
- optional: true
-
- '@esbuild/android-arm@0.25.9':
+ '@esbuild/android-arm@0.25.12':
optional: true
'@esbuild/android-x64@0.17.19':
optional: true
- '@esbuild/android-x64@0.25.5':
- optional: true
-
- '@esbuild/android-x64@0.25.9':
+ '@esbuild/android-x64@0.25.12':
optional: true
'@esbuild/darwin-arm64@0.17.19':
optional: true
- '@esbuild/darwin-arm64@0.25.5':
- optional: true
-
- '@esbuild/darwin-arm64@0.25.9':
+ '@esbuild/darwin-arm64@0.25.12':
optional: true
'@esbuild/darwin-x64@0.17.19':
optional: true
- '@esbuild/darwin-x64@0.25.5':
- optional: true
-
- '@esbuild/darwin-x64@0.25.9':
+ '@esbuild/darwin-x64@0.25.12':
optional: true
'@esbuild/freebsd-arm64@0.17.19':
optional: true
- '@esbuild/freebsd-arm64@0.25.5':
- optional: true
-
- '@esbuild/freebsd-arm64@0.25.9':
+ '@esbuild/freebsd-arm64@0.25.12':
optional: true
'@esbuild/freebsd-x64@0.17.19':
optional: true
- '@esbuild/freebsd-x64@0.25.5':
- optional: true
-
- '@esbuild/freebsd-x64@0.25.9':
+ '@esbuild/freebsd-x64@0.25.12':
optional: true
'@esbuild/linux-arm64@0.17.19':
optional: true
- '@esbuild/linux-arm64@0.25.5':
- optional: true
-
- '@esbuild/linux-arm64@0.25.9':
+ '@esbuild/linux-arm64@0.25.12':
optional: true
'@esbuild/linux-arm@0.17.19':
optional: true
- '@esbuild/linux-arm@0.25.5':
- optional: true
-
- '@esbuild/linux-arm@0.25.9':
+ '@esbuild/linux-arm@0.25.12':
optional: true
'@esbuild/linux-ia32@0.17.19':
optional: true
- '@esbuild/linux-ia32@0.25.5':
- optional: true
-
- '@esbuild/linux-ia32@0.25.9':
+ '@esbuild/linux-ia32@0.25.12':
optional: true
'@esbuild/linux-loong64@0.17.19':
optional: true
- '@esbuild/linux-loong64@0.25.5':
- optional: true
-
- '@esbuild/linux-loong64@0.25.9':
+ '@esbuild/linux-loong64@0.25.12':
optional: true
'@esbuild/linux-mips64el@0.17.19':
optional: true
- '@esbuild/linux-mips64el@0.25.5':
- optional: true
-
- '@esbuild/linux-mips64el@0.25.9':
+ '@esbuild/linux-mips64el@0.25.12':
optional: true
'@esbuild/linux-ppc64@0.17.19':
optional: true
- '@esbuild/linux-ppc64@0.25.5':
- optional: true
-
- '@esbuild/linux-ppc64@0.25.9':
+ '@esbuild/linux-ppc64@0.25.12':
optional: true
'@esbuild/linux-riscv64@0.17.19':
optional: true
- '@esbuild/linux-riscv64@0.25.5':
- optional: true
-
- '@esbuild/linux-riscv64@0.25.9':
+ '@esbuild/linux-riscv64@0.25.12':
optional: true
'@esbuild/linux-s390x@0.17.19':
optional: true
- '@esbuild/linux-s390x@0.25.5':
- optional: true
-
- '@esbuild/linux-s390x@0.25.9':
+ '@esbuild/linux-s390x@0.25.12':
optional: true
'@esbuild/linux-x64@0.17.19':
optional: true
- '@esbuild/linux-x64@0.25.5':
- optional: true
-
- '@esbuild/linux-x64@0.25.9':
- optional: true
-
- '@esbuild/netbsd-arm64@0.25.5':
+ '@esbuild/linux-x64@0.25.12':
optional: true
- '@esbuild/netbsd-arm64@0.25.9':
+ '@esbuild/netbsd-arm64@0.25.12':
optional: true
'@esbuild/netbsd-x64@0.17.19':
optional: true
- '@esbuild/netbsd-x64@0.25.5':
- optional: true
-
- '@esbuild/netbsd-x64@0.25.9':
- optional: true
-
- '@esbuild/openbsd-arm64@0.25.5':
+ '@esbuild/netbsd-x64@0.25.12':
optional: true
- '@esbuild/openbsd-arm64@0.25.9':
+ '@esbuild/openbsd-arm64@0.25.12':
optional: true
'@esbuild/openbsd-x64@0.17.19':
optional: true
- '@esbuild/openbsd-x64@0.25.5':
- optional: true
-
- '@esbuild/openbsd-x64@0.25.9':
+ '@esbuild/openbsd-x64@0.25.12':
optional: true
- '@esbuild/openharmony-arm64@0.25.9':
+ '@esbuild/openharmony-arm64@0.25.12':
optional: true
'@esbuild/sunos-x64@0.17.19':
optional: true
- '@esbuild/sunos-x64@0.25.5':
- optional: true
-
- '@esbuild/sunos-x64@0.25.9':
+ '@esbuild/sunos-x64@0.25.12':
optional: true
'@esbuild/win32-arm64@0.17.19':
optional: true
- '@esbuild/win32-arm64@0.25.5':
- optional: true
-
- '@esbuild/win32-arm64@0.25.9':
+ '@esbuild/win32-arm64@0.25.12':
optional: true
'@esbuild/win32-ia32@0.17.19':
optional: true
- '@esbuild/win32-ia32@0.25.5':
- optional: true
-
- '@esbuild/win32-ia32@0.25.9':
+ '@esbuild/win32-ia32@0.25.12':
optional: true
'@esbuild/win32-x64@0.17.19':
optional: true
- '@esbuild/win32-x64@0.25.5':
- optional: true
-
- '@esbuild/win32-x64@0.25.9':
+ '@esbuild/win32-x64@0.25.12':
optional: true
- '@eslint-community/eslint-utils@4.8.0(eslint@9.34.0(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.9.0(eslint@9.39.1(jiti@2.4.2))':
dependencies:
- eslint: 9.34.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.12.1': {}
+ '@eslint-community/regexpp@4.12.2': {}
- '@eslint/config-array@0.21.0':
+ '@eslint/config-array@0.21.1':
dependencies:
- '@eslint/object-schema': 2.1.6
- debug: 4.4.1(supports-color@8.1.1)
+ '@eslint/object-schema': 2.1.7
+ debug: 4.4.3(supports-color@8.1.1)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.3.1': {}
+ '@eslint/config-helpers@0.4.2':
+ dependencies:
+ '@eslint/core': 0.17.0
- '@eslint/core@0.15.2':
+ '@eslint/core@0.17.0':
dependencies:
'@types/json-schema': 7.0.15
'@eslint/eslintrc@3.3.1':
dependencies:
ajv: 6.12.6
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
espree: 10.4.0
globals: 14.0.0
ignore: 5.3.2
import-fresh: 3.3.1
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.34.0': {}
+ '@eslint/js@9.39.1': {}
- '@eslint/object-schema@2.1.6': {}
+ '@eslint/object-schema@2.1.7': {}
- '@eslint/plugin-kit@0.3.5':
+ '@eslint/plugin-kit@0.4.1':
dependencies:
- '@eslint/core': 0.15.2
+ '@eslint/core': 0.17.0
levn: 0.4.1
+ '@geomatico/maplibre-cog-protocol@0.8.0(maplibre-gl@5.14.0)':
+ dependencies:
+ '@mapbox/sphericalmercator': 1.2.0
+ d3-scale: 4.0.2
+ geotiff: 2.1.3
+ maplibre-gl: 5.14.0
+ quick-lru: 7.3.0
+
'@humanfs/core@0.19.1': {}
'@humanfs/node@0.16.7':
@@ -13245,9 +14332,9 @@ snapshots:
'@humanwhocodes/retry@0.4.3': {}
- '@icons/material@0.2.4(react@19.1.0)':
+ '@icons/material@0.2.4(react@19.2.1)':
dependencies:
- react: 19.1.0
+ react: 19.2.1
'@isaacs/balanced-match@4.0.1': {}
@@ -13259,7 +14346,7 @@ snapshots:
dependencies:
string-width: 5.1.2
string-width-cjs: string-width@4.2.3
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
strip-ansi-cjs: strip-ansi@6.0.1
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
@@ -13269,7 +14356,7 @@ snapshots:
camelcase: 5.3.1
find-up: 4.1.0
get-package-type: 0.1.0
- js-yaml: 3.14.1
+ js-yaml: 3.14.2
resolve-from: 5.0.0
'@istanbuljs/schema@0.1.3': {}
@@ -13283,22 +14370,22 @@ snapshots:
'@jest/console@30.0.5':
dependencies:
'@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
chalk: 4.1.2
jest-message-util: 30.0.5
jest-util: 30.0.5
slash: 3.0.0
- '@jest/console@30.1.2':
+ '@jest/console@30.2.0':
dependencies:
- '@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@jest/types': 30.2.0
+ '@types/node': 24.10.1
chalk: 4.1.2
- jest-message-util: 30.1.0
- jest-util: 30.0.5
+ jest-message-util: 30.2.0
+ jest-util: 30.2.0
slash: 3.0.0
- '@jest/core@30.0.5(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2))':
+ '@jest/core@30.0.5(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))':
dependencies:
'@jest/console': 30.0.5
'@jest/pattern': 30.0.1
@@ -13306,14 +14393,14 @@ snapshots:
'@jest/test-result': 30.0.5
'@jest/transform': 30.0.5
'@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
ansi-escapes: 4.3.2
chalk: 4.1.2
- ci-info: 4.3.0
+ ci-info: 4.3.1
exit-x: 0.2.2
graceful-fs: 4.2.11
jest-changed-files: 30.0.5
- jest-config: 30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2))
+ jest-config: 30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))
jest-haste-map: 30.0.5
jest-message-util: 30.0.5
jest-regex-util: 30.0.1
@@ -13336,15 +14423,15 @@ snapshots:
'@jest/diff-sequences@30.0.1': {}
- '@jest/environment-jsdom-abstract@30.1.2(jsdom@26.1.0)':
+ '@jest/environment-jsdom-abstract@30.2.0(jsdom@26.1.0)':
dependencies:
- '@jest/environment': 30.1.2
- '@jest/fake-timers': 30.1.2
- '@jest/types': 30.0.5
+ '@jest/environment': 30.2.0
+ '@jest/fake-timers': 30.2.0
+ '@jest/types': 30.2.0
'@types/jsdom': 21.1.7
- '@types/node': 24.3.1
- jest-mock: 30.0.5
- jest-util: 30.0.5
+ '@types/node': 24.10.1
+ jest-mock: 30.2.0
+ jest-util: 30.2.0
jsdom: 26.1.0
'@jest/environment@24.9.0':
@@ -13360,21 +14447,21 @@ snapshots:
dependencies:
'@jest/fake-timers': 30.0.5
'@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
jest-mock: 30.0.5
- '@jest/environment@30.1.2':
+ '@jest/environment@30.2.0':
dependencies:
- '@jest/fake-timers': 30.1.2
- '@jest/types': 30.0.5
- '@types/node': 24.3.1
- jest-mock: 30.0.5
+ '@jest/fake-timers': 30.2.0
+ '@jest/types': 30.2.0
+ '@types/node': 24.10.1
+ jest-mock: 30.2.0
'@jest/expect-utils@30.0.5':
dependencies:
'@jest/get-type': 30.0.1
- '@jest/expect-utils@30.1.2':
+ '@jest/expect-utils@30.2.0':
dependencies:
'@jest/get-type': 30.1.0
@@ -13397,19 +14484,19 @@ snapshots:
dependencies:
'@jest/types': 30.0.5
'@sinonjs/fake-timers': 13.0.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
jest-message-util: 30.0.5
jest-mock: 30.0.5
jest-util: 30.0.5
- '@jest/fake-timers@30.1.2':
+ '@jest/fake-timers@30.2.0':
dependencies:
- '@jest/types': 30.0.5
+ '@jest/types': 30.2.0
'@sinonjs/fake-timers': 13.0.5
- '@types/node': 24.3.1
- jest-message-util: 30.1.0
- jest-mock: 30.0.5
- jest-util: 30.0.5
+ '@types/node': 24.10.1
+ jest-message-util: 30.2.0
+ jest-mock: 30.2.0
+ jest-util: 30.2.0
'@jest/get-type@30.0.1': {}
@@ -13426,7 +14513,7 @@ snapshots:
'@jest/pattern@30.0.1':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
jest-regex-util: 30.0.1
'@jest/reporters@30.0.5':
@@ -13436,12 +14523,12 @@ snapshots:
'@jest/test-result': 30.0.5
'@jest/transform': 30.0.5
'@jest/types': 30.0.5
- '@jridgewell/trace-mapping': 0.3.30
- '@types/node': 24.3.1
+ '@jridgewell/trace-mapping': 0.3.31
+ '@types/node': 24.10.1
chalk: 4.1.2
- collect-v8-coverage: 1.0.2
+ collect-v8-coverage: 1.0.3
exit-x: 0.2.2
- glob: 10.4.5
+ glob: 10.5.0
graceful-fs: 4.2.11
istanbul-lib-coverage: 3.2.2
istanbul-lib-instrument: 6.0.3
@@ -13480,7 +14567,7 @@ snapshots:
'@jest/source-map@30.0.1':
dependencies:
- '@jridgewell/trace-mapping': 0.3.30
+ '@jridgewell/trace-mapping': 0.3.31
callsites: 3.1.0
graceful-fs: 4.2.11
@@ -13495,14 +14582,14 @@ snapshots:
'@jest/console': 30.0.5
'@jest/types': 30.0.5
'@types/istanbul-lib-coverage': 2.0.6
- collect-v8-coverage: 1.0.2
+ collect-v8-coverage: 1.0.3
- '@jest/test-result@30.1.3':
+ '@jest/test-result@30.2.0':
dependencies:
- '@jest/console': 30.1.2
- '@jest/types': 30.0.5
+ '@jest/console': 30.2.0
+ '@jest/types': 30.2.0
'@types/istanbul-lib-coverage': 2.0.6
- collect-v8-coverage: 1.0.2
+ collect-v8-coverage: 1.0.3
'@jest/test-sequencer@30.0.5':
dependencies:
@@ -13513,7 +14600,7 @@ snapshots:
'@jest/transform@24.9.0':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@jest/types': 24.9.0
babel-plugin-istanbul: 5.2.0
chalk: 2.4.2
@@ -13534,10 +14621,10 @@ snapshots:
'@jest/transform@30.0.5':
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@jest/types': 30.0.5
- '@jridgewell/trace-mapping': 0.3.30
- babel-plugin-istanbul: 7.0.0
+ '@jridgewell/trace-mapping': 0.3.31
+ babel-plugin-istanbul: 7.0.1
chalk: 4.1.2
convert-source-map: 2.0.0
fast-json-stable-stringify: 2.1.0
@@ -13552,19 +14639,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@jest/transform@30.1.2':
+ '@jest/transform@30.2.0':
dependencies:
- '@babel/core': 7.28.3
- '@jest/types': 30.0.5
- '@jridgewell/trace-mapping': 0.3.30
- babel-plugin-istanbul: 7.0.0
+ '@babel/core': 7.28.5
+ '@jest/types': 30.2.0
+ '@jridgewell/trace-mapping': 0.3.31
+ babel-plugin-istanbul: 7.0.1
chalk: 4.1.2
convert-source-map: 2.0.0
fast-json-stable-stringify: 2.1.0
graceful-fs: 4.2.11
- jest-haste-map: 30.1.0
+ jest-haste-map: 30.2.0
jest-regex-util: 30.0.1
- jest-util: 30.0.5
+ jest-util: 30.2.0
micromatch: 4.0.8
pirates: 4.0.7
slash: 3.0.0
@@ -13584,34 +14671,49 @@ snapshots:
'@jest/schemas': 30.0.5
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 24.3.1
- '@types/yargs': 17.0.33
+ '@types/node': 24.10.1
+ '@types/yargs': 17.0.35
chalk: 4.1.2
- '@joshwooding/vite-plugin-react-docgen-typescript@0.6.1(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))':
+ '@jest/types@30.2.0':
dependencies:
- glob: 10.4.5
- magic-string: 0.30.18
+ '@jest/pattern': 30.0.1
+ '@jest/schemas': 30.0.5
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 24.10.1
+ '@types/yargs': 17.0.35
+ chalk: 4.1.2
+
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.6.1(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))':
+ dependencies:
+ glob: 10.5.0
+ magic-string: 0.30.21
react-docgen-typescript: 2.4.0(typescript@5.8.3)
- vite: 7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)
+ vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
optionalDependencies:
typescript: 5.8.3
'@jridgewell/gen-mapping@0.3.13':
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
- '@jridgewell/trace-mapping': 0.3.30
+ '@jridgewell/trace-mapping': 0.3.31
+
+ '@jridgewell/remapping@2.3.5':
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
'@jridgewell/resolve-uri@3.1.2': {}
'@jridgewell/source-map@0.3.11':
dependencies:
'@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.30
+ '@jridgewell/trace-mapping': 0.3.31
'@jridgewell/sourcemap-codec@1.5.5': {}
- '@jridgewell/trace-mapping@0.3.30':
+ '@jridgewell/trace-mapping@0.3.31':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.5
@@ -13625,7 +14727,7 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@jsonjoy.com/buffers@1.0.0(tslib@2.8.1)':
+ '@jsonjoy.com/buffers@1.2.1(tslib@2.8.1)':
dependencies:
tslib: 2.8.1
@@ -13633,15 +14735,16 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@jsonjoy.com/json-pack@1.11.0(tslib@2.8.1)':
+ '@jsonjoy.com/json-pack@1.21.0(tslib@2.8.1)':
dependencies:
'@jsonjoy.com/base64': 1.1.2(tslib@2.8.1)
- '@jsonjoy.com/buffers': 1.0.0(tslib@2.8.1)
+ '@jsonjoy.com/buffers': 1.2.1(tslib@2.8.1)
'@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1)
'@jsonjoy.com/json-pointer': 1.0.2(tslib@2.8.1)
'@jsonjoy.com/util': 1.9.0(tslib@2.8.1)
hyperdyperid: 1.2.0
thingies: 2.5.0(tslib@2.8.1)
+ tree-dump: 1.1.0(tslib@2.8.1)
tslib: 2.8.1
'@jsonjoy.com/json-pointer@1.0.2(tslib@2.8.1)':
@@ -13652,12 +14755,46 @@ snapshots:
'@jsonjoy.com/util@1.9.0(tslib@2.8.1)':
dependencies:
- '@jsonjoy.com/buffers': 1.0.0(tslib@2.8.1)
+ '@jsonjoy.com/buffers': 1.2.1(tslib@2.8.1)
'@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1)
tslib: 2.8.1
'@leichtgewicht/ip-codec@2.0.5': {}
+ '@loaders.gl/3d-tiles@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/compression': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/crypto': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/draco': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/gltf': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/images': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/math': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/tiles': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/zip': 4.3.4(@loaders.gl/core@4.3.4)
+ '@math.gl/core': 4.1.0
+ '@math.gl/culling': 4.1.0
+ '@math.gl/geospatial': 4.1.0
+ '@probe.gl/log': 4.1.0
+ long: 5.3.2
+
+ '@loaders.gl/compression@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/worker-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@types/brotli': 1.3.4
+ '@types/pako': 1.0.7
+ fflate: 0.7.4
+ lzo-wasm: 0.0.4
+ pako: 1.0.11
+ snappyjs: 0.6.1
+ optionalDependencies:
+ brotli: 1.3.3
+ lz4js: 0.2.0
+ zstd-codec: 0.1.5
+
'@loaders.gl/core@4.3.4':
dependencies:
'@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
@@ -13665,31 +14802,139 @@ snapshots:
'@loaders.gl/worker-utils': 4.3.4(@loaders.gl/core@4.3.4)
'@probe.gl/log': 4.1.0
- '@loaders.gl/images@4.3.4(@loaders.gl/core@4.3.4)':
+ '@loaders.gl/crypto@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/worker-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@types/crypto-js': 4.2.2
+
+ '@loaders.gl/draco@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/worker-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ draco3d: 1.5.7
+
+ '@loaders.gl/gis@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
+ '@mapbox/vector-tile': 1.3.1
+ '@math.gl/polygon': 4.1.0
+ pbf: 3.3.0
+
+ '@loaders.gl/gltf@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/draco': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/images': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/textures': 4.3.4(@loaders.gl/core@4.3.4)
+ '@math.gl/core': 4.1.0
+
+ '@loaders.gl/images@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+
+ '@loaders.gl/loader-utils@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/worker-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@probe.gl/log': 4.1.0
+ '@probe.gl/stats': 4.1.0
+
+ '@loaders.gl/math@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/images': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@math.gl/core': 4.1.0
+
+ '@loaders.gl/mvt@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/gis': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/images': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
+ '@math.gl/polygon': 4.1.0
+ '@probe.gl/stats': 4.1.0
+ pbf: 3.3.0
+
+ '@loaders.gl/schema@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@types/geojson': 7946.0.16
+
+ '@loaders.gl/terrain@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/images': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
+ '@mapbox/martini': 0.2.0
+
+ '@loaders.gl/textures@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/images': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/worker-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@math.gl/types': 4.1.0
+ ktx-parse: 0.7.1
+ texture-compressor: 1.0.2
+
+ '@loaders.gl/tiles@4.3.4(@loaders.gl/core@4.3.4)':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/math': 4.3.4(@loaders.gl/core@4.3.4)
+ '@math.gl/core': 4.1.0
+ '@math.gl/culling': 4.1.0
+ '@math.gl/geospatial': 4.1.0
+ '@math.gl/web-mercator': 4.1.0
+ '@probe.gl/stats': 4.1.0
+
+ '@loaders.gl/wms@4.3.4(@loaders.gl/core@4.3.4)':
dependencies:
'@loaders.gl/core': 4.3.4
+ '@loaders.gl/images': 4.3.4(@loaders.gl/core@4.3.4)
'@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/xml': 4.3.4(@loaders.gl/core@4.3.4)
+ '@turf/rewind': 5.1.5
+ deep-strict-equal: 0.2.0
- '@loaders.gl/loader-utils@4.3.4(@loaders.gl/core@4.3.4)':
+ '@loaders.gl/worker-utils@4.3.4(@loaders.gl/core@4.3.4)':
dependencies:
'@loaders.gl/core': 4.3.4
- '@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
- '@loaders.gl/worker-utils': 4.3.4(@loaders.gl/core@4.3.4)
- '@probe.gl/log': 4.1.0
- '@probe.gl/stats': 4.1.0
- '@loaders.gl/schema@4.3.4(@loaders.gl/core@4.3.4)':
+ '@loaders.gl/xml@4.3.4(@loaders.gl/core@4.3.4)':
dependencies:
'@loaders.gl/core': 4.3.4
- '@types/geojson': 7946.0.16
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/schema': 4.3.4(@loaders.gl/core@4.3.4)
+ fast-xml-parser: 4.5.3
- '@loaders.gl/worker-utils@4.3.4(@loaders.gl/core@4.3.4)':
+ '@loaders.gl/zip@4.3.4(@loaders.gl/core@4.3.4)':
dependencies:
+ '@loaders.gl/compression': 4.3.4(@loaders.gl/core@4.3.4)
'@loaders.gl/core': 4.3.4
+ '@loaders.gl/crypto': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/loader-utils': 4.3.4(@loaders.gl/core@4.3.4)
+ jszip: 3.10.1
+ md5: 2.3.0
- '@luma.gl/constants@9.1.9': {}
+ '@luma.gl/constants@9.2.4': {}
- '@luma.gl/core@9.1.9':
+ '@luma.gl/core@9.2.4':
dependencies:
'@math.gl/types': 4.1.0
'@probe.gl/env': 4.1.0
@@ -13697,26 +14942,37 @@ snapshots:
'@probe.gl/stats': 4.1.0
'@types/offscreencanvas': 2019.7.3
- '@luma.gl/engine@9.1.9(@luma.gl/core@9.1.9)(@luma.gl/shadertools@9.1.9(@luma.gl/core@9.1.9))':
+ '@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))':
dependencies:
- '@luma.gl/core': 9.1.9
- '@luma.gl/shadertools': 9.1.9(@luma.gl/core@9.1.9)
+ '@luma.gl/core': 9.2.4
+ '@luma.gl/shadertools': 9.2.4(@luma.gl/core@9.2.4)
'@math.gl/core': 4.1.0
'@math.gl/types': 4.1.0
'@probe.gl/log': 4.1.0
'@probe.gl/stats': 4.1.0
- '@luma.gl/shadertools@9.1.9(@luma.gl/core@9.1.9)':
+ '@luma.gl/gltf@9.2.4(@luma.gl/constants@9.2.4)(@luma.gl/core@9.2.4)(@luma.gl/engine@9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)))(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))':
+ dependencies:
+ '@loaders.gl/core': 4.3.4
+ '@loaders.gl/gltf': 4.3.4(@loaders.gl/core@4.3.4)
+ '@loaders.gl/textures': 4.3.4(@loaders.gl/core@4.3.4)
+ '@luma.gl/constants': 9.2.4
+ '@luma.gl/core': 9.2.4
+ '@luma.gl/engine': 9.2.4(@luma.gl/core@9.2.4)(@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4))
+ '@luma.gl/shadertools': 9.2.4(@luma.gl/core@9.2.4)
+ '@math.gl/core': 4.1.0
+
+ '@luma.gl/shadertools@9.2.4(@luma.gl/core@9.2.4)':
dependencies:
- '@luma.gl/core': 9.1.9
+ '@luma.gl/core': 9.2.4
'@math.gl/core': 4.1.0
'@math.gl/types': 4.1.0
wgsl_reflect: 1.2.3
- '@luma.gl/webgl@9.1.9(@luma.gl/core@9.1.9)':
+ '@luma.gl/webgl@9.2.4(@luma.gl/core@9.2.4)':
dependencies:
- '@luma.gl/constants': 9.1.9
- '@luma.gl/core': 9.1.9
+ '@luma.gl/constants': 9.2.4
+ '@luma.gl/core': 9.2.4
'@math.gl/types': 4.1.0
'@probe.gl/env': 4.1.0
@@ -13761,12 +15017,16 @@ snapshots:
'@mapbox/mapbox-gl-sync-move@0.3.1': {}
+ '@mapbox/martini@0.2.0': {}
+
'@mapbox/point-geometry@0.1.0': {}
'@mapbox/point-geometry@1.1.0': {}
'@mapbox/sexagesimal@1.2.0': {}
+ '@mapbox/sphericalmercator@1.2.0': {}
+
'@mapbox/tiny-sdf@2.0.7': {}
'@mapbox/unitbezier@0.0.1': {}
@@ -13793,6 +15053,24 @@ snapshots:
rw: 1.3.3
tinyqueue: 3.0.0
+ '@maplibre/maplibre-gl-style-spec@24.3.1':
+ dependencies:
+ '@mapbox/jsonlint-lines-primitives': 2.0.2
+ '@mapbox/unitbezier': 0.0.1
+ json-stringify-pretty-compact: 4.0.0
+ minimist: 1.2.8
+ quickselect: 3.0.0
+ rw: 1.3.3
+ tinyqueue: 3.0.0
+
+ '@maplibre/mlt@1.1.0':
+ dependencies:
+ '@mapbox/point-geometry': 1.1.0
+
+ '@maplibre/mlt@1.1.2':
+ dependencies:
+ '@mapbox/point-geometry': 1.1.0
+
'@maplibre/vt-pbf@4.0.3':
dependencies:
'@mapbox/point-geometry': 1.1.0
@@ -13803,10 +15081,30 @@ snapshots:
pbf: 4.0.1
supercluster: 8.0.1
+ '@maplibre/vt-pbf@4.1.0':
+ dependencies:
+ '@mapbox/point-geometry': 1.1.0
+ '@mapbox/vector-tile': 2.0.4
+ '@types/geojson-vt': 3.2.5
+ '@types/supercluster': 7.1.3
+ geojson-vt: 4.0.2
+ pbf: 4.0.1
+ supercluster: 8.0.1
+
'@math.gl/core@4.1.0':
dependencies:
'@math.gl/types': 4.1.0
+ '@math.gl/culling@4.1.0':
+ dependencies:
+ '@math.gl/core': 4.1.0
+ '@math.gl/types': 4.1.0
+
+ '@math.gl/geospatial@4.1.0':
+ dependencies:
+ '@math.gl/core': 4.1.0
+ '@math.gl/types': 4.1.0
+
'@math.gl/polygon@4.1.0':
dependencies:
'@math.gl/core': 4.1.0
@@ -13819,46 +15117,47 @@ snapshots:
dependencies:
'@math.gl/core': 4.1.0
- '@mdx-js/react@3.1.1(@types/react@19.1.8)(react@19.1.0)':
+ '@mdx-js/react@3.1.1(@types/react@19.1.8)(react@19.2.1)':
dependencies:
'@types/mdx': 2.0.13
'@types/react': 19.1.8
- react: 19.1.0
+ react: 19.2.1
- '@microsoft/api-extractor-model@7.30.7(@types/node@24.3.1)':
+ '@microsoft/api-extractor-model@7.32.1(@types/node@24.10.1)':
dependencies:
- '@microsoft/tsdoc': 0.15.1
- '@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.14.0(@types/node@24.3.1)
+ '@microsoft/tsdoc': 0.16.0
+ '@microsoft/tsdoc-config': 0.18.0
+ '@rushstack/node-core-library': 5.19.0(@types/node@24.10.1)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.52.11(@types/node@24.3.1)':
+ '@microsoft/api-extractor@7.55.1(@types/node@24.10.1)':
dependencies:
- '@microsoft/api-extractor-model': 7.30.7(@types/node@24.3.1)
- '@microsoft/tsdoc': 0.15.1
- '@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.14.0(@types/node@24.3.1)
- '@rushstack/rig-package': 0.5.3
- '@rushstack/terminal': 0.15.4(@types/node@24.3.1)
- '@rushstack/ts-command-line': 5.0.2(@types/node@24.3.1)
+ '@microsoft/api-extractor-model': 7.32.1(@types/node@24.10.1)
+ '@microsoft/tsdoc': 0.16.0
+ '@microsoft/tsdoc-config': 0.18.0
+ '@rushstack/node-core-library': 5.19.0(@types/node@24.10.1)
+ '@rushstack/rig-package': 0.6.0
+ '@rushstack/terminal': 0.19.4(@types/node@24.10.1)
+ '@rushstack/ts-command-line': 5.1.4(@types/node@24.10.1)
+ diff: 8.0.2
lodash: 4.17.21
minimatch: 10.0.3
- resolve: 1.22.10
+ resolve: 1.22.11
semver: 7.5.4
source-map: 0.6.1
typescript: 5.8.2
transitivePeerDependencies:
- '@types/node'
- '@microsoft/tsdoc-config@0.17.1':
+ '@microsoft/tsdoc-config@0.18.0':
dependencies:
- '@microsoft/tsdoc': 0.15.1
+ '@microsoft/tsdoc': 0.16.0
ajv: 8.12.0
jju: 1.4.0
- resolve: 1.22.10
+ resolve: 1.22.11
- '@microsoft/tsdoc@0.15.1': {}
+ '@microsoft/tsdoc@0.16.0': {}
'@modern-js/node-bundle-require@2.67.6':
dependencies:
@@ -13866,25 +15165,12 @@ snapshots:
'@swc/helpers': 0.5.17
esbuild: 0.17.19
- '@modern-js/node-bundle-require@2.68.2':
- dependencies:
- '@modern-js/utils': 2.68.2
- '@swc/helpers': 0.5.17
- esbuild: 0.25.5
-
'@modern-js/utils@2.67.6':
dependencies:
'@swc/helpers': 0.5.17
- caniuse-lite: 1.0.30001741
+ caniuse-lite: 1.0.30001757
lodash: 4.17.21
- rslog: 1.2.11
-
- '@modern-js/utils@2.68.2':
- dependencies:
- '@swc/helpers': 0.5.17
- caniuse-lite: 1.0.30001741
- lodash: 4.17.21
- rslog: 1.2.11
+ rslog: 1.3.1
'@module-federation/bridge-react-webpack-plugin@0.15.0':
dependencies:
@@ -13892,9 +15178,9 @@ snapshots:
'@types/semver': 7.5.8
semver: 7.6.3
- '@module-federation/bridge-react-webpack-plugin@0.18.4':
+ '@module-federation/bridge-react-webpack-plugin@0.21.6':
dependencies:
- '@module-federation/sdk': 0.18.4
+ '@module-federation/sdk': 0.21.6
'@types/semver': 7.5.8
semver: 7.6.3
@@ -13913,13 +15199,13 @@ snapshots:
- utf-8-validate
- vue-tsc
- '@module-federation/cli@0.18.4(typescript@5.8.3)':
+ '@module-federation/cli@0.21.6(typescript@5.8.3)':
dependencies:
- '@modern-js/node-bundle-require': 2.68.2
- '@module-federation/dts-plugin': 0.18.4(typescript@5.8.3)
- '@module-federation/sdk': 0.18.4
+ '@module-federation/dts-plugin': 0.21.6(typescript@5.8.3)
+ '@module-federation/sdk': 0.21.6
chalk: 3.0.0
commander: 11.1.0
+ jiti: 2.4.2
transitivePeerDependencies:
- bufferutil
- debug
@@ -13928,21 +15214,21 @@ snapshots:
- utf-8-validate
- vue-tsc
- '@module-federation/data-prefetch@0.15.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@module-federation/data-prefetch@0.15.0(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
'@module-federation/runtime': 0.15.0
'@module-federation/sdk': 0.15.0
fs-extra: 9.1.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@module-federation/data-prefetch@0.18.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@module-federation/data-prefetch@0.21.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@module-federation/runtime': 0.18.4
- '@module-federation/sdk': 0.18.4
+ '@module-federation/runtime': 0.21.6
+ '@module-federation/sdk': 0.21.6
fs-extra: 9.1.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
'@module-federation/dts-plugin@0.15.0(typescript@5.8.3)':
dependencies:
@@ -13952,7 +15238,7 @@ snapshots:
'@module-federation/third-party-dts-extractor': 0.15.0
adm-zip: 0.5.16
ansi-colors: 4.1.3
- axios: 1.11.0
+ axios: 1.13.2
chalk: 3.0.0
fs-extra: 9.1.0
isomorphic-ws: 5.0.0(ws@8.18.0)
@@ -13969,19 +15255,19 @@ snapshots:
- supports-color
- utf-8-validate
- '@module-federation/dts-plugin@0.18.4(typescript@5.8.3)':
+ '@module-federation/dts-plugin@0.21.6(typescript@5.8.3)':
dependencies:
- '@module-federation/error-codes': 0.18.4
- '@module-federation/managers': 0.18.4
- '@module-federation/sdk': 0.18.4
- '@module-federation/third-party-dts-extractor': 0.18.4
+ '@module-federation/error-codes': 0.21.6
+ '@module-federation/managers': 0.21.6
+ '@module-federation/sdk': 0.21.6
+ '@module-federation/third-party-dts-extractor': 0.21.6
adm-zip: 0.5.16
ansi-colors: 4.1.3
- axios: 1.11.0
+ axios: 1.13.2
chalk: 3.0.0
fs-extra: 9.1.0
isomorphic-ws: 5.0.0(ws@8.18.0)
- koa: 3.0.1
+ koa: 3.0.3
lodash.clonedeepwith: 4.5.0
log4js: 6.9.1
node-schedule: 2.1.1
@@ -13994,25 +15280,25 @@ snapshots:
- supports-color
- utf-8-validate
- '@module-federation/enhanced@0.15.0(@rspack/core@1.5.2(@swc/helpers@0.5.17))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))':
+ '@module-federation/enhanced@0.15.0(@rspack/core@1.6.5(@swc/helpers@0.5.17))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.8.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))':
dependencies:
'@module-federation/bridge-react-webpack-plugin': 0.15.0
'@module-federation/cli': 0.15.0(typescript@5.8.3)
- '@module-federation/data-prefetch': 0.15.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@module-federation/data-prefetch': 0.15.0(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@module-federation/dts-plugin': 0.15.0(typescript@5.8.3)
'@module-federation/error-codes': 0.15.0
'@module-federation/inject-external-runtime-core-plugin': 0.15.0(@module-federation/runtime-tools@0.15.0)
'@module-federation/managers': 0.15.0
'@module-federation/manifest': 0.15.0(typescript@5.8.3)
- '@module-federation/rspack': 0.15.0(@rspack/core@1.5.2(@swc/helpers@0.5.17))(typescript@5.8.3)
+ '@module-federation/rspack': 0.15.0(@rspack/core@1.6.5(@swc/helpers@0.5.17))(typescript@5.8.3)
'@module-federation/runtime-tools': 0.15.0
'@module-federation/sdk': 0.15.0
btoa: 1.2.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
upath: 2.0.1
optionalDependencies:
typescript: 5.8.3
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
transitivePeerDependencies:
- '@rspack/core'
- bufferutil
@@ -14022,25 +15308,25 @@ snapshots:
- supports-color
- utf-8-validate
- '@module-federation/enhanced@0.18.4(@rspack/core@1.5.2(@swc/helpers@0.5.17))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))':
- dependencies:
- '@module-federation/bridge-react-webpack-plugin': 0.18.4
- '@module-federation/cli': 0.18.4(typescript@5.8.3)
- '@module-federation/data-prefetch': 0.18.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@module-federation/dts-plugin': 0.18.4(typescript@5.8.3)
- '@module-federation/error-codes': 0.18.4
- '@module-federation/inject-external-runtime-core-plugin': 0.18.4(@module-federation/runtime-tools@0.18.4)
- '@module-federation/managers': 0.18.4
- '@module-federation/manifest': 0.18.4(typescript@5.8.3)
- '@module-federation/rspack': 0.18.4(@rspack/core@1.5.2(@swc/helpers@0.5.17))(typescript@5.8.3)
- '@module-federation/runtime-tools': 0.18.4
- '@module-federation/sdk': 0.18.4
+ '@module-federation/enhanced@0.21.6(@rspack/core@1.6.5(@swc/helpers@0.5.17))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.8.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))':
+ dependencies:
+ '@module-federation/bridge-react-webpack-plugin': 0.21.6
+ '@module-federation/cli': 0.21.6(typescript@5.8.3)
+ '@module-federation/data-prefetch': 0.21.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@module-federation/dts-plugin': 0.21.6(typescript@5.8.3)
+ '@module-federation/error-codes': 0.21.6
+ '@module-federation/inject-external-runtime-core-plugin': 0.21.6(@module-federation/runtime-tools@0.21.6)
+ '@module-federation/managers': 0.21.6
+ '@module-federation/manifest': 0.21.6(typescript@5.8.3)
+ '@module-federation/rspack': 0.21.6(@rspack/core@1.6.5(@swc/helpers@0.5.17))(typescript@5.8.3)
+ '@module-federation/runtime-tools': 0.21.6
+ '@module-federation/sdk': 0.21.6
btoa: 1.2.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
upath: 2.0.1
optionalDependencies:
typescript: 5.8.3
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
transitivePeerDependencies:
- '@rspack/core'
- bufferutil
@@ -14052,17 +15338,17 @@ snapshots:
'@module-federation/error-codes@0.15.0': {}
- '@module-federation/error-codes@0.18.0': {}
+ '@module-federation/error-codes@0.21.4': {}
- '@module-federation/error-codes@0.18.4': {}
+ '@module-federation/error-codes@0.21.6': {}
'@module-federation/inject-external-runtime-core-plugin@0.15.0(@module-federation/runtime-tools@0.15.0)':
dependencies:
'@module-federation/runtime-tools': 0.15.0
- '@module-federation/inject-external-runtime-core-plugin@0.18.4(@module-federation/runtime-tools@0.18.4)':
+ '@module-federation/inject-external-runtime-core-plugin@0.21.6(@module-federation/runtime-tools@0.21.6)':
dependencies:
- '@module-federation/runtime-tools': 0.18.4
+ '@module-federation/runtime-tools': 0.21.6
'@module-federation/managers@0.15.0':
dependencies:
@@ -14070,9 +15356,9 @@ snapshots:
find-pkg: 2.0.0
fs-extra: 9.1.0
- '@module-federation/managers@0.18.4':
+ '@module-federation/managers@0.21.6':
dependencies:
- '@module-federation/sdk': 0.18.4
+ '@module-federation/sdk': 0.21.6
find-pkg: 2.0.0
fs-extra: 9.1.0
@@ -14091,11 +15377,11 @@ snapshots:
- utf-8-validate
- vue-tsc
- '@module-federation/manifest@0.18.4(typescript@5.8.3)':
+ '@module-federation/manifest@0.21.6(typescript@5.8.3)':
dependencies:
- '@module-federation/dts-plugin': 0.18.4(typescript@5.8.3)
- '@module-federation/managers': 0.18.4
- '@module-federation/sdk': 0.18.4
+ '@module-federation/dts-plugin': 0.21.6(typescript@5.8.3)
+ '@module-federation/managers': 0.21.6
+ '@module-federation/sdk': 0.21.6
chalk: 3.0.0
find-pkg: 2.0.0
transitivePeerDependencies:
@@ -14106,18 +15392,18 @@ snapshots:
- utf-8-validate
- vue-tsc
- '@module-federation/node@2.7.15(@rspack/core@1.5.2(@swc/helpers@0.5.17))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))':
+ '@module-federation/node@2.7.25(@rspack/core@1.6.5(@swc/helpers@0.5.17))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.8.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))':
dependencies:
- '@module-federation/enhanced': 0.18.4(@rspack/core@1.5.2(@swc/helpers@0.5.17))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
- '@module-federation/runtime': 0.18.4
- '@module-federation/sdk': 0.18.4
+ '@module-federation/enhanced': 0.21.6(@rspack/core@1.6.5(@swc/helpers@0.5.17))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.8.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
+ '@module-federation/runtime': 0.21.6
+ '@module-federation/sdk': 0.21.6
btoa: 1.2.1
encoding: 0.1.13
node-fetch: 2.7.0(encoding@0.1.13)
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
optionalDependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
transitivePeerDependencies:
- '@rspack/core'
- bufferutil
@@ -14127,7 +15413,7 @@ snapshots:
- utf-8-validate
- vue-tsc
- '@module-federation/rspack@0.15.0(@rspack/core@1.5.2(@swc/helpers@0.5.17))(typescript@5.8.3)':
+ '@module-federation/rspack@0.15.0(@rspack/core@1.6.5(@swc/helpers@0.5.17))(typescript@5.8.3)':
dependencies:
'@module-federation/bridge-react-webpack-plugin': 0.15.0
'@module-federation/dts-plugin': 0.15.0(typescript@5.8.3)
@@ -14136,7 +15422,7 @@ snapshots:
'@module-federation/manifest': 0.15.0(typescript@5.8.3)
'@module-federation/runtime-tools': 0.15.0
'@module-federation/sdk': 0.15.0
- '@rspack/core': 1.5.2(@swc/helpers@0.5.17)
+ '@rspack/core': 1.6.5(@swc/helpers@0.5.17)
btoa: 1.2.1
optionalDependencies:
typescript: 5.8.3
@@ -14146,16 +15432,16 @@ snapshots:
- supports-color
- utf-8-validate
- '@module-federation/rspack@0.18.4(@rspack/core@1.5.2(@swc/helpers@0.5.17))(typescript@5.8.3)':
+ '@module-federation/rspack@0.21.6(@rspack/core@1.6.5(@swc/helpers@0.5.17))(typescript@5.8.3)':
dependencies:
- '@module-federation/bridge-react-webpack-plugin': 0.18.4
- '@module-federation/dts-plugin': 0.18.4(typescript@5.8.3)
- '@module-federation/inject-external-runtime-core-plugin': 0.18.4(@module-federation/runtime-tools@0.18.4)
- '@module-federation/managers': 0.18.4
- '@module-federation/manifest': 0.18.4(typescript@5.8.3)
- '@module-federation/runtime-tools': 0.18.4
- '@module-federation/sdk': 0.18.4
- '@rspack/core': 1.5.2(@swc/helpers@0.5.17)
+ '@module-federation/bridge-react-webpack-plugin': 0.21.6
+ '@module-federation/dts-plugin': 0.21.6(typescript@5.8.3)
+ '@module-federation/inject-external-runtime-core-plugin': 0.21.6(@module-federation/runtime-tools@0.21.6)
+ '@module-federation/managers': 0.21.6
+ '@module-federation/manifest': 0.21.6(typescript@5.8.3)
+ '@module-federation/runtime-tools': 0.21.6
+ '@module-federation/sdk': 0.21.6
+ '@rspack/core': 1.6.5(@swc/helpers@0.5.17)
btoa: 1.2.1
optionalDependencies:
typescript: 5.8.3
@@ -14170,30 +15456,30 @@ snapshots:
'@module-federation/error-codes': 0.15.0
'@module-federation/sdk': 0.15.0
- '@module-federation/runtime-core@0.18.0':
+ '@module-federation/runtime-core@0.21.4':
dependencies:
- '@module-federation/error-codes': 0.18.0
- '@module-federation/sdk': 0.18.0
+ '@module-federation/error-codes': 0.21.4
+ '@module-federation/sdk': 0.21.4
- '@module-federation/runtime-core@0.18.4':
+ '@module-federation/runtime-core@0.21.6':
dependencies:
- '@module-federation/error-codes': 0.18.4
- '@module-federation/sdk': 0.18.4
+ '@module-federation/error-codes': 0.21.6
+ '@module-federation/sdk': 0.21.6
'@module-federation/runtime-tools@0.15.0':
dependencies:
'@module-federation/runtime': 0.15.0
'@module-federation/webpack-bundler-runtime': 0.15.0
- '@module-federation/runtime-tools@0.18.0':
+ '@module-federation/runtime-tools@0.21.4':
dependencies:
- '@module-federation/runtime': 0.18.0
- '@module-federation/webpack-bundler-runtime': 0.18.0
+ '@module-federation/runtime': 0.21.4
+ '@module-federation/webpack-bundler-runtime': 0.21.4
- '@module-federation/runtime-tools@0.18.4':
+ '@module-federation/runtime-tools@0.21.6':
dependencies:
- '@module-federation/runtime': 0.18.4
- '@module-federation/webpack-bundler-runtime': 0.18.4
+ '@module-federation/runtime': 0.21.6
+ '@module-federation/webpack-bundler-runtime': 0.21.6
'@module-federation/runtime@0.15.0':
dependencies:
@@ -14201,23 +15487,23 @@ snapshots:
'@module-federation/runtime-core': 0.15.0
'@module-federation/sdk': 0.15.0
- '@module-federation/runtime@0.18.0':
+ '@module-federation/runtime@0.21.4':
dependencies:
- '@module-federation/error-codes': 0.18.0
- '@module-federation/runtime-core': 0.18.0
- '@module-federation/sdk': 0.18.0
+ '@module-federation/error-codes': 0.21.4
+ '@module-federation/runtime-core': 0.21.4
+ '@module-federation/sdk': 0.21.4
- '@module-federation/runtime@0.18.4':
+ '@module-federation/runtime@0.21.6':
dependencies:
- '@module-federation/error-codes': 0.18.4
- '@module-federation/runtime-core': 0.18.4
- '@module-federation/sdk': 0.18.4
+ '@module-federation/error-codes': 0.21.6
+ '@module-federation/runtime-core': 0.21.6
+ '@module-federation/sdk': 0.21.6
'@module-federation/sdk@0.15.0': {}
- '@module-federation/sdk@0.18.0': {}
+ '@module-federation/sdk@0.21.4': {}
- '@module-federation/sdk@0.18.4': {}
+ '@module-federation/sdk@0.21.6': {}
'@module-federation/third-party-dts-extractor@0.15.0':
dependencies:
@@ -14225,7 +15511,7 @@ snapshots:
fs-extra: 9.1.0
resolve: 1.22.8
- '@module-federation/third-party-dts-extractor@0.18.4':
+ '@module-federation/third-party-dts-extractor@0.21.6':
dependencies:
find-pkg: 2.0.0
fs-extra: 9.1.0
@@ -14236,102 +15522,189 @@ snapshots:
'@module-federation/runtime': 0.15.0
'@module-federation/sdk': 0.15.0
- '@module-federation/webpack-bundler-runtime@0.18.0':
+ '@module-federation/webpack-bundler-runtime@0.21.4':
+ dependencies:
+ '@module-federation/runtime': 0.21.4
+ '@module-federation/sdk': 0.21.4
+
+ '@module-federation/webpack-bundler-runtime@0.21.6':
dependencies:
- '@module-federation/runtime': 0.18.0
- '@module-federation/sdk': 0.18.0
+ '@module-federation/runtime': 0.21.6
+ '@module-federation/sdk': 0.21.6
+
+ '@mui/core-downloads-tracker@7.3.5': {}
- '@module-federation/webpack-bundler-runtime@0.18.4':
+ '@mui/core-downloads-tracker@7.3.6': {}
+
+ '@mui/icons-material@7.3.5(@mui/material@7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)':
dependencies:
- '@module-federation/runtime': 0.18.4
- '@module-federation/sdk': 0.18.4
+ '@babel/runtime': 7.28.4
+ '@mui/material': 7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.2.7
- '@mui/core-downloads-tracker@7.3.2': {}
+ '@mui/icons-material@7.3.6(@mui/material@7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)':
+ dependencies:
+ '@babel/runtime': 7.28.4
+ '@mui/material': 7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.2.7
- '@mui/icons-material@7.3.2(@mui/material@7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)':
+ '@mui/material@7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@babel/runtime': 7.28.3
- '@mui/material': 7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
+ '@babel/runtime': 7.28.4
+ '@mui/core-downloads-tracker': 7.3.5
+ '@mui/system': 7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@mui/types': 7.4.8(@types/react@19.2.7)
+ '@mui/utils': 7.3.5(@types/react@19.2.7)(react@19.2.1)
+ '@popperjs/core': 2.11.8
+ '@types/react-transition-group': 4.4.12(@types/react@19.2.7)
+ clsx: 2.1.1
+ csstype: 3.2.3
+ prop-types: 15.8.1
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ react-is: 19.2.0
+ react-transition-group: 4.4.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
optionalDependencies:
- '@types/react': 19.1.12
+ '@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.1)
+ '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@types/react': 19.2.7
- '@mui/material@7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@mui/material@7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@babel/runtime': 7.28.3
- '@mui/core-downloads-tracker': 7.3.2
- '@mui/system': 7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
- '@mui/types': 7.4.6(@types/react@19.1.12)
- '@mui/utils': 7.3.2(@types/react@19.1.12)(react@19.1.0)
+ '@babel/runtime': 7.28.4
+ '@mui/core-downloads-tracker': 7.3.6
+ '@mui/system': 7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@mui/types': 7.4.9(@types/react@19.2.7)
+ '@mui/utils': 7.3.6(@types/react@19.2.7)(react@19.2.1)
'@popperjs/core': 2.11.8
- '@types/react-transition-group': 4.4.12(@types/react@19.1.12)
+ '@types/react-transition-group': 4.4.12(@types/react@19.2.7)
clsx: 2.1.1
- csstype: 3.1.3
+ csstype: 3.2.3
prop-types: 15.8.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-is: 19.1.1
- react-transition-group: 4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ react-is: 19.2.0
+ react-transition-group: 4.4.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
optionalDependencies:
- '@emotion/react': 11.14.0(@types/react@19.1.12)(react@19.1.0)
- '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
- '@types/react': 19.1.12
+ '@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.1)
+ '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@types/react': 19.2.7
- '@mui/private-theming@7.3.2(@types/react@19.1.12)(react@19.1.0)':
+ '@mui/private-theming@7.3.5(@types/react@19.2.7)(react@19.2.1)':
dependencies:
- '@babel/runtime': 7.28.3
- '@mui/utils': 7.3.2(@types/react@19.1.12)(react@19.1.0)
+ '@babel/runtime': 7.28.4
+ '@mui/utils': 7.3.5(@types/react@19.2.7)(react@19.2.1)
prop-types: 15.8.1
- react: 19.1.0
+ react: 19.2.1
optionalDependencies:
- '@types/react': 19.1.12
+ '@types/react': 19.2.7
- '@mui/styled-engine@7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)':
+ '@mui/private-theming@7.3.6(@types/react@19.2.7)(react@19.2.1)':
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
+ '@mui/utils': 7.3.6(@types/react@19.2.7)(react@19.2.1)
+ prop-types: 15.8.1
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.2.7
+
+ '@mui/styled-engine@7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@babel/runtime': 7.28.4
'@emotion/cache': 11.14.0
'@emotion/serialize': 1.3.3
'@emotion/sheet': 1.4.0
- csstype: 3.1.3
+ csstype: 3.2.3
+ prop-types: 15.8.1
+ react: 19.2.1
+ optionalDependencies:
+ '@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.1)
+ '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+
+ '@mui/styled-engine@7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@babel/runtime': 7.28.4
+ '@emotion/cache': 11.14.0
+ '@emotion/serialize': 1.3.3
+ '@emotion/sheet': 1.4.0
+ csstype: 3.2.3
prop-types: 15.8.1
- react: 19.1.0
+ react: 19.2.1
optionalDependencies:
- '@emotion/react': 11.14.0(@types/react@19.1.12)(react@19.1.0)
- '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
+ '@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.1)
+ '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
- '@mui/system@7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)':
+ '@mui/system@7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)':
dependencies:
- '@babel/runtime': 7.28.3
- '@mui/private-theming': 7.3.2(@types/react@19.1.12)(react@19.1.0)
- '@mui/styled-engine': 7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
- '@mui/types': 7.4.6(@types/react@19.1.12)
- '@mui/utils': 7.3.2(@types/react@19.1.12)(react@19.1.0)
+ '@babel/runtime': 7.28.4
+ '@mui/private-theming': 7.3.5(@types/react@19.2.7)(react@19.2.1)
+ '@mui/styled-engine': 7.3.5(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(react@19.2.1)
+ '@mui/types': 7.4.8(@types/react@19.2.7)
+ '@mui/utils': 7.3.5(@types/react@19.2.7)(react@19.2.1)
clsx: 2.1.1
- csstype: 3.1.3
+ csstype: 3.2.3
+ prop-types: 15.8.1
+ react: 19.2.1
+ optionalDependencies:
+ '@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.1)
+ '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@types/react': 19.2.7
+
+ '@mui/system@7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)':
+ dependencies:
+ '@babel/runtime': 7.28.4
+ '@mui/private-theming': 7.3.6(@types/react@19.2.7)(react@19.2.1)
+ '@mui/styled-engine': 7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(react@19.2.1)
+ '@mui/types': 7.4.9(@types/react@19.2.7)
+ '@mui/utils': 7.3.6(@types/react@19.2.7)(react@19.2.1)
+ clsx: 2.1.1
+ csstype: 3.2.3
prop-types: 15.8.1
- react: 19.1.0
+ react: 19.2.1
+ optionalDependencies:
+ '@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.1)
+ '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@types/react': 19.2.7
+
+ '@mui/types@7.4.8(@types/react@19.2.7)':
+ dependencies:
+ '@babel/runtime': 7.28.4
+ optionalDependencies:
+ '@types/react': 19.2.7
+
+ '@mui/types@7.4.9(@types/react@19.2.7)':
+ dependencies:
+ '@babel/runtime': 7.28.4
optionalDependencies:
- '@emotion/react': 11.14.0(@types/react@19.1.12)(react@19.1.0)
- '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
- '@types/react': 19.1.12
+ '@types/react': 19.2.7
- '@mui/types@7.4.6(@types/react@19.1.12)':
+ '@mui/utils@7.3.5(@types/react@19.2.7)(react@19.2.1)':
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
+ '@mui/types': 7.4.8(@types/react@19.2.7)
+ '@types/prop-types': 15.7.15
+ clsx: 2.1.1
+ prop-types: 15.8.1
+ react: 19.2.1
+ react-is: 19.2.0
optionalDependencies:
- '@types/react': 19.1.12
+ '@types/react': 19.2.7
- '@mui/utils@7.3.2(@types/react@19.1.12)(react@19.1.0)':
+ '@mui/utils@7.3.6(@types/react@19.2.7)(react@19.2.1)':
dependencies:
- '@babel/runtime': 7.28.3
- '@mui/types': 7.4.6(@types/react@19.1.12)
+ '@babel/runtime': 7.28.4
+ '@mui/types': 7.4.9(@types/react@19.2.7)
'@types/prop-types': 15.7.15
clsx: 2.1.1
prop-types: 15.8.1
- react: 19.1.0
- react-is: 19.1.1
+ react: 19.2.1
+ react-is: 19.2.0
optionalDependencies:
- '@types/react': 19.1.12
+ '@types/react': 19.2.7
'@napi-rs/nice-android-arm-eabi@1.1.1':
optional: true
@@ -14407,22 +15780,22 @@ snapshots:
'@napi-rs/wasm-runtime@0.2.12':
dependencies:
- '@emnapi/core': 1.5.0
- '@emnapi/runtime': 1.5.0
- '@tybys/wasm-util': 0.10.0
+ '@emnapi/core': 1.7.1
+ '@emnapi/runtime': 1.7.1
+ '@tybys/wasm-util': 0.10.1
optional: true
'@napi-rs/wasm-runtime@0.2.4':
dependencies:
- '@emnapi/core': 1.5.0
- '@emnapi/runtime': 1.5.0
+ '@emnapi/core': 1.7.1
+ '@emnapi/runtime': 1.7.1
'@tybys/wasm-util': 0.9.0
- '@napi-rs/wasm-runtime@1.0.3':
+ '@napi-rs/wasm-runtime@1.0.7':
dependencies:
- '@emnapi/core': 1.5.0
- '@emnapi/runtime': 1.5.0
- '@tybys/wasm-util': 0.10.0
+ '@emnapi/core': 1.7.1
+ '@emnapi/runtime': 1.7.1
+ '@tybys/wasm-util': 0.10.1
optional: true
'@nodelib/fs.scandir@2.1.5':
@@ -14437,45 +15810,296 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.19.1
- '@nrwl/devkit@19.8.4(nx@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ '@nrwl/devkit@19.8.4(nx@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ '@nx/devkit': 19.8.4(nx@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ transitivePeerDependencies:
+ - nx
+
+ '@nrwl/devkit@19.8.4(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ '@nx/devkit': 19.8.4(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ transitivePeerDependencies:
+ - nx
+
+ '@nrwl/js@19.8.4(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)':
+ dependencies:
+ '@nx/js': 19.8.4(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)
+ transitivePeerDependencies:
+ - '@babel/traverse'
+ - '@swc-node/register'
+ - '@swc/core'
+ - '@swc/wasm'
+ - '@types/node'
+ - debug
+ - nx
+ - supports-color
+ - typescript
+ - verdaccio
+
+ '@nrwl/tao@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
+ dependencies:
+ nx: 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - '@swc-node/register'
+ - '@swc/core'
+ - debug
+
+ '@nrwl/vite@19.8.4(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))(vitest@3.2.4)':
+ dependencies:
+ '@nx/vite': 19.8.4(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))(vitest@3.2.4)
+ transitivePeerDependencies:
+ - '@babel/traverse'
+ - '@swc-node/register'
+ - '@swc/core'
+ - '@swc/wasm'
+ - '@types/node'
+ - debug
+ - nx
+ - supports-color
+ - typescript
+ - verdaccio
+ - vite
+ - vitest
+
+ '@nrwl/workspace@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
+ dependencies:
+ '@nx/workspace': 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ transitivePeerDependencies:
+ - '@swc-node/register'
+ - '@swc/core'
+ - debug
+
+ '@nx/cypress@21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@14.5.4)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)':
+ dependencies:
+ '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/eslint': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/js': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ detect-port: 1.6.1
+ semver: 7.7.3
+ tree-kill: 1.2.2
+ tslib: 2.8.1
+ optionalDependencies:
+ cypress: 14.5.4
+ transitivePeerDependencies:
+ - '@babel/traverse'
+ - '@swc-node/register'
+ - '@swc/core'
+ - '@zkochan/js-yaml'
+ - debug
+ - eslint
+ - nx
+ - supports-color
+ - typescript
+ - verdaccio
+
+ '@nx/cypress@21.6.9(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@14.5.4)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)':
dependencies:
- '@nx/devkit': 19.8.4(nx@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/devkit': 21.6.9(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/eslint': 21.6.9(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/js': 21.6.9(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ detect-port: 1.6.1
+ semver: 7.7.3
+ tree-kill: 1.2.2
+ tslib: 2.8.1
+ optionalDependencies:
+ cypress: 14.5.4
transitivePeerDependencies:
+ - '@babel/traverse'
+ - '@swc-node/register'
+ - '@swc/core'
+ - '@zkochan/js-yaml'
+ - debug
+ - eslint
- nx
+ - supports-color
+ - typescript
+ - verdaccio
+
+ '@nx/devkit@19.8.4(nx@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ '@nrwl/devkit': 19.8.4(nx@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ ejs: 3.1.10
+ enquirer: 2.3.6
+ ignore: 5.3.2
+ minimatch: 9.0.3
+ nx: 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ semver: 7.7.3
+ tmp: 0.2.5
+ tslib: 2.8.1
+ yargs-parser: 21.1.1
+
+ '@nx/devkit@19.8.4(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ '@nrwl/devkit': 19.8.4(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ ejs: 3.1.10
+ enquirer: 2.3.6
+ ignore: 5.3.2
+ minimatch: 9.0.3
+ nx: 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ semver: 7.7.3
+ tmp: 0.2.5
+ tslib: 2.8.1
+ yargs-parser: 21.1.1
+
+ '@nx/devkit@21.2.2(nx@21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ ejs: 3.1.10
+ enquirer: 2.3.6
+ ignore: 5.3.2
+ minimatch: 9.0.3
+ nx: 21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ semver: 7.7.3
+ tmp: 0.2.5
+ tslib: 2.8.1
+ yargs-parser: 21.1.1
+
+ '@nx/devkit@21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ ejs: 3.1.10
+ enquirer: 2.3.6
+ ignore: 5.3.2
+ minimatch: 9.0.3
+ nx: 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ semver: 7.7.3
+ tmp: 0.2.5
+ tslib: 2.8.1
+ yargs-parser: 21.1.1
+
+ '@nx/devkit@21.3.10(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ ejs: 3.1.10
+ enquirer: 2.3.6
+ ignore: 5.3.2
+ minimatch: 9.0.3
+ nx: 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ semver: 7.7.3
+ tmp: 0.2.5
+ tslib: 2.8.1
+ yargs-parser: 21.1.1
+
+ '@nx/devkit@21.6.9(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ ejs: 3.1.10
+ enquirer: 2.3.6
+ ignore: 5.3.2
+ minimatch: 9.0.3
+ nx: 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ semver: 7.7.3
+ tslib: 2.8.1
+ yargs-parser: 21.1.1
+
+ '@nx/devkit@21.6.9(nx@21.6.9(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ ejs: 3.1.10
+ enquirer: 2.3.6
+ ignore: 5.3.2
+ minimatch: 9.0.3
+ nx: 21.6.9(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ semver: 7.7.3
+ tslib: 2.8.1
+ yargs-parser: 21.1.1
- '@nrwl/devkit@19.8.4(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ '@nx/eslint-plugin@21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3))(eslint-config-prettier@10.1.8(eslint@9.39.1(jiti@2.4.2)))(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)':
dependencies:
- '@nx/devkit': 19.8.4(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/js': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/type-utils': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
+ chalk: 4.1.2
+ confusing-browser-globals: 1.0.11
+ globals: 15.15.0
+ jsonc-eslint-parser: 2.4.1
+ semver: 7.7.3
+ tslib: 2.8.1
+ optionalDependencies:
+ eslint-config-prettier: 10.1.8(eslint@9.39.1(jiti@2.4.2))
transitivePeerDependencies:
+ - '@babel/traverse'
+ - '@swc-node/register'
+ - '@swc/core'
+ - debug
+ - eslint
- nx
+ - supports-color
+ - typescript
+ - verdaccio
- '@nrwl/js@19.8.4(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)':
+ '@nx/eslint@21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
dependencies:
- '@nx/js': 19.8.4(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)
+ '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/js': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ eslint: 9.39.1(jiti@2.4.2)
+ semver: 7.7.3
+ tslib: 2.8.1
+ typescript: 5.8.3
+ optionalDependencies:
+ '@zkochan/js-yaml': 0.0.7
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- debug
- nx
- supports-color
- - typescript
- verdaccio
- '@nrwl/tao@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
+ '@nx/eslint@21.6.9(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
dependencies:
- nx: 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ '@nx/devkit': 21.6.9(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/js': 21.6.9(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ eslint: 9.39.1(jiti@2.4.2)
+ semver: 7.7.3
tslib: 2.8.1
+ typescript: 5.9.3
+ optionalDependencies:
+ '@zkochan/js-yaml': 0.0.7
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- debug
+ - nx
+ - supports-color
+ - verdaccio
- '@nrwl/vite@19.8.4(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))(vitest@3.2.4)':
- dependencies:
- '@nx/vite': 19.8.4(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))(vitest@3.2.4)
+ '@nx/js@19.8.4(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)':
+ dependencies:
+ '@babel/core': 7.28.5
+ '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.5)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-env': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5)
+ '@babel/runtime': 7.28.4
+ '@nrwl/js': 19.8.4(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)
+ '@nx/devkit': 19.8.4(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/workspace': 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.28.5)
+ babel-plugin-macros: 2.8.0
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.28.5)(@babel/traverse@7.28.5)
+ chalk: 4.1.2
+ columnify: 1.6.0
+ detect-port: 1.6.1
+ enquirer: 2.3.6
+ fast-glob: 3.2.7
+ ignore: 5.3.2
+ js-tokens: 4.0.0
+ jsonc-parser: 3.2.0
+ minimatch: 9.0.3
+ npm-package-arg: 11.0.1
+ npm-run-path: 4.0.1
+ ora: 5.3.0
+ semver: 7.7.3
+ source-map-support: 0.5.19
+ ts-node: 10.9.1(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.8.3)
+ tsconfig-paths: 4.2.0
+ tslib: 2.8.1
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -14486,302 +16110,394 @@ snapshots:
- nx
- supports-color
- typescript
- - verdaccio
- - vite
- - vitest
- '@nrwl/workspace@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
- dependencies:
- '@nx/workspace': 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ '@nx/js@21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ '@babel/core': 7.28.5
+ '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.5)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-env': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5)
+ '@babel/runtime': 7.28.4
+ '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/workspace': 21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ '@zkochan/js-yaml': 0.0.7
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.28.5)
+ babel-plugin-macros: 3.1.0
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.28.5)(@babel/traverse@7.28.5)
+ chalk: 4.1.2
+ columnify: 1.6.0
+ detect-port: 1.6.1
+ enquirer: 2.3.6
+ ignore: 5.3.2
+ js-tokens: 4.0.0
+ jsonc-parser: 3.2.0
+ npm-package-arg: 11.0.1
+ npm-run-path: 4.0.1
+ ora: 5.3.0
+ picocolors: 1.1.1
+ picomatch: 4.0.2
+ semver: 7.7.3
+ source-map-support: 0.5.19
+ tinyglobby: 0.2.15
+ tslib: 2.8.1
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- debug
+ - nx
+ - supports-color
- '@nx/cypress@21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@14.5.4)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)':
- dependencies:
- '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/eslint': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/js': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ '@nx/js@21.3.10(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ '@babel/core': 7.28.5
+ '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.5)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-env': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5)
+ '@babel/runtime': 7.28.4
+ '@nx/devkit': 21.3.10(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/workspace': 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ '@zkochan/js-yaml': 0.0.7
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.28.5)
+ babel-plugin-macros: 3.1.0
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.28.5)(@babel/traverse@7.28.5)
+ chalk: 4.1.2
+ columnify: 1.6.0
detect-port: 1.6.1
- semver: 7.7.2
- tree-kill: 1.2.2
+ enquirer: 2.3.6
+ ignore: 5.3.2
+ js-tokens: 4.0.0
+ jsonc-parser: 3.2.0
+ npm-package-arg: 11.0.1
+ npm-run-path: 4.0.1
+ ora: 5.3.0
+ picocolors: 1.1.1
+ picomatch: 4.0.2
+ semver: 7.7.3
+ source-map-support: 0.5.19
+ tinyglobby: 0.2.15
tslib: 2.8.1
- optionalDependencies:
- cypress: 14.5.4
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- - '@zkochan/js-yaml'
- debug
- - eslint
- nx
- supports-color
- - typescript
- - verdaccio
- '@nx/cypress@21.5.1(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@14.5.4)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)':
- dependencies:
- '@nx/devkit': 21.5.1(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/eslint': 21.5.1(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/js': 21.5.1(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ '@nx/js@21.6.9(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ '@babel/core': 7.28.5
+ '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.5)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-env': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5)
+ '@babel/runtime': 7.28.4
+ '@nx/devkit': 21.6.9(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/workspace': 21.6.9(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ '@zkochan/js-yaml': 0.0.7
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.28.5)
+ babel-plugin-macros: 3.1.0
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.28.5)(@babel/traverse@7.28.5)
+ chalk: 4.1.2
+ columnify: 1.6.0
detect-port: 1.6.1
- semver: 7.7.2
- tree-kill: 1.2.2
+ enquirer: 2.3.6
+ ignore: 5.3.2
+ js-tokens: 4.0.0
+ jsonc-parser: 3.2.0
+ npm-package-arg: 11.0.1
+ npm-run-path: 4.0.1
+ ora: 5.3.0
+ picocolors: 1.1.1
+ picomatch: 4.0.2
+ semver: 7.7.3
+ source-map-support: 0.5.19
+ tinyglobby: 0.2.15
tslib: 2.8.1
- optionalDependencies:
- cypress: 14.5.4
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- - '@zkochan/js-yaml'
- debug
- - eslint
- nx
- supports-color
- - typescript
- - verdaccio
- '@nx/devkit@19.8.4(nx@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ '@nx/module-federation@21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(esbuild@0.25.12)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.8.3)':
dependencies:
- '@nrwl/devkit': 19.8.4(nx@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- ejs: 3.1.10
- enquirer: 2.3.6
- ignore: 5.3.2
- minimatch: 9.0.3
- nx: 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- semver: 7.7.2
- tmp: 0.2.5
+ '@module-federation/enhanced': 0.15.0(@rspack/core@1.6.5(@swc/helpers@0.5.17))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.8.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
+ '@module-federation/node': 2.7.25(@rspack/core@1.6.5(@swc/helpers@0.5.17))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.8.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
+ '@module-federation/sdk': 0.15.0
+ '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/js': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/web': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@rspack/core': 1.6.5(@swc/helpers@0.5.17)
+ express: 4.21.2
+ http-proxy-middleware: 3.0.5
+ picocolors: 1.1.1
tslib: 2.8.1
- yargs-parser: 21.1.1
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
+ transitivePeerDependencies:
+ - '@babel/traverse'
+ - '@swc-node/register'
+ - '@swc/core'
+ - '@swc/helpers'
+ - bufferutil
+ - debug
+ - esbuild
+ - next
+ - nx
+ - react
+ - react-dom
+ - supports-color
+ - typescript
+ - uglify-js
+ - utf-8-validate
+ - verdaccio
+ - vue-tsc
+ - webpack-cli
- '@nx/devkit@19.8.4(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
- dependencies:
- '@nrwl/devkit': 19.8.4(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- ejs: 3.1.10
- enquirer: 2.3.6
- ignore: 5.3.2
- minimatch: 9.0.3
- nx: 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- semver: 7.7.2
- tmp: 0.2.5
- tslib: 2.8.1
- yargs-parser: 21.1.1
+ '@nx/nx-darwin-arm64@19.8.4':
+ optional: true
- '@nx/devkit@21.2.2(nx@21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
- dependencies:
- ejs: 3.1.10
- enquirer: 2.3.6
- ignore: 5.3.2
- minimatch: 9.0.3
- nx: 21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- semver: 7.7.2
- tmp: 0.2.5
- tslib: 2.8.1
- yargs-parser: 21.1.1
+ '@nx/nx-darwin-arm64@21.2.2':
+ optional: true
- '@nx/devkit@21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
- dependencies:
- ejs: 3.1.10
- enquirer: 2.3.6
- ignore: 5.3.2
- minimatch: 9.0.3
- nx: 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- semver: 7.7.2
- tmp: 0.2.5
- tslib: 2.8.1
- yargs-parser: 21.1.1
+ '@nx/nx-darwin-arm64@21.3.10':
+ optional: true
- '@nx/devkit@21.3.10(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
- dependencies:
- ejs: 3.1.10
- enquirer: 2.3.6
- ignore: 5.3.2
- minimatch: 9.0.3
- nx: 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- semver: 7.7.2
- tmp: 0.2.5
- tslib: 2.8.1
- yargs-parser: 21.1.1
+ '@nx/nx-darwin-arm64@21.6.9':
+ optional: true
+
+ '@nx/nx-darwin-x64@19.8.4':
+ optional: true
+
+ '@nx/nx-darwin-x64@21.2.2':
+ optional: true
+
+ '@nx/nx-darwin-x64@21.3.10':
+ optional: true
+
+ '@nx/nx-darwin-x64@21.6.9':
+ optional: true
+
+ '@nx/nx-freebsd-x64@19.8.4':
+ optional: true
+
+ '@nx/nx-freebsd-x64@21.2.2':
+ optional: true
+
+ '@nx/nx-freebsd-x64@21.3.10':
+ optional: true
+
+ '@nx/nx-freebsd-x64@21.6.9':
+ optional: true
+
+ '@nx/nx-linux-arm-gnueabihf@19.8.4':
+ optional: true
+
+ '@nx/nx-linux-arm-gnueabihf@21.2.2':
+ optional: true
+
+ '@nx/nx-linux-arm-gnueabihf@21.3.10':
+ optional: true
+
+ '@nx/nx-linux-arm-gnueabihf@21.6.9':
+ optional: true
+
+ '@nx/nx-linux-arm64-gnu@19.8.4':
+ optional: true
+
+ '@nx/nx-linux-arm64-gnu@21.2.2':
+ optional: true
+
+ '@nx/nx-linux-arm64-gnu@21.3.10':
+ optional: true
+
+ '@nx/nx-linux-arm64-gnu@21.6.9':
+ optional: true
+
+ '@nx/nx-linux-arm64-musl@19.8.4':
+ optional: true
+
+ '@nx/nx-linux-arm64-musl@21.2.2':
+ optional: true
+
+ '@nx/nx-linux-arm64-musl@21.3.10':
+ optional: true
+
+ '@nx/nx-linux-arm64-musl@21.6.9':
+ optional: true
+
+ '@nx/nx-linux-x64-gnu@19.8.4':
+ optional: true
+
+ '@nx/nx-linux-x64-gnu@21.2.2':
+ optional: true
+
+ '@nx/nx-linux-x64-gnu@21.3.10':
+ optional: true
+
+ '@nx/nx-linux-x64-gnu@21.6.9':
+ optional: true
+
+ '@nx/nx-linux-x64-musl@19.8.4':
+ optional: true
+
+ '@nx/nx-linux-x64-musl@21.2.2':
+ optional: true
+
+ '@nx/nx-linux-x64-musl@21.3.10':
+ optional: true
+
+ '@nx/nx-linux-x64-musl@21.6.9':
+ optional: true
+
+ '@nx/nx-win32-arm64-msvc@19.8.4':
+ optional: true
+
+ '@nx/nx-win32-arm64-msvc@21.2.2':
+ optional: true
+
+ '@nx/nx-win32-arm64-msvc@21.3.10':
+ optional: true
+
+ '@nx/nx-win32-arm64-msvc@21.6.9':
+ optional: true
- '@nx/devkit@21.4.1(nx@21.4.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
- dependencies:
- ejs: 3.1.10
- enquirer: 2.3.6
- ignore: 5.3.2
- minimatch: 9.0.3
- nx: 21.4.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- semver: 7.7.2
- tmp: 0.2.5
- tslib: 2.8.1
- yargs-parser: 21.1.1
+ '@nx/nx-win32-x64-msvc@19.8.4':
+ optional: true
- '@nx/devkit@21.5.1(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
- dependencies:
- ejs: 3.1.10
- enquirer: 2.3.6
- ignore: 5.3.2
- minimatch: 9.0.3
- nx: 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- semver: 7.7.2
- tmp: 0.2.5
- tslib: 2.8.1
- yargs-parser: 21.1.1
+ '@nx/nx-win32-x64-msvc@21.2.2':
+ optional: true
- '@nx/devkit@21.5.1(nx@21.5.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
- dependencies:
- ejs: 3.1.10
- enquirer: 2.3.6
- ignore: 5.3.2
- minimatch: 9.0.3
- nx: 21.5.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- semver: 7.7.2
- tmp: 0.2.5
- tslib: 2.8.1
- yargs-parser: 21.1.1
+ '@nx/nx-win32-x64-msvc@21.3.10':
+ optional: true
+
+ '@nx/nx-win32-x64-msvc@21.6.9':
+ optional: true
- '@nx/eslint-plugin@21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3))(eslint-config-prettier@10.1.8(eslint@9.34.0(jiti@2.4.2)))(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)':
+ '@nx/react@21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(@zkochan/js-yaml@0.0.7)(esbuild@0.25.12)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.8.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))':
dependencies:
- '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/js': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/eslint': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/js': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/module-federation': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(esbuild@0.25.12)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.8.3)
+ '@nx/web': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
'@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
- '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/type-utils': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
- chalk: 4.1.2
- confusing-browser-globals: 1.0.11
- globals: 15.15.0
- jsonc-eslint-parser: 2.4.0
- semver: 7.7.2
+ '@svgr/webpack': 8.1.0(typescript@5.8.3)
+ express: 4.21.2
+ file-loader: 6.2.0(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
+ http-proxy-middleware: 3.0.5
+ minimatch: 9.0.3
+ picocolors: 1.1.1
+ semver: 7.7.3
tslib: 2.8.1
- optionalDependencies:
- eslint-config-prettier: 10.1.8(eslint@9.34.0(jiti@2.4.2))
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
+ - '@swc/helpers'
+ - '@zkochan/js-yaml'
+ - bufferutil
- debug
+ - esbuild
- eslint
+ - next
- nx
+ - react
+ - react-dom
- supports-color
- typescript
+ - uglify-js
+ - utf-8-validate
- verdaccio
+ - vue-tsc
+ - webpack
+ - webpack-cli
- '@nx/eslint@21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ '@nx/storybook@21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@14.5.4)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.8.3)':
dependencies:
- '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/js': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- eslint: 9.34.0(jiti@2.4.2)
- semver: 7.7.2
+ '@nx/cypress': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@14.5.4)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)
+ '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/eslint': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.39.1(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/js': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ semver: 7.7.3
+ storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
tslib: 2.8.1
- typescript: 5.8.3
- optionalDependencies:
- '@zkochan/js-yaml': 0.0.7
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
+ - '@zkochan/js-yaml'
+ - cypress
- debug
+ - eslint
- nx
- supports-color
+ - typescript
- verdaccio
- '@nx/eslint@21.5.1(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ '@nx/vite@19.8.4(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))(vitest@3.2.4)':
dependencies:
- '@nx/devkit': 21.5.1(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/js': 21.5.1(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- eslint: 9.34.0(jiti@2.4.2)
- semver: 7.7.2
- tslib: 2.8.1
- typescript: 5.9.2
- optionalDependencies:
- '@zkochan/js-yaml': 0.0.7
+ '@nrwl/vite': 19.8.4(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))(vitest@3.2.4)
+ '@nx/devkit': 19.8.4(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/js': 19.8.4(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ '@swc/helpers': 0.5.17
+ enquirer: 2.3.6
+ minimatch: 9.0.3
+ tsconfig-paths: 4.2.0
+ vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
+ vitest: 3.2.4(@types/node@24.10.1)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.44.1)(yaml@2.8.1)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
+ - '@swc/wasm'
+ - '@types/node'
- debug
- nx
- supports-color
+ - typescript
- verdaccio
- '@nx/js@19.8.4(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)':
- dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.3)
- '@babel/preset-env': 7.28.3(@babel/core@7.28.3)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.28.3)
- '@babel/runtime': 7.28.3
- '@nrwl/js': 19.8.4(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)
- '@nx/devkit': 19.8.4(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/workspace': 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- babel-plugin-const-enum: 1.2.0(@babel/core@7.28.3)
- babel-plugin-macros: 2.8.0
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.28.3)(@babel/traverse@7.28.3)
- chalk: 4.1.2
- columnify: 1.6.0
- detect-port: 1.6.1
+ '@nx/vite@21.3.10(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))(vitest@3.2.4)':
+ dependencies:
+ '@nx/devkit': 21.3.10(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/js': 21.3.10(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ '@swc/helpers': 0.5.17
+ ajv: 8.17.1
enquirer: 2.3.6
- fast-glob: 3.2.7
- ignore: 5.3.2
- js-tokens: 4.0.0
- jsonc-parser: 3.2.0
- minimatch: 9.0.3
- npm-package-arg: 11.0.1
- npm-run-path: 4.0.1
- ora: 5.3.0
- semver: 7.7.2
- source-map-support: 0.5.19
- ts-node: 10.9.1(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.8.3)
+ picomatch: 4.0.2
+ semver: 7.7.3
tsconfig-paths: 4.2.0
- tslib: 2.8.1
+ vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
+ vitest: 3.2.4(@types/node@24.10.1)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.44.1)(yaml@2.8.1)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- debug
- nx
- supports-color
- typescript
+ - verdaccio
- '@nx/js@21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
- dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.3)
- '@babel/preset-env': 7.28.3(@babel/core@7.28.3)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.28.3)
- '@babel/runtime': 7.28.3
- '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/workspace': 21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- '@zkochan/js-yaml': 0.0.7
- babel-plugin-const-enum: 1.2.0(@babel/core@7.28.3)
- babel-plugin-macros: 3.1.0
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.28.3)(@babel/traverse@7.28.3)
- chalk: 4.1.2
- columnify: 1.6.0
+ '@nx/web@21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/js': 21.2.2(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
detect-port: 1.6.1
- enquirer: 2.3.6
- ignore: 5.3.2
- js-tokens: 4.0.0
- jsonc-parser: 3.2.0
- npm-package-arg: 11.0.1
- npm-run-path: 4.0.1
- ora: 5.3.0
+ http-server: 14.1.1
picocolors: 1.1.1
- picomatch: 4.0.2
- semver: 7.7.2
- source-map-support: 0.5.19
- tinyglobby: 0.2.14
tslib: 2.8.1
transitivePeerDependencies:
- '@babel/traverse'
@@ -14790,37 +16506,15 @@ snapshots:
- debug
- nx
- supports-color
+ - verdaccio
- '@nx/js@21.3.10(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
- dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.3)
- '@babel/preset-env': 7.28.3(@babel/core@7.28.3)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.28.3)
- '@babel/runtime': 7.28.3
- '@nx/devkit': 21.3.10(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/workspace': 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- '@zkochan/js-yaml': 0.0.7
- babel-plugin-const-enum: 1.2.0(@babel/core@7.28.3)
- babel-plugin-macros: 3.1.0
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.28.3)(@babel/traverse@7.28.3)
- chalk: 4.1.2
- columnify: 1.6.0
+ '@nx/web@21.3.10(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ dependencies:
+ '@nx/devkit': 21.3.10(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@nx/js': 21.3.10(@babel/traverse@7.28.5)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
detect-port: 1.6.1
- enquirer: 2.3.6
- ignore: 5.3.2
- js-tokens: 4.0.0
- jsonc-parser: 3.2.0
- npm-package-arg: 11.0.1
- npm-run-path: 4.0.1
- ora: 5.3.0
+ http-server: 14.1.1
picocolors: 1.1.1
- picomatch: 4.0.2
- semver: 7.7.2
- source-map-support: 0.5.19
- tinyglobby: 0.2.14
tslib: 2.8.1
transitivePeerDependencies:
- '@babel/traverse'
@@ -14829,2326 +16523,3084 @@ snapshots:
- debug
- nx
- supports-color
+ - verdaccio
+
+ '@nx/workspace@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
+ dependencies:
+ '@nrwl/workspace': 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ '@nx/devkit': 19.8.4(nx@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ chalk: 4.1.2
+ enquirer: 2.3.6
+ nx: 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ tslib: 2.8.1
+ yargs-parser: 21.1.1
+ transitivePeerDependencies:
+ - '@swc-node/register'
+ - '@swc/core'
+ - debug
- '@nx/js@21.5.1(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
- dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.3)
- '@babel/preset-env': 7.28.3(@babel/core@7.28.3)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.28.3)
- '@babel/runtime': 7.28.3
- '@nx/devkit': 21.5.1(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/workspace': 21.5.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ '@nx/workspace@21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
+ dependencies:
+ '@nx/devkit': 21.2.2(nx@21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
'@zkochan/js-yaml': 0.0.7
- babel-plugin-const-enum: 1.2.0(@babel/core@7.28.3)
- babel-plugin-macros: 3.1.0
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.28.3)(@babel/traverse@7.28.3)
chalk: 4.1.2
- columnify: 1.6.0
- detect-port: 1.6.1
enquirer: 2.3.6
- ignore: 5.3.2
- js-tokens: 4.0.0
- jsonc-parser: 3.2.0
- npm-package-arg: 11.0.1
- npm-run-path: 4.0.1
- ora: 5.3.0
- picocolors: 1.1.1
+ nx: 21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
picomatch: 4.0.2
- semver: 7.7.2
- source-map-support: 0.5.19
- tinyglobby: 0.2.14
tslib: 2.8.1
+ yargs-parser: 21.1.1
transitivePeerDependencies:
- - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- debug
- - nx
- - supports-color
- '@nx/module-federation@21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(esbuild@0.25.9)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)':
+ '@nx/workspace@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
dependencies:
- '@module-federation/enhanced': 0.15.0(@rspack/core@1.5.2(@swc/helpers@0.5.17))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
- '@module-federation/node': 2.7.15(@rspack/core@1.5.2(@swc/helpers@0.5.17))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
- '@module-federation/sdk': 0.15.0
- '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/js': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/web': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@rspack/core': 1.5.2(@swc/helpers@0.5.17)
- express: 4.21.2
- http-proxy-middleware: 3.0.5
- picocolors: 1.1.1
+ '@nx/devkit': 21.3.10(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@zkochan/js-yaml': 0.0.7
+ chalk: 4.1.2
+ enquirer: 2.3.6
+ nx: 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ picomatch: 4.0.2
tslib: 2.8.1
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ yargs-parser: 21.1.1
transitivePeerDependencies:
- - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- - '@swc/helpers'
- - bufferutil
- debug
- - esbuild
- - next
- - nx
- - react
- - react-dom
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - verdaccio
- - vue-tsc
- - webpack-cli
- '@nx/nx-darwin-arm64@19.8.4':
- optional: true
+ '@nx/workspace@21.6.9(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
+ dependencies:
+ '@nx/devkit': 21.6.9(nx@21.6.9(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
+ '@zkochan/js-yaml': 0.0.7
+ chalk: 4.1.2
+ enquirer: 2.3.6
+ nx: 21.6.9(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ picomatch: 4.0.2
+ semver: 7.7.3
+ tslib: 2.8.1
+ yargs-parser: 21.1.1
+ transitivePeerDependencies:
+ - '@swc-node/register'
+ - '@swc/core'
+ - debug
+
+ '@oxc-resolver/binding-darwin-arm64@5.3.0':
+ optional: true
+
+ '@oxc-resolver/binding-darwin-x64@5.3.0':
+ optional: true
+
+ '@oxc-resolver/binding-freebsd-x64@5.3.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm-gnueabihf@5.3.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm64-gnu@5.3.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm64-musl@5.3.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-riscv64-gnu@5.3.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-s390x-gnu@5.3.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-x64-gnu@5.3.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-x64-musl@5.3.0':
+ optional: true
+
+ '@oxc-resolver/binding-wasm32-wasi@5.3.0':
+ dependencies:
+ '@napi-rs/wasm-runtime': 0.2.12
+ optional: true
+
+ '@oxc-resolver/binding-win32-arm64-msvc@5.3.0':
+ optional: true
+
+ '@oxc-resolver/binding-win32-x64-msvc@5.3.0':
+ optional: true
+
+ '@petamoriken/float16@3.9.3': {}
+
+ '@phenomnomnominal/tsquery@5.0.1(typescript@5.8.3)':
+ dependencies:
+ esquery: 1.6.0
+ typescript: 5.8.3
+
+ '@pkgjs/parseargs@0.11.0':
+ optional: true
+
+ '@pkgr/core@0.2.9': {}
+
+ '@polka/url@1.0.0-next.29': {}
+
+ '@popperjs/core@2.11.8': {}
+
+ '@probe.gl/env@4.1.0': {}
+
+ '@probe.gl/log@4.1.0':
+ dependencies:
+ '@probe.gl/env': 4.1.0
+
+ '@probe.gl/stats@4.1.0': {}
+
+ '@reduxjs/toolkit@2.11.0(react-redux@9.2.0(@types/react@19.2.7)(react@19.2.1)(redux@5.0.1))(react@19.2.1)':
+ dependencies:
+ '@standard-schema/spec': 1.0.0
+ '@standard-schema/utils': 0.3.0
+ immer: 11.0.0
+ redux: 5.0.1
+ redux-thunk: 3.1.0(redux@5.0.1)
+ reselect: 5.1.1
+ optionalDependencies:
+ react: 19.2.1
+ react-redux: 9.2.0(@types/react@19.2.7)(react@19.2.1)(redux@5.0.1)
+
+ '@rolldown/pluginutils@1.0.0-beta.27': {}
- '@nx/nx-darwin-arm64@21.2.2':
- optional: true
+ '@rolldown/pluginutils@1.0.0-beta.53': {}
- '@nx/nx-darwin-arm64@21.3.10':
- optional: true
+ '@rollup/pluginutils@5.3.0(rollup@4.53.3)':
+ dependencies:
+ '@types/estree': 1.0.8
+ estree-walker: 2.0.2
+ picomatch: 4.0.3
+ optionalDependencies:
+ rollup: 4.53.3
- '@nx/nx-darwin-arm64@21.4.1':
+ '@rollup/rollup-android-arm-eabi@4.53.3':
optional: true
- '@nx/nx-darwin-arm64@21.5.1':
+ '@rollup/rollup-android-arm64@4.53.3':
optional: true
- '@nx/nx-darwin-x64@19.8.4':
+ '@rollup/rollup-darwin-arm64@4.53.3':
optional: true
- '@nx/nx-darwin-x64@21.2.2':
+ '@rollup/rollup-darwin-x64@4.53.3':
optional: true
- '@nx/nx-darwin-x64@21.3.10':
+ '@rollup/rollup-freebsd-arm64@4.53.3':
optional: true
- '@nx/nx-darwin-x64@21.4.1':
+ '@rollup/rollup-freebsd-x64@4.53.3':
optional: true
- '@nx/nx-darwin-x64@21.5.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.53.3':
optional: true
- '@nx/nx-freebsd-x64@19.8.4':
+ '@rollup/rollup-linux-arm-musleabihf@4.53.3':
optional: true
- '@nx/nx-freebsd-x64@21.2.2':
+ '@rollup/rollup-linux-arm64-gnu@4.53.3':
optional: true
- '@nx/nx-freebsd-x64@21.3.10':
+ '@rollup/rollup-linux-arm64-musl@4.53.3':
optional: true
- '@nx/nx-freebsd-x64@21.4.1':
+ '@rollup/rollup-linux-loong64-gnu@4.53.3':
optional: true
- '@nx/nx-freebsd-x64@21.5.1':
+ '@rollup/rollup-linux-ppc64-gnu@4.53.3':
optional: true
- '@nx/nx-linux-arm-gnueabihf@19.8.4':
+ '@rollup/rollup-linux-riscv64-gnu@4.53.3':
optional: true
- '@nx/nx-linux-arm-gnueabihf@21.2.2':
+ '@rollup/rollup-linux-riscv64-musl@4.53.3':
optional: true
- '@nx/nx-linux-arm-gnueabihf@21.3.10':
+ '@rollup/rollup-linux-s390x-gnu@4.53.3':
optional: true
- '@nx/nx-linux-arm-gnueabihf@21.4.1':
+ '@rollup/rollup-linux-x64-gnu@4.53.3':
optional: true
- '@nx/nx-linux-arm-gnueabihf@21.5.1':
+ '@rollup/rollup-linux-x64-musl@4.53.3':
optional: true
- '@nx/nx-linux-arm64-gnu@19.8.4':
+ '@rollup/rollup-openharmony-arm64@4.53.3':
optional: true
- '@nx/nx-linux-arm64-gnu@21.2.2':
+ '@rollup/rollup-win32-arm64-msvc@4.53.3':
optional: true
- '@nx/nx-linux-arm64-gnu@21.3.10':
+ '@rollup/rollup-win32-ia32-msvc@4.53.3':
optional: true
- '@nx/nx-linux-arm64-gnu@21.4.1':
+ '@rollup/rollup-win32-x64-gnu@4.53.3':
optional: true
- '@nx/nx-linux-arm64-gnu@21.5.1':
+ '@rollup/rollup-win32-x64-msvc@4.53.3':
optional: true
- '@nx/nx-linux-arm64-musl@19.8.4':
+ '@rspack/binding-darwin-arm64@1.6.5':
optional: true
- '@nx/nx-linux-arm64-musl@21.2.2':
+ '@rspack/binding-darwin-x64@1.6.5':
optional: true
- '@nx/nx-linux-arm64-musl@21.3.10':
+ '@rspack/binding-linux-arm64-gnu@1.6.5':
optional: true
- '@nx/nx-linux-arm64-musl@21.4.1':
+ '@rspack/binding-linux-arm64-musl@1.6.5':
optional: true
- '@nx/nx-linux-arm64-musl@21.5.1':
+ '@rspack/binding-linux-x64-gnu@1.6.5':
optional: true
- '@nx/nx-linux-x64-gnu@19.8.4':
+ '@rspack/binding-linux-x64-musl@1.6.5':
optional: true
- '@nx/nx-linux-x64-gnu@21.2.2':
+ '@rspack/binding-wasm32-wasi@1.6.5':
+ dependencies:
+ '@napi-rs/wasm-runtime': 1.0.7
optional: true
- '@nx/nx-linux-x64-gnu@21.3.10':
+ '@rspack/binding-win32-arm64-msvc@1.6.5':
optional: true
- '@nx/nx-linux-x64-gnu@21.4.1':
+ '@rspack/binding-win32-ia32-msvc@1.6.5':
optional: true
- '@nx/nx-linux-x64-gnu@21.5.1':
+ '@rspack/binding-win32-x64-msvc@1.6.5':
optional: true
- '@nx/nx-linux-x64-musl@19.8.4':
- optional: true
+ '@rspack/binding@1.6.5':
+ optionalDependencies:
+ '@rspack/binding-darwin-arm64': 1.6.5
+ '@rspack/binding-darwin-x64': 1.6.5
+ '@rspack/binding-linux-arm64-gnu': 1.6.5
+ '@rspack/binding-linux-arm64-musl': 1.6.5
+ '@rspack/binding-linux-x64-gnu': 1.6.5
+ '@rspack/binding-linux-x64-musl': 1.6.5
+ '@rspack/binding-wasm32-wasi': 1.6.5
+ '@rspack/binding-win32-arm64-msvc': 1.6.5
+ '@rspack/binding-win32-ia32-msvc': 1.6.5
+ '@rspack/binding-win32-x64-msvc': 1.6.5
+
+ '@rspack/core@1.6.5(@swc/helpers@0.5.17)':
+ dependencies:
+ '@module-federation/runtime-tools': 0.21.4
+ '@rspack/binding': 1.6.5
+ '@rspack/lite-tapable': 1.1.0
+ optionalDependencies:
+ '@swc/helpers': 0.5.17
- '@nx/nx-linux-x64-musl@21.2.2':
- optional: true
+ '@rspack/lite-tapable@1.1.0': {}
- '@nx/nx-linux-x64-musl@21.3.10':
- optional: true
+ '@rtsao/scc@1.1.0': {}
- '@nx/nx-linux-x64-musl@21.4.1':
- optional: true
+ '@rushstack/node-core-library@5.19.0(@types/node@24.10.1)':
+ dependencies:
+ ajv: 8.13.0
+ ajv-draft-04: 1.0.0(ajv@8.13.0)
+ ajv-formats: 3.0.1(ajv@8.13.0)
+ fs-extra: 11.3.2
+ import-lazy: 4.0.0
+ jju: 1.4.0
+ resolve: 1.22.11
+ semver: 7.5.4
+ optionalDependencies:
+ '@types/node': 24.10.1
- '@nx/nx-linux-x64-musl@21.5.1':
- optional: true
+ '@rushstack/problem-matcher@0.1.1(@types/node@24.10.1)':
+ optionalDependencies:
+ '@types/node': 24.10.1
- '@nx/nx-win32-arm64-msvc@19.8.4':
- optional: true
+ '@rushstack/rig-package@0.6.0':
+ dependencies:
+ resolve: 1.22.11
+ strip-json-comments: 3.1.1
- '@nx/nx-win32-arm64-msvc@21.2.2':
- optional: true
+ '@rushstack/terminal@0.19.4(@types/node@24.10.1)':
+ dependencies:
+ '@rushstack/node-core-library': 5.19.0(@types/node@24.10.1)
+ '@rushstack/problem-matcher': 0.1.1(@types/node@24.10.1)
+ supports-color: 8.1.1
+ optionalDependencies:
+ '@types/node': 24.10.1
- '@nx/nx-win32-arm64-msvc@21.3.10':
- optional: true
+ '@rushstack/ts-command-line@5.1.4(@types/node@24.10.1)':
+ dependencies:
+ '@rushstack/terminal': 0.19.4(@types/node@24.10.1)
+ '@types/argparse': 1.0.38
+ argparse: 1.0.10
+ string-argv: 0.3.2
+ transitivePeerDependencies:
+ - '@types/node'
- '@nx/nx-win32-arm64-msvc@21.4.1':
- optional: true
+ '@scena/dragscroll@1.4.0':
+ dependencies:
+ '@daybrush/utils': 1.13.0
+ '@scena/event-emitter': 1.0.5
- '@nx/nx-win32-arm64-msvc@21.5.1':
- optional: true
+ '@scena/event-emitter@1.0.5':
+ dependencies:
+ '@daybrush/utils': 1.13.0
- '@nx/nx-win32-x64-msvc@19.8.4':
- optional: true
+ '@scena/matrix@1.1.1':
+ dependencies:
+ '@daybrush/utils': 1.13.0
- '@nx/nx-win32-x64-msvc@21.2.2':
- optional: true
+ '@sinclair/typebox@0.27.8': {}
- '@nx/nx-win32-x64-msvc@21.3.10':
- optional: true
+ '@sinclair/typebox@0.34.41': {}
- '@nx/nx-win32-x64-msvc@21.4.1':
- optional: true
+ '@sindresorhus/is@5.6.0': {}
+
+ '@sindresorhus/merge-streams@2.3.0': {}
+
+ '@sinonjs/commons@3.0.1':
+ dependencies:
+ type-detect: 4.0.8
+
+ '@sinonjs/fake-timers@13.0.5':
+ dependencies:
+ '@sinonjs/commons': 3.0.1
+
+ '@standard-schema/spec@1.0.0': {}
+
+ '@standard-schema/utils@0.3.0': {}
+
+ '@storybook/addon-docs@9.1.16(@types/react@19.1.8)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))':
+ dependencies:
+ '@mdx-js/react': 3.1.1(@types/react@19.1.8)(react@19.2.1)
+ '@storybook/csf-plugin': 9.1.16(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))
+ '@storybook/icons': 1.6.0(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@storybook/react-dom-shim': 9.1.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+ ts-dedent: 2.2.0
+ transitivePeerDependencies:
+ - '@types/react'
+
+ '@storybook/addon-links@9.1.16(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))':
+ dependencies:
+ '@storybook/global': 5.0.0
+ storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+ optionalDependencies:
+ react: 19.2.1
+
+ '@storybook/addons@7.6.17(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@storybook/manager-api': 7.6.17(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@storybook/preview-api': 7.6.17
+ '@storybook/types': 7.6.17
+ transitivePeerDependencies:
+ - react
+ - react-dom
+
+ '@storybook/builder-vite@9.1.1(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))':
+ dependencies:
+ '@storybook/csf-plugin': 9.1.1(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))
+ storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+ ts-dedent: 2.2.0
+ vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
+
+ '@storybook/channels@7.6.17':
+ dependencies:
+ '@storybook/client-logger': 7.6.17
+ '@storybook/core-events': 7.6.17
+ '@storybook/global': 5.0.0
+ qs: 6.14.0
+ telejson: 7.2.0
+ tiny-invariant: 1.3.3
+
+ '@storybook/client-logger@7.6.17':
+ dependencies:
+ '@storybook/global': 5.0.0
+
+ '@storybook/core-events@7.6.17':
+ dependencies:
+ ts-dedent: 2.2.0
+
+ '@storybook/csf-plugin@9.1.1(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))':
+ dependencies:
+ storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+ unplugin: 1.16.1
+
+ '@storybook/csf-plugin@9.1.16(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))':
+ dependencies:
+ storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+ unplugin: 1.16.1
+
+ '@storybook/csf@0.1.13':
+ dependencies:
+ type-fest: 2.19.0
+
+ '@storybook/global@5.0.0': {}
+
+ '@storybook/icons@1.6.0(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@storybook/manager-api@7.6.17(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@storybook/channels': 7.6.17
+ '@storybook/client-logger': 7.6.17
+ '@storybook/core-events': 7.6.17
+ '@storybook/csf': 0.1.13
+ '@storybook/global': 5.0.0
+ '@storybook/router': 7.6.17
+ '@storybook/theming': 7.6.17(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@storybook/types': 7.6.17
+ dequal: 2.0.3
+ lodash: 4.17.21
+ memoizerific: 1.11.3
+ store2: 2.14.4
+ telejson: 7.2.0
+ ts-dedent: 2.2.0
+ transitivePeerDependencies:
+ - react
+ - react-dom
+
+ '@storybook/preview-api@7.6.17':
+ dependencies:
+ '@storybook/channels': 7.6.17
+ '@storybook/client-logger': 7.6.17
+ '@storybook/core-events': 7.6.17
+ '@storybook/csf': 0.1.13
+ '@storybook/global': 5.0.0
+ '@storybook/types': 7.6.17
+ '@types/qs': 6.14.0
+ dequal: 2.0.3
+ lodash: 4.17.21
+ memoizerific: 1.11.3
+ qs: 6.14.0
+ synchronous-promise: 2.0.17
+ ts-dedent: 2.2.0
+ util-deprecate: 1.0.2
+
+ '@storybook/react-dom-shim@9.1.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))':
+ dependencies:
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+
+ '@storybook/react-dom-shim@9.1.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))':
+ dependencies:
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+
+ '@storybook/react-dom-shim@9.1.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))':
+ dependencies:
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ storybook: 9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+
+ '@storybook/react-vite@9.1.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(rollup@4.53.3)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))':
+ dependencies:
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.1(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+ '@rollup/pluginutils': 5.3.0(rollup@4.53.3)
+ '@storybook/builder-vite': 9.1.1(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+ '@storybook/react': 9.1.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.8.3)
+ find-up: 7.0.0
+ magic-string: 0.30.21
+ react: 19.2.1
+ react-docgen: 8.0.2
+ react-dom: 19.2.1(react@19.2.1)
+ resolve: 1.22.11
+ storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+ tsconfig-paths: 4.2.0
+ vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ - typescript
+
+ '@storybook/react@9.1.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.8.3)':
+ dependencies:
+ '@storybook/global': 5.0.0
+ '@storybook/react-dom-shim': 9.1.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@storybook/react@9.1.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.8.3)':
+ dependencies:
+ '@storybook/global': 5.0.0
+ '@storybook/react-dom-shim': 9.1.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@storybook/react@9.1.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.9.3)':
+ dependencies:
+ '@storybook/global': 5.0.0
+ '@storybook/react-dom-shim': 9.1.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ storybook: 9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
+ optionalDependencies:
+ typescript: 5.9.3
+
+ '@storybook/router@7.6.17':
+ dependencies:
+ '@storybook/client-logger': 7.6.17
+ memoizerific: 1.11.3
+ qs: 6.14.0
+
+ '@storybook/testing-react@2.0.1(@storybook/client-logger@7.6.17)(@storybook/preview-api@7.6.17)(@storybook/react@9.1.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.8.3))(@storybook/types@7.6.17)(react@19.2.1)':
+ dependencies:
+ '@storybook/client-logger': 7.6.17
+ '@storybook/csf': 0.1.13
+ '@storybook/preview-api': 7.6.17
+ '@storybook/react': 9.1.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.8.3)
+ '@storybook/types': 7.6.17
+ react: 19.2.1
+
+ '@storybook/theming@7.6.17(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.2.1)
+ '@storybook/client-logger': 7.6.17
+ '@storybook/global': 5.0.0
+ memoizerific: 1.11.3
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@storybook/types@7.6.17':
+ dependencies:
+ '@storybook/channels': 7.6.17
+ '@types/babel__core': 7.20.5
+ '@types/express': 4.17.25
+ file-system-cache: 2.3.0
+
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.28.5)':
+ dependencies:
+ '@babel/core': 7.28.5
+
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.28.5)':
+ dependencies:
+ '@babel/core': 7.28.5
+
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.28.5)':
+ dependencies:
+ '@babel/core': 7.28.5
+
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.28.5)':
+ dependencies:
+ '@babel/core': 7.28.5
+
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.28.5)':
+ dependencies:
+ '@babel/core': 7.28.5
+
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.28.5)':
+ dependencies:
+ '@babel/core': 7.28.5
- '@nx/nx-win32-x64-msvc@21.5.1':
- optional: true
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.28.5)':
+ dependencies:
+ '@babel/core': 7.28.5
- '@nx/react@21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(@zkochan/js-yaml@0.0.7)(esbuild@0.25.9)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))':
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.28.5)':
dependencies:
- '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/eslint': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/js': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/module-federation': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(esbuild@0.25.9)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
- '@nx/web': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
- '@svgr/webpack': 8.1.0(typescript@5.8.3)
- express: 4.21.2
- file-loader: 6.2.0(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
- http-proxy-middleware: 3.0.5
- minimatch: 9.0.3
- picocolors: 1.1.1
- semver: 7.7.2
- tslib: 2.8.1
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - '@swc/helpers'
- - '@zkochan/js-yaml'
- - bufferutil
- - debug
- - esbuild
- - eslint
- - next
- - nx
- - react
- - react-dom
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - verdaccio
- - vue-tsc
- - webpack
- - webpack-cli
+ '@babel/core': 7.28.5
- '@nx/storybook@21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@14.5.4)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.8.3)':
+ '@svgr/babel-preset@8.1.0(@babel/core@7.28.5)':
dependencies:
- '@nx/cypress': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@14.5.4)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)
- '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/eslint': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.34.0(jiti@2.4.2))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/js': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
- semver: 7.7.2
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
- tslib: 2.8.1
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - '@zkochan/js-yaml'
- - cypress
- - debug
- - eslint
- - nx
- - supports-color
- - typescript
- - verdaccio
+ '@babel/core': 7.28.5
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.28.5)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.28.5)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.28.5)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.28.5)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.28.5)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.28.5)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.28.5)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.28.5)
- '@nx/vite@19.8.4(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))(vitest@3.2.4)':
+ '@svgr/core@8.1.0(typescript@5.8.3)':
dependencies:
- '@nrwl/vite': 19.8.4(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))(vitest@3.2.4)
- '@nx/devkit': 19.8.4(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/js': 19.8.4(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
- '@swc/helpers': 0.5.17
- enquirer: 2.3.6
- minimatch: 9.0.3
- tsconfig-paths: 4.2.0
- vite: 7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)
- vitest: 3.2.4(@types/node@24.3.1)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.44.0)(yaml@2.8.1)
+ '@babel/core': 7.28.5
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.28.5)
+ camelcase: 6.3.0
+ cosmiconfig: 8.3.6(typescript@5.8.3)
+ snake-case: 3.0.4
transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- - debug
- - nx
- supports-color
- typescript
- - verdaccio
- '@nx/vite@21.3.10(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))(vitest@3.2.4)':
+ '@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@nx/devkit': 21.3.10(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/js': 21.3.10(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
- '@swc/helpers': 0.5.17
- ajv: 8.17.1
- enquirer: 2.3.6
- picomatch: 4.0.2
- semver: 7.7.2
- tsconfig-paths: 4.2.0
- vite: 7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)
- vitest: 3.2.4(@types/node@24.3.1)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.44.0)(yaml@2.8.1)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - debug
- - nx
- - supports-color
- - typescript
- - verdaccio
+ '@babel/types': 7.28.5
+ entities: 4.5.0
- '@nx/web@21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.8.3))':
dependencies:
- '@nx/devkit': 21.2.2(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/js': 21.2.2(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- detect-port: 1.6.1
- http-server: 14.1.1
- picocolors: 1.1.1
- tslib: 2.8.1
+ '@babel/core': 7.28.5
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.28.5)
+ '@svgr/core': 8.1.0(typescript@5.8.3)
+ '@svgr/hast-util-to-babel-ast': 8.0.0
+ svg-parser: 2.0.4
transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - debug
- - nx
- supports-color
- - verdaccio
- '@nx/web@21.3.10(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))':
+ '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.8.3))(typescript@5.8.3)':
dependencies:
- '@nx/devkit': 21.3.10(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@nx/js': 21.3.10(@babel/traverse@7.28.3)(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- detect-port: 1.6.1
- http-server: 14.1.1
- picocolors: 1.1.1
- tslib: 2.8.1
+ '@svgr/core': 8.1.0(typescript@5.8.3)
+ cosmiconfig: 8.3.6(typescript@5.8.3)
+ deepmerge: 4.3.1
+ svgo: 3.3.2
transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - debug
- - nx
- - supports-color
- - verdaccio
+ - typescript
- '@nx/workspace@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
+ '@svgr/webpack@8.1.0(typescript@5.8.3)':
dependencies:
- '@nrwl/workspace': 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- '@nx/devkit': 19.8.4(nx@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- chalk: 4.1.2
- enquirer: 2.3.6
- nx: 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- tslib: 2.8.1
- yargs-parser: 21.1.1
+ '@babel/core': 7.28.5
+ '@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.28.5)
+ '@babel/preset-env': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-react': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5)
+ '@svgr/core': 8.1.0(typescript@5.8.3)
+ '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.8.3))
+ '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.8.3))(typescript@5.8.3)
transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
+ - supports-color
+ - typescript
- '@nx/workspace@21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
+ '@swc-node/core@1.14.1(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)':
dependencies:
- '@nx/devkit': 21.2.2(nx@21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@zkochan/js-yaml': 0.0.7
- chalk: 4.1.2
- enquirer: 2.3.6
- nx: 21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- picomatch: 4.0.2
- tslib: 2.8.1
- yargs-parser: 21.1.1
- transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
+ '@swc/core': 1.12.14(@swc/helpers@0.5.17)
+ '@swc/types': 0.1.25
- '@nx/workspace@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
+ '@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3)':
dependencies:
- '@nx/devkit': 21.3.10(nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@zkochan/js-yaml': 0.0.7
- chalk: 4.1.2
- enquirer: 2.3.6
- nx: 21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- picomatch: 4.0.2
+ '@swc-node/core': 1.14.1(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)
+ '@swc-node/sourcemap-support': 0.5.1
+ '@swc/core': 1.12.14(@swc/helpers@0.5.17)
+ colorette: 2.0.20
+ debug: 4.4.3(supports-color@8.1.1)
+ oxc-resolver: 5.3.0
+ pirates: 4.0.7
tslib: 2.8.1
- yargs-parser: 21.1.1
+ typescript: 5.8.3
transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
+ - '@swc/types'
+ - supports-color
- '@nx/workspace@21.4.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
+ '@swc-node/sourcemap-support@0.5.1':
dependencies:
- '@nx/devkit': 21.4.1(nx@21.4.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@zkochan/js-yaml': 0.0.7
- chalk: 4.1.2
- enquirer: 2.3.6
- nx: 21.4.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- picomatch: 4.0.2
- semver: 7.7.2
+ source-map-support: 0.5.21
tslib: 2.8.1
- yargs-parser: 21.1.1
- transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
- '@nx/workspace@21.5.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))':
+ '@swc/cli@0.7.9(@swc/core@1.12.14(@swc/helpers@0.5.17))(chokidar@4.0.3)':
dependencies:
- '@nx/devkit': 21.5.1(nx@21.5.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)))
- '@zkochan/js-yaml': 0.0.7
- chalk: 4.1.2
- enquirer: 2.3.6
- nx: 21.5.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
- picomatch: 4.0.2
- semver: 7.7.2
- tslib: 2.8.1
- yargs-parser: 21.1.1
+ '@swc/core': 1.12.14(@swc/helpers@0.5.17)
+ '@swc/counter': 0.1.3
+ '@xhmikosr/bin-wrapper': 13.2.0
+ commander: 8.3.0
+ minimatch: 9.0.5
+ piscina: 4.9.2
+ semver: 7.7.3
+ slash: 3.0.0
+ source-map: 0.7.6
+ tinyglobby: 0.2.15
+ optionalDependencies:
+ chokidar: 4.0.3
transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
-
- '@oxc-resolver/binding-darwin-arm64@5.3.0':
- optional: true
-
- '@oxc-resolver/binding-darwin-x64@5.3.0':
- optional: true
-
- '@oxc-resolver/binding-freebsd-x64@5.3.0':
- optional: true
-
- '@oxc-resolver/binding-linux-arm-gnueabihf@5.3.0':
- optional: true
+ - bare-abort-controller
+ - react-native-b4a
+ - supports-color
- '@oxc-resolver/binding-linux-arm64-gnu@5.3.0':
+ '@swc/core-darwin-arm64@1.12.14':
optional: true
- '@oxc-resolver/binding-linux-arm64-musl@5.3.0':
+ '@swc/core-darwin-x64@1.12.14':
optional: true
- '@oxc-resolver/binding-linux-riscv64-gnu@5.3.0':
+ '@swc/core-linux-arm-gnueabihf@1.12.14':
optional: true
- '@oxc-resolver/binding-linux-s390x-gnu@5.3.0':
+ '@swc/core-linux-arm64-gnu@1.12.14':
optional: true
- '@oxc-resolver/binding-linux-x64-gnu@5.3.0':
+ '@swc/core-linux-arm64-musl@1.12.14':
optional: true
- '@oxc-resolver/binding-linux-x64-musl@5.3.0':
+ '@swc/core-linux-x64-gnu@1.12.14':
optional: true
- '@oxc-resolver/binding-wasm32-wasi@5.3.0':
- dependencies:
- '@napi-rs/wasm-runtime': 0.2.12
+ '@swc/core-linux-x64-musl@1.12.14':
optional: true
- '@oxc-resolver/binding-win32-arm64-msvc@5.3.0':
+ '@swc/core-win32-arm64-msvc@1.12.14':
optional: true
- '@oxc-resolver/binding-win32-x64-msvc@5.3.0':
+ '@swc/core-win32-ia32-msvc@1.12.14':
optional: true
- '@phenomnomnominal/tsquery@5.0.1(typescript@5.8.3)':
- dependencies:
- esquery: 1.6.0
- typescript: 5.8.3
-
- '@pkgjs/parseargs@0.11.0':
+ '@swc/core-win32-x64-msvc@1.12.14':
optional: true
- '@pkgr/core@0.2.9': {}
-
- '@polka/url@1.0.0-next.29': {}
-
- '@popperjs/core@2.11.8': {}
-
- '@probe.gl/env@4.1.0': {}
-
- '@probe.gl/log@4.1.0':
+ '@swc/core@1.12.14(@swc/helpers@0.5.17)':
dependencies:
- '@probe.gl/env': 4.1.0
+ '@swc/counter': 0.1.3
+ '@swc/types': 0.1.25
+ optionalDependencies:
+ '@swc/core-darwin-arm64': 1.12.14
+ '@swc/core-darwin-x64': 1.12.14
+ '@swc/core-linux-arm-gnueabihf': 1.12.14
+ '@swc/core-linux-arm64-gnu': 1.12.14
+ '@swc/core-linux-arm64-musl': 1.12.14
+ '@swc/core-linux-x64-gnu': 1.12.14
+ '@swc/core-linux-x64-musl': 1.12.14
+ '@swc/core-win32-arm64-msvc': 1.12.14
+ '@swc/core-win32-ia32-msvc': 1.12.14
+ '@swc/core-win32-x64-msvc': 1.12.14
+ '@swc/helpers': 0.5.17
- '@probe.gl/stats@4.1.0': {}
+ '@swc/counter@0.1.3': {}
- '@reduxjs/toolkit@2.9.0(react-redux@9.2.0(@types/react@19.1.12)(react@19.1.0)(redux@5.0.1))(react@19.1.0)':
+ '@swc/helpers@0.5.17':
dependencies:
- '@standard-schema/spec': 1.0.0
- '@standard-schema/utils': 0.3.0
- immer: 10.1.3
- redux: 5.0.1
- redux-thunk: 3.1.0(redux@5.0.1)
- reselect: 5.1.1
- optionalDependencies:
- react: 19.1.0
- react-redux: 9.2.0(@types/react@19.1.12)(react@19.1.0)(redux@5.0.1)
+ tslib: 2.8.1
- '@rolldown/pluginutils@1.0.0-beta.27': {}
+ '@swc/types@0.1.25':
+ dependencies:
+ '@swc/counter': 0.1.3
- '@rollup/pluginutils@5.3.0(rollup@4.50.0)':
+ '@szmarczak/http-timer@5.0.1':
dependencies:
- '@types/estree': 1.0.8
- estree-walker: 2.0.2
- picomatch: 4.0.3
- optionalDependencies:
- rollup: 4.50.0
+ defer-to-connect: 2.0.1
- '@rollup/rollup-android-arm-eabi@4.50.0':
- optional: true
+ '@tanstack/query-core@5.90.10': {}
- '@rollup/rollup-android-arm64@4.50.0':
- optional: true
+ '@tanstack/react-query@5.90.10(react@19.2.1)':
+ dependencies:
+ '@tanstack/query-core': 5.90.10
+ react: 19.2.1
- '@rollup/rollup-darwin-arm64@4.50.0':
- optional: true
+ '@testing-library/dom@10.4.0':
+ dependencies:
+ '@babel/code-frame': 7.27.1
+ '@babel/runtime': 7.28.4
+ '@types/aria-query': 5.0.4
+ aria-query: 5.3.0
+ chalk: 4.1.2
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
+ pretty-format: 27.5.1
- '@rollup/rollup-darwin-x64@4.50.0':
- optional: true
+ '@testing-library/dom@10.4.1':
+ dependencies:
+ '@babel/code-frame': 7.27.1
+ '@babel/runtime': 7.28.4
+ '@types/aria-query': 5.0.4
+ aria-query: 5.3.0
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
+ picocolors: 1.1.1
+ pretty-format: 27.5.1
- '@rollup/rollup-freebsd-arm64@4.50.0':
- optional: true
+ '@testing-library/jest-dom@6.9.1':
+ dependencies:
+ '@adobe/css-tools': 4.4.4
+ aria-query: 5.3.2
+ css.escape: 1.5.1
+ dom-accessibility-api: 0.6.3
+ picocolors: 1.1.1
+ redent: 3.0.0
- '@rollup/rollup-freebsd-x64@4.50.0':
- optional: true
+ '@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@babel/runtime': 7.28.4
+ '@testing-library/dom': 10.4.0
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
- '@rollup/rollup-linux-arm-gnueabihf@4.50.0':
- optional: true
+ '@testing-library/react@16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@babel/runtime': 7.28.4
+ '@testing-library/dom': 10.4.1
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@rollup/rollup-linux-arm-musleabihf@4.50.0':
- optional: true
+ '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.0)':
+ dependencies:
+ '@testing-library/dom': 10.4.0
- '@rollup/rollup-linux-arm64-gnu@4.50.0':
- optional: true
+ '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)':
+ dependencies:
+ '@testing-library/dom': 10.4.1
- '@rollup/rollup-linux-arm64-musl@4.50.0':
- optional: true
+ '@tmcw/togeojson@7.1.2': {}
- '@rollup/rollup-linux-loongarch64-gnu@4.50.0':
- optional: true
+ '@tokenizer/inflate@0.2.7':
+ dependencies:
+ debug: 4.4.3(supports-color@8.1.1)
+ fflate: 0.8.2
+ token-types: 6.1.1
+ transitivePeerDependencies:
+ - supports-color
- '@rollup/rollup-linux-ppc64-gnu@4.50.0':
- optional: true
+ '@tokenizer/token@0.3.0': {}
- '@rollup/rollup-linux-riscv64-gnu@4.50.0':
- optional: true
+ '@trysound/sax@0.2.0': {}
- '@rollup/rollup-linux-riscv64-musl@4.50.0':
- optional: true
+ '@tsconfig/node10@1.0.12': {}
- '@rollup/rollup-linux-s390x-gnu@4.50.0':
- optional: true
+ '@tsconfig/node12@1.0.11': {}
- '@rollup/rollup-linux-x64-gnu@4.50.0':
- optional: true
+ '@tsconfig/node14@1.0.3': {}
- '@rollup/rollup-linux-x64-musl@4.50.0':
- optional: true
+ '@tsconfig/node16@1.0.4': {}
- '@rollup/rollup-openharmony-arm64@4.50.0':
- optional: true
+ '@turf/along@7.3.0':
+ dependencies:
+ '@turf/bearing': 7.3.0
+ '@turf/destination': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rollup/rollup-win32-arm64-msvc@4.50.0':
- optional: true
+ '@turf/along@7.3.1':
+ dependencies:
+ '@turf/bearing': 7.3.1
+ '@turf/destination': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rollup/rollup-win32-ia32-msvc@4.50.0':
- optional: true
+ '@turf/angle@7.3.0':
+ dependencies:
+ '@turf/bearing': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/rhumb-bearing': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rollup/rollup-win32-x64-msvc@4.50.0':
- optional: true
+ '@turf/angle@7.3.1':
+ dependencies:
+ '@turf/bearing': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/rhumb-bearing': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rspack/binding-darwin-arm64@1.5.2':
- optional: true
+ '@turf/area@7.3.0':
+ dependencies:
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rspack/binding-darwin-x64@1.5.2':
- optional: true
+ '@turf/area@7.3.1':
+ dependencies:
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rspack/binding-linux-arm64-gnu@1.5.2':
- optional: true
+ '@turf/bbox-clip@7.3.0':
+ dependencies:
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rspack/binding-linux-arm64-musl@1.5.2':
- optional: true
+ '@turf/bbox-clip@7.3.1':
+ dependencies:
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rspack/binding-linux-x64-gnu@1.5.2':
- optional: true
+ '@turf/bbox-polygon@7.3.0':
+ dependencies:
+ '@turf/helpers': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rspack/binding-linux-x64-musl@1.5.2':
- optional: true
+ '@turf/bbox-polygon@7.3.1':
+ dependencies:
+ '@turf/helpers': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rspack/binding-wasm32-wasi@1.5.2':
+ '@turf/bbox@7.3.0':
dependencies:
- '@napi-rs/wasm-runtime': 1.0.3
- optional: true
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rspack/binding-win32-arm64-msvc@1.5.2':
- optional: true
+ '@turf/bbox@7.3.1':
+ dependencies:
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rspack/binding-win32-ia32-msvc@1.5.2':
- optional: true
+ '@turf/bearing@7.3.0':
+ dependencies:
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rspack/binding-win32-x64-msvc@1.5.2':
- optional: true
+ '@turf/bearing@7.3.1':
+ dependencies:
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rspack/binding@1.5.2':
- optionalDependencies:
- '@rspack/binding-darwin-arm64': 1.5.2
- '@rspack/binding-darwin-x64': 1.5.2
- '@rspack/binding-linux-arm64-gnu': 1.5.2
- '@rspack/binding-linux-arm64-musl': 1.5.2
- '@rspack/binding-linux-x64-gnu': 1.5.2
- '@rspack/binding-linux-x64-musl': 1.5.2
- '@rspack/binding-wasm32-wasi': 1.5.2
- '@rspack/binding-win32-arm64-msvc': 1.5.2
- '@rspack/binding-win32-ia32-msvc': 1.5.2
- '@rspack/binding-win32-x64-msvc': 1.5.2
-
- '@rspack/core@1.5.2(@swc/helpers@0.5.17)':
- dependencies:
- '@module-federation/runtime-tools': 0.18.0
- '@rspack/binding': 1.5.2
- '@rspack/lite-tapable': 1.0.1
- optionalDependencies:
- '@swc/helpers': 0.5.17
+ '@turf/bezier-spline@7.3.0':
+ dependencies:
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rspack/lite-tapable@1.0.1': {}
+ '@turf/bezier-spline@7.3.1':
+ dependencies:
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rtsao/scc@1.1.0': {}
+ '@turf/boolean-clockwise@5.1.5':
+ dependencies:
+ '@turf/helpers': 5.1.5
+ '@turf/invariant': 5.2.0
- '@rushstack/node-core-library@5.14.0(@types/node@24.3.1)':
+ '@turf/boolean-clockwise@7.3.0':
dependencies:
- ajv: 8.13.0
- ajv-draft-04: 1.0.0(ajv@8.13.0)
- ajv-formats: 3.0.1(ajv@8.13.0)
- fs-extra: 11.3.1
- import-lazy: 4.0.0
- jju: 1.4.0
- resolve: 1.22.10
- semver: 7.5.4
- optionalDependencies:
- '@types/node': 24.3.1
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rushstack/rig-package@0.5.3':
+ '@turf/boolean-clockwise@7.3.1':
dependencies:
- resolve: 1.22.10
- strip-json-comments: 3.1.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rushstack/terminal@0.15.4(@types/node@24.3.1)':
+ '@turf/boolean-concave@7.3.0':
dependencies:
- '@rushstack/node-core-library': 5.14.0(@types/node@24.3.1)
- supports-color: 8.1.1
- optionalDependencies:
- '@types/node': 24.3.1
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@rushstack/ts-command-line@5.0.2(@types/node@24.3.1)':
+ '@turf/boolean-concave@7.3.1':
dependencies:
- '@rushstack/terminal': 0.15.4(@types/node@24.3.1)
- '@types/argparse': 1.0.38
- argparse: 1.0.10
- string-argv: 0.3.2
- transitivePeerDependencies:
- - '@types/node'
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@scena/dragscroll@1.4.0':
+ '@turf/boolean-contains@7.3.0':
dependencies:
- '@daybrush/utils': 1.13.0
- '@scena/event-emitter': 1.0.5
+ '@turf/bbox': 7.3.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/boolean-point-on-line': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@scena/event-emitter@1.0.5':
+ '@turf/boolean-contains@7.3.1':
dependencies:
- '@daybrush/utils': 1.13.0
+ '@turf/bbox': 7.3.1
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/boolean-point-on-line': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@scena/matrix@1.1.1':
+ '@turf/boolean-crosses@7.3.0':
dependencies:
- '@daybrush/utils': 1.13.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/line-intersect': 7.3.0
+ '@turf/polygon-to-line': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@sinclair/typebox@0.27.8': {}
+ '@turf/boolean-crosses@7.3.1':
+ dependencies:
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/line-intersect': 7.3.1
+ '@turf/polygon-to-line': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@sinclair/typebox@0.34.41': {}
+ '@turf/boolean-disjoint@7.3.0':
+ dependencies:
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/line-intersect': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/polygon-to-line': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@sindresorhus/is@5.6.0': {}
+ '@turf/boolean-disjoint@7.3.1':
+ dependencies:
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/line-intersect': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/polygon-to-line': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@sindresorhus/merge-streams@2.3.0': {}
+ '@turf/boolean-equal@7.3.0':
+ dependencies:
+ '@turf/clean-coords': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ geojson-equality-ts: 1.0.2
+ tslib: 2.8.1
- '@sinonjs/commons@3.0.1':
+ '@turf/boolean-equal@7.3.1':
dependencies:
- type-detect: 4.0.8
+ '@turf/clean-coords': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ geojson-equality-ts: 1.0.2
+ tslib: 2.8.1
- '@sinonjs/fake-timers@13.0.5':
+ '@turf/boolean-intersects@7.3.0':
dependencies:
- '@sinonjs/commons': 3.0.1
+ '@turf/boolean-disjoint': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@standard-schema/spec@1.0.0': {}
+ '@turf/boolean-intersects@7.3.1':
+ dependencies:
+ '@turf/boolean-disjoint': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@standard-schema/utils@0.3.0': {}
+ '@turf/boolean-overlap@7.3.0':
+ dependencies:
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/line-intersect': 7.3.0
+ '@turf/line-overlap': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ geojson-equality-ts: 1.0.2
+ tslib: 2.8.1
- '@storybook/addon-docs@9.1.4(@types/react@19.1.8)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))':
+ '@turf/boolean-overlap@7.3.1':
dependencies:
- '@mdx-js/react': 3.1.1(@types/react@19.1.8)(react@19.1.0)
- '@storybook/csf-plugin': 9.1.4(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))
- '@storybook/icons': 1.4.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@storybook/react-dom-shim': 9.1.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
- ts-dedent: 2.2.0
- transitivePeerDependencies:
- - '@types/react'
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/line-intersect': 7.3.1
+ '@turf/line-overlap': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ geojson-equality-ts: 1.0.2
+ tslib: 2.8.1
- '@storybook/addon-links@9.1.4(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))':
+ '@turf/boolean-parallel@7.3.0':
dependencies:
- '@storybook/global': 5.0.0
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
- optionalDependencies:
- react: 19.1.0
+ '@turf/clean-coords': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/line-segment': 7.3.0
+ '@turf/rhumb-bearing': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/addons@7.6.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@turf/boolean-parallel@7.3.1':
dependencies:
- '@storybook/manager-api': 7.6.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@storybook/preview-api': 7.6.17
- '@storybook/types': 7.6.17
- transitivePeerDependencies:
- - react
- - react-dom
+ '@turf/clean-coords': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/line-segment': 7.3.1
+ '@turf/rhumb-bearing': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/builder-vite@9.1.1(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))':
+ '@turf/boolean-point-in-polygon@7.3.0':
dependencies:
- '@storybook/csf-plugin': 9.1.1(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
- ts-dedent: 2.2.0
- vite: 7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ point-in-polygon-hao: 1.2.4
+ tslib: 2.8.1
- '@storybook/channels@7.6.17':
+ '@turf/boolean-point-in-polygon@7.3.1':
dependencies:
- '@storybook/client-logger': 7.6.17
- '@storybook/core-events': 7.6.17
- '@storybook/global': 5.0.0
- qs: 6.14.0
- telejson: 7.2.0
- tiny-invariant: 1.3.3
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ point-in-polygon-hao: 1.2.4
+ tslib: 2.8.1
- '@storybook/client-logger@7.6.17':
+ '@turf/boolean-point-on-line@7.3.0':
dependencies:
- '@storybook/global': 5.0.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/core-events@7.6.17':
+ '@turf/boolean-point-on-line@7.3.1':
dependencies:
- ts-dedent: 2.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/csf-plugin@9.1.1(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))':
+ '@turf/boolean-touches@7.3.0':
dependencies:
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
- unplugin: 1.16.1
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/boolean-point-on-line': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/csf-plugin@9.1.4(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))':
+ '@turf/boolean-touches@7.3.1':
dependencies:
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
- unplugin: 1.16.1
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/boolean-point-on-line': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/csf@0.1.13':
- dependencies:
- type-fest: 2.19.0
+ '@turf/boolean-valid@7.3.0':
+ dependencies:
+ '@turf/bbox': 7.3.0
+ '@turf/boolean-crosses': 7.3.0
+ '@turf/boolean-disjoint': 7.3.0
+ '@turf/boolean-overlap': 7.3.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/boolean-point-on-line': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/line-intersect': 7.3.0
+ '@types/geojson': 7946.0.16
+ geojson-polygon-self-intersections: 1.2.1
+ tslib: 2.8.1
- '@storybook/global@5.0.0': {}
+ '@turf/boolean-valid@7.3.1':
+ dependencies:
+ '@turf/bbox': 7.3.1
+ '@turf/boolean-crosses': 7.3.1
+ '@turf/boolean-disjoint': 7.3.1
+ '@turf/boolean-overlap': 7.3.1
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/boolean-point-on-line': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/line-intersect': 7.3.1
+ '@types/geojson': 7946.0.16
+ geojson-polygon-self-intersections: 1.2.1
+ tslib: 2.8.1
- '@storybook/icons@1.4.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@turf/boolean-within@7.3.0':
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@turf/bbox': 7.3.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/boolean-point-on-line': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/manager-api@7.6.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@turf/boolean-within@7.3.1':
dependencies:
- '@storybook/channels': 7.6.17
- '@storybook/client-logger': 7.6.17
- '@storybook/core-events': 7.6.17
- '@storybook/csf': 0.1.13
- '@storybook/global': 5.0.0
- '@storybook/router': 7.6.17
- '@storybook/theming': 7.6.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@storybook/types': 7.6.17
- dequal: 2.0.3
- lodash: 4.17.21
- memoizerific: 1.11.3
- store2: 2.14.4
- telejson: 7.2.0
- ts-dedent: 2.2.0
- transitivePeerDependencies:
- - react
- - react-dom
+ '@turf/bbox': 7.3.1
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/boolean-point-on-line': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/preview-api@7.6.17':
+ '@turf/buffer@7.3.0':
dependencies:
- '@storybook/channels': 7.6.17
- '@storybook/client-logger': 7.6.17
- '@storybook/core-events': 7.6.17
- '@storybook/csf': 0.1.13
- '@storybook/global': 5.0.0
- '@storybook/types': 7.6.17
- '@types/qs': 6.14.0
- dequal: 2.0.3
- lodash: 4.17.21
- memoizerific: 1.11.3
- qs: 6.14.0
- synchronous-promise: 2.0.17
- ts-dedent: 2.2.0
- util-deprecate: 1.0.2
+ '@turf/bbox': 7.3.0
+ '@turf/center': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/jsts': 2.7.2
+ '@turf/meta': 7.3.0
+ '@turf/projection': 7.3.0
+ '@types/geojson': 7946.0.16
+ d3-geo: 1.7.1
- '@storybook/react-dom-shim@9.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))':
+ '@turf/buffer@7.3.1':
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ '@turf/bbox': 7.3.1
+ '@turf/center': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/jsts': 2.7.2
+ '@turf/meta': 7.3.1
+ '@turf/projection': 7.3.1
+ '@types/geojson': 7946.0.16
+ d3-geo: 1.7.1
- '@storybook/react-dom-shim@9.1.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))':
+ '@turf/center-mean@7.3.0':
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ '@turf/bbox': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/react-dom-shim@9.1.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))':
+ '@turf/center-mean@7.3.1':
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- storybook: 9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ '@turf/bbox': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/react-dom-shim@9.1.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))':
+ '@turf/center-median@7.3.0':
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ '@turf/center-mean': 7.3.0
+ '@turf/centroid': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/react-vite@9.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rollup@4.50.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))':
+ '@turf/center-median@7.3.1':
dependencies:
- '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.1(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
- '@rollup/pluginutils': 5.3.0(rollup@4.50.0)
- '@storybook/builder-vite': 9.1.1(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
- '@storybook/react': 9.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.8.3)
- find-up: 7.0.0
- magic-string: 0.30.18
- react: 19.1.0
- react-docgen: 8.0.1
- react-dom: 19.1.0(react@19.1.0)
- resolve: 1.22.10
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
- tsconfig-paths: 4.2.0
- vite: 7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)
- transitivePeerDependencies:
- - rollup
- - supports-color
- - typescript
+ '@turf/center-mean': 7.3.1
+ '@turf/centroid': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/react@9.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.8.3)':
+ '@turf/center-of-mass@7.3.0':
dependencies:
- '@storybook/global': 5.0.0
- '@storybook/react-dom-shim': 9.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
- optionalDependencies:
- typescript: 5.8.3
+ '@turf/centroid': 7.3.0
+ '@turf/convex': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/react@9.1.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.9.2)':
+ '@turf/center-of-mass@7.3.1':
dependencies:
- '@storybook/global': 5.0.0
- '@storybook/react-dom-shim': 9.1.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- storybook: 9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
- optionalDependencies:
- typescript: 5.9.2
+ '@turf/centroid': 7.3.1
+ '@turf/convex': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/react@9.1.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.8.3)':
+ '@turf/center@7.3.0':
dependencies:
- '@storybook/global': 5.0.0
- '@storybook/react-dom-shim': 9.1.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
- optionalDependencies:
- typescript: 5.8.3
+ '@turf/bbox': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/router@7.6.17':
+ '@turf/center@7.3.1':
dependencies:
- '@storybook/client-logger': 7.6.17
- memoizerific: 1.11.3
- qs: 6.14.0
+ '@turf/bbox': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/testing-react@2.0.1(@storybook/client-logger@7.6.17)(@storybook/preview-api@7.6.17)(@storybook/react@9.1.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.8.3))(@storybook/types@7.6.17)(react@19.1.0)':
+ '@turf/centroid@7.3.0':
dependencies:
- '@storybook/client-logger': 7.6.17
- '@storybook/csf': 0.1.13
- '@storybook/preview-api': 7.6.17
- '@storybook/react': 9.1.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.8.3)
- '@storybook/types': 7.6.17
- react: 19.1.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/theming@7.6.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@turf/centroid@7.3.1':
dependencies:
- '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.1.0)
- '@storybook/client-logger': 7.6.17
- '@storybook/global': 5.0.0
- memoizerific: 1.11.3
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@storybook/types@7.6.17':
+ '@turf/circle@7.3.0':
dependencies:
- '@storybook/channels': 7.6.17
- '@types/babel__core': 7.20.5
- '@types/express': 4.17.23
- file-system-cache: 2.3.0
+ '@turf/destination': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.28.3)':
+ '@turf/circle@7.3.1':
dependencies:
- '@babel/core': 7.28.3
+ '@turf/destination': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.28.3)':
+ '@turf/clean-coords@7.3.0':
dependencies:
- '@babel/core': 7.28.3
+ '@turf/boolean-point-on-line': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.28.3)':
+ '@turf/clean-coords@7.3.1':
dependencies:
- '@babel/core': 7.28.3
+ '@turf/boolean-point-on-line': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.28.3)':
+ '@turf/clone@5.1.5':
dependencies:
- '@babel/core': 7.28.3
+ '@turf/helpers': 5.1.5
- '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.28.3)':
+ '@turf/clone@7.3.0':
dependencies:
- '@babel/core': 7.28.3
+ '@turf/helpers': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.28.3)':
+ '@turf/clone@7.3.1':
dependencies:
- '@babel/core': 7.28.3
+ '@turf/helpers': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.28.3)':
+ '@turf/clusters-dbscan@7.3.0':
dependencies:
- '@babel/core': 7.28.3
+ '@turf/clone': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ rbush: 3.0.1
+ tslib: 2.8.1
- '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.28.3)':
+ '@turf/clusters-dbscan@7.3.1':
dependencies:
- '@babel/core': 7.28.3
+ '@turf/clone': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ rbush: 3.0.1
+ tslib: 2.8.1
- '@svgr/babel-preset@8.1.0(@babel/core@7.28.3)':
+ '@turf/clusters-kmeans@7.3.0':
dependencies:
- '@babel/core': 7.28.3
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.28.3)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.28.3)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.28.3)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.28.3)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.28.3)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.28.3)
- '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.28.3)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.28.3)
+ '@turf/clone': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ skmeans: 0.9.7
+ tslib: 2.8.1
- '@svgr/core@8.1.0(typescript@5.8.3)':
+ '@turf/clusters-kmeans@7.3.1':
dependencies:
- '@babel/core': 7.28.3
- '@svgr/babel-preset': 8.1.0(@babel/core@7.28.3)
- camelcase: 6.3.0
- cosmiconfig: 8.3.6(typescript@5.8.3)
- snake-case: 3.0.4
- transitivePeerDependencies:
- - supports-color
- - typescript
+ '@turf/clone': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ skmeans: 0.9.7
+ tslib: 2.8.1
- '@svgr/hast-util-to-babel-ast@8.0.0':
+ '@turf/clusters@7.3.0':
dependencies:
- '@babel/types': 7.28.2
- entities: 4.5.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.8.3))':
+ '@turf/clusters@7.3.1':
dependencies:
- '@babel/core': 7.28.3
- '@svgr/babel-preset': 8.1.0(@babel/core@7.28.3)
- '@svgr/core': 8.1.0(typescript@5.8.3)
- '@svgr/hast-util-to-babel-ast': 8.0.0
- svg-parser: 2.0.4
- transitivePeerDependencies:
- - supports-color
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.8.3))(typescript@5.8.3)':
+ '@turf/collect@7.3.0':
dependencies:
- '@svgr/core': 8.1.0(typescript@5.8.3)
- cosmiconfig: 8.3.6(typescript@5.8.3)
- deepmerge: 4.3.1
- svgo: 3.3.2
- transitivePeerDependencies:
- - typescript
+ '@turf/bbox': 7.3.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@types/geojson': 7946.0.16
+ rbush: 3.0.1
+ tslib: 2.8.1
- '@svgr/webpack@8.1.0(typescript@5.8.3)':
+ '@turf/collect@7.3.1':
dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.28.3)
- '@babel/preset-env': 7.28.3(@babel/core@7.28.3)
- '@babel/preset-react': 7.27.1(@babel/core@7.28.3)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.28.3)
- '@svgr/core': 8.1.0(typescript@5.8.3)
- '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.8.3))
- '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.8.3))(typescript@5.8.3)
- transitivePeerDependencies:
- - supports-color
- - typescript
+ '@turf/bbox': 7.3.1
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@types/geojson': 7946.0.16
+ rbush: 3.0.1
+ tslib: 2.8.1
- '@swc-node/core@1.14.1(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)':
+ '@turf/combine@7.3.0':
dependencies:
- '@swc/core': 1.12.14(@swc/helpers@0.5.17)
- '@swc/types': 0.1.24
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3)':
+ '@turf/combine@7.3.1':
dependencies:
- '@swc-node/core': 1.14.1(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)
- '@swc-node/sourcemap-support': 0.5.1
- '@swc/core': 1.12.14(@swc/helpers@0.5.17)
- colorette: 2.0.20
- debug: 4.4.1(supports-color@8.1.1)
- oxc-resolver: 5.3.0
- pirates: 4.0.7
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
tslib: 2.8.1
- typescript: 5.8.3
- transitivePeerDependencies:
- - '@swc/types'
- - supports-color
- '@swc-node/sourcemap-support@0.5.1':
+ '@turf/concave@7.3.0':
dependencies:
- source-map-support: 0.5.21
+ '@turf/clone': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/tin': 7.3.0
+ '@types/geojson': 7946.0.16
+ topojson-client: 3.1.0
+ topojson-server: 3.0.1
tslib: 2.8.1
- '@swc/cli@0.7.8(@swc/core@1.12.14(@swc/helpers@0.5.17))(chokidar@4.0.3)':
+ '@turf/concave@7.3.1':
dependencies:
- '@swc/core': 1.12.14(@swc/helpers@0.5.17)
- '@swc/counter': 0.1.3
- '@xhmikosr/bin-wrapper': 13.2.0
- commander: 8.3.0
- minimatch: 9.0.5
- piscina: 4.9.2
- semver: 7.7.2
- slash: 3.0.0
- source-map: 0.7.6
- tinyglobby: 0.2.14
- optionalDependencies:
- chokidar: 4.0.3
- transitivePeerDependencies:
- - supports-color
-
- '@swc/core-darwin-arm64@1.12.14':
- optional: true
-
- '@swc/core-darwin-x64@1.12.14':
- optional: true
-
- '@swc/core-linux-arm-gnueabihf@1.12.14':
- optional: true
-
- '@swc/core-linux-arm64-gnu@1.12.14':
- optional: true
-
- '@swc/core-linux-arm64-musl@1.12.14':
- optional: true
-
- '@swc/core-linux-x64-gnu@1.12.14':
- optional: true
+ '@turf/clone': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/tin': 7.3.1
+ '@types/geojson': 7946.0.16
+ topojson-client: 3.1.0
+ topojson-server: 3.0.1
+ tslib: 2.8.1
- '@swc/core-linux-x64-musl@1.12.14':
- optional: true
+ '@turf/convex@7.3.0':
+ dependencies:
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ concaveman: 1.2.1
+ tslib: 2.8.1
- '@swc/core-win32-arm64-msvc@1.12.14':
- optional: true
+ '@turf/convex@7.3.1':
+ dependencies:
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ concaveman: 1.2.1
+ tslib: 2.8.1
- '@swc/core-win32-ia32-msvc@1.12.14':
- optional: true
+ '@turf/destination@7.3.0':
+ dependencies:
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@swc/core-win32-x64-msvc@1.12.14':
- optional: true
+ '@turf/destination@7.3.1':
+ dependencies:
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@swc/core@1.12.14(@swc/helpers@0.5.17)':
+ '@turf/difference@7.3.0':
dependencies:
- '@swc/counter': 0.1.3
- '@swc/types': 0.1.24
- optionalDependencies:
- '@swc/core-darwin-arm64': 1.12.14
- '@swc/core-darwin-x64': 1.12.14
- '@swc/core-linux-arm-gnueabihf': 1.12.14
- '@swc/core-linux-arm64-gnu': 1.12.14
- '@swc/core-linux-arm64-musl': 1.12.14
- '@swc/core-linux-x64-gnu': 1.12.14
- '@swc/core-linux-x64-musl': 1.12.14
- '@swc/core-win32-arm64-msvc': 1.12.14
- '@swc/core-win32-ia32-msvc': 1.12.14
- '@swc/core-win32-x64-msvc': 1.12.14
- '@swc/helpers': 0.5.17
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ polyclip-ts: 0.16.8
+ tslib: 2.8.1
- '@swc/counter@0.1.3': {}
+ '@turf/difference@7.3.1':
+ dependencies:
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ polyclip-ts: 0.16.8
+ tslib: 2.8.1
- '@swc/helpers@0.5.17':
+ '@turf/dissolve@7.3.0':
dependencies:
+ '@turf/flatten': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ polyclip-ts: 0.16.8
tslib: 2.8.1
- '@swc/types@0.1.24':
+ '@turf/dissolve@7.3.1':
dependencies:
- '@swc/counter': 0.1.3
+ '@turf/flatten': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ polyclip-ts: 0.16.8
+ tslib: 2.8.1
- '@szmarczak/http-timer@5.0.1':
+ '@turf/distance-weight@7.3.0':
dependencies:
- defer-to-connect: 2.0.1
+ '@turf/centroid': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@tanstack/query-core@5.86.0': {}
+ '@turf/distance-weight@7.3.1':
+ dependencies:
+ '@turf/centroid': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@tanstack/react-query@5.86.0(react@19.1.0)':
+ '@turf/distance@7.3.0':
dependencies:
- '@tanstack/query-core': 5.86.0
- react: 19.1.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@testing-library/dom@10.4.0':
+ '@turf/distance@7.3.1':
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/runtime': 7.28.3
- '@types/aria-query': 5.0.4
- aria-query: 5.3.0
- chalk: 4.1.2
- dom-accessibility-api: 0.5.16
- lz-string: 1.5.0
- pretty-format: 27.5.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@testing-library/dom@10.4.1':
+ '@turf/ellipse@7.3.0':
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/runtime': 7.28.3
- '@types/aria-query': 5.0.4
- aria-query: 5.3.0
- dom-accessibility-api: 0.5.16
- lz-string: 1.5.0
- picocolors: 1.1.1
- pretty-format: 27.5.1
+ '@turf/destination': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/transform-rotate': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@testing-library/jest-dom@6.8.0':
+ '@turf/ellipse@7.3.1':
dependencies:
- '@adobe/css-tools': 4.4.4
- aria-query: 5.3.2
- css.escape: 1.5.1
- dom-accessibility-api: 0.6.3
- picocolors: 1.1.1
- redent: 3.0.0
+ '@turf/destination': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/transform-rotate': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@turf/envelope@7.3.0':
dependencies:
- '@babel/runtime': 7.28.3
- '@testing-library/dom': 10.4.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- optionalDependencies:
- '@types/react': 19.1.8
- '@types/react-dom': 19.1.6(@types/react@19.1.8)
+ '@turf/bbox': 7.3.0
+ '@turf/bbox-polygon': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@testing-library/react@16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.1.9(@types/react@19.1.12))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@turf/envelope@7.3.1':
dependencies:
- '@babel/runtime': 7.28.3
- '@testing-library/dom': 10.4.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- optionalDependencies:
- '@types/react': 19.1.12
- '@types/react-dom': 19.1.9(@types/react@19.1.12)
+ '@turf/bbox': 7.3.1
+ '@turf/bbox-polygon': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.0)':
+ '@turf/explode@7.3.0':
dependencies:
- '@testing-library/dom': 10.4.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)':
+ '@turf/explode@7.3.1':
dependencies:
- '@testing-library/dom': 10.4.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@tmcw/togeojson@7.1.2': {}
+ '@turf/flatten@7.3.0':
+ dependencies:
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@tokenizer/inflate@0.2.7':
+ '@turf/flatten@7.3.1':
dependencies:
- debug: 4.4.1(supports-color@8.1.1)
- fflate: 0.8.2
- token-types: 6.1.1
- transitivePeerDependencies:
- - supports-color
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@tokenizer/token@0.3.0': {}
+ '@turf/flip@7.3.0':
+ dependencies:
+ '@turf/clone': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@trysound/sax@0.2.0': {}
+ '@turf/flip@7.3.1':
+ dependencies:
+ '@turf/clone': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@tsconfig/node10@1.0.11': {}
+ '@turf/geojson-rbush@7.3.0':
+ dependencies:
+ '@turf/bbox': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ rbush: 3.0.1
- '@tsconfig/node12@1.0.11': {}
+ '@turf/geojson-rbush@7.3.1':
+ dependencies:
+ '@turf/bbox': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ rbush: 3.0.1
- '@tsconfig/node14@1.0.3': {}
+ '@turf/great-circle@7.3.0':
+ dependencies:
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/geojson': 7946.0.16
- '@tsconfig/node16@1.0.4': {}
+ '@turf/great-circle@7.3.1':
+ dependencies:
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@types/geojson': 7946.0.16
- '@turf/along@7.2.0':
+ '@turf/helpers@5.1.5': {}
+
+ '@turf/helpers@7.3.0':
dependencies:
- '@turf/bearing': 7.2.0
- '@turf/destination': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/angle@7.2.0':
+ '@turf/helpers@7.3.1':
dependencies:
- '@turf/bearing': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/rhumb-bearing': 7.2.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/area@7.2.0':
+ '@turf/hex-grid@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/intersect': 7.3.0
+ '@turf/invariant': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/bbox-clip@7.2.0':
+ '@turf/hex-grid@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/intersect': 7.3.1
+ '@turf/invariant': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/bbox-polygon@7.2.0':
+ '@turf/interpolate@7.3.0':
+ dependencies:
+ '@turf/bbox': 7.3.0
+ '@turf/centroid': 7.3.0
+ '@turf/clone': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/hex-grid': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/point-grid': 7.3.0
+ '@turf/square-grid': 7.3.0
+ '@turf/triangle-grid': 7.3.0
+ '@types/geojson': 7946.0.16
+
+ '@turf/interpolate@7.3.1':
+ dependencies:
+ '@turf/bbox': 7.3.1
+ '@turf/centroid': 7.3.1
+ '@turf/clone': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/hex-grid': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/point-grid': 7.3.1
+ '@turf/square-grid': 7.3.1
+ '@turf/triangle-grid': 7.3.1
+ '@types/geojson': 7946.0.16
+
+ '@turf/intersect@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
+ polyclip-ts: 0.16.8
tslib: 2.8.1
- '@turf/bbox@7.2.0':
+ '@turf/intersect@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
+ polyclip-ts: 0.16.8
tslib: 2.8.1
- '@turf/bearing@7.2.0':
+ '@turf/invariant@5.2.0':
+ dependencies:
+ '@turf/helpers': 5.1.5
+
+ '@turf/invariant@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/bezier-spline@7.2.0':
+ '@turf/invariant@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/boolean-clockwise@7.2.0':
+ '@turf/isobands@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/area': 7.3.0
+ '@turf/bbox': 7.3.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/explode': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/boolean-concave@7.2.0':
+ '@turf/isobands@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/area': 7.3.1
+ '@turf/bbox': 7.3.1
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/explode': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/boolean-contains@7.2.0':
+ '@turf/isolines@7.3.0':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/boolean-point-on-line': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/bbox': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/boolean-crosses@7.2.0':
+ '@turf/isolines@7.3.1':
dependencies:
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/line-intersect': 7.2.0
- '@turf/polygon-to-line': 7.2.0
+ '@turf/bbox': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/boolean-disjoint@7.2.0':
+ '@turf/jsts@2.7.2':
+ dependencies:
+ jsts: 2.7.1
+
+ '@turf/kinks@7.3.0':
dependencies:
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/line-intersect': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/polygon-to-line': 7.2.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/boolean-equal@7.2.0':
+ '@turf/kinks@7.3.1':
dependencies:
- '@turf/clean-coords': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
- geojson-equality-ts: 1.0.2
tslib: 2.8.1
- '@turf/boolean-intersects@7.2.0':
+ '@turf/length@7.3.0':
dependencies:
- '@turf/boolean-disjoint': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/boolean-overlap@7.2.0':
+ '@turf/length@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/line-intersect': 7.2.0
- '@turf/line-overlap': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
- geojson-equality-ts: 1.0.2
tslib: 2.8.1
- '@turf/boolean-parallel@7.2.0':
+ '@turf/line-arc@7.3.0':
dependencies:
- '@turf/clean-coords': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/line-segment': 7.2.0
- '@turf/rhumb-bearing': 7.2.0
+ '@turf/circle': 7.3.0
+ '@turf/destination': 7.3.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/boolean-point-in-polygon@7.2.0':
+ '@turf/line-arc@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/circle': 7.3.1
+ '@turf/destination': 7.3.1
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
- point-in-polygon-hao: 1.2.4
tslib: 2.8.1
- '@turf/boolean-point-on-line@7.2.0':
+ '@turf/line-chunk@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/length': 7.3.0
+ '@turf/line-slice-along': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
- tslib: 2.8.1
- '@turf/boolean-touches@7.2.0':
+ '@turf/line-chunk@7.3.1':
dependencies:
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/boolean-point-on-line': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/length': 7.3.1
+ '@turf/line-slice-along': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
- tslib: 2.8.1
- '@turf/boolean-valid@7.2.0':
+ '@turf/line-intersect@7.3.0':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/boolean-crosses': 7.2.0
- '@turf/boolean-disjoint': 7.2.0
- '@turf/boolean-overlap': 7.2.0
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/boolean-point-on-line': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/line-intersect': 7.2.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
- geojson-polygon-self-intersections: 1.2.1
+ sweepline-intersections: 1.5.0
tslib: 2.8.1
- '@turf/boolean-within@7.2.0':
+ '@turf/line-intersect@7.3.1':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/boolean-point-on-line': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
+ sweepline-intersections: 1.5.0
tslib: 2.8.1
- '@turf/buffer@7.2.0':
+ '@turf/line-offset@7.3.0':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/center': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/jsts': 2.7.2
- '@turf/meta': 7.2.0
- '@turf/projection': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
- d3-geo: 1.7.1
- '@turf/center-mean@7.2.0':
+ '@turf/line-offset@7.3.1':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
- tslib: 2.8.1
- '@turf/center-median@7.2.0':
+ '@turf/line-overlap@7.3.0':
dependencies:
- '@turf/center-mean': 7.2.0
- '@turf/centroid': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/boolean-point-on-line': 7.3.0
+ '@turf/geojson-rbush': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/line-segment': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/nearest-point-on-line': 7.3.0
'@types/geojson': 7946.0.16
+ fast-deep-equal: 3.1.3
tslib: 2.8.1
- '@turf/center-of-mass@7.2.0':
+ '@turf/line-overlap@7.3.1':
dependencies:
- '@turf/centroid': 7.2.0
- '@turf/convex': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/boolean-point-on-line': 7.3.1
+ '@turf/geojson-rbush': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/line-segment': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/nearest-point-on-line': 7.3.1
'@types/geojson': 7946.0.16
+ fast-deep-equal: 3.1.3
tslib: 2.8.1
- '@turf/center@7.2.0':
+ '@turf/line-segment@7.3.0':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/helpers': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/centroid@7.2.0':
+ '@turf/line-segment@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/circle@7.2.0':
+ '@turf/line-slice-along@7.3.0':
dependencies:
- '@turf/destination': 7.2.0
- '@turf/helpers': 7.2.0
+ '@turf/bearing': 7.3.0
+ '@turf/destination': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
- tslib: 2.8.1
- '@turf/clean-coords@7.2.0':
+ '@turf/line-slice-along@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/bearing': 7.3.1
+ '@turf/destination': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
- tslib: 2.8.1
- '@turf/clone@7.2.0':
+ '@turf/line-slice@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/nearest-point-on-line': 7.3.0
'@types/geojson': 7946.0.16
- tslib: 2.8.1
- '@turf/clusters-dbscan@7.2.0':
+ '@turf/line-slice@7.3.1':
dependencies:
- '@turf/clone': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/nearest-point-on-line': 7.3.1
+ '@types/geojson': 7946.0.16
+
+ '@turf/line-split@7.3.0':
+ dependencies:
+ '@turf/bbox': 7.3.0
+ '@turf/geojson-rbush': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/line-intersect': 7.3.0
+ '@turf/line-segment': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/nearest-point-on-line': 7.3.0
+ '@turf/truncate': 7.3.0
+ '@types/geojson': 7946.0.16
+
+ '@turf/line-split@7.3.1':
+ dependencies:
+ '@turf/bbox': 7.3.1
+ '@turf/geojson-rbush': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/line-intersect': 7.3.1
+ '@turf/line-segment': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/nearest-point-on-line': 7.3.1
+ '@turf/truncate': 7.3.1
'@types/geojson': 7946.0.16
- rbush: 3.0.1
- tslib: 2.8.1
- '@turf/clusters-kmeans@7.2.0':
+ '@turf/line-to-polygon@7.3.0':
dependencies:
- '@turf/clone': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/bbox': 7.3.0
+ '@turf/clone': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
'@types/geojson': 7946.0.16
- skmeans: 0.9.7
tslib: 2.8.1
- '@turf/clusters@7.2.0':
+ '@turf/line-to-polygon@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/bbox': 7.3.1
+ '@turf/clone': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/collect@7.2.0':
+ '@turf/mask@7.3.0':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/helpers': 7.2.0
+ '@turf/clone': 7.3.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
- rbush: 3.0.1
+ polyclip-ts: 0.16.8
tslib: 2.8.1
- '@turf/combine@7.2.0':
+ '@turf/mask@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/clone': 7.3.1
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
+ polyclip-ts: 0.16.8
tslib: 2.8.1
- '@turf/concave@7.2.0':
+ '@turf/meta@5.2.0':
+ dependencies:
+ '@turf/helpers': 5.1.5
+
+ '@turf/meta@7.3.0':
dependencies:
- '@turf/clone': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/tin': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@types/geojson': 7946.0.16
+
+ '@turf/meta@7.3.1':
+ dependencies:
+ '@turf/helpers': 7.3.1
+ '@types/geojson': 7946.0.16
+
+ '@turf/midpoint@7.3.0':
+ dependencies:
+ '@turf/bearing': 7.3.0
+ '@turf/destination': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
- topojson-client: 3.1.0
- topojson-server: 3.0.1
tslib: 2.8.1
- '@turf/convex@7.2.0':
+ '@turf/midpoint@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/bearing': 7.3.1
+ '@turf/destination': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
- concaveman: 1.2.1
tslib: 2.8.1
- '@turf/destination@7.2.0':
+ '@turf/moran-index@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/distance-weight': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/difference@7.2.0':
+ '@turf/moran-index@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/distance-weight': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
- polyclip-ts: 0.16.8
tslib: 2.8.1
- '@turf/dissolve@7.2.0':
+ '@turf/nearest-neighbor-analysis@7.3.0':
dependencies:
- '@turf/flatten': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/area': 7.3.0
+ '@turf/bbox': 7.3.0
+ '@turf/bbox-polygon': 7.3.0
+ '@turf/centroid': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/nearest-point': 7.3.0
'@types/geojson': 7946.0.16
- polyclip-ts: 0.16.8
tslib: 2.8.1
- '@turf/distance-weight@7.2.0':
+ '@turf/nearest-neighbor-analysis@7.3.1':
dependencies:
- '@turf/centroid': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/area': 7.3.1
+ '@turf/bbox': 7.3.1
+ '@turf/bbox-polygon': 7.3.1
+ '@turf/centroid': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/nearest-point': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/distance@7.2.0':
+ '@turf/nearest-point-on-line@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/ellipse@7.2.0':
+ '@turf/nearest-point-on-line@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/rhumb-destination': 7.2.0
- '@turf/transform-rotate': 7.2.0
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/envelope@7.2.0':
+ '@turf/nearest-point-to-line@7.3.0':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/bbox-polygon': 7.2.0
- '@turf/helpers': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/point-to-line-distance': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/explode@7.2.0':
+ '@turf/nearest-point-to-line@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/point-to-line-distance': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/flatten@7.2.0':
+ '@turf/nearest-point@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/clone': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/flip@7.2.0':
+ '@turf/nearest-point@7.3.1':
dependencies:
- '@turf/clone': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/clone': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/geojson-rbush@7.2.0':
+ '@turf/planepoint@7.3.0':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
'@types/geojson': 7946.0.16
- rbush: 3.0.1
+ tslib: 2.8.1
- '@turf/great-circle@7.2.0':
+ '@turf/planepoint@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
'@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@turf/helpers@7.2.0':
+ '@turf/point-grid@7.3.0':
dependencies:
+ '@turf/boolean-within': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/hex-grid@7.2.0':
+ '@turf/point-grid@7.3.1':
dependencies:
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/intersect': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/boolean-within': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/interpolate@7.2.0':
+ '@turf/point-on-feature@7.3.0':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/centroid': 7.2.0
- '@turf/clone': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/hex-grid': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/point-grid': 7.2.0
- '@turf/square-grid': 7.2.0
- '@turf/triangle-grid': 7.2.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/center': 7.3.0
+ '@turf/explode': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/nearest-point': 7.3.0
'@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@turf/intersect@7.2.0':
+ '@turf/point-on-feature@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/center': 7.3.1
+ '@turf/explode': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/nearest-point': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
+
+ '@turf/point-to-line-distance@7.3.0':
+ dependencies:
+ '@turf/bearing': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/nearest-point-on-line': 7.3.0
+ '@turf/projection': 7.3.0
+ '@turf/rhumb-bearing': 7.3.0
+ '@turf/rhumb-distance': 7.3.0
'@types/geojson': 7946.0.16
- polyclip-ts: 0.16.8
tslib: 2.8.1
- '@turf/invariant@7.2.0':
+ '@turf/point-to-line-distance@7.3.1':
+ dependencies:
+ '@turf/bearing': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/nearest-point-on-line': 7.3.1
+ '@turf/projection': 7.3.1
+ '@turf/rhumb-bearing': 7.3.1
+ '@turf/rhumb-distance': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
+
+ '@turf/point-to-polygon-distance@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/point-to-line-distance': 7.3.0
+ '@turf/polygon-to-line': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/isobands@7.2.0':
+ '@turf/point-to-polygon-distance@7.3.1':
dependencies:
- '@turf/area': 7.2.0
- '@turf/bbox': 7.2.0
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/explode': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/point-to-line-distance': 7.3.1
+ '@turf/polygon-to-line': 7.3.1
'@types/geojson': 7946.0.16
- marchingsquares: 1.3.3
tslib: 2.8.1
- '@turf/isolines@7.2.0':
+ '@turf/points-within-polygon@7.3.0':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
- marchingsquares: 1.3.3
tslib: 2.8.1
- '@turf/jsts@2.7.2':
+ '@turf/points-within-polygon@7.3.1':
dependencies:
- jsts: 2.7.1
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@turf/kinks@7.2.0':
+ '@turf/polygon-smooth@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/length@7.2.0':
+ '@turf/polygon-smooth@7.3.1':
dependencies:
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/line-arc@7.2.0':
+ '@turf/polygon-tangents@7.3.0':
dependencies:
- '@turf/circle': 7.2.0
- '@turf/destination': 7.2.0
- '@turf/helpers': 7.2.0
+ '@turf/bbox': 7.3.0
+ '@turf/boolean-within': 7.3.0
+ '@turf/explode': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/nearest-point': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/line-chunk@7.2.0':
+ '@turf/polygon-tangents@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/length': 7.2.0
- '@turf/line-slice-along': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/bbox': 7.3.1
+ '@turf/boolean-within': 7.3.1
+ '@turf/explode': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/nearest-point': 7.3.1
'@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@turf/line-intersect@7.2.0':
+ '@turf/polygon-to-line@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
'@types/geojson': 7946.0.16
- sweepline-intersections: 1.5.0
tslib: 2.8.1
- '@turf/line-offset@7.2.0':
+ '@turf/polygon-to-line@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
'@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@turf/line-overlap@7.2.0':
+ '@turf/polygonize@7.3.0':
dependencies:
- '@turf/boolean-point-on-line': 7.2.0
- '@turf/geojson-rbush': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/line-segment': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/nearest-point-on-line': 7.2.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/envelope': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
- fast-deep-equal: 3.1.3
tslib: 2.8.1
- '@turf/line-segment@7.2.0':
+ '@turf/polygonize@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/envelope': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/line-slice-along@7.2.0':
+ '@turf/projection@7.3.0':
dependencies:
- '@turf/bearing': 7.2.0
- '@turf/destination': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
+ '@turf/clone': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@turf/line-slice@7.2.0':
+ '@turf/projection@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/nearest-point-on-line': 7.2.0
+ '@turf/clone': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@turf/line-split@7.2.0':
- dependencies:
- '@turf/bbox': 7.2.0
- '@turf/geojson-rbush': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/line-intersect': 7.2.0
- '@turf/line-segment': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/nearest-point-on-line': 7.2.0
- '@turf/square': 7.2.0
- '@turf/truncate': 7.2.0
+ '@turf/quadrat-analysis@7.3.0':
+ dependencies:
+ '@turf/area': 7.3.0
+ '@turf/bbox': 7.3.0
+ '@turf/bbox-polygon': 7.3.0
+ '@turf/centroid': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/point-grid': 7.3.0
+ '@turf/random': 7.3.0
+ '@turf/square-grid': 7.3.0
'@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@turf/line-to-polygon@7.2.0':
- dependencies:
- '@turf/bbox': 7.2.0
- '@turf/clone': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/quadrat-analysis@7.3.1':
+ dependencies:
+ '@turf/area': 7.3.1
+ '@turf/bbox': 7.3.1
+ '@turf/bbox-polygon': 7.3.1
+ '@turf/centroid': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/point-grid': 7.3.1
+ '@turf/random': 7.3.1
+ '@turf/square-grid': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/mask@7.2.0':
+ '@turf/random@7.3.0':
dependencies:
- '@turf/clone': 7.2.0
- '@turf/helpers': 7.2.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
- polyclip-ts: 0.16.8
tslib: 2.8.1
- '@turf/meta@7.2.0':
+ '@turf/random@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
+ tslib: 2.8.1
- '@turf/midpoint@7.2.0':
+ '@turf/rectangle-grid@7.3.0':
dependencies:
- '@turf/bearing': 7.2.0
- '@turf/destination': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
+ '@turf/boolean-intersects': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/moran-index@7.2.0':
+ '@turf/rectangle-grid@7.3.1':
dependencies:
- '@turf/distance-weight': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/boolean-intersects': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/nearest-neighbor-analysis@7.2.0':
+ '@turf/rewind@5.1.5':
+ dependencies:
+ '@turf/boolean-clockwise': 5.1.5
+ '@turf/clone': 5.1.5
+ '@turf/helpers': 5.1.5
+ '@turf/invariant': 5.2.0
+ '@turf/meta': 5.2.0
+
+ '@turf/rewind@7.3.0':
dependencies:
- '@turf/area': 7.2.0
- '@turf/bbox': 7.2.0
- '@turf/bbox-polygon': 7.2.0
- '@turf/centroid': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/nearest-point': 7.2.0
+ '@turf/boolean-clockwise': 7.3.0
+ '@turf/clone': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/nearest-point-on-line@7.2.0':
+ '@turf/rewind@7.3.1':
dependencies:
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/boolean-clockwise': 7.3.1
+ '@turf/clone': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/nearest-point-to-line@7.2.0':
+ '@turf/rhumb-bearing@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/point-to-line-distance': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/nearest-point@7.2.0':
+ '@turf/rhumb-bearing@7.3.1':
dependencies:
- '@turf/clone': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/planepoint@7.2.0':
+ '@turf/rhumb-destination@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/point-grid@7.2.0':
+ '@turf/rhumb-destination@7.3.1':
dependencies:
- '@turf/boolean-within': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/point-on-feature@7.2.0':
+ '@turf/rhumb-distance@7.3.0':
dependencies:
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/center': 7.2.0
- '@turf/explode': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/nearest-point': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/point-to-line-distance@7.2.0':
+ '@turf/rhumb-distance@7.3.1':
dependencies:
- '@turf/bearing': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/nearest-point-on-line': 7.2.0
- '@turf/projection': 7.2.0
- '@turf/rhumb-bearing': 7.2.0
- '@turf/rhumb-distance': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/point-to-polygon-distance@7.2.0':
+ '@turf/sample@7.3.0':
dependencies:
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/point-to-line-distance': 7.2.0
- '@turf/polygon-to-line': 7.2.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/points-within-polygon@7.2.0':
+ '@turf/sample@7.3.1':
dependencies:
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/polygon-smooth@7.2.0':
+ '@turf/sector@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/circle': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/line-arc': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/polygon-tangents@7.2.0':
+ '@turf/sector@7.3.1':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/boolean-within': 7.2.0
- '@turf/explode': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/nearest-point': 7.2.0
+ '@turf/circle': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/line-arc': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/polygon-to-line@7.2.0':
- dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/shortest-path@7.3.0':
+ dependencies:
+ '@turf/bbox': 7.3.0
+ '@turf/bbox-polygon': 7.3.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/clean-coords': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/transform-scale': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/polygonize@7.2.0':
- dependencies:
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/envelope': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/shortest-path@7.3.1':
+ dependencies:
+ '@turf/bbox': 7.3.1
+ '@turf/bbox-polygon': 7.3.1
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/clean-coords': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/transform-scale': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/projection@7.2.0':
+ '@turf/simplify@7.3.0':
dependencies:
- '@turf/clone': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/clean-coords': 7.3.0
+ '@turf/clone': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/quadrat-analysis@7.2.0':
+ '@turf/simplify@7.3.1':
dependencies:
- '@turf/area': 7.2.0
- '@turf/bbox': 7.2.0
- '@turf/bbox-polygon': 7.2.0
- '@turf/centroid': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/point-grid': 7.2.0
- '@turf/random': 7.2.0
- '@turf/square-grid': 7.2.0
+ '@turf/clean-coords': 7.3.1
+ '@turf/clone': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/random@7.2.0':
+ '@turf/square-grid@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/rectangle-grid': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/rectangle-grid@7.2.0':
+ '@turf/square-grid@7.3.1':
dependencies:
- '@turf/boolean-intersects': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/rectangle-grid': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/rewind@7.2.0':
+ '@turf/square@7.3.0':
dependencies:
- '@turf/boolean-clockwise': 7.2.0
- '@turf/clone': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/rhumb-bearing@7.2.0':
+ '@turf/square@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/rhumb-destination@7.2.0':
+ '@turf/standard-deviational-ellipse@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/center-mean': 7.3.0
+ '@turf/ellipse': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/points-within-polygon': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/rhumb-distance@7.2.0':
+ '@turf/standard-deviational-ellipse@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/center-mean': 7.3.1
+ '@turf/ellipse': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/points-within-polygon': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/sample@7.2.0':
+ '@turf/tag@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/clone': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/sector@7.2.0':
+ '@turf/tag@7.3.1':
dependencies:
- '@turf/circle': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/line-arc': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/clone': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/shortest-path@7.2.0':
+ '@turf/tesselate@7.3.0':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/bbox-polygon': 7.2.0
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/clean-coords': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/transform-scale': 7.2.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
+ earcut: 2.2.4
tslib: 2.8.1
- '@turf/simplify@7.2.0':
+ '@turf/tesselate@7.3.1':
dependencies:
- '@turf/clean-coords': 7.2.0
- '@turf/clone': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
+ earcut: 2.2.4
tslib: 2.8.1
- '@turf/square-grid@7.2.0':
+ '@turf/tin@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/rectangle-grid': 7.2.0
+ '@turf/helpers': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/square@7.2.0':
+ '@turf/tin@7.3.1':
dependencies:
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
+ '@turf/helpers': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/standard-deviational-ellipse@7.2.0':
+ '@turf/transform-rotate@7.3.0':
dependencies:
- '@turf/center-mean': 7.2.0
- '@turf/ellipse': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/points-within-polygon': 7.2.0
+ '@turf/centroid': 7.3.0
+ '@turf/clone': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/rhumb-bearing': 7.3.0
+ '@turf/rhumb-destination': 7.3.0
+ '@turf/rhumb-distance': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/tag@7.2.0':
+ '@turf/transform-rotate@7.3.1':
dependencies:
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/clone': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/centroid': 7.3.1
+ '@turf/clone': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/rhumb-bearing': 7.3.1
+ '@turf/rhumb-destination': 7.3.1
+ '@turf/rhumb-distance': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/tesselate@7.2.0':
- dependencies:
- '@turf/helpers': 7.2.0
+ '@turf/transform-scale@7.3.0':
+ dependencies:
+ '@turf/bbox': 7.3.0
+ '@turf/center': 7.3.0
+ '@turf/centroid': 7.3.0
+ '@turf/clone': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/rhumb-bearing': 7.3.0
+ '@turf/rhumb-destination': 7.3.0
+ '@turf/rhumb-distance': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
+
+ '@turf/transform-scale@7.3.1':
+ dependencies:
+ '@turf/bbox': 7.3.1
+ '@turf/center': 7.3.1
+ '@turf/centroid': 7.3.1
+ '@turf/clone': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/rhumb-bearing': 7.3.1
+ '@turf/rhumb-destination': 7.3.1
+ '@turf/rhumb-distance': 7.3.1
'@types/geojson': 7946.0.16
- earcut: 2.2.4
tslib: 2.8.1
- '@turf/tin@7.2.0':
+ '@turf/transform-translate@7.3.0':
dependencies:
- '@turf/helpers': 7.2.0
+ '@turf/clone': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/rhumb-destination': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/transform-rotate@7.2.0':
+ '@turf/transform-translate@7.3.1':
dependencies:
- '@turf/centroid': 7.2.0
- '@turf/clone': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/rhumb-bearing': 7.2.0
- '@turf/rhumb-destination': 7.2.0
- '@turf/rhumb-distance': 7.2.0
+ '@turf/clone': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/rhumb-destination': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/transform-scale@7.2.0':
+ '@turf/triangle-grid@7.3.0':
dependencies:
- '@turf/bbox': 7.2.0
- '@turf/center': 7.2.0
- '@turf/centroid': 7.2.0
- '@turf/clone': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/rhumb-bearing': 7.2.0
- '@turf/rhumb-destination': 7.2.0
- '@turf/rhumb-distance': 7.2.0
+ '@turf/distance': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/intersect': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/transform-translate@7.2.0':
+ '@turf/triangle-grid@7.3.1':
dependencies:
- '@turf/clone': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/rhumb-destination': 7.2.0
+ '@turf/distance': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/intersect': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/triangle-grid@7.2.0':
+ '@turf/truncate@7.3.0':
dependencies:
- '@turf/distance': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/intersect': 7.2.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/truncate@7.2.0':
+ '@turf/truncate@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
+
+ '@turf/turf@7.3.0':
+ dependencies:
+ '@turf/along': 7.3.0
+ '@turf/angle': 7.3.0
+ '@turf/area': 7.3.0
+ '@turf/bbox': 7.3.0
+ '@turf/bbox-clip': 7.3.0
+ '@turf/bbox-polygon': 7.3.0
+ '@turf/bearing': 7.3.0
+ '@turf/bezier-spline': 7.3.0
+ '@turf/boolean-clockwise': 7.3.0
+ '@turf/boolean-concave': 7.3.0
+ '@turf/boolean-contains': 7.3.0
+ '@turf/boolean-crosses': 7.3.0
+ '@turf/boolean-disjoint': 7.3.0
+ '@turf/boolean-equal': 7.3.0
+ '@turf/boolean-intersects': 7.3.0
+ '@turf/boolean-overlap': 7.3.0
+ '@turf/boolean-parallel': 7.3.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/boolean-point-on-line': 7.3.0
+ '@turf/boolean-touches': 7.3.0
+ '@turf/boolean-valid': 7.3.0
+ '@turf/boolean-within': 7.3.0
+ '@turf/buffer': 7.3.0
+ '@turf/center': 7.3.0
+ '@turf/center-mean': 7.3.0
+ '@turf/center-median': 7.3.0
+ '@turf/center-of-mass': 7.3.0
+ '@turf/centroid': 7.3.0
+ '@turf/circle': 7.3.0
+ '@turf/clean-coords': 7.3.0
+ '@turf/clone': 7.3.0
+ '@turf/clusters': 7.3.0
+ '@turf/clusters-dbscan': 7.3.0
+ '@turf/clusters-kmeans': 7.3.0
+ '@turf/collect': 7.3.0
+ '@turf/combine': 7.3.0
+ '@turf/concave': 7.3.0
+ '@turf/convex': 7.3.0
+ '@turf/destination': 7.3.0
+ '@turf/difference': 7.3.0
+ '@turf/dissolve': 7.3.0
+ '@turf/distance': 7.3.0
+ '@turf/distance-weight': 7.3.0
+ '@turf/ellipse': 7.3.0
+ '@turf/envelope': 7.3.0
+ '@turf/explode': 7.3.0
+ '@turf/flatten': 7.3.0
+ '@turf/flip': 7.3.0
+ '@turf/geojson-rbush': 7.3.0
+ '@turf/great-circle': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/hex-grid': 7.3.0
+ '@turf/interpolate': 7.3.0
+ '@turf/intersect': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@turf/isobands': 7.3.0
+ '@turf/isolines': 7.3.0
+ '@turf/kinks': 7.3.0
+ '@turf/length': 7.3.0
+ '@turf/line-arc': 7.3.0
+ '@turf/line-chunk': 7.3.0
+ '@turf/line-intersect': 7.3.0
+ '@turf/line-offset': 7.3.0
+ '@turf/line-overlap': 7.3.0
+ '@turf/line-segment': 7.3.0
+ '@turf/line-slice': 7.3.0
+ '@turf/line-slice-along': 7.3.0
+ '@turf/line-split': 7.3.0
+ '@turf/line-to-polygon': 7.3.0
+ '@turf/mask': 7.3.0
+ '@turf/meta': 7.3.0
+ '@turf/midpoint': 7.3.0
+ '@turf/moran-index': 7.3.0
+ '@turf/nearest-neighbor-analysis': 7.3.0
+ '@turf/nearest-point': 7.3.0
+ '@turf/nearest-point-on-line': 7.3.0
+ '@turf/nearest-point-to-line': 7.3.0
+ '@turf/planepoint': 7.3.0
+ '@turf/point-grid': 7.3.0
+ '@turf/point-on-feature': 7.3.0
+ '@turf/point-to-line-distance': 7.3.0
+ '@turf/point-to-polygon-distance': 7.3.0
+ '@turf/points-within-polygon': 7.3.0
+ '@turf/polygon-smooth': 7.3.0
+ '@turf/polygon-tangents': 7.3.0
+ '@turf/polygon-to-line': 7.3.0
+ '@turf/polygonize': 7.3.0
+ '@turf/projection': 7.3.0
+ '@turf/quadrat-analysis': 7.3.0
+ '@turf/random': 7.3.0
+ '@turf/rectangle-grid': 7.3.0
+ '@turf/rewind': 7.3.0
+ '@turf/rhumb-bearing': 7.3.0
+ '@turf/rhumb-destination': 7.3.0
+ '@turf/rhumb-distance': 7.3.0
+ '@turf/sample': 7.3.0
+ '@turf/sector': 7.3.0
+ '@turf/shortest-path': 7.3.0
+ '@turf/simplify': 7.3.0
+ '@turf/square': 7.3.0
+ '@turf/square-grid': 7.3.0
+ '@turf/standard-deviational-ellipse': 7.3.0
+ '@turf/tag': 7.3.0
+ '@turf/tesselate': 7.3.0
+ '@turf/tin': 7.3.0
+ '@turf/transform-rotate': 7.3.0
+ '@turf/transform-scale': 7.3.0
+ '@turf/transform-translate': 7.3.0
+ '@turf/triangle-grid': 7.3.0
+ '@turf/truncate': 7.3.0
+ '@turf/union': 7.3.0
+ '@turf/unkink-polygon': 7.3.0
+ '@turf/voronoi': 7.3.0
+ '@types/geojson': 7946.0.16
+ tslib: 2.8.1
+
+ '@turf/turf@7.3.1':
+ dependencies:
+ '@turf/along': 7.3.1
+ '@turf/angle': 7.3.1
+ '@turf/area': 7.3.1
+ '@turf/bbox': 7.3.1
+ '@turf/bbox-clip': 7.3.1
+ '@turf/bbox-polygon': 7.3.1
+ '@turf/bearing': 7.3.1
+ '@turf/bezier-spline': 7.3.1
+ '@turf/boolean-clockwise': 7.3.1
+ '@turf/boolean-concave': 7.3.1
+ '@turf/boolean-contains': 7.3.1
+ '@turf/boolean-crosses': 7.3.1
+ '@turf/boolean-disjoint': 7.3.1
+ '@turf/boolean-equal': 7.3.1
+ '@turf/boolean-intersects': 7.3.1
+ '@turf/boolean-overlap': 7.3.1
+ '@turf/boolean-parallel': 7.3.1
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/boolean-point-on-line': 7.3.1
+ '@turf/boolean-touches': 7.3.1
+ '@turf/boolean-valid': 7.3.1
+ '@turf/boolean-within': 7.3.1
+ '@turf/buffer': 7.3.1
+ '@turf/center': 7.3.1
+ '@turf/center-mean': 7.3.1
+ '@turf/center-median': 7.3.1
+ '@turf/center-of-mass': 7.3.1
+ '@turf/centroid': 7.3.1
+ '@turf/circle': 7.3.1
+ '@turf/clean-coords': 7.3.1
+ '@turf/clone': 7.3.1
+ '@turf/clusters': 7.3.1
+ '@turf/clusters-dbscan': 7.3.1
+ '@turf/clusters-kmeans': 7.3.1
+ '@turf/collect': 7.3.1
+ '@turf/combine': 7.3.1
+ '@turf/concave': 7.3.1
+ '@turf/convex': 7.3.1
+ '@turf/destination': 7.3.1
+ '@turf/difference': 7.3.1
+ '@turf/dissolve': 7.3.1
+ '@turf/distance': 7.3.1
+ '@turf/distance-weight': 7.3.1
+ '@turf/ellipse': 7.3.1
+ '@turf/envelope': 7.3.1
+ '@turf/explode': 7.3.1
+ '@turf/flatten': 7.3.1
+ '@turf/flip': 7.3.1
+ '@turf/geojson-rbush': 7.3.1
+ '@turf/great-circle': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/hex-grid': 7.3.1
+ '@turf/interpolate': 7.3.1
+ '@turf/intersect': 7.3.1
+ '@turf/invariant': 7.3.1
+ '@turf/isobands': 7.3.1
+ '@turf/isolines': 7.3.1
+ '@turf/kinks': 7.3.1
+ '@turf/length': 7.3.1
+ '@turf/line-arc': 7.3.1
+ '@turf/line-chunk': 7.3.1
+ '@turf/line-intersect': 7.3.1
+ '@turf/line-offset': 7.3.1
+ '@turf/line-overlap': 7.3.1
+ '@turf/line-segment': 7.3.1
+ '@turf/line-slice': 7.3.1
+ '@turf/line-slice-along': 7.3.1
+ '@turf/line-split': 7.3.1
+ '@turf/line-to-polygon': 7.3.1
+ '@turf/mask': 7.3.1
+ '@turf/meta': 7.3.1
+ '@turf/midpoint': 7.3.1
+ '@turf/moran-index': 7.3.1
+ '@turf/nearest-neighbor-analysis': 7.3.1
+ '@turf/nearest-point': 7.3.1
+ '@turf/nearest-point-on-line': 7.3.1
+ '@turf/nearest-point-to-line': 7.3.1
+ '@turf/planepoint': 7.3.1
+ '@turf/point-grid': 7.3.1
+ '@turf/point-on-feature': 7.3.1
+ '@turf/point-to-line-distance': 7.3.1
+ '@turf/point-to-polygon-distance': 7.3.1
+ '@turf/points-within-polygon': 7.3.1
+ '@turf/polygon-smooth': 7.3.1
+ '@turf/polygon-tangents': 7.3.1
+ '@turf/polygon-to-line': 7.3.1
+ '@turf/polygonize': 7.3.1
+ '@turf/projection': 7.3.1
+ '@turf/quadrat-analysis': 7.3.1
+ '@turf/random': 7.3.1
+ '@turf/rectangle-grid': 7.3.1
+ '@turf/rewind': 7.3.1
+ '@turf/rhumb-bearing': 7.3.1
+ '@turf/rhumb-destination': 7.3.1
+ '@turf/rhumb-distance': 7.3.1
+ '@turf/sample': 7.3.1
+ '@turf/sector': 7.3.1
+ '@turf/shortest-path': 7.3.1
+ '@turf/simplify': 7.3.1
+ '@turf/square': 7.3.1
+ '@turf/square-grid': 7.3.1
+ '@turf/standard-deviational-ellipse': 7.3.1
+ '@turf/tag': 7.3.1
+ '@turf/tesselate': 7.3.1
+ '@turf/tin': 7.3.1
+ '@turf/transform-rotate': 7.3.1
+ '@turf/transform-scale': 7.3.1
+ '@turf/transform-translate': 7.3.1
+ '@turf/triangle-grid': 7.3.1
+ '@turf/truncate': 7.3.1
+ '@turf/union': 7.3.1
+ '@turf/unkink-polygon': 7.3.1
+ '@turf/voronoi': 7.3.1
'@types/geojson': 7946.0.16
tslib: 2.8.1
- '@turf/turf@7.2.0':
- dependencies:
- '@turf/along': 7.2.0
- '@turf/angle': 7.2.0
- '@turf/area': 7.2.0
- '@turf/bbox': 7.2.0
- '@turf/bbox-clip': 7.2.0
- '@turf/bbox-polygon': 7.2.0
- '@turf/bearing': 7.2.0
- '@turf/bezier-spline': 7.2.0
- '@turf/boolean-clockwise': 7.2.0
- '@turf/boolean-concave': 7.2.0
- '@turf/boolean-contains': 7.2.0
- '@turf/boolean-crosses': 7.2.0
- '@turf/boolean-disjoint': 7.2.0
- '@turf/boolean-equal': 7.2.0
- '@turf/boolean-intersects': 7.2.0
- '@turf/boolean-overlap': 7.2.0
- '@turf/boolean-parallel': 7.2.0
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/boolean-point-on-line': 7.2.0
- '@turf/boolean-touches': 7.2.0
- '@turf/boolean-valid': 7.2.0
- '@turf/boolean-within': 7.2.0
- '@turf/buffer': 7.2.0
- '@turf/center': 7.2.0
- '@turf/center-mean': 7.2.0
- '@turf/center-median': 7.2.0
- '@turf/center-of-mass': 7.2.0
- '@turf/centroid': 7.2.0
- '@turf/circle': 7.2.0
- '@turf/clean-coords': 7.2.0
- '@turf/clone': 7.2.0
- '@turf/clusters': 7.2.0
- '@turf/clusters-dbscan': 7.2.0
- '@turf/clusters-kmeans': 7.2.0
- '@turf/collect': 7.2.0
- '@turf/combine': 7.2.0
- '@turf/concave': 7.2.0
- '@turf/convex': 7.2.0
- '@turf/destination': 7.2.0
- '@turf/difference': 7.2.0
- '@turf/dissolve': 7.2.0
- '@turf/distance': 7.2.0
- '@turf/distance-weight': 7.2.0
- '@turf/ellipse': 7.2.0
- '@turf/envelope': 7.2.0
- '@turf/explode': 7.2.0
- '@turf/flatten': 7.2.0
- '@turf/flip': 7.2.0
- '@turf/geojson-rbush': 7.2.0
- '@turf/great-circle': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/hex-grid': 7.2.0
- '@turf/interpolate': 7.2.0
- '@turf/intersect': 7.2.0
- '@turf/invariant': 7.2.0
- '@turf/isobands': 7.2.0
- '@turf/isolines': 7.2.0
- '@turf/kinks': 7.2.0
- '@turf/length': 7.2.0
- '@turf/line-arc': 7.2.0
- '@turf/line-chunk': 7.2.0
- '@turf/line-intersect': 7.2.0
- '@turf/line-offset': 7.2.0
- '@turf/line-overlap': 7.2.0
- '@turf/line-segment': 7.2.0
- '@turf/line-slice': 7.2.0
- '@turf/line-slice-along': 7.2.0
- '@turf/line-split': 7.2.0
- '@turf/line-to-polygon': 7.2.0
- '@turf/mask': 7.2.0
- '@turf/meta': 7.2.0
- '@turf/midpoint': 7.2.0
- '@turf/moran-index': 7.2.0
- '@turf/nearest-neighbor-analysis': 7.2.0
- '@turf/nearest-point': 7.2.0
- '@turf/nearest-point-on-line': 7.2.0
- '@turf/nearest-point-to-line': 7.2.0
- '@turf/planepoint': 7.2.0
- '@turf/point-grid': 7.2.0
- '@turf/point-on-feature': 7.2.0
- '@turf/point-to-line-distance': 7.2.0
- '@turf/point-to-polygon-distance': 7.2.0
- '@turf/points-within-polygon': 7.2.0
- '@turf/polygon-smooth': 7.2.0
- '@turf/polygon-tangents': 7.2.0
- '@turf/polygon-to-line': 7.2.0
- '@turf/polygonize': 7.2.0
- '@turf/projection': 7.2.0
- '@turf/quadrat-analysis': 7.2.0
- '@turf/random': 7.2.0
- '@turf/rectangle-grid': 7.2.0
- '@turf/rewind': 7.2.0
- '@turf/rhumb-bearing': 7.2.0
- '@turf/rhumb-destination': 7.2.0
- '@turf/rhumb-distance': 7.2.0
- '@turf/sample': 7.2.0
- '@turf/sector': 7.2.0
- '@turf/shortest-path': 7.2.0
- '@turf/simplify': 7.2.0
- '@turf/square': 7.2.0
- '@turf/square-grid': 7.2.0
- '@turf/standard-deviational-ellipse': 7.2.0
- '@turf/tag': 7.2.0
- '@turf/tesselate': 7.2.0
- '@turf/tin': 7.2.0
- '@turf/transform-rotate': 7.2.0
- '@turf/transform-scale': 7.2.0
- '@turf/transform-translate': 7.2.0
- '@turf/triangle-grid': 7.2.0
- '@turf/truncate': 7.2.0
- '@turf/union': 7.2.0
- '@turf/unkink-polygon': 7.2.0
- '@turf/voronoi': 7.2.0
+ '@turf/union@7.3.0':
+ dependencies:
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
'@types/geojson': 7946.0.16
+ polyclip-ts: 0.16.8
tslib: 2.8.1
- '@turf/union@7.2.0':
+ '@turf/union@7.3.1':
dependencies:
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
polyclip-ts: 0.16.8
tslib: 2.8.1
- '@turf/unkink-polygon@7.2.0':
+ '@turf/unkink-polygon@7.3.0':
+ dependencies:
+ '@turf/area': 7.3.0
+ '@turf/boolean-point-in-polygon': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/meta': 7.3.0
+ '@types/geojson': 7946.0.16
+ rbush: 3.0.1
+ tslib: 2.8.1
+
+ '@turf/unkink-polygon@7.3.1':
dependencies:
- '@turf/area': 7.2.0
- '@turf/boolean-point-in-polygon': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/meta': 7.2.0
+ '@turf/area': 7.3.1
+ '@turf/boolean-point-in-polygon': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/meta': 7.3.1
'@types/geojson': 7946.0.16
rbush: 3.0.1
tslib: 2.8.1
- '@turf/voronoi@7.2.0':
+ '@turf/voronoi@7.3.0':
+ dependencies:
+ '@turf/clone': 7.3.0
+ '@turf/helpers': 7.3.0
+ '@turf/invariant': 7.3.0
+ '@types/d3-voronoi': 1.1.12
+ '@types/geojson': 7946.0.16
+ d3-voronoi: 1.1.2
+ tslib: 2.8.1
+
+ '@turf/voronoi@7.3.1':
dependencies:
- '@turf/clone': 7.2.0
- '@turf/helpers': 7.2.0
- '@turf/invariant': 7.2.0
+ '@turf/clone': 7.3.1
+ '@turf/helpers': 7.3.1
+ '@turf/invariant': 7.3.1
'@types/d3-voronoi': 1.1.12
'@types/geojson': 7946.0.16
d3-voronoi: 1.1.2
@@ -17156,7 +19608,7 @@ snapshots:
'@tweenjs/tween.js@23.1.3': {}
- '@tybys/wasm-util@0.10.0':
+ '@tybys/wasm-util@0.10.1':
dependencies:
tslib: 2.8.1
optional: true
@@ -17171,52 +19623,59 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
'@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.28.0
'@types/babel__generator@7.27.0':
dependencies:
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.5
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
'@types/babel__traverse@7.28.0':
dependencies:
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.5
'@types/body-parser@1.19.6':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
+
+ '@types/brotli@1.3.4':
+ dependencies:
+ '@types/node': 24.10.1
- '@types/chai@5.2.2':
+ '@types/chai@5.2.3':
dependencies:
'@types/deep-eql': 4.0.2
+ assertion-error: 2.0.1
'@types/cheerio@0.22.35':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
'@types/connect-history-api-fallback@1.5.4':
dependencies:
- '@types/express-serve-static-core': 4.19.6
- '@types/node': 24.3.1
+ '@types/express-serve-static-core': 4.19.7
+ '@types/node': 24.10.1
'@types/connect@3.4.38':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
- '@types/d3-array@3.2.1': {}
+ '@types/crypto-js@4.2.2': {}
+
+ '@types/d3-array@3.2.2': {}
'@types/d3-axis@3.0.6':
dependencies:
@@ -17232,7 +19691,7 @@ snapshots:
'@types/d3-contour@3.0.6':
dependencies:
- '@types/d3-array': 3.2.1
+ '@types/d3-array': 3.2.2
'@types/geojson': 7946.0.16
'@types/d3-delaunay@6.0.4': {}
@@ -17304,7 +19763,7 @@ snapshots:
'@types/d3@7.4.3':
dependencies:
- '@types/d3-array': 3.2.1
+ '@types/d3-array': 3.2.2
'@types/d3-axis': 3.0.6
'@types/d3-brush': 3.0.6
'@types/d3-chord': 3.0.6
@@ -17339,14 +19798,16 @@ snapshots:
'@types/doctrine@0.0.9': {}
+ '@types/draco3d@1.4.10': {}
+
'@types/elasticlunr@0.9.9': {}
- '@types/emscripten@1.41.1': {}
+ '@types/emscripten@1.41.5': {}
'@types/enzyme@3.10.19':
dependencies:
'@types/cheerio': 0.22.35
- '@types/react': 16.14.66
+ '@types/react': 16.14.68
'@types/eslint-scope@3.7.7':
dependencies:
@@ -17362,21 +19823,21 @@ snapshots:
'@types/expect@24.3.2':
dependencies:
- expect: 30.1.2
+ expect: 30.2.0
- '@types/express-serve-static-core@4.19.6':
+ '@types/express-serve-static-core@4.19.7':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
'@types/qs': 6.14.0
'@types/range-parser': 1.2.7
- '@types/send': 0.17.5
+ '@types/send': 1.2.1
- '@types/express@4.17.23':
+ '@types/express@4.17.25':
dependencies:
'@types/body-parser': 1.19.6
- '@types/express-serve-static-core': 4.19.6
+ '@types/express-serve-static-core': 4.19.7
'@types/qs': 6.14.0
- '@types/serve-static': 1.15.8
+ '@types/serve-static': 1.15.10
'@types/geojson-vt@3.2.5':
dependencies:
@@ -17392,9 +19853,9 @@ snapshots:
'@types/http-errors@2.0.5': {}
- '@types/http-proxy@1.17.16':
+ '@types/http-proxy@1.17.17':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
'@types/istanbul-lib-coverage@2.0.6': {}
@@ -17413,12 +19874,12 @@ snapshots:
'@types/jest@30.0.0':
dependencies:
- expect: 30.1.2
- pretty-format: 30.0.5
+ expect: 30.2.0
+ pretty-format: 30.2.0
'@types/jsdom@21.1.7':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
'@types/tough-cookie': 4.0.5
parse5: 7.3.0
@@ -17429,7 +19890,7 @@ snapshots:
'@types/mapbox__mapbox-gl-draw@1.4.9':
dependencies:
'@types/geojson': 7946.0.16
- mapbox-gl: 3.14.0
+ mapbox-gl: 3.16.0
'@types/mapbox__point-geometry@0.1.4': {}
@@ -17453,16 +19914,18 @@ snapshots:
'@types/node-forge@1.3.14':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
- '@types/node@24.3.1':
+ '@types/node@24.10.1':
dependencies:
- undici-types: 7.10.0
+ undici-types: 7.16.0
'@types/normalize-package-data@2.4.4': {}
'@types/offscreencanvas@2019.7.3': {}
+ '@types/pako@1.0.7': {}
+
'@types/pako@2.0.4': {}
'@types/parse-json@4.0.2': {}
@@ -17478,40 +19941,40 @@ snapshots:
'@types/range-parser@1.2.7': {}
- '@types/react-color@3.0.13(@types/react@19.1.12)':
+ '@types/react-color@3.0.13(@types/react@19.2.7)':
dependencies:
- '@types/react': 19.1.12
- '@types/reactcss': 1.2.13(@types/react@19.1.12)
+ '@types/react': 19.2.7
+ '@types/reactcss': 1.2.13(@types/react@19.2.7)
'@types/react-dom@19.1.6(@types/react@19.1.8)':
dependencies:
'@types/react': 19.1.8
- '@types/react-dom@19.1.9(@types/react@19.1.12)':
+ '@types/react-dom@19.2.3(@types/react@19.2.7)':
dependencies:
- '@types/react': 19.1.12
+ '@types/react': 19.2.7
- '@types/react-transition-group@4.4.12(@types/react@19.1.12)':
+ '@types/react-transition-group@4.4.12(@types/react@19.2.7)':
dependencies:
- '@types/react': 19.1.12
+ '@types/react': 19.2.7
- '@types/react@16.14.66':
+ '@types/react@16.14.68':
dependencies:
'@types/prop-types': 15.7.15
'@types/scheduler': 0.16.8
- csstype: 3.1.3
+ csstype: 3.2.3
- '@types/react@19.1.12':
+ '@types/react@19.1.8':
dependencies:
- csstype: 3.1.3
+ csstype: 3.2.3
- '@types/react@19.1.8':
+ '@types/react@19.2.7':
dependencies:
- csstype: 3.1.3
+ csstype: 3.2.3
- '@types/reactcss@1.2.13(@types/react@19.1.12)':
+ '@types/reactcss@1.2.13(@types/react@19.2.7)':
dependencies:
- '@types/react': 19.1.12
+ '@types/react': 19.2.7
'@types/resolve@1.20.6': {}
@@ -17521,20 +19984,24 @@ snapshots:
'@types/semver@7.5.8': {}
- '@types/send@0.17.5':
+ '@types/send@0.17.6':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
+
+ '@types/send@1.2.1':
+ dependencies:
+ '@types/node': 24.10.1
'@types/serve-index@1.9.4':
dependencies:
- '@types/express': 4.17.23
+ '@types/express': 4.17.25
- '@types/serve-static@1.15.8':
+ '@types/serve-static@1.15.10':
dependencies:
'@types/http-errors': 2.0.5
- '@types/node': 24.3.1
- '@types/send': 0.17.5
+ '@types/node': 24.10.1
+ '@types/send': 0.17.6
'@types/sinonjs__fake-timers@8.1.1': {}
@@ -17542,14 +20009,14 @@ snapshots:
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
'@types/source-list-map@0.1.6': {}
'@types/sql.js@1.4.9':
dependencies:
- '@types/emscripten': 1.41.1
- '@types/node': 24.3.1
+ '@types/emscripten': 1.41.5
+ '@types/node': 24.10.1
'@types/stack-utils@1.0.1': {}
@@ -17570,8 +20037,8 @@ snapshots:
'@dimforge/rapier3d-compat': 0.12.0
'@tweenjs/tween.js': 23.1.3
'@types/stats.js': 0.17.4
- '@types/webxr': 0.5.23
- '@webgpu/types': 0.1.64
+ '@types/webxr': 0.5.24
+ '@webgpu/types': 0.1.66
fflate: 0.8.2
meshoptimizer: 0.22.0
@@ -17599,24 +20066,24 @@ snapshots:
'@types/webpack-sources@3.2.3':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
'@types/source-list-map': 0.1.6
source-map: 0.7.6
'@types/webpack@4.41.40':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
'@types/tapable': 1.0.12
'@types/uglify-js': 3.17.5
'@types/webpack-sources': 3.2.3
anymatch: 3.1.3
source-map: 0.6.1
- '@types/webxr@0.5.23': {}
+ '@types/webxr@0.5.24': {}
'@types/ws@8.18.1':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
'@types/yargs-parser@21.0.3': {}
@@ -17624,24 +20091,24 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@types/yargs@17.0.33':
+ '@types/yargs@17.0.35':
dependencies:
'@types/yargs-parser': 21.0.3
'@types/yauzl@2.10.3':
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
optional: true
- '@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/eslint-plugin@8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/scope-manager': 8.42.0
- '@typescript-eslint/type-utils': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.42.0
- eslint: 9.34.0(jiti@2.4.2)
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/type-utils': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.48.0
+ eslint: 9.39.1(jiti@2.4.2)
graphemer: 1.4.0
ignore: 7.0.5
natural-compare: 1.4.0
@@ -17650,161 +20117,250 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)':
+ '@typescript-eslint/eslint-plugin@8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)':
dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)
- '@typescript-eslint/scope-manager': 8.42.0
- '@typescript-eslint/type-utils': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)
- '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)
- '@typescript-eslint/visitor-keys': 8.42.0
- eslint: 9.34.0(jiti@2.4.2)
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/type-utils': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.48.0
+ eslint: 9.39.1(jiti@2.4.2)
graphemer: 1.4.0
ignore: 7.0.5
natural-compare: 1.4.0
- ts-api-utils: 2.1.0(typescript@5.9.2)
- typescript: 5.9.2
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/eslint-plugin@8.49.0(@typescript-eslint/parser@8.49.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 8.49.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.49.0
+ '@typescript-eslint/type-utils': 8.49.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.49.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.49.0
+ eslint: 9.39.1(jiti@2.4.2)
+ ignore: 7.0.5
+ natural-compare: 1.4.0
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.42.0
- '@typescript-eslint/types': 8.42.0
- '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.42.0
- debug: 4.4.1(supports-color@8.1.1)
- eslint: 9.34.0(jiti@2.4.2)
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.48.0
+ debug: 4.4.3(supports-color@8.1.1)
+ eslint: 9.39.1(jiti@2.4.2)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)':
+ '@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.48.0
+ debug: 4.4.3(supports-color@8.1.1)
+ eslint: 9.39.1(jiti@2.4.2)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/parser@8.49.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.42.0
- '@typescript-eslint/types': 8.42.0
- '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2)
- '@typescript-eslint/visitor-keys': 8.42.0
- debug: 4.4.1(supports-color@8.1.1)
- eslint: 9.34.0(jiti@2.4.2)
- typescript: 5.9.2
+ '@typescript-eslint/scope-manager': 8.49.0
+ '@typescript-eslint/types': 8.49.0
+ '@typescript-eslint/typescript-estree': 8.49.0(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.49.0
+ debug: 4.4.3(supports-color@8.1.1)
+ eslint: 9.39.1(jiti@2.4.2)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.42.0(typescript@5.8.3)':
+ '@typescript-eslint/project-service@8.48.0(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.8.3)
- '@typescript-eslint/types': 8.42.0
- debug: 4.4.1(supports-color@8.1.1)
+ '@typescript-eslint/tsconfig-utils': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/types': 8.48.0
+ debug: 4.4.3(supports-color@8.1.1)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.42.0(typescript@5.9.2)':
+ '@typescript-eslint/project-service@8.48.0(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/tsconfig-utils': 8.48.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.48.0
+ debug: 4.4.3(supports-color@8.1.1)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/project-service@8.49.0(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2)
- '@typescript-eslint/types': 8.42.0
- debug: 4.4.1(supports-color@8.1.1)
- typescript: 5.9.2
+ '@typescript-eslint/tsconfig-utils': 8.49.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.49.0
+ debug: 4.4.3(supports-color@8.1.1)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.42.0':
+ '@typescript-eslint/scope-manager@8.48.0':
+ dependencies:
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/visitor-keys': 8.48.0
+
+ '@typescript-eslint/scope-manager@8.49.0':
dependencies:
- '@typescript-eslint/types': 8.42.0
- '@typescript-eslint/visitor-keys': 8.42.0
+ '@typescript-eslint/types': 8.49.0
+ '@typescript-eslint/visitor-keys': 8.49.0
- '@typescript-eslint/tsconfig-utils@8.42.0(typescript@5.8.3)':
+ '@typescript-eslint/tsconfig-utils@8.48.0(typescript@5.8.3)':
dependencies:
typescript: 5.8.3
- '@typescript-eslint/tsconfig-utils@8.42.0(typescript@5.9.2)':
+ '@typescript-eslint/tsconfig-utils@8.48.0(typescript@5.9.3)':
+ dependencies:
+ typescript: 5.9.3
+
+ '@typescript-eslint/tsconfig-utils@8.49.0(typescript@5.9.3)':
dependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
- '@typescript-eslint/type-utils@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/type-utils@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.42.0
- '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.8.3)
- '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
- debug: 4.4.1(supports-color@8.1.1)
- eslint: 9.34.0(jiti@2.4.2)
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
+ debug: 4.4.3(supports-color@8.1.1)
+ eslint: 9.39.1(jiti@2.4.2)
ts-api-utils: 2.1.0(typescript@5.8.3)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)':
+ '@typescript-eslint/type-utils@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ debug: 4.4.3(supports-color@8.1.1)
+ eslint: 9.39.1(jiti@2.4.2)
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/type-utils@8.49.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/types': 8.42.0
- '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2)
- '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)
- debug: 4.4.1(supports-color@8.1.1)
- eslint: 9.34.0(jiti@2.4.2)
- ts-api-utils: 2.1.0(typescript@5.9.2)
- typescript: 5.9.2
+ '@typescript-eslint/types': 8.49.0
+ '@typescript-eslint/typescript-estree': 8.49.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.49.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ debug: 4.4.3(supports-color@8.1.1)
+ eslint: 9.39.1(jiti@2.4.2)
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.42.0': {}
+ '@typescript-eslint/types@8.48.0': {}
+
+ '@typescript-eslint/types@8.49.0': {}
- '@typescript-eslint/typescript-estree@8.42.0(typescript@5.8.3)':
+ '@typescript-eslint/typescript-estree@8.48.0(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/project-service': 8.42.0(typescript@5.8.3)
- '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.8.3)
- '@typescript-eslint/types': 8.42.0
- '@typescript-eslint/visitor-keys': 8.42.0
- debug: 4.4.1(supports-color@8.1.1)
- fast-glob: 3.3.3
- is-glob: 4.0.3
+ '@typescript-eslint/project-service': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/tsconfig-utils': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/visitor-keys': 8.48.0
+ debug: 4.4.3(supports-color@8.1.1)
minimatch: 9.0.5
- semver: 7.7.2
+ semver: 7.7.3
+ tinyglobby: 0.2.15
ts-api-utils: 2.1.0(typescript@5.8.3)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.42.0(typescript@5.9.2)':
+ '@typescript-eslint/typescript-estree@8.48.0(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/project-service': 8.42.0(typescript@5.9.2)
- '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2)
- '@typescript-eslint/types': 8.42.0
- '@typescript-eslint/visitor-keys': 8.42.0
- debug: 4.4.1(supports-color@8.1.1)
- fast-glob: 3.3.3
- is-glob: 4.0.3
+ '@typescript-eslint/project-service': 8.48.0(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.48.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/visitor-keys': 8.48.0
+ debug: 4.4.3(supports-color@8.1.1)
minimatch: 9.0.5
- semver: 7.7.2
- ts-api-utils: 2.1.0(typescript@5.9.2)
- typescript: 5.9.2
+ semver: 7.7.3
+ tinyglobby: 0.2.15
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/typescript-estree@8.49.0(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/project-service': 8.49.0(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.49.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.49.0
+ '@typescript-eslint/visitor-keys': 8.49.0
+ debug: 4.4.3(supports-color@8.1.1)
+ minimatch: 9.0.5
+ semver: 7.7.3
+ tinyglobby: 0.2.15
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/utils@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.2))
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
+ eslint: 9.39.1(jiti@2.4.2)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/utils@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.42.0
- '@typescript-eslint/types': 8.42.0
- '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.8.3)
- eslint: 9.34.0(jiti@2.4.2)
- typescript: 5.8.3
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.2))
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.9.3)
+ eslint: 9.39.1(jiti@2.4.2)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)':
+ '@typescript-eslint/utils@8.49.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.42.0
- '@typescript-eslint/types': 8.42.0
- '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2)
- eslint: 9.34.0(jiti@2.4.2)
- typescript: 5.9.2
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.2))
+ '@typescript-eslint/scope-manager': 8.49.0
+ '@typescript-eslint/types': 8.49.0
+ '@typescript-eslint/typescript-estree': 8.49.0(typescript@5.9.3)
+ eslint: 9.39.1(jiti@2.4.2)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.42.0':
+ '@typescript-eslint/visitor-keys@8.48.0':
+ dependencies:
+ '@typescript-eslint/types': 8.48.0
+ eslint-visitor-keys: 4.2.1
+
+ '@typescript-eslint/visitor-keys@8.49.0':
dependencies:
- '@typescript-eslint/types': 8.42.0
+ '@typescript-eslint/types': 8.49.0
eslint-visitor-keys: 4.2.1
'@ungap/structured-clone@1.3.0': {}
@@ -17868,33 +20424,53 @@ snapshots:
'@unrs/resolver-binding-win32-x64-msvc@1.11.1':
optional: true
- '@vitejs/plugin-react@4.7.0(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))':
+ '@vitejs/plugin-react@4.7.0(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))':
dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5)
'@rolldown/pluginutils': 1.0.0-beta.27
'@types/babel__core': 7.20.5
react-refresh: 0.17.0
- vite: 7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)
+ vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@vitejs/plugin-react@5.1.2(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))':
+ dependencies:
+ '@babel/core': 7.28.5
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5)
+ '@rolldown/pluginutils': 1.0.0-beta.53
+ '@types/babel__core': 7.20.5
+ react-refresh: 0.18.0
+ vite: 7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
'@vitest/expect@3.2.4':
dependencies:
- '@types/chai': 5.2.2
+ '@types/chai': 5.2.3
'@vitest/spy': 3.2.4
'@vitest/utils': 3.2.4
chai: 5.3.3
tinyrainbow: 2.0.0
- '@vitest/mocker@3.2.4(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))':
+ '@vitest/mocker@3.2.4(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))':
+ dependencies:
+ '@vitest/spy': 3.2.4
+ estree-walker: 3.0.3
+ magic-string: 0.30.21
+ optionalDependencies:
+ vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
+
+ '@vitest/mocker@3.2.4(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))':
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
- magic-string: 0.30.18
+ magic-string: 0.30.21
optionalDependencies:
- vite: 7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)
+ vite: 7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
'@vitest/pretty-format@3.2.4':
dependencies:
@@ -17904,17 +20480,17 @@ snapshots:
dependencies:
'@vitest/utils': 3.2.4
pathe: 2.0.3
- strip-literal: 3.0.0
+ strip-literal: 3.1.0
'@vitest/snapshot@3.2.4':
dependencies:
'@vitest/pretty-format': 3.2.4
- magic-string: 0.30.18
+ magic-string: 0.30.21
pathe: 2.0.3
'@vitest/spy@3.2.4':
dependencies:
- tinyspy: 4.0.3
+ tinyspy: 4.0.4
'@vitest/ui@3.2.4(vitest@3.2.4)':
dependencies:
@@ -17923,9 +20499,9 @@ snapshots:
flatted: 3.3.3
pathe: 2.0.3
sirv: 3.0.2
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
tinyrainbow: 2.0.0
- vitest: 3.2.4(@types/node@24.3.1)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.44.0)(yaml@2.8.1)
+ vitest: 3.2.4(@types/node@24.10.1)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.44.1)(yaml@2.8.1)
'@vitest/utils@3.2.4':
dependencies:
@@ -17933,30 +20509,30 @@ snapshots:
loupe: 3.2.1
tinyrainbow: 2.0.0
- '@volar/language-core@2.4.23':
+ '@volar/language-core@2.4.26':
dependencies:
- '@volar/source-map': 2.4.23
+ '@volar/source-map': 2.4.26
- '@volar/source-map@2.4.23': {}
+ '@volar/source-map@2.4.26': {}
- '@volar/typescript@2.4.23':
+ '@volar/typescript@2.4.26':
dependencies:
- '@volar/language-core': 2.4.23
+ '@volar/language-core': 2.4.26
path-browserify: 1.0.1
vscode-uri: 3.1.0
- '@vue/compiler-core@3.5.21':
+ '@vue/compiler-core@3.5.25':
dependencies:
- '@babel/parser': 7.28.3
- '@vue/shared': 3.5.21
+ '@babel/parser': 7.28.5
+ '@vue/shared': 3.5.25
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-dom@3.5.21':
+ '@vue/compiler-dom@3.5.25':
dependencies:
- '@vue/compiler-core': 3.5.21
- '@vue/shared': 3.5.21
+ '@vue/compiler-core': 3.5.25
+ '@vue/shared': 3.5.25
'@vue/compiler-vue2@2.7.16':
dependencies:
@@ -17965,10 +20541,10 @@ snapshots:
'@vue/language-core@2.2.0(typescript@5.8.3)':
dependencies:
- '@volar/language-core': 2.4.23
- '@vue/compiler-dom': 3.5.21
+ '@volar/language-core': 2.4.26
+ '@vue/compiler-dom': 3.5.25
'@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.21
+ '@vue/shared': 3.5.25
alien-signals: 0.4.14
minimatch: 9.0.5
muggle-string: 0.4.1
@@ -17976,7 +20552,7 @@ snapshots:
optionalDependencies:
typescript: 5.8.3
- '@vue/shared@3.5.21': {}
+ '@vue/shared@3.5.25': {}
'@webassemblyjs/ast@1.14.1':
dependencies:
@@ -18054,7 +20630,7 @@ snapshots:
'@webassemblyjs/ast': 1.14.1
'@xtuc/long': 4.2.2
- '@webgpu/types@0.1.64': {}
+ '@webgpu/types@0.1.66': {}
'@xhmikosr/archive-type@7.1.0':
dependencies:
@@ -18074,6 +20650,8 @@ snapshots:
'@xhmikosr/os-filter-obj': 3.0.0
bin-version-check: 5.1.0
transitivePeerDependencies:
+ - bare-abort-controller
+ - react-native-b4a
- supports-color
'@xhmikosr/decompress-tar@8.1.0':
@@ -18082,6 +20660,8 @@ snapshots:
is-stream: 2.0.1
tar-stream: 3.1.7
transitivePeerDependencies:
+ - bare-abort-controller
+ - react-native-b4a
- supports-color
'@xhmikosr/decompress-tarbz2@8.1.0':
@@ -18092,6 +20672,8 @@ snapshots:
seek-bzip: 2.0.0
unbzip2-stream: 1.4.3
transitivePeerDependencies:
+ - bare-abort-controller
+ - react-native-b4a
- supports-color
'@xhmikosr/decompress-targz@8.1.0':
@@ -18100,6 +20682,8 @@ snapshots:
file-type: 20.5.0
is-stream: 2.0.1
transitivePeerDependencies:
+ - bare-abort-controller
+ - react-native-b4a
- supports-color
'@xhmikosr/decompress-unzip@7.1.0':
@@ -18119,6 +20703,8 @@ snapshots:
graceful-fs: 4.2.11
strip-dirs: 3.0.0
transitivePeerDependencies:
+ - bare-abort-controller
+ - react-native-b4a
- supports-color
'@xhmikosr/downloader@15.2.0':
@@ -18133,6 +20719,8 @@ snapshots:
get-stream: 6.0.1
got: 13.0.0
transitivePeerDependencies:
+ - bare-abort-controller
+ - react-native-b4a
- supports-color
'@xhmikosr/os-filter-obj@3.0.0':
@@ -18149,18 +20737,22 @@ snapshots:
'@yarnpkg/parsers@3.0.0-rc.46':
dependencies:
- js-yaml: 3.14.1
+ js-yaml: 3.14.2
tslib: 2.8.1
'@yarnpkg/parsers@3.0.2':
dependencies:
- js-yaml: 3.14.1
+ js-yaml: 3.14.2
tslib: 2.8.1
'@zkochan/js-yaml@0.0.7':
dependencies:
argparse: 2.0.1
+ a5-js@0.5.0:
+ dependencies:
+ gl-matrix: 3.4.4
+
abab@2.0.6: {}
accepts@1.3.8:
@@ -18261,7 +20853,7 @@ snapshots:
dependencies:
type-fest: 0.21.3
- ansi-escapes@7.0.0:
+ ansi-escapes@7.2.0:
dependencies:
environment: 1.1.0
@@ -18271,7 +20863,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.2.0: {}
+ ansi-regex@6.2.2: {}
ansi-styles@3.2.1:
dependencies:
@@ -18283,7 +20875,7 @@ snapshots:
ansi-styles@5.2.0: {}
- ansi-styles@6.2.1: {}
+ ansi-styles@6.2.3: {}
anymatch@2.0.0:
dependencies:
@@ -18466,66 +21058,66 @@ snapshots:
aws4@1.13.2: {}
- axe-core@4.10.3: {}
+ axe-core@4.11.0: {}
- axios@1.11.0:
+ axios@1.13.2:
dependencies:
- follow-redirects: 1.15.11(debug@4.4.1)
- form-data: 4.0.4
+ follow-redirects: 1.15.11(debug@4.4.3)
+ form-data: 4.0.5
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
axobject-query@4.1.0: {}
- b4a@1.6.7: {}
+ b4a@1.7.3: {}
- babel-jest@30.0.5(@babel/core@7.28.3):
+ babel-jest@30.0.5(@babel/core@7.28.5):
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@jest/transform': 30.0.5
'@types/babel__core': 7.20.5
- babel-plugin-istanbul: 7.0.0
- babel-preset-jest: 30.0.1(@babel/core@7.28.3)
+ babel-plugin-istanbul: 7.0.1
+ babel-preset-jest: 30.0.1(@babel/core@7.28.5)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- babel-jest@30.1.2(@babel/core@7.28.3):
+ babel-jest@30.2.0(@babel/core@7.28.5):
dependencies:
- '@babel/core': 7.28.3
- '@jest/transform': 30.1.2
+ '@babel/core': 7.28.5
+ '@jest/transform': 30.2.0
'@types/babel__core': 7.20.5
- babel-plugin-istanbul: 7.0.0
- babel-preset-jest: 30.0.1(@babel/core@7.28.3)
+ babel-plugin-istanbul: 7.0.1
+ babel-preset-jest: 30.2.0(@babel/core@7.28.5)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- babel-loader@10.0.0(@babel/core@7.28.3)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)):
+ babel-loader@10.0.0(@babel/core@7.28.5)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)):
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
find-up: 5.0.0
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
- babel-plugin-const-enum@1.2.0(@babel/core@7.28.3):
+ babel-plugin-const-enum@1.2.0(@babel/core@7.28.5):
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.3)
- '@babel/traverse': 7.28.3
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5)
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- babel-plugin-inline-react-svg@2.0.2(@babel/core@7.28.3):
+ babel-plugin-inline-react-svg@2.0.2(@babel/core@7.28.5):
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/parser': 7.28.3
+ '@babel/parser': 7.28.5
lodash.isplainobject: 4.0.6
resolve: 2.0.0-next.5
svgo: 2.8.0
@@ -18539,7 +21131,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-istanbul@7.0.0:
+ babel-plugin-istanbul@7.0.1:
dependencies:
'@babel/helper-plugin-utils': 7.27.1
'@istanbuljs/load-nyc-config': 1.1.0
@@ -18552,108 +21144,118 @@ snapshots:
babel-plugin-jest-hoist@30.0.1:
dependencies:
'@babel/template': 7.27.2
- '@babel/types': 7.28.2
+ '@babel/types': 7.28.5
+ '@types/babel__core': 7.20.5
+
+ babel-plugin-jest-hoist@30.2.0:
+ dependencies:
'@types/babel__core': 7.20.5
babel-plugin-macros@2.8.0:
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
cosmiconfig: 6.0.0
- resolve: 1.22.10
+ resolve: 1.22.11
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
cosmiconfig: 7.1.0
- resolve: 1.22.10
+ resolve: 1.22.11
- babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.3):
+ babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.5):
dependencies:
- '@babel/compat-data': 7.28.0
- '@babel/core': 7.28.3
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.3)
+ '@babel/compat-data': 7.28.5
+ '@babel/core': 7.28.5
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.3):
+ babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.5):
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.3)
- core-js-compat: 3.45.1
+ '@babel/core': 7.28.5
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5)
+ core-js-compat: 3.47.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.3):
+ babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.5):
dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5)
transitivePeerDependencies:
- supports-color
- babel-plugin-styled-components@2.1.4(@babel/core@7.28.3)(styled-components@6.1.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)):
+ babel-plugin-styled-components@2.1.4(@babel/core@7.28.5)(styled-components@6.1.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)):
dependencies:
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-module-imports': 7.27.1
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.3)
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5)
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 6.1.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ styled-components: 6.1.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
transitivePeerDependencies:
- '@babel/core'
- supports-color
babel-plugin-transform-react-remove-prop-types@0.4.24: {}
- babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.28.3)(@babel/traverse@7.28.3):
+ babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.28.5)(@babel/traverse@7.28.5):
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
optionalDependencies:
- '@babel/traverse': 7.28.3
-
- babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.3):
- dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.3)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.3)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.3)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.3)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.3)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.3)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.3)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.3)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.3)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.3)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.3)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.3)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.3)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.3)
-
- babel-preset-jest@30.0.1(@babel/core@7.28.3):
- dependencies:
- '@babel/core': 7.28.3
+ '@babel/traverse': 7.28.5
+
+ babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.5):
+ dependencies:
+ '@babel/core': 7.28.5
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.5)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.5)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.5)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.5)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.5)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.5)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.5)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.5)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.5)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.5)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.5)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.5)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.5)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.5)
+
+ babel-preset-jest@30.0.1(@babel/core@7.28.5):
+ dependencies:
+ '@babel/core': 7.28.5
babel-plugin-jest-hoist: 30.0.1
- babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.3)
+ babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5)
+
+ babel-preset-jest@30.2.0(@babel/core@7.28.5):
+ dependencies:
+ '@babel/core': 7.28.5
+ babel-plugin-jest-hoist: 30.2.0
+ babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5)
babel-preset-react-app@10.1.0:
dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.28.3)
- '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.28.3)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.28.3)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.28.3)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.28.3)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.28.3)
- '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.3)
- '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.3)
- '@babel/preset-env': 7.28.3(@babel/core@7.28.3)
- '@babel/preset-react': 7.27.1(@babel/core@7.28.3)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.28.3)
- '@babel/runtime': 7.28.3
+ '@babel/core': 7.28.5
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.28.5)
+ '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.5)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.28.5)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.28.5)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.28.5)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.28.5)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.28.5)
+ '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.5)
+ '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-env': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-react': 7.28.5(@babel/core@7.28.5)
+ '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5)
+ '@babel/runtime': 7.28.4
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
transitivePeerDependencies:
@@ -18661,8 +21263,7 @@ snapshots:
balanced-match@1.0.2: {}
- bare-events@2.6.1:
- optional: true
+ bare-events@2.8.2: {}
base64-arraybuffer@1.0.2:
optional: true
@@ -18679,6 +21280,8 @@ snapshots:
mixin-deep: 1.3.2
pascalcase: 0.1.1
+ baseline-browser-mapping@2.8.31: {}
+
basic-auth@2.0.1:
dependencies:
safe-buffer: 5.1.2
@@ -18700,7 +21303,7 @@ snapshots:
bin-version-check@5.1.0:
dependencies:
bin-version: 6.0.0
- semver: 7.7.2
+ semver: 7.7.3
semver-truncate: 3.0.0
bin-version@6.0.0:
@@ -18777,16 +21380,22 @@ snapshots:
dependencies:
fill-range: 7.1.1
+ brotli@1.3.3:
+ dependencies:
+ base64-js: 1.5.1
+ optional: true
+
browser-process-hrtime@1.0.0: {}
browser-stdout@1.3.1: {}
- browserslist@4.25.4:
+ browserslist@4.28.0:
dependencies:
- caniuse-lite: 1.0.30001741
- electron-to-chromium: 1.5.214
- node-releases: 2.0.19
- update-browserslist-db: 1.1.3(browserslist@4.25.4)
+ baseline-browser-mapping: 2.8.31
+ caniuse-lite: 1.0.30001757
+ electron-to-chromium: 1.5.260
+ node-releases: 2.0.27
+ update-browserslist-db: 1.1.4(browserslist@4.28.0)
bs-logger@0.2.6:
dependencies:
@@ -18798,6 +21407,8 @@ snapshots:
btoa@1.2.1: {}
+ buf-compare@1.0.1: {}
+
buffer-crc32@0.2.13: {}
buffer-from@1.1.2: {}
@@ -18809,7 +21420,7 @@ snapshots:
bundle-name@4.1.0:
dependencies:
- run-applescript: 7.0.0
+ run-applescript: 7.1.0
bytes@3.1.2: {}
@@ -18841,7 +21452,7 @@ snapshots:
http-cache-semantics: 4.2.0
keyv: 4.5.4
mimic-response: 4.0.0
- normalize-url: 8.0.2
+ normalize-url: 8.1.0
responselike: 3.0.0
cachedir@2.4.0: {}
@@ -18884,13 +21495,13 @@ snapshots:
camelize@1.0.1: {}
- caniuse-lite@1.0.30001741: {}
+ caniuse-lite@1.0.30001757: {}
canvg@3.0.11:
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
'@types/raf': 3.4.3
- core-js: 3.45.1
+ core-js: 3.47.0
raf: 3.4.1
regenerator-runtime: 0.13.11
rgbcolor: 1.0.1
@@ -18912,11 +21523,11 @@ snapshots:
loupe: 3.2.1
pathval: 2.0.1
- chai@6.0.1: {}
+ chai@6.2.1: {}
- chalk-template@1.1.0:
+ chalk-template@1.1.2:
dependencies:
- chalk: 5.6.0
+ chalk: 5.6.2
chalk@2.4.2:
dependencies:
@@ -18934,10 +21545,12 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.6.0: {}
+ chalk@5.6.2: {}
char-regex@1.0.2: {}
+ charenc@0.0.2: {}
+
cheap-ruler@4.0.0: {}
check-error@2.1.1: {}
@@ -18964,7 +21577,7 @@ snapshots:
parse5: 7.3.0
parse5-htmlparser2-tree-adapter: 7.1.0
parse5-parser-stream: 7.1.2
- undici: 7.15.0
+ undici: 7.16.0
whatwg-mimetype: 4.0.0
chokidar@3.6.0:
@@ -18987,11 +21600,11 @@ snapshots:
ci-info@2.0.0: {}
- ci-info@4.3.0: {}
+ ci-info@4.3.1: {}
circular-json-es6@2.0.2: {}
- cjs-module-lexer@2.1.0: {}
+ cjs-module-lexer@2.1.1: {}
class-utils@0.3.6:
dependencies:
@@ -19051,7 +21664,7 @@ snapshots:
co@4.6.0: {}
- collect-v8-coverage@1.0.2: {}
+ collect-v8-coverage@1.0.3: {}
collection-visit@1.0.0:
dependencies:
@@ -19168,11 +21781,16 @@ snapshots:
copy-descriptor@0.1.1: {}
- core-js-compat@3.45.1:
+ core-assert@0.2.1:
dependencies:
- browserslist: 4.25.4
+ buf-compare: 1.0.1
+ is-error: 2.2.2
- core-js@3.45.1: {}
+ core-js-compat@3.47.0:
+ dependencies:
+ browserslist: 4.28.0
+
+ core-js@3.47.0: {}
core-util-is@1.0.2: {}
@@ -19199,7 +21817,7 @@ snapshots:
cosmiconfig@8.3.6(typescript@5.8.3):
dependencies:
import-fresh: 3.3.1
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
@@ -19209,7 +21827,7 @@ snapshots:
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.1
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
parse-json: 5.2.0
optionalDependencies:
typescript: 5.8.3
@@ -19218,7 +21836,7 @@ snapshots:
cron-parser@4.9.0:
dependencies:
- luxon: 3.7.1
+ luxon: 3.7.2
cross-spawn@6.0.6:
dependencies:
@@ -19234,6 +21852,8 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
+ crypt@0.0.2: {}
+
css-color-keywords@1.0.0: {}
css-line-break@2.1.0:
@@ -19316,6 +21936,8 @@ snapshots:
csstype@3.1.3: {}
+ csstype@3.2.3: {}
+
csv2geojson@5.1.2:
dependencies:
'@mapbox/sexagesimal': 1.2.0
@@ -19336,13 +21958,13 @@ snapshots:
cachedir: 2.4.0
chalk: 4.1.2
check-more-types: 2.24.0
- ci-info: 4.3.0
+ ci-info: 4.3.1
cli-cursor: 3.1.0
cli-table3: 0.6.1
commander: 6.2.1
common-tags: 1.8.2
- dayjs: 1.11.18
- debug: 4.4.1(supports-color@8.1.1)
+ dayjs: 1.11.19
+ debug: 4.4.3(supports-color@8.1.1)
enquirer: 2.4.1
eventemitter2: 6.4.7
execa: 4.1.0
@@ -19363,7 +21985,7 @@ snapshots:
process: 0.11.10
proxy-from-env: 1.0.0
request-progress: 3.0.0
- semver: 7.7.2
+ semver: 7.7.3
supports-color: 8.1.1
tmp: 0.2.5
tree-kill: 1.2.2
@@ -19577,7 +22199,7 @@ snapshots:
date-format@4.0.14: {}
- dayjs@1.11.18: {}
+ dayjs@1.11.19: {}
de-indent@1.0.2: {}
@@ -19593,7 +22215,7 @@ snapshots:
optionalDependencies:
supports-color: 8.1.1
- debug@4.4.1(supports-color@8.1.1):
+ debug@4.4.3(supports-color@8.1.1):
dependencies:
ms: 2.1.3
optionalDependencies:
@@ -19630,14 +22252,18 @@ snapshots:
deep-is@0.1.4: {}
+ deep-strict-equal@0.2.0:
+ dependencies:
+ core-assert: 0.2.1
+
deepmerge@4.3.1: {}
- default-browser-id@5.0.0: {}
+ default-browser-id@5.0.1: {}
- default-browser@5.2.1:
+ default-browser@5.4.0:
dependencies:
bundle-name: 4.1.0
- default-browser-id: 5.0.0
+ default-browser-id: 5.0.1
defaults@1.0.4:
dependencies:
@@ -19708,7 +22334,7 @@ snapshots:
detect-port@1.6.1:
dependencies:
address: 1.2.2
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -19720,6 +22346,8 @@ snapshots:
diff@7.0.0: {}
+ diff@8.0.2: {}
+
dir-glob@3.0.1:
dependencies:
path-type: 4.0.0
@@ -19748,8 +22376,8 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.28.3
- csstype: 3.1.3
+ '@babel/runtime': 7.28.4
+ csstype: 3.2.3
dom-serializer@1.4.1:
dependencies:
@@ -19777,7 +22405,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
- dompurify@3.2.6:
+ dompurify@3.3.0:
optionalDependencies:
'@types/trusted-types': 2.0.7
@@ -19804,6 +22432,8 @@ snapshots:
dotenv@16.4.7: {}
+ draco3d@1.5.7: {}
+
dunder-proto@1.0.1:
dependencies:
call-bind-apply-helpers: 1.0.2
@@ -19825,7 +22455,7 @@ snapshots:
ee-first@1.1.1: {}
- effect@3.17.13:
+ effect@3.19.6:
dependencies:
'@standard-schema/spec': 1.0.0
fast-check: 3.23.2
@@ -19836,11 +22466,11 @@ snapshots:
elasticlunr@0.9.5: {}
- electron-to-chromium@1.5.214: {}
+ electron-to-chromium@1.5.260: {}
emittery@0.13.1: {}
- emoji-regex@10.5.0: {}
+ emoji-regex@10.6.0: {}
emoji-regex@8.0.0: {}
@@ -19868,7 +22498,7 @@ snapshots:
enhanced-resolve@5.18.3:
dependencies:
graceful-fs: 4.2.11
- tapable: 2.2.3
+ tapable: 2.3.0
enquirer@2.3.6:
dependencies:
@@ -19932,7 +22562,7 @@ snapshots:
rst-selector-parser: 2.2.3
string.prototype.trim: 1.2.10
- error-ex@1.3.2:
+ error-ex@1.3.4:
dependencies:
is-arrayish: 0.2.1
@@ -20041,10 +22671,10 @@ snapshots:
is-date-object: 1.1.0
is-symbol: 1.1.1
- esbuild-register@3.6.0(esbuild@0.25.9):
+ esbuild-register@3.6.0(esbuild@0.25.12):
dependencies:
- debug: 4.4.1(supports-color@8.1.1)
- esbuild: 0.25.9
+ debug: 4.4.3(supports-color@8.1.1)
+ esbuild: 0.25.12
transitivePeerDependencies:
- supports-color
@@ -20073,62 +22703,34 @@ snapshots:
'@esbuild/win32-ia32': 0.17.19
'@esbuild/win32-x64': 0.17.19
- esbuild@0.25.5:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.5
- '@esbuild/android-arm': 0.25.5
- '@esbuild/android-arm64': 0.25.5
- '@esbuild/android-x64': 0.25.5
- '@esbuild/darwin-arm64': 0.25.5
- '@esbuild/darwin-x64': 0.25.5
- '@esbuild/freebsd-arm64': 0.25.5
- '@esbuild/freebsd-x64': 0.25.5
- '@esbuild/linux-arm': 0.25.5
- '@esbuild/linux-arm64': 0.25.5
- '@esbuild/linux-ia32': 0.25.5
- '@esbuild/linux-loong64': 0.25.5
- '@esbuild/linux-mips64el': 0.25.5
- '@esbuild/linux-ppc64': 0.25.5
- '@esbuild/linux-riscv64': 0.25.5
- '@esbuild/linux-s390x': 0.25.5
- '@esbuild/linux-x64': 0.25.5
- '@esbuild/netbsd-arm64': 0.25.5
- '@esbuild/netbsd-x64': 0.25.5
- '@esbuild/openbsd-arm64': 0.25.5
- '@esbuild/openbsd-x64': 0.25.5
- '@esbuild/sunos-x64': 0.25.5
- '@esbuild/win32-arm64': 0.25.5
- '@esbuild/win32-ia32': 0.25.5
- '@esbuild/win32-x64': 0.25.5
-
- esbuild@0.25.9:
+ esbuild@0.25.12:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.9
- '@esbuild/android-arm': 0.25.9
- '@esbuild/android-arm64': 0.25.9
- '@esbuild/android-x64': 0.25.9
- '@esbuild/darwin-arm64': 0.25.9
- '@esbuild/darwin-x64': 0.25.9
- '@esbuild/freebsd-arm64': 0.25.9
- '@esbuild/freebsd-x64': 0.25.9
- '@esbuild/linux-arm': 0.25.9
- '@esbuild/linux-arm64': 0.25.9
- '@esbuild/linux-ia32': 0.25.9
- '@esbuild/linux-loong64': 0.25.9
- '@esbuild/linux-mips64el': 0.25.9
- '@esbuild/linux-ppc64': 0.25.9
- '@esbuild/linux-riscv64': 0.25.9
- '@esbuild/linux-s390x': 0.25.9
- '@esbuild/linux-x64': 0.25.9
- '@esbuild/netbsd-arm64': 0.25.9
- '@esbuild/netbsd-x64': 0.25.9
- '@esbuild/openbsd-arm64': 0.25.9
- '@esbuild/openbsd-x64': 0.25.9
- '@esbuild/openharmony-arm64': 0.25.9
- '@esbuild/sunos-x64': 0.25.9
- '@esbuild/win32-arm64': 0.25.9
- '@esbuild/win32-ia32': 0.25.9
- '@esbuild/win32-x64': 0.25.9
+ '@esbuild/aix-ppc64': 0.25.12
+ '@esbuild/android-arm': 0.25.12
+ '@esbuild/android-arm64': 0.25.12
+ '@esbuild/android-x64': 0.25.12
+ '@esbuild/darwin-arm64': 0.25.12
+ '@esbuild/darwin-x64': 0.25.12
+ '@esbuild/freebsd-arm64': 0.25.12
+ '@esbuild/freebsd-x64': 0.25.12
+ '@esbuild/linux-arm': 0.25.12
+ '@esbuild/linux-arm64': 0.25.12
+ '@esbuild/linux-ia32': 0.25.12
+ '@esbuild/linux-loong64': 0.25.12
+ '@esbuild/linux-mips64el': 0.25.12
+ '@esbuild/linux-ppc64': 0.25.12
+ '@esbuild/linux-riscv64': 0.25.12
+ '@esbuild/linux-s390x': 0.25.12
+ '@esbuild/linux-x64': 0.25.12
+ '@esbuild/netbsd-arm64': 0.25.12
+ '@esbuild/netbsd-x64': 0.25.12
+ '@esbuild/openbsd-arm64': 0.25.12
+ '@esbuild/openbsd-x64': 0.25.12
+ '@esbuild/openharmony-arm64': 0.25.12
+ '@esbuild/sunos-x64': 0.25.12
+ '@esbuild/win32-arm64': 0.25.12
+ '@esbuild/win32-ia32': 0.25.12
+ '@esbuild/win32-x64': 0.25.12
escalade@3.2.0: {}
@@ -20149,34 +22751,34 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-prettier@10.1.8(eslint@9.34.0(jiti@2.4.2)):
+ eslint-config-prettier@10.1.8(eslint@9.39.1(jiti@2.4.2)):
dependencies:
- eslint: 9.34.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.4.2)
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7(supports-color@8.1.1)
is-core-module: 2.16.1
- resolve: 1.22.10
+ resolve: 1.22.11
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.34.0(jiti@2.4.2)):
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.1(jiti@2.4.2)):
dependencies:
debug: 3.2.7(supports-color@8.1.1)
optionalDependencies:
- '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
- eslint: 9.34.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
+ eslint: 9.39.1(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-plugin-cypress@5.1.1(eslint@9.34.0(jiti@2.4.2)):
+ eslint-plugin-cypress@5.2.0(eslint@9.39.1(jiti@2.4.2)):
dependencies:
- eslint: 9.34.0(jiti@2.4.2)
- globals: 16.3.0
+ eslint: 9.39.1(jiti@2.4.2)
+ globals: 16.5.0
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.34.0(jiti@2.4.2)):
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.39.1(jiti@2.4.2)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -20185,9 +22787,9 @@ snapshots:
array.prototype.flatmap: 1.3.3
debug: 3.2.7(supports-color@8.1.1)
doctrine: 2.1.0
- eslint: 9.34.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.34.0(jiti@2.4.2))
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.1(jiti@2.4.2))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -20199,23 +22801,23 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jsx-a11y@6.10.2(eslint@9.34.0(jiti@2.4.2)):
+ eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.1(jiti@2.4.2)):
dependencies:
aria-query: 5.3.2
array-includes: 3.1.9
array.prototype.flatmap: 1.3.3
ast-types-flow: 0.0.8
- axe-core: 4.10.3
+ axe-core: 4.11.0
axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 9.34.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.4.2)
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
@@ -20224,11 +22826,26 @@ snapshots:
safe-regex-test: 1.1.0
string.prototype.includes: 2.0.1
- eslint-plugin-react-hooks@5.2.0(eslint@9.34.0(jiti@2.4.2)):
+ eslint-plugin-react-hooks@5.2.0(eslint@9.39.1(jiti@2.4.2)):
+ dependencies:
+ eslint: 9.39.1(jiti@2.4.2)
+
+ eslint-plugin-react-hooks@7.0.1(eslint@9.39.1(jiti@2.4.2)):
+ dependencies:
+ '@babel/core': 7.28.5
+ '@babel/parser': 7.28.5
+ eslint: 9.39.1(jiti@2.4.2)
+ hermes-parser: 0.25.1
+ zod: 4.1.13
+ zod-validation-error: 4.0.2(zod@4.1.13)
+ transitivePeerDependencies:
+ - supports-color
+
+ eslint-plugin-react-refresh@0.4.24(eslint@9.39.1(jiti@2.4.2)):
dependencies:
- eslint: 9.34.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.4.2)
- eslint-plugin-react@7.37.5(eslint@9.34.0(jiti@2.4.2)):
+ eslint-plugin-react@7.37.5(eslint@9.39.1(jiti@2.4.2)):
dependencies:
array-includes: 3.1.9
array.prototype.findlast: 1.2.5
@@ -20236,7 +22853,7 @@ snapshots:
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.2.1
- eslint: 9.34.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.4.2)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -20250,20 +22867,20 @@ snapshots:
string.prototype.matchall: 4.0.12
string.prototype.repeat: 1.0.0
- eslint-plugin-storybook@9.1.1(eslint@9.34.0(jiti@2.4.2))(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.8.3):
+ eslint-plugin-storybook@9.1.1(eslint@9.39.1(jiti@2.4.2))(storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.8.3):
dependencies:
- '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
- eslint: 9.34.0(jiti@2.4.2)
- storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ '@typescript-eslint/utils': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
+ eslint: 9.39.1(jiti@2.4.2)
+ storybook: 9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-storybook@9.1.4(eslint@9.34.0(jiti@2.4.2))(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)))(typescript@5.9.2):
+ eslint-plugin-storybook@9.1.16(eslint@9.39.1(jiti@2.4.2))(storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)))(typescript@5.9.3):
dependencies:
- '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)
- eslint: 9.34.0(jiti@2.4.2)
- storybook: 9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ '@typescript-eslint/utils': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)
+ eslint: 9.39.1(jiti@2.4.2)
+ storybook: 9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
transitivePeerDependencies:
- supports-color
- typescript
@@ -20282,25 +22899,24 @@ snapshots:
eslint-visitor-keys@4.2.1: {}
- eslint@9.34.0(jiti@2.4.2):
+ eslint@9.39.1(jiti@2.4.2):
dependencies:
- '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.2))
- '@eslint-community/regexpp': 4.12.1
- '@eslint/config-array': 0.21.0
- '@eslint/config-helpers': 0.3.1
- '@eslint/core': 0.15.2
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.2))
+ '@eslint-community/regexpp': 4.12.2
+ '@eslint/config-array': 0.21.1
+ '@eslint/config-helpers': 0.4.2
+ '@eslint/core': 0.17.0
'@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.34.0
- '@eslint/plugin-kit': 0.3.5
+ '@eslint/js': 9.39.1
+ '@eslint/plugin-kit': 0.4.1
'@humanfs/node': 0.16.7
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.3
'@types/estree': 1.0.8
- '@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
escape-string-regexp: 4.0.0
eslint-scope: 8.4.0
eslint-visitor-keys: 4.2.1
@@ -20366,6 +22982,12 @@ snapshots:
eventemitter3@5.0.1: {}
+ events-universal@1.0.1:
+ dependencies:
+ bare-events: 2.8.2
+ transitivePeerDependencies:
+ - bare-abort-controller
+
events@3.3.0: {}
exec-sh@0.3.6: {}
@@ -20437,14 +23059,14 @@ snapshots:
jest-mock: 30.0.5
jest-util: 30.0.5
- expect@30.1.2:
+ expect@30.2.0:
dependencies:
- '@jest/expect-utils': 30.1.2
+ '@jest/expect-utils': 30.2.0
'@jest/get-type': 30.1.0
- jest-matcher-utils: 30.1.2
- jest-message-util: 30.1.0
- jest-mock: 30.0.5
- jest-util: 30.0.5
+ jest-matcher-utils: 30.2.0
+ jest-message-util: 30.2.0
+ jest-mock: 30.2.0
+ jest-util: 30.2.0
express@4.21.2:
dependencies:
@@ -20482,7 +23104,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- exsolve@1.0.7: {}
+ exsolve@1.0.8: {}
ext-list@2.2.2:
dependencies:
@@ -20519,7 +23141,7 @@ snapshots:
extract-zip@2.0.1(supports-color@8.1.1):
dependencies:
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -20569,6 +23191,10 @@ snapshots:
fast-uri@3.1.0: {}
+ fast-xml-parser@4.5.3:
+ dependencies:
+ strnum: 1.1.2
+
fastq@1.19.1:
dependencies:
reusify: 1.1.0
@@ -20585,10 +23211,6 @@ snapshots:
dependencies:
pend: 1.2.0
- fdir@6.5.0(picomatch@4.0.2):
- optionalDependencies:
- picomatch: 4.0.2
-
fdir@6.5.0(picomatch@4.0.3):
optionalDependencies:
picomatch: 4.0.3
@@ -20598,6 +23220,10 @@ snapshots:
node-domexception: 1.0.0
web-streams-polyfill: 3.3.3
+ fflate@0.6.10: {}
+
+ fflate@0.7.4: {}
+
fflate@0.8.2: {}
figures@3.2.0:
@@ -20608,11 +23234,11 @@ snapshots:
dependencies:
flat-cache: 4.0.1
- file-loader@6.2.0(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)):
+ file-loader@6.2.0(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
file-selector@2.1.2:
dependencies:
@@ -20720,9 +23346,9 @@ snapshots:
flatted@3.3.3: {}
- follow-redirects@1.15.11(debug@4.4.1):
+ follow-redirects@1.15.11(debug@4.4.3):
optionalDependencies:
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
for-each@0.3.5:
dependencies:
@@ -20737,7 +23363,7 @@ snapshots:
forever-agent@0.6.1: {}
- fork-ts-checker-webpack-plugin@6.5.3(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)):
+ fork-ts-checker-webpack-plugin@6.5.3(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)):
dependencies:
'@babel/code-frame': 7.27.1
'@types/json-schema': 7.0.15
@@ -20750,12 +23376,12 @@ snapshots:
memfs: 3.5.3
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.7.2
+ semver: 7.7.3
tapable: 1.1.3
- typescript: 5.9.2
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ typescript: 5.9.3
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
optionalDependencies:
- eslint: 9.34.0(jiti@2.4.2)
+ eslint: 9.39.1(jiti@2.4.2)
form-data-encoder@2.1.4: {}
@@ -20765,7 +23391,7 @@ snapshots:
combined-stream: 1.0.8
mime-types: 2.1.35
- form-data@4.0.4:
+ form-data@4.0.5:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
@@ -20789,7 +23415,7 @@ snapshots:
front-matter@4.0.2:
dependencies:
- js-yaml: 3.14.1
+ js-yaml: 3.14.2
fs-constants@1.0.0: {}
@@ -20799,7 +23425,7 @@ snapshots:
jsonfile: 6.2.0
universalify: 2.0.1
- fs-extra@11.3.1:
+ fs-extra@11.3.2:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.2.0
@@ -20825,7 +23451,7 @@ snapshots:
fsevents@1.2.13:
dependencies:
bindings: 1.5.0
- nan: 2.23.0
+ nan: 2.23.1
optional: true
fsevents@2.3.3:
@@ -20844,6 +23470,8 @@ snapshots:
functions-have-names@1.2.3: {}
+ generator-function@2.0.1: {}
+
gensync@1.0.0-beta.2: {}
geojson-equality-ts@1.0.2:
@@ -20858,6 +23486,19 @@ snapshots:
geojson-vt@4.0.2: {}
+ geojson@0.5.0: {}
+
+ geotiff@2.1.3:
+ dependencies:
+ '@petamoriken/float16': 3.9.3
+ lerc: 3.0.0
+ pako: 2.1.0
+ parse-headers: 2.0.6
+ quick-lru: 6.1.2
+ web-worker: 1.5.0
+ xml-utils: 1.10.2
+ zstddec: 0.1.0
+
gesto@1.19.4:
dependencies:
'@daybrush/utils': 1.13.0
@@ -20865,7 +23506,7 @@ snapshots:
get-caller-file@2.0.5: {}
- get-east-asian-width@1.3.1: {}
+ get-east-asian-width@1.4.0: {}
get-intrinsic@1.3.0:
dependencies:
@@ -20923,13 +23564,13 @@ snapshots:
dependencies:
is-glob: 4.0.3
- glob-to-regex.js@1.0.1(tslib@2.8.1):
+ glob-to-regex.js@1.2.0(tslib@2.8.1):
dependencies:
tslib: 2.8.1
glob-to-regexp@0.4.1: {}
- glob@10.4.5:
+ glob@10.5.0:
dependencies:
foreground-child: 3.3.1
jackspeak: 3.4.3
@@ -20938,14 +23579,14 @@ snapshots:
package-json-from-dist: 1.0.1
path-scurry: 1.11.1
- glob@11.0.3:
+ glob@11.1.0:
dependencies:
foreground-child: 3.3.1
jackspeak: 4.1.1
- minimatch: 10.0.3
+ minimatch: 10.1.1
minipass: 7.1.2
package-json-from-dist: 1.0.1
- path-scurry: 2.0.0
+ path-scurry: 2.0.1
glob@7.2.3:
dependencies:
@@ -20994,7 +23635,7 @@ snapshots:
globals@15.15.0: {}
- globals@16.3.0: {}
+ globals@16.5.0: {}
globalthis@1.0.4:
dependencies:
@@ -21045,6 +23686,8 @@ snapshots:
dependencies:
duplexer: 0.1.2
+ h3-js@4.3.0: {}
+
handle-thing@2.0.1: {}
handlebars@4.7.8:
@@ -21119,6 +23762,12 @@ snapshots:
he@1.2.0: {}
+ hermes-estree@0.25.1: {}
+
+ hermes-parser@0.25.1:
+ dependencies:
+ hermes-estree: 0.25.1
+
hoist-non-react-statics@3.3.2:
dependencies:
react-is: 16.13.1
@@ -21185,13 +23834,13 @@ snapshots:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.44.0
+ terser: 5.44.1
html-parse-stringify@3.0.1:
dependencies:
void-elements: 3.1.0
- html-webpack-plugin@4.5.2(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)):
+ html-webpack-plugin@4.5.2(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)):
dependencies:
'@types/html-minifier-terser': 5.1.2
'@types/tapable': 1.0.12
@@ -21202,18 +23851,18 @@ snapshots:
pretty-error: 2.1.2
tapable: 1.1.3
util.promisify: 1.0.0
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
- html-webpack-plugin@5.6.4(@rspack/core@1.5.2(@swc/helpers@0.5.17))(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)):
+ html-webpack-plugin@5.6.5(@rspack/core@1.6.5(@swc/helpers@0.5.17))(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
- tapable: 2.2.3
+ tapable: 2.3.0
optionalDependencies:
- '@rspack/core': 1.5.2(@swc/helpers@0.5.17)
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ '@rspack/core': 1.6.5(@swc/helpers@0.5.17)
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
html2canvas@1.4.1:
dependencies:
@@ -21267,42 +23916,50 @@ snapshots:
statuses: 2.0.1
toidentifier: 1.0.1
+ http-errors@2.0.1:
+ dependencies:
+ depd: 2.0.0
+ inherits: 2.0.4
+ setprototypeof: 1.2.0
+ statuses: 2.0.2
+ toidentifier: 1.0.1
+
http-parser-js@0.5.10: {}
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.4
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
- http-proxy-middleware@2.0.9(@types/express@4.17.23):
+ http-proxy-middleware@2.0.9(@types/express@4.17.25):
dependencies:
- '@types/http-proxy': 1.17.16
- http-proxy: 1.18.1(debug@4.4.1)
+ '@types/http-proxy': 1.17.17
+ http-proxy: 1.18.1(debug@4.4.3)
is-glob: 4.0.3
is-plain-obj: 3.0.0
micromatch: 4.0.8
optionalDependencies:
- '@types/express': 4.17.23
+ '@types/express': 4.17.25
transitivePeerDependencies:
- debug
http-proxy-middleware@3.0.5:
dependencies:
- '@types/http-proxy': 1.17.16
- debug: 4.4.1(supports-color@8.1.1)
- http-proxy: 1.18.1(debug@4.4.1)
+ '@types/http-proxy': 1.17.17
+ debug: 4.4.3(supports-color@8.1.1)
+ http-proxy: 1.18.1(debug@4.4.3)
is-glob: 4.0.3
is-plain-object: 5.0.0
micromatch: 4.0.8
transitivePeerDependencies:
- supports-color
- http-proxy@1.18.1(debug@4.4.1):
+ http-proxy@1.18.1(debug@4.4.3):
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.11(debug@4.4.1)
+ follow-redirects: 1.15.11(debug@4.4.3)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -21314,11 +23971,11 @@ snapshots:
corser: 2.0.1
he: 1.2.0
html-encoding-sniffer: 3.0.0
- http-proxy: 1.18.1(debug@4.4.1)
+ http-proxy: 1.18.1(debug@4.4.3)
mime: 1.6.0
minimist: 1.2.8
opener: 1.5.2
- portfinder: 1.0.37
+ portfinder: 1.0.38
secure-compare: 3.0.1
union: 0.5.0
url-join: 4.0.1
@@ -21346,7 +24003,7 @@ snapshots:
https-proxy-agent@7.0.6:
dependencies:
agent-base: 7.1.4
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -21356,11 +24013,11 @@ snapshots:
hyperdyperid@1.2.0: {}
- i18next@25.5.1(typescript@5.9.2):
+ i18next@25.7.2(typescript@5.9.3):
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
iconv-lite@0.4.24:
dependencies:
@@ -21376,7 +24033,11 @@ snapshots:
ignore@7.0.5: {}
- immer@10.1.3: {}
+ image-size@0.7.5: {}
+
+ immediate@3.0.6: {}
+
+ immer@11.0.0: {}
immer@9.0.21: {}
@@ -21509,6 +24170,8 @@ snapshots:
is-docker@3.0.0: {}
+ is-error@2.2.2: {}
+
is-extendable@0.1.1: {}
is-extendable@1.0.1:
@@ -21525,9 +24188,10 @@ snapshots:
is-generator-fn@2.1.0: {}
- is-generator-function@1.1.0:
+ is-generator-function@1.1.2:
dependencies:
call-bound: 1.0.4
+ generator-function: 2.0.1
get-proto: 1.0.1
has-tostringtag: 1.0.2
safe-regex-test: 1.1.0
@@ -21553,7 +24217,7 @@ snapshots:
is-negative-zero@2.0.3: {}
- is-network-error@1.1.0: {}
+ is-network-error@1.3.0: {}
is-number-object@1.1.1:
dependencies:
@@ -21673,11 +24337,11 @@ snapshots:
istanbul-lib-instrument@3.3.0:
dependencies:
- '@babel/generator': 7.28.3
- '@babel/parser': 7.28.3
+ '@babel/generator': 7.28.5
+ '@babel/parser': 7.28.5
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/traverse': 7.28.5
+ '@babel/types': 7.28.5
istanbul-lib-coverage: 2.0.5
semver: 6.3.1
transitivePeerDependencies:
@@ -21685,11 +24349,11 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.28.3
- '@babel/parser': 7.28.3
+ '@babel/core': 7.28.5
+ '@babel/parser': 7.28.5
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
- semver: 7.7.2
+ semver: 7.7.3
transitivePeerDependencies:
- supports-color
@@ -21701,8 +24365,8 @@ snapshots:
istanbul-lib-source-maps@5.0.6:
dependencies:
- '@jridgewell/trace-mapping': 0.3.30
- debug: 4.4.1(supports-color@8.1.1)
+ '@jridgewell/trace-mapping': 0.3.31
+ debug: 4.4.3(supports-color@8.1.1)
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
- supports-color
@@ -21749,7 +24413,7 @@ snapshots:
'@jest/expect': 30.0.5
'@jest/test-result': 30.0.5
'@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
chalk: 4.1.2
co: 4.6.0
dedent: 1.7.0(babel-plugin-macros@3.1.0)
@@ -21769,15 +24433,15 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2)):
+ jest-cli@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)):
dependencies:
- '@jest/core': 30.0.5(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2))
+ '@jest/core': 30.0.5(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))
'@jest/test-result': 30.0.5
'@jest/types': 30.0.5
chalk: 4.1.2
exit-x: 0.2.2
import-local: 3.2.0
- jest-config: 30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2))
+ jest-config: 30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))
jest-util: 30.0.5
jest-validate: 30.0.5
yargs: 17.7.2
@@ -21788,18 +24452,18 @@ snapshots:
- supports-color
- ts-node
- jest-config@30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2)):
+ jest-config@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)):
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@jest/get-type': 30.0.1
'@jest/pattern': 30.0.1
'@jest/test-sequencer': 30.0.5
'@jest/types': 30.0.5
- babel-jest: 30.0.5(@babel/core@7.28.3)
+ babel-jest: 30.0.5(@babel/core@7.28.5)
chalk: 4.1.2
- ci-info: 4.3.0
+ ci-info: 4.3.1
deepmerge: 4.3.1
- glob: 10.4.5
+ glob: 10.5.0
graceful-fs: 4.2.11
jest-circus: 30.0.5(babel-plugin-macros@3.1.0)
jest-docblock: 30.0.1
@@ -21815,9 +24479,9 @@ snapshots:
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- '@types/node': 24.3.1
- esbuild-register: 3.6.0(esbuild@0.25.9)
- ts-node: 10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2)
+ '@types/node': 24.10.1
+ esbuild-register: 3.6.0(esbuild@0.25.12)
+ ts-node: 10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -21836,12 +24500,12 @@ snapshots:
chalk: 4.1.2
pretty-format: 30.0.5
- jest-diff@30.1.2:
+ jest-diff@30.2.0:
dependencies:
'@jest/diff-sequences': 30.0.1
'@jest/get-type': 30.1.0
chalk: 4.1.2
- pretty-format: 30.0.5
+ pretty-format: 30.2.0
jest-docblock@30.0.1:
dependencies:
@@ -21855,12 +24519,12 @@ snapshots:
jest-util: 30.0.5
pretty-format: 30.0.5
- jest-environment-enzyme@7.1.2(enzyme@3.11.0)(jest@30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2)))(react@19.1.0):
+ jest-environment-enzyme@7.1.2(enzyme@3.11.0)(jest@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)))(react@19.2.1):
dependencies:
enzyme: 3.11.0
- jest: 30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2))
+ jest: 30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))
jest-environment-jsdom: 24.9.0
- react: 19.1.0
+ react: 19.2.1
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -21879,12 +24543,12 @@ snapshots:
- supports-color
- utf-8-validate
- jest-environment-jsdom@30.1.2:
+ jest-environment-jsdom@30.2.0:
dependencies:
- '@jest/environment': 30.1.2
- '@jest/environment-jsdom-abstract': 30.1.2(jsdom@26.1.0)
+ '@jest/environment': 30.2.0
+ '@jest/environment-jsdom-abstract': 30.2.0(jsdom@26.1.0)
'@types/jsdom': 21.1.7
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
jsdom: 26.1.0
transitivePeerDependencies:
- bufferutil
@@ -21896,18 +24560,18 @@ snapshots:
'@jest/environment': 30.0.5
'@jest/fake-timers': 30.0.5
'@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
jest-mock: 30.0.5
jest-util: 30.0.5
jest-validate: 30.0.5
- jest-enzyme@7.1.2(enzyme@3.11.0)(jest@30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2)))(react@19.1.0):
+ jest-enzyme@7.1.2(enzyme@3.11.0)(jest@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)))(react@19.2.1):
dependencies:
enzyme: 3.11.0
enzyme-matchers: 7.1.2(enzyme@3.11.0)
enzyme-to-json: 3.6.2(enzyme@3.11.0)
- jest: 30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2))
- jest-environment-enzyme: 7.1.2(enzyme@3.11.0)(jest@30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2)))(react@19.1.0)
+ jest: 30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))
+ jest-environment-enzyme: 7.1.2(enzyme@3.11.0)(jest@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)))(react@19.2.1)
transitivePeerDependencies:
- bufferutil
- react
@@ -21937,7 +24601,7 @@ snapshots:
jest-haste-map@30.0.5:
dependencies:
'@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -21949,16 +24613,16 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- jest-haste-map@30.1.0:
+ jest-haste-map@30.2.0:
dependencies:
- '@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@jest/types': 30.2.0
+ '@types/node': 24.10.1
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
jest-regex-util: 30.0.1
- jest-util: 30.0.5
- jest-worker: 30.1.0
+ jest-util: 30.2.0
+ jest-worker: 30.2.0
micromatch: 4.0.8
walker: 1.0.8
optionalDependencies:
@@ -21976,12 +24640,12 @@ snapshots:
jest-diff: 30.0.5
pretty-format: 30.0.5
- jest-matcher-utils@30.1.2:
+ jest-matcher-utils@30.2.0:
dependencies:
'@jest/get-type': 30.1.0
chalk: 4.1.2
- jest-diff: 30.1.2
- pretty-format: 30.0.5
+ jest-diff: 30.2.0
+ pretty-format: 30.2.0
jest-message-util@24.9.0:
dependencies:
@@ -22008,15 +24672,15 @@ snapshots:
slash: 3.0.0
stack-utils: 2.0.6
- jest-message-util@30.1.0:
+ jest-message-util@30.2.0:
dependencies:
'@babel/code-frame': 7.27.1
- '@jest/types': 30.0.5
+ '@jest/types': 30.2.0
'@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
micromatch: 4.0.8
- pretty-format: 30.0.5
+ pretty-format: 30.2.0
slash: 3.0.0
stack-utils: 2.0.6
@@ -22027,9 +24691,15 @@ snapshots:
jest-mock@30.0.5:
dependencies:
'@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
jest-util: 30.0.5
+ jest-mock@30.2.0:
+ dependencies:
+ '@jest/types': 30.2.0
+ '@types/node': 24.10.1
+ jest-util: 30.2.0
+
jest-pnp-resolver@1.2.3(jest-resolve@30.0.5):
optionalDependencies:
jest-resolve: 30.0.5
@@ -22063,7 +24733,7 @@ snapshots:
'@jest/test-result': 30.0.5
'@jest/transform': 30.0.5
'@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
chalk: 4.1.2
emittery: 0.13.1
exit-x: 0.2.2
@@ -22092,11 +24762,11 @@ snapshots:
'@jest/test-result': 30.0.5
'@jest/transform': 30.0.5
'@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
chalk: 4.1.2
- cjs-module-lexer: 2.1.0
- collect-v8-coverage: 1.0.2
- glob: 10.4.5
+ cjs-module-lexer: 2.1.1
+ collect-v8-coverage: 1.0.3
+ glob: 10.5.0
graceful-fs: 4.2.11
jest-haste-map: 30.0.5
jest-message-util: 30.0.5
@@ -22114,17 +24784,17 @@ snapshots:
jest-snapshot@30.0.5:
dependencies:
- '@babel/core': 7.28.3
- '@babel/generator': 7.28.3
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.3)
- '@babel/types': 7.28.2
+ '@babel/core': 7.28.5
+ '@babel/generator': 7.28.5
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5)
+ '@babel/types': 7.28.5
'@jest/expect-utils': 30.0.5
'@jest/get-type': 30.0.1
'@jest/snapshot-utils': 30.0.5
'@jest/transform': 30.0.5
'@jest/types': 30.0.5
- babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.3)
+ babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5)
chalk: 4.1.2
expect: 30.0.5
graceful-fs: 4.2.11
@@ -22133,7 +24803,7 @@ snapshots:
jest-message-util: 30.0.5
jest-util: 30.0.5
pretty-format: 30.0.5
- semver: 7.7.2
+ semver: 7.7.3
synckit: 0.11.11
transitivePeerDependencies:
- supports-color
@@ -22158,9 +24828,18 @@ snapshots:
jest-util@30.0.5:
dependencies:
'@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
+ chalk: 4.1.2
+ ci-info: 4.3.1
+ graceful-fs: 4.2.11
+ picomatch: 4.0.3
+
+ jest-util@30.2.0:
+ dependencies:
+ '@jest/types': 30.2.0
+ '@types/node': 24.10.1
chalk: 4.1.2
- ci-info: 4.3.0
+ ci-info: 4.3.1
graceful-fs: 4.2.11
picomatch: 4.0.3
@@ -22173,37 +24852,37 @@ snapshots:
leven: 3.1.0
pretty-format: 30.0.5
- jest-watch-typeahead@3.0.1(jest@30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2))):
+ jest-watch-typeahead@3.0.1(jest@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))):
dependencies:
- ansi-escapes: 7.0.0
- chalk: 5.6.0
- jest: 30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2))
+ ansi-escapes: 7.2.0
+ chalk: 5.6.2
+ jest: 30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))
jest-regex-util: 30.0.1
- jest-watcher: 30.1.3
+ jest-watcher: 30.2.0
slash: 5.1.0
string-length: 6.0.0
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
jest-watcher@30.0.5:
dependencies:
'@jest/test-result': 30.0.5
'@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
jest-util: 30.0.5
string-length: 4.0.2
- jest-watcher@30.1.3:
+ jest-watcher@30.2.0:
dependencies:
- '@jest/test-result': 30.1.3
- '@jest/types': 30.0.5
- '@types/node': 24.3.1
+ '@jest/test-result': 30.2.0
+ '@jest/types': 30.2.0
+ '@types/node': 24.10.1
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
- jest-util: 30.0.5
+ jest-util: 30.2.0
string-length: 4.0.2
jest-worker@24.9.0:
@@ -22213,32 +24892,32 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
merge-stream: 2.0.0
supports-color: 8.1.1
jest-worker@30.0.5:
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
'@ungap/structured-clone': 1.3.0
jest-util: 30.0.5
merge-stream: 2.0.0
supports-color: 8.1.1
- jest-worker@30.1.0:
+ jest-worker@30.2.0:
dependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
'@ungap/structured-clone': 1.3.0
- jest-util: 30.0.5
+ jest-util: 30.2.0
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2)):
+ jest@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)):
dependencies:
- '@jest/core': 30.0.5(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2))
+ '@jest/core': 30.0.5(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))
'@jest/types': 30.0.5
import-local: 3.2.0
- jest-cli: 30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2))
+ jest-cli: 30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -22254,12 +24933,12 @@ snapshots:
js-tokens@9.0.1: {}
- js-yaml@3.14.1:
+ js-yaml@3.14.2:
dependencies:
argparse: 1.0.10
esprima: 4.0.1
- js-yaml@4.1.0:
+ js-yaml@4.1.1:
dependencies:
argparse: 2.0.1
@@ -22278,12 +24957,12 @@ snapshots:
escodegen: 1.14.3
html-encoding-sniffer: 1.0.2
left-pad: 1.3.0
- nwsapi: 2.2.21
+ nwsapi: 2.2.22
parse5: 4.0.0
pn: 1.1.0
request: 2.88.2
request-promise-native: 1.0.9(request@2.88.2)
- sax: 1.4.1
+ sax: 1.4.3
symbol-tree: 3.2.4
tough-cookie: 2.5.0
w3c-hr-time: 1.0.2
@@ -22306,7 +24985,7 @@ snapshots:
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.21
+ nwsapi: 2.2.22
parse5: 7.3.0
rrweb-cssom: 0.8.0
saxes: 6.0.0
@@ -22324,8 +25003,6 @@ snapshots:
- supports-color
- utf-8-validate
- jsesc@3.0.2: {}
-
jsesc@3.1.0: {}
json-buffer@3.0.1: {}
@@ -22352,12 +25029,12 @@ snapshots:
json5@2.2.3: {}
- jsonc-eslint-parser@2.4.0:
+ jsonc-eslint-parser@2.4.1:
dependencies:
acorn: 8.15.0
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- semver: 7.7.2
+ semver: 7.7.3
jsonc-parser@3.2.0: {}
@@ -22375,15 +25052,15 @@ snapshots:
optionalDependencies:
graceful-fs: 4.2.11
- jspdf@3.0.2:
+ jspdf@3.0.4:
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
fast-png: 6.4.0
fflate: 0.8.2
optionalDependencies:
canvg: 3.0.11
- core-js: 3.45.1
- dompurify: 3.2.6
+ core-js: 3.47.0
+ dompurify: 3.3.0
html2canvas: 1.4.1
jsprim@1.4.2:
@@ -22409,6 +25086,13 @@ snapshots:
object.assign: 4.1.7
object.values: 1.2.1
+ jszip@3.10.1:
+ dependencies:
+ lie: 3.3.0
+ pako: 1.0.11
+ readable-stream: 2.3.8
+ setimmediate: 1.0.5
+
kdbush@4.0.2: {}
keycode@2.2.1: {}
@@ -22454,7 +25138,7 @@ snapshots:
content-disposition: 0.5.4
content-type: 1.0.5
cookies: 0.9.1
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
delegates: 1.0.0
depd: 2.0.0
destroy: 1.2.0
@@ -22463,7 +25147,7 @@ snapshots:
fresh: 0.5.2
http-assert: 1.5.0
http-errors: 1.8.1
- is-generator-function: 1.1.0
+ is-generator-function: 1.1.2
koa-compose: 4.1.0
koa-convert: 2.0.0
on-finished: 2.4.1
@@ -22475,7 +25159,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- koa@3.0.1:
+ koa@3.0.3:
dependencies:
accepts: 1.3.8
content-disposition: 0.5.4
@@ -22487,9 +25171,9 @@ snapshots:
escape-html: 1.0.3
fresh: 0.5.2
http-assert: 1.5.0
- http-errors: 2.0.0
+ http-errors: 2.0.1
koa-compose: 4.1.0
- mime-types: 3.0.1
+ mime-types: 3.0.2
on-finished: 2.4.1
parseurl: 1.3.3
statuses: 2.0.2
@@ -22498,13 +25182,15 @@ snapshots:
kolorist@1.8.0: {}
+ ktx-parse@0.7.1: {}
+
language-subtag-registry@0.3.23: {}
language-tags@1.0.9:
dependencies:
language-subtag-registry: 0.3.23
- launch-editor@2.11.1:
+ launch-editor@2.12.0:
dependencies:
picocolors: 1.1.1
shell-quote: 1.8.3
@@ -22513,6 +25199,8 @@ snapshots:
left-pad@1.3.0: {}
+ lerc@3.0.0: {}
+
leven@3.1.0: {}
levn@0.3.0:
@@ -22525,6 +25213,10 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
+ lie@3.3.0:
+ dependencies:
+ immediate: 3.0.6
+
lines-and-columns@1.2.4: {}
lines-and-columns@2.0.3: {}
@@ -22549,7 +25241,7 @@ snapshots:
pify: 3.0.0
strip-bom: 3.0.0
- loader-runner@4.3.0: {}
+ loader-runner@4.3.1: {}
loader-utils@1.4.2:
dependencies:
@@ -22648,7 +25340,7 @@ snapshots:
log-symbols@6.0.0:
dependencies:
- chalk: 5.6.0
+ chalk: 5.6.2
is-unicode-supported: 1.3.0
log-update@4.0.0:
@@ -22661,7 +25353,7 @@ snapshots:
log4js@6.9.1:
dependencies:
date-format: 4.0.14
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
flatted: 3.3.3
rfdc: 1.4.1
streamroller: 3.1.5
@@ -22670,6 +25362,10 @@ snapshots:
long-timeout@0.1.1: {}
+ long@3.2.0: {}
+
+ long@5.3.2: {}
+
loose-envify@1.4.0:
dependencies:
js-tokens: 4.0.0
@@ -22684,7 +25380,7 @@ snapshots:
lru-cache@10.4.3: {}
- lru-cache@11.2.1: {}
+ lru-cache@11.2.2: {}
lru-cache@5.1.1:
dependencies:
@@ -22694,17 +25390,22 @@ snapshots:
dependencies:
yallist: 4.0.0
- luxon@3.7.1: {}
+ luxon@3.7.2: {}
lz-string@1.5.0: {}
- magic-string@0.30.18:
+ lz4js@0.2.0:
+ optional: true
+
+ lzo-wasm@0.0.4: {}
+
+ magic-string@0.30.21:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
make-dir@4.0.0:
dependencies:
- semver: 7.7.2
+ semver: 7.7.3
make-error@1.3.6: {}
@@ -22724,7 +25425,7 @@ snapshots:
dependencies:
object-visit: 1.0.1
- mapbox-gl@3.14.0:
+ mapbox-gl@3.16.0:
dependencies:
'@mapbox/jsonlint-lines-primitives': 2.0.2
'@mapbox/mapbox-gl-supported': 3.0.0
@@ -22754,36 +25455,33 @@ snapshots:
supercluster: 8.0.1
tinyqueue: 3.0.0
- maplibre-gl@5.6.0:
+ maplibre-gl@5.13.0:
dependencies:
'@mapbox/geojson-rewind': 0.5.2
'@mapbox/jsonlint-lines-primitives': 2.0.2
- '@mapbox/point-geometry': 0.1.0
+ '@mapbox/point-geometry': 1.1.0
'@mapbox/tiny-sdf': 2.0.7
'@mapbox/unitbezier': 0.0.1
- '@mapbox/vector-tile': 1.3.1
+ '@mapbox/vector-tile': 2.0.4
'@mapbox/whoots-js': 3.1.0
- '@maplibre/maplibre-gl-style-spec': 23.3.0
+ '@maplibre/maplibre-gl-style-spec': 24.3.1
+ '@maplibre/mlt': 1.1.0
+ '@maplibre/vt-pbf': 4.0.3
'@types/geojson': 7946.0.16
'@types/geojson-vt': 3.2.5
- '@types/mapbox__point-geometry': 0.1.4
- '@types/mapbox__vector-tile': 1.3.4
- '@types/pbf': 3.0.5
'@types/supercluster': 7.1.3
earcut: 3.0.2
geojson-vt: 4.0.2
gl-matrix: 3.4.4
- global-prefix: 4.0.0
kdbush: 4.0.2
murmurhash-js: 1.0.0
- pbf: 3.3.0
+ pbf: 4.0.1
potpack: 2.1.0
quickselect: 3.0.0
supercluster: 8.0.1
tinyqueue: 3.0.0
- vt-pbf: 3.1.3
- maplibre-gl@5.7.1:
+ maplibre-gl@5.14.0:
dependencies:
'@mapbox/geojson-rewind': 0.5.2
'@mapbox/jsonlint-lines-primitives': 2.0.2
@@ -22792,8 +25490,9 @@ snapshots:
'@mapbox/unitbezier': 0.0.1
'@mapbox/vector-tile': 2.0.4
'@mapbox/whoots-js': 3.1.0
- '@maplibre/maplibre-gl-style-spec': 23.3.0
- '@maplibre/vt-pbf': 4.0.3
+ '@maplibre/maplibre-gl-style-spec': 24.3.1
+ '@maplibre/mlt': 1.1.2
+ '@maplibre/vt-pbf': 4.1.0
'@types/geojson': 7946.0.16
'@types/geojson-vt': 3.2.5
'@types/supercluster': 7.1.3
@@ -22808,7 +25507,34 @@ snapshots:
supercluster: 8.0.1
tinyqueue: 3.0.0
- marchingsquares@1.3.3: {}
+ maplibre-gl@5.6.0:
+ dependencies:
+ '@mapbox/geojson-rewind': 0.5.2
+ '@mapbox/jsonlint-lines-primitives': 2.0.2
+ '@mapbox/point-geometry': 0.1.0
+ '@mapbox/tiny-sdf': 2.0.7
+ '@mapbox/unitbezier': 0.0.1
+ '@mapbox/vector-tile': 1.3.1
+ '@mapbox/whoots-js': 3.1.0
+ '@maplibre/maplibre-gl-style-spec': 23.3.0
+ '@types/geojson': 7946.0.16
+ '@types/geojson-vt': 3.2.5
+ '@types/mapbox__point-geometry': 0.1.4
+ '@types/mapbox__vector-tile': 1.3.4
+ '@types/pbf': 3.0.5
+ '@types/supercluster': 7.1.3
+ earcut: 3.0.2
+ geojson-vt: 4.0.2
+ gl-matrix: 3.4.4
+ global-prefix: 4.0.0
+ kdbush: 4.0.2
+ murmurhash-js: 1.0.0
+ pbf: 3.3.0
+ potpack: 2.1.0
+ quickselect: 3.0.0
+ supercluster: 8.0.1
+ tinyqueue: 3.0.0
+ vt-pbf: 3.1.3
martinez-polygon-clipping@0.7.4:
dependencies:
@@ -22820,6 +25546,12 @@ snapshots:
math-intrinsics@1.1.0: {}
+ md5@2.3.0:
+ dependencies:
+ charenc: 0.0.2
+ crypt: 0.0.2
+ is-buffer: 1.1.6
+
mdn-data@2.0.14: {}
mdn-data@2.0.28: {}
@@ -22834,11 +25566,11 @@ snapshots:
dependencies:
fs-monkey: 1.1.0
- memfs@4.38.2:
+ memfs@4.51.0:
dependencies:
- '@jsonjoy.com/json-pack': 1.11.0(tslib@2.8.1)
+ '@jsonjoy.com/json-pack': 1.21.0(tslib@2.8.1)
'@jsonjoy.com/util': 1.9.0(tslib@2.8.1)
- glob-to-regex.js: 1.0.1(tslib@2.8.1)
+ glob-to-regex.js: 1.2.0(tslib@2.8.1)
thingies: 2.5.0(tslib@2.8.1)
tree-dump: 1.1.0(tslib@2.8.1)
tslib: 2.8.1
@@ -22903,7 +25635,7 @@ snapshots:
dependencies:
mime-db: 1.52.0
- mime-types@3.0.1:
+ mime-types@3.0.2:
dependencies:
mime-db: 1.54.0
@@ -22925,6 +25657,10 @@ snapshots:
dependencies:
'@isaacs/brace-expansion': 5.0.0
+ minimatch@10.1.1:
+ dependencies:
+ '@isaacs/brace-expansion': 5.0.0
+
minimatch@3.1.2:
dependencies:
brace-expansion: 1.1.12
@@ -22969,17 +25705,18 @@ snapshots:
pkg-types: 1.3.1
ufo: 1.6.1
- mocha@11.7.2:
+ mocha@11.7.5:
dependencies:
browser-stdout: 1.3.1
chokidar: 4.0.3
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
diff: 7.0.0
escape-string-regexp: 4.0.0
find-up: 5.0.0
- glob: 10.4.5
+ glob: 10.5.0
he: 1.2.0
- js-yaml: 4.1.0
+ is-path-inside: 3.0.3
+ js-yaml: 4.1.1
log-symbols: 4.1.0
minimatch: 9.0.5
ms: 2.1.3
@@ -22987,7 +25724,7 @@ snapshots:
serialize-javascript: 6.0.2
strip-json-comments: 3.1.1
supports-color: 8.1.1
- workerpool: 9.3.3
+ workerpool: 9.3.4
yargs: 17.7.2
yargs-parser: 21.1.1
yargs-unparser: 2.0.0
@@ -23009,7 +25746,7 @@ snapshots:
murmurhash-js@1.0.0: {}
- nan@2.23.0:
+ nan@2.23.1:
optional: true
nanoid@3.3.11: {}
@@ -23030,7 +25767,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- napi-postinstall@0.3.3: {}
+ napi-postinstall@0.3.4: {}
natural-compare@1.4.0: {}
@@ -23080,7 +25817,7 @@ snapshots:
object.entries: 1.1.9
warning: 4.0.3
- node-releases@2.0.19: {}
+ node-releases@2.0.27: {}
node-schedule@2.1.1:
dependencies:
@@ -23091,7 +25828,7 @@ snapshots:
normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.10
+ resolve: 1.22.11
semver: 5.7.2
validate-npm-package-license: 3.0.4
@@ -23099,7 +25836,7 @@ snapshots:
dependencies:
hosted-git-info: 4.1.0
is-core-module: 2.16.1
- semver: 7.7.2
+ semver: 7.7.3
validate-npm-package-license: 3.0.4
normalize-path@2.1.1:
@@ -23108,20 +25845,20 @@ snapshots:
normalize-path@3.0.0: {}
- normalize-url@8.0.2: {}
+ normalize-url@8.1.0: {}
npm-package-arg@11.0.1:
dependencies:
hosted-git-info: 7.0.2
proc-log: 3.0.0
- semver: 7.7.2
+ semver: 7.7.3
validate-npm-package-name: 5.0.1
npm-package-arg@12.0.2:
dependencies:
hosted-git-info: 8.1.0
proc-log: 5.0.0
- semver: 7.7.2
+ semver: 7.7.3
validate-npm-package-name: 6.0.2
npm-run-path@2.0.2:
@@ -23136,16 +25873,16 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nwsapi@2.2.21: {}
+ nwsapi@2.2.22: {}
- nx@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)):
+ nx@19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)):
dependencies:
'@napi-rs/wasm-runtime': 0.2.4
- '@nrwl/tao': 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
+ '@nrwl/tao': 19.8.4(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17))
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.0-rc.46
'@zkochan/js-yaml': 0.0.7
- axios: 1.11.0
+ axios: 1.13.2
chalk: 4.1.2
cli-cursor: 3.1.0
cli-spinners: 2.6.1
@@ -23165,7 +25902,7 @@ snapshots:
npm-run-path: 4.0.1
open: 8.4.2
ora: 5.3.0
- semver: 7.7.2
+ semver: 7.7.3
string-width: 4.2.3
strong-log-transformer: 2.1.0
tar-stream: 2.2.0
@@ -23185,18 +25922,18 @@ snapshots:
'@nx/nx-linux-x64-musl': 19.8.4
'@nx/nx-win32-arm64-msvc': 19.8.4
'@nx/nx-win32-x64-msvc': 19.8.4
- '@swc-node/register': 1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3)
+ '@swc-node/register': 1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3)
'@swc/core': 1.12.14(@swc/helpers@0.5.17)
transitivePeerDependencies:
- debug
- nx@21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)):
+ nx@21.2.2(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)):
dependencies:
'@napi-rs/wasm-runtime': 0.2.4
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.2
'@zkochan/js-yaml': 0.0.7
- axios: 1.11.0
+ axios: 1.13.2
chalk: 4.1.2
cli-cursor: 3.1.0
cli-spinners: 2.6.1
@@ -23217,7 +25954,7 @@ snapshots:
open: 8.4.2
ora: 5.3.0
resolve.exports: 2.0.3
- semver: 7.7.2
+ semver: 7.7.3
string-width: 4.2.3
tar-stream: 2.2.0
tmp: 0.2.5
@@ -23238,18 +25975,18 @@ snapshots:
'@nx/nx-linux-x64-musl': 21.2.2
'@nx/nx-win32-arm64-msvc': 21.2.2
'@nx/nx-win32-x64-msvc': 21.2.2
- '@swc-node/register': 1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3)
+ '@swc-node/register': 1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3)
'@swc/core': 1.12.14(@swc/helpers@0.5.17)
transitivePeerDependencies:
- debug
- nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)):
+ nx@21.3.10(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)):
dependencies:
'@napi-rs/wasm-runtime': 0.2.4
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.2
'@zkochan/js-yaml': 0.0.7
- axios: 1.11.0
+ axios: 1.13.2
chalk: 4.1.2
cli-cursor: 3.1.0
cli-spinners: 2.6.1
@@ -23261,7 +25998,7 @@ snapshots:
flat: 5.0.2
front-matter: 4.0.2
ignore: 5.3.2
- jest-diff: 30.1.2
+ jest-diff: 30.2.0
jsonc-parser: 3.2.0
lines-and-columns: 2.0.3
minimatch: 9.0.3
@@ -23270,7 +26007,7 @@ snapshots:
open: 8.4.2
ora: 5.3.0
resolve.exports: 2.0.3
- semver: 7.7.2
+ semver: 7.7.3
string-width: 4.2.3
tar-stream: 2.2.0
tmp: 0.2.5
@@ -23291,71 +26028,18 @@ snapshots:
'@nx/nx-linux-x64-musl': 21.3.10
'@nx/nx-win32-arm64-msvc': 21.3.10
'@nx/nx-win32-x64-msvc': 21.3.10
- '@swc-node/register': 1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3)
- '@swc/core': 1.12.14(@swc/helpers@0.5.17)
- transitivePeerDependencies:
- - debug
-
- nx@21.4.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)):
- dependencies:
- '@napi-rs/wasm-runtime': 0.2.4
- '@yarnpkg/lockfile': 1.1.0
- '@yarnpkg/parsers': 3.0.2
- '@zkochan/js-yaml': 0.0.7
- axios: 1.11.0
- chalk: 4.1.2
- cli-cursor: 3.1.0
- cli-spinners: 2.6.1
- cliui: 8.0.1
- dotenv: 16.4.7
- dotenv-expand: 11.0.7
- enquirer: 2.3.6
- figures: 3.2.0
- flat: 5.0.2
- front-matter: 4.0.2
- ignore: 5.3.2
- jest-diff: 30.1.2
- jsonc-parser: 3.2.0
- lines-and-columns: 2.0.3
- minimatch: 9.0.3
- node-machine-id: 1.1.12
- npm-run-path: 4.0.1
- open: 8.4.2
- ora: 5.3.0
- resolve.exports: 2.0.3
- semver: 7.7.2
- string-width: 4.2.3
- tar-stream: 2.2.0
- tmp: 0.2.5
- tree-kill: 1.2.2
- tsconfig-paths: 4.2.0
- tslib: 2.8.1
- yaml: 2.8.1
- yargs: 17.7.2
- yargs-parser: 21.1.1
- optionalDependencies:
- '@nx/nx-darwin-arm64': 21.4.1
- '@nx/nx-darwin-x64': 21.4.1
- '@nx/nx-freebsd-x64': 21.4.1
- '@nx/nx-linux-arm-gnueabihf': 21.4.1
- '@nx/nx-linux-arm64-gnu': 21.4.1
- '@nx/nx-linux-arm64-musl': 21.4.1
- '@nx/nx-linux-x64-gnu': 21.4.1
- '@nx/nx-linux-x64-musl': 21.4.1
- '@nx/nx-win32-arm64-msvc': 21.4.1
- '@nx/nx-win32-x64-msvc': 21.4.1
- '@swc-node/register': 1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3)
+ '@swc-node/register': 1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3)
'@swc/core': 1.12.14(@swc/helpers@0.5.17)
transitivePeerDependencies:
- debug
- nx@21.5.1(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)):
+ nx@21.6.9(@swc-node/register@1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3))(@swc/core@1.12.14(@swc/helpers@0.5.17)):
dependencies:
'@napi-rs/wasm-runtime': 0.2.4
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.2
'@zkochan/js-yaml': 0.0.7
- axios: 1.11.0
+ axios: 1.13.2
chalk: 4.1.2
cli-cursor: 3.1.0
cli-spinners: 2.6.1
@@ -23367,7 +26051,7 @@ snapshots:
flat: 5.0.2
front-matter: 4.0.2
ignore: 5.3.2
- jest-diff: 30.1.2
+ jest-diff: 30.2.0
jsonc-parser: 3.2.0
lines-and-columns: 2.0.3
minimatch: 9.0.3
@@ -23376,7 +26060,7 @@ snapshots:
open: 8.4.2
ora: 5.3.0
resolve.exports: 2.0.3
- semver: 7.7.2
+ semver: 7.7.3
string-width: 4.2.3
tar-stream: 2.2.0
tmp: 0.2.5
@@ -23387,17 +26071,17 @@ snapshots:
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- '@nx/nx-darwin-arm64': 21.5.1
- '@nx/nx-darwin-x64': 21.5.1
- '@nx/nx-freebsd-x64': 21.5.1
- '@nx/nx-linux-arm-gnueabihf': 21.5.1
- '@nx/nx-linux-arm64-gnu': 21.5.1
- '@nx/nx-linux-arm64-musl': 21.5.1
- '@nx/nx-linux-x64-gnu': 21.5.1
- '@nx/nx-linux-x64-musl': 21.5.1
- '@nx/nx-win32-arm64-msvc': 21.5.1
- '@nx/nx-win32-x64-msvc': 21.5.1
- '@swc-node/register': 1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.24)(typescript@5.8.3)
+ '@nx/nx-darwin-arm64': 21.6.9
+ '@nx/nx-darwin-x64': 21.6.9
+ '@nx/nx-freebsd-x64': 21.6.9
+ '@nx/nx-linux-arm-gnueabihf': 21.6.9
+ '@nx/nx-linux-arm64-gnu': 21.6.9
+ '@nx/nx-linux-arm64-musl': 21.6.9
+ '@nx/nx-linux-x64-gnu': 21.6.9
+ '@nx/nx-linux-x64-musl': 21.6.9
+ '@nx/nx-win32-arm64-msvc': 21.6.9
+ '@nx/nx-win32-x64-msvc': 21.6.9
+ '@swc-node/register': 1.10.10(@swc/core@1.12.14(@swc/helpers@0.5.17))(@swc/types@0.1.25)(typescript@5.8.3)
'@swc/core': 1.12.14(@swc/helpers@0.5.17)
transitivePeerDependencies:
- debug
@@ -23499,7 +26183,7 @@ snapshots:
open@10.2.0:
dependencies:
- default-browser: 5.2.1
+ default-browser: 5.4.0
define-lazy-prop: 3.0.0
is-inside-container: 1.0.0
wsl-utils: 0.1.0
@@ -23543,7 +26227,7 @@ snapshots:
ora@8.2.0:
dependencies:
- chalk: 5.6.0
+ chalk: 5.6.2
cli-cursor: 5.0.0
cli-spinners: 2.9.2
is-interactive: 2.0.0
@@ -23551,9 +26235,9 @@ snapshots:
log-symbols: 6.0.0
stdin-discarder: 0.2.2
string-width: 7.2.0
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
- osm2geojson-lite@1.1.2:
+ osm2geojson-lite@1.2.0:
optionalDependencies:
'@types/geojson': 7946.0.16
@@ -23599,7 +26283,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.2.1
+ yocto-queue: 1.2.2
p-locate@3.0.0:
dependencies:
@@ -23624,13 +26308,15 @@ snapshots:
p-retry@6.2.1:
dependencies:
'@types/retry': 0.12.2
- is-network-error: 1.1.0
+ is-network-error: 1.3.0
retry: 0.13.1
p-try@2.2.0: {}
package-json-from-dist@1.0.1: {}
+ pako@1.0.11: {}
+
pako@2.1.0: {}
param-case@3.0.4:
@@ -23642,15 +26328,17 @@ snapshots:
dependencies:
callsites: 3.1.0
+ parse-headers@2.0.6: {}
+
parse-json@4.0.0:
dependencies:
- error-ex: 1.3.2
+ error-ex: 1.3.4
json-parse-better-errors: 1.0.2
parse-json@5.2.0:
dependencies:
'@babel/code-frame': 7.27.1
- error-ex: 1.3.2
+ error-ex: 1.3.4
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -23701,9 +26389,9 @@ snapshots:
lru-cache: 10.4.3
minipass: 7.1.2
- path-scurry@2.0.0:
+ path-scurry@2.0.1:
dependencies:
- lru-cache: 11.2.1
+ lru-cache: 11.2.2
minipass: 7.1.2
path-to-regexp@0.1.12: {}
@@ -23764,7 +26452,7 @@ snapshots:
pkg-types@2.3.0:
dependencies:
confbox: 0.2.2
- exsolve: 1.0.7
+ exsolve: 1.0.8
pathe: 2.0.3
pkg-up@3.1.0:
@@ -23784,10 +26472,10 @@ snapshots:
bignumber.js: 9.3.1
splaytree-ts: 1.0.2
- portfinder@1.0.37:
+ portfinder@1.0.38:
dependencies:
async: 3.2.6
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -23809,6 +26497,8 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
+ potpack@1.0.2: {}
+
potpack@2.1.0: {}
prelude-ls@1.1.2: {}
@@ -23847,6 +26537,12 @@ snapshots:
ansi-styles: 5.2.0
react-is: 18.3.1
+ pretty-format@30.2.0:
+ dependencies:
+ '@jest/schemas': 30.0.5
+ ansi-styles: 5.2.0
+ react-is: 18.3.1
+
proc-log@3.0.0: {}
proc-log@5.0.0: {}
@@ -23923,83 +26619,89 @@ snapshots:
quick-lru@5.1.1: {}
+ quick-lru@6.1.2: {}
+
+ quick-lru@7.3.0: {}
+
quickselect@1.1.1: {}
quickselect@2.0.0: {}
quickselect@3.0.0: {}
- ra-core@5.11.0(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.62.0(react@19.1.0))(react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0):
+ ra-core@5.13.2(@tanstack/react-query@5.90.10(react@19.2.1))(react-dom@19.2.1(react@19.2.1))(react-hook-form@7.66.1(react@19.2.1))(react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1):
dependencies:
- '@tanstack/react-query': 5.86.0(react@19.1.0)
+ '@tanstack/react-query': 5.90.10(react@19.2.1)
date-fns: 3.6.0
eventemitter3: 5.0.1
inflection: 3.0.2
jsonexport: 3.2.0
lodash: 4.17.21
query-string: 7.1.3
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-error-boundary: 4.1.2(react@19.1.0)
- react-hook-form: 7.62.0(react@19.1.0)
- react-is: 19.1.1
- react-router: 7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react-router-dom: 7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ react-error-boundary: 4.1.2(react@19.2.1)
+ react-hook-form: 7.66.1(react@19.2.1)
+ react-is: 19.2.0
+ react-router: 7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react-router-dom: 7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
- ra-data-fakerest@5.11.0(ra-core@5.11.0(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.62.0(react@19.1.0))(react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)):
+ ra-data-fakerest@5.13.2(ra-core@5.13.2(@tanstack/react-query@5.90.10(react@19.2.1))(react-dom@19.2.1(react@19.2.1))(react-hook-form@7.66.1(react@19.2.1))(react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)):
dependencies:
fakerest: 4.2.0
- ra-core: 5.11.0(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.62.0(react@19.1.0))(react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ ra-core: 5.13.2(@tanstack/react-query@5.90.10(react@19.2.1))(react-dom@19.2.1(react@19.2.1))(react-hook-form@7.66.1(react@19.2.1))(react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
- ra-i18n-polyglot@5.11.0(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.62.0(react@19.1.0))(react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0):
+ ra-i18n-polyglot@5.13.2(@tanstack/react-query@5.90.10(react@19.2.1))(react-dom@19.2.1(react@19.2.1))(react-hook-form@7.66.1(react@19.2.1))(react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1):
dependencies:
node-polyglot: 2.6.0
- ra-core: 5.11.0(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.62.0(react@19.1.0))(react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ ra-core: 5.13.2(@tanstack/react-query@5.90.10(react@19.2.1))(react-dom@19.2.1(react@19.2.1))(react-hook-form@7.66.1(react@19.2.1))(react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
transitivePeerDependencies:
+ - '@tanstack/react-query'
- react
- react-dom
- react-hook-form
- react-router
- react-router-dom
- ra-language-english@5.11.0(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.62.0(react@19.1.0))(react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0):
+ ra-language-english@5.13.2(@tanstack/react-query@5.90.10(react@19.2.1))(react-dom@19.2.1(react@19.2.1))(react-hook-form@7.66.1(react@19.2.1))(react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1):
dependencies:
- ra-core: 5.11.0(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.62.0(react@19.1.0))(react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ ra-core: 5.13.2(@tanstack/react-query@5.90.10(react@19.2.1))(react-dom@19.2.1(react@19.2.1))(react-hook-form@7.66.1(react@19.2.1))(react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
transitivePeerDependencies:
+ - '@tanstack/react-query'
- react
- react-dom
- react-hook-form
- react-router
- react-router-dom
- ra-ui-materialui@5.11.0(a27cdfaff3fd3b2c6cf84994329ef854):
+ ra-ui-materialui@5.13.2(8b3ffd323e911e8dce51e5e596f51344):
dependencies:
- '@mui/icons-material': 7.3.2(@mui/material@7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
- '@mui/material': 7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@mui/system': 7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
- '@mui/utils': 7.3.2(@types/react@19.1.12)(react@19.1.0)
- '@tanstack/react-query': 5.86.0(react@19.1.0)
+ '@mui/icons-material': 7.3.6(@mui/material@7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@mui/material': 7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@mui/system': 7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@mui/utils': 7.3.6(@types/react@19.2.7)(react@19.2.1)
+ '@tanstack/react-query': 5.90.10(react@19.2.1)
autosuggest-highlight: 3.3.4
clsx: 2.1.1
css-mediaquery: 0.1.2
- csstype: 3.1.3
+ csstype: 3.2.3
diacritic: 0.0.2
- dompurify: 3.2.6
+ dompurify: 3.3.0
inflection: 3.0.2
jsonexport: 3.2.0
lodash: 4.17.21
query-string: 7.1.3
- ra-core: 5.11.0(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.62.0(react@19.1.0))(react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-dropzone: 14.3.8(react@19.1.0)
- react-error-boundary: 4.1.2(react@19.1.0)
- react-hook-form: 7.62.0(react@19.1.0)
- react-hotkeys-hook: 5.1.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react-is: 19.1.1
- react-router: 7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react-router-dom: 7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react-transition-group: 4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ ra-core: 5.13.2(@tanstack/react-query@5.90.10(react@19.2.1))(react-dom@19.2.1(react@19.2.1))(react-hook-form@7.66.1(react@19.2.1))(react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ react-dropzone: 14.3.8(react@19.2.1)
+ react-error-boundary: 4.1.2(react@19.2.1)
+ react-hook-form: 7.66.1(react@19.2.1)
+ react-hotkeys-hook: 5.2.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react-is: 19.2.0
+ react-router: 7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react-router-dom: 7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react-transition-group: 4.4.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
raf@3.4.1:
dependencies:
@@ -24037,22 +26739,22 @@ snapshots:
dependencies:
quickselect: 2.0.0
- react-admin@5.11.0(@mui/system@7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@mui/utils@7.3.2(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(csstype@3.1.3)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0):
- dependencies:
- '@emotion/react': 11.14.0(@types/react@19.1.12)(react@19.1.0)
- '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
- '@mui/icons-material': 7.3.2(@mui/material@7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/react@19.1.12)(react@19.1.0)
- '@mui/material': 7.3.2(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react@19.1.0))(@types/react@19.1.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@tanstack/react-query': 5.86.0(react@19.1.0)
- ra-core: 5.11.0(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.62.0(react@19.1.0))(react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
- ra-i18n-polyglot: 5.11.0(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.62.0(react@19.1.0))(react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
- ra-language-english: 5.11.0(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.62.0(react@19.1.0))(react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
- ra-ui-materialui: 5.11.0(a27cdfaff3fd3b2c6cf84994329ef854)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-hook-form: 7.62.0(react@19.1.0)
- react-router: 7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react-router-dom: 7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-admin@5.13.2(@mui/system@7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@mui/utils@7.3.6(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(csstype@3.2.3)(react-dom@19.2.1(react@19.2.1))(react-is@19.2.0)(react@19.2.1):
+ dependencies:
+ '@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.1)
+ '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@mui/icons-material': 7.3.6(@mui/material@7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(@types/react@19.2.7)(react@19.2.1)
+ '@mui/material': 7.3.6(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react@19.2.1))(@types/react@19.2.7)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@tanstack/react-query': 5.90.10(react@19.2.1)
+ ra-core: 5.13.2(@tanstack/react-query@5.90.10(react@19.2.1))(react-dom@19.2.1(react@19.2.1))(react-hook-form@7.66.1(react@19.2.1))(react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
+ ra-i18n-polyglot: 5.13.2(@tanstack/react-query@5.90.10(react@19.2.1))(react-dom@19.2.1(react@19.2.1))(react-hook-form@7.66.1(react@19.2.1))(react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
+ ra-language-english: 5.13.2(@tanstack/react-query@5.90.10(react@19.2.1))(react-dom@19.2.1(react@19.2.1))(react-hook-form@7.66.1(react@19.2.1))(react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
+ ra-ui-materialui: 5.13.2(8b3ffd323e911e8dce51e5e596f51344)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ react-hook-form: 7.66.1(react@19.2.1)
+ react-router: 7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react-router-dom: 7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
transitivePeerDependencies:
- '@mui/material-pigment-css'
- '@mui/system'
@@ -24064,22 +26766,22 @@ snapshots:
react-app-polyfill@3.0.0:
dependencies:
- core-js: 3.45.1
+ core-js: 3.47.0
object-assign: 4.1.1
promise: 8.3.0
raf: 3.4.1
regenerator-runtime: 0.13.11
whatwg-fetch: 3.6.20
- react-color@2.19.3(react@19.1.0):
+ react-color@2.19.3(react@19.2.1):
dependencies:
- '@icons/material': 0.2.4(react@19.1.0)
+ '@icons/material': 0.2.4(react@19.2.1)
lodash: 4.17.21
lodash-es: 4.17.21
material-colors: 1.2.6
prop-types: 15.8.1
- react: 19.1.0
- reactcss: 1.2.3(react@19.1.0)
+ react: 19.2.1
+ reactcss: 1.2.3(react@19.2.1)
tinycolor2: 1.6.0
react-css-styled@1.1.9:
@@ -24087,18 +26789,18 @@ snapshots:
css-styled: 1.0.8
framework-utils: 1.1.0
- react-dev-utils@12.0.1(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)):
+ react-dev-utils@12.0.1(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)):
dependencies:
'@babel/code-frame': 7.27.1
address: 1.2.2
- browserslist: 4.25.4
+ browserslist: 4.28.0
chalk: 4.1.2
cross-spawn: 7.0.6
detect-port-alt: 1.1.6
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@9.34.0(jiti@2.4.2))(typescript@5.9.2)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@9.39.1(jiti@2.4.2))(typescript@5.9.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -24113,9 +26815,9 @@ snapshots:
shell-quote: 1.8.3
strip-ansi: 6.0.1
text-table: 0.2.0
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- eslint
- supports-color
@@ -24125,65 +26827,76 @@ snapshots:
dependencies:
typescript: 5.8.3
- react-docgen@8.0.1:
+ react-docgen@8.0.2:
dependencies:
- '@babel/core': 7.28.3
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/core': 7.28.5
+ '@babel/traverse': 7.28.5
+ '@babel/types': 7.28.5
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.28.0
'@types/doctrine': 0.0.9
'@types/resolve': 1.20.6
doctrine: 3.0.0
- resolve: 1.22.10
- strip-indent: 4.0.0
+ resolve: 1.22.11
+ strip-indent: 4.1.1
transitivePeerDependencies:
- supports-color
- react-dom@19.1.0(react@19.1.0):
+ react-dom@19.2.1(react@19.2.1):
dependencies:
- react: 19.1.0
- scheduler: 0.26.0
+ react: 19.2.1
+ scheduler: 0.27.0
- react-draggable@4.5.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-draggable@4.5.0(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
dependencies:
clsx: 2.1.1
prop-types: 15.8.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- react-dropzone@14.3.8(react@19.1.0):
+ react-dropzone@14.3.8(react@19.2.1):
dependencies:
attr-accept: 2.2.5
file-selector: 2.1.2
prop-types: 15.8.1
- react: 19.1.0
+ react: 19.2.1
- react-error-boundary@4.1.2(react@19.1.0):
+ react-error-boundary@4.1.2(react@19.2.1):
dependencies:
- '@babel/runtime': 7.28.3
- react: 19.1.0
+ '@babel/runtime': 7.28.4
+ react: 19.2.1
react-error-overlay@6.1.0: {}
- react-hook-form@7.62.0(react@19.1.0):
+ react-hook-form@7.66.1(react@19.2.1):
+ dependencies:
+ react: 19.2.1
+
+ react-hotkeys-hook@5.2.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
dependencies:
- react: 19.1.0
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- react-hotkeys-hook@5.1.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-i18next@15.7.4(i18next@25.7.2(typescript@5.9.3))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.9.3):
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@babel/runtime': 7.28.4
+ html-parse-stringify: 3.0.1
+ i18next: 25.7.2(typescript@5.9.3)
+ react: 19.2.1
+ optionalDependencies:
+ react-dom: 19.2.1(react@19.2.1)
+ typescript: 5.9.3
- react-i18next@15.7.3(i18next@25.5.1(typescript@5.9.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.9.2):
+ react-i18next@16.4.1(i18next@25.7.2(typescript@5.9.3))(react-dom@19.2.1(react@19.2.1))(react@19.2.1)(typescript@5.9.3):
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
html-parse-stringify: 3.0.1
- i18next: 25.5.1(typescript@5.9.2)
- react: 19.1.0
+ i18next: 25.7.2(typescript@5.9.3)
+ react: 19.2.1
+ use-sync-external-store: 1.6.0(react@19.2.1)
optionalDependencies:
- react-dom: 19.1.0(react@19.1.0)
- typescript: 5.9.2
+ react-dom: 19.2.1(react@19.2.1)
+ typescript: 5.9.3
react-is@16.13.1: {}
@@ -24191,7 +26904,7 @@ snapshots:
react-is@18.3.1: {}
- react-is@19.1.1: {}
+ react-is@19.2.0: {}
react-moveable@0.56.0:
dependencies:
@@ -24209,50 +26922,52 @@ snapshots:
react-css-styled: 1.1.9
react-selecto: 1.26.3
- react-redux@9.2.0(@types/react@19.1.12)(react@19.1.0)(redux@5.0.1):
+ react-redux@9.2.0(@types/react@19.2.7)(react@19.2.1)(redux@5.0.1):
dependencies:
'@types/use-sync-external-store': 0.0.6
- react: 19.1.0
- use-sync-external-store: 1.5.0(react@19.1.0)
+ react: 19.2.1
+ use-sync-external-store: 1.6.0(react@19.2.1)
optionalDependencies:
- '@types/react': 19.1.12
+ '@types/react': 19.2.7
redux: 5.0.1
react-refresh@0.17.0: {}
- react-router-dom@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-refresh@0.18.0: {}
+
+ react-router-dom@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-router: 7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ react-router: 7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
- react-router@7.8.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-router@7.9.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
dependencies:
cookie: 1.0.2
- react: 19.1.0
- set-cookie-parser: 2.7.1
+ react: 19.2.1
+ set-cookie-parser: 2.7.2
optionalDependencies:
- react-dom: 19.1.0(react@19.1.0)
+ react-dom: 19.2.1(react@19.2.1)
react-selecto@1.26.3:
dependencies:
selecto: 1.26.3
- react-transition-group@4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-transition-group@4.4.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
dependencies:
- '@babel/runtime': 7.28.3
+ '@babel/runtime': 7.28.4
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- react@19.1.0: {}
+ react@19.2.1: {}
- reactcss@1.2.3(react@19.1.0):
+ reactcss@1.2.3(react@19.2.1):
dependencies:
lodash: 4.17.21
- react: 19.1.0
+ react: 19.2.1
read-pkg-up@4.0.0:
dependencies:
@@ -24280,7 +26995,7 @@ snapshots:
read-yaml-file@2.1.0:
dependencies:
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
strip-bom: 4.0.0
readable-stream@2.0.6:
@@ -24352,7 +27067,7 @@ snapshots:
get-proto: 1.0.1
which-builtin-type: 1.2.1
- regenerate-unicode-properties@10.2.0:
+ regenerate-unicode-properties@10.2.2:
dependencies:
regenerate: 1.4.2
@@ -24374,20 +27089,20 @@ snapshots:
gopd: 1.2.0
set-function-name: 2.0.2
- regexpu-core@6.2.0:
+ regexpu-core@6.4.0:
dependencies:
regenerate: 1.4.2
- regenerate-unicode-properties: 10.2.0
+ regenerate-unicode-properties: 10.2.2
regjsgen: 0.8.0
- regjsparser: 0.12.0
+ regjsparser: 0.13.0
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.2.0
+ unicode-match-property-value-ecmascript: 2.2.1
regjsgen@0.8.0: {}
- regjsparser@0.12.0:
+ regjsparser@0.13.0:
dependencies:
- jsesc: 3.0.2
+ jsesc: 3.1.0
relateurl@0.2.7: {}
@@ -24487,7 +27202,7 @@ snapshots:
resolve.exports@2.0.3: {}
- resolve@1.22.10:
+ resolve@1.22.11:
dependencies:
is-core-module: 2.16.1
path-parse: 1.0.7
@@ -24534,36 +27249,37 @@ snapshots:
robust-predicates@3.0.2: {}
- rollup@4.50.0:
+ rollup@4.53.3:
dependencies:
'@types/estree': 1.0.8
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.50.0
- '@rollup/rollup-android-arm64': 4.50.0
- '@rollup/rollup-darwin-arm64': 4.50.0
- '@rollup/rollup-darwin-x64': 4.50.0
- '@rollup/rollup-freebsd-arm64': 4.50.0
- '@rollup/rollup-freebsd-x64': 4.50.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.50.0
- '@rollup/rollup-linux-arm-musleabihf': 4.50.0
- '@rollup/rollup-linux-arm64-gnu': 4.50.0
- '@rollup/rollup-linux-arm64-musl': 4.50.0
- '@rollup/rollup-linux-loongarch64-gnu': 4.50.0
- '@rollup/rollup-linux-ppc64-gnu': 4.50.0
- '@rollup/rollup-linux-riscv64-gnu': 4.50.0
- '@rollup/rollup-linux-riscv64-musl': 4.50.0
- '@rollup/rollup-linux-s390x-gnu': 4.50.0
- '@rollup/rollup-linux-x64-gnu': 4.50.0
- '@rollup/rollup-linux-x64-musl': 4.50.0
- '@rollup/rollup-openharmony-arm64': 4.50.0
- '@rollup/rollup-win32-arm64-msvc': 4.50.0
- '@rollup/rollup-win32-ia32-msvc': 4.50.0
- '@rollup/rollup-win32-x64-msvc': 4.50.0
+ '@rollup/rollup-android-arm-eabi': 4.53.3
+ '@rollup/rollup-android-arm64': 4.53.3
+ '@rollup/rollup-darwin-arm64': 4.53.3
+ '@rollup/rollup-darwin-x64': 4.53.3
+ '@rollup/rollup-freebsd-arm64': 4.53.3
+ '@rollup/rollup-freebsd-x64': 4.53.3
+ '@rollup/rollup-linux-arm-gnueabihf': 4.53.3
+ '@rollup/rollup-linux-arm-musleabihf': 4.53.3
+ '@rollup/rollup-linux-arm64-gnu': 4.53.3
+ '@rollup/rollup-linux-arm64-musl': 4.53.3
+ '@rollup/rollup-linux-loong64-gnu': 4.53.3
+ '@rollup/rollup-linux-ppc64-gnu': 4.53.3
+ '@rollup/rollup-linux-riscv64-gnu': 4.53.3
+ '@rollup/rollup-linux-riscv64-musl': 4.53.3
+ '@rollup/rollup-linux-s390x-gnu': 4.53.3
+ '@rollup/rollup-linux-x64-gnu': 4.53.3
+ '@rollup/rollup-linux-x64-musl': 4.53.3
+ '@rollup/rollup-openharmony-arm64': 4.53.3
+ '@rollup/rollup-win32-arm64-msvc': 4.53.3
+ '@rollup/rollup-win32-ia32-msvc': 4.53.3
+ '@rollup/rollup-win32-x64-gnu': 4.53.3
+ '@rollup/rollup-win32-x64-msvc': 4.53.3
fsevents: 2.3.3
rrweb-cssom@0.8.0: {}
- rslog@1.2.11: {}
+ rslog@1.3.1: {}
rst-selector-parser@2.2.3:
dependencies:
@@ -24572,7 +27288,7 @@ snapshots:
rsvp@4.8.5: {}
- run-applescript@7.0.0: {}
+ run-applescript@7.1.0: {}
run-parallel@1.2.0:
dependencies:
@@ -24629,13 +27345,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- sax@1.4.1: {}
+ sax@1.4.3: {}
saxes@6.0.0:
dependencies:
xmlchars: 2.2.0
- scheduler@0.26.0: {}
+ scheduler@0.27.0: {}
schema-utils@2.7.0:
dependencies:
@@ -24649,7 +27365,7 @@ snapshots:
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
- schema-utils@4.3.2:
+ schema-utils@4.3.3:
dependencies:
'@types/json-schema': 7.0.15
ajv: 8.17.1
@@ -24686,7 +27402,7 @@ snapshots:
semver-truncate@3.0.0:
dependencies:
- semver: 7.7.2
+ semver: 7.7.3
semver@5.7.2: {}
@@ -24698,7 +27414,7 @@ snapshots:
semver@7.6.3: {}
- semver@7.7.2: {}
+ semver@7.7.3: {}
send@0.19.0:
dependencies:
@@ -24745,7 +27461,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- set-cookie-parser@2.7.1: {}
+ set-cookie-parser@2.7.2: {}
set-function-length@1.2.2:
dependencies:
@@ -24776,6 +27492,8 @@ snapshots:
is-plain-object: 2.0.4
split-string: 3.1.0
+ setimmediate@1.0.5: {}
+
setprototypeof@1.1.0: {}
setprototypeof@1.2.0: {}
@@ -24900,6 +27618,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ snappyjs@0.6.1: {}
+
sockjs@0.3.24:
dependencies:
faye-websocket: 0.11.4
@@ -24965,7 +27685,7 @@ snapshots:
spdy-transport@3.0.0:
dependencies:
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -24976,7 +27696,7 @@ snapshots:
spdy@4.0.2:
dependencies:
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -24984,10 +27704,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- speed-measure-webpack-plugin@1.4.2(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)):
+ speed-measure-webpack-plugin@1.4.2(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)):
dependencies:
chalk: 4.1.2
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
splaytree-ts@1.0.2: {}
@@ -25041,7 +27761,7 @@ snapshots:
statuses@2.0.2: {}
- std-env@3.9.0: {}
+ std-env@3.10.0: {}
stdin-discarder@0.2.2: {}
@@ -25054,19 +27774,19 @@ snapshots:
store2@2.14.4: {}
- storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)):
+ storybook@9.1.1(@testing-library/dom@10.4.0)(prettier@3.6.2)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)):
dependencies:
'@storybook/global': 5.0.0
- '@testing-library/jest-dom': 6.8.0
+ '@testing-library/jest-dom': 6.9.1
'@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.0)
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ '@vitest/mocker': 3.2.4(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
'@vitest/spy': 3.2.4
better-opn: 3.0.2
- esbuild: 0.25.9
- esbuild-register: 3.6.0(esbuild@0.25.9)
+ esbuild: 0.25.12
+ esbuild-register: 3.6.0(esbuild@0.25.12)
recast: 0.23.11
- semver: 7.7.2
+ semver: 7.7.3
ws: 8.18.3
optionalDependencies:
prettier: 3.6.2
@@ -25078,19 +27798,19 @@ snapshots:
- utf-8-validate
- vite
- storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)):
+ storybook@9.1.1(@testing-library/dom@10.4.1)(prettier@3.6.2)(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)):
dependencies:
'@storybook/global': 5.0.0
- '@testing-library/jest-dom': 6.8.0
+ '@testing-library/jest-dom': 6.9.1
'@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1)
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ '@vitest/mocker': 3.2.4(vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
'@vitest/spy': 3.2.4
better-opn: 3.0.2
- esbuild: 0.25.9
- esbuild-register: 3.6.0(esbuild@0.25.9)
+ esbuild: 0.25.12
+ esbuild-register: 3.6.0(esbuild@0.25.12)
recast: 0.23.11
- semver: 7.7.2
+ semver: 7.7.3
ws: 8.18.3
optionalDependencies:
prettier: 3.6.2
@@ -25105,17 +27825,19 @@ snapshots:
streamroller@3.1.5:
dependencies:
date-format: 4.0.14
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
fs-extra: 8.1.0
transitivePeerDependencies:
- supports-color
- streamx@2.22.1:
+ streamx@2.23.0:
dependencies:
+ events-universal: 1.0.1
fast-fifo: 1.3.2
text-decoder: 1.2.3
- optionalDependencies:
- bare-events: 2.6.1
+ transitivePeerDependencies:
+ - bare-abort-controller
+ - react-native-b4a
strict-uri-encode@2.0.0: {}
@@ -25128,7 +27850,7 @@ snapshots:
string-length@6.0.0:
dependencies:
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
string-width@4.2.3:
dependencies:
@@ -25140,13 +27862,13 @@ snapshots:
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
string-width@7.2.0:
dependencies:
- emoji-regex: 10.5.0
- get-east-asian-width: 1.3.1
- strip-ansi: 7.1.0
+ emoji-regex: 10.6.0
+ get-east-asian-width: 1.4.0
+ strip-ansi: 7.1.2
string.prototype.includes@2.0.1:
dependencies:
@@ -25216,9 +27938,9 @@ snapshots:
dependencies:
ansi-regex: 5.0.1
- strip-ansi@7.1.0:
+ strip-ansi@7.1.2:
dependencies:
- ansi-regex: 6.2.0
+ ansi-regex: 6.2.2
strip-bom@3.0.0: {}
@@ -25237,16 +27959,16 @@ snapshots:
dependencies:
min-indent: 1.0.1
- strip-indent@4.0.0:
- dependencies:
- min-indent: 1.0.1
+ strip-indent@4.1.1: {}
strip-json-comments@3.1.1: {}
- strip-literal@3.0.0:
+ strip-literal@3.1.0:
dependencies:
js-tokens: 9.0.1
+ strnum@1.1.2: {}
+
strong-log-transformer@2.1.0:
dependencies:
duplexer: 0.1.2
@@ -25257,7 +27979,7 @@ snapshots:
dependencies:
'@tokenizer/token': 0.3.0
- styled-components@6.1.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ styled-components@6.1.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
dependencies:
'@emotion/is-prop-valid': 1.2.2
'@emotion/unitless': 0.8.1
@@ -25265,8 +27987,8 @@ snapshots:
css-to-react-native: 3.2.0
csstype: 3.1.3
postcss: 8.4.49
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
shallowequal: 1.1.0
stylis: 4.3.2
tslib: 2.6.2
@@ -25336,11 +28058,11 @@ snapshots:
syncpack@13.0.4(typescript@5.8.3):
dependencies:
- chalk: 5.6.0
- chalk-template: 1.1.0
+ chalk: 5.6.2
+ chalk-template: 1.1.2
commander: 13.1.0
cosmiconfig: 9.0.0(typescript@5.8.3)
- effect: 3.17.13
+ effect: 3.19.6
enquirer: 2.4.1
fast-check: 3.23.2
globby: 14.1.0
@@ -25350,7 +28072,7 @@ snapshots:
ora: 8.2.0
prompts: 2.4.2
read-yaml-file: 2.1.0
- semver: 7.7.2
+ semver: 7.7.3
tightrope: 0.2.0
ts-toolbelt: 9.6.0
transitivePeerDependencies:
@@ -25358,7 +28080,7 @@ snapshots:
tapable@1.1.3: {}
- tapable@2.2.3: {}
+ tapable@2.3.0: {}
tar-stream@2.2.0:
dependencies:
@@ -25370,25 +28092,28 @@ snapshots:
tar-stream@3.1.7:
dependencies:
- b4a: 1.6.7
+ b4a: 1.7.3
fast-fifo: 1.3.2
- streamx: 2.22.1
+ streamx: 2.23.0
+ transitivePeerDependencies:
+ - bare-abort-controller
+ - react-native-b4a
telejson@7.2.0:
dependencies:
memoizerific: 1.11.3
- terser-webpack-plugin@5.3.14(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)):
+ terser-webpack-plugin@5.3.14(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)):
dependencies:
- '@jridgewell/trace-mapping': 0.3.30
+ '@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
serialize-javascript: 6.0.2
- terser: 5.44.0
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ terser: 5.44.1
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
optionalDependencies:
'@swc/core': 1.12.14(@swc/helpers@0.5.17)
- esbuild: 0.25.9
+ esbuild: 0.25.12
terser@4.8.1:
dependencies:
@@ -25397,7 +28122,7 @@ snapshots:
source-map: 0.6.1
source-map-support: 0.5.21
- terser@5.44.0:
+ terser@5.44.1:
dependencies:
'@jridgewell/source-map': 0.3.11
acorn: 8.15.0
@@ -25419,7 +28144,9 @@ snapshots:
text-decoder@1.2.3:
dependencies:
- b4a: 1.6.7
+ b4a: 1.7.3
+ transitivePeerDependencies:
+ - react-native-b4a
text-segmentation@1.0.3:
dependencies:
@@ -25428,12 +28155,29 @@ snapshots:
text-table@0.2.0: {}
+ texture-compressor@1.0.2:
+ dependencies:
+ argparse: 1.0.10
+ image-size: 0.7.5
+
thingies@2.5.0(tslib@2.8.1):
dependencies:
tslib: 2.8.1
+ three-stdlib@2.36.1(three@0.182.0):
+ dependencies:
+ '@types/draco3d': 1.4.10
+ '@types/offscreencanvas': 2019.7.3
+ '@types/webxr': 0.5.24
+ draco3d: 1.5.7
+ fflate: 0.6.10
+ potpack: 1.0.2
+ three: 0.182.0
+
three@0.179.1: {}
+ three@0.182.0: {}
+
throttleit@1.0.1: {}
through@2.3.8: {}
@@ -25450,10 +28194,10 @@ snapshots:
tinyexec@0.3.2: {}
- tinyglobby@0.2.14:
+ tinyglobby@0.2.15:
dependencies:
- fdir: 6.5.0(picomatch@4.0.2)
- picomatch: 4.0.2
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
tinypool@1.1.1: {}
@@ -25465,7 +28209,7 @@ snapshots:
tinyrainbow@2.0.0: {}
- tinyspy@4.0.3: {}
+ tinyspy@4.0.4: {}
tldts-core@6.1.86: {}
@@ -25552,51 +28296,51 @@ snapshots:
dependencies:
typescript: 5.8.3
- ts-api-utils@2.1.0(typescript@5.9.2):
+ ts-api-utils@2.1.0(typescript@5.9.3):
dependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
ts-dedent@2.2.0: {}
- ts-jest@29.4.1(@babel/core@7.28.3)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.28.3))(esbuild@0.25.9)(jest-util@30.0.5)(jest@30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2)))(typescript@5.9.2):
+ ts-jest@29.4.5(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(esbuild@0.25.12)(jest-util@30.2.0)(jest@30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3)))(typescript@5.9.3):
dependencies:
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
handlebars: 4.7.8
- jest: 30.0.5(@types/node@24.3.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.9))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2))
+ jest: 30.0.5(@types/node@24.10.1)(babel-plugin-macros@3.1.0)(esbuild-register@3.6.0(esbuild@0.25.12))(ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3))
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
- semver: 7.7.2
+ semver: 7.7.3
type-fest: 4.41.0
- typescript: 5.9.2
+ typescript: 5.9.3
yargs-parser: 21.1.1
optionalDependencies:
- '@babel/core': 7.28.3
- '@jest/transform': 30.1.2
- '@jest/types': 30.0.5
- babel-jest: 30.1.2(@babel/core@7.28.3)
- esbuild: 0.25.9
- jest-util: 30.0.5
+ '@babel/core': 7.28.5
+ '@jest/transform': 30.2.0
+ '@jest/types': 30.2.0
+ babel-jest: 30.2.0(@babel/core@7.28.5)
+ esbuild: 0.25.12
+ jest-util: 30.2.0
- ts-loader@9.5.4(typescript@5.9.2)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)):
+ ts-loader@9.5.4(typescript@5.9.3)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)):
dependencies:
chalk: 4.1.2
enhanced-resolve: 5.18.3
micromatch: 4.0.8
- semver: 7.7.2
+ semver: 7.7.3
source-map: 0.7.6
- typescript: 5.9.2
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ typescript: 5.9.3
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
- ts-node@10.9.1(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.8.3):
+ ts-node@10.9.1(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.8.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
+ '@tsconfig/node10': 1.0.12
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
acorn: 8.15.0
acorn-walk: 8.3.4
arg: 4.1.3
@@ -25609,14 +28353,14 @@ snapshots:
optionalDependencies:
'@swc/core': 1.12.14(@swc/helpers@0.5.17)
- ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.8.3):
+ ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.8.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
+ '@tsconfig/node10': 1.0.12
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
acorn: 8.15.0
acorn-walk: 8.3.4
arg: 4.1.3
@@ -25629,21 +28373,21 @@ snapshots:
optionalDependencies:
'@swc/core': 1.12.14(@swc/helpers@0.5.17)
- ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.3.1)(typescript@5.9.2):
+ ts-node@10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@24.10.1)(typescript@5.9.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
+ '@tsconfig/node10': 1.0.12
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
acorn: 8.15.0
acorn-walk: 8.3.4
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.9.2
+ typescript: 5.9.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
@@ -25708,7 +28452,7 @@ snapshots:
dependencies:
content-type: 1.0.5
media-typer: 1.1.0
- mime-types: 3.0.1
+ mime-types: 3.0.2
typed-array-buffer@1.0.3:
dependencies:
@@ -25756,13 +28500,13 @@ snapshots:
typedarray@0.0.7: {}
- typescript-eslint@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3):
+ typescript-eslint@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.8.3)
- '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.2))(typescript@5.8.3)
- eslint: 9.34.0(jiti@2.4.2)
+ '@typescript-eslint/eslint-plugin': 8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.48.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.3)
+ eslint: 9.39.1(jiti@2.4.2)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -25771,7 +28515,7 @@ snapshots:
typescript@5.8.3: {}
- typescript@5.9.2: {}
+ typescript@5.9.3: {}
ufo@1.6.1: {}
@@ -25792,20 +28536,20 @@ snapshots:
buffer: 5.7.1
through: 2.3.8
- undici-types@7.10.0: {}
+ undici-types@7.16.0: {}
- undici@7.15.0: {}
+ undici@7.16.0: {}
unicode-canonical-property-names-ecmascript@2.0.1: {}
unicode-match-property-ecmascript@2.0.0:
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.1
- unicode-property-aliases-ecmascript: 2.1.0
+ unicode-property-aliases-ecmascript: 2.2.0
- unicode-match-property-value-ecmascript@2.2.0: {}
+ unicode-match-property-value-ecmascript@2.2.1: {}
- unicode-property-aliases-ecmascript@2.1.0: {}
+ unicode-property-aliases-ecmascript@2.2.0: {}
unicorn-magic@0.1.0: {}
@@ -25835,7 +28579,7 @@ snapshots:
unrs-resolver@1.11.1:
dependencies:
- napi-postinstall: 0.3.3
+ napi-postinstall: 0.3.4
optionalDependencies:
'@unrs/resolver-binding-android-arm-eabi': 1.11.1
'@unrs/resolver-binding-android-arm64': 1.11.1
@@ -25866,9 +28610,9 @@ snapshots:
upath@2.0.1: {}
- update-browserslist-db@1.1.3(browserslist@4.25.4):
+ update-browserslist-db@1.1.4(browserslist@4.28.0):
dependencies:
- browserslist: 4.25.4
+ browserslist: 4.28.0
escalade: 3.2.0
picocolors: 1.1.1
@@ -25880,9 +28624,9 @@ snapshots:
url-join@4.0.1: {}
- use-sync-external-store@1.5.0(react@19.1.0):
+ use-sync-external-store@1.6.0(react@19.2.1):
dependencies:
- react: 19.1.0
+ react: 19.2.1
use@3.1.1: {}
@@ -25927,7 +28671,7 @@ snapshots:
v8-to-istanbul@9.3.0:
dependencies:
- '@jridgewell/trace-mapping': 0.3.30
+ '@jridgewell/trace-mapping': 0.3.31
'@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
@@ -25948,13 +28692,13 @@ snapshots:
core-util-is: 1.0.2
extsprintf: 1.3.0
- vite-node@3.2.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1):
+ vite-node@3.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1):
dependencies:
cac: 6.7.14
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)
+ vite: 7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -25969,67 +28713,82 @@ snapshots:
- tsx
- yaml
- vite-plugin-dts@4.5.4(@types/node@24.3.1)(rollup@4.50.0)(typescript@5.8.3)(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)):
+ vite-plugin-dts@4.5.4(@types/node@24.10.1)(rollup@4.53.3)(typescript@5.8.3)(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)):
dependencies:
- '@microsoft/api-extractor': 7.52.11(@types/node@24.3.1)
- '@rollup/pluginutils': 5.3.0(rollup@4.50.0)
- '@volar/typescript': 2.4.23
+ '@microsoft/api-extractor': 7.55.1(@types/node@24.10.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.53.3)
+ '@volar/typescript': 2.4.26
'@vue/language-core': 2.2.0(typescript@5.8.3)
compare-versions: 6.1.1
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
kolorist: 1.8.0
local-pkg: 1.1.2
- magic-string: 0.30.18
+ magic-string: 0.30.21
typescript: 5.8.3
optionalDependencies:
- vite: 7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)
+ vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1):
+ vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1):
+ dependencies:
+ esbuild: 0.25.12
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
+ rollup: 4.53.3
+ tinyglobby: 0.2.15
+ optionalDependencies:
+ '@types/node': 24.10.1
+ fsevents: 2.3.3
+ jiti: 2.4.2
+ terser: 5.44.1
+ yaml: 2.8.1
+
+ vite@7.2.7(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1):
dependencies:
- esbuild: 0.25.9
+ esbuild: 0.25.12
fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
postcss: 8.5.6
- rollup: 4.50.0
- tinyglobby: 0.2.14
+ rollup: 4.53.3
+ tinyglobby: 0.2.15
optionalDependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
fsevents: 2.3.3
jiti: 2.4.2
- terser: 5.44.0
+ terser: 5.44.1
yaml: 2.8.1
- vitest@3.2.4(@types/node@24.3.1)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.44.0)(yaml@2.8.1):
+ vitest@3.2.4(@types/node@24.10.1)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@26.1.0)(terser@5.44.1)(yaml@2.8.1):
dependencies:
- '@types/chai': 5.2.2
+ '@types/chai': 5.2.3
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(vite@7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1))
+ '@vitest/mocker': 3.2.4(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1))
'@vitest/pretty-format': 3.2.4
'@vitest/runner': 3.2.4
'@vitest/snapshot': 3.2.4
'@vitest/spy': 3.2.4
'@vitest/utils': 3.2.4
chai: 5.3.3
- debug: 4.4.1(supports-color@8.1.1)
+ debug: 4.4.3(supports-color@8.1.1)
expect-type: 1.2.2
- magic-string: 0.30.18
+ magic-string: 0.30.21
pathe: 2.0.3
picomatch: 4.0.3
- std-env: 3.9.0
+ std-env: 3.10.0
tinybench: 2.9.0
tinyexec: 0.3.2
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 7.1.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)
- vite-node: 3.2.4(@types/node@24.3.1)(jiti@2.4.2)(terser@5.44.0)(yaml@2.8.1)
+ vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
+ vite-node: 3.2.4(@types/node@24.10.1)(jiti@2.4.2)(terser@5.44.1)(yaml@2.8.1)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 24.3.1
+ '@types/node': 24.10.1
'@vitest/ui': 3.2.4(vitest@3.2.4)
jsdom: 26.1.0
transitivePeerDependencies:
@@ -26087,6 +28846,8 @@ snapshots:
web-streams-polyfill@3.3.3: {}
+ web-worker@1.5.0: {}
+
webidl-conversions@3.0.1: {}
webidl-conversions@4.0.2: {}
@@ -26111,25 +28872,25 @@ snapshots:
- bufferutil
- utf-8-validate
- webpack-dev-middleware@7.4.2(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)):
+ webpack-dev-middleware@7.4.5(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)):
dependencies:
colorette: 2.0.20
- memfs: 4.38.2
- mime-types: 2.1.35
+ memfs: 4.51.0
+ mime-types: 3.0.2
on-finished: 2.4.1
range-parser: 1.2.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
optionalDependencies:
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
- webpack-dev-server@5.2.2(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)):
+ webpack-dev-server@5.2.2(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
- '@types/express': 4.17.23
- '@types/express-serve-static-core': 4.19.6
+ '@types/express': 4.17.25
+ '@types/express-serve-static-core': 4.19.7
'@types/serve-index': 1.9.4
- '@types/serve-static': 1.15.8
+ '@types/serve-static': 1.15.10
'@types/sockjs': 0.3.36
'@types/ws': 8.18.1
ansi-html-community: 0.0.8
@@ -26140,20 +28901,20 @@ snapshots:
connect-history-api-fallback: 2.0.0
express: 4.21.2
graceful-fs: 4.2.11
- http-proxy-middleware: 2.0.9(@types/express@4.17.23)
+ http-proxy-middleware: 2.0.9(@types/express@4.17.25)
ipaddr.js: 2.2.0
- launch-editor: 2.11.1
+ launch-editor: 2.12.0
open: 10.2.0
p-retry: 6.2.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
selfsigned: 2.4.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 7.4.2(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
+ webpack-dev-middleware: 7.4.5(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
ws: 8.18.3
optionalDependencies:
- webpack: 5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)
+ webpack: 5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)
transitivePeerDependencies:
- bufferutil
- debug
@@ -26170,7 +28931,7 @@ snapshots:
webpack-virtual-modules@0.6.2: {}
- webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9):
+ webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.8
@@ -26180,7 +28941,7 @@ snapshots:
'@webassemblyjs/wasm-parser': 1.14.1
acorn: 8.15.0
acorn-import-phases: 1.0.4(acorn@8.15.0)
- browserslist: 4.25.4
+ browserslist: 4.28.0
chrome-trace-event: 1.0.4
enhanced-resolve: 5.18.3
es-module-lexer: 1.7.0
@@ -26189,12 +28950,12 @@ snapshots:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
+ loader-runner: 4.3.1
mime-types: 2.1.35
neo-async: 2.6.2
- schema-utils: 4.3.2
- tapable: 2.2.3
- terser-webpack-plugin: 5.3.14(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9)(webpack@5.101.3(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.9))
+ schema-utils: 4.3.3
+ tapable: 2.3.0
+ terser-webpack-plugin: 5.3.14(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12)(webpack@5.103.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(esbuild@0.25.12))
watchpack: 2.4.4
webpack-sources: 3.3.3
transitivePeerDependencies:
@@ -26275,7 +29036,7 @@ snapshots:
is-async-function: 2.1.1
is-date-object: 1.1.0
is-finalizationregistry: 1.1.1
- is-generator-function: 1.1.0
+ is-generator-function: 1.1.2
is-regex: 1.2.1
is-weakref: 1.1.1
isarray: 2.0.5
@@ -26325,7 +29086,7 @@ snapshots:
wordwrap@1.0.0: {}
- workerpool@9.3.3: {}
+ workerpool@9.3.4: {}
wrap-ansi@6.2.0:
dependencies:
@@ -26341,9 +29102,9 @@ snapshots:
wrap-ansi@8.1.0:
dependencies:
- ansi-styles: 6.2.1
+ ansi-styles: 6.2.3
string-width: 5.1.2
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
wrappy@1.0.2: {}
@@ -26376,6 +29137,8 @@ snapshots:
xml-name-validator@5.0.0: {}
+ xml-utils@1.10.2: {}
+
xmlchars@2.2.0: {}
xtend@4.0.2: {}
@@ -26427,4 +29190,15 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.2.1: {}
+ yocto-queue@1.2.2: {}
+
+ zod-validation-error@4.0.2(zod@4.1.13):
+ dependencies:
+ zod: 4.1.13
+
+ zod@4.1.13: {}
+
+ zstd-codec@0.1.5:
+ optional: true
+
+ zstddec@0.1.0: {}