diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..d98b5fe
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,165 @@
+name: Backend Test Suite
+
+on:
+ push:
+ branches: [develop]
+ pull_request:
+ branches: [develop]
+ workflow_dispatch:
+
+permissions:
+ contents: read
+
+concurrency:
+ group: backend-tests-${{ github.ref }}
+ cancel-in-progress: true
+
+jobs:
+ backend:
+ name: Run full backend test suite
+ runs-on: ubuntu-latest
+ timeout-minutes: 45
+
+ services:
+ paradedb:
+ image: paradedb/paradedb:0.18.11
+ env:
+ POSTGRES_USER: postgres
+ POSTGRES_PASSWORD: postgres
+ POSTGRES_DB: opengeometadata_api
+ ports:
+ - 2345:5432
+ options: >-
+ --health-cmd "pg_isready -U postgres -d opengeometadata_api"
+ --health-interval 5s
+ --health-timeout 5s
+ --health-retries 12
+ elasticsearch:
+ image: docker.elastic.co/elasticsearch/elasticsearch:9.0.0
+ env:
+ discovery.type: single-node
+ xpack.security.enabled: "false"
+ ES_JAVA_OPTS: -Xms1g -Xmx1g
+ ports:
+ - 9200:9200
+ options: >-
+ --ulimit nofile=65536:65536
+ --health-cmd "curl -fsS http://localhost:9200/_cluster/health?wait_for_status=yellow&timeout=60s || exit 1"
+ --health-interval 10s
+ --health-timeout 10s
+ --health-retries 18
+ redis:
+ image: redis:7.4.6-alpine
+ ports:
+ - 6379:6379
+ options: >-
+ --health-cmd "redis-cli ping | grep PONG"
+ --health-interval 5s
+ --health-timeout 3s
+ --health-retries 12
+
+ env:
+ APP_ENV: test
+ POSTGRES_PASSWORD: postgres
+ DB_PASSWORD: postgres
+ DB_USER: postgres
+ DB_HOST: localhost
+ DB_PORT: "2345"
+ TEST_DB_NAME: opengeometadata_api_test
+ DATABASE_URL: postgresql+asyncpg://postgres:postgres@localhost:2345/opengeometadata_api_test
+ APPLICATION_URL: http://localhost:8000
+ ELASTICSEARCH_URL: http://localhost:9200
+ ELASTICSEARCH_INDEX: opengeometadata_api_test
+ REDIS_HOST: localhost
+ REDIS_PORT: "6379"
+ REDIS_DB: "1"
+ ENDPOINT_CACHE: "false"
+ TURNSTILE_ENABLED: "false"
+ DISABLE_API_USAGE_LOG: "true"
+ DISABLE_RATE_LIMIT_FOR_TESTS: "true"
+ WALLCLOCK_TIMEOUT_SECONDS: "900"
+ TIMEOUT_GRACE_SECONDS: "30"
+
+ steps:
+ - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
+
+ - name: Install system dependencies
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y \
+ gcc \
+ g++ \
+ python3-dev \
+ libjpeg-dev \
+ zlib1g-dev \
+ libpng-dev \
+ libcairo2-dev \
+ pkg-config \
+ gdal-bin \
+ libgdal-dev \
+ curl \
+ ca-certificates
+
+ - name: Set up Python
+ uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
+ with:
+ python-version: "3.11"
+ cache: pip
+ cache-dependency-path: |
+ backend/pyproject.toml
+ backend/uv.lock
+
+ - name: Install backend dependencies
+ run: |
+ python -m pip install --upgrade pip
+ python -m pip install -e "backend[dev]"
+
+ - name: Prepare backend test database
+ working-directory: backend
+ run: |
+ python - <<'PY'
+ import os
+
+ import psycopg2
+ from psycopg2 import sql
+ from psycopg2.extensions import ISOLATION_LEVEL_AUTOCOMMIT
+
+ db_name = os.environ["TEST_DB_NAME"]
+ conn = psycopg2.connect(
+ dbname="postgres",
+ user=os.environ["DB_USER"],
+ password=os.environ["DB_PASSWORD"],
+ host=os.environ["DB_HOST"],
+ port=os.environ["DB_PORT"],
+ )
+ conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT)
+ try:
+ with conn.cursor() as cur:
+ cur.execute("SELECT 1 FROM pg_database WHERE datname = %s", (db_name,))
+ if cur.fetchone() is None:
+ cur.execute(
+ sql.SQL("CREATE DATABASE {}").format(sql.Identifier(db_name))
+ )
+ finally:
+ conn.close()
+ PY
+
+ - name: Run backend tests with coverage
+ working-directory: backend
+ run: |
+ python scripts/run_with_timeout.py \
+ python -X faulthandler -m pytest \
+ -n 2 \
+ -m "not network" \
+ --cov=app \
+ --cov-report=term-missing \
+ --cov-report=xml \
+ --cov-fail-under=50
+
+ - name: Upload backend coverage
+ if: always()
+ uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
+ with:
+ name: backend-coverage
+ path: backend/coverage.xml
+ if-no-files-found: ignore
diff --git a/.github/workflows/ogm-nightly-sync.yml b/.github/workflows/ogm-nightly-sync.yml
index a3e4dd0..511ec90 100644
--- a/.github/workflows/ogm-nightly-sync.yml
+++ b/.github/workflows/ogm-nightly-sync.yml
@@ -19,7 +19,7 @@ jobs:
steps:
- name: Start SSH agent
- uses: webfactory/ssh-agent@v0.9.0
+ uses: webfactory/ssh-agent@dc588b651fe13675774614f8e6a936a468676387 # v0.9.0
with:
ssh-private-key: ${{ secrets.OGM_KAMAL_SSH_PRIVATE_KEY }}
diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml
index 0bd74c8..916fc05 100644
--- a/.github/workflows/ruff.yml
+++ b/.github/workflows/ruff.yml
@@ -2,28 +2,30 @@ name: Ruff
on:
push:
- branches: [ develop ]
+ branches: [develop]
pull_request:
- branches: [ develop ]
+ branches: [develop]
+
+permissions:
+ contents: read
jobs:
lint:
name: Run Ruff
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
-
+ - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
+
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: '3.11'
cache: 'pip'
-
+
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- pip install ruff
-
- - name: Run Ruff formatter
- run: |
- make format
\ No newline at end of file
+ pip install ruff==0.11.6
+
+ - name: Check formatting and lint
+ run: make lint-check
diff --git a/.github/workflows/transfer-readiness.yml b/.github/workflows/transfer-readiness.yml
new file mode 100644
index 0000000..8f06b09
--- /dev/null
+++ b/.github/workflows/transfer-readiness.yml
@@ -0,0 +1,19 @@
+name: Transfer Readiness
+
+on:
+ push:
+ branches: [develop]
+ pull_request:
+ branches: [develop]
+
+permissions:
+ contents: read
+
+jobs:
+ invariants:
+ name: Check repository and deployment invariants
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
+ - name: Verify transfer preparation
+ run: ./scripts/verify_transfer_readiness.sh
diff --git a/.gitignore b/.gitignore
index c7811ff..f44a537 100644
--- a/.gitignore
+++ b/.gitignore
@@ -135,6 +135,9 @@ venv.bak/
# Kamal
.kamal/
+# Generated visual assets are runtime cache data, never repository source.
+backend/static/maps/
+
# Spyder project settings
.spyderproject
.spyproject
diff --git a/Makefile b/Makefile
index f22e87e..7005384 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: lint format lint-check test test-fast test-no-coverage migrate reindex gazetteers ogm-nightly cache-prime cache-prime-background kamal-registry-login
+.PHONY: lint format lint-check test test-fast test-no-coverage migrate reindex gazetteers ogm-nightly cache-prime cache-prime-background kamal-registry-login transfer-readiness transfer-readiness-full
BACKEND_DIR = backend
@@ -48,3 +48,9 @@ cache-prime-background:
kamal-registry-login:
./scripts/kamal_registry_login.sh
+
+transfer-readiness:
+ ./scripts/verify_transfer_readiness.sh
+
+transfer-readiness-full:
+ ./scripts/verify_transfer_readiness.sh --full-history
diff --git a/README.md b/README.md
index a0c32e8..b691b49 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,71 @@
# OpenGeoMetadata API
-This repository now runs entirely from [backend](backend/), which mirrors the current BTAA Geospatial API backend while being themed and operated for the OpenGeoMetadata community.
-
-The old root-level API implementation has been retired into [legacy/root_api](legacy/root_api/). The repo root is now just project scaffolding for Docker, Kamal, docs, and convenience commands; the application code lives in `backend/`.
-
-## Local Setup
+OpenGeoMetadata API is a deployable search, harvest, and delivery service for
+public [OpenGeoMetadata](https://opengeometadata.org/) Aardvark records. It is
+being prepared as the reference API node for the proposed
+[OpenGeoMetadata API Mirror Network](https://github.com/OpenGeoMetadata/ogm-mirror-network).
+
+> [!IMPORTANT]
+> The mirror-network proposal is a **Draft for Community Discussion**
+> (`OGM-DISCUSSION-2026-01`), not an approved OGM roadmap, production
+> commitment, or technical standard. This repository implements capabilities a
+> mirror node needs; it does not claim that the proposed network already exists.
+
+## Role in the mirror network
+
+The proposal separates the public service from any one institution:
+
+1. Public Aardvark files in OpenGeoMetadata GitHub repositories remain the
+ canonical metadata source.
+2. Each mirror independently harvests that corpus into local PostgreSQL and
+ Elasticsearch services and keeps its own Redis and generated caches.
+3. A protected global endpoint would route public read traffic only to mirrors
+ that are compatible, healthy, sufficiently current, and within capacity.
+4. Institutional OGM Discovery sites would use the stable network endpoint
+ rather than bind themselves to one campus origin.
+5. The OGM service operator would deploy the same pinned application release
+ to each mirror with Kamal, using staged upgrades and rollback.
+
+This repository supplies the API/node software in that model. The
+[technical implementation guide](https://github.com/OpenGeoMetadata/ogm-mirror-network/blob/main/proposal/opengeometadata-api-mirror-network-technical-implementation.md)
+is the canonical source for the proposed network architecture and pilot
+acceptance criteria.
+
+## Current implementation status
+
+| Capability | Status |
+| --- | --- |
+| Discover OpenGeoMetadata repositories and harvest `metadata-aardvark/` | Implemented |
+| Nightly reconciliation with webhook-triggered acceleration | Implemented for the current production node |
+| PostgreSQL record/provenance state and Elasticsearch discovery index | Implemented |
+| Redis hot caches plus durable generated representations and visual assets | Implemented |
+| Public search, resource, OGC, MCP, viewer, thumbnail, and static-map APIs | Implemented |
+| Single-host Kamal topology with web, worker, cron, PostgreSQL, Elasticsearch, and Redis | Implemented |
+| OGM repository monitoring dashboard | Implemented |
+| Shared global edge, origin drain/rejoin, and weighted multi-mirror routing | Proposed pilot work |
+| Network readiness contract and deterministic `corpus_generation` | Proposed pilot work |
+| Shared webhook fan-out and fleet-wide release orchestration | Proposed pilot work |
+| Demonstrated multi-node failover and rebuild acceptance tests | Proposed pilot work |
+
+Administrative, webhook, harvest, reindex, and deployment operations are a
+restricted control plane. A future shared endpoint is intended only for safe
+public `GET` and `HEAD` routes.
+
+## Repository layout
+
+- `backend/` — FastAPI application, workers, migrations, scripts, and tests
+- `config/` — Kamal deployment, cron, database initialization, and upstream provenance
+- `docs/` — operator, development, cache, deployment, and migration documentation
+- `scripts/` — repository-level upstream and registry helpers
+- `legacy/root_api/` — retired pre-backend implementation; not the runtime application
+
+The backend began from the `geobtaa/api` backend subtree and now carries an
+OpenGeoMetadata-owned harvesting, branding, deployment, and cache overlay. It
+is not a Git fork with mergeable history. See
+[BTAA backend reconciliation](docs/upstream_reconciliation.md) for the pinned
+source baseline, selective-port decisions, and accepted upstream fixes.
+
+## Local development
Copy the environment template:
@@ -12,159 +73,141 @@ Copy the environment template:
cp .env.example .env
```
-The checked-in `.env.example` is host-friendly for backend-local commands. Docker services override the container-only hostnames internally, so the same `.env` also works with `docker compose`.
-
-For local Docker development, Elasticsearch defaults `ELASTICSEARCH_DISK_THRESHOLD_ENABLED=false` so Docker Desktop disk-watermark quirks do not leave the single-node index unassigned. If you want stricter production-like allocation checks, set it back to `true` in `.env`.
-
-If you want to run the backend directly on your host machine, install dependencies with `uv`:
-
-```bash
-uv venv
-source .venv/bin/activate
-cd backend
-uv pip install -e ".[dev]"
-```
-
-## Run With Docker
+Do not place production credentials in the repository. `.env` and `.kamal/`
+are ignored local files; shared deployments must resolve secrets from an
+approved environment or secret manager.
-Start the API plus its backing services:
+Start the complete local stack:
```bash
docker compose up -d --build
-```
-
-Then initialize the app. The most reliable path is to run backend scripts inside the API container:
-
-```bash
docker compose exec api bash -lc "cd /app/backend && python scripts/run_migrations.py"
docker compose exec api bash -lc "cd /app/backend && python scripts/run_index.py"
```
-`scripts/run_gazetteers.py` is optional for OGM-focused local work and can usually be skipped unless you specifically need the gazetteer-backed enrichment features.
+Local endpoints:
-Once that finishes, open:
+- API documentation: `http://localhost:8000/api/docs`
+- OpenAPI document: `http://localhost:8000/api/openapi.json`
+- OGM repository dashboard: `http://localhost:8000/api/v1/ogm/repos/dashboard`
+- Elasticsearch: `http://localhost:9200`
+- PostgreSQL: `localhost:2345`
+- Redis: `localhost:6380`
+- Flower, for optional local worker inspection: `http://localhost:5555`
-- API docs at `http://localhost:8000/api/docs`
-- OpenAPI JSON at `http://localhost:8000/api/openapi.json`
-- OGM repository dashboard at `http://localhost:8000/api/v1/ogm/repos/dashboard`
+For host-based Python development:
-This starts:
+```bash
+uv venv
+source .venv/bin/activate
+cd backend
+uv pip install -e ".[dev]"
+```
-- API at `http://localhost:8000`
-- Elasticsearch at `http://localhost:9200`
-- ParadeDB/Postgres at `localhost:2345`
-- Redis at `localhost:6380`
-- Flower at `http://localhost:5555`
+## Harvesting and indexing
-## Common Commands
+The current node supports:
-From the repo root:
+- repository discovery with `backend/scripts/populate_ogm_repos.py`;
+- scheduled reconciliation with `backend/scripts/trigger_ogm_nightly_sync.py`;
+- signed webhook ingestion at `POST /api/v1/admin/ogm/webhook`; and
+- explicit index construction with `backend/scripts/run_index.py`.
-```bash
-cd backend && python scripts/trigger_ogm_nightly_sync.py --dry-run
-cd backend && python scripts/run_migrations.py
-cd backend && python scripts/run_index.py
-cd backend && python scripts/run_gazetteers.py
-cd backend && python scripts/prime_generated_caches.py --limit 100
-```
+Set `GITHUB_TOKEN` in the local environment when running GitHub discovery at a
+rate that exceeds anonymous API limits. Set `OGM_WEBHOOK_SECRET` only through
+the deployment secret source.
-Or use Make targets:
+Common commands from the repository root:
```bash
make migrate
make reindex
-make gazetteers
make ogm-nightly
make cache-prime ARGS="--limit 100"
-make cache-prime-background ARGS="--limit 1000"
make test
+make lint-check
```
-If you prefer not to install Python dependencies locally, the same commands can be run in Docker:
-
-```bash
-docker compose exec api bash -lc "cd /app/backend && python scripts/run_migrations.py"
-docker compose exec api bash -lc "cd /app/backend && python scripts/run_index.py"
-docker compose exec api bash -lc "cd /app/backend && python scripts/prime_generated_caches.py --limit 100"
-docker compose exec api bash -lc "cd /app/backend && python scripts/trigger_ogm_nightly_sync.py --dry-run"
-```
+Pull requests and pushes to `develop` run the complete backend suite in GitHub
+Actions against isolated ParadeDB, Elasticsearch, and Redis services. The CI
+job also produces a coverage artifact and enforces a 50% application coverage
+floor.
-## OGM Harvesting
+The nightly reconciliation path is the correctness mechanism. Webhooks reduce
+freshness latency but must not be the only way a mirror discovers changes.
-The backend includes:
+## Generated caches
-- GitHub-org discovery via `backend/scripts/populate_ogm_repos.py`
-- nightly repo refresh + harvest enqueue via `backend/scripts/trigger_ogm_nightly_sync.py`
-- webhook-triggered harvesting via `POST /api/v1/admin/ogm/webhook`
+Resource representations, thumbnails, and static maps are generated runtime
+data. They are stored in Redis and durable database-backed caches and are not
+committed as source files.
-Set `GITHUB_TOKEN` in `.env` before running the OGM sync scripts if you want to avoid low unauthenticated GitHub API rate limits.
-
-For near-real-time harvesting, configure an OpenGeoMetadata organization webhook:
-
-- Payload URL: `https://ogm.geo4lib.app/api/v1/admin/ogm/webhook`
-- Content type: `application/json`
-- Secret: production `OGM_WEBHOOK_SECRET`
-- Events: `repository`, `public`, and `push`
-
-The webhook discovers newly created/publicized/transferred/unarchived OGM repos, enables repos
-with a top-level `metadata-aardvark/` directory, and queues harvests when pushes touch
-`metadata-aardvark/`. The nightly job remains the reconciliation path in case a delivery is missed.
-
-For a first local bootstrap with real OGM data:
+After migrations and indexing, warm a bounded set:
```bash
-docker compose exec api bash -lc "cd /app/backend && python scripts/populate_ogm_repos.py"
-docker compose exec api bash -lc "cd /app/backend && python - <<'PY'\nfrom app.tasks.ogm_harvest import ogm_harvest_all\nprint(ogm_harvest_all.delay(trigger='nightly').id)\nPY"
-docker compose exec api bash -lc "cd /app/backend && python scripts/run_index.py"
+make cache-prime ARGS="--limit 1000"
```
-The harvest populates Postgres first. Re-run `python scripts/run_index.py` from `backend/` after the harvest queue completes so Elasticsearch reflects the imported OGM records.
+See [cache priming](docs/cache_priming.md) for production and background
+workflows. Full-corpus runs deliberately avoid loading every image body into
+Redis.
-Production also has a dedicated monitor page at `/api/v1/ogm/repos/dashboard` and a nightly
-GitHub Actions workflow for OGM repo discovery + harvest orchestration.
+## Releases and upstream provenance
-See [docs/backend_upstream_sync.md](docs/backend_upstream_sync.md) for the upstream-sync and repo-watching strategy.
+OGM product versions and BTAA backend provenance are separate:
-## Generated Cache Priming
+- the product version describes this repository's API contract and release;
+- `config/geobtaa-backend-source.env` records the last complete BTAA subtree
+ import; and
+- `docs/upstream_reconciliation.md` records selective ports made after that
+ import.
-After migrations and indexing, prebuild generated artifacts with:
+Do not merge `geobtaa/api` into this repository. Preview a complete backend
+import only when a deliberate rebase of the downstream product is intended:
```bash
-make cache-prime ARGS="--limit 1000"
+./scripts/sync_backend_from_data_api.sh
```
-For a production background run after deploy:
+The helper protects the paths in `config/ogm-owned-paths.txt`. An applied
+import still requires diff review, the complete test suite, and a new
+reconciliation record.
-```bash
-kamal app exec "python /app/backend/scripts/run_migrations.py"
-kamal app exec "cd /app/backend && ./scripts/start_cache_prime_background.sh"
-kamal app exec "tail -f /app/backend/logs/prime_generated_caches.log"
-```
+## Deployment and repository transfer
-The combined primer warms durable generated resource representations, thumbnail
-assets, and static-map/basemap assets. Full-corpus runs avoid hydrating every
-image body into Redis by default; add `--hydrate-assets` only for bounded hotsets
-or hosts sized for that memory profile.
+The current production node uses Kamal. Its stable operational identity is the
+`ogm-api` service, existing hostname, role topology, accessory names, and host
+volume paths—not the GitHub repository URL.
-See [docs/cache_priming.md](docs/cache_priming.md) for details.
+Repository transfer and container-registry migration are intentionally
+separate changes. Preserve the running image path during the GitHub transfer,
+then prove an organization-owned image with dual publication and rollback
+before changing `config/deploy.yml`.
-## Upstream Backend Sync
+Read these before an operational change:
-This repo is maintained as the OpenGeoMetadata API product with `backend/`
-imported from `geobtaa/api`.
+- [Deployment guide](docs/deployment.md)
+- [Repository transfer runbook](docs/repository_transfer.md)
+- [Repository transfer rehearsal](docs/repository_transfer_rehearsal.md)
+- [Pre-transfer branch inventory](docs/repository_branch_inventory.md)
+- [BTAA backend reconciliation](docs/upstream_reconciliation.md)
+- [Backend sync design](docs/backend_upstream_sync.md)
-Preview an upstream backend import:
+Never change the Kamal service name, persistent volume paths, repository owner,
+and image namespace in one deployment.
-```bash
-./scripts/sync_backend_from_data_api.sh
-```
+## Project status and participation
-Apply after review:
+This codebase is being prepared for community ownership under the
+OpenGeoMetadata organization. Mirror-network governance, sponsorship, service
+objectives, edge ownership, and pilot authorization remain community
+decisions. Discussion of the proposal belongs in the
+[ogm-mirror-network issue tracker](https://github.com/OpenGeoMetadata/ogm-mirror-network/issues).
-```bash
-./scripts/sync_backend_from_data_api.sh --apply
-```
+Code contributions should preserve the public API contract, keep derived state
+rebuildable from canonical GitHub metadata, include focused tests, and document
+any change to deployment or upstream provenance.
+
+## License
-The helper uses `git subtree split` to read only `geobtaa/api/backend`, protects
-OpenGeoMetadata-owned files from `config/ogm-owned-paths.txt`, and records
-applied import metadata in `config/geobtaa-backend-source.env`.
+See [LICENSE](LICENSE).
diff --git a/backend/__appsignal__.py b/backend/__appsignal__.py
index 3f524ea..0cd3598 100644
--- a/backend/__appsignal__.py
+++ b/backend/__appsignal__.py
@@ -1,6 +1,6 @@
from appsignal import Appsignal
appsignal = Appsignal(
- name="BTAA Geospatial API - Dev",
+ name="OpenGeoMetadata API - Dev",
active=True,
)
diff --git a/backend/app/api/v1/endpoint_modules/root.py b/backend/app/api/v1/endpoint_modules/root.py
index 66e58ca..1ee7319 100644
--- a/backend/app/api/v1/endpoint_modules/root.py
+++ b/backend/app/api/v1/endpoint_modules/root.py
@@ -6,6 +6,7 @@
from app.api.errors import PUBLIC_ERROR_RESPONSES
from app.api.schemas import APIRootResponse
from app.api.v1.utils import create_jsonapi_response
+from app.identity import API_DESCRIPTION, API_NAME, API_VERSION
logger = logging.getLogger(__name__)
@@ -19,12 +20,9 @@ async def api_root(request: Request):
"type": "api_info",
"id": "root",
"attributes": {
- "api": "BTAA Geospatial API",
- "version": "0.7.0",
- "description": (
- "A RESTful API that provides access to digitized maps and geospatial data "
- "resources curated by Big Ten Academic Alliance member libraries."
- ),
+ "api": API_NAME,
+ "version": API_VERSION,
+ "description": API_DESCRIPTION,
"endpoints": [
"/api/v1/",
"/api/v1/feedback",
diff --git a/backend/app/elasticsearch/search.py b/backend/app/elasticsearch/search.py
index 821e180..e206af8 100644
--- a/backend/app/elasticsearch/search.py
+++ b/backend/app/elasticsearch/search.py
@@ -748,7 +748,13 @@ def _build_bbox_overlap_filter(
q_maxy: float,
min_overlap_ratio: float,
) -> dict:
- """Filter out trivial bbox overlaps using IoU overlap ratio."""
+ """Filter out overlaps covering only a trivial fraction of the document bbox.
+
+ The configuration and parameter names retain ``overlap``/``IoU`` for backward
+ compatibility, but eligibility must be based on document containment. Using IoU
+ here incorrectly rejects small resources that are fully inside a much larger
+ search area because the query area dominates the union.
+ """
return {
"script": {
"script": {
@@ -791,13 +797,13 @@ def _build_bbox_overlap_filter(
return false;
}
- double unionArea = docArea + queryArea - intersection;
- if (unionArea <= 0.0) {
- return false;
- }
-
- double overlapRatio = intersection / unionArea;
- return overlapRatio >= params.minOverlapRatio;
+ // Measure how much of the resource extent is covered by the
+ // query. A small city dataset fully inside a state-sized query
+ // should remain eligible even though its IoU is near zero.
+ // Conversely, a state-sized query touching only a tiny piece
+ // of a global resource should still be rejected.
+ double docContainmentRatio = intersection / docArea;
+ return docContainmentRatio >= params.minOverlapRatio;
""",
"params": {
"qMinX": q_minx,
@@ -3038,14 +3044,11 @@ async def find_similar_resources(resource_id: str, limit: int = 12) -> list:
index_name = os.getenv("ELASTICSEARCH_INDEX", "btaa_geospatial_api")
try:
- # First, check if the resource exists in Elasticsearch
- try:
- doc = await es.get(index=index_name, id=resource_id)
- if not doc:
- logger.warning(f"Resource {resource_id} not found in Elasticsearch")
- return []
- except NotFoundError:
- logger.warning(f"Resource {resource_id} not found in Elasticsearch")
+ # Use HEAD/exists instead of GET so retired database records that are
+ # intentionally absent from the search index do not create traced 404s.
+ resource_exists = await es.exists(index=index_name, id=resource_id)
+ if not resource_exists:
+ logger.warning("Resource %s not found in Elasticsearch", resource_id)
return []
# Build more_like_this query
diff --git a/backend/app/identity.py b/backend/app/identity.py
new file mode 100644
index 0000000..795463d
--- /dev/null
+++ b/backend/app/identity.py
@@ -0,0 +1,43 @@
+"""Project identity shared by the API's public interfaces."""
+
+import os
+from importlib import metadata
+from pathlib import Path
+
+try:
+ import tomllib
+except ImportError: # pragma: no cover - Python 3.11+ provides tomllib
+ import tomli as tomllib
+
+API_NAME = "OpenGeoMetadata API"
+API_SLUG = "opengeometadata-api"
+API_DESCRIPTION = (
+ "A RESTful API for searching, harvesting, and delivering community-maintained "
+ "OpenGeoMetadata Aardvark records."
+)
+DISTRIBUTION_NAME = "opengeometadata-api"
+
+
+def _source_version() -> str | None:
+ """Read the source-tree version when running from a checkout or container image."""
+ pyproject_path = Path(__file__).resolve().parents[1] / "pyproject.toml"
+ try:
+ with pyproject_path.open("rb") as pyproject:
+ return tomllib.load(pyproject)["project"]["version"]
+ except (KeyError, OSError, tomllib.TOMLDecodeError):
+ return None
+
+
+def get_api_version() -> str:
+ """Return the deployment override, source version, or installed package version."""
+ if configured_version := os.getenv("OGM_API_VERSION"):
+ return configured_version
+ if source_version := _source_version():
+ return source_version
+ try:
+ return metadata.version(DISTRIBUTION_NAME)
+ except metadata.PackageNotFoundError:
+ return "0.0.0+unknown"
+
+
+API_VERSION = get_api_version()
diff --git a/backend/app/main.py b/backend/app/main.py
index 0278109..d904118 100644
--- a/backend/app/main.py
+++ b/backend/app/main.py
@@ -43,6 +43,7 @@
from app.api.ogc import router as ogc_router
from app.api.v1.endpoints import router as public_router
from app.elasticsearch import close_elasticsearch, init_elasticsearch
+from app.identity import API_NAME, API_VERSION
from app.middleware.rate_limit_middleware import RateLimitMiddleware
from app.middleware.turnstile_middleware import TurnstileMiddleware
from app.services.sitemap_service import (
@@ -51,7 +52,7 @@
build_x_robots_tag,
close_store,
generate_and_store,
- get_sitemap_document,
+ get_current_sitemap_document,
is_valid_sitemap_part_name,
)
from db.async_engine import dispose_app_async_engines
@@ -150,8 +151,8 @@ async def lifespan(app: FastAPI):
# Create FastAPI application
app = FastAPI(
- title="BTAA Geospatial API",
- version="0.7.0",
+ title=API_NAME,
+ version=API_VERSION,
lifespan=lifespan,
docs_url=None,
redoc_url="/api/redoc",
@@ -268,7 +269,7 @@ async def api_v1_no_slash_redirect():
@app.get("/sitemap.xml", include_in_schema=False)
async def sitemap_xml() -> Response:
- xml_content = await get_sitemap_document(SITEMAP_ROOT_NAME)
+ xml_content = await get_current_sitemap_document(SITEMAP_ROOT_NAME)
if xml_content is None:
result, _stored = await generate_and_store()
xml_content = result.documents[SITEMAP_ROOT_NAME]
@@ -284,7 +285,7 @@ async def sitemap_part_xml(filename: str) -> Response:
if not is_valid_sitemap_part_name(part_name):
raise HTTPException(status_code=404, detail="Sitemap part not found")
- xml_content = await get_sitemap_document(part_name)
+ xml_content = await get_current_sitemap_document(part_name)
if xml_content is None:
result, _stored = await generate_and_store()
xml_content = result.documents.get(part_name)
@@ -411,7 +412,7 @@ async def custom_docs(request: Request) -> HTMLResponse:
"docs.html",
{
"request": request,
- "title": "BTAA Geospatial API — Endpoints",
+ "title": f"{API_NAME} — Endpoints",
"openapi_url": app.openapi_url,
},
)
diff --git a/backend/app/services/mcp_service.py b/backend/app/services/mcp_service.py
index fcc628b..515041a 100644
--- a/backend/app/services/mcp_service.py
+++ b/backend/app/services/mcp_service.py
@@ -19,15 +19,16 @@
)
from sqlalchemy import func, select
+from app.identity import API_NAME, API_SLUG, API_VERSION
from app.services.search_service import SearchService
from db.models import resources
from db.session import async_session as app_async_session
logger = logging.getLogger(__name__)
-MCP_SERVICE_NAME = "btaa-geospatial-api"
-MCP_SERVICE_VERSION = "0.7.0"
-MCP_SERVICE_DESCRIPTION = "BTAA Geospatial API MCP Service"
+MCP_SERVICE_NAME = API_SLUG
+MCP_SERVICE_VERSION = API_VERSION
+MCP_SERVICE_DESCRIPTION = f"{API_NAME} MCP Service"
def get_async_session():
@@ -91,15 +92,15 @@ def _api_response_error_type(payload: dict[str, Any]) -> str:
class OGMMCPService:
- """MCP service for GeoBTAA API endpoints."""
+ """MCP service for OpenGeoMetadata API endpoints."""
def __init__(self):
- logger.info("Initializing GeoBTAA MCP Service")
+ logger.info("Initializing OpenGeoMetadata MCP Service")
self.server = Server(MCP_SERVICE_NAME)
self.tool_specs = self._build_tool_specs()
self.tool_handlers = self._build_tool_handlers()
self._register_tools()
- logger.info("GeoBTAA MCP Service initialized successfully")
+ logger.info("OpenGeoMetadata MCP Service initialized successfully")
def _build_tool_specs(self) -> list[dict[str, Any]]:
"""Single source of truth for MCP tool metadata."""
@@ -720,8 +721,10 @@ async def _get_resource_viewer(self, arguments: Dict[str, Any]) -> CallToolResul
def _public_api_base(self) -> str:
"""Resolve base URL for calling this API over HTTP."""
- base = os.getenv("BTAA_GEOSPATIAL_API_BASE_URL") or os.getenv(
- "APPLICATION_URL", "http://localhost:8000"
+ base = (
+ os.getenv("OPENGEOMETADATA_API_BASE_URL")
+ or os.getenv("BTAA_GEOSPATIAL_API_BASE_URL")
+ or os.getenv("APPLICATION_URL", "http://localhost:8000")
)
base = base.rstrip("/")
if base.endswith("/api/v1"):
@@ -738,7 +741,7 @@ async def _api_request(
url = f"{self._public_api_base()}/api/v1{path}"
timeout = aiohttp.ClientTimeout(total=30)
headers = {}
- api_key = os.getenv("BTAA_GEOSPATIAL_API_KEY")
+ api_key = os.getenv("OPENGEOMETADATA_API_KEY") or os.getenv("BTAA_GEOSPATIAL_API_KEY")
if api_key:
headers["X-API-Key"] = api_key
async with aiohttp.ClientSession(timeout=timeout) as session:
diff --git a/backend/app/services/ogc_projector.py b/backend/app/services/ogc_projector.py
index 080ba3f..22adfcf 100644
--- a/backend/app/services/ogc_projector.py
+++ b/backend/app/services/ogc_projector.py
@@ -14,7 +14,7 @@
class OGCResponseProjector:
@staticmethod
def map_record_to_properties(attributes: Dict[str, Any]) -> Dict[str, Any]:
- """Maps internal BTAA/Aardvark fields to public OGC properties."""
+ """Map internal OpenGeoMetadata Aardvark fields to public OGC properties."""
# Ensure lists are unwrapped where we expect single values, if they are stored as lists
description = attributes.get("dct_description_sm")
@@ -71,7 +71,7 @@ def build_item(
"href": f"{base_url}/api/v1/resources/{item_id}",
"rel": "alternate",
"type": "application/json",
- "title": "BTAA Native API Response",
+ "title": "OpenGeoMetadata Native API Response",
},
],
}
@@ -82,8 +82,8 @@ def build_landing_page(request_url: str) -> Dict[str, Any]:
base_url = request_url.rstrip("/")
return {
- "title": "BTAA Geospatial API - OGC API Records",
- "description": "OGC API Records facade for the BTAA Geospatial API",
+ "title": "OpenGeoMetadata API - OGC API Records",
+ "description": "OGC API Records facade for the OpenGeoMetadata API",
"links": [
{
"href": f"{base_url}/",
@@ -136,8 +136,8 @@ def build_collection(request_url: str, collection_id: str) -> Dict[str, Any]:
return {
"id": collection_id,
- "title": "BTAA Geospatial Records",
- "description": "Records aggregated from BTAA institutions.",
+ "title": "OpenGeoMetadata Records",
+ "description": "Community-maintained OpenGeoMetadata Aardvark records.",
"itemType": "record",
"links": [
{
@@ -242,7 +242,7 @@ def build_queryables(request_url: str) -> Dict[str, Any]:
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": request_url,
"type": "object",
- "title": "Queryables for BTAA Geospatial Records",
+ "title": "Queryables for OpenGeoMetadata Records",
"properties": {
"id": {"type": "string"},
"title": {"type": "string"},
@@ -267,7 +267,7 @@ def build_sortables(request_url: str) -> Dict[str, Any]:
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": request_url,
"type": "object",
- "title": "Sortables for BTAA Geospatial Records",
+ "title": "Sortables for OpenGeoMetadata Records",
"properties": {
"title": {"type": "string"},
"modified": {"type": "string"},
diff --git a/backend/app/services/relationship_service.py b/backend/app/services/relationship_service.py
index 63252f5..2694308 100644
--- a/backend/app/services/relationship_service.py
+++ b/backend/app/services/relationship_service.py
@@ -15,11 +15,22 @@
"hasPart": "dct_isPartOf_sm",
"pcdm:hasMember": "pcdm_memberOf_sm",
"hasMember": "pcdm_memberOf_sm",
+ "dct:isSourceOf": "dct_source_sm",
+ "isSourceOf": "dct_source_sm",
}
+RELATIONSHIP_PREDICATE_ALIASES = {
+ "dct:sourceOf": "dct:isSourceOf",
+ "sourceOf": "isSourceOf",
+}
+
+
+def _canonical_relationship_predicate(predicate: Any) -> str:
+ value = str(predicate)
+ return RELATIONSHIP_PREDICATE_ALIASES.get(value, value)
def _relationship_browse_link(resource_id: str, predicate: str) -> str | None:
- facet_field = RELATIONSHIP_BROWSE_FACET_FIELDS.get(predicate)
+ facet_field = RELATIONSHIP_BROWSE_FACET_FIELDS.get(_canonical_relationship_predicate(predicate))
if not facet_field:
return None
return f"/search?include_filters[{facet_field}][]={quote(str(resource_id), safe='')}"
@@ -145,13 +156,21 @@ async def get_resource_relationships_map(
)
relationships_by_id: Dict[str, Dict] = {}
+ seen_relationships: set[tuple[str, str, str]] = set()
for rel in db_relationships:
subject_id = str(rel["subject_id"])
+ predicate = _canonical_relationship_predicate(rel["predicate"])
+ object_id = str(rel["object_id"])
+ relationship_key = (subject_id, predicate, object_id)
+ if relationship_key in seen_relationships:
+ continue
+ seen_relationships.add(relationship_key)
+
relationships = relationships_by_id.setdefault(subject_id, {})
- if rel["predicate"] not in relationships:
- relationships[rel["predicate"]] = []
- relationships[rel["predicate"]].append(
+ if predicate not in relationships:
+ relationships[predicate] = []
+ relationships[predicate].append(
{
"resource_id": rel["object_id"],
"resource_title": rel["dct_title_s"],
@@ -161,7 +180,7 @@ async def get_resource_relationships_map(
logger.debug(
"Added relationship for %s: %s -> %s",
subject_id,
- rel["predicate"],
+ predicate,
rel["object_id"],
)
@@ -180,10 +199,12 @@ async def get_resource_relationship_summaries_map(
)
summaries_by_id: Dict[str, Dict[str, Any]] = {}
+ seen_relationships: set[tuple[str, str, str]] = set()
for rel in db_relationships:
subject_id = str(rel["subject_id"])
- predicate = str(rel["predicate"])
+ predicate = _canonical_relationship_predicate(rel["predicate"])
+ object_id = str(rel["object_id"])
summary = summaries_by_id.setdefault(
subject_id,
{
@@ -193,16 +214,21 @@ async def get_resource_relationship_summaries_map(
},
)
relationships = summary["relationships"].setdefault(predicate, [])
- relationships.append(
- {
- "resource_id": rel["object_id"],
- "resource_title": rel["dct_title_s"],
- "link": f"/resources/{rel['object_id']}",
- }
- )
+ relationship_key = (subject_id, predicate, object_id)
+ if relationship_key not in seen_relationships:
+ seen_relationships.add(relationship_key)
+ relationships.append(
+ {
+ "resource_id": rel["object_id"],
+ "resource_title": rel["dct_title_s"],
+ "link": f"/resources/{rel['object_id']}",
+ }
+ )
total_count = _record_get(rel, "total_count", len(relationships))
- summary["counts"][predicate] = int(total_count)
+ summary["counts"][predicate] = max(
+ summary["counts"].get(predicate, 0), int(total_count)
+ )
browse_link = _relationship_browse_link(subject_id, predicate)
if browse_link:
diff --git a/backend/app/services/relationship_sync.py b/backend/app/services/relationship_sync.py
index 7913ce7..8c86881 100644
--- a/backend/app/services/relationship_sync.py
+++ b/backend/app/services/relationship_sync.py
@@ -15,12 +15,17 @@
("dct_relation_sm", "dct:relation", "dct:relation"),
("dct_isPartOf_sm", "dct:isPartOf", "dct:hasPart"),
("pcdm_memberOf_sm", "pcdm:memberOf", "pcdm:hasMember"),
- ("dct_source_sm", "dct:source", "dct:sourceOf"),
+ ("dct_source_sm", "dct:source", "dct:isSourceOf"),
("dct_isVersionOf_sm", "dct:isVersionOf", "dct:hasVersion"),
("dct_replaces_sm", "dct:replaces", "dct:isReplacedBy"),
("dct_isReplacedBy_sm", "dct:isReplacedBy", "dct:replaces"),
)
+# Incremental relationship sync briefly used dct:sourceOf for the inverse of
+# dct:source. Keep it in the cleanup set so a subsequent sync removes those
+# legacy rows while emitting only the canonical dct:isSourceOf predicate.
+LEGACY_RELATIONSHIP_PREDICATES: Tuple[str, ...] = ("dct:sourceOf",)
+
ALL_RELATIONSHIP_PREDICATES: Tuple[str, ...] = tuple(
sorted(
{
@@ -28,6 +33,7 @@
for _, predicate, inverse in RELATIONSHIP_FAMILIES
for predicate in (predicate, inverse)
}
+ | set(LEGACY_RELATIONSHIP_PREDICATES)
)
)
diff --git a/backend/app/services/resource_representation_cache.py b/backend/app/services/resource_representation_cache.py
index 9d9016c..aad3393 100644
--- a/backend/app/services/resource_representation_cache.py
+++ b/backend/app/services/resource_representation_cache.py
@@ -14,7 +14,9 @@
from app.services.distribution_repository import async_session_factory
from db.models import generated_resource_representations
-RESOURCE_REPRESENTATION_CACHE_VERSION = os.getenv("RESOURCE_REPRESENTATION_CACHE_VERSION", "v1")
+# Bump when representation semantics change so durable rows created by older
+# builders cannot be returned after a deploy.
+RESOURCE_REPRESENTATION_CACHE_VERSION = os.getenv("RESOURCE_REPRESENTATION_CACHE_VERSION", "v2")
RESOURCE_REPRESENTATION_CACHE_TTL = int(
os.getenv("RESOURCE_REPRESENTATION_CACHE_TTL", os.getenv("RESOURCE_CACHE_TTL", "86400"))
)
diff --git a/backend/app/services/sitemap_service.py b/backend/app/services/sitemap_service.py
index 8a4adcc..c0e2f68 100644
--- a/backend/app/services/sitemap_service.py
+++ b/backend/app/services/sitemap_service.py
@@ -172,6 +172,11 @@ def _application_url(base_url: str | None = None) -> str:
return normalized
+def current_application_url() -> str:
+ """Return the canonical public origin used by newly generated sitemaps."""
+ return _application_url()
+
+
def _env_flag(name: str) -> bool | None:
raw_value = os.getenv(name)
if raw_value is None:
@@ -460,6 +465,19 @@ async def get_sitemap_manifest() -> dict[str, Any] | None:
return await _store.get_json(SITEMAP_MANIFEST_KEY)
+async def get_current_sitemap_document(name: str) -> str | None:
+ """Return a cached sitemap only when it was generated for this origin."""
+ manifest = await get_sitemap_manifest()
+ if isinstance(manifest, dict) and manifest.get("application_url") != current_application_url():
+ logger.info(
+ "Ignoring cached sitemap %s generated for application_url=%s",
+ name,
+ manifest.get("application_url"),
+ )
+ return None
+ return await get_sitemap_document(name)
+
+
async def get_sitemap_document(name: str) -> str | None:
payload = await _store.get_json(_document_key(name))
if isinstance(payload, dict):
diff --git a/backend/app/services/thumbnail_refresh_service.py b/backend/app/services/thumbnail_refresh_service.py
index abdeeb1..ba9d6ef 100644
--- a/backend/app/services/thumbnail_refresh_service.py
+++ b/backend/app/services/thumbnail_refresh_service.py
@@ -103,9 +103,7 @@ async def refresh_thumbnail_cache_for_changed_resources(
[f"resource:{resource_id}" for resource_id in resource_id_batch]
)
resource_dicts = await _fetch_resources(resource_id_batch)
- thumbnail_totals.update(
- await _prime_resources(resource_dicts, concurrency=concurrency)
- )
+ thumbnail_totals.update(await _prime_resources(resource_dicts, concurrency=concurrency))
return {
"enabled": True,
diff --git a/backend/app/tasks/worker.py b/backend/app/tasks/worker.py
index ed50c90..2404168 100644
--- a/backend/app/tasks/worker.py
+++ b/backend/app/tasks/worker.py
@@ -69,9 +69,7 @@
REMOTE_THUMBNAIL_PREFIX = f"remote-thumb-normalized:{THUMBNAIL_CACHE_VERSION}:"
PDF_THUMBNAIL_PREFIX = "pdf-thumb:"
PDF_THUMBNAIL_MAX_BYTES = int(os.getenv("PDF_THUMBNAIL_MAX_BYTES", str(32 * 1024 * 1024)))
-REMOTE_THUMBNAIL_MAX_BYTES = int(
- os.getenv("REMOTE_THUMBNAIL_MAX_BYTES", str(20 * 1024 * 1024))
-)
+REMOTE_THUMBNAIL_MAX_BYTES = int(os.getenv("REMOTE_THUMBNAIL_MAX_BYTES", str(20 * 1024 * 1024)))
# Setup Celery
broker_url = os.getenv(
@@ -262,9 +260,7 @@ def _persist_thumbnail_bytes(
redis_stored = False
try:
- redis_stored = bool(
- cache_visual_asset(redis_client, f"image:{image_hash}", image_bytes)
- )
+ redis_stored = bool(cache_visual_asset(redis_client, f"image:{image_hash}", image_bytes))
cache_visual_asset(redis_client, f"image_type:{image_hash}", content_type)
except Exception as exc:
logger.warning("Redis thumbnail hydration failed for %s: %s", image_hash[:12], exc)
diff --git a/backend/pyproject.toml b/backend/pyproject.toml
index 8c44b65..3d08be8 100644
--- a/backend/pyproject.toml
+++ b/backend/pyproject.toml
@@ -1,7 +1,7 @@
[project]
-name = "data-api"
+name = "opengeometadata-api"
version = "0.7.0"
-description = "BTAA OpenGeoMetadata API"
+description = "Search, harvest, and delivery API for OpenGeoMetadata Aardvark records"
requires-python = ">=3.11"
authors = [
{name = "Eric Larson", email = "ewlarson@gmail.com"},
diff --git a/backend/scripts/prime_resource_representation_cache.py b/backend/scripts/prime_resource_representation_cache.py
index 75a77ff..4f5b0ed 100644
--- a/backend/scripts/prime_resource_representation_cache.py
+++ b/backend/scripts/prime_resource_representation_cache.py
@@ -45,6 +45,7 @@
build_distribution_context,
fetch_distribution_context_map,
)
+from app.services.relationship_service import RelationshipService # noqa: E402
from app.services.resource_representation_cache import ( # noqa: E402
get_cached_resource_representations,
store_resource_representation,
@@ -54,7 +55,6 @@
from db.models import ( # noqa: E402
resource_allmaps,
resource_assets,
- resource_relationships,
resources,
)
@@ -104,9 +104,7 @@ async def _count_resources(
if resource_ids:
async with async_session_factory() as session:
stmt = (
- select(func.count())
- .select_from(resources)
- .where(resources.c.id.in_(resource_ids))
+ select(func.count()).select_from(resources).where(resources.c.id.in_(resource_ids))
)
stmt = _apply_resource_filters(
stmt,
@@ -178,11 +176,15 @@ async def _fetch_resource_batch(
return []
async with async_session_factory() as session:
- stmt = _apply_resource_filters(
- select(resources),
- resource_class=resource_class,
- provider=provider,
- ).order_by(resources.c.id).limit(limit)
+ stmt = (
+ _apply_resource_filters(
+ select(resources),
+ resource_class=resource_class,
+ provider=provider,
+ )
+ .order_by(resources.c.id)
+ .limit(limit)
+ )
if last_id is not None:
stmt = stmt.where(resources.c.id > last_id)
result = await session.execute(stmt)
@@ -235,43 +237,11 @@ async def _fetch_relationships_map(
return {}
try:
- async with async_session_factory() as session:
- stmt = (
- select(
- resource_relationships.c.subject_id,
- resource_relationships.c.predicate,
- resource_relationships.c.object_id,
- resources.c.dct_title_s,
- )
- .select_from(
- resource_relationships.join(
- resources,
- resources.c.id == resource_relationships.c.object_id,
- )
- )
- .where(resource_relationships.c.subject_id.in_(ids))
- .order_by(resource_relationships.c.subject_id, resources.c.dct_title_s.asc())
- )
- result = await session.execute(stmt)
- rows = result.fetchall()
+ return await RelationshipService.get_resource_relationships_map(ids)
except Exception as exc:
logger.warning("Failed to batch-fetch resource relationships: %s", exc)
return {}
- relationships_by_id: dict[str, dict[str, list[dict[str, str]]]] = {}
- for row in rows:
- mapping = row._mapping
- resource_id = str(mapping["subject_id"])
- predicate = str(mapping["predicate"])
- relationships_by_id.setdefault(resource_id, {}).setdefault(predicate, []).append(
- {
- "resource_id": mapping["object_id"],
- "resource_title": mapping["dct_title_s"],
- "link": f"/resources/{mapping['object_id']}",
- }
- )
- return relationships_by_id
-
async def _fetch_bridge_asset_download_rows_map(
resource_ids: list[str],
diff --git a/backend/scripts/prime_static_map_cache.py b/backend/scripts/prime_static_map_cache.py
index 2660a7a..75903d5 100644
--- a/backend/scripts/prime_static_map_cache.py
+++ b/backend/scripts/prime_static_map_cache.py
@@ -113,11 +113,15 @@ async def _fetch_resource_batch(
provider: str | None = None,
) -> list[dict[str, Any]]:
async with async_session_factory() as session:
- stmt = _apply_resource_filters(
- select(resources.c.id, resources.c.locn_geometry, resources.c.dcat_bbox),
- resource_class=resource_class,
- provider=provider,
- ).order_by(resources.c.id).limit(batch_size)
+ stmt = (
+ _apply_resource_filters(
+ select(resources.c.id, resources.c.locn_geometry, resources.c.dcat_bbox),
+ resource_class=resource_class,
+ provider=provider,
+ )
+ .order_by(resources.c.id)
+ .limit(batch_size)
+ )
if last_id is not None:
stmt = stmt.where(resources.c.id > last_id)
result = await session.execute(stmt)
diff --git a/backend/scripts/prime_thumbnail_cache.py b/backend/scripts/prime_thumbnail_cache.py
index 624312c..a15a6f1 100644
--- a/backend/scripts/prime_thumbnail_cache.py
+++ b/backend/scripts/prime_thumbnail_cache.py
@@ -88,9 +88,7 @@
USER_AGENT = "BTAA-Geospatial-Data-API/1.0 (https://geo.btaa.org/)"
FALLBACK_ICON_DETAIL = "OGM resource-class fallback icon materialized"
-REMOTE_THUMBNAIL_MAX_BYTES = int(
- os.getenv("REMOTE_THUMBNAIL_MAX_BYTES", str(20 * 1024 * 1024))
-)
+REMOTE_THUMBNAIL_MAX_BYTES = int(os.getenv("REMOTE_THUMBNAIL_MAX_BYTES", str(20 * 1024 * 1024)))
def _thumbnail_fetch_timeout() -> int:
diff --git a/backend/scripts/publish.sh b/backend/scripts/publish.sh
deleted file mode 100644
index c4d1263..0000000
--- a/backend/scripts/publish.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-VERSION=$1
-if [ -z "$VERSION" ]
-then
- echo "Please provide a version number (e.g. ./publish.sh 0.1.1)"
- exit 1
-fi
-
-# Build images
-docker build -t ewlarson/ogm-api:latest -t ewlarson/ogm-api:$VERSION .
-
-# Push images
-docker push ewlarson/ogm-api:latest
-docker push ewlarson/ogm-api:$VERSION
-
-echo "Published ewlarson/ogm-api:latest and ewlarson/ogm-api:$VERSION"
\ No newline at end of file
diff --git a/backend/scripts/refresh_resource_caches.py b/backend/scripts/refresh_resource_caches.py
index 2b4bb15..0ddb160 100644
--- a/backend/scripts/refresh_resource_caches.py
+++ b/backend/scripts/refresh_resource_caches.py
@@ -35,6 +35,8 @@
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
+from db.database import database # noqa: E402
+
logger = logging.getLogger(__name__)
DEFAULT_RESOURCE_WARM_PATHS = (
@@ -168,6 +170,20 @@ def _default_warm_paths(resource_ids: Iterable[str]) -> list[str]:
]
+async def _connect_legacy_database() -> bool:
+ """Open the shared pool before concurrent in-process endpoint requests."""
+ if database.is_connected:
+ return False
+
+ await database.connect()
+ return True
+
+
+async def _disconnect_legacy_database(opened: bool) -> None:
+ if opened and database.is_connected:
+ await database.disconnect()
+
+
async def purge_resource_caches(
resource_ids: list[str],
*,
@@ -232,36 +248,40 @@ async def warm_endpoint_caches(
if not paths:
return {"attempted": 0, "warmed": 0, "errors": 0}
- from app.main import app
-
- counters: Counter[str] = Counter()
- semaphore = asyncio.Semaphore(max(1, concurrency))
- transport = httpx.ASGITransport(app=app)
-
- async with httpx.AsyncClient(
- transport=transport,
- base_url="http://resource-cache-refresh.local",
- timeout=timeout_seconds,
- ) as client:
-
- async def warm_one(path: str) -> None:
- async with semaphore:
- try:
- response = await client.get(path, headers={"Accept": "application/json"})
- if 200 <= response.status_code < 300:
- counters["warmed"] += 1
- else:
+ opened_database = await _connect_legacy_database()
+ try:
+ from app.main import app
+
+ counters: Counter[str] = Counter()
+ semaphore = asyncio.Semaphore(max(1, concurrency))
+ transport = httpx.ASGITransport(app=app)
+
+ async with httpx.AsyncClient(
+ transport=transport,
+ base_url="http://resource-cache-refresh.local",
+ timeout=timeout_seconds,
+ ) as client:
+
+ async def warm_one(path: str) -> None:
+ async with semaphore:
+ try:
+ response = await client.get(path, headers={"Accept": "application/json"})
+ if 200 <= response.status_code < 300:
+ counters["warmed"] += 1
+ else:
+ counters["errors"] += 1
+ logger.warning(
+ "Endpoint cache warm returned status=%s path=%s",
+ response.status_code,
+ path,
+ )
+ except Exception as exc:
counters["errors"] += 1
- logger.warning(
- "Endpoint cache warm returned status=%s path=%s",
- response.status_code,
- path,
- )
- except Exception as exc:
- counters["errors"] += 1
- logger.warning("Endpoint cache warm failed path=%s err=%s", path, exc)
-
- await asyncio.gather(*(warm_one(path) for path in paths))
+ logger.warning("Endpoint cache warm failed path=%s err=%s", path, exc)
+
+ await asyncio.gather(*(warm_one(path) for path in paths))
+ finally:
+ await _disconnect_legacy_database(opened_database)
return {
"attempted": len(paths),
diff --git a/backend/static/maps/00090357-0df0-4e33-9bc8-aa3ce425ef09.png b/backend/static/maps/00090357-0df0-4e33-9bc8-aa3ce425ef09.png
deleted file mode 100644
index 1ea72a5..0000000
Binary files a/backend/static/maps/00090357-0df0-4e33-9bc8-aa3ce425ef09.png and /dev/null differ
diff --git a/backend/static/maps/000a642584aa4b5c9485b6f17dc977a1_0.png b/backend/static/maps/000a642584aa4b5c9485b6f17dc977a1_0.png
deleted file mode 100644
index 2953822..0000000
Binary files a/backend/static/maps/000a642584aa4b5c9485b6f17dc977a1_0.png and /dev/null differ
diff --git a/backend/static/maps/000b18d6-63b9-4314-9d4f-17c945ea09b7.png b/backend/static/maps/000b18d6-63b9-4314-9d4f-17c945ea09b7.png
deleted file mode 100644
index a38081d..0000000
Binary files a/backend/static/maps/000b18d6-63b9-4314-9d4f-17c945ea09b7.png and /dev/null differ
diff --git a/backend/static/maps/00138f08-1327-4ae1-9b9e-9794140059eb.png b/backend/static/maps/00138f08-1327-4ae1-9b9e-9794140059eb.png
deleted file mode 100644
index 195e1fe..0000000
Binary files a/backend/static/maps/00138f08-1327-4ae1-9b9e-9794140059eb.png and /dev/null differ
diff --git a/backend/static/maps/0013fbe3-4b43-4da0-985a-4fda7f0081dc.png b/backend/static/maps/0013fbe3-4b43-4da0-985a-4fda7f0081dc.png
deleted file mode 100644
index d243970..0000000
Binary files a/backend/static/maps/0013fbe3-4b43-4da0-985a-4fda7f0081dc.png and /dev/null differ
diff --git a/backend/static/maps/00140c37d72141eea4917e22817fe364_10.png b/backend/static/maps/00140c37d72141eea4917e22817fe364_10.png
deleted file mode 100644
index 4c6fe4d..0000000
Binary files a/backend/static/maps/00140c37d72141eea4917e22817fe364_10.png and /dev/null differ
diff --git a/backend/static/maps/00156edf8258493fa28384e0aa8286a8_0.png b/backend/static/maps/00156edf8258493fa28384e0aa8286a8_0.png
deleted file mode 100644
index 1806abd..0000000
Binary files a/backend/static/maps/00156edf8258493fa28384e0aa8286a8_0.png and /dev/null differ
diff --git a/backend/static/maps/0015a391-7b23-4e4a-9b21-fff782c96e01.png b/backend/static/maps/0015a391-7b23-4e4a-9b21-fff782c96e01.png
deleted file mode 100644
index e52fd4c..0000000
Binary files a/backend/static/maps/0015a391-7b23-4e4a-9b21-fff782c96e01.png and /dev/null differ
diff --git a/backend/static/maps/0015c1bb88c444f98b2d37c5b9da1bd0_6.png b/backend/static/maps/0015c1bb88c444f98b2d37c5b9da1bd0_6.png
deleted file mode 100644
index c58d8bd..0000000
Binary files a/backend/static/maps/0015c1bb88c444f98b2d37c5b9da1bd0_6.png and /dev/null differ
diff --git a/backend/static/maps/00163d6d-1478-4733-9dc3-90b86a00c959.png b/backend/static/maps/00163d6d-1478-4733-9dc3-90b86a00c959.png
deleted file mode 100644
index 862d9d6..0000000
Binary files a/backend/static/maps/00163d6d-1478-4733-9dc3-90b86a00c959.png and /dev/null differ
diff --git a/backend/static/maps/00168679-2f35-4e6d-94d6-9b63bbefe685.png b/backend/static/maps/00168679-2f35-4e6d-94d6-9b63bbefe685.png
deleted file mode 100644
index d6f7464..0000000
Binary files a/backend/static/maps/00168679-2f35-4e6d-94d6-9b63bbefe685.png and /dev/null differ
diff --git a/backend/static/maps/0017a611-7907-429b-8e28-438bc2a73bbb.png b/backend/static/maps/0017a611-7907-429b-8e28-438bc2a73bbb.png
deleted file mode 100644
index 2ec1a36..0000000
Binary files a/backend/static/maps/0017a611-7907-429b-8e28-438bc2a73bbb.png and /dev/null differ
diff --git a/backend/static/maps/0017c790d802419f9625683ed26b97d3_271.png b/backend/static/maps/0017c790d802419f9625683ed26b97d3_271.png
deleted file mode 100644
index b11199b..0000000
Binary files a/backend/static/maps/0017c790d802419f9625683ed26b97d3_271.png and /dev/null differ
diff --git a/backend/static/maps/00183316-3b8c-4a8a-884d-33b72208dc08.png b/backend/static/maps/00183316-3b8c-4a8a-884d-33b72208dc08.png
deleted file mode 100644
index 9388b4c..0000000
Binary files a/backend/static/maps/00183316-3b8c-4a8a-884d-33b72208dc08.png and /dev/null differ
diff --git a/backend/static/maps/001b0c44-989b-4fc4-b75a-ddf41626583b.png b/backend/static/maps/001b0c44-989b-4fc4-b75a-ddf41626583b.png
deleted file mode 100644
index cc6484f..0000000
Binary files a/backend/static/maps/001b0c44-989b-4fc4-b75a-ddf41626583b.png and /dev/null differ
diff --git a/backend/static/maps/00203c7f-b08b-46bb-a650-7c6e7925a554.png b/backend/static/maps/00203c7f-b08b-46bb-a650-7c6e7925a554.png
deleted file mode 100644
index 55e18b4..0000000
Binary files a/backend/static/maps/00203c7f-b08b-46bb-a650-7c6e7925a554.png and /dev/null differ
diff --git a/backend/static/maps/00265863-3c6f-4e83-b9a5-c62e5795e004.png b/backend/static/maps/00265863-3c6f-4e83-b9a5-c62e5795e004.png
deleted file mode 100644
index b795fbb..0000000
Binary files a/backend/static/maps/00265863-3c6f-4e83-b9a5-c62e5795e004.png and /dev/null differ
diff --git a/backend/static/maps/00270f73-1e8d-47e5-a701-43f496426a34.png b/backend/static/maps/00270f73-1e8d-47e5-a701-43f496426a34.png
deleted file mode 100644
index d23a3d5..0000000
Binary files a/backend/static/maps/00270f73-1e8d-47e5-a701-43f496426a34.png and /dev/null differ
diff --git a/backend/static/maps/002a86d5-ff04-4d71-b7d2-5b4be4d79102.png b/backend/static/maps/002a86d5-ff04-4d71-b7d2-5b4be4d79102.png
deleted file mode 100644
index 8ea1bb4..0000000
Binary files a/backend/static/maps/002a86d5-ff04-4d71-b7d2-5b4be4d79102.png and /dev/null differ
diff --git a/backend/static/maps/002f6e29-4b3d-410c-978a-a8c8e648f21a.png b/backend/static/maps/002f6e29-4b3d-410c-978a-a8c8e648f21a.png
deleted file mode 100644
index c44639d..0000000
Binary files a/backend/static/maps/002f6e29-4b3d-410c-978a-a8c8e648f21a.png and /dev/null differ
diff --git a/backend/static/maps/00300b4f-091f-47df-84d2-baf182838655.png b/backend/static/maps/00300b4f-091f-47df-84d2-baf182838655.png
deleted file mode 100644
index 28d1dea..0000000
Binary files a/backend/static/maps/00300b4f-091f-47df-84d2-baf182838655.png and /dev/null differ
diff --git a/backend/static/maps/00308e38-fe66-431b-9c8a-9e5a19951a0b.png b/backend/static/maps/00308e38-fe66-431b-9c8a-9e5a19951a0b.png
deleted file mode 100644
index 6d24fc8..0000000
Binary files a/backend/static/maps/00308e38-fe66-431b-9c8a-9e5a19951a0b.png and /dev/null differ
diff --git a/backend/static/maps/00332ebd-9cfa-43f1-9980-7d8cfccb68b4.png b/backend/static/maps/00332ebd-9cfa-43f1-9980-7d8cfccb68b4.png
deleted file mode 100644
index ff348d5..0000000
Binary files a/backend/static/maps/00332ebd-9cfa-43f1-9980-7d8cfccb68b4.png and /dev/null differ
diff --git a/backend/static/maps/00343406b1164a4690f23c307c25d679_3.png b/backend/static/maps/00343406b1164a4690f23c307c25d679_3.png
deleted file mode 100644
index aa65538..0000000
Binary files a/backend/static/maps/00343406b1164a4690f23c307c25d679_3.png and /dev/null differ
diff --git a/backend/static/maps/003475ca8cc645829cc35768fa5588dc_228.png b/backend/static/maps/003475ca8cc645829cc35768fa5588dc_228.png
deleted file mode 100644
index e9c554b..0000000
Binary files a/backend/static/maps/003475ca8cc645829cc35768fa5588dc_228.png and /dev/null differ
diff --git a/backend/static/maps/0035018d-63a8-4682-95e5-d1c3d4104a7d.png b/backend/static/maps/0035018d-63a8-4682-95e5-d1c3d4104a7d.png
deleted file mode 100644
index 70a8fb3..0000000
Binary files a/backend/static/maps/0035018d-63a8-4682-95e5-d1c3d4104a7d.png and /dev/null differ
diff --git a/backend/static/maps/0039dd3e-759a-43bd-9e0c-5bf18bd45f79.png b/backend/static/maps/0039dd3e-759a-43bd-9e0c-5bf18bd45f79.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/0039dd3e-759a-43bd-9e0c-5bf18bd45f79.png and /dev/null differ
diff --git a/backend/static/maps/003a2c591c554cf3a116a113aa3c134a_0.png b/backend/static/maps/003a2c591c554cf3a116a113aa3c134a_0.png
deleted file mode 100644
index edba350..0000000
Binary files a/backend/static/maps/003a2c591c554cf3a116a113aa3c134a_0.png and /dev/null differ
diff --git a/backend/static/maps/003a2c591c554cf3a116a113aa3c134a_1.png b/backend/static/maps/003a2c591c554cf3a116a113aa3c134a_1.png
deleted file mode 100644
index edba350..0000000
Binary files a/backend/static/maps/003a2c591c554cf3a116a113aa3c134a_1.png and /dev/null differ
diff --git a/backend/static/maps/003aa8db-4594-44bc-90f6-ebbac01d40de.png b/backend/static/maps/003aa8db-4594-44bc-90f6-ebbac01d40de.png
deleted file mode 100644
index c34a734..0000000
Binary files a/backend/static/maps/003aa8db-4594-44bc-90f6-ebbac01d40de.png and /dev/null differ
diff --git a/backend/static/maps/003b676c-3e72-4ab2-a33b-2d3b9f9d7857.png b/backend/static/maps/003b676c-3e72-4ab2-a33b-2d3b9f9d7857.png
deleted file mode 100644
index dab83ea..0000000
Binary files a/backend/static/maps/003b676c-3e72-4ab2-a33b-2d3b9f9d7857.png and /dev/null differ
diff --git a/backend/static/maps/003cbda35ac042b4a019a950ed244fb0_0.png b/backend/static/maps/003cbda35ac042b4a019a950ed244fb0_0.png
deleted file mode 100644
index 81dff30..0000000
Binary files a/backend/static/maps/003cbda35ac042b4a019a950ed244fb0_0.png and /dev/null differ
diff --git a/backend/static/maps/003e5438-86a7-4cef-8a94-af364e25fd97.png b/backend/static/maps/003e5438-86a7-4cef-8a94-af364e25fd97.png
deleted file mode 100644
index 0ef7b93..0000000
Binary files a/backend/static/maps/003e5438-86a7-4cef-8a94-af364e25fd97.png and /dev/null differ
diff --git a/backend/static/maps/003eb256-0925-4021-9233-ed7f86360188.png b/backend/static/maps/003eb256-0925-4021-9233-ed7f86360188.png
deleted file mode 100644
index 978ec86..0000000
Binary files a/backend/static/maps/003eb256-0925-4021-9233-ed7f86360188.png and /dev/null differ
diff --git a/backend/static/maps/0044b6ddba6a4364a4a9457bc879a6a1_0.png b/backend/static/maps/0044b6ddba6a4364a4a9457bc879a6a1_0.png
deleted file mode 100644
index 7695b45..0000000
Binary files a/backend/static/maps/0044b6ddba6a4364a4a9457bc879a6a1_0.png and /dev/null differ
diff --git a/backend/static/maps/0044b6ddba6a4364a4a9457bc879a6a1_1.png b/backend/static/maps/0044b6ddba6a4364a4a9457bc879a6a1_1.png
deleted file mode 100644
index 7695b45..0000000
Binary files a/backend/static/maps/0044b6ddba6a4364a4a9457bc879a6a1_1.png and /dev/null differ
diff --git a/backend/static/maps/00471a5b-932e-423d-ae60-b7684f656d5b.png b/backend/static/maps/00471a5b-932e-423d-ae60-b7684f656d5b.png
deleted file mode 100644
index 6bde0b7..0000000
Binary files a/backend/static/maps/00471a5b-932e-423d-ae60-b7684f656d5b.png and /dev/null differ
diff --git a/backend/static/maps/0048cc1b-1485-447b-a19b-b40429828747.png b/backend/static/maps/0048cc1b-1485-447b-a19b-b40429828747.png
deleted file mode 100644
index ac55782..0000000
Binary files a/backend/static/maps/0048cc1b-1485-447b-a19b-b40429828747.png and /dev/null differ
diff --git a/backend/static/maps/004964b1-f154-48ab-a167-d8f751f113e6.png b/backend/static/maps/004964b1-f154-48ab-a167-d8f751f113e6.png
deleted file mode 100644
index 11453df..0000000
Binary files a/backend/static/maps/004964b1-f154-48ab-a167-d8f751f113e6.png and /dev/null differ
diff --git a/backend/static/maps/004ce844-b751-4fe7-a16d-ddebae320fe7.png b/backend/static/maps/004ce844-b751-4fe7-a16d-ddebae320fe7.png
deleted file mode 100644
index b3d2f94..0000000
Binary files a/backend/static/maps/004ce844-b751-4fe7-a16d-ddebae320fe7.png and /dev/null differ
diff --git a/backend/static/maps/004e8f47d45c472cb48606fbc1024695_2585.png b/backend/static/maps/004e8f47d45c472cb48606fbc1024695_2585.png
deleted file mode 100644
index 145da76..0000000
Binary files a/backend/static/maps/004e8f47d45c472cb48606fbc1024695_2585.png and /dev/null differ
diff --git a/backend/static/maps/00503aef-1f17-44fd-8664-679c5ad6e05c.png b/backend/static/maps/00503aef-1f17-44fd-8664-679c5ad6e05c.png
deleted file mode 100644
index 1ca7d44..0000000
Binary files a/backend/static/maps/00503aef-1f17-44fd-8664-679c5ad6e05c.png and /dev/null differ
diff --git a/backend/static/maps/005f706f-2dac-4973-ba58-64071acfc89e.png b/backend/static/maps/005f706f-2dac-4973-ba58-64071acfc89e.png
deleted file mode 100644
index bd0b4ed..0000000
Binary files a/backend/static/maps/005f706f-2dac-4973-ba58-64071acfc89e.png and /dev/null differ
diff --git a/backend/static/maps/006003d72bef4d0f9a52c6d30cbdfef7_0.png b/backend/static/maps/006003d72bef4d0f9a52c6d30cbdfef7_0.png
deleted file mode 100644
index 16c4b87..0000000
Binary files a/backend/static/maps/006003d72bef4d0f9a52c6d30cbdfef7_0.png and /dev/null differ
diff --git a/backend/static/maps/0069e2445da04c6e96f395fe8053b52c_2602.png b/backend/static/maps/0069e2445da04c6e96f395fe8053b52c_2602.png
deleted file mode 100644
index 63ed524..0000000
Binary files a/backend/static/maps/0069e2445da04c6e96f395fe8053b52c_2602.png and /dev/null differ
diff --git a/backend/static/maps/0072c671e8ef413d9f6b5dbb825b4b71_0.png b/backend/static/maps/0072c671e8ef413d9f6b5dbb825b4b71_0.png
deleted file mode 100644
index 41bf774..0000000
Binary files a/backend/static/maps/0072c671e8ef413d9f6b5dbb825b4b71_0.png and /dev/null differ
diff --git a/backend/static/maps/0073dd5a-2bd9-43a1-ab9a-6301737de4fc.png b/backend/static/maps/0073dd5a-2bd9-43a1-ab9a-6301737de4fc.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/0073dd5a-2bd9-43a1-ab9a-6301737de4fc.png and /dev/null differ
diff --git a/backend/static/maps/007c5384-f66d-4d6f-9d1a-3c9e1bc4233f.png b/backend/static/maps/007c5384-f66d-4d6f-9d1a-3c9e1bc4233f.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/007c5384-f66d-4d6f-9d1a-3c9e1bc4233f.png and /dev/null differ
diff --git a/backend/static/maps/007df9592cf0411a95539f0dcc9ebaba_0.png b/backend/static/maps/007df9592cf0411a95539f0dcc9ebaba_0.png
deleted file mode 100644
index a98c700..0000000
Binary files a/backend/static/maps/007df9592cf0411a95539f0dcc9ebaba_0.png and /dev/null differ
diff --git a/backend/static/maps/008d9f53-7256-495c-98ae-cdf13bd9bd37.png b/backend/static/maps/008d9f53-7256-495c-98ae-cdf13bd9bd37.png
deleted file mode 100644
index 4207dac..0000000
Binary files a/backend/static/maps/008d9f53-7256-495c-98ae-cdf13bd9bd37.png and /dev/null differ
diff --git a/backend/static/maps/0091308c97124b1d8685fa49d4350528_0.png b/backend/static/maps/0091308c97124b1d8685fa49d4350528_0.png
deleted file mode 100644
index 01e4e65..0000000
Binary files a/backend/static/maps/0091308c97124b1d8685fa49d4350528_0.png and /dev/null differ
diff --git a/backend/static/maps/009b4053-12fe-4f96-93e2-b1984f2386cc.png b/backend/static/maps/009b4053-12fe-4f96-93e2-b1984f2386cc.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/009b4053-12fe-4f96-93e2-b1984f2386cc.png and /dev/null differ
diff --git a/backend/static/maps/00A24C0D-0D66-4CB0-811B-B47AE601F62F.png b/backend/static/maps/00A24C0D-0D66-4CB0-811B-B47AE601F62F.png
deleted file mode 100644
index 1ce8870..0000000
Binary files a/backend/static/maps/00A24C0D-0D66-4CB0-811B-B47AE601F62F.png and /dev/null differ
diff --git a/backend/static/maps/00FDB5B4-E75D-4A16-94D4-21FAE283135E.png b/backend/static/maps/00FDB5B4-E75D-4A16-94D4-21FAE283135E.png
deleted file mode 100644
index 382527e..0000000
Binary files a/backend/static/maps/00FDB5B4-E75D-4A16-94D4-21FAE283135E.png and /dev/null differ
diff --git a/backend/static/maps/00adad11219642089331c5912af76290_36.png b/backend/static/maps/00adad11219642089331c5912af76290_36.png
deleted file mode 100644
index 1977414..0000000
Binary files a/backend/static/maps/00adad11219642089331c5912af76290_36.png and /dev/null differ
diff --git a/backend/static/maps/00b0d6a8-95ae-4e0e-8a2e-954919ccc03b.png b/backend/static/maps/00b0d6a8-95ae-4e0e-8a2e-954919ccc03b.png
deleted file mode 100644
index 3d7f931..0000000
Binary files a/backend/static/maps/00b0d6a8-95ae-4e0e-8a2e-954919ccc03b.png and /dev/null differ
diff --git a/backend/static/maps/00b0e55fe72d414395418dd76691daf4_5.png b/backend/static/maps/00b0e55fe72d414395418dd76691daf4_5.png
deleted file mode 100644
index 3a1db33..0000000
Binary files a/backend/static/maps/00b0e55fe72d414395418dd76691daf4_5.png and /dev/null differ
diff --git a/backend/static/maps/00b5994082e146308261c9a734a27e69_14.png b/backend/static/maps/00b5994082e146308261c9a734a27e69_14.png
deleted file mode 100644
index 0db6b2e..0000000
Binary files a/backend/static/maps/00b5994082e146308261c9a734a27e69_14.png and /dev/null differ
diff --git a/backend/static/maps/00b9d5b4-d17e-448c-903b-cad417019c73.png b/backend/static/maps/00b9d5b4-d17e-448c-903b-cad417019c73.png
deleted file mode 100644
index 11453df..0000000
Binary files a/backend/static/maps/00b9d5b4-d17e-448c-903b-cad417019c73.png and /dev/null differ
diff --git a/backend/static/maps/00c7751daa9d454fab10aefe8f3801c1_75.png b/backend/static/maps/00c7751daa9d454fab10aefe8f3801c1_75.png
deleted file mode 100644
index a256241..0000000
Binary files a/backend/static/maps/00c7751daa9d454fab10aefe8f3801c1_75.png and /dev/null differ
diff --git a/backend/static/maps/00c98ef9fc10431f9db912c21a244d63_6.png b/backend/static/maps/00c98ef9fc10431f9db912c21a244d63_6.png
deleted file mode 100644
index 09ce9ed..0000000
Binary files a/backend/static/maps/00c98ef9fc10431f9db912c21a244d63_6.png and /dev/null differ
diff --git a/backend/static/maps/00d7004f-8664-4e4a-a86f-8f8a05273bfc.png b/backend/static/maps/00d7004f-8664-4e4a-a86f-8f8a05273bfc.png
deleted file mode 100644
index 3a36f19..0000000
Binary files a/backend/static/maps/00d7004f-8664-4e4a-a86f-8f8a05273bfc.png and /dev/null differ
diff --git a/backend/static/maps/00d7cfa497ba455dae34ad64633bdcc2_57.png b/backend/static/maps/00d7cfa497ba455dae34ad64633bdcc2_57.png
deleted file mode 100644
index b45e8b0..0000000
Binary files a/backend/static/maps/00d7cfa497ba455dae34ad64633bdcc2_57.png and /dev/null differ
diff --git a/backend/static/maps/00e7ff046ddb4302abe7b49b2ddee07e_13.png b/backend/static/maps/00e7ff046ddb4302abe7b49b2ddee07e_13.png
deleted file mode 100644
index d25269a..0000000
Binary files a/backend/static/maps/00e7ff046ddb4302abe7b49b2ddee07e_13.png and /dev/null differ
diff --git a/backend/static/maps/00fcfa6a-d8e0-45d5-ba57-4f1fd83573b1.png b/backend/static/maps/00fcfa6a-d8e0-45d5-ba57-4f1fd83573b1.png
deleted file mode 100644
index 395473d..0000000
Binary files a/backend/static/maps/00fcfa6a-d8e0-45d5-ba57-4f1fd83573b1.png and /dev/null differ
diff --git a/backend/static/maps/00ffe5f8898f4e11a831906d0710b109_1.png b/backend/static/maps/00ffe5f8898f4e11a831906d0710b109_1.png
deleted file mode 100644
index 4e5ae4e..0000000
Binary files a/backend/static/maps/00ffe5f8898f4e11a831906d0710b109_1.png and /dev/null differ
diff --git a/backend/static/maps/0113ee10e46740c09dce60fe3e1d1e9b_0.png b/backend/static/maps/0113ee10e46740c09dce60fe3e1d1e9b_0.png
deleted file mode 100644
index 5b65576..0000000
Binary files a/backend/static/maps/0113ee10e46740c09dce60fe3e1d1e9b_0.png and /dev/null differ
diff --git a/backend/static/maps/0118797f5afe4716876fc6e2d8695b67_24.png b/backend/static/maps/0118797f5afe4716876fc6e2d8695b67_24.png
deleted file mode 100644
index aec5545..0000000
Binary files a/backend/static/maps/0118797f5afe4716876fc6e2d8695b67_24.png and /dev/null differ
diff --git a/backend/static/maps/012125f737f3470380ab917ef2c41cf9_2018.png b/backend/static/maps/012125f737f3470380ab917ef2c41cf9_2018.png
deleted file mode 100644
index 4ee5917..0000000
Binary files a/backend/static/maps/012125f737f3470380ab917ef2c41cf9_2018.png and /dev/null differ
diff --git a/backend/static/maps/0126bcc9076d48538c4db9142db8b51e_4.png b/backend/static/maps/0126bcc9076d48538c4db9142db8b51e_4.png
deleted file mode 100644
index bf80090..0000000
Binary files a/backend/static/maps/0126bcc9076d48538c4db9142db8b51e_4.png and /dev/null differ
diff --git a/backend/static/maps/012c6e25293345f48af87f14f352e879.png b/backend/static/maps/012c6e25293345f48af87f14f352e879.png
deleted file mode 100644
index 0f2aab5..0000000
Binary files a/backend/static/maps/012c6e25293345f48af87f14f352e879.png and /dev/null differ
diff --git a/backend/static/maps/0136b76b62ad4fe8b6ef634e519e3ae6_0.png b/backend/static/maps/0136b76b62ad4fe8b6ef634e519e3ae6_0.png
deleted file mode 100644
index 4ee5917..0000000
Binary files a/backend/static/maps/0136b76b62ad4fe8b6ef634e519e3ae6_0.png and /dev/null differ
diff --git a/backend/static/maps/013d9fb7-7ec6-440e-b289-3cda5d26b2ab.png b/backend/static/maps/013d9fb7-7ec6-440e-b289-3cda5d26b2ab.png
deleted file mode 100644
index 874c376..0000000
Binary files a/backend/static/maps/013d9fb7-7ec6-440e-b289-3cda5d26b2ab.png and /dev/null differ
diff --git a/backend/static/maps/01716625-6625-4dfe-909e-60a2282ac7d3.png b/backend/static/maps/01716625-6625-4dfe-909e-60a2282ac7d3.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/01716625-6625-4dfe-909e-60a2282ac7d3.png and /dev/null differ
diff --git a/backend/static/maps/01a620ba-2c07-46ca-b388-d6be6b9035a4.png b/backend/static/maps/01a620ba-2c07-46ca-b388-d6be6b9035a4.png
deleted file mode 100644
index 25681e3..0000000
Binary files a/backend/static/maps/01a620ba-2c07-46ca-b388-d6be6b9035a4.png and /dev/null differ
diff --git a/backend/static/maps/01b-18057.png b/backend/static/maps/01b-18057.png
deleted file mode 100644
index 9456f8f..0000000
Binary files a/backend/static/maps/01b-18057.png and /dev/null differ
diff --git a/backend/static/maps/01b-18163.png b/backend/static/maps/01b-18163.png
deleted file mode 100644
index d9bfed8..0000000
Binary files a/backend/static/maps/01b-18163.png and /dev/null differ
diff --git a/backend/static/maps/01c-01.png b/backend/static/maps/01c-01.png
deleted file mode 100644
index 56cff1c..0000000
Binary files a/backend/static/maps/01c-01.png and /dev/null differ
diff --git a/backend/static/maps/01c-02.png b/backend/static/maps/01c-02.png
deleted file mode 100644
index fe830ed..0000000
Binary files a/backend/static/maps/01c-02.png and /dev/null differ
diff --git a/backend/static/maps/01c507a0e220450c8c5bfdc866e7e05b.png b/backend/static/maps/01c507a0e220450c8c5bfdc866e7e05b.png
deleted file mode 100644
index 3aabd74..0000000
Binary files a/backend/static/maps/01c507a0e220450c8c5bfdc866e7e05b.png and /dev/null differ
diff --git a/backend/static/maps/01d-02.png b/backend/static/maps/01d-02.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/01d-02.png and /dev/null differ
diff --git a/backend/static/maps/01d-04.png b/backend/static/maps/01d-04.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/01d-04.png and /dev/null differ
diff --git a/backend/static/maps/01d-05.png b/backend/static/maps/01d-05.png
deleted file mode 100644
index 8fd20b7..0000000
Binary files a/backend/static/maps/01d-05.png and /dev/null differ
diff --git a/backend/static/maps/01d92abfa66e46aaaa3378925b3095c7_1.png b/backend/static/maps/01d92abfa66e46aaaa3378925b3095c7_1.png
deleted file mode 100644
index 239acde..0000000
Binary files a/backend/static/maps/01d92abfa66e46aaaa3378925b3095c7_1.png and /dev/null differ
diff --git a/backend/static/maps/01ebe5d5738d4833b543a24181a887ba_1.png b/backend/static/maps/01ebe5d5738d4833b543a24181a887ba_1.png
deleted file mode 100644
index da7d386..0000000
Binary files a/backend/static/maps/01ebe5d5738d4833b543a24181a887ba_1.png and /dev/null differ
diff --git a/backend/static/maps/01fd43d9-c4c6-4699-b29d-60d98543c617.png b/backend/static/maps/01fd43d9-c4c6-4699-b29d-60d98543c617.png
deleted file mode 100644
index 3d10a35..0000000
Binary files a/backend/static/maps/01fd43d9-c4c6-4699-b29d-60d98543c617.png and /dev/null differ
diff --git a/backend/static/maps/0212e74fc63e4aa989a71b0f6c2dcb1b_0.png b/backend/static/maps/0212e74fc63e4aa989a71b0f6c2dcb1b_0.png
deleted file mode 100644
index 99c0bf0..0000000
Binary files a/backend/static/maps/0212e74fc63e4aa989a71b0f6c2dcb1b_0.png and /dev/null differ
diff --git a/backend/static/maps/02137a35-ab82-4751-8462-6ec736ea7280.png b/backend/static/maps/02137a35-ab82-4751-8462-6ec736ea7280.png
deleted file mode 100644
index 38cc632..0000000
Binary files a/backend/static/maps/02137a35-ab82-4751-8462-6ec736ea7280.png and /dev/null differ
diff --git a/backend/static/maps/021dc336-6bb8-4e90-8bca-6b581a260ce6.png b/backend/static/maps/021dc336-6bb8-4e90-8bca-6b581a260ce6.png
deleted file mode 100644
index 57f7031..0000000
Binary files a/backend/static/maps/021dc336-6bb8-4e90-8bca-6b581a260ce6.png and /dev/null differ
diff --git a/backend/static/maps/02349_1886-0011_pk02c987r.png b/backend/static/maps/02349_1886-0011_pk02c987r.png
deleted file mode 100644
index 9436de2..0000000
Binary files a/backend/static/maps/02349_1886-0011_pk02c987r.png and /dev/null differ
diff --git a/backend/static/maps/02349_1905-0003_1544bp27m.png b/backend/static/maps/02349_1905-0003_1544bp27m.png
deleted file mode 100644
index 9436de2..0000000
Binary files a/backend/static/maps/02349_1905-0003_1544bp27m.png and /dev/null differ
diff --git a/backend/static/maps/02390_1902-0002_mp48sd174.png b/backend/static/maps/02390_1902-0002_mp48sd174.png
deleted file mode 100644
index a2e6418..0000000
Binary files a/backend/static/maps/02390_1902-0002_mp48sd174.png and /dev/null differ
diff --git a/backend/static/maps/02399_1920-0003_zc77sq363.png b/backend/static/maps/02399_1920-0003_zc77sq363.png
deleted file mode 100644
index 8117b99..0000000
Binary files a/backend/static/maps/02399_1920-0003_zc77sq363.png and /dev/null differ
diff --git a/backend/static/maps/02477_1891-0017_pc289j492.png b/backend/static/maps/02477_1891-0017_pc289j492.png
deleted file mode 100644
index 2fe7405..0000000
Binary files a/backend/static/maps/02477_1891-0017_pc289j492.png and /dev/null differ
diff --git a/backend/static/maps/02477_1891-0018_f4752h181.png b/backend/static/maps/02477_1891-0018_f4752h181.png
deleted file mode 100644
index 2fe7405..0000000
Binary files a/backend/static/maps/02477_1891-0018_f4752h181.png and /dev/null differ
diff --git a/backend/static/maps/02477_1891-0019_xs55mc470.png b/backend/static/maps/02477_1891-0019_xs55mc470.png
deleted file mode 100644
index 2fe7405..0000000
Binary files a/backend/static/maps/02477_1891-0019_xs55mc470.png and /dev/null differ
diff --git a/backend/static/maps/02477_1891-0020_4j03d012h.png b/backend/static/maps/02477_1891-0020_4j03d012h.png
deleted file mode 100644
index 2fe7405..0000000
Binary files a/backend/static/maps/02477_1891-0020_4j03d012h.png and /dev/null differ
diff --git a/backend/static/maps/02477_1891-0021_gq67jr61j.png b/backend/static/maps/02477_1891-0021_gq67jr61j.png
deleted file mode 100644
index 2fe7405..0000000
Binary files a/backend/static/maps/02477_1891-0021_gq67jr61j.png and /dev/null differ
diff --git a/backend/static/maps/02477_1891-0022_3r074v305.png b/backend/static/maps/02477_1891-0022_3r074v305.png
deleted file mode 100644
index 2fe7405..0000000
Binary files a/backend/static/maps/02477_1891-0022_3r074v305.png and /dev/null differ
diff --git a/backend/static/maps/02477_1891-0023_sx61dm91n.png b/backend/static/maps/02477_1891-0023_sx61dm91n.png
deleted file mode 100644
index 2fe7405..0000000
Binary files a/backend/static/maps/02477_1891-0023_sx61dm91n.png and /dev/null differ
diff --git a/backend/static/maps/02477_1891-0024_bg257f55p.png b/backend/static/maps/02477_1891-0024_bg257f55p.png
deleted file mode 100644
index 2fe7405..0000000
Binary files a/backend/static/maps/02477_1891-0024_bg257f55p.png and /dev/null differ
diff --git a/backend/static/maps/02477_1891-0025_mw22v5873.png b/backend/static/maps/02477_1891-0025_mw22v5873.png
deleted file mode 100644
index 2fe7405..0000000
Binary files a/backend/static/maps/02477_1891-0025_mw22v5873.png and /dev/null differ
diff --git a/backend/static/maps/02477_1891-0026_pg15bf413.png b/backend/static/maps/02477_1891-0026_pg15bf413.png
deleted file mode 100644
index 2fe7405..0000000
Binary files a/backend/static/maps/02477_1891-0026_pg15bf413.png and /dev/null differ
diff --git a/backend/static/maps/024a627f-52f8-4973-baf7-cc0b9c7b1a43.png b/backend/static/maps/024a627f-52f8-4973-baf7-cc0b9c7b1a43.png
deleted file mode 100644
index bc21a0f..0000000
Binary files a/backend/static/maps/024a627f-52f8-4973-baf7-cc0b9c7b1a43.png and /dev/null differ
diff --git a/backend/static/maps/027e7e27-a404-4302-8aa6-0ffd484c924b.png b/backend/static/maps/027e7e27-a404-4302-8aa6-0ffd484c924b.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/027e7e27-a404-4302-8aa6-0ffd484c924b.png and /dev/null differ
diff --git a/backend/static/maps/028a01f0-fe2f-4720-bffd-419e07f139bc.png b/backend/static/maps/028a01f0-fe2f-4720-bffd-419e07f139bc.png
deleted file mode 100644
index 0db4dbc..0000000
Binary files a/backend/static/maps/028a01f0-fe2f-4720-bffd-419e07f139bc.png and /dev/null differ
diff --git a/backend/static/maps/029137fe-6e14-4282-97a9-dc4a03a92ddb.png b/backend/static/maps/029137fe-6e14-4282-97a9-dc4a03a92ddb.png
deleted file mode 100644
index 8c6c4dc..0000000
Binary files a/backend/static/maps/029137fe-6e14-4282-97a9-dc4a03a92ddb.png and /dev/null differ
diff --git a/backend/static/maps/02a-01.png b/backend/static/maps/02a-01.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/02a-01.png and /dev/null differ
diff --git a/backend/static/maps/02a-01_coastal-HTEM-lake-michigan-coast-2017.png b/backend/static/maps/02a-01_coastal-HTEM-lake-michigan-coast-2017.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/02a-01_coastal-HTEM-lake-michigan-coast-2017.png and /dev/null differ
diff --git a/backend/static/maps/02a-01_coastal-offshore-mapping-chicago.png b/backend/static/maps/02a-01_coastal-offshore-mapping-chicago.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/02a-01_coastal-offshore-mapping-chicago.png and /dev/null differ
diff --git a/backend/static/maps/02a-01_geology-bedrock-geology-1967.png b/backend/static/maps/02a-01_geology-bedrock-geology-1967.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/02a-01_geology-bedrock-geology-1967.png and /dev/null differ
diff --git a/backend/static/maps/02a-01_geology-bedrock-geology-2005.png b/backend/static/maps/02a-01_geology-bedrock-geology-2005.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/02a-01_geology-bedrock-geology-2005.png and /dev/null differ
diff --git a/backend/static/maps/02a-01_hydrology-coarse-grained-materials-within-50-feet-ground-surface-illinois.png b/backend/static/maps/02a-01_hydrology-coarse-grained-materials-within-50-feet-ground-surface-illinois.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/02a-01_hydrology-coarse-grained-materials-within-50-feet-ground-surface-illinois.png and /dev/null differ
diff --git a/backend/static/maps/02a-01_hydrology-illinois-municipal-water-use-2012.png b/backend/static/maps/02a-01_hydrology-illinois-municipal-water-use-2012.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/02a-01_hydrology-illinois-municipal-water-use-2012.png and /dev/null differ
diff --git a/backend/static/maps/02a-01_hydrology-major-sand-and-gravel-aquifers.png b/backend/static/maps/02a-01_hydrology-major-sand-and-gravel-aquifers.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/02a-01_hydrology-major-sand-and-gravel-aquifers.png and /dev/null differ
diff --git a/backend/static/maps/02a-03.png b/backend/static/maps/02a-03.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/02a-03.png and /dev/null differ
diff --git a/backend/static/maps/02ab4e12be434fee9d266531f563a6e8_0.png b/backend/static/maps/02ab4e12be434fee9d266531f563a6e8_0.png
deleted file mode 100644
index 10f864e..0000000
Binary files a/backend/static/maps/02ab4e12be434fee9d266531f563a6e8_0.png and /dev/null differ
diff --git a/backend/static/maps/02b55956-134d-4248-93c3-fa88cbcc6984.png b/backend/static/maps/02b55956-134d-4248-93c3-fa88cbcc6984.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/02b55956-134d-4248-93c3-fa88cbcc6984.png and /dev/null differ
diff --git a/backend/static/maps/02c0d3bad3ab465d81b5908323d1b03f_7.png b/backend/static/maps/02c0d3bad3ab465d81b5908323d1b03f_7.png
deleted file mode 100644
index 61f7a40..0000000
Binary files a/backend/static/maps/02c0d3bad3ab465d81b5908323d1b03f_7.png and /dev/null differ
diff --git a/backend/static/maps/03c-04.png b/backend/static/maps/03c-04.png
deleted file mode 100644
index 5aba61f..0000000
Binary files a/backend/static/maps/03c-04.png and /dev/null differ
diff --git a/backend/static/maps/03d9e17a-22e8-4269-9b3b-e520e928110f.png b/backend/static/maps/03d9e17a-22e8-4269-9b3b-e520e928110f.png
deleted file mode 100644
index b44824a..0000000
Binary files a/backend/static/maps/03d9e17a-22e8-4269-9b3b-e520e928110f.png and /dev/null differ
diff --git a/backend/static/maps/03da8f4215f04b5c97cfc8b52fa0bce1_1.png b/backend/static/maps/03da8f4215f04b5c97cfc8b52fa0bce1_1.png
deleted file mode 100644
index 3cf49e5..0000000
Binary files a/backend/static/maps/03da8f4215f04b5c97cfc8b52fa0bce1_1.png and /dev/null differ
diff --git a/backend/static/maps/04215557-c0a2-4771-b05b-bd8d6c786bea.png b/backend/static/maps/04215557-c0a2-4771-b05b-bd8d6c786bea.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/04215557-c0a2-4771-b05b-bd8d6c786bea.png and /dev/null differ
diff --git a/backend/static/maps/0428403d-184c-46b0-b03c-5325ae982971.png b/backend/static/maps/0428403d-184c-46b0-b03c-5325ae982971.png
deleted file mode 100644
index 0e22b41..0000000
Binary files a/backend/static/maps/0428403d-184c-46b0-b03c-5325ae982971.png and /dev/null differ
diff --git a/backend/static/maps/04284cb2bc4448df83527ae3e33d5ac9_0.png b/backend/static/maps/04284cb2bc4448df83527ae3e33d5ac9_0.png
deleted file mode 100644
index 55d42a7..0000000
Binary files a/backend/static/maps/04284cb2bc4448df83527ae3e33d5ac9_0.png and /dev/null differ
diff --git a/backend/static/maps/0468d1fef9a3465c96434426a825398e_0.png b/backend/static/maps/0468d1fef9a3465c96434426a825398e_0.png
deleted file mode 100644
index d051cf4..0000000
Binary files a/backend/static/maps/0468d1fef9a3465c96434426a825398e_0.png and /dev/null differ
diff --git a/backend/static/maps/04a685d1-50c9-447a-8396-d012ef295bd2.png b/backend/static/maps/04a685d1-50c9-447a-8396-d012ef295bd2.png
deleted file mode 100644
index d69ab02..0000000
Binary files a/backend/static/maps/04a685d1-50c9-447a-8396-d012ef295bd2.png and /dev/null differ
diff --git a/backend/static/maps/04d04cb1-2523-4c8a-bcd1-1f6588dde05f.png b/backend/static/maps/04d04cb1-2523-4c8a-bcd1-1f6588dde05f.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/04d04cb1-2523-4c8a-bcd1-1f6588dde05f.png and /dev/null differ
diff --git a/backend/static/maps/04e17779-04c9-4e1e-a304-50509893c99d.png b/backend/static/maps/04e17779-04c9-4e1e-a304-50509893c99d.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/04e17779-04c9-4e1e-a304-50509893c99d.png and /dev/null differ
diff --git a/backend/static/maps/04faa65b-7de6-4607-bcd8-02789c6604af.png b/backend/static/maps/04faa65b-7de6-4607-bcd8-02789c6604af.png
deleted file mode 100644
index 1e9ddc8..0000000
Binary files a/backend/static/maps/04faa65b-7de6-4607-bcd8-02789c6604af.png and /dev/null differ
diff --git a/backend/static/maps/050ea07cda824f8bb5acc7080d440e6f_0.png b/backend/static/maps/050ea07cda824f8bb5acc7080d440e6f_0.png
deleted file mode 100644
index af53c96..0000000
Binary files a/backend/static/maps/050ea07cda824f8bb5acc7080d440e6f_0.png and /dev/null differ
diff --git a/backend/static/maps/051d790166084bc09c3a1e4fb1236abc_0.png b/backend/static/maps/051d790166084bc09c3a1e4fb1236abc_0.png
deleted file mode 100644
index 74c19dd..0000000
Binary files a/backend/static/maps/051d790166084bc09c3a1e4fb1236abc_0.png and /dev/null differ
diff --git a/backend/static/maps/055335f89df5447bb0a8a85e7e5d1b6f_5.png b/backend/static/maps/055335f89df5447bb0a8a85e7e5d1b6f_5.png
deleted file mode 100644
index 33e8269..0000000
Binary files a/backend/static/maps/055335f89df5447bb0a8a85e7e5d1b6f_5.png and /dev/null differ
diff --git a/backend/static/maps/05580ae0-3603-468e-8bb0-14ffb825d32a.png b/backend/static/maps/05580ae0-3603-468e-8bb0-14ffb825d32a.png
deleted file mode 100644
index eb483e6..0000000
Binary files a/backend/static/maps/05580ae0-3603-468e-8bb0-14ffb825d32a.png and /dev/null differ
diff --git a/backend/static/maps/056f9297-f493-4de1-b98e-b86aebc19d83.png b/backend/static/maps/056f9297-f493-4de1-b98e-b86aebc19d83.png
deleted file mode 100644
index f500b75..0000000
Binary files a/backend/static/maps/056f9297-f493-4de1-b98e-b86aebc19d83.png and /dev/null differ
diff --git a/backend/static/maps/058cbdcc-f5b5-4a70-ac56-6f818e9dc929.png b/backend/static/maps/058cbdcc-f5b5-4a70-ac56-6f818e9dc929.png
deleted file mode 100644
index d352bdc..0000000
Binary files a/backend/static/maps/058cbdcc-f5b5-4a70-ac56-6f818e9dc929.png and /dev/null differ
diff --git a/backend/static/maps/05b-27007.png b/backend/static/maps/05b-27007.png
deleted file mode 100644
index 3e2fb09..0000000
Binary files a/backend/static/maps/05b-27007.png and /dev/null differ
diff --git a/backend/static/maps/05c2d0fd-6049-4608-a415-5882f1531b6a.png b/backend/static/maps/05c2d0fd-6049-4608-a415-5882f1531b6a.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/05c2d0fd-6049-4608-a415-5882f1531b6a.png and /dev/null differ
diff --git a/backend/static/maps/05c55509d60b436e8d8a6d746fd0506b_102.png b/backend/static/maps/05c55509d60b436e8d8a6d746fd0506b_102.png
deleted file mode 100644
index 5aa4ce8..0000000
Binary files a/backend/static/maps/05c55509d60b436e8d8a6d746fd0506b_102.png and /dev/null differ
diff --git a/backend/static/maps/05d-09.png b/backend/static/maps/05d-09.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/05d-09.png and /dev/null differ
diff --git a/backend/static/maps/05ec2080-c46f-432a-9c7a-455eabad57d0.png b/backend/static/maps/05ec2080-c46f-432a-9c7a-455eabad57d0.png
deleted file mode 100644
index de30386..0000000
Binary files a/backend/static/maps/05ec2080-c46f-432a-9c7a-455eabad57d0.png and /dev/null differ
diff --git a/backend/static/maps/05f33c33-5ccf-4760-9319-2a3f388d273c.png b/backend/static/maps/05f33c33-5ccf-4760-9319-2a3f388d273c.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/05f33c33-5ccf-4760-9319-2a3f388d273c.png and /dev/null differ
diff --git a/backend/static/maps/060210cb-117f-4913-91bd-8533dcee3341.png b/backend/static/maps/060210cb-117f-4913-91bd-8533dcee3341.png
deleted file mode 100644
index 55b6fb3..0000000
Binary files a/backend/static/maps/060210cb-117f-4913-91bd-8533dcee3341.png and /dev/null differ
diff --git a/backend/static/maps/065d1db901644430a6dedc4cdf644b62_0.png b/backend/static/maps/065d1db901644430a6dedc4cdf644b62_0.png
deleted file mode 100644
index 3abc9c8..0000000
Binary files a/backend/static/maps/065d1db901644430a6dedc4cdf644b62_0.png and /dev/null differ
diff --git a/backend/static/maps/066FBA03-039E-4195-A42A-8CE5A184AF39.png b/backend/static/maps/066FBA03-039E-4195-A42A-8CE5A184AF39.png
deleted file mode 100644
index 58c4884..0000000
Binary files a/backend/static/maps/066FBA03-039E-4195-A42A-8CE5A184AF39.png and /dev/null differ
diff --git a/backend/static/maps/06bdb269-cf1b-4a64-98fa-ae892f13e7be.png b/backend/static/maps/06bdb269-cf1b-4a64-98fa-ae892f13e7be.png
deleted file mode 100644
index 3acec8f..0000000
Binary files a/backend/static/maps/06bdb269-cf1b-4a64-98fa-ae892f13e7be.png and /dev/null differ
diff --git a/backend/static/maps/06bdb5c4c82d43c59cb4cb59486ef99f_0.png b/backend/static/maps/06bdb5c4c82d43c59cb4cb59486ef99f_0.png
deleted file mode 100644
index 790aaf9..0000000
Binary files a/backend/static/maps/06bdb5c4c82d43c59cb4cb59486ef99f_0.png and /dev/null differ
diff --git a/backend/static/maps/06f64c8c-b5cd-463e-bcdb-0b9e3365fdda.png b/backend/static/maps/06f64c8c-b5cd-463e-bcdb-0b9e3365fdda.png
deleted file mode 100644
index d397633..0000000
Binary files a/backend/static/maps/06f64c8c-b5cd-463e-bcdb-0b9e3365fdda.png and /dev/null differ
diff --git a/backend/static/maps/0753485927bb473187a41788219034c4_6.png b/backend/static/maps/0753485927bb473187a41788219034c4_6.png
deleted file mode 100644
index 1b4c044..0000000
Binary files a/backend/static/maps/0753485927bb473187a41788219034c4_6.png and /dev/null differ
diff --git a/backend/static/maps/07a2af00-a52d-0134-232b-0050569601ca-e.png b/backend/static/maps/07a2af00-a52d-0134-232b-0050569601ca-e.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/07a2af00-a52d-0134-232b-0050569601ca-e.png and /dev/null differ
diff --git a/backend/static/maps/08d-03.png b/backend/static/maps/08d-03.png
deleted file mode 100644
index 6d3affe..0000000
Binary files a/backend/static/maps/08d-03.png and /dev/null differ
diff --git a/backend/static/maps/090baa7c-aa3d-4530-9399-53d218a451fb.png b/backend/static/maps/090baa7c-aa3d-4530-9399-53d218a451fb.png
deleted file mode 100644
index 8042256..0000000
Binary files a/backend/static/maps/090baa7c-aa3d-4530-9399-53d218a451fb.png and /dev/null differ
diff --git a/backend/static/maps/09246819-e272-4d99-8c07-8914a48fcfb9.png b/backend/static/maps/09246819-e272-4d99-8c07-8914a48fcfb9.png
deleted file mode 100644
index 20b6843..0000000
Binary files a/backend/static/maps/09246819-e272-4d99-8c07-8914a48fcfb9.png and /dev/null differ
diff --git a/backend/static/maps/09269446ae2044da9ec7e22011473b6b_0.png b/backend/static/maps/09269446ae2044da9ec7e22011473b6b_0.png
deleted file mode 100644
index 16c4b87..0000000
Binary files a/backend/static/maps/09269446ae2044da9ec7e22011473b6b_0.png and /dev/null differ
diff --git a/backend/static/maps/0950e246-30c0-46c2-ba10-785eb5be7b3e.png b/backend/static/maps/0950e246-30c0-46c2-ba10-785eb5be7b3e.png
deleted file mode 100644
index 9e9d7e5..0000000
Binary files a/backend/static/maps/0950e246-30c0-46c2-ba10-785eb5be7b3e.png and /dev/null differ
diff --git a/backend/static/maps/09c9d25f-679b-4069-abbf-a7c3eb692c5d.png b/backend/static/maps/09c9d25f-679b-4069-abbf-a7c3eb692c5d.png
deleted file mode 100644
index 491554c..0000000
Binary files a/backend/static/maps/09c9d25f-679b-4069-abbf-a7c3eb692c5d.png and /dev/null differ
diff --git a/backend/static/maps/0a314897-332d-4d8e-9c0b-d620221b00bd.png b/backend/static/maps/0a314897-332d-4d8e-9c0b-d620221b00bd.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/0a314897-332d-4d8e-9c0b-d620221b00bd.png and /dev/null differ
diff --git a/backend/static/maps/0a42a065b8094842a0218c540e27761a_0.png b/backend/static/maps/0a42a065b8094842a0218c540e27761a_0.png
deleted file mode 100644
index ed8d039..0000000
Binary files a/backend/static/maps/0a42a065b8094842a0218c540e27761a_0.png and /dev/null differ
diff --git a/backend/static/maps/0a6a0cd6-a764-41cd-8677-27c335c4e042.png b/backend/static/maps/0a6a0cd6-a764-41cd-8677-27c335c4e042.png
deleted file mode 100644
index ad917e9..0000000
Binary files a/backend/static/maps/0a6a0cd6-a764-41cd-8677-27c335c4e042.png and /dev/null differ
diff --git a/backend/static/maps/0a7a16d845ee4e3687234dfc7474a3c3.png b/backend/static/maps/0a7a16d845ee4e3687234dfc7474a3c3.png
deleted file mode 100644
index 0f9e6d8..0000000
Binary files a/backend/static/maps/0a7a16d845ee4e3687234dfc7474a3c3.png and /dev/null differ
diff --git a/backend/static/maps/0aa4ef01778d453cba5a040344c5890c_0.png b/backend/static/maps/0aa4ef01778d453cba5a040344c5890c_0.png
deleted file mode 100644
index 8c63a6d..0000000
Binary files a/backend/static/maps/0aa4ef01778d453cba5a040344c5890c_0.png and /dev/null differ
diff --git a/backend/static/maps/0acd9a5a-ce9f-4ab6-b5c3-a65f63788f5d.png b/backend/static/maps/0acd9a5a-ce9f-4ab6-b5c3-a65f63788f5d.png
deleted file mode 100644
index 72f213e..0000000
Binary files a/backend/static/maps/0acd9a5a-ce9f-4ab6-b5c3-a65f63788f5d.png and /dev/null differ
diff --git a/backend/static/maps/0bb5d3d4a44e4972984360bee50e2aff_8.png b/backend/static/maps/0bb5d3d4a44e4972984360bee50e2aff_8.png
deleted file mode 100644
index b57de63..0000000
Binary files a/backend/static/maps/0bb5d3d4a44e4972984360bee50e2aff_8.png and /dev/null differ
diff --git a/backend/static/maps/0c29bf68-634f-49f9-a174-ce8203e6965f.png b/backend/static/maps/0c29bf68-634f-49f9-a174-ce8203e6965f.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/0c29bf68-634f-49f9-a174-ce8203e6965f.png and /dev/null differ
diff --git a/backend/static/maps/0c318e5cfecb4b21b116cbc410dee9c7_0.png b/backend/static/maps/0c318e5cfecb4b21b116cbc410dee9c7_0.png
deleted file mode 100644
index bdbe955..0000000
Binary files a/backend/static/maps/0c318e5cfecb4b21b116cbc410dee9c7_0.png and /dev/null differ
diff --git a/backend/static/maps/0c7d44a4-2cfa-4e0c-938c-8814b6890f9f.png b/backend/static/maps/0c7d44a4-2cfa-4e0c-938c-8814b6890f9f.png
deleted file mode 100644
index 86ab919..0000000
Binary files a/backend/static/maps/0c7d44a4-2cfa-4e0c-938c-8814b6890f9f.png and /dev/null differ
diff --git a/backend/static/maps/0cbc9abe-ef64-4071-83fd-f613a0a954e6.png b/backend/static/maps/0cbc9abe-ef64-4071-83fd-f613a0a954e6.png
deleted file mode 100644
index 0cf98d4..0000000
Binary files a/backend/static/maps/0cbc9abe-ef64-4071-83fd-f613a0a954e6.png and /dev/null differ
diff --git a/backend/static/maps/0cf501f2-fa1f-46f7-809a-801869b101da.png b/backend/static/maps/0cf501f2-fa1f-46f7-809a-801869b101da.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/0cf501f2-fa1f-46f7-809a-801869b101da.png and /dev/null differ
diff --git a/backend/static/maps/0d0da06f-8b4c-4904-82f4-1be0558c12ce.png b/backend/static/maps/0d0da06f-8b4c-4904-82f4-1be0558c12ce.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/0d0da06f-8b4c-4904-82f4-1be0558c12ce.png and /dev/null differ
diff --git a/backend/static/maps/0d751c3a-96c5-4322-8c6b-ef9328013c4d.png b/backend/static/maps/0d751c3a-96c5-4322-8c6b-ef9328013c4d.png
deleted file mode 100644
index 24a2fd4..0000000
Binary files a/backend/static/maps/0d751c3a-96c5-4322-8c6b-ef9328013c4d.png and /dev/null differ
diff --git a/backend/static/maps/0d846cb355704a6592b36ba043d96981_1.png b/backend/static/maps/0d846cb355704a6592b36ba043d96981_1.png
deleted file mode 100644
index 1b040d4..0000000
Binary files a/backend/static/maps/0d846cb355704a6592b36ba043d96981_1.png and /dev/null differ
diff --git a/backend/static/maps/0db57ea4-be95-4c78-b06b-ab40677c2d44.png b/backend/static/maps/0db57ea4-be95-4c78-b06b-ab40677c2d44.png
deleted file mode 100644
index 847e12d..0000000
Binary files a/backend/static/maps/0db57ea4-be95-4c78-b06b-ab40677c2d44.png and /dev/null differ
diff --git a/backend/static/maps/0f31c20d9b194a01bb585415390e4294_0.png b/backend/static/maps/0f31c20d9b194a01bb585415390e4294_0.png
deleted file mode 100644
index 7a508d4..0000000
Binary files a/backend/static/maps/0f31c20d9b194a01bb585415390e4294_0.png and /dev/null differ
diff --git a/backend/static/maps/0f4f21318476499c9f2a633a8c1aab08_0.png b/backend/static/maps/0f4f21318476499c9f2a633a8c1aab08_0.png
deleted file mode 100644
index b7fbc78..0000000
Binary files a/backend/static/maps/0f4f21318476499c9f2a633a8c1aab08_0.png and /dev/null differ
diff --git a/backend/static/maps/0fe17f25d1b94ab58785b0e5eec39791_0.png b/backend/static/maps/0fe17f25d1b94ab58785b0e5eec39791_0.png
deleted file mode 100644
index ed5332b..0000000
Binary files a/backend/static/maps/0fe17f25d1b94ab58785b0e5eec39791_0.png and /dev/null differ
diff --git a/backend/static/maps/10D5B003-7758-456E-AE76-D6512D8047FC.png b/backend/static/maps/10D5B003-7758-456E-AE76-D6512D8047FC.png
deleted file mode 100644
index c109d73..0000000
Binary files a/backend/static/maps/10D5B003-7758-456E-AE76-D6512D8047FC.png and /dev/null differ
diff --git a/backend/static/maps/10b-55011.png b/backend/static/maps/10b-55011.png
deleted file mode 100644
index 6dad43b..0000000
Binary files a/backend/static/maps/10b-55011.png and /dev/null differ
diff --git a/backend/static/maps/10c-04.png b/backend/static/maps/10c-04.png
deleted file mode 100644
index 35b880d..0000000
Binary files a/backend/static/maps/10c-04.png and /dev/null differ
diff --git a/backend/static/maps/10d-03.png b/backend/static/maps/10d-03.png
deleted file mode 100644
index 26435dc..0000000
Binary files a/backend/static/maps/10d-03.png and /dev/null differ
diff --git a/backend/static/maps/10d-05.png b/backend/static/maps/10d-05.png
deleted file mode 100644
index c003c01..0000000
Binary files a/backend/static/maps/10d-05.png and /dev/null differ
diff --git a/backend/static/maps/10f0c5092bbc4e618d4322546894fb51_15.png b/backend/static/maps/10f0c5092bbc4e618d4322546894fb51_15.png
deleted file mode 100644
index 5e333c0..0000000
Binary files a/backend/static/maps/10f0c5092bbc4e618d4322546894fb51_15.png and /dev/null differ
diff --git a/backend/static/maps/11482b1b-a7d7-4086-b4d2-3d81df9d97e2.png b/backend/static/maps/11482b1b-a7d7-4086-b4d2-3d81df9d97e2.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/11482b1b-a7d7-4086-b4d2-3d81df9d97e2.png and /dev/null differ
diff --git a/backend/static/maps/116746233520495ebaecdfe7205e261c_0.png b/backend/static/maps/116746233520495ebaecdfe7205e261c_0.png
deleted file mode 100644
index e4b3065..0000000
Binary files a/backend/static/maps/116746233520495ebaecdfe7205e261c_0.png and /dev/null differ
diff --git a/backend/static/maps/1168511b-7d94-46fc-b9f4-c5720af9c2e5.png b/backend/static/maps/1168511b-7d94-46fc-b9f4-c5720af9c2e5.png
deleted file mode 100644
index ce0be04..0000000
Binary files a/backend/static/maps/1168511b-7d94-46fc-b9f4-c5720af9c2e5.png and /dev/null differ
diff --git a/backend/static/maps/12cbab0512084e12bb2fed2fafe6a7f3_0.png b/backend/static/maps/12cbab0512084e12bb2fed2fafe6a7f3_0.png
deleted file mode 100644
index 1de5bde..0000000
Binary files a/backend/static/maps/12cbab0512084e12bb2fed2fafe6a7f3_0.png and /dev/null differ
diff --git a/backend/static/maps/12cc5075316b46aaac0feedeb91a45fd_82.png b/backend/static/maps/12cc5075316b46aaac0feedeb91a45fd_82.png
deleted file mode 100644
index fe546b8..0000000
Binary files a/backend/static/maps/12cc5075316b46aaac0feedeb91a45fd_82.png and /dev/null differ
diff --git a/backend/static/maps/12f3b260fe81439aa588d039d6af3751.png b/backend/static/maps/12f3b260fe81439aa588d039d6af3751.png
deleted file mode 100644
index c2fed61..0000000
Binary files a/backend/static/maps/12f3b260fe81439aa588d039d6af3751.png and /dev/null differ
diff --git a/backend/static/maps/13020-s99e-s560.png b/backend/static/maps/13020-s99e-s560.png
deleted file mode 100644
index 98385f4..0000000
Binary files a/backend/static/maps/13020-s99e-s560.png and /dev/null differ
diff --git a/backend/static/maps/13203252-7f0c-42dc-bfa6-82feb06e2b9d.png b/backend/static/maps/13203252-7f0c-42dc-bfa6-82feb06e2b9d.png
deleted file mode 100644
index 559317e..0000000
Binary files a/backend/static/maps/13203252-7f0c-42dc-bfa6-82feb06e2b9d.png and /dev/null differ
diff --git a/backend/static/maps/13a-04.png b/backend/static/maps/13a-04.png
deleted file mode 100644
index 5bcd77a..0000000
Binary files a/backend/static/maps/13a-04.png and /dev/null differ
diff --git a/backend/static/maps/13b4f358-d358-4ea7-a99e-89b066944502.png b/backend/static/maps/13b4f358-d358-4ea7-a99e-89b066944502.png
deleted file mode 100644
index e88aece..0000000
Binary files a/backend/static/maps/13b4f358-d358-4ea7-a99e-89b066944502.png and /dev/null differ
diff --git a/backend/static/maps/1437ab3a-cf78-4de2-94cf-52e976c34fff.png b/backend/static/maps/1437ab3a-cf78-4de2-94cf-52e976c34fff.png
deleted file mode 100644
index 11453df..0000000
Binary files a/backend/static/maps/1437ab3a-cf78-4de2-94cf-52e976c34fff.png and /dev/null differ
diff --git a/backend/static/maps/14aa081f-d7a6-4547-bc53-ec37e770ffca.png b/backend/static/maps/14aa081f-d7a6-4547-bc53-ec37e770ffca.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/14aa081f-d7a6-4547-bc53-ec37e770ffca.png and /dev/null differ
diff --git a/backend/static/maps/14c00530c04741df957fc6ee6d9a331a.png b/backend/static/maps/14c00530c04741df957fc6ee6d9a331a.png
deleted file mode 100644
index 29ba567..0000000
Binary files a/backend/static/maps/14c00530c04741df957fc6ee6d9a331a.png and /dev/null differ
diff --git a/backend/static/maps/155e67fe-41e1-422c-8d8e-76ae48cf661d.png b/backend/static/maps/155e67fe-41e1-422c-8d8e-76ae48cf661d.png
deleted file mode 100644
index 51d7d9d..0000000
Binary files a/backend/static/maps/155e67fe-41e1-422c-8d8e-76ae48cf661d.png and /dev/null differ
diff --git a/backend/static/maps/15609f8f4e0d42e79711cf33020caf2f_0.png b/backend/static/maps/15609f8f4e0d42e79711cf33020caf2f_0.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/15609f8f4e0d42e79711cf33020caf2f_0.png and /dev/null differ
diff --git a/backend/static/maps/15691e30-d4c3-410c-ab9f-39a53a220f99.png b/backend/static/maps/15691e30-d4c3-410c-ab9f-39a53a220f99.png
deleted file mode 100644
index a7fdf87..0000000
Binary files a/backend/static/maps/15691e30-d4c3-410c-ab9f-39a53a220f99.png and /dev/null differ
diff --git a/backend/static/maps/1622a316b6bf4c8293284c98e1000dae.png b/backend/static/maps/1622a316b6bf4c8293284c98e1000dae.png
deleted file mode 100644
index f452c93..0000000
Binary files a/backend/static/maps/1622a316b6bf4c8293284c98e1000dae.png and /dev/null differ
diff --git a/backend/static/maps/16980_auto_accessibility_data_2018_geopackage.png b/backend/static/maps/16980_auto_accessibility_data_2018_geopackage.png
deleted file mode 100644
index b021bd7..0000000
Binary files a/backend/static/maps/16980_auto_accessibility_data_2018_geopackage.png and /dev/null differ
diff --git a/backend/static/maps/16980_bike_accessibility_data_2017.png b/backend/static/maps/16980_bike_accessibility_data_2017.png
deleted file mode 100644
index b021bd7..0000000
Binary files a/backend/static/maps/16980_bike_accessibility_data_2017.png and /dev/null differ
diff --git a/backend/static/maps/16980_tr_2017_0700-0859.png b/backend/static/maps/16980_tr_2017_0700-0859.png
deleted file mode 100644
index b021bd7..0000000
Binary files a/backend/static/maps/16980_tr_2017_0700-0859.png and /dev/null differ
diff --git a/backend/static/maps/16b33aa3-1b67-49fc-ae46-abcb625b5ca4.png b/backend/static/maps/16b33aa3-1b67-49fc-ae46-abcb625b5ca4.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/16b33aa3-1b67-49fc-ae46-abcb625b5ca4.png and /dev/null differ
diff --git a/backend/static/maps/16b657b62dab46b9b7f6fff6a2163d74_0.png b/backend/static/maps/16b657b62dab46b9b7f6fff6a2163d74_0.png
deleted file mode 100644
index bb425bf..0000000
Binary files a/backend/static/maps/16b657b62dab46b9b7f6fff6a2163d74_0.png and /dev/null differ
diff --git a/backend/static/maps/17a86307-4dbc-4e06-b0c2-4033004ff224.png b/backend/static/maps/17a86307-4dbc-4e06-b0c2-4033004ff224.png
deleted file mode 100644
index f50e561..0000000
Binary files a/backend/static/maps/17a86307-4dbc-4e06-b0c2-4033004ff224.png and /dev/null differ
diff --git a/backend/static/maps/1904beb1-da99-4dd7-872d-4d44e33ea58e.png b/backend/static/maps/1904beb1-da99-4dd7-872d-4d44e33ea58e.png
deleted file mode 100644
index 79228f6..0000000
Binary files a/backend/static/maps/1904beb1-da99-4dd7-872d-4d44e33ea58e.png and /dev/null differ
diff --git a/backend/static/maps/19ed3cf472df47e2bacb23f34e4f66f0_1.png b/backend/static/maps/19ed3cf472df47e2bacb23f34e4f66f0_1.png
deleted file mode 100644
index d37cde5..0000000
Binary files a/backend/static/maps/19ed3cf472df47e2bacb23f34e4f66f0_1.png and /dev/null differ
diff --git a/backend/static/maps/19fdd6d0-3ff7-013a-7ba8-02d0d7bfd6e4-5.png b/backend/static/maps/19fdd6d0-3ff7-013a-7ba8-02d0d7bfd6e4-5.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/19fdd6d0-3ff7-013a-7ba8-02d0d7bfd6e4-5.png and /dev/null differ
diff --git a/backend/static/maps/1a122020-3ff7-013a-7ba8-02d0d7bfd6e4-a.png b/backend/static/maps/1a122020-3ff7-013a-7ba8-02d0d7bfd6e4-a.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/1a122020-3ff7-013a-7ba8-02d0d7bfd6e4-a.png and /dev/null differ
diff --git a/backend/static/maps/1a561a1719204d2bafa866c2c97d5ece_3.png b/backend/static/maps/1a561a1719204d2bafa866c2c97d5ece_3.png
deleted file mode 100644
index 275f766..0000000
Binary files a/backend/static/maps/1a561a1719204d2bafa866c2c97d5ece_3.png and /dev/null differ
diff --git a/backend/static/maps/1a9e68c4-a638-4a20-ae95-74f0093ab1d5.png b/backend/static/maps/1a9e68c4-a638-4a20-ae95-74f0093ab1d5.png
deleted file mode 100644
index aa68c32..0000000
Binary files a/backend/static/maps/1a9e68c4-a638-4a20-ae95-74f0093ab1d5.png and /dev/null differ
diff --git a/backend/static/maps/1afea059-7c2f-4b02-994d-968ef3b05af6.png b/backend/static/maps/1afea059-7c2f-4b02-994d-968ef3b05af6.png
deleted file mode 100644
index 978ec86..0000000
Binary files a/backend/static/maps/1afea059-7c2f-4b02-994d-968ef3b05af6.png and /dev/null differ
diff --git a/backend/static/maps/1b899f22-b285-4653-adc0-d968ce8bb933.png b/backend/static/maps/1b899f22-b285-4653-adc0-d968ce8bb933.png
deleted file mode 100644
index dac4dd6..0000000
Binary files a/backend/static/maps/1b899f22-b285-4653-adc0-d968ce8bb933.png and /dev/null differ
diff --git a/backend/static/maps/1c8ed3cabf3441978cbb207b291be9d7_0.png b/backend/static/maps/1c8ed3cabf3441978cbb207b291be9d7_0.png
deleted file mode 100644
index d610137..0000000
Binary files a/backend/static/maps/1c8ed3cabf3441978cbb207b291be9d7_0.png and /dev/null differ
diff --git a/backend/static/maps/1cc046815e4747bebd9d9c6bef61551e_0.png b/backend/static/maps/1cc046815e4747bebd9d9c6bef61551e_0.png
deleted file mode 100644
index 9673298..0000000
Binary files a/backend/static/maps/1cc046815e4747bebd9d9c6bef61551e_0.png and /dev/null differ
diff --git a/backend/static/maps/1cf3ffca88b44d81b3f673c3084811a1_0.png b/backend/static/maps/1cf3ffca88b44d81b3f673c3084811a1_0.png
deleted file mode 100644
index 2770c55..0000000
Binary files a/backend/static/maps/1cf3ffca88b44d81b3f673c3084811a1_0.png and /dev/null differ
diff --git a/backend/static/maps/1dfeca46-e95f-4e45-99e3-758a28ed358e.png b/backend/static/maps/1dfeca46-e95f-4e45-99e3-758a28ed358e.png
deleted file mode 100644
index 3589202..0000000
Binary files a/backend/static/maps/1dfeca46-e95f-4e45-99e3-758a28ed358e.png and /dev/null differ
diff --git a/backend/static/maps/1e70eff6bccf41e3a749f47e26ce8dd3_0.png b/backend/static/maps/1e70eff6bccf41e3a749f47e26ce8dd3_0.png
deleted file mode 100644
index e8a558f..0000000
Binary files a/backend/static/maps/1e70eff6bccf41e3a749f47e26ce8dd3_0.png and /dev/null differ
diff --git a/backend/static/maps/1eebb18148cf4f48a9a1669057eaa480_0.png b/backend/static/maps/1eebb18148cf4f48a9a1669057eaa480_0.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/1eebb18148cf4f48a9a1669057eaa480_0.png and /dev/null differ
diff --git a/backend/static/maps/1f1acee596164245968375e9a456e07c_0.png b/backend/static/maps/1f1acee596164245968375e9a456e07c_0.png
deleted file mode 100644
index ffab9bb..0000000
Binary files a/backend/static/maps/1f1acee596164245968375e9a456e07c_0.png and /dev/null differ
diff --git a/backend/static/maps/1f5ff111-f2e9-4ccb-b081-8e6da0a2d39a.png b/backend/static/maps/1f5ff111-f2e9-4ccb-b081-8e6da0a2d39a.png
deleted file mode 100644
index 161c9fd..0000000
Binary files a/backend/static/maps/1f5ff111-f2e9-4ccb-b081-8e6da0a2d39a.png and /dev/null differ
diff --git a/backend/static/maps/1f72f15c6fbf40daa42d3e3bc7ebe317_0.png b/backend/static/maps/1f72f15c6fbf40daa42d3e3bc7ebe317_0.png
deleted file mode 100644
index a042e18..0000000
Binary files a/backend/static/maps/1f72f15c6fbf40daa42d3e3bc7ebe317_0.png and /dev/null differ
diff --git a/backend/static/maps/1f9ea2728e8841408442696da19678ec_0.png b/backend/static/maps/1f9ea2728e8841408442696da19678ec_0.png
deleted file mode 100644
index 3ac64d3..0000000
Binary files a/backend/static/maps/1f9ea2728e8841408442696da19678ec_0.png and /dev/null differ
diff --git a/backend/static/maps/204beefe92a645d79fdf0969957bbdf8_0.png b/backend/static/maps/204beefe92a645d79fdf0969957bbdf8_0.png
deleted file mode 100644
index 4359f7c..0000000
Binary files a/backend/static/maps/204beefe92a645d79fdf0969957bbdf8_0.png and /dev/null differ
diff --git a/backend/static/maps/2096c21f-7fc4-43d0-8eed-ea2bb8200c9c.png b/backend/static/maps/2096c21f-7fc4-43d0-8eed-ea2bb8200c9c.png
deleted file mode 100644
index fa5290a..0000000
Binary files a/backend/static/maps/2096c21f-7fc4-43d0-8eed-ea2bb8200c9c.png and /dev/null differ
diff --git a/backend/static/maps/20a0c10c06a54240b5f2893e0187e22c_0.png b/backend/static/maps/20a0c10c06a54240b5f2893e0187e22c_0.png
deleted file mode 100644
index b189135..0000000
Binary files a/backend/static/maps/20a0c10c06a54240b5f2893e0187e22c_0.png and /dev/null differ
diff --git a/backend/static/maps/20d-0004.png b/backend/static/maps/20d-0004.png
deleted file mode 100644
index 568afcb..0000000
Binary files a/backend/static/maps/20d-0004.png and /dev/null differ
diff --git a/backend/static/maps/20efe299-508f-4894-bc2f-04c14b6717ce.png b/backend/static/maps/20efe299-508f-4894-bc2f-04c14b6717ce.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/20efe299-508f-4894-bc2f-04c14b6717ce.png and /dev/null differ
diff --git a/backend/static/maps/2149a20405504082b378f21110c47bf0_1.png b/backend/static/maps/2149a20405504082b378f21110c47bf0_1.png
deleted file mode 100644
index a74101d..0000000
Binary files a/backend/static/maps/2149a20405504082b378f21110c47bf0_1.png and /dev/null differ
diff --git a/backend/static/maps/2149a20405504082b378f21110c47bf0_8.png b/backend/static/maps/2149a20405504082b378f21110c47bf0_8.png
deleted file mode 100644
index a74101d..0000000
Binary files a/backend/static/maps/2149a20405504082b378f21110c47bf0_8.png and /dev/null differ
diff --git a/backend/static/maps/21bd6000-7c69-417b-bf1e-fc85979c4c45.png b/backend/static/maps/21bd6000-7c69-417b-bf1e-fc85979c4c45.png
deleted file mode 100644
index 5284e6b..0000000
Binary files a/backend/static/maps/21bd6000-7c69-417b-bf1e-fc85979c4c45.png and /dev/null differ
diff --git a/backend/static/maps/21c799ba72fa4d7a886d4ac78f2a247d_0.png b/backend/static/maps/21c799ba72fa4d7a886d4ac78f2a247d_0.png
deleted file mode 100644
index 9501179..0000000
Binary files a/backend/static/maps/21c799ba72fa4d7a886d4ac78f2a247d_0.png and /dev/null differ
diff --git a/backend/static/maps/21d14a7c-8bb3-4a42-8440-ab2d0f7973b6.png b/backend/static/maps/21d14a7c-8bb3-4a42-8440-ab2d0f7973b6.png
deleted file mode 100644
index 1ca7d44..0000000
Binary files a/backend/static/maps/21d14a7c-8bb3-4a42-8440-ab2d0f7973b6.png and /dev/null differ
diff --git a/backend/static/maps/21ee426eddc14014b80535cd6b8316e7_11.png b/backend/static/maps/21ee426eddc14014b80535cd6b8316e7_11.png
deleted file mode 100644
index e1e2a37..0000000
Binary files a/backend/static/maps/21ee426eddc14014b80535cd6b8316e7_11.png and /dev/null differ
diff --git a/backend/static/maps/2293a57ee23b4149be361d20a5d23149_0.png b/backend/static/maps/2293a57ee23b4149be361d20a5d23149_0.png
deleted file mode 100644
index 354450f..0000000
Binary files a/backend/static/maps/2293a57ee23b4149be361d20a5d23149_0.png and /dev/null differ
diff --git a/backend/static/maps/22fe57da-f5b8-4c52-90ea-b10591a66f90.png b/backend/static/maps/22fe57da-f5b8-4c52-90ea-b10591a66f90.png
deleted file mode 100644
index e21ce1b..0000000
Binary files a/backend/static/maps/22fe57da-f5b8-4c52-90ea-b10591a66f90.png and /dev/null differ
diff --git a/backend/static/maps/234fb209-8678-4c69-ac45-346036e026d3.png b/backend/static/maps/234fb209-8678-4c69-ac45-346036e026d3.png
deleted file mode 100644
index 51d7d9d..0000000
Binary files a/backend/static/maps/234fb209-8678-4c69-ac45-346036e026d3.png and /dev/null differ
diff --git a/backend/static/maps/23b58777-77d9-4ac6-a779-9f7fbd6eade8.png b/backend/static/maps/23b58777-77d9-4ac6-a779-9f7fbd6eade8.png
deleted file mode 100644
index 8d68b2f..0000000
Binary files a/backend/static/maps/23b58777-77d9-4ac6-a779-9f7fbd6eade8.png and /dev/null differ
diff --git a/backend/static/maps/25329f326412402fbd2a3b7bb6702c85_123.png b/backend/static/maps/25329f326412402fbd2a3b7bb6702c85_123.png
deleted file mode 100644
index b67ac68..0000000
Binary files a/backend/static/maps/25329f326412402fbd2a3b7bb6702c85_123.png and /dev/null differ
diff --git a/backend/static/maps/2551a62f395a438abaf1cb1f29ddfcdb_2521.png b/backend/static/maps/2551a62f395a438abaf1cb1f29ddfcdb_2521.png
deleted file mode 100644
index 71ab708..0000000
Binary files a/backend/static/maps/2551a62f395a438abaf1cb1f29ddfcdb_2521.png and /dev/null differ
diff --git a/backend/static/maps/25c12a1115b04ff6b5f19454d20810db_1.png b/backend/static/maps/25c12a1115b04ff6b5f19454d20810db_1.png
deleted file mode 100644
index 809958b..0000000
Binary files a/backend/static/maps/25c12a1115b04ff6b5f19454d20810db_1.png and /dev/null differ
diff --git a/backend/static/maps/25dd8729905449ada9f0383f5908cc28.png b/backend/static/maps/25dd8729905449ada9f0383f5908cc28.png
deleted file mode 100644
index eff57f4..0000000
Binary files a/backend/static/maps/25dd8729905449ada9f0383f5908cc28.png and /dev/null differ
diff --git a/backend/static/maps/25eb9f31-472e-4a80-9fd6-fa6092e56fb2.png b/backend/static/maps/25eb9f31-472e-4a80-9fd6-fa6092e56fb2.png
deleted file mode 100644
index 06625e9..0000000
Binary files a/backend/static/maps/25eb9f31-472e-4a80-9fd6-fa6092e56fb2.png and /dev/null differ
diff --git a/backend/static/maps/267d3537cce44526ae51e7993fc8c447.png b/backend/static/maps/267d3537cce44526ae51e7993fc8c447.png
deleted file mode 100644
index 0f9e6d8..0000000
Binary files a/backend/static/maps/267d3537cce44526ae51e7993fc8c447.png and /dev/null differ
diff --git a/backend/static/maps/26a17866-0b8b-4eb6-bc0c-6ebcfdd19741.png b/backend/static/maps/26a17866-0b8b-4eb6-bc0c-6ebcfdd19741.png
deleted file mode 100644
index e21ce1b..0000000
Binary files a/backend/static/maps/26a17866-0b8b-4eb6-bc0c-6ebcfdd19741.png and /dev/null differ
diff --git a/backend/static/maps/2726be2ce37141de9969105666700b9b_0.png b/backend/static/maps/2726be2ce37141de9969105666700b9b_0.png
deleted file mode 100644
index 525a92e..0000000
Binary files a/backend/static/maps/2726be2ce37141de9969105666700b9b_0.png and /dev/null differ
diff --git a/backend/static/maps/27730108-bd8d-4b53-af96-fd8e4b131162.png b/backend/static/maps/27730108-bd8d-4b53-af96-fd8e4b131162.png
deleted file mode 100644
index 6c3beaa..0000000
Binary files a/backend/static/maps/27730108-bd8d-4b53-af96-fd8e4b131162.png and /dev/null differ
diff --git a/backend/static/maps/27B6E7C8-F849-4E89-B20E-790FBE9FA996.png b/backend/static/maps/27B6E7C8-F849-4E89-B20E-790FBE9FA996.png
deleted file mode 100644
index 1c9486b..0000000
Binary files a/backend/static/maps/27B6E7C8-F849-4E89-B20E-790FBE9FA996.png and /dev/null differ
diff --git a/backend/static/maps/2817f6a4-d743-4f78-b6ef-d403bcd57281.png b/backend/static/maps/2817f6a4-d743-4f78-b6ef-d403bcd57281.png
deleted file mode 100644
index 94a2d06..0000000
Binary files a/backend/static/maps/2817f6a4-d743-4f78-b6ef-d403bcd57281.png and /dev/null differ
diff --git a/backend/static/maps/282bf55a-8798-495d-a45d-ad258d49f410.png b/backend/static/maps/282bf55a-8798-495d-a45d-ad258d49f410.png
deleted file mode 100644
index dd372ca..0000000
Binary files a/backend/static/maps/282bf55a-8798-495d-a45d-ad258d49f410.png and /dev/null differ
diff --git a/backend/static/maps/28a0f93c33454297b4a9d3faf3da552a_1.png b/backend/static/maps/28a0f93c33454297b4a9d3faf3da552a_1.png
deleted file mode 100644
index e186a09..0000000
Binary files a/backend/static/maps/28a0f93c33454297b4a9d3faf3da552a_1.png and /dev/null differ
diff --git a/backend/static/maps/28dbd58ad90e4a47ab0e0334d2b69427_0.png b/backend/static/maps/28dbd58ad90e4a47ab0e0334d2b69427_0.png
deleted file mode 100644
index ed8d039..0000000
Binary files a/backend/static/maps/28dbd58ad90e4a47ab0e0334d2b69427_0.png and /dev/null differ
diff --git a/backend/static/maps/290bc19a-9bed-4d84-a082-69be252d38d0.png b/backend/static/maps/290bc19a-9bed-4d84-a082-69be252d38d0.png
deleted file mode 100644
index 26c3ff3..0000000
Binary files a/backend/static/maps/290bc19a-9bed-4d84-a082-69be252d38d0.png and /dev/null differ
diff --git a/backend/static/maps/293a912df27c4873a181b299ec6d4c87_0.png b/backend/static/maps/293a912df27c4873a181b299ec6d4c87_0.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/293a912df27c4873a181b299ec6d4c87_0.png and /dev/null differ
diff --git a/backend/static/maps/295eaed2-1380-46b1-bfb7-cfae20ca31ef.png b/backend/static/maps/295eaed2-1380-46b1-bfb7-cfae20ca31ef.png
deleted file mode 100644
index fe3aef5..0000000
Binary files a/backend/static/maps/295eaed2-1380-46b1-bfb7-cfae20ca31ef.png and /dev/null differ
diff --git a/backend/static/maps/29999f44-261e-461f-a48e-e0f3dedca11e.png b/backend/static/maps/29999f44-261e-461f-a48e-e0f3dedca11e.png
deleted file mode 100644
index 3193f85..0000000
Binary files a/backend/static/maps/29999f44-261e-461f-a48e-e0f3dedca11e.png and /dev/null differ
diff --git a/backend/static/maps/29c164a2-801f-4e96-ab03-c0b37444f663.png b/backend/static/maps/29c164a2-801f-4e96-ab03-c0b37444f663.png
deleted file mode 100644
index 75f53e5..0000000
Binary files a/backend/static/maps/29c164a2-801f-4e96-ab03-c0b37444f663.png and /dev/null differ
diff --git a/backend/static/maps/2a5f7c27-3d61-4123-a80b-0f81c74f92ae.png b/backend/static/maps/2a5f7c27-3d61-4123-a80b-0f81c74f92ae.png
deleted file mode 100644
index a544483..0000000
Binary files a/backend/static/maps/2a5f7c27-3d61-4123-a80b-0f81c74f92ae.png and /dev/null differ
diff --git a/backend/static/maps/2a7e457cb46e48a798dc2f79596121ec_0.png b/backend/static/maps/2a7e457cb46e48a798dc2f79596121ec_0.png
deleted file mode 100644
index c31e3ab..0000000
Binary files a/backend/static/maps/2a7e457cb46e48a798dc2f79596121ec_0.png and /dev/null differ
diff --git a/backend/static/maps/2a80e32727aa4b58a3ad79e849748c99_0.png b/backend/static/maps/2a80e32727aa4b58a3ad79e849748c99_0.png
deleted file mode 100644
index ca80664..0000000
Binary files a/backend/static/maps/2a80e32727aa4b58a3ad79e849748c99_0.png and /dev/null differ
diff --git a/backend/static/maps/2a8d5f4e39644c07ba76034c327d9238_3.png b/backend/static/maps/2a8d5f4e39644c07ba76034c327d9238_3.png
deleted file mode 100644
index f34823a..0000000
Binary files a/backend/static/maps/2a8d5f4e39644c07ba76034c327d9238_3.png and /dev/null differ
diff --git a/backend/static/maps/2a9463f1-bf2e-4030-b730-0de06ee85f96.png b/backend/static/maps/2a9463f1-bf2e-4030-b730-0de06ee85f96.png
deleted file mode 100644
index 3589202..0000000
Binary files a/backend/static/maps/2a9463f1-bf2e-4030-b730-0de06ee85f96.png and /dev/null differ
diff --git a/backend/static/maps/2ae19730-54f4-0138-7202-02d0d7bfd6e4-1.png b/backend/static/maps/2ae19730-54f4-0138-7202-02d0d7bfd6e4-1.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/2ae19730-54f4-0138-7202-02d0d7bfd6e4-1.png and /dev/null differ
diff --git a/backend/static/maps/2b2fcf14f20c4e66a3c2c6ed538054ef_0.png b/backend/static/maps/2b2fcf14f20c4e66a3c2c6ed538054ef_0.png
deleted file mode 100644
index 10e7282..0000000
Binary files a/backend/static/maps/2b2fcf14f20c4e66a3c2c6ed538054ef_0.png and /dev/null differ
diff --git a/backend/static/maps/2b5c73187ce04666ae6f732cff748550_0.png b/backend/static/maps/2b5c73187ce04666ae6f732cff748550_0.png
deleted file mode 100644
index f1831af..0000000
Binary files a/backend/static/maps/2b5c73187ce04666ae6f732cff748550_0.png and /dev/null differ
diff --git a/backend/static/maps/2bfacde2-eb4e-4b52-ace5-41311b415d68.png b/backend/static/maps/2bfacde2-eb4e-4b52-ace5-41311b415d68.png
deleted file mode 100644
index 0cf98d4..0000000
Binary files a/backend/static/maps/2bfacde2-eb4e-4b52-ace5-41311b415d68.png and /dev/null differ
diff --git a/backend/static/maps/2c5dd53d0e9b454198518660eaeb31e3_0.png b/backend/static/maps/2c5dd53d0e9b454198518660eaeb31e3_0.png
deleted file mode 100644
index b866058..0000000
Binary files a/backend/static/maps/2c5dd53d0e9b454198518660eaeb31e3_0.png and /dev/null differ
diff --git a/backend/static/maps/2cff4c07-423a-4b61-af08-7288fbb773eb.png b/backend/static/maps/2cff4c07-423a-4b61-af08-7288fbb773eb.png
deleted file mode 100644
index e21ce1b..0000000
Binary files a/backend/static/maps/2cff4c07-423a-4b61-af08-7288fbb773eb.png and /dev/null differ
diff --git a/backend/static/maps/2d20e0bc73af41e2a2ad78ea975d69d8_6.png b/backend/static/maps/2d20e0bc73af41e2a2ad78ea975d69d8_6.png
deleted file mode 100644
index 9ec1b36..0000000
Binary files a/backend/static/maps/2d20e0bc73af41e2a2ad78ea975d69d8_6.png and /dev/null differ
diff --git a/backend/static/maps/2d43c4be95eb40dfaa4b3313e56397a8_23.png b/backend/static/maps/2d43c4be95eb40dfaa4b3313e56397a8_23.png
deleted file mode 100644
index 6bb3952..0000000
Binary files a/backend/static/maps/2d43c4be95eb40dfaa4b3313e56397a8_23.png and /dev/null differ
diff --git a/backend/static/maps/2d479b9f-3ffe-4777-96e3-81f2c3ebacc6.png b/backend/static/maps/2d479b9f-3ffe-4777-96e3-81f2c3ebacc6.png
deleted file mode 100644
index ad917e9..0000000
Binary files a/backend/static/maps/2d479b9f-3ffe-4777-96e3-81f2c3ebacc6.png and /dev/null differ
diff --git a/backend/static/maps/2d8985e1-8817-444c-91d3-87cd739d343b.png b/backend/static/maps/2d8985e1-8817-444c-91d3-87cd739d343b.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/2d8985e1-8817-444c-91d3-87cd739d343b.png and /dev/null differ
diff --git a/backend/static/maps/2d9731ae137b477d933c6987254378f9_3.png b/backend/static/maps/2d9731ae137b477d933c6987254378f9_3.png
deleted file mode 100644
index 66176c3..0000000
Binary files a/backend/static/maps/2d9731ae137b477d933c6987254378f9_3.png and /dev/null differ
diff --git a/backend/static/maps/2e1efae7d7d244afb08f2b011e031d25_8.png b/backend/static/maps/2e1efae7d7d244afb08f2b011e031d25_8.png
deleted file mode 100644
index 2a2df30..0000000
Binary files a/backend/static/maps/2e1efae7d7d244afb08f2b011e031d25_8.png and /dev/null differ
diff --git a/backend/static/maps/2e2afbf22247407da72d082d49249f94_1.png b/backend/static/maps/2e2afbf22247407da72d082d49249f94_1.png
deleted file mode 100644
index b93a0e8..0000000
Binary files a/backend/static/maps/2e2afbf22247407da72d082d49249f94_1.png and /dev/null differ
diff --git a/backend/static/maps/2e877101-d776-4646-b09d-5e38b83b894a.png b/backend/static/maps/2e877101-d776-4646-b09d-5e38b83b894a.png
deleted file mode 100644
index 51d7d9d..0000000
Binary files a/backend/static/maps/2e877101-d776-4646-b09d-5e38b83b894a.png and /dev/null differ
diff --git a/backend/static/maps/2eaf9a2c-32f7-4f7d-840e-68b7ab52e8f9.png b/backend/static/maps/2eaf9a2c-32f7-4f7d-840e-68b7ab52e8f9.png
deleted file mode 100644
index 0db4dbc..0000000
Binary files a/backend/static/maps/2eaf9a2c-32f7-4f7d-840e-68b7ab52e8f9.png and /dev/null differ
diff --git a/backend/static/maps/30382a0a-87ed-4e8c-b409-85cb89d01df4.png b/backend/static/maps/30382a0a-87ed-4e8c-b409-85cb89d01df4.png
deleted file mode 100644
index d4abc2c..0000000
Binary files a/backend/static/maps/30382a0a-87ed-4e8c-b409-85cb89d01df4.png and /dev/null differ
diff --git a/backend/static/maps/307d9267-aa6c-428a-9237-92ad0100dace.png b/backend/static/maps/307d9267-aa6c-428a-9237-92ad0100dace.png
deleted file mode 100644
index 1e9c105..0000000
Binary files a/backend/static/maps/307d9267-aa6c-428a-9237-92ad0100dace.png and /dev/null differ
diff --git a/backend/static/maps/308d8f11-4d26-40c0-ae39-9b9f140aaf86.png b/backend/static/maps/308d8f11-4d26-40c0-ae39-9b9f140aaf86.png
deleted file mode 100644
index 8c6c4dc..0000000
Binary files a/backend/static/maps/308d8f11-4d26-40c0-ae39-9b9f140aaf86.png and /dev/null differ
diff --git a/backend/static/maps/30bbb37c-ca2d-47e6-bae4-72c57272383c.png b/backend/static/maps/30bbb37c-ca2d-47e6-bae4-72c57272383c.png
deleted file mode 100644
index e21ce1b..0000000
Binary files a/backend/static/maps/30bbb37c-ca2d-47e6-bae4-72c57272383c.png and /dev/null differ
diff --git a/backend/static/maps/3275b9ea-68ff-4fe3-8421-8c8e37d76c12.png b/backend/static/maps/3275b9ea-68ff-4fe3-8421-8c8e37d76c12.png
deleted file mode 100644
index bc21a0f..0000000
Binary files a/backend/static/maps/3275b9ea-68ff-4fe3-8421-8c8e37d76c12.png and /dev/null differ
diff --git a/backend/static/maps/329e5e3b-ecd2-4937-83d9-15bab432db10.png b/backend/static/maps/329e5e3b-ecd2-4937-83d9-15bab432db10.png
deleted file mode 100644
index 0d31f50..0000000
Binary files a/backend/static/maps/329e5e3b-ecd2-4937-83d9-15bab432db10.png and /dev/null differ
diff --git a/backend/static/maps/32a7a4240930463899afad7510f3b2d5_0.png b/backend/static/maps/32a7a4240930463899afad7510f3b2d5_0.png
deleted file mode 100644
index faaf561..0000000
Binary files a/backend/static/maps/32a7a4240930463899afad7510f3b2d5_0.png and /dev/null differ
diff --git a/backend/static/maps/33788a3e61004f209968b1854bde9e68_0.png b/backend/static/maps/33788a3e61004f209968b1854bde9e68_0.png
deleted file mode 100644
index 4ec2778..0000000
Binary files a/backend/static/maps/33788a3e61004f209968b1854bde9e68_0.png and /dev/null differ
diff --git a/backend/static/maps/3383ad00-095b-42ba-b306-6a351b4d5845.png b/backend/static/maps/3383ad00-095b-42ba-b306-6a351b4d5845.png
deleted file mode 100644
index 101ee96..0000000
Binary files a/backend/static/maps/3383ad00-095b-42ba-b306-6a351b4d5845.png and /dev/null differ
diff --git a/backend/static/maps/33ff7ed4-a3fc-423b-882b-f9a71647e346.png b/backend/static/maps/33ff7ed4-a3fc-423b-882b-f9a71647e346.png
deleted file mode 100644
index 9055ba8..0000000
Binary files a/backend/static/maps/33ff7ed4-a3fc-423b-882b-f9a71647e346.png and /dev/null differ
diff --git a/backend/static/maps/340136c0-8a1f-0137-6d99-02d0d7bfd6e4-6.png b/backend/static/maps/340136c0-8a1f-0137-6d99-02d0d7bfd6e4-6.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/340136c0-8a1f-0137-6d99-02d0d7bfd6e4-6.png and /dev/null differ
diff --git a/backend/static/maps/3408a1b0-8a1f-0137-6d99-02d0d7bfd6e4-b.png b/backend/static/maps/3408a1b0-8a1f-0137-6d99-02d0d7bfd6e4-b.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/3408a1b0-8a1f-0137-6d99-02d0d7bfd6e4-b.png and /dev/null differ
diff --git a/backend/static/maps/34a8d08d-df21-43bb-8ba8-d781dfb1f6b8.png b/backend/static/maps/34a8d08d-df21-43bb-8ba8-d781dfb1f6b8.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/34a8d08d-df21-43bb-8ba8-d781dfb1f6b8.png and /dev/null differ
diff --git a/backend/static/maps/34fcaf41-2e62-4ccd-9822-5d689aafa01b.png b/backend/static/maps/34fcaf41-2e62-4ccd-9822-5d689aafa01b.png
deleted file mode 100644
index 8896c4e..0000000
Binary files a/backend/static/maps/34fcaf41-2e62-4ccd-9822-5d689aafa01b.png and /dev/null differ
diff --git a/backend/static/maps/351B2DF4-64B3-44DD-8E27-C5CA8A8ED2D0.png b/backend/static/maps/351B2DF4-64B3-44DD-8E27-C5CA8A8ED2D0.png
deleted file mode 100644
index c109d73..0000000
Binary files a/backend/static/maps/351B2DF4-64B3-44DD-8E27-C5CA8A8ED2D0.png and /dev/null differ
diff --git a/backend/static/maps/35bbaf00-83f8-013b-4432-02d0d7bfd6e4-6.png b/backend/static/maps/35bbaf00-83f8-013b-4432-02d0d7bfd6e4-6.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/35bbaf00-83f8-013b-4432-02d0d7bfd6e4-6.png and /dev/null differ
diff --git a/backend/static/maps/35f03f8e-b8a7-4e8c-97a5-772a5480b51d.png b/backend/static/maps/35f03f8e-b8a7-4e8c-97a5-772a5480b51d.png
deleted file mode 100644
index 4b71299..0000000
Binary files a/backend/static/maps/35f03f8e-b8a7-4e8c-97a5-772a5480b51d.png and /dev/null differ
diff --git a/backend/static/maps/364196e4-ae94-4920-b735-47a120719a13.png b/backend/static/maps/364196e4-ae94-4920-b735-47a120719a13.png
deleted file mode 100644
index ab06b65..0000000
Binary files a/backend/static/maps/364196e4-ae94-4920-b735-47a120719a13.png and /dev/null differ
diff --git a/backend/static/maps/364f4c3613164f79a1d8c84aed6c03e0_0.png b/backend/static/maps/364f4c3613164f79a1d8c84aed6c03e0_0.png
deleted file mode 100644
index d0c720d..0000000
Binary files a/backend/static/maps/364f4c3613164f79a1d8c84aed6c03e0_0.png and /dev/null differ
diff --git a/backend/static/maps/36740_auto_accessibility_data_2018_geopackage.png b/backend/static/maps/36740_auto_accessibility_data_2018_geopackage.png
deleted file mode 100644
index 3879de8..0000000
Binary files a/backend/static/maps/36740_auto_accessibility_data_2018_geopackage.png and /dev/null differ
diff --git a/backend/static/maps/36740_tr_2014_0700-0859.png b/backend/static/maps/36740_tr_2014_0700-0859.png
deleted file mode 100644
index 3879de8..0000000
Binary files a/backend/static/maps/36740_tr_2014_0700-0859.png and /dev/null differ
diff --git a/backend/static/maps/36740_tr_2015_0700-0859.png b/backend/static/maps/36740_tr_2015_0700-0859.png
deleted file mode 100644
index 3879de8..0000000
Binary files a/backend/static/maps/36740_tr_2015_0700-0859.png and /dev/null differ
diff --git a/backend/static/maps/36740_tr_2016_0700-0859.png b/backend/static/maps/36740_tr_2016_0700-0859.png
deleted file mode 100644
index 3879de8..0000000
Binary files a/backend/static/maps/36740_tr_2016_0700-0859.png and /dev/null differ
diff --git a/backend/static/maps/36740_tr_2017_0700-0859.png b/backend/static/maps/36740_tr_2017_0700-0859.png
deleted file mode 100644
index 3879de8..0000000
Binary files a/backend/static/maps/36740_tr_2017_0700-0859.png and /dev/null differ
diff --git a/backend/static/maps/36740_transit_accessibility_data_2018_geopackage.png b/backend/static/maps/36740_transit_accessibility_data_2018_geopackage.png
deleted file mode 100644
index 3879de8..0000000
Binary files a/backend/static/maps/36740_transit_accessibility_data_2018_geopackage.png and /dev/null differ
diff --git a/backend/static/maps/36740_wa_2014_0700-0700.png b/backend/static/maps/36740_wa_2014_0700-0700.png
deleted file mode 100644
index 3879de8..0000000
Binary files a/backend/static/maps/36740_wa_2014_0700-0700.png and /dev/null differ
diff --git a/backend/static/maps/3717aadb312242f5976c52fc04b74808_0.png b/backend/static/maps/3717aadb312242f5976c52fc04b74808_0.png
deleted file mode 100644
index 398dd3f..0000000
Binary files a/backend/static/maps/3717aadb312242f5976c52fc04b74808_0.png and /dev/null differ
diff --git a/backend/static/maps/374525ea-068b-4b19-9311-05f69deab1de.png b/backend/static/maps/374525ea-068b-4b19-9311-05f69deab1de.png
deleted file mode 100644
index 00fd634..0000000
Binary files a/backend/static/maps/374525ea-068b-4b19-9311-05f69deab1de.png and /dev/null differ
diff --git a/backend/static/maps/37a9e2a8e6a04918bb4be623b4acd1ee_1.png b/backend/static/maps/37a9e2a8e6a04918bb4be623b4acd1ee_1.png
deleted file mode 100644
index 30c1bd9..0000000
Binary files a/backend/static/maps/37a9e2a8e6a04918bb4be623b4acd1ee_1.png and /dev/null differ
diff --git a/backend/static/maps/37e3405295f042eb9f0a415dbcf63229_210.png b/backend/static/maps/37e3405295f042eb9f0a415dbcf63229_210.png
deleted file mode 100644
index 8d38245..0000000
Binary files a/backend/static/maps/37e3405295f042eb9f0a415dbcf63229_210.png and /dev/null differ
diff --git a/backend/static/maps/382c3a08-ad56-4e21-abf4-2a7a9a7f0610.png b/backend/static/maps/382c3a08-ad56-4e21-abf4-2a7a9a7f0610.png
deleted file mode 100644
index f848e6e..0000000
Binary files a/backend/static/maps/382c3a08-ad56-4e21-abf4-2a7a9a7f0610.png and /dev/null differ
diff --git a/backend/static/maps/38564233-37BF-48ED-89DE-2423B180E040.png b/backend/static/maps/38564233-37BF-48ED-89DE-2423B180E040.png
deleted file mode 100644
index c109d73..0000000
Binary files a/backend/static/maps/38564233-37BF-48ED-89DE-2423B180E040.png and /dev/null differ
diff --git a/backend/static/maps/386fda92f6db45ddb48765259abe461c_0.png b/backend/static/maps/386fda92f6db45ddb48765259abe461c_0.png
deleted file mode 100644
index 8164fff..0000000
Binary files a/backend/static/maps/386fda92f6db45ddb48765259abe461c_0.png and /dev/null differ
diff --git a/backend/static/maps/391a903f-9863-4863-971c-2e520500dcca.png b/backend/static/maps/391a903f-9863-4863-971c-2e520500dcca.png
deleted file mode 100644
index 47200d4..0000000
Binary files a/backend/static/maps/391a903f-9863-4863-971c-2e520500dcca.png and /dev/null differ
diff --git a/backend/static/maps/398d183c-0234-427c-b435-321f01bcf3e4.png b/backend/static/maps/398d183c-0234-427c-b435-321f01bcf3e4.png
deleted file mode 100644
index edd6599..0000000
Binary files a/backend/static/maps/398d183c-0234-427c-b435-321f01bcf3e4.png and /dev/null differ
diff --git a/backend/static/maps/39e0abfec4fe487093e6740e6e051c65_10.png b/backend/static/maps/39e0abfec4fe487093e6740e6e051c65_10.png
deleted file mode 100644
index 0ed44e9..0000000
Binary files a/backend/static/maps/39e0abfec4fe487093e6740e6e051c65_10.png and /dev/null differ
diff --git a/backend/static/maps/39e6cb2a-8e77-4805-b897-fc88083948eb.png b/backend/static/maps/39e6cb2a-8e77-4805-b897-fc88083948eb.png
deleted file mode 100644
index 332003c..0000000
Binary files a/backend/static/maps/39e6cb2a-8e77-4805-b897-fc88083948eb.png and /dev/null differ
diff --git a/backend/static/maps/3AA481B4-29D1-4E50-81B4-3ADF8FE36A7C.png b/backend/static/maps/3AA481B4-29D1-4E50-81B4-3ADF8FE36A7C.png
deleted file mode 100644
index 58c4884..0000000
Binary files a/backend/static/maps/3AA481B4-29D1-4E50-81B4-3ADF8FE36A7C.png and /dev/null differ
diff --git a/backend/static/maps/3a097192af93421faed651068deedd61_92.png b/backend/static/maps/3a097192af93421faed651068deedd61_92.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/3a097192af93421faed651068deedd61_92.png and /dev/null differ
diff --git a/backend/static/maps/3aab3102508542488f8b5de22bdd6b49.png b/backend/static/maps/3aab3102508542488f8b5de22bdd6b49.png
deleted file mode 100644
index 4b0936d..0000000
Binary files a/backend/static/maps/3aab3102508542488f8b5de22bdd6b49.png and /dev/null differ
diff --git a/backend/static/maps/3ba83defdf4e4e47b2089dfe592e5c31_0.png b/backend/static/maps/3ba83defdf4e4e47b2089dfe592e5c31_0.png
deleted file mode 100644
index c122170..0000000
Binary files a/backend/static/maps/3ba83defdf4e4e47b2089dfe592e5c31_0.png and /dev/null differ
diff --git a/backend/static/maps/3bc9c8c1b2574e9697ac6262ce6ce728_2.png b/backend/static/maps/3bc9c8c1b2574e9697ac6262ce6ce728_2.png
deleted file mode 100644
index 809958b..0000000
Binary files a/backend/static/maps/3bc9c8c1b2574e9697ac6262ce6ce728_2.png and /dev/null differ
diff --git a/backend/static/maps/3db107c5b057481094c56788c551c74e_25.png b/backend/static/maps/3db107c5b057481094c56788c551c74e_25.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/3db107c5b057481094c56788c551c74e_25.png and /dev/null differ
diff --git a/backend/static/maps/3db266bf09144baaa6ae40f10285ca2d_0.png b/backend/static/maps/3db266bf09144baaa6ae40f10285ca2d_0.png
deleted file mode 100644
index dc8fbe9..0000000
Binary files a/backend/static/maps/3db266bf09144baaa6ae40f10285ca2d_0.png and /dev/null differ
diff --git a/backend/static/maps/3e0c1eb04e5c48b3be9040b0589d3ccf_8.png b/backend/static/maps/3e0c1eb04e5c48b3be9040b0589d3ccf_8.png
deleted file mode 100644
index 142bd10..0000000
Binary files a/backend/static/maps/3e0c1eb04e5c48b3be9040b0589d3ccf_8.png and /dev/null differ
diff --git a/backend/static/maps/3e47579d-0bc8-4ffa-ab16-9549fb063fc0.png b/backend/static/maps/3e47579d-0bc8-4ffa-ab16-9549fb063fc0.png
deleted file mode 100644
index d98a91c..0000000
Binary files a/backend/static/maps/3e47579d-0bc8-4ffa-ab16-9549fb063fc0.png and /dev/null differ
diff --git a/backend/static/maps/3ea58130-8779-013a-c212-02d0d7bfd6e4-b.png b/backend/static/maps/3ea58130-8779-013a-c212-02d0d7bfd6e4-b.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/3ea58130-8779-013a-c212-02d0d7bfd6e4-b.png and /dev/null differ
diff --git a/backend/static/maps/3f2d64d8-1e50-4a7d-b4b7-c88c195dee83.png b/backend/static/maps/3f2d64d8-1e50-4a7d-b4b7-c88c195dee83.png
deleted file mode 100644
index 1e9c105..0000000
Binary files a/backend/static/maps/3f2d64d8-1e50-4a7d-b4b7-c88c195dee83.png and /dev/null differ
diff --git a/backend/static/maps/3f9993c5cc7e4f589c7d253b542d1525_0.png b/backend/static/maps/3f9993c5cc7e4f589c7d253b542d1525_0.png
deleted file mode 100644
index 58a50c3..0000000
Binary files a/backend/static/maps/3f9993c5cc7e4f589c7d253b542d1525_0.png and /dev/null differ
diff --git a/backend/static/maps/40cfdc83cda44402a2b2d99c99e5d30c_90.png b/backend/static/maps/40cfdc83cda44402a2b2d99c99e5d30c_90.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/40cfdc83cda44402a2b2d99c99e5d30c_90.png and /dev/null differ
diff --git a/backend/static/maps/41121093-eab0-4316-9400-920b290913ae.png b/backend/static/maps/41121093-eab0-4316-9400-920b290913ae.png
deleted file mode 100644
index bca27b3..0000000
Binary files a/backend/static/maps/41121093-eab0-4316-9400-920b290913ae.png and /dev/null differ
diff --git a/backend/static/maps/41b074d9d1114553bff2bd481bdb1195_0.png b/backend/static/maps/41b074d9d1114553bff2bd481bdb1195_0.png
deleted file mode 100644
index 8d86c37..0000000
Binary files a/backend/static/maps/41b074d9d1114553bff2bd481bdb1195_0.png and /dev/null differ
diff --git a/backend/static/maps/41b074d9d1114553bff2bd481bdb1195_9.png b/backend/static/maps/41b074d9d1114553bff2bd481bdb1195_9.png
deleted file mode 100644
index 6be17d5..0000000
Binary files a/backend/static/maps/41b074d9d1114553bff2bd481bdb1195_9.png and /dev/null differ
diff --git a/backend/static/maps/42d5eb57-6b76-48d2-a50d-35f03103df2a.png b/backend/static/maps/42d5eb57-6b76-48d2-a50d-35f03103df2a.png
deleted file mode 100644
index a3cd7a8..0000000
Binary files a/backend/static/maps/42d5eb57-6b76-48d2-a50d-35f03103df2a.png and /dev/null differ
diff --git a/backend/static/maps/43a5d69e-4bdd-4b5d-b1ac-1c17f9317aa6.png b/backend/static/maps/43a5d69e-4bdd-4b5d-b1ac-1c17f9317aa6.png
deleted file mode 100644
index acdc36a..0000000
Binary files a/backend/static/maps/43a5d69e-4bdd-4b5d-b1ac-1c17f9317aa6.png and /dev/null differ
diff --git a/backend/static/maps/43c5d364-f848-40ab-b3cd-dcf6f68056ae.png b/backend/static/maps/43c5d364-f848-40ab-b3cd-dcf6f68056ae.png
deleted file mode 100644
index 6249ef8..0000000
Binary files a/backend/static/maps/43c5d364-f848-40ab-b3cd-dcf6f68056ae.png and /dev/null differ
diff --git a/backend/static/maps/43c6c44d5eec41e78587c60a323d6f15.png b/backend/static/maps/43c6c44d5eec41e78587c60a323d6f15.png
deleted file mode 100644
index f452c93..0000000
Binary files a/backend/static/maps/43c6c44d5eec41e78587c60a323d6f15.png and /dev/null differ
diff --git a/backend/static/maps/44476aa8a6b148f3ba6328d46c0c9b27_0.png b/backend/static/maps/44476aa8a6b148f3ba6328d46c0c9b27_0.png
deleted file mode 100644
index 0806528..0000000
Binary files a/backend/static/maps/44476aa8a6b148f3ba6328d46c0c9b27_0.png and /dev/null differ
diff --git a/backend/static/maps/4569d77e6d004c0ea5fada54640189cf_5.png b/backend/static/maps/4569d77e6d004c0ea5fada54640189cf_5.png
deleted file mode 100644
index dd844e7..0000000
Binary files a/backend/static/maps/4569d77e6d004c0ea5fada54640189cf_5.png and /dev/null differ
diff --git a/backend/static/maps/457b8fa7-e0d0-49c9-95fd-97a716bd9a7c.png b/backend/static/maps/457b8fa7-e0d0-49c9-95fd-97a716bd9a7c.png
deleted file mode 100644
index 66efc24..0000000
Binary files a/backend/static/maps/457b8fa7-e0d0-49c9-95fd-97a716bd9a7c.png and /dev/null differ
diff --git a/backend/static/maps/45e0487cb34c4343b6fad45b97669a19_24.png b/backend/static/maps/45e0487cb34c4343b6fad45b97669a19_24.png
deleted file mode 100644
index 59d4912..0000000
Binary files a/backend/static/maps/45e0487cb34c4343b6fad45b97669a19_24.png and /dev/null differ
diff --git a/backend/static/maps/461bfa6c-e447-43fb-b3c8-30b79e2990df.png b/backend/static/maps/461bfa6c-e447-43fb-b3c8-30b79e2990df.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/461bfa6c-e447-43fb-b3c8-30b79e2990df.png and /dev/null differ
diff --git a/backend/static/maps/4694fcb7-9a8e-4bd2-abcf-1efdd22a437e.png b/backend/static/maps/4694fcb7-9a8e-4bd2-abcf-1efdd22a437e.png
deleted file mode 100644
index a6415e1..0000000
Binary files a/backend/static/maps/4694fcb7-9a8e-4bd2-abcf-1efdd22a437e.png and /dev/null differ
diff --git a/backend/static/maps/46a2191e-b468-47e0-82a6-7f8ef3fbc981.png b/backend/static/maps/46a2191e-b468-47e0-82a6-7f8ef3fbc981.png
deleted file mode 100644
index b435fb2..0000000
Binary files a/backend/static/maps/46a2191e-b468-47e0-82a6-7f8ef3fbc981.png and /dev/null differ
diff --git a/backend/static/maps/46a3790e057a413e83103abf0e50a816_0.png b/backend/static/maps/46a3790e057a413e83103abf0e50a816_0.png
deleted file mode 100644
index cf54358..0000000
Binary files a/backend/static/maps/46a3790e057a413e83103abf0e50a816_0.png and /dev/null differ
diff --git a/backend/static/maps/46bb34fb-5506-44bd-a3f6-d1535610d78a.png b/backend/static/maps/46bb34fb-5506-44bd-a3f6-d1535610d78a.png
deleted file mode 100644
index d69ab02..0000000
Binary files a/backend/static/maps/46bb34fb-5506-44bd-a3f6-d1535610d78a.png and /dev/null differ
diff --git a/backend/static/maps/4724fbf05165439389c9d4737264267b_0.png b/backend/static/maps/4724fbf05165439389c9d4737264267b_0.png
deleted file mode 100644
index 73a1281..0000000
Binary files a/backend/static/maps/4724fbf05165439389c9d4737264267b_0.png and /dev/null differ
diff --git a/backend/static/maps/4756783474754af786bec98ed11f4e8f_0.png b/backend/static/maps/4756783474754af786bec98ed11f4e8f_0.png
deleted file mode 100644
index 16c4b87..0000000
Binary files a/backend/static/maps/4756783474754af786bec98ed11f4e8f_0.png and /dev/null differ
diff --git a/backend/static/maps/475b5e412b384f4aa16448379159081e_1.png b/backend/static/maps/475b5e412b384f4aa16448379159081e_1.png
deleted file mode 100644
index 2ecbc13..0000000
Binary files a/backend/static/maps/475b5e412b384f4aa16448379159081e_1.png and /dev/null differ
diff --git a/backend/static/maps/4773b780-8a98-4905-bbfd-02b72acdceb9.png b/backend/static/maps/4773b780-8a98-4905-bbfd-02b72acdceb9.png
deleted file mode 100644
index 418630a..0000000
Binary files a/backend/static/maps/4773b780-8a98-4905-bbfd-02b72acdceb9.png and /dev/null differ
diff --git a/backend/static/maps/48476450-3979-0138-7137-02d0d7bfd6e4-1.png b/backend/static/maps/48476450-3979-0138-7137-02d0d7bfd6e4-1.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/48476450-3979-0138-7137-02d0d7bfd6e4-1.png and /dev/null differ
diff --git a/backend/static/maps/485875f6-3ca8-4642-8974-6a60af660442.png b/backend/static/maps/485875f6-3ca8-4642-8974-6a60af660442.png
deleted file mode 100644
index 3589202..0000000
Binary files a/backend/static/maps/485875f6-3ca8-4642-8974-6a60af660442.png and /dev/null differ
diff --git a/backend/static/maps/486b482e77b248b5b5b51aad2390c1c2_0.png b/backend/static/maps/486b482e77b248b5b5b51aad2390c1c2_0.png
deleted file mode 100644
index e9d62a7..0000000
Binary files a/backend/static/maps/486b482e77b248b5b5b51aad2390c1c2_0.png and /dev/null differ
diff --git a/backend/static/maps/48886893-e0df-4a62-bdc5-0b69c32bf9ca.png b/backend/static/maps/48886893-e0df-4a62-bdc5-0b69c32bf9ca.png
deleted file mode 100644
index e604048..0000000
Binary files a/backend/static/maps/48886893-e0df-4a62-bdc5-0b69c32bf9ca.png and /dev/null differ
diff --git a/backend/static/maps/48c39727-3919-4a77-be79-0dc05809886b.png b/backend/static/maps/48c39727-3919-4a77-be79-0dc05809886b.png
deleted file mode 100644
index fb4207d..0000000
Binary files a/backend/static/maps/48c39727-3919-4a77-be79-0dc05809886b.png and /dev/null differ
diff --git a/backend/static/maps/48eb1400-4713-0136-4f2e-0050569601ca-3.png b/backend/static/maps/48eb1400-4713-0136-4f2e-0050569601ca-3.png
deleted file mode 100644
index 1a4e2fb..0000000
Binary files a/backend/static/maps/48eb1400-4713-0136-4f2e-0050569601ca-3.png and /dev/null differ
diff --git a/backend/static/maps/4939f95d483d4d0b91474af1d08c97af.png b/backend/static/maps/4939f95d483d4d0b91474af1d08c97af.png
deleted file mode 100644
index 45c6887..0000000
Binary files a/backend/static/maps/4939f95d483d4d0b91474af1d08c97af.png and /dev/null differ
diff --git a/backend/static/maps/4BEDD9CC-8E09-477D-B372-151BD36E9FFA.png b/backend/static/maps/4BEDD9CC-8E09-477D-B372-151BD36E9FFA.png
deleted file mode 100644
index f70d2cc..0000000
Binary files a/backend/static/maps/4BEDD9CC-8E09-477D-B372-151BD36E9FFA.png and /dev/null differ
diff --git a/backend/static/maps/4a2904c1-09f4-4a5f-948d-98ac636b6e10.png b/backend/static/maps/4a2904c1-09f4-4a5f-948d-98ac636b6e10.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/4a2904c1-09f4-4a5f-948d-98ac636b6e10.png and /dev/null differ
diff --git a/backend/static/maps/4ba185be-13f3-473c-92a0-0332aabc9ff9.png b/backend/static/maps/4ba185be-13f3-473c-92a0-0332aabc9ff9.png
deleted file mode 100644
index 9f70130..0000000
Binary files a/backend/static/maps/4ba185be-13f3-473c-92a0-0332aabc9ff9.png and /dev/null differ
diff --git a/backend/static/maps/4bf192a1-1cbe-4c85-b92c-ebb4e00a750f.png b/backend/static/maps/4bf192a1-1cbe-4c85-b92c-ebb4e00a750f.png
deleted file mode 100644
index fe3aef5..0000000
Binary files a/backend/static/maps/4bf192a1-1cbe-4c85-b92c-ebb4e00a750f.png and /dev/null differ
diff --git a/backend/static/maps/4bfdb83a8e6c4dfda9ef77ec35f89b85_1.png b/backend/static/maps/4bfdb83a8e6c4dfda9ef77ec35f89b85_1.png
deleted file mode 100644
index 2a75af4..0000000
Binary files a/backend/static/maps/4bfdb83a8e6c4dfda9ef77ec35f89b85_1.png and /dev/null differ
diff --git a/backend/static/maps/4c2a9858c46b441d90174b314353368a_1.png b/backend/static/maps/4c2a9858c46b441d90174b314353368a_1.png
deleted file mode 100644
index 30c1bd9..0000000
Binary files a/backend/static/maps/4c2a9858c46b441d90174b314353368a_1.png and /dev/null differ
diff --git a/backend/static/maps/4c75874452ab408092eab69ffca4948a_173.png b/backend/static/maps/4c75874452ab408092eab69ffca4948a_173.png
deleted file mode 100644
index d08e270..0000000
Binary files a/backend/static/maps/4c75874452ab408092eab69ffca4948a_173.png and /dev/null differ
diff --git a/backend/static/maps/4c75874452ab408092eab69ffca4948a_204.png b/backend/static/maps/4c75874452ab408092eab69ffca4948a_204.png
deleted file mode 100644
index 61e70d0..0000000
Binary files a/backend/static/maps/4c75874452ab408092eab69ffca4948a_204.png and /dev/null differ
diff --git a/backend/static/maps/4cbe937a1d7844df8fb0d7f16ad78ed7_14.png b/backend/static/maps/4cbe937a1d7844df8fb0d7f16ad78ed7_14.png
deleted file mode 100644
index e4a8b4d..0000000
Binary files a/backend/static/maps/4cbe937a1d7844df8fb0d7f16ad78ed7_14.png and /dev/null differ
diff --git a/backend/static/maps/4cd8bdeaa372425f9de28ce64955d36f_7.png b/backend/static/maps/4cd8bdeaa372425f9de28ce64955d36f_7.png
deleted file mode 100644
index eb4acd3..0000000
Binary files a/backend/static/maps/4cd8bdeaa372425f9de28ce64955d36f_7.png and /dev/null differ
diff --git a/backend/static/maps/4d3d27568821483ba7039f51ee6f4903_0.png b/backend/static/maps/4d3d27568821483ba7039f51ee6f4903_0.png
deleted file mode 100644
index 153a8fc..0000000
Binary files a/backend/static/maps/4d3d27568821483ba7039f51ee6f4903_0.png and /dev/null differ
diff --git a/backend/static/maps/4d68e250-3eda-4bd2-a7fa-38a599b99d1c.png b/backend/static/maps/4d68e250-3eda-4bd2-a7fa-38a599b99d1c.png
deleted file mode 100644
index 539520e..0000000
Binary files a/backend/static/maps/4d68e250-3eda-4bd2-a7fa-38a599b99d1c.png and /dev/null differ
diff --git a/backend/static/maps/4dce0c32-4dcc-4a79-9b96-c8dec352bbe7.png b/backend/static/maps/4dce0c32-4dcc-4a79-9b96-c8dec352bbe7.png
deleted file mode 100644
index 332003c..0000000
Binary files a/backend/static/maps/4dce0c32-4dcc-4a79-9b96-c8dec352bbe7.png and /dev/null differ
diff --git a/backend/static/maps/4ea69ab2-e8b1-49ea-8e31-357e55817f6d.png b/backend/static/maps/4ea69ab2-e8b1-49ea-8e31-357e55817f6d.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/4ea69ab2-e8b1-49ea-8e31-357e55817f6d.png and /dev/null differ
diff --git a/backend/static/maps/4ee29f71-8a15-4b40-8f96-00fb3ebed6de.png b/backend/static/maps/4ee29f71-8a15-4b40-8f96-00fb3ebed6de.png
deleted file mode 100644
index f50e561..0000000
Binary files a/backend/static/maps/4ee29f71-8a15-4b40-8f96-00fb3ebed6de.png and /dev/null differ
diff --git a/backend/static/maps/4f0335d5124d4e2c9fc5f189bb97ad06_0.png b/backend/static/maps/4f0335d5124d4e2c9fc5f189bb97ad06_0.png
deleted file mode 100644
index e5d70ff..0000000
Binary files a/backend/static/maps/4f0335d5124d4e2c9fc5f189bb97ad06_0.png and /dev/null differ
diff --git a/backend/static/maps/4f317c7e-5131-4395-b29d-17d037f2731c.png b/backend/static/maps/4f317c7e-5131-4395-b29d-17d037f2731c.png
deleted file mode 100644
index 6bde0b7..0000000
Binary files a/backend/static/maps/4f317c7e-5131-4395-b29d-17d037f2731c.png and /dev/null differ
diff --git a/backend/static/maps/4f7198a51adb449393614de79a345c7b_0.png b/backend/static/maps/4f7198a51adb449393614de79a345c7b_0.png
deleted file mode 100644
index 67ba43c..0000000
Binary files a/backend/static/maps/4f7198a51adb449393614de79a345c7b_0.png and /dev/null differ
diff --git a/backend/static/maps/4f9af759-a5b3-4fda-bf24-0fc85d8e3c84.png b/backend/static/maps/4f9af759-a5b3-4fda-bf24-0fc85d8e3c84.png
deleted file mode 100644
index 3589202..0000000
Binary files a/backend/static/maps/4f9af759-a5b3-4fda-bf24-0fc85d8e3c84.png and /dev/null differ
diff --git a/backend/static/maps/4fbe28084541458e9b393b112ff76e86_0.png b/backend/static/maps/4fbe28084541458e9b393b112ff76e86_0.png
deleted file mode 100644
index a6648d8..0000000
Binary files a/backend/static/maps/4fbe28084541458e9b393b112ff76e86_0.png and /dev/null differ
diff --git a/backend/static/maps/500B839E-A11D-4EBB-A63E-BE429C066436.png b/backend/static/maps/500B839E-A11D-4EBB-A63E-BE429C066436.png
deleted file mode 100644
index e0e4ac2..0000000
Binary files a/backend/static/maps/500B839E-A11D-4EBB-A63E-BE429C066436.png and /dev/null differ
diff --git a/backend/static/maps/502eefa828f94f749bbab9da63b0d016_0.png b/backend/static/maps/502eefa828f94f749bbab9da63b0d016_0.png
deleted file mode 100644
index 8d86c37..0000000
Binary files a/backend/static/maps/502eefa828f94f749bbab9da63b0d016_0.png and /dev/null differ
diff --git a/backend/static/maps/50459833c4854b36a95247fcca5645d8_0.png b/backend/static/maps/50459833c4854b36a95247fcca5645d8_0.png
deleted file mode 100644
index 084b3c0..0000000
Binary files a/backend/static/maps/50459833c4854b36a95247fcca5645d8_0.png and /dev/null differ
diff --git a/backend/static/maps/50459833c4854b36a95247fcca5645d8_1.png b/backend/static/maps/50459833c4854b36a95247fcca5645d8_1.png
deleted file mode 100644
index 235bd85..0000000
Binary files a/backend/static/maps/50459833c4854b36a95247fcca5645d8_1.png and /dev/null differ
diff --git a/backend/static/maps/50D0003A-8D85-457A-88FB-771D9B2171A9.png b/backend/static/maps/50D0003A-8D85-457A-88FB-771D9B2171A9.png
deleted file mode 100644
index 0505b3b..0000000
Binary files a/backend/static/maps/50D0003A-8D85-457A-88FB-771D9B2171A9.png and /dev/null differ
diff --git a/backend/static/maps/52049e30b212477093df581f2a5cb381.png b/backend/static/maps/52049e30b212477093df581f2a5cb381.png
deleted file mode 100644
index ab47a7e..0000000
Binary files a/backend/static/maps/52049e30b212477093df581f2a5cb381.png and /dev/null differ
diff --git a/backend/static/maps/523dc7b6-135b-48ee-b593-0ee3a6ddadf2.png b/backend/static/maps/523dc7b6-135b-48ee-b593-0ee3a6ddadf2.png
deleted file mode 100644
index 88beb48..0000000
Binary files a/backend/static/maps/523dc7b6-135b-48ee-b593-0ee3a6ddadf2.png and /dev/null differ
diff --git a/backend/static/maps/528340fc-b325-4191-8874-1d2ef0384f37.png b/backend/static/maps/528340fc-b325-4191-8874-1d2ef0384f37.png
deleted file mode 100644
index 5babe0f..0000000
Binary files a/backend/static/maps/528340fc-b325-4191-8874-1d2ef0384f37.png and /dev/null differ
diff --git a/backend/static/maps/52b4af2fc8be47c685851a5c99714bfd_1.png b/backend/static/maps/52b4af2fc8be47c685851a5c99714bfd_1.png
deleted file mode 100644
index 30c1bd9..0000000
Binary files a/backend/static/maps/52b4af2fc8be47c685851a5c99714bfd_1.png and /dev/null differ
diff --git a/backend/static/maps/52d4441a1e1743f58cd27408f564d11d_2.png b/backend/static/maps/52d4441a1e1743f58cd27408f564d11d_2.png
deleted file mode 100644
index b04159d..0000000
Binary files a/backend/static/maps/52d4441a1e1743f58cd27408f564d11d_2.png and /dev/null differ
diff --git a/backend/static/maps/52ef73eaf607405f8ff0a53beec4a340.png b/backend/static/maps/52ef73eaf607405f8ff0a53beec4a340.png
deleted file mode 100644
index 1bd168e..0000000
Binary files a/backend/static/maps/52ef73eaf607405f8ff0a53beec4a340.png and /dev/null differ
diff --git a/backend/static/maps/52fdb7a6c8844dd0aa99e9f8f785e834_17.png b/backend/static/maps/52fdb7a6c8844dd0aa99e9f8f785e834_17.png
deleted file mode 100644
index d28161a..0000000
Binary files a/backend/static/maps/52fdb7a6c8844dd0aa99e9f8f785e834_17.png and /dev/null differ
diff --git a/backend/static/maps/535bf21345f94d43aaa0db358d224a1f_0.png b/backend/static/maps/535bf21345f94d43aaa0db358d224a1f_0.png
deleted file mode 100644
index 01d76be..0000000
Binary files a/backend/static/maps/535bf21345f94d43aaa0db358d224a1f_0.png and /dev/null differ
diff --git a/backend/static/maps/538c2497-5cbd-4eea-a83f-3b1b7bb80f96.png b/backend/static/maps/538c2497-5cbd-4eea-a83f-3b1b7bb80f96.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/538c2497-5cbd-4eea-a83f-3b1b7bb80f96.png and /dev/null differ
diff --git a/backend/static/maps/540c6234-2fa7-4b16-a0d3-d8f3128855c4.png b/backend/static/maps/540c6234-2fa7-4b16-a0d3-d8f3128855c4.png
deleted file mode 100644
index b3a9989..0000000
Binary files a/backend/static/maps/540c6234-2fa7-4b16-a0d3-d8f3128855c4.png and /dev/null differ
diff --git a/backend/static/maps/548fd0a0-ef9f-428f-ab71-f957130c945c.png b/backend/static/maps/548fd0a0-ef9f-428f-ab71-f957130c945c.png
deleted file mode 100644
index e6bc07d..0000000
Binary files a/backend/static/maps/548fd0a0-ef9f-428f-ab71-f957130c945c.png and /dev/null differ
diff --git a/backend/static/maps/54d706c6ddb84e1994ec5e552165b5e7_12.png b/backend/static/maps/54d706c6ddb84e1994ec5e552165b5e7_12.png
deleted file mode 100644
index e4a8b4d..0000000
Binary files a/backend/static/maps/54d706c6ddb84e1994ec5e552165b5e7_12.png and /dev/null differ
diff --git a/backend/static/maps/54d706c6ddb84e1994ec5e552165b5e7_13.png b/backend/static/maps/54d706c6ddb84e1994ec5e552165b5e7_13.png
deleted file mode 100644
index e4a8b4d..0000000
Binary files a/backend/static/maps/54d706c6ddb84e1994ec5e552165b5e7_13.png and /dev/null differ
diff --git a/backend/static/maps/54d706c6ddb84e1994ec5e552165b5e7_19.png b/backend/static/maps/54d706c6ddb84e1994ec5e552165b5e7_19.png
deleted file mode 100644
index 623e0ff..0000000
Binary files a/backend/static/maps/54d706c6ddb84e1994ec5e552165b5e7_19.png and /dev/null differ
diff --git a/backend/static/maps/54d706c6ddb84e1994ec5e552165b5e7_20.png b/backend/static/maps/54d706c6ddb84e1994ec5e552165b5e7_20.png
deleted file mode 100644
index 623e0ff..0000000
Binary files a/backend/static/maps/54d706c6ddb84e1994ec5e552165b5e7_20.png and /dev/null differ
diff --git a/backend/static/maps/56c1c441-7862-43b6-b5f5-1952eb5d2b97.png b/backend/static/maps/56c1c441-7862-43b6-b5f5-1952eb5d2b97.png
deleted file mode 100644
index 26ed39f..0000000
Binary files a/backend/static/maps/56c1c441-7862-43b6-b5f5-1952eb5d2b97.png and /dev/null differ
diff --git a/backend/static/maps/56c2ebe5-57b7-428f-ae0d-0d47bb52b6e5.png b/backend/static/maps/56c2ebe5-57b7-428f-ae0d-0d47bb52b6e5.png
deleted file mode 100644
index 3589202..0000000
Binary files a/backend/static/maps/56c2ebe5-57b7-428f-ae0d-0d47bb52b6e5.png and /dev/null differ
diff --git a/backend/static/maps/56e7c06b61ef4b96bd9fcbc29f34858d_1.png b/backend/static/maps/56e7c06b61ef4b96bd9fcbc29f34858d_1.png
deleted file mode 100644
index 6b96d33..0000000
Binary files a/backend/static/maps/56e7c06b61ef4b96bd9fcbc29f34858d_1.png and /dev/null differ
diff --git a/backend/static/maps/57eff558-59c2-4352-8e38-9cb0f09348a5.png b/backend/static/maps/57eff558-59c2-4352-8e38-9cb0f09348a5.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/57eff558-59c2-4352-8e38-9cb0f09348a5.png and /dev/null differ
diff --git a/backend/static/maps/58b7902b-4fce-4649-a67c-c8a4cf6a6031.png b/backend/static/maps/58b7902b-4fce-4649-a67c-c8a4cf6a6031.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/58b7902b-4fce-4649-a67c-c8a4cf6a6031.png and /dev/null differ
diff --git a/backend/static/maps/58efa3d2e94a4d88ba1da8f49e1ef621_0.png b/backend/static/maps/58efa3d2e94a4d88ba1da8f49e1ef621_0.png
deleted file mode 100644
index f7311a0..0000000
Binary files a/backend/static/maps/58efa3d2e94a4d88ba1da8f49e1ef621_0.png and /dev/null differ
diff --git a/backend/static/maps/59310d7f-be9f-48f8-911b-b41815d27c0e.png b/backend/static/maps/59310d7f-be9f-48f8-911b-b41815d27c0e.png
deleted file mode 100644
index 51d7d9d..0000000
Binary files a/backend/static/maps/59310d7f-be9f-48f8-911b-b41815d27c0e.png and /dev/null differ
diff --git a/backend/static/maps/5C8A39B0-4150-445A-85D0-6924E28FE07D.png b/backend/static/maps/5C8A39B0-4150-445A-85D0-6924E28FE07D.png
deleted file mode 100644
index c109d73..0000000
Binary files a/backend/static/maps/5C8A39B0-4150-445A-85D0-6924E28FE07D.png and /dev/null differ
diff --git a/backend/static/maps/5a90ee76-883f-4a4e-8cdb-f51e0efea08e.png b/backend/static/maps/5a90ee76-883f-4a4e-8cdb-f51e0efea08e.png
deleted file mode 100644
index 0db4dbc..0000000
Binary files a/backend/static/maps/5a90ee76-883f-4a4e-8cdb-f51e0efea08e.png and /dev/null differ
diff --git a/backend/static/maps/5aa7d36a-f808-491f-a526-3c9cdd79e2f7.png b/backend/static/maps/5aa7d36a-f808-491f-a526-3c9cdd79e2f7.png
deleted file mode 100644
index 08d80b3..0000000
Binary files a/backend/static/maps/5aa7d36a-f808-491f-a526-3c9cdd79e2f7.png and /dev/null differ
diff --git a/backend/static/maps/5aada0066ee343a99d1d012c88b9b6cd_23.png b/backend/static/maps/5aada0066ee343a99d1d012c88b9b6cd_23.png
deleted file mode 100644
index 9234d05..0000000
Binary files a/backend/static/maps/5aada0066ee343a99d1d012c88b9b6cd_23.png and /dev/null differ
diff --git a/backend/static/maps/5ac850be-31be-4b6d-848c-c477b89b1c85.png b/backend/static/maps/5ac850be-31be-4b6d-848c-c477b89b1c85.png
deleted file mode 100644
index 3589202..0000000
Binary files a/backend/static/maps/5ac850be-31be-4b6d-848c-c477b89b1c85.png and /dev/null differ
diff --git a/backend/static/maps/5ad118e6609a4206b3c0623b51bff48b_1.png b/backend/static/maps/5ad118e6609a4206b3c0623b51bff48b_1.png
deleted file mode 100644
index 30c1bd9..0000000
Binary files a/backend/static/maps/5ad118e6609a4206b3c0623b51bff48b_1.png and /dev/null differ
diff --git a/backend/static/maps/5ad118e6609a4206b3c0623b51bff48b_2.png b/backend/static/maps/5ad118e6609a4206b3c0623b51bff48b_2.png
deleted file mode 100644
index 0ea78ee..0000000
Binary files a/backend/static/maps/5ad118e6609a4206b3c0623b51bff48b_2.png and /dev/null differ
diff --git a/backend/static/maps/5b46e7f1-212e-40e5-a0b3-22fd8ce39196.png b/backend/static/maps/5b46e7f1-212e-40e5-a0b3-22fd8ce39196.png
deleted file mode 100644
index 72a3e3c..0000000
Binary files a/backend/static/maps/5b46e7f1-212e-40e5-a0b3-22fd8ce39196.png and /dev/null differ
diff --git a/backend/static/maps/5be34f6e-5226-4c2c-93f8-1af6a6ae2d55.png b/backend/static/maps/5be34f6e-5226-4c2c-93f8-1af6a6ae2d55.png
deleted file mode 100644
index c44650d..0000000
Binary files a/backend/static/maps/5be34f6e-5226-4c2c-93f8-1af6a6ae2d55.png and /dev/null differ
diff --git a/backend/static/maps/5be9c1fe37cc43388b6f4341a9a67b01_0.png b/backend/static/maps/5be9c1fe37cc43388b6f4341a9a67b01_0.png
deleted file mode 100644
index 230eacb..0000000
Binary files a/backend/static/maps/5be9c1fe37cc43388b6f4341a9a67b01_0.png and /dev/null differ
diff --git a/backend/static/maps/5c39cc00-a484-438c-ab93-2cac74f59cb5.png b/backend/static/maps/5c39cc00-a484-438c-ab93-2cac74f59cb5.png
deleted file mode 100644
index acdc36a..0000000
Binary files a/backend/static/maps/5c39cc00-a484-438c-ab93-2cac74f59cb5.png and /dev/null differ
diff --git a/backend/static/maps/5c919835-1035-4e29-930f-77401d834641.png b/backend/static/maps/5c919835-1035-4e29-930f-77401d834641.png
deleted file mode 100644
index bc920d4..0000000
Binary files a/backend/static/maps/5c919835-1035-4e29-930f-77401d834641.png and /dev/null differ
diff --git a/backend/static/maps/5d12c0e0281e484086842f534217f608_0.png b/backend/static/maps/5d12c0e0281e484086842f534217f608_0.png
deleted file mode 100644
index d118e71..0000000
Binary files a/backend/static/maps/5d12c0e0281e484086842f534217f608_0.png and /dev/null differ
diff --git a/backend/static/maps/5d3d01132271460291aed3ed063f4e74_301.png b/backend/static/maps/5d3d01132271460291aed3ed063f4e74_301.png
deleted file mode 100644
index 8d38245..0000000
Binary files a/backend/static/maps/5d3d01132271460291aed3ed063f4e74_301.png and /dev/null differ
diff --git a/backend/static/maps/5d4d9be9-dc38-42bb-b1e2-9cdf43f6d6c1.png b/backend/static/maps/5d4d9be9-dc38-42bb-b1e2-9cdf43f6d6c1.png
deleted file mode 100644
index 94a2d06..0000000
Binary files a/backend/static/maps/5d4d9be9-dc38-42bb-b1e2-9cdf43f6d6c1.png and /dev/null differ
diff --git a/backend/static/maps/5da69612-3f2a-4047-b808-9dd2e387d3f9.png b/backend/static/maps/5da69612-3f2a-4047-b808-9dd2e387d3f9.png
deleted file mode 100644
index 7c572f3..0000000
Binary files a/backend/static/maps/5da69612-3f2a-4047-b808-9dd2e387d3f9.png and /dev/null differ
diff --git a/backend/static/maps/5f15169bc7ba43568dd8096985ffb63e_0.png b/backend/static/maps/5f15169bc7ba43568dd8096985ffb63e_0.png
deleted file mode 100644
index dd4e2f2..0000000
Binary files a/backend/static/maps/5f15169bc7ba43568dd8096985ffb63e_0.png and /dev/null differ
diff --git a/backend/static/maps/5f33c271-4f09-4ff6-b1c4-bba09a72380a.png b/backend/static/maps/5f33c271-4f09-4ff6-b1c4-bba09a72380a.png
deleted file mode 100644
index 47c928c..0000000
Binary files a/backend/static/maps/5f33c271-4f09-4ff6-b1c4-bba09a72380a.png and /dev/null differ
diff --git a/backend/static/maps/5msb-wbxn.png b/backend/static/maps/5msb-wbxn.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/5msb-wbxn.png and /dev/null differ
diff --git a/backend/static/maps/6168bfde-32a6-438a-9f13-98fcf4172c3c.png b/backend/static/maps/6168bfde-32a6-438a-9f13-98fcf4172c3c.png
deleted file mode 100644
index 25d78ea..0000000
Binary files a/backend/static/maps/6168bfde-32a6-438a-9f13-98fcf4172c3c.png and /dev/null differ
diff --git a/backend/static/maps/61751a54-ebb4-4ef2-a01c-78362d6a4f65.png b/backend/static/maps/61751a54-ebb4-4ef2-a01c-78362d6a4f65.png
deleted file mode 100644
index ad917e9..0000000
Binary files a/backend/static/maps/61751a54-ebb4-4ef2-a01c-78362d6a4f65.png and /dev/null differ
diff --git a/backend/static/maps/61a1053a-4d54-46a3-adf5-a1880bba3768.png b/backend/static/maps/61a1053a-4d54-46a3-adf5-a1880bba3768.png
deleted file mode 100644
index 0db4dbc..0000000
Binary files a/backend/static/maps/61a1053a-4d54-46a3-adf5-a1880bba3768.png and /dev/null differ
diff --git a/backend/static/maps/61ef6a66-826e-4696-8c36-5a64a88161e4.png b/backend/static/maps/61ef6a66-826e-4696-8c36-5a64a88161e4.png
deleted file mode 100644
index 237e3e8..0000000
Binary files a/backend/static/maps/61ef6a66-826e-4696-8c36-5a64a88161e4.png and /dev/null differ
diff --git a/backend/static/maps/61f8a512e74e4b149db652f93946e95e_0.png b/backend/static/maps/61f8a512e74e4b149db652f93946e95e_0.png
deleted file mode 100644
index dc979f8..0000000
Binary files a/backend/static/maps/61f8a512e74e4b149db652f93946e95e_0.png and /dev/null differ
diff --git a/backend/static/maps/635df489-3e09-4b2e-ba30-7d5ebbf1789b.png b/backend/static/maps/635df489-3e09-4b2e-ba30-7d5ebbf1789b.png
deleted file mode 100644
index 332003c..0000000
Binary files a/backend/static/maps/635df489-3e09-4b2e-ba30-7d5ebbf1789b.png and /dev/null differ
diff --git a/backend/static/maps/6361d48ea6474579be22ce8371f49798_47.png b/backend/static/maps/6361d48ea6474579be22ce8371f49798_47.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/6361d48ea6474579be22ce8371f49798_47.png and /dev/null differ
diff --git a/backend/static/maps/63bfb7005fce4ecd84daf9df5da17a55_15.png b/backend/static/maps/63bfb7005fce4ecd84daf9df5da17a55_15.png
deleted file mode 100644
index da1b292..0000000
Binary files a/backend/static/maps/63bfb7005fce4ecd84daf9df5da17a55_15.png and /dev/null differ
diff --git a/backend/static/maps/63c787aa96ca48709db37fb22a209117_0.png b/backend/static/maps/63c787aa96ca48709db37fb22a209117_0.png
deleted file mode 100644
index ebe962f..0000000
Binary files a/backend/static/maps/63c787aa96ca48709db37fb22a209117_0.png and /dev/null differ
diff --git a/backend/static/maps/63def95902ad4ba8b58ca621e00ca5ba_1.png b/backend/static/maps/63def95902ad4ba8b58ca621e00ca5ba_1.png
deleted file mode 100644
index f98ecb9..0000000
Binary files a/backend/static/maps/63def95902ad4ba8b58ca621e00ca5ba_1.png and /dev/null differ
diff --git a/backend/static/maps/6419b705749d47d8827039f2159aaf80.png b/backend/static/maps/6419b705749d47d8827039f2159aaf80.png
deleted file mode 100644
index 32742a4..0000000
Binary files a/backend/static/maps/6419b705749d47d8827039f2159aaf80.png and /dev/null differ
diff --git a/backend/static/maps/64bf0950-2ee7-4bee-967d-6a65b421ba42.png b/backend/static/maps/64bf0950-2ee7-4bee-967d-6a65b421ba42.png
deleted file mode 100644
index 51d7d9d..0000000
Binary files a/backend/static/maps/64bf0950-2ee7-4bee-967d-6a65b421ba42.png and /dev/null differ
diff --git a/backend/static/maps/64fe694d-f47a-4604-b4cc-35cc7aef68de.png b/backend/static/maps/64fe694d-f47a-4604-b4cc-35cc7aef68de.png
deleted file mode 100644
index 0b88729..0000000
Binary files a/backend/static/maps/64fe694d-f47a-4604-b4cc-35cc7aef68de.png and /dev/null differ
diff --git a/backend/static/maps/650ca9df3d434a10b046aa3c97f3c096_1.png b/backend/static/maps/650ca9df3d434a10b046aa3c97f3c096_1.png
deleted file mode 100644
index ea5e9fa..0000000
Binary files a/backend/static/maps/650ca9df3d434a10b046aa3c97f3c096_1.png and /dev/null differ
diff --git a/backend/static/maps/65ae0db00ed94e298f1b6017ac27bc4e_2.png b/backend/static/maps/65ae0db00ed94e298f1b6017ac27bc4e_2.png
deleted file mode 100644
index a1a36df..0000000
Binary files a/backend/static/maps/65ae0db00ed94e298f1b6017ac27bc4e_2.png and /dev/null differ
diff --git a/backend/static/maps/665c4659ead9457abf3770aba4dbef89_1.png b/backend/static/maps/665c4659ead9457abf3770aba4dbef89_1.png
deleted file mode 100644
index 7ac92cd..0000000
Binary files a/backend/static/maps/665c4659ead9457abf3770aba4dbef89_1.png and /dev/null differ
diff --git a/backend/static/maps/66b45aef2cf34d50babf5104d827562d_0.png b/backend/static/maps/66b45aef2cf34d50babf5104d827562d_0.png
deleted file mode 100644
index 5556ed3..0000000
Binary files a/backend/static/maps/66b45aef2cf34d50babf5104d827562d_0.png and /dev/null differ
diff --git a/backend/static/maps/66bd7b31-c429-4862-a31f-cbdd2ddcdc92.png b/backend/static/maps/66bd7b31-c429-4862-a31f-cbdd2ddcdc92.png
deleted file mode 100644
index c321e03..0000000
Binary files a/backend/static/maps/66bd7b31-c429-4862-a31f-cbdd2ddcdc92.png and /dev/null differ
diff --git a/backend/static/maps/66bf5982-b9fa-46bb-9ef2-14e86645eac9.png b/backend/static/maps/66bf5982-b9fa-46bb-9ef2-14e86645eac9.png
deleted file mode 100644
index e1f6a36..0000000
Binary files a/backend/static/maps/66bf5982-b9fa-46bb-9ef2-14e86645eac9.png and /dev/null differ
diff --git a/backend/static/maps/675d4343-b21a-4033-89b1-9ba386429c03.png b/backend/static/maps/675d4343-b21a-4033-89b1-9ba386429c03.png
deleted file mode 100644
index d243970..0000000
Binary files a/backend/static/maps/675d4343-b21a-4033-89b1-9ba386429c03.png and /dev/null differ
diff --git a/backend/static/maps/6761595c8b4e4a3a80059c531fd5d458.png b/backend/static/maps/6761595c8b4e4a3a80059c531fd5d458.png
deleted file mode 100644
index 70bedc7..0000000
Binary files a/backend/static/maps/6761595c8b4e4a3a80059c531fd5d458.png and /dev/null differ
diff --git a/backend/static/maps/677ff400-66d7-4db7-88be-913f981fa6cf.png b/backend/static/maps/677ff400-66d7-4db7-88be-913f981fa6cf.png
deleted file mode 100644
index eec4c52..0000000
Binary files a/backend/static/maps/677ff400-66d7-4db7-88be-913f981fa6cf.png and /dev/null differ
diff --git a/backend/static/maps/67abfe18-1906-478d-8970-da6981f5022f.png b/backend/static/maps/67abfe18-1906-478d-8970-da6981f5022f.png
deleted file mode 100644
index e21ce1b..0000000
Binary files a/backend/static/maps/67abfe18-1906-478d-8970-da6981f5022f.png and /dev/null differ
diff --git a/backend/static/maps/67e37f383f8a4ce3ae201d741a65a073.png b/backend/static/maps/67e37f383f8a4ce3ae201d741a65a073.png
deleted file mode 100644
index 6280f37..0000000
Binary files a/backend/static/maps/67e37f383f8a4ce3ae201d741a65a073.png and /dev/null differ
diff --git a/backend/static/maps/67ed627a525548d5900c1b6964b8e619_25.png b/backend/static/maps/67ed627a525548d5900c1b6964b8e619_25.png
deleted file mode 100644
index 8d38245..0000000
Binary files a/backend/static/maps/67ed627a525548d5900c1b6964b8e619_25.png and /dev/null differ
diff --git a/backend/static/maps/680ea26cf0fe4a8f9f5ee6b7e0f7504c_0.png b/backend/static/maps/680ea26cf0fe4a8f9f5ee6b7e0f7504c_0.png
deleted file mode 100644
index d440da7..0000000
Binary files a/backend/static/maps/680ea26cf0fe4a8f9f5ee6b7e0f7504c_0.png and /dev/null differ
diff --git a/backend/static/maps/68133e4b-9690-4ccf-996c-70981da16061.png b/backend/static/maps/68133e4b-9690-4ccf-996c-70981da16061.png
deleted file mode 100644
index 3e48b6b..0000000
Binary files a/backend/static/maps/68133e4b-9690-4ccf-996c-70981da16061.png and /dev/null differ
diff --git a/backend/static/maps/68321b62ca244950a0a0c1dfbd132562_0.png b/backend/static/maps/68321b62ca244950a0a0c1dfbd132562_0.png
deleted file mode 100644
index cef7a58..0000000
Binary files a/backend/static/maps/68321b62ca244950a0a0c1dfbd132562_0.png and /dev/null differ
diff --git a/backend/static/maps/68d22284d271473fa12bb707c174eeef_1.png b/backend/static/maps/68d22284d271473fa12bb707c174eeef_1.png
deleted file mode 100644
index 4f5029d..0000000
Binary files a/backend/static/maps/68d22284d271473fa12bb707c174eeef_1.png and /dev/null differ
diff --git a/backend/static/maps/69253ca8-cb6d-4ded-828c-d9288bd3ef28.png b/backend/static/maps/69253ca8-cb6d-4ded-828c-d9288bd3ef28.png
deleted file mode 100644
index 46daad5..0000000
Binary files a/backend/static/maps/69253ca8-cb6d-4ded-828c-d9288bd3ef28.png and /dev/null differ
diff --git a/backend/static/maps/6992fac5-a431-4918-bca9-fca7ab3649a9.png b/backend/static/maps/6992fac5-a431-4918-bca9-fca7ab3649a9.png
deleted file mode 100644
index 9e53441..0000000
Binary files a/backend/static/maps/6992fac5-a431-4918-bca9-fca7ab3649a9.png and /dev/null differ
diff --git a/backend/static/maps/6b69d705-27c5-44be-8404-b9d3ad392951.png b/backend/static/maps/6b69d705-27c5-44be-8404-b9d3ad392951.png
deleted file mode 100644
index bd0b4ed..0000000
Binary files a/backend/static/maps/6b69d705-27c5-44be-8404-b9d3ad392951.png and /dev/null differ
diff --git a/backend/static/maps/6c0b915445074b36b266140143beadec_3.png b/backend/static/maps/6c0b915445074b36b266140143beadec_3.png
deleted file mode 100644
index 8d0df32..0000000
Binary files a/backend/static/maps/6c0b915445074b36b266140143beadec_3.png and /dev/null differ
diff --git a/backend/static/maps/6c46d484-67f2-455b-b2e3-575cc1ca8d48.png b/backend/static/maps/6c46d484-67f2-455b-b2e3-575cc1ca8d48.png
deleted file mode 100644
index ce409ce..0000000
Binary files a/backend/static/maps/6c46d484-67f2-455b-b2e3-575cc1ca8d48.png and /dev/null differ
diff --git a/backend/static/maps/6c546da3-aa47-4ae4-a094-206693d01625.png b/backend/static/maps/6c546da3-aa47-4ae4-a094-206693d01625.png
deleted file mode 100644
index 470f052..0000000
Binary files a/backend/static/maps/6c546da3-aa47-4ae4-a094-206693d01625.png and /dev/null differ
diff --git a/backend/static/maps/6d53af53f974450ba575f8c095969b69_0.png b/backend/static/maps/6d53af53f974450ba575f8c095969b69_0.png
deleted file mode 100644
index 4f5091c..0000000
Binary files a/backend/static/maps/6d53af53f974450ba575f8c095969b69_0.png and /dev/null differ
diff --git a/backend/static/maps/6dbe82f3beae4167b8956d3053bc96bb_0.png b/backend/static/maps/6dbe82f3beae4167b8956d3053bc96bb_0.png
deleted file mode 100644
index 9ddb3d5..0000000
Binary files a/backend/static/maps/6dbe82f3beae4167b8956d3053bc96bb_0.png and /dev/null differ
diff --git a/backend/static/maps/6ddc2d57604f4e20a64abc0503e38812_19.png b/backend/static/maps/6ddc2d57604f4e20a64abc0503e38812_19.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/6ddc2d57604f4e20a64abc0503e38812_19.png and /dev/null differ
diff --git a/backend/static/maps/6e09cbb2-6a55-4c82-bec9-6986116b76d9.png b/backend/static/maps/6e09cbb2-6a55-4c82-bec9-6986116b76d9.png
deleted file mode 100644
index 11453df..0000000
Binary files a/backend/static/maps/6e09cbb2-6a55-4c82-bec9-6986116b76d9.png and /dev/null differ
diff --git a/backend/static/maps/6e2825bf-03a8-4364-8d89-d59d0d8f036b.png b/backend/static/maps/6e2825bf-03a8-4364-8d89-d59d0d8f036b.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/6e2825bf-03a8-4364-8d89-d59d0d8f036b.png and /dev/null differ
diff --git a/backend/static/maps/6ebd07e9f09146668917aba7007ff779_0.png b/backend/static/maps/6ebd07e9f09146668917aba7007ff779_0.png
deleted file mode 100644
index 4646a32..0000000
Binary files a/backend/static/maps/6ebd07e9f09146668917aba7007ff779_0.png and /dev/null differ
diff --git a/backend/static/maps/6ebd6dcf5e004396b63e584d65689c06_4.png b/backend/static/maps/6ebd6dcf5e004396b63e584d65689c06_4.png
deleted file mode 100644
index 6286a91..0000000
Binary files a/backend/static/maps/6ebd6dcf5e004396b63e584d65689c06_4.png and /dev/null differ
diff --git a/backend/static/maps/6ef635af-b15e-4322-8256-30a0d82a8502.png b/backend/static/maps/6ef635af-b15e-4322-8256-30a0d82a8502.png
deleted file mode 100644
index d69ab02..0000000
Binary files a/backend/static/maps/6ef635af-b15e-4322-8256-30a0d82a8502.png and /dev/null differ
diff --git a/backend/static/maps/6f3fbc4c509a4551b3d2769154dce267.png b/backend/static/maps/6f3fbc4c509a4551b3d2769154dce267.png
deleted file mode 100644
index 8069b4d..0000000
Binary files a/backend/static/maps/6f3fbc4c509a4551b3d2769154dce267.png and /dev/null differ
diff --git a/backend/static/maps/6fd202d4-e15f-4cf8-8e0e-699ac144c9b3.png b/backend/static/maps/6fd202d4-e15f-4cf8-8e0e-699ac144c9b3.png
deleted file mode 100644
index 55b6fb3..0000000
Binary files a/backend/static/maps/6fd202d4-e15f-4cf8-8e0e-699ac144c9b3.png and /dev/null differ
diff --git a/backend/static/maps/7060ed90-2ebf-4b4c-9fe9-adebff363a91.png b/backend/static/maps/7060ed90-2ebf-4b4c-9fe9-adebff363a91.png
deleted file mode 100644
index e2e4228..0000000
Binary files a/backend/static/maps/7060ed90-2ebf-4b4c-9fe9-adebff363a91.png and /dev/null differ
diff --git a/backend/static/maps/706bcc6ccb0a4c57aae16661c4d52f35_0.png b/backend/static/maps/706bcc6ccb0a4c57aae16661c4d52f35_0.png
deleted file mode 100644
index 62dd378..0000000
Binary files a/backend/static/maps/706bcc6ccb0a4c57aae16661c4d52f35_0.png and /dev/null differ
diff --git a/backend/static/maps/708382c49eeb4e1e8303f1f3f23dfa90_2.png b/backend/static/maps/708382c49eeb4e1e8303f1f3f23dfa90_2.png
deleted file mode 100644
index 6a89e53..0000000
Binary files a/backend/static/maps/708382c49eeb4e1e8303f1f3f23dfa90_2.png and /dev/null differ
diff --git a/backend/static/maps/708382c49eeb4e1e8303f1f3f23dfa90_3.png b/backend/static/maps/708382c49eeb4e1e8303f1f3f23dfa90_3.png
deleted file mode 100644
index 91dc243..0000000
Binary files a/backend/static/maps/708382c49eeb4e1e8303f1f3f23dfa90_3.png and /dev/null differ
diff --git a/backend/static/maps/71350a47-8aa7-4203-9067-23335ba2eb49.png b/backend/static/maps/71350a47-8aa7-4203-9067-23335ba2eb49.png
deleted file mode 100644
index 77370e1..0000000
Binary files a/backend/static/maps/71350a47-8aa7-4203-9067-23335ba2eb49.png and /dev/null differ
diff --git a/backend/static/maps/714589fbf99d4045bc57bf298be2578e_0.png b/backend/static/maps/714589fbf99d4045bc57bf298be2578e_0.png
deleted file mode 100644
index 10f864e..0000000
Binary files a/backend/static/maps/714589fbf99d4045bc57bf298be2578e_0.png and /dev/null differ
diff --git a/backend/static/maps/715afaed-b1b9-417e-93cd-6d4d6866a109.png b/backend/static/maps/715afaed-b1b9-417e-93cd-6d4d6866a109.png
deleted file mode 100644
index 30434dd..0000000
Binary files a/backend/static/maps/715afaed-b1b9-417e-93cd-6d4d6866a109.png and /dev/null differ
diff --git a/backend/static/maps/717a8753-dfd6-4e34-bbc0-c7d14cd9b747.png b/backend/static/maps/717a8753-dfd6-4e34-bbc0-c7d14cd9b747.png
deleted file mode 100644
index 79228f6..0000000
Binary files a/backend/static/maps/717a8753-dfd6-4e34-bbc0-c7d14cd9b747.png and /dev/null differ
diff --git a/backend/static/maps/71b7577e-d114-4a73-9dbf-bf2f03734235.png b/backend/static/maps/71b7577e-d114-4a73-9dbf-bf2f03734235.png
deleted file mode 100644
index 51d7d9d..0000000
Binary files a/backend/static/maps/71b7577e-d114-4a73-9dbf-bf2f03734235.png and /dev/null differ
diff --git a/backend/static/maps/71cafd20502342528a7319f6a2d82076_70.png b/backend/static/maps/71cafd20502342528a7319f6a2d82076_70.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/71cafd20502342528a7319f6a2d82076_70.png and /dev/null differ
diff --git a/backend/static/maps/7210c209-af6f-44fe-84af-0e8996597c1e.png b/backend/static/maps/7210c209-af6f-44fe-84af-0e8996597c1e.png
deleted file mode 100644
index c347ebb..0000000
Binary files a/backend/static/maps/7210c209-af6f-44fe-84af-0e8996597c1e.png and /dev/null differ
diff --git a/backend/static/maps/722b9607489e4418af53ce2a1c7358be_0.png b/backend/static/maps/722b9607489e4418af53ce2a1c7358be_0.png
deleted file mode 100644
index 683e0ac..0000000
Binary files a/backend/static/maps/722b9607489e4418af53ce2a1c7358be_0.png and /dev/null differ
diff --git a/backend/static/maps/727ad90dc4284be6801a26536f043513_38.png b/backend/static/maps/727ad90dc4284be6801a26536f043513_38.png
deleted file mode 100644
index b8dcce2..0000000
Binary files a/backend/static/maps/727ad90dc4284be6801a26536f043513_38.png and /dev/null differ
diff --git a/backend/static/maps/72be2e69c55c4dfa8e9e153a479b625a_0.png b/backend/static/maps/72be2e69c55c4dfa8e9e153a479b625a_0.png
deleted file mode 100644
index 5d5d65e..0000000
Binary files a/backend/static/maps/72be2e69c55c4dfa8e9e153a479b625a_0.png and /dev/null differ
diff --git a/backend/static/maps/730e33c5884c41019f2a0dcec4d78bc1_10.png b/backend/static/maps/730e33c5884c41019f2a0dcec4d78bc1_10.png
deleted file mode 100644
index 166ed21..0000000
Binary files a/backend/static/maps/730e33c5884c41019f2a0dcec4d78bc1_10.png and /dev/null differ
diff --git a/backend/static/maps/730e33c5884c41019f2a0dcec4d78bc1_4.png b/backend/static/maps/730e33c5884c41019f2a0dcec4d78bc1_4.png
deleted file mode 100644
index 166ed21..0000000
Binary files a/backend/static/maps/730e33c5884c41019f2a0dcec4d78bc1_4.png and /dev/null differ
diff --git a/backend/static/maps/73457e74-55dd-4478-b904-89debf5f5445.png b/backend/static/maps/73457e74-55dd-4478-b904-89debf5f5445.png
deleted file mode 100644
index 0cf98d4..0000000
Binary files a/backend/static/maps/73457e74-55dd-4478-b904-89debf5f5445.png and /dev/null differ
diff --git a/backend/static/maps/741c6f20-6956-420d-aae4-37015cdd1ad4.png b/backend/static/maps/741c6f20-6956-420d-aae4-37015cdd1ad4.png
deleted file mode 100644
index 2f7a1b0..0000000
Binary files a/backend/static/maps/741c6f20-6956-420d-aae4-37015cdd1ad4.png and /dev/null differ
diff --git a/backend/static/maps/7421828ba6c448eba7b68db8cf13dc42_0.png b/backend/static/maps/7421828ba6c448eba7b68db8cf13dc42_0.png
deleted file mode 100644
index ab30bb8..0000000
Binary files a/backend/static/maps/7421828ba6c448eba7b68db8cf13dc42_0.png and /dev/null differ
diff --git a/backend/static/maps/748f9fcf-e3ab-4ed4-b16f-a2e0fb0c2b8a.png b/backend/static/maps/748f9fcf-e3ab-4ed4-b16f-a2e0fb0c2b8a.png
deleted file mode 100644
index 8c6c4dc..0000000
Binary files a/backend/static/maps/748f9fcf-e3ab-4ed4-b16f-a2e0fb0c2b8a.png and /dev/null differ
diff --git a/backend/static/maps/74d19d6bd7f646ecb34c252ae17cd2f7_7.png b/backend/static/maps/74d19d6bd7f646ecb34c252ae17cd2f7_7.png
deleted file mode 100644
index c58a291..0000000
Binary files a/backend/static/maps/74d19d6bd7f646ecb34c252ae17cd2f7_7.png and /dev/null differ
diff --git a/backend/static/maps/74d201ffb0874870a090e0217845a6ec_0.png b/backend/static/maps/74d201ffb0874870a090e0217845a6ec_0.png
deleted file mode 100644
index 69c145e..0000000
Binary files a/backend/static/maps/74d201ffb0874870a090e0217845a6ec_0.png and /dev/null differ
diff --git a/backend/static/maps/758278820d724f85a2b6041d24dccb2f_0.png b/backend/static/maps/758278820d724f85a2b6041d24dccb2f_0.png
deleted file mode 100644
index a4bb8d6..0000000
Binary files a/backend/static/maps/758278820d724f85a2b6041d24dccb2f_0.png and /dev/null differ
diff --git a/backend/static/maps/75ab0541-753b-4617-9f4d-41289b7c1776.png b/backend/static/maps/75ab0541-753b-4617-9f4d-41289b7c1776.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/75ab0541-753b-4617-9f4d-41289b7c1776.png and /dev/null differ
diff --git a/backend/static/maps/75f40435-e9b4-4d15-99a4-3040c71cfa86.png b/backend/static/maps/75f40435-e9b4-4d15-99a4-3040c71cfa86.png
deleted file mode 100644
index 6d5d54f..0000000
Binary files a/backend/static/maps/75f40435-e9b4-4d15-99a4-3040c71cfa86.png and /dev/null differ
diff --git a/backend/static/maps/75ff99663c11473fb8c4bd42ea38e874_0.png b/backend/static/maps/75ff99663c11473fb8c4bd42ea38e874_0.png
deleted file mode 100644
index e95472c..0000000
Binary files a/backend/static/maps/75ff99663c11473fb8c4bd42ea38e874_0.png and /dev/null differ
diff --git a/backend/static/maps/761c66b3af5c46b9955863ab00edf17d_2.png b/backend/static/maps/761c66b3af5c46b9955863ab00edf17d_2.png
deleted file mode 100644
index 5467182..0000000
Binary files a/backend/static/maps/761c66b3af5c46b9955863ab00edf17d_2.png and /dev/null differ
diff --git a/backend/static/maps/76cd80c7-2347-4739-8c7e-7dc383222975.png b/backend/static/maps/76cd80c7-2347-4739-8c7e-7dc383222975.png
deleted file mode 100644
index f6ef2e2..0000000
Binary files a/backend/static/maps/76cd80c7-2347-4739-8c7e-7dc383222975.png and /dev/null differ
diff --git a/backend/static/maps/76e52da12b56406c945662eea968f3e1_1.png b/backend/static/maps/76e52da12b56406c945662eea968f3e1_1.png
deleted file mode 100644
index 29f37bd..0000000
Binary files a/backend/static/maps/76e52da12b56406c945662eea968f3e1_1.png and /dev/null differ
diff --git a/backend/static/maps/773ee1d5bbec4ef292cd9e73fd0ad369_5.png b/backend/static/maps/773ee1d5bbec4ef292cd9e73fd0ad369_5.png
deleted file mode 100644
index 5d96dbb..0000000
Binary files a/backend/static/maps/773ee1d5bbec4ef292cd9e73fd0ad369_5.png and /dev/null differ
diff --git a/backend/static/maps/774a7473-a3cf-4673-ae8c-cfc00f044cfb.png b/backend/static/maps/774a7473-a3cf-4673-ae8c-cfc00f044cfb.png
deleted file mode 100644
index 4065895..0000000
Binary files a/backend/static/maps/774a7473-a3cf-4673-ae8c-cfc00f044cfb.png and /dev/null differ
diff --git a/backend/static/maps/77dafe5f-9c45-446e-90f1-45577f17d052.png b/backend/static/maps/77dafe5f-9c45-446e-90f1-45577f17d052.png
deleted file mode 100644
index 0e2225d..0000000
Binary files a/backend/static/maps/77dafe5f-9c45-446e-90f1-45577f17d052.png and /dev/null differ
diff --git a/backend/static/maps/77f-0001.png b/backend/static/maps/77f-0001.png
deleted file mode 100644
index 8ef7a5f..0000000
Binary files a/backend/static/maps/77f-0001.png and /dev/null differ
diff --git a/backend/static/maps/7806d443968e499fa576426eff58ddf9_0.png b/backend/static/maps/7806d443968e499fa576426eff58ddf9_0.png
deleted file mode 100644
index 39762b8..0000000
Binary files a/backend/static/maps/7806d443968e499fa576426eff58ddf9_0.png and /dev/null differ
diff --git a/backend/static/maps/78682c81e1674bd79c6a00353f059297.png b/backend/static/maps/78682c81e1674bd79c6a00353f059297.png
deleted file mode 100644
index 1ceb159..0000000
Binary files a/backend/static/maps/78682c81e1674bd79c6a00353f059297.png and /dev/null differ
diff --git a/backend/static/maps/787436593c8d4058b66967103746a498_1.png b/backend/static/maps/787436593c8d4058b66967103746a498_1.png
deleted file mode 100644
index cf097a1..0000000
Binary files a/backend/static/maps/787436593c8d4058b66967103746a498_1.png and /dev/null differ
diff --git a/backend/static/maps/78bcac0c-cfde-4eb5-bf3d-ada22deeab08.png b/backend/static/maps/78bcac0c-cfde-4eb5-bf3d-ada22deeab08.png
deleted file mode 100644
index 574c263..0000000
Binary files a/backend/static/maps/78bcac0c-cfde-4eb5-bf3d-ada22deeab08.png and /dev/null differ
diff --git a/backend/static/maps/78e1557186ed4a61b1a711cf89aafb50_11.png b/backend/static/maps/78e1557186ed4a61b1a711cf89aafb50_11.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/78e1557186ed4a61b1a711cf89aafb50_11.png and /dev/null differ
diff --git a/backend/static/maps/7942362a-fedd-49db-a51f-d2060e47e2b3.png b/backend/static/maps/7942362a-fedd-49db-a51f-d2060e47e2b3.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/7942362a-fedd-49db-a51f-d2060e47e2b3.png and /dev/null differ
diff --git a/backend/static/maps/7970640f-ba1d-4ff2-a5f8-0b45fac1f5aa.png b/backend/static/maps/7970640f-ba1d-4ff2-a5f8-0b45fac1f5aa.png
deleted file mode 100644
index 8c6c4dc..0000000
Binary files a/backend/static/maps/7970640f-ba1d-4ff2-a5f8-0b45fac1f5aa.png and /dev/null differ
diff --git a/backend/static/maps/7972ebcf-b81e-435a-b0ec-8baf66fa0747.png b/backend/static/maps/7972ebcf-b81e-435a-b0ec-8baf66fa0747.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/7972ebcf-b81e-435a-b0ec-8baf66fa0747.png and /dev/null differ
diff --git a/backend/static/maps/79906926fc144851a533418f383ad96f_0.png b/backend/static/maps/79906926fc144851a533418f383ad96f_0.png
deleted file mode 100644
index 7be19eb..0000000
Binary files a/backend/static/maps/79906926fc144851a533418f383ad96f_0.png and /dev/null differ
diff --git a/backend/static/maps/79C5CA16-116C-45AE-80A5-A3DC8A81AF53.png b/backend/static/maps/79C5CA16-116C-45AE-80A5-A3DC8A81AF53.png
deleted file mode 100644
index c109d73..0000000
Binary files a/backend/static/maps/79C5CA16-116C-45AE-80A5-A3DC8A81AF53.png and /dev/null differ
diff --git a/backend/static/maps/79c51d9f4dec4899aaf7efd310c7adff_0.png b/backend/static/maps/79c51d9f4dec4899aaf7efd310c7adff_0.png
deleted file mode 100644
index 16c4b87..0000000
Binary files a/backend/static/maps/79c51d9f4dec4899aaf7efd310c7adff_0.png and /dev/null differ
diff --git a/backend/static/maps/7a63d3d3-e93d-4085-83da-84eba4251902.png b/backend/static/maps/7a63d3d3-e93d-4085-83da-84eba4251902.png
deleted file mode 100644
index 8c6c4dc..0000000
Binary files a/backend/static/maps/7a63d3d3-e93d-4085-83da-84eba4251902.png and /dev/null differ
diff --git a/backend/static/maps/7a91e1085e4d4f40a41a748fb3f876f8_4.png b/backend/static/maps/7a91e1085e4d4f40a41a748fb3f876f8_4.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/7a91e1085e4d4f40a41a748fb3f876f8_4.png and /dev/null differ
diff --git a/backend/static/maps/7ad79275-218b-40f3-83c8-e54fd5d50f36.png b/backend/static/maps/7ad79275-218b-40f3-83c8-e54fd5d50f36.png
deleted file mode 100644
index 5c6a8b3..0000000
Binary files a/backend/static/maps/7ad79275-218b-40f3-83c8-e54fd5d50f36.png and /dev/null differ
diff --git a/backend/static/maps/7b2b10298b6a492aadae69b3ee035fae_0.png b/backend/static/maps/7b2b10298b6a492aadae69b3ee035fae_0.png
deleted file mode 100644
index e9c733d..0000000
Binary files a/backend/static/maps/7b2b10298b6a492aadae69b3ee035fae_0.png and /dev/null differ
diff --git a/backend/static/maps/7b64b556fefc46df87d6502a46b9521a_0.png b/backend/static/maps/7b64b556fefc46df87d6502a46b9521a_0.png
deleted file mode 100644
index d42bb0b..0000000
Binary files a/backend/static/maps/7b64b556fefc46df87d6502a46b9521a_0.png and /dev/null differ
diff --git a/backend/static/maps/7c227b75-b3b1-40c3-9d8e-77ce10014687.png b/backend/static/maps/7c227b75-b3b1-40c3-9d8e-77ce10014687.png
deleted file mode 100644
index 51d7d9d..0000000
Binary files a/backend/static/maps/7c227b75-b3b1-40c3-9d8e-77ce10014687.png and /dev/null differ
diff --git a/backend/static/maps/7c2a6ce3-444f-4487-8b0e-b969cb6599c9.png b/backend/static/maps/7c2a6ce3-444f-4487-8b0e-b969cb6599c9.png
deleted file mode 100644
index c61cd7f..0000000
Binary files a/backend/static/maps/7c2a6ce3-444f-4487-8b0e-b969cb6599c9.png and /dev/null differ
diff --git a/backend/static/maps/7c6e731513654696abc4814e3eec669d_0.png b/backend/static/maps/7c6e731513654696abc4814e3eec669d_0.png
deleted file mode 100644
index ad471cb..0000000
Binary files a/backend/static/maps/7c6e731513654696abc4814e3eec669d_0.png and /dev/null differ
diff --git a/backend/static/maps/7cbf8292-41bd-4fb6-8b8c-000f2f39aeff.png b/backend/static/maps/7cbf8292-41bd-4fb6-8b8c-000f2f39aeff.png
deleted file mode 100644
index cacd6cf..0000000
Binary files a/backend/static/maps/7cbf8292-41bd-4fb6-8b8c-000f2f39aeff.png and /dev/null differ
diff --git a/backend/static/maps/7cdd7c3de6524e4c83d71c5077ddae30_6.png b/backend/static/maps/7cdd7c3de6524e4c83d71c5077ddae30_6.png
deleted file mode 100644
index 50f586c..0000000
Binary files a/backend/static/maps/7cdd7c3de6524e4c83d71c5077ddae30_6.png and /dev/null differ
diff --git a/backend/static/maps/7e739bf0-f905-48cb-b482-394b8de419a2.png b/backend/static/maps/7e739bf0-f905-48cb-b482-394b8de419a2.png
deleted file mode 100644
index 3d15a10..0000000
Binary files a/backend/static/maps/7e739bf0-f905-48cb-b482-394b8de419a2.png and /dev/null differ
diff --git a/backend/static/maps/7f04e40a-868c-4b5c-9df6-e498816d3525.png b/backend/static/maps/7f04e40a-868c-4b5c-9df6-e498816d3525.png
deleted file mode 100644
index 3589202..0000000
Binary files a/backend/static/maps/7f04e40a-868c-4b5c-9df6-e498816d3525.png and /dev/null differ
diff --git a/backend/static/maps/7fc70743-906e-4adf-848a-8ff95ef7b3cf.png b/backend/static/maps/7fc70743-906e-4adf-848a-8ff95ef7b3cf.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/7fc70743-906e-4adf-848a-8ff95ef7b3cf.png and /dev/null differ
diff --git a/backend/static/maps/7fd7fa1b-098e-4f2c-86d3-ff9c6b879689.png b/backend/static/maps/7fd7fa1b-098e-4f2c-86d3-ff9c6b879689.png
deleted file mode 100644
index b96d12d..0000000
Binary files a/backend/static/maps/7fd7fa1b-098e-4f2c-86d3-ff9c6b879689.png and /dev/null differ
diff --git a/backend/static/maps/801d1342-de90-4105-81f6-6f74519c1239.png b/backend/static/maps/801d1342-de90-4105-81f6-6f74519c1239.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/801d1342-de90-4105-81f6-6f74519c1239.png and /dev/null differ
diff --git a/backend/static/maps/805fc53f-29d4-44d7-9568-832b8b639d36.png b/backend/static/maps/805fc53f-29d4-44d7-9568-832b8b639d36.png
deleted file mode 100644
index f42dd2e..0000000
Binary files a/backend/static/maps/805fc53f-29d4-44d7-9568-832b8b639d36.png and /dev/null differ
diff --git a/backend/static/maps/80b4bb61-f10b-4092-95e6-41bfedf5c983.png b/backend/static/maps/80b4bb61-f10b-4092-95e6-41bfedf5c983.png
deleted file mode 100644
index 25d78ea..0000000
Binary files a/backend/static/maps/80b4bb61-f10b-4092-95e6-41bfedf5c983.png and /dev/null differ
diff --git a/backend/static/maps/80bb21f3db3941ac9a978f0494db1a7b_0.png b/backend/static/maps/80bb21f3db3941ac9a978f0494db1a7b_0.png
deleted file mode 100644
index 4ec2778..0000000
Binary files a/backend/static/maps/80bb21f3db3941ac9a978f0494db1a7b_0.png and /dev/null differ
diff --git a/backend/static/maps/810ea573-fd3a-444b-bd7e-6270a8cd165c.png b/backend/static/maps/810ea573-fd3a-444b-bd7e-6270a8cd165c.png
deleted file mode 100644
index cacd6cf..0000000
Binary files a/backend/static/maps/810ea573-fd3a-444b-bd7e-6270a8cd165c.png and /dev/null differ
diff --git a/backend/static/maps/8172224fea804a7ab4d08e102b36f8a5_0.png b/backend/static/maps/8172224fea804a7ab4d08e102b36f8a5_0.png
deleted file mode 100644
index 0d13b59..0000000
Binary files a/backend/static/maps/8172224fea804a7ab4d08e102b36f8a5_0.png and /dev/null differ
diff --git a/backend/static/maps/81fc173c-9c7a-457a-8414-cce8bd8e437a.png b/backend/static/maps/81fc173c-9c7a-457a-8414-cce8bd8e437a.png
deleted file mode 100644
index c31571b..0000000
Binary files a/backend/static/maps/81fc173c-9c7a-457a-8414-cce8bd8e437a.png and /dev/null differ
diff --git a/backend/static/maps/820f990dbea9452b85b6e27898c691a4_0.png b/backend/static/maps/820f990dbea9452b85b6e27898c691a4_0.png
deleted file mode 100644
index ab33be2..0000000
Binary files a/backend/static/maps/820f990dbea9452b85b6e27898c691a4_0.png and /dev/null differ
diff --git a/backend/static/maps/8273d122-9493-43b9-a005-6cab1c72a63d.png b/backend/static/maps/8273d122-9493-43b9-a005-6cab1c72a63d.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/8273d122-9493-43b9-a005-6cab1c72a63d.png and /dev/null differ
diff --git a/backend/static/maps/82784459-acde-42ed-b615-d8300577110e.png b/backend/static/maps/82784459-acde-42ed-b615-d8300577110e.png
deleted file mode 100644
index 1ff3f66..0000000
Binary files a/backend/static/maps/82784459-acde-42ed-b615-d8300577110e.png and /dev/null differ
diff --git a/backend/static/maps/8329faa8-395c-447b-90ba-09295869b2dd.png b/backend/static/maps/8329faa8-395c-447b-90ba-09295869b2dd.png
deleted file mode 100644
index 0db4dbc..0000000
Binary files a/backend/static/maps/8329faa8-395c-447b-90ba-09295869b2dd.png and /dev/null differ
diff --git a/backend/static/maps/83513e49c969470b93ba440e22a4a883_0.png b/backend/static/maps/83513e49c969470b93ba440e22a4a883_0.png
deleted file mode 100644
index 4b45e60..0000000
Binary files a/backend/static/maps/83513e49c969470b93ba440e22a4a883_0.png and /dev/null differ
diff --git a/backend/static/maps/841D19D3-D15E-4031-BEA9-3122484FC807.png b/backend/static/maps/841D19D3-D15E-4031-BEA9-3122484FC807.png
deleted file mode 100644
index d63ee94..0000000
Binary files a/backend/static/maps/841D19D3-D15E-4031-BEA9-3122484FC807.png and /dev/null differ
diff --git a/backend/static/maps/84ebf493-a35a-46dd-b40c-0925af6ed1e1.png b/backend/static/maps/84ebf493-a35a-46dd-b40c-0925af6ed1e1.png
deleted file mode 100644
index 0520843..0000000
Binary files a/backend/static/maps/84ebf493-a35a-46dd-b40c-0925af6ed1e1.png and /dev/null differ
diff --git a/backend/static/maps/8530feb9-f710-4202-b178-2505e2efbf92.png b/backend/static/maps/8530feb9-f710-4202-b178-2505e2efbf92.png
deleted file mode 100644
index 0520843..0000000
Binary files a/backend/static/maps/8530feb9-f710-4202-b178-2505e2efbf92.png and /dev/null differ
diff --git a/backend/static/maps/861ac928-6a92-4944-9bc8-e8c8a001444f.png b/backend/static/maps/861ac928-6a92-4944-9bc8-e8c8a001444f.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/861ac928-6a92-4944-9bc8-e8c8a001444f.png and /dev/null differ
diff --git a/backend/static/maps/863baa7a-685e-4a78-ab8c-f016da0fb397.png b/backend/static/maps/863baa7a-685e-4a78-ab8c-f016da0fb397.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/863baa7a-685e-4a78-ab8c-f016da0fb397.png and /dev/null differ
diff --git a/backend/static/maps/86f8745a-a703-47d6-921f-7d48aa4dd4ce.png b/backend/static/maps/86f8745a-a703-47d6-921f-7d48aa4dd4ce.png
deleted file mode 100644
index b35c36c..0000000
Binary files a/backend/static/maps/86f8745a-a703-47d6-921f-7d48aa4dd4ce.png and /dev/null differ
diff --git a/backend/static/maps/8739b780e7df4ef3bd0ad777fd0d59b0_80.png b/backend/static/maps/8739b780e7df4ef3bd0ad777fd0d59b0_80.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/8739b780e7df4ef3bd0ad777fd0d59b0_80.png and /dev/null differ
diff --git a/backend/static/maps/8784c18e6c354da3ac723bf0eb6d5421_0.png b/backend/static/maps/8784c18e6c354da3ac723bf0eb6d5421_0.png
deleted file mode 100644
index 59227e1..0000000
Binary files a/backend/static/maps/8784c18e6c354da3ac723bf0eb6d5421_0.png and /dev/null differ
diff --git a/backend/static/maps/8794fb01-04a7-43ee-84a4-739dd27a9a9b.png b/backend/static/maps/8794fb01-04a7-43ee-84a4-739dd27a9a9b.png
deleted file mode 100644
index 2300ce4..0000000
Binary files a/backend/static/maps/8794fb01-04a7-43ee-84a4-739dd27a9a9b.png and /dev/null differ
diff --git a/backend/static/maps/87f15ca7-dda5-4652-ab58-796d7758e817.png b/backend/static/maps/87f15ca7-dda5-4652-ab58-796d7758e817.png
deleted file mode 100644
index db230f0..0000000
Binary files a/backend/static/maps/87f15ca7-dda5-4652-ab58-796d7758e817.png and /dev/null differ
diff --git a/backend/static/maps/881cb3c2-6b0d-44f6-ad37-1f3fef029c62.png b/backend/static/maps/881cb3c2-6b0d-44f6-ad37-1f3fef029c62.png
deleted file mode 100644
index 7225dc8..0000000
Binary files a/backend/static/maps/881cb3c2-6b0d-44f6-ad37-1f3fef029c62.png and /dev/null differ
diff --git a/backend/static/maps/8879bfe9-c5ca-4899-9682-9dc3055db640.png b/backend/static/maps/8879bfe9-c5ca-4899-9682-9dc3055db640.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/8879bfe9-c5ca-4899-9682-9dc3055db640.png and /dev/null differ
diff --git a/backend/static/maps/8880dabc-8d61-4fed-806d-55fbd0a40610.png b/backend/static/maps/8880dabc-8d61-4fed-806d-55fbd0a40610.png
deleted file mode 100644
index 9ced8c6..0000000
Binary files a/backend/static/maps/8880dabc-8d61-4fed-806d-55fbd0a40610.png and /dev/null differ
diff --git a/backend/static/maps/8888-002.png b/backend/static/maps/8888-002.png
deleted file mode 100644
index 2300ce4..0000000
Binary files a/backend/static/maps/8888-002.png and /dev/null differ
diff --git a/backend/static/maps/8888-003.png b/backend/static/maps/8888-003.png
deleted file mode 100644
index 2300ce4..0000000
Binary files a/backend/static/maps/8888-003.png and /dev/null differ
diff --git a/backend/static/maps/89bba1dd-96e5-4215-be16-cf9ed5a14d68.png b/backend/static/maps/89bba1dd-96e5-4215-be16-cf9ed5a14d68.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/89bba1dd-96e5-4215-be16-cf9ed5a14d68.png and /dev/null differ
diff --git a/backend/static/maps/89f069e559374f83abdf0b54a56fe0e4_0.png b/backend/static/maps/89f069e559374f83abdf0b54a56fe0e4_0.png
deleted file mode 100644
index a7a1e9a..0000000
Binary files a/backend/static/maps/89f069e559374f83abdf0b54a56fe0e4_0.png and /dev/null differ
diff --git a/backend/static/maps/8a6d03dd995c4668b41bf689e6a2b0e6.png b/backend/static/maps/8a6d03dd995c4668b41bf689e6a2b0e6.png
deleted file mode 100644
index 45c6887..0000000
Binary files a/backend/static/maps/8a6d03dd995c4668b41bf689e6a2b0e6.png and /dev/null differ
diff --git a/backend/static/maps/8acbcf011acd4f5381684c28b0d75031_0.png b/backend/static/maps/8acbcf011acd4f5381684c28b0d75031_0.png
deleted file mode 100644
index 8dd0891..0000000
Binary files a/backend/static/maps/8acbcf011acd4f5381684c28b0d75031_0.png and /dev/null differ
diff --git a/backend/static/maps/8b15aab3-cbb2-49e3-bbe0-fc5b6e664e1c.png b/backend/static/maps/8b15aab3-cbb2-49e3-bbe0-fc5b6e664e1c.png
deleted file mode 100644
index 1ca7d44..0000000
Binary files a/backend/static/maps/8b15aab3-cbb2-49e3-bbe0-fc5b6e664e1c.png and /dev/null differ
diff --git a/backend/static/maps/8b9534389cb44fb19cbb27bad2bef93c_0.png b/backend/static/maps/8b9534389cb44fb19cbb27bad2bef93c_0.png
deleted file mode 100644
index c63fa3e..0000000
Binary files a/backend/static/maps/8b9534389cb44fb19cbb27bad2bef93c_0.png and /dev/null differ
diff --git a/backend/static/maps/8b9d550e-46b5-44ef-a899-fa9ae9674c41.png b/backend/static/maps/8b9d550e-46b5-44ef-a899-fa9ae9674c41.png
deleted file mode 100644
index bd0b4ed..0000000
Binary files a/backend/static/maps/8b9d550e-46b5-44ef-a899-fa9ae9674c41.png and /dev/null differ
diff --git a/backend/static/maps/8ba1006fd66a48e4b7c5eb43de9480f2_23.png b/backend/static/maps/8ba1006fd66a48e4b7c5eb43de9480f2_23.png
deleted file mode 100644
index 1a86ccd..0000000
Binary files a/backend/static/maps/8ba1006fd66a48e4b7c5eb43de9480f2_23.png and /dev/null differ
diff --git a/backend/static/maps/8be380af9ab6445db1ad7b5cd8b171bb_14.png b/backend/static/maps/8be380af9ab6445db1ad7b5cd8b171bb_14.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/8be380af9ab6445db1ad7b5cd8b171bb_14.png and /dev/null differ
diff --git a/backend/static/maps/8c0a961bb62640df9c08a3a49ef131ba.png b/backend/static/maps/8c0a961bb62640df9c08a3a49ef131ba.png
deleted file mode 100644
index e600c92..0000000
Binary files a/backend/static/maps/8c0a961bb62640df9c08a3a49ef131ba.png and /dev/null differ
diff --git a/backend/static/maps/8c8e8cdb-d912-4683-896e-cae3fc3bbf4b.png b/backend/static/maps/8c8e8cdb-d912-4683-896e-cae3fc3bbf4b.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/8c8e8cdb-d912-4683-896e-cae3fc3bbf4b.png and /dev/null differ
diff --git a/backend/static/maps/8d034013-d538-44c1-ad45-8966f952afee.png b/backend/static/maps/8d034013-d538-44c1-ad45-8966f952afee.png
deleted file mode 100644
index 187d0f4..0000000
Binary files a/backend/static/maps/8d034013-d538-44c1-ad45-8966f952afee.png and /dev/null differ
diff --git a/backend/static/maps/8d8881bb96c440739b5058a861ec9b58_1.png b/backend/static/maps/8d8881bb96c440739b5058a861ec9b58_1.png
deleted file mode 100644
index 30c1bd9..0000000
Binary files a/backend/static/maps/8d8881bb96c440739b5058a861ec9b58_1.png and /dev/null differ
diff --git a/backend/static/maps/8d893f24147a47f7bb48f8071c2d3a6a.png b/backend/static/maps/8d893f24147a47f7bb48f8071c2d3a6a.png
deleted file mode 100644
index f4e79e6..0000000
Binary files a/backend/static/maps/8d893f24147a47f7bb48f8071c2d3a6a.png and /dev/null differ
diff --git a/backend/static/maps/8d9a4394-353e-43bd-90ce-da245cee619b.png b/backend/static/maps/8d9a4394-353e-43bd-90ce-da245cee619b.png
deleted file mode 100644
index d112af2..0000000
Binary files a/backend/static/maps/8d9a4394-353e-43bd-90ce-da245cee619b.png and /dev/null differ
diff --git a/backend/static/maps/8dbd5323-83de-4cbe-b52e-6f8186357038.png b/backend/static/maps/8dbd5323-83de-4cbe-b52e-6f8186357038.png
deleted file mode 100644
index 86d3811..0000000
Binary files a/backend/static/maps/8dbd5323-83de-4cbe-b52e-6f8186357038.png and /dev/null differ
diff --git a/backend/static/maps/8e3ad840-82d4-0134-1f08-0050569601ca-4.png b/backend/static/maps/8e3ad840-82d4-0134-1f08-0050569601ca-4.png
deleted file mode 100644
index 26f50ec..0000000
Binary files a/backend/static/maps/8e3ad840-82d4-0134-1f08-0050569601ca-4.png and /dev/null differ
diff --git a/backend/static/maps/8e532daeec1149879bd5e67fdd9c8be0_0.png b/backend/static/maps/8e532daeec1149879bd5e67fdd9c8be0_0.png
deleted file mode 100644
index 8ba2635..0000000
Binary files a/backend/static/maps/8e532daeec1149879bd5e67fdd9c8be0_0.png and /dev/null differ
diff --git a/backend/static/maps/8e5fe191-8328-45b6-99b8-99652c53159c.png b/backend/static/maps/8e5fe191-8328-45b6-99b8-99652c53159c.png
deleted file mode 100644
index 2f7a1b0..0000000
Binary files a/backend/static/maps/8e5fe191-8328-45b6-99b8-99652c53159c.png and /dev/null differ
diff --git a/backend/static/maps/8e7dc14259cb407bb88e2d29312e3395_7.png b/backend/static/maps/8e7dc14259cb407bb88e2d29312e3395_7.png
deleted file mode 100644
index 94cee44..0000000
Binary files a/backend/static/maps/8e7dc14259cb407bb88e2d29312e3395_7.png and /dev/null differ
diff --git a/backend/static/maps/8ecc6a8e-060b-412b-9ef2-e4f3023c8032.png b/backend/static/maps/8ecc6a8e-060b-412b-9ef2-e4f3023c8032.png
deleted file mode 100644
index a8fb8b2..0000000
Binary files a/backend/static/maps/8ecc6a8e-060b-412b-9ef2-e4f3023c8032.png and /dev/null differ
diff --git a/backend/static/maps/8f5df4f49e874a1ba3408a50dcb09864_0.png b/backend/static/maps/8f5df4f49e874a1ba3408a50dcb09864_0.png
deleted file mode 100644
index 0ac3157..0000000
Binary files a/backend/static/maps/8f5df4f49e874a1ba3408a50dcb09864_0.png and /dev/null differ
diff --git a/backend/static/maps/8f7d3d37eee544d4998b40f7b964634f_0.png b/backend/static/maps/8f7d3d37eee544d4998b40f7b964634f_0.png
deleted file mode 100644
index 1acd974..0000000
Binary files a/backend/static/maps/8f7d3d37eee544d4998b40f7b964634f_0.png and /dev/null differ
diff --git a/backend/static/maps/8fad84e0-82d4-0134-1f08-0050569601ca-9.png b/backend/static/maps/8fad84e0-82d4-0134-1f08-0050569601ca-9.png
deleted file mode 100644
index ce590d0..0000000
Binary files a/backend/static/maps/8fad84e0-82d4-0134-1f08-0050569601ca-9.png and /dev/null differ
diff --git a/backend/static/maps/900b69139e874c8f823744d8fd5b71eb_10.png b/backend/static/maps/900b69139e874c8f823744d8fd5b71eb_10.png
deleted file mode 100644
index 9e0ed2b..0000000
Binary files a/backend/static/maps/900b69139e874c8f823744d8fd5b71eb_10.png and /dev/null differ
diff --git a/backend/static/maps/901627cb9e3149ff8f67663998f0602c_0.png b/backend/static/maps/901627cb9e3149ff8f67663998f0602c_0.png
deleted file mode 100644
index 3a4a430..0000000
Binary files a/backend/static/maps/901627cb9e3149ff8f67663998f0602c_0.png and /dev/null differ
diff --git a/backend/static/maps/90241475bd9b451696670b1ad31beb8f_1.png b/backend/static/maps/90241475bd9b451696670b1ad31beb8f_1.png
deleted file mode 100644
index c0cf9f2..0000000
Binary files a/backend/static/maps/90241475bd9b451696670b1ad31beb8f_1.png and /dev/null differ
diff --git a/backend/static/maps/906d6ec0-82d4-0134-1f08-0050569601ca-a.png b/backend/static/maps/906d6ec0-82d4-0134-1f08-0050569601ca-a.png
deleted file mode 100644
index e5a55bb..0000000
Binary files a/backend/static/maps/906d6ec0-82d4-0134-1f08-0050569601ca-a.png and /dev/null differ
diff --git a/backend/static/maps/90cab090-fb52-49fc-9484-d703482aa47e.png b/backend/static/maps/90cab090-fb52-49fc-9484-d703482aa47e.png
deleted file mode 100644
index 8c8ecfb..0000000
Binary files a/backend/static/maps/90cab090-fb52-49fc-9484-d703482aa47e.png and /dev/null differ
diff --git a/backend/static/maps/90e3d8c0-c5f5-4cb2-ad36-78acedb80307.png b/backend/static/maps/90e3d8c0-c5f5-4cb2-ad36-78acedb80307.png
deleted file mode 100644
index 44fa013..0000000
Binary files a/backend/static/maps/90e3d8c0-c5f5-4cb2-ad36-78acedb80307.png and /dev/null differ
diff --git a/backend/static/maps/911ef998-0020-47ca-a033-07de9f217d86.png b/backend/static/maps/911ef998-0020-47ca-a033-07de9f217d86.png
deleted file mode 100644
index 3571a2a..0000000
Binary files a/backend/static/maps/911ef998-0020-47ca-a033-07de9f217d86.png and /dev/null differ
diff --git a/backend/static/maps/91561b20-82d4-0134-1f08-0050569601ca-d.png b/backend/static/maps/91561b20-82d4-0134-1f08-0050569601ca-d.png
deleted file mode 100644
index bb77bb1..0000000
Binary files a/backend/static/maps/91561b20-82d4-0134-1f08-0050569601ca-d.png and /dev/null differ
diff --git a/backend/static/maps/917bd79a-0dbe-4cc9-8d10-704c9c37a846.png b/backend/static/maps/917bd79a-0dbe-4cc9-8d10-704c9c37a846.png
deleted file mode 100644
index 04d4390..0000000
Binary files a/backend/static/maps/917bd79a-0dbe-4cc9-8d10-704c9c37a846.png and /dev/null differ
diff --git a/backend/static/maps/918a0250c12b4830b91473fb42b5935b_0.png b/backend/static/maps/918a0250c12b4830b91473fb42b5935b_0.png
deleted file mode 100644
index d897041..0000000
Binary files a/backend/static/maps/918a0250c12b4830b91473fb42b5935b_0.png and /dev/null differ
diff --git a/backend/static/maps/91e51840-d115-4432-937d-243a55d3afd1.png b/backend/static/maps/91e51840-d115-4432-937d-243a55d3afd1.png
deleted file mode 100644
index ca6718c..0000000
Binary files a/backend/static/maps/91e51840-d115-4432-937d-243a55d3afd1.png and /dev/null differ
diff --git a/backend/static/maps/91ee7f3e12a340f1b5f3c49de0916059_0.png b/backend/static/maps/91ee7f3e12a340f1b5f3c49de0916059_0.png
deleted file mode 100644
index 3b01597..0000000
Binary files a/backend/static/maps/91ee7f3e12a340f1b5f3c49de0916059_0.png and /dev/null differ
diff --git a/backend/static/maps/922e667ed3fd4440b5c3b9b1381e4322_2.png b/backend/static/maps/922e667ed3fd4440b5c3b9b1381e4322_2.png
deleted file mode 100644
index 0d13b59..0000000
Binary files a/backend/static/maps/922e667ed3fd4440b5c3b9b1381e4322_2.png and /dev/null differ
diff --git a/backend/static/maps/922f691c-415b-4046-a960-55f40601405b.png b/backend/static/maps/922f691c-415b-4046-a960-55f40601405b.png
deleted file mode 100644
index 7e96516..0000000
Binary files a/backend/static/maps/922f691c-415b-4046-a960-55f40601405b.png and /dev/null differ
diff --git a/backend/static/maps/928f078f9db84869b1eafa968d2d7fe0_0.png b/backend/static/maps/928f078f9db84869b1eafa968d2d7fe0_0.png
deleted file mode 100644
index b8851da..0000000
Binary files a/backend/static/maps/928f078f9db84869b1eafa968d2d7fe0_0.png and /dev/null differ
diff --git a/backend/static/maps/928fc42c31154ed5a25be4c43eee3598_10.png b/backend/static/maps/928fc42c31154ed5a25be4c43eee3598_10.png
deleted file mode 100644
index 0fbbc28..0000000
Binary files a/backend/static/maps/928fc42c31154ed5a25be4c43eee3598_10.png and /dev/null differ
diff --git a/backend/static/maps/92a46cd3-d60f-45c6-b5b9-d516ebb6c7e8.png b/backend/static/maps/92a46cd3-d60f-45c6-b5b9-d516ebb6c7e8.png
deleted file mode 100644
index 3237ca9..0000000
Binary files a/backend/static/maps/92a46cd3-d60f-45c6-b5b9-d516ebb6c7e8.png and /dev/null differ
diff --git a/backend/static/maps/92f65443-0cdc-45cf-8419-68109344ce2b.png b/backend/static/maps/92f65443-0cdc-45cf-8419-68109344ce2b.png
deleted file mode 100644
index a76a775..0000000
Binary files a/backend/static/maps/92f65443-0cdc-45cf-8419-68109344ce2b.png and /dev/null differ
diff --git a/backend/static/maps/9330f19c-0861-4873-addc-4ba8380872c9.png b/backend/static/maps/9330f19c-0861-4873-addc-4ba8380872c9.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/9330f19c-0861-4873-addc-4ba8380872c9.png and /dev/null differ
diff --git a/backend/static/maps/93a961b4-a6df-4e5f-a1bb-88567dbbb2de.png b/backend/static/maps/93a961b4-a6df-4e5f-a1bb-88567dbbb2de.png
deleted file mode 100644
index ab06b65..0000000
Binary files a/backend/static/maps/93a961b4-a6df-4e5f-a1bb-88567dbbb2de.png and /dev/null differ
diff --git a/backend/static/maps/93ecd6a9-2ad7-41ce-b1af-d30ed809d455.png b/backend/static/maps/93ecd6a9-2ad7-41ce-b1af-d30ed809d455.png
deleted file mode 100644
index 4146a6a..0000000
Binary files a/backend/static/maps/93ecd6a9-2ad7-41ce-b1af-d30ed809d455.png and /dev/null differ
diff --git a/backend/static/maps/93effba20252447d809a2e8d3f25b716_0.png b/backend/static/maps/93effba20252447d809a2e8d3f25b716_0.png
deleted file mode 100644
index 5bd05fa..0000000
Binary files a/backend/static/maps/93effba20252447d809a2e8d3f25b716_0.png and /dev/null differ
diff --git a/backend/static/maps/943b1bc104ad4e75a793de89a89cdb30_1.png b/backend/static/maps/943b1bc104ad4e75a793de89a89cdb30_1.png
deleted file mode 100644
index db7e731..0000000
Binary files a/backend/static/maps/943b1bc104ad4e75a793de89a89cdb30_1.png and /dev/null differ
diff --git a/backend/static/maps/945740b452034ca6a82dbbbdda225a39_0.png b/backend/static/maps/945740b452034ca6a82dbbbdda225a39_0.png
deleted file mode 100644
index 468a1a0..0000000
Binary files a/backend/static/maps/945740b452034ca6a82dbbbdda225a39_0.png and /dev/null differ
diff --git a/backend/static/maps/959bd021-896d-446b-aff2-80aa1a66bf73.png b/backend/static/maps/959bd021-896d-446b-aff2-80aa1a66bf73.png
deleted file mode 100644
index 8f2f581..0000000
Binary files a/backend/static/maps/959bd021-896d-446b-aff2-80aa1a66bf73.png and /dev/null differ
diff --git a/backend/static/maps/95ec7774-6345-40df-b618-ebd341e9ffa5.png b/backend/static/maps/95ec7774-6345-40df-b618-ebd341e9ffa5.png
deleted file mode 100644
index 332003c..0000000
Binary files a/backend/static/maps/95ec7774-6345-40df-b618-ebd341e9ffa5.png and /dev/null differ
diff --git a/backend/static/maps/9622a31b-c8cc-4f61-b505-1643be95810b.png b/backend/static/maps/9622a31b-c8cc-4f61-b505-1643be95810b.png
deleted file mode 100644
index 9e9d7e5..0000000
Binary files a/backend/static/maps/9622a31b-c8cc-4f61-b505-1643be95810b.png and /dev/null differ
diff --git a/backend/static/maps/96405b5a3e8846dcb0069727277e4ad0_1.png b/backend/static/maps/96405b5a3e8846dcb0069727277e4ad0_1.png
deleted file mode 100644
index 32c4982..0000000
Binary files a/backend/static/maps/96405b5a3e8846dcb0069727277e4ad0_1.png and /dev/null differ
diff --git a/backend/static/maps/96608267-602f-4ad2-bef8-b3cba021f49e.png b/backend/static/maps/96608267-602f-4ad2-bef8-b3cba021f49e.png
deleted file mode 100644
index 2815be3..0000000
Binary files a/backend/static/maps/96608267-602f-4ad2-bef8-b3cba021f49e.png and /dev/null differ
diff --git a/backend/static/maps/96776dd2fc0949f5b4ef8f17fe489e31_1.png b/backend/static/maps/96776dd2fc0949f5b4ef8f17fe489e31_1.png
deleted file mode 100644
index 71fd0be..0000000
Binary files a/backend/static/maps/96776dd2fc0949f5b4ef8f17fe489e31_1.png and /dev/null differ
diff --git a/backend/static/maps/96776dd2fc0949f5b4ef8f17fe489e31_3.png b/backend/static/maps/96776dd2fc0949f5b4ef8f17fe489e31_3.png
deleted file mode 100644
index c6c85b0..0000000
Binary files a/backend/static/maps/96776dd2fc0949f5b4ef8f17fe489e31_3.png and /dev/null differ
diff --git a/backend/static/maps/96c99e2d-fb12-4649-b857-65d7ca5ea995.png b/backend/static/maps/96c99e2d-fb12-4649-b857-65d7ca5ea995.png
deleted file mode 100644
index 8160c74..0000000
Binary files a/backend/static/maps/96c99e2d-fb12-4649-b857-65d7ca5ea995.png and /dev/null differ
diff --git a/backend/static/maps/96e847f5102345c0b31444002f54f608_0.png b/backend/static/maps/96e847f5102345c0b31444002f54f608_0.png
deleted file mode 100644
index e528f57..0000000
Binary files a/backend/static/maps/96e847f5102345c0b31444002f54f608_0.png and /dev/null differ
diff --git a/backend/static/maps/97a3345dac024d46b13fc054c1153eaa_0.png b/backend/static/maps/97a3345dac024d46b13fc054c1153eaa_0.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/97a3345dac024d46b13fc054c1153eaa_0.png and /dev/null differ
diff --git a/backend/static/maps/97a96a62b432489c8f7cef4206be24e3_0.png b/backend/static/maps/97a96a62b432489c8f7cef4206be24e3_0.png
deleted file mode 100644
index 5ed44b2..0000000
Binary files a/backend/static/maps/97a96a62b432489c8f7cef4206be24e3_0.png and /dev/null differ
diff --git a/backend/static/maps/97a96a62b432489c8f7cef4206be24e3_1.png b/backend/static/maps/97a96a62b432489c8f7cef4206be24e3_1.png
deleted file mode 100644
index ddf2ab6..0000000
Binary files a/backend/static/maps/97a96a62b432489c8f7cef4206be24e3_1.png and /dev/null differ
diff --git a/backend/static/maps/981abe4cf5054cc09e66e8dfc95597fc_0.png b/backend/static/maps/981abe4cf5054cc09e66e8dfc95597fc_0.png
deleted file mode 100644
index c24b360..0000000
Binary files a/backend/static/maps/981abe4cf5054cc09e66e8dfc95597fc_0.png and /dev/null differ
diff --git a/backend/static/maps/9820ea30-82d4-0134-1f08-0050569601ca-1.png b/backend/static/maps/9820ea30-82d4-0134-1f08-0050569601ca-1.png
deleted file mode 100644
index e44e1b8..0000000
Binary files a/backend/static/maps/9820ea30-82d4-0134-1f08-0050569601ca-1.png and /dev/null differ
diff --git a/backend/static/maps/982ea688-af60-43f4-aac8-3bde57146a44.png b/backend/static/maps/982ea688-af60-43f4-aac8-3bde57146a44.png
deleted file mode 100644
index 2591668..0000000
Binary files a/backend/static/maps/982ea688-af60-43f4-aac8-3bde57146a44.png and /dev/null differ
diff --git a/backend/static/maps/983db7df-1737-4218-a800-bf278cf48fb7.png b/backend/static/maps/983db7df-1737-4218-a800-bf278cf48fb7.png
deleted file mode 100644
index 0db4dbc..0000000
Binary files a/backend/static/maps/983db7df-1737-4218-a800-bf278cf48fb7.png and /dev/null differ
diff --git a/backend/static/maps/984bb27a-9c41-4c21-9fe3-ff9ee40913b2.png b/backend/static/maps/984bb27a-9c41-4c21-9fe3-ff9ee40913b2.png
deleted file mode 100644
index 0be443e..0000000
Binary files a/backend/static/maps/984bb27a-9c41-4c21-9fe3-ff9ee40913b2.png and /dev/null differ
diff --git a/backend/static/maps/98782680-82d4-0134-1f08-0050569601ca-b.png b/backend/static/maps/98782680-82d4-0134-1f08-0050569601ca-b.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/98782680-82d4-0134-1f08-0050569601ca-b.png and /dev/null differ
diff --git a/backend/static/maps/99-1200-001.png b/backend/static/maps/99-1200-001.png
deleted file mode 100644
index 2300ce4..0000000
Binary files a/backend/static/maps/99-1200-001.png and /dev/null differ
diff --git a/backend/static/maps/997a6f44-a44f-4397-af67-c224833546d3.png b/backend/static/maps/997a6f44-a44f-4397-af67-c224833546d3.png
deleted file mode 100644
index 5aff50a..0000000
Binary files a/backend/static/maps/997a6f44-a44f-4397-af67-c224833546d3.png and /dev/null differ
diff --git a/backend/static/maps/997dbe5dead040e7b9e376dad4118061_298.png b/backend/static/maps/997dbe5dead040e7b9e376dad4118061_298.png
deleted file mode 100644
index 8d38245..0000000
Binary files a/backend/static/maps/997dbe5dead040e7b9e376dad4118061_298.png and /dev/null differ
diff --git a/backend/static/maps/999-0001-019.png b/backend/static/maps/999-0001-019.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/999-0001-019.png and /dev/null differ
diff --git a/backend/static/maps/999-0003-005.png b/backend/static/maps/999-0003-005.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/999-0003-005.png and /dev/null differ
diff --git a/backend/static/maps/999-0003-006.png b/backend/static/maps/999-0003-006.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/999-0003-006.png and /dev/null differ
diff --git a/backend/static/maps/999-0003-008.png b/backend/static/maps/999-0003-008.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/999-0003-008.png and /dev/null differ
diff --git a/backend/static/maps/999-0003.png b/backend/static/maps/999-0003.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/999-0003.png and /dev/null differ
diff --git a/backend/static/maps/999-0004-105.png b/backend/static/maps/999-0004-105.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/999-0004-105.png and /dev/null differ
diff --git a/backend/static/maps/999-0010-colorado.png b/backend/static/maps/999-0010-colorado.png
deleted file mode 100644
index 47aaa80..0000000
Binary files a/backend/static/maps/999-0010-colorado.png and /dev/null differ
diff --git a/backend/static/maps/999-0010-indiana.png b/backend/static/maps/999-0010-indiana.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/999-0010-indiana.png and /dev/null differ
diff --git a/backend/static/maps/999-0010-maine.png b/backend/static/maps/999-0010-maine.png
deleted file mode 100644
index 660a00e..0000000
Binary files a/backend/static/maps/999-0010-maine.png and /dev/null differ
diff --git a/backend/static/maps/999-0010-montana.png b/backend/static/maps/999-0010-montana.png
deleted file mode 100644
index 47f1363..0000000
Binary files a/backend/static/maps/999-0010-montana.png and /dev/null differ
diff --git a/backend/static/maps/999-0010-ohio.png b/backend/static/maps/999-0010-ohio.png
deleted file mode 100644
index 9b03649..0000000
Binary files a/backend/static/maps/999-0010-ohio.png and /dev/null differ
diff --git a/backend/static/maps/999-0010-pennsylvania.png b/backend/static/maps/999-0010-pennsylvania.png
deleted file mode 100644
index 0e69f4e..0000000
Binary files a/backend/static/maps/999-0010-pennsylvania.png and /dev/null differ
diff --git a/backend/static/maps/999-0010-wyoming.png b/backend/static/maps/999-0010-wyoming.png
deleted file mode 100644
index 286d1fd..0000000
Binary files a/backend/static/maps/999-0010-wyoming.png and /dev/null differ
diff --git a/backend/static/maps/999-0011-colorado.png b/backend/static/maps/999-0011-colorado.png
deleted file mode 100644
index 47aaa80..0000000
Binary files a/backend/static/maps/999-0011-colorado.png and /dev/null differ
diff --git a/backend/static/maps/999-0011-maine.png b/backend/static/maps/999-0011-maine.png
deleted file mode 100644
index 660a00e..0000000
Binary files a/backend/static/maps/999-0011-maine.png and /dev/null differ
diff --git a/backend/static/maps/999-0011-montana.png b/backend/static/maps/999-0011-montana.png
deleted file mode 100644
index 47f1363..0000000
Binary files a/backend/static/maps/999-0011-montana.png and /dev/null differ
diff --git a/backend/static/maps/999-0011-wyoming.png b/backend/static/maps/999-0011-wyoming.png
deleted file mode 100644
index 286d1fd..0000000
Binary files a/backend/static/maps/999-0011-wyoming.png and /dev/null differ
diff --git a/backend/static/maps/99a05883c2b4404294ce1c20b1698f71_0.png b/backend/static/maps/99a05883c2b4404294ce1c20b1698f71_0.png
deleted file mode 100644
index f98ecb9..0000000
Binary files a/backend/static/maps/99a05883c2b4404294ce1c20b1698f71_0.png and /dev/null differ
diff --git a/backend/static/maps/9a13f29e0fd24a3a83c7308dc7f7b97b_0.png b/backend/static/maps/9a13f29e0fd24a3a83c7308dc7f7b97b_0.png
deleted file mode 100644
index 4ec2778..0000000
Binary files a/backend/static/maps/9a13f29e0fd24a3a83c7308dc7f7b97b_0.png and /dev/null differ
diff --git a/backend/static/maps/9a184c60-82d4-0134-1f08-0050569601ca-0.png b/backend/static/maps/9a184c60-82d4-0134-1f08-0050569601ca-0.png
deleted file mode 100644
index 5995e90..0000000
Binary files a/backend/static/maps/9a184c60-82d4-0134-1f08-0050569601ca-0.png and /dev/null differ
diff --git a/backend/static/maps/9b63e6e0-82d4-0134-1f08-0050569601ca-f.png b/backend/static/maps/9b63e6e0-82d4-0134-1f08-0050569601ca-f.png
deleted file mode 100644
index e44e1b8..0000000
Binary files a/backend/static/maps/9b63e6e0-82d4-0134-1f08-0050569601ca-f.png and /dev/null differ
diff --git a/backend/static/maps/9b650b25d3c54439afbe1377d8b3c83c_24.png b/backend/static/maps/9b650b25d3c54439afbe1377d8b3c83c_24.png
deleted file mode 100644
index 27aff2a..0000000
Binary files a/backend/static/maps/9b650b25d3c54439afbe1377d8b3c83c_24.png and /dev/null differ
diff --git a/backend/static/maps/9bb31343-170a-42c7-972d-8b4e3c576d51.png b/backend/static/maps/9bb31343-170a-42c7-972d-8b4e3c576d51.png
deleted file mode 100644
index 8f9db1b..0000000
Binary files a/backend/static/maps/9bb31343-170a-42c7-972d-8b4e3c576d51.png and /dev/null differ
diff --git a/backend/static/maps/9be316d6-191d-4e85-8019-f8f094b0c9b8.png b/backend/static/maps/9be316d6-191d-4e85-8019-f8f094b0c9b8.png
deleted file mode 100644
index ca6718c..0000000
Binary files a/backend/static/maps/9be316d6-191d-4e85-8019-f8f094b0c9b8.png and /dev/null differ
diff --git a/backend/static/maps/9c34ab43-d4e5-4830-8590-e2b0ff175922.png b/backend/static/maps/9c34ab43-d4e5-4830-8590-e2b0ff175922.png
deleted file mode 100644
index fb8cd50..0000000
Binary files a/backend/static/maps/9c34ab43-d4e5-4830-8590-e2b0ff175922.png and /dev/null differ
diff --git a/backend/static/maps/9c382442-5911-4ecc-b5a0-b0573293f6fb.png b/backend/static/maps/9c382442-5911-4ecc-b5a0-b0573293f6fb.png
deleted file mode 100644
index bd0b4ed..0000000
Binary files a/backend/static/maps/9c382442-5911-4ecc-b5a0-b0573293f6fb.png and /dev/null differ
diff --git a/backend/static/maps/9ccb240d248b408596140f64ed52a8bf_0.png b/backend/static/maps/9ccb240d248b408596140f64ed52a8bf_0.png
deleted file mode 100644
index c584233..0000000
Binary files a/backend/static/maps/9ccb240d248b408596140f64ed52a8bf_0.png and /dev/null differ
diff --git a/backend/static/maps/9d25cde0-23d4-4360-ab5e-a78ece27a68d.png b/backend/static/maps/9d25cde0-23d4-4360-ab5e-a78ece27a68d.png
deleted file mode 100644
index 0cf98d4..0000000
Binary files a/backend/static/maps/9d25cde0-23d4-4360-ab5e-a78ece27a68d.png and /dev/null differ
diff --git a/backend/static/maps/9da8bc97-ea86-44a2-8a38-0d923e237c82.png b/backend/static/maps/9da8bc97-ea86-44a2-8a38-0d923e237c82.png
deleted file mode 100644
index 0cf98d4..0000000
Binary files a/backend/static/maps/9da8bc97-ea86-44a2-8a38-0d923e237c82.png and /dev/null differ
diff --git a/backend/static/maps/9ddd110110ba4cf591f5cea5667cd16b_0.png b/backend/static/maps/9ddd110110ba4cf591f5cea5667cd16b_0.png
deleted file mode 100644
index 3a4a430..0000000
Binary files a/backend/static/maps/9ddd110110ba4cf591f5cea5667cd16b_0.png and /dev/null differ
diff --git a/backend/static/maps/9df44080-994e-0134-2096-0050569601ca-a.png b/backend/static/maps/9df44080-994e-0134-2096-0050569601ca-a.png
deleted file mode 100644
index 8e2d88c..0000000
Binary files a/backend/static/maps/9df44080-994e-0134-2096-0050569601ca-a.png and /dev/null differ
diff --git a/backend/static/maps/9e4770c0-994e-0134-2096-0050569601ca-6.png b/backend/static/maps/9e4770c0-994e-0134-2096-0050569601ca-6.png
deleted file mode 100644
index 0b7b3c3..0000000
Binary files a/backend/static/maps/9e4770c0-994e-0134-2096-0050569601ca-6.png and /dev/null differ
diff --git a/backend/static/maps/9e70a4d0-994e-0134-2096-0050569601ca-5.png b/backend/static/maps/9e70a4d0-994e-0134-2096-0050569601ca-5.png
deleted file mode 100644
index 8e2d88c..0000000
Binary files a/backend/static/maps/9e70a4d0-994e-0134-2096-0050569601ca-5.png and /dev/null differ
diff --git a/backend/static/maps/9e8a22e0-994e-0134-2096-0050569601ca-a.png b/backend/static/maps/9e8a22e0-994e-0134-2096-0050569601ca-a.png
deleted file mode 100644
index 51d7d9d..0000000
Binary files a/backend/static/maps/9e8a22e0-994e-0134-2096-0050569601ca-a.png and /dev/null differ
diff --git a/backend/static/maps/9eccb622-8fe3-4f94-9a5c-e166585eb597.png b/backend/static/maps/9eccb622-8fe3-4f94-9a5c-e166585eb597.png
deleted file mode 100644
index 6f63df1..0000000
Binary files a/backend/static/maps/9eccb622-8fe3-4f94-9a5c-e166585eb597.png and /dev/null differ
diff --git a/backend/static/maps/9ee14b58-d891-4844-a5fa-913383ac5cd2.png b/backend/static/maps/9ee14b58-d891-4844-a5fa-913383ac5cd2.png
deleted file mode 100644
index b4c2157..0000000
Binary files a/backend/static/maps/9ee14b58-d891-4844-a5fa-913383ac5cd2.png and /dev/null differ
diff --git a/backend/static/maps/9ef5b7d0-994e-0134-2096-0050569601ca-c.png b/backend/static/maps/9ef5b7d0-994e-0134-2096-0050569601ca-c.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/9ef5b7d0-994e-0134-2096-0050569601ca-c.png and /dev/null differ
diff --git a/backend/static/maps/9f089e30-994e-0134-2096-0050569601ca-f.png b/backend/static/maps/9f089e30-994e-0134-2096-0050569601ca-f.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/9f089e30-994e-0134-2096-0050569601ca-f.png and /dev/null differ
diff --git a/backend/static/maps/9fa6b69a-9205-46cd-be6f-f4c5df2952b4.png b/backend/static/maps/9fa6b69a-9205-46cd-be6f-f4c5df2952b4.png
deleted file mode 100644
index d66f2cb..0000000
Binary files a/backend/static/maps/9fa6b69a-9205-46cd-be6f-f4c5df2952b4.png and /dev/null differ
diff --git a/backend/static/maps/9fdf7dc2-7af1-4b67-b7ff-f5727c55902e.png b/backend/static/maps/9fdf7dc2-7af1-4b67-b7ff-f5727c55902e.png
deleted file mode 100644
index e44e1b8..0000000
Binary files a/backend/static/maps/9fdf7dc2-7af1-4b67-b7ff-f5727c55902e.png and /dev/null differ
diff --git a/backend/static/maps/9feff280-994e-0134-2096-0050569601ca-1.png b/backend/static/maps/9feff280-994e-0134-2096-0050569601ca-1.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/9feff280-994e-0134-2096-0050569601ca-1.png and /dev/null differ
diff --git a/backend/static/maps/9ff3941e47f74c609057cb60f4992852_0.png b/backend/static/maps/9ff3941e47f74c609057cb60f4992852_0.png
deleted file mode 100644
index 21be371..0000000
Binary files a/backend/static/maps/9ff3941e47f74c609057cb60f4992852_0.png and /dev/null differ
diff --git a/backend/static/maps/9fit-fndz.png b/backend/static/maps/9fit-fndz.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/9fit-fndz.png and /dev/null differ
diff --git a/backend/static/maps/AD2FDC3E-93A5-47FC-8308-3CF18E231658.png b/backend/static/maps/AD2FDC3E-93A5-47FC-8308-3CF18E231658.png
deleted file mode 100644
index c109d73..0000000
Binary files a/backend/static/maps/AD2FDC3E-93A5-47FC-8308-3CF18E231658.png and /dev/null differ
diff --git a/backend/static/maps/ANT-NAV-MT0501-008.png b/backend/static/maps/ANT-NAV-MT0501-008.png
deleted file mode 100644
index dd70d76..0000000
Binary files a/backend/static/maps/ANT-NAV-MT0501-008.png and /dev/null differ
diff --git a/backend/static/maps/ANT-NAV-OT2017-002.png b/backend/static/maps/ANT-NAV-OT2017-002.png
deleted file mode 100644
index 880ab22..0000000
Binary files a/backend/static/maps/ANT-NAV-OT2017-002.png and /dev/null differ
diff --git a/backend/static/maps/ANT-REF-GT1901-001.png b/backend/static/maps/ANT-REF-GT1901-001.png
deleted file mode 100644
index 7f712fd..0000000
Binary files a/backend/static/maps/ANT-REF-GT1901-001.png and /dev/null differ
diff --git a/backend/static/maps/ANT-REF-MK2508-009.png b/backend/static/maps/ANT-REF-MK2508-009.png
deleted file mode 100644
index c8ac03d..0000000
Binary files a/backend/static/maps/ANT-REF-MK2508-009.png and /dev/null differ
diff --git a/backend/static/maps/ANT-REF-MS2011-001.png b/backend/static/maps/ANT-REF-MS2011-001.png
deleted file mode 100644
index adb890e..0000000
Binary files a/backend/static/maps/ANT-REF-MS2011-001.png and /dev/null differ
diff --git a/backend/static/maps/ANT-REF-MS2509-007.png b/backend/static/maps/ANT-REF-MS2509-007.png
deleted file mode 100644
index 329b994..0000000
Binary files a/backend/static/maps/ANT-REF-MS2509-007.png and /dev/null differ
diff --git a/backend/static/maps/ANT-REF-MT2503-024.png b/backend/static/maps/ANT-REF-MT2503-024.png
deleted file mode 100644
index dfb9c8d..0000000
Binary files a/backend/static/maps/ANT-REF-MT2503-024.png and /dev/null differ
diff --git a/backend/static/maps/ANT-REF-MT2503-039.png b/backend/static/maps/ANT-REF-MT2503-039.png
deleted file mode 100644
index bbaecbb..0000000
Binary files a/backend/static/maps/ANT-REF-MT2503-039.png and /dev/null differ
diff --git a/backend/static/maps/ANT-REF-MT2503-087.png b/backend/static/maps/ANT-REF-MT2503-087.png
deleted file mode 100644
index 5b5741a..0000000
Binary files a/backend/static/maps/ANT-REF-MT2503-087.png and /dev/null differ
diff --git a/backend/static/maps/ANT-REF-MT2503-088.png b/backend/static/maps/ANT-REF-MT2503-088.png
deleted file mode 100644
index ad0a224..0000000
Binary files a/backend/static/maps/ANT-REF-MT2503-088.png and /dev/null differ
diff --git a/backend/static/maps/B103-DI-v2.png b/backend/static/maps/B103-DI-v2.png
deleted file mode 100644
index abf333f..0000000
Binary files a/backend/static/maps/B103-DI-v2.png and /dev/null differ
diff --git a/backend/static/maps/B105-DI.png b/backend/static/maps/B105-DI.png
deleted file mode 100644
index d047809..0000000
Binary files a/backend/static/maps/B105-DI.png and /dev/null differ
diff --git a/backend/static/maps/B347457B-71C2-478A-AF31-AAD2E58B02FB.png b/backend/static/maps/B347457B-71C2-478A-AF31-AAD2E58B02FB.png
deleted file mode 100644
index 2cb4fa6..0000000
Binary files a/backend/static/maps/B347457B-71C2-478A-AF31-AAD2E58B02FB.png and /dev/null differ
diff --git a/backend/static/maps/C58A4F30-EAE2-4505-A73B-7967528692EF.png b/backend/static/maps/C58A4F30-EAE2-4505-A73B-7967528692EF.png
deleted file mode 100644
index bd0b4ed..0000000
Binary files a/backend/static/maps/C58A4F30-EAE2-4505-A73B-7967528692EF.png and /dev/null differ
diff --git a/backend/static/maps/CDEB8DEA-7AC6-4DBB-B41C-33E71031747D.png b/backend/static/maps/CDEB8DEA-7AC6-4DBB-B41C-33E71031747D.png
deleted file mode 100644
index 58c4884..0000000
Binary files a/backend/static/maps/CDEB8DEA-7AC6-4DBB-B41C-33E71031747D.png and /dev/null differ
diff --git a/backend/static/maps/DC459097-3964-44BA-87A3-3FE3539A260B.png b/backend/static/maps/DC459097-3964-44BA-87A3-3FE3539A260B.png
deleted file mode 100644
index 1660546..0000000
Binary files a/backend/static/maps/DC459097-3964-44BA-87A3-3FE3539A260B.png and /dev/null differ
diff --git a/backend/static/maps/DD73C959-3043-46F3-818F-6B211A56A177.png b/backend/static/maps/DD73C959-3043-46F3-818F-6B211A56A177.png
deleted file mode 100644
index 1793ffd..0000000
Binary files a/backend/static/maps/DD73C959-3043-46F3-818F-6B211A56A177.png and /dev/null differ
diff --git a/backend/static/maps/EA3FEA97-E34F-4A56-9292-FCC6B947D814.png b/backend/static/maps/EA3FEA97-E34F-4A56-9292-FCC6B947D814.png
deleted file mode 100644
index c109d73..0000000
Binary files a/backend/static/maps/EA3FEA97-E34F-4A56-9292-FCC6B947D814.png and /dev/null differ
diff --git a/backend/static/maps/EDA97D31-4AD1-4858-9546-3868CDD2B090.png b/backend/static/maps/EDA97D31-4AD1-4858-9546-3868CDD2B090.png
deleted file mode 100644
index 95ef6e1..0000000
Binary files a/backend/static/maps/EDA97D31-4AD1-4858-9546-3868CDD2B090.png and /dev/null differ
diff --git a/backend/static/maps/HCN-Digital-Projects_landgrabu-data.png b/backend/static/maps/HCN-Digital-Projects_landgrabu-data.png
deleted file mode 100644
index ce6599c..0000000
Binary files a/backend/static/maps/HCN-Digital-Projects_landgrabu-data.png and /dev/null differ
diff --git a/backend/static/maps/IC53-DI.png b/backend/static/maps/IC53-DI.png
deleted file mode 100644
index 075b7a7..0000000
Binary files a/backend/static/maps/IC53-DI.png and /dev/null differ
diff --git a/backend/static/maps/IC54-DI.png b/backend/static/maps/IC54-DI.png
deleted file mode 100644
index 580a9fa..0000000
Binary files a/backend/static/maps/IC54-DI.png and /dev/null differ
diff --git a/backend/static/maps/LGU_Points_890sdjio.png b/backend/static/maps/LGU_Points_890sdjio.png
deleted file mode 100644
index 48cbd0b..0000000
Binary files a/backend/static/maps/LGU_Points_890sdjio.png and /dev/null differ
diff --git a/backend/static/maps/Land_Grant_Uni_Parcels_3_6_2Merge.png b/backend/static/maps/Land_Grant_Uni_Parcels_3_6_2Merge.png
deleted file mode 100644
index 48cbd0b..0000000
Binary files a/backend/static/maps/Land_Grant_Uni_Parcels_3_6_2Merge.png and /dev/null differ
diff --git a/backend/static/maps/MKMJQMUEILOCH84.png b/backend/static/maps/MKMJQMUEILOCH84.png
deleted file mode 100644
index 92301e1..0000000
Binary files a/backend/static/maps/MKMJQMUEILOCH84.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_206214_3002940.png b/backend/static/maps/RUMSEY_8_1_206214_3002940.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_206214_3002940.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_225966_5506663.png b/backend/static/maps/RUMSEY_8_1_225966_5506663.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_225966_5506663.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_229490_5508082.png b/backend/static/maps/RUMSEY_8_1_229490_5508082.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_229490_5508082.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_235380_5510458.png b/backend/static/maps/RUMSEY_8_1_235380_5510458.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_235380_5510458.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_259541_5522579.png b/backend/static/maps/RUMSEY_8_1_259541_5522579.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_259541_5522579.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_28211_113017.png b/backend/static/maps/RUMSEY_8_1_28211_113017.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_28211_113017.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_28995_113091.png b/backend/static/maps/RUMSEY_8_1_28995_113091.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_28995_113091.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_30413_1140452.png b/backend/static/maps/RUMSEY_8_1_30413_1140452.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_30413_1140452.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_30589_1140116.png b/backend/static/maps/RUMSEY_8_1_30589_1140116.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_30589_1140116.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_307516_90077395.png b/backend/static/maps/RUMSEY_8_1_307516_90077395.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_307516_90077395.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_317915_90086900.png b/backend/static/maps/RUMSEY_8_1_317915_90086900.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_317915_90086900.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_319186_90088114.png b/backend/static/maps/RUMSEY_8_1_319186_90088114.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_319186_90088114.png and /dev/null differ
diff --git a/backend/static/maps/RUMSEY_8_1_33780_1171496.png b/backend/static/maps/RUMSEY_8_1_33780_1171496.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/RUMSEY_8_1_33780_1171496.png and /dev/null differ
diff --git a/backend/static/maps/Treaties_Morrill_Overlaps.png b/backend/static/maps/Treaties_Morrill_Overlaps.png
deleted file mode 100644
index 48cbd0b..0000000
Binary files a/backend/static/maps/Treaties_Morrill_Overlaps.png and /dev/null differ
diff --git a/backend/static/maps/UNL_126_126_14157_1515834.png b/backend/static/maps/UNL_126_126_14157_1515834.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/UNL_126_126_14157_1515834.png and /dev/null differ
diff --git a/backend/static/maps/UNL_126_126_14180_1515811.png b/backend/static/maps/UNL_126_126_14180_1515811.png
deleted file mode 100644
index cf46c6f..0000000
Binary files a/backend/static/maps/UNL_126_126_14180_1515811.png and /dev/null differ
diff --git a/backend/static/maps/UNL_19_19_535_11738.png b/backend/static/maps/UNL_19_19_535_11738.png
deleted file mode 100644
index 1ae6c6c..0000000
Binary files a/backend/static/maps/UNL_19_19_535_11738.png and /dev/null differ
diff --git a/backend/static/maps/UTZIOVBWBCPRP83.png b/backend/static/maps/UTZIOVBWBCPRP83.png
deleted file mode 100644
index 0f907b0..0000000
Binary files a/backend/static/maps/UTZIOVBWBCPRP83.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00001.png b/backend/static/maps/VAC3073-M-00001.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-00001.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00009.png b/backend/static/maps/VAC3073-M-00009.png
deleted file mode 100644
index 7528d47..0000000
Binary files a/backend/static/maps/VAC3073-M-00009.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00023.png b/backend/static/maps/VAC3073-M-00023.png
deleted file mode 100644
index 7528d47..0000000
Binary files a/backend/static/maps/VAC3073-M-00023.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00072.png b/backend/static/maps/VAC3073-M-00072.png
deleted file mode 100644
index c66d6e8..0000000
Binary files a/backend/static/maps/VAC3073-M-00072.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00076.png b/backend/static/maps/VAC3073-M-00076.png
deleted file mode 100644
index 7419fdd..0000000
Binary files a/backend/static/maps/VAC3073-M-00076.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00099.png b/backend/static/maps/VAC3073-M-00099.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-00099.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00140.png b/backend/static/maps/VAC3073-M-00140.png
deleted file mode 100644
index 7528d47..0000000
Binary files a/backend/static/maps/VAC3073-M-00140.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00151.png b/backend/static/maps/VAC3073-M-00151.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-00151.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00199.png b/backend/static/maps/VAC3073-M-00199.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-00199.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00201.png b/backend/static/maps/VAC3073-M-00201.png
deleted file mode 100644
index 58f9e74..0000000
Binary files a/backend/static/maps/VAC3073-M-00201.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00203.png b/backend/static/maps/VAC3073-M-00203.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-00203.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00241.png b/backend/static/maps/VAC3073-M-00241.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/VAC3073-M-00241.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00305.png b/backend/static/maps/VAC3073-M-00305.png
deleted file mode 100644
index 58f9e74..0000000
Binary files a/backend/static/maps/VAC3073-M-00305.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00311.png b/backend/static/maps/VAC3073-M-00311.png
deleted file mode 100644
index 7419fdd..0000000
Binary files a/backend/static/maps/VAC3073-M-00311.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00325.png b/backend/static/maps/VAC3073-M-00325.png
deleted file mode 100644
index 7528d47..0000000
Binary files a/backend/static/maps/VAC3073-M-00325.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00368.png b/backend/static/maps/VAC3073-M-00368.png
deleted file mode 100644
index 6f7afc4..0000000
Binary files a/backend/static/maps/VAC3073-M-00368.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00376.png b/backend/static/maps/VAC3073-M-00376.png
deleted file mode 100644
index 3aadea4..0000000
Binary files a/backend/static/maps/VAC3073-M-00376.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00396.png b/backend/static/maps/VAC3073-M-00396.png
deleted file mode 100644
index 8a79758..0000000
Binary files a/backend/static/maps/VAC3073-M-00396.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00413.png b/backend/static/maps/VAC3073-M-00413.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-00413.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00420.png b/backend/static/maps/VAC3073-M-00420.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-00420.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00573.png b/backend/static/maps/VAC3073-M-00573.png
deleted file mode 100644
index 06f49a7..0000000
Binary files a/backend/static/maps/VAC3073-M-00573.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00612.png b/backend/static/maps/VAC3073-M-00612.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-00612.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00624.png b/backend/static/maps/VAC3073-M-00624.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-00624.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00625.png b/backend/static/maps/VAC3073-M-00625.png
deleted file mode 100644
index 8a92d78..0000000
Binary files a/backend/static/maps/VAC3073-M-00625.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00641.png b/backend/static/maps/VAC3073-M-00641.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-00641.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00742.png b/backend/static/maps/VAC3073-M-00742.png
deleted file mode 100644
index 87d4dcc..0000000
Binary files a/backend/static/maps/VAC3073-M-00742.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00803.png b/backend/static/maps/VAC3073-M-00803.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/VAC3073-M-00803.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00826.png b/backend/static/maps/VAC3073-M-00826.png
deleted file mode 100644
index 7528d47..0000000
Binary files a/backend/static/maps/VAC3073-M-00826.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00866.png b/backend/static/maps/VAC3073-M-00866.png
deleted file mode 100644
index 7528d47..0000000
Binary files a/backend/static/maps/VAC3073-M-00866.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00884.png b/backend/static/maps/VAC3073-M-00884.png
deleted file mode 100644
index 7419fdd..0000000
Binary files a/backend/static/maps/VAC3073-M-00884.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00970.png b/backend/static/maps/VAC3073-M-00970.png
deleted file mode 100644
index 58f9e74..0000000
Binary files a/backend/static/maps/VAC3073-M-00970.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-00975.png b/backend/static/maps/VAC3073-M-00975.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-00975.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01017.png b/backend/static/maps/VAC3073-M-01017.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/VAC3073-M-01017.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01049.png b/backend/static/maps/VAC3073-M-01049.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/VAC3073-M-01049.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01050.png b/backend/static/maps/VAC3073-M-01050.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/VAC3073-M-01050.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01129.png b/backend/static/maps/VAC3073-M-01129.png
deleted file mode 100644
index 443d99c..0000000
Binary files a/backend/static/maps/VAC3073-M-01129.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01162.png b/backend/static/maps/VAC3073-M-01162.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/VAC3073-M-01162.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01189.png b/backend/static/maps/VAC3073-M-01189.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/VAC3073-M-01189.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01190.png b/backend/static/maps/VAC3073-M-01190.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/VAC3073-M-01190.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01192.png b/backend/static/maps/VAC3073-M-01192.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/VAC3073-M-01192.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01200.png b/backend/static/maps/VAC3073-M-01200.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/VAC3073-M-01200.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01237.png b/backend/static/maps/VAC3073-M-01237.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-01237.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01252.png b/backend/static/maps/VAC3073-M-01252.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/VAC3073-M-01252.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01286.png b/backend/static/maps/VAC3073-M-01286.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/VAC3073-M-01286.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01456.png b/backend/static/maps/VAC3073-M-01456.png
deleted file mode 100644
index 359a92e..0000000
Binary files a/backend/static/maps/VAC3073-M-01456.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01495.png b/backend/static/maps/VAC3073-M-01495.png
deleted file mode 100644
index d0553d8..0000000
Binary files a/backend/static/maps/VAC3073-M-01495.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01555.png b/backend/static/maps/VAC3073-M-01555.png
deleted file mode 100644
index c66d6e8..0000000
Binary files a/backend/static/maps/VAC3073-M-01555.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01574.png b/backend/static/maps/VAC3073-M-01574.png
deleted file mode 100644
index c66d6e8..0000000
Binary files a/backend/static/maps/VAC3073-M-01574.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01575.png b/backend/static/maps/VAC3073-M-01575.png
deleted file mode 100644
index c66d6e8..0000000
Binary files a/backend/static/maps/VAC3073-M-01575.png and /dev/null differ
diff --git a/backend/static/maps/VAC3073-M-01577.png b/backend/static/maps/VAC3073-M-01577.png
deleted file mode 100644
index 9c3e771..0000000
Binary files a/backend/static/maps/VAC3073-M-01577.png and /dev/null differ
diff --git a/backend/static/maps/VAC9619-000408.png b/backend/static/maps/VAC9619-000408.png
deleted file mode 100644
index 06538d1..0000000
Binary files a/backend/static/maps/VAC9619-000408.png and /dev/null differ
diff --git a/backend/static/maps/VAC9619-001703.png b/backend/static/maps/VAC9619-001703.png
deleted file mode 100644
index a042ba3..0000000
Binary files a/backend/static/maps/VAC9619-001703.png and /dev/null differ
diff --git a/backend/static/maps/VAC9619-002512.png b/backend/static/maps/VAC9619-002512.png
deleted file mode 100644
index 193b3cd..0000000
Binary files a/backend/static/maps/VAC9619-002512.png and /dev/null differ
diff --git a/backend/static/maps/VDJPSALCHZODS9D.png b/backend/static/maps/VDJPSALCHZODS9D.png
deleted file mode 100644
index 5bb5f87..0000000
Binary files a/backend/static/maps/VDJPSALCHZODS9D.png and /dev/null differ
diff --git a/backend/static/maps/a0081d96-7bc6-4c2c-b7ea-286f98dc5d2a.png b/backend/static/maps/a0081d96-7bc6-4c2c-b7ea-286f98dc5d2a.png
deleted file mode 100644
index 3d15a10..0000000
Binary files a/backend/static/maps/a0081d96-7bc6-4c2c-b7ea-286f98dc5d2a.png and /dev/null differ
diff --git a/backend/static/maps/a00b39d0-994e-0134-2096-0050569601ca-d.png b/backend/static/maps/a00b39d0-994e-0134-2096-0050569601ca-d.png
deleted file mode 100644
index 51d7d9d..0000000
Binary files a/backend/static/maps/a00b39d0-994e-0134-2096-0050569601ca-d.png and /dev/null differ
diff --git a/backend/static/maps/a02a3c00-994e-0134-2096-0050569601ca-4.png b/backend/static/maps/a02a3c00-994e-0134-2096-0050569601ca-4.png
deleted file mode 100644
index 3a56ee4..0000000
Binary files a/backend/static/maps/a02a3c00-994e-0134-2096-0050569601ca-4.png and /dev/null differ
diff --git a/backend/static/maps/a08c25b0-994e-0134-2096-0050569601ca-f.png b/backend/static/maps/a08c25b0-994e-0134-2096-0050569601ca-f.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/a08c25b0-994e-0134-2096-0050569601ca-f.png and /dev/null differ
diff --git a/backend/static/maps/a0a116d0-994e-0134-2096-0050569601ca-1.png b/backend/static/maps/a0a116d0-994e-0134-2096-0050569601ca-1.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/a0a116d0-994e-0134-2096-0050569601ca-1.png and /dev/null differ
diff --git a/backend/static/maps/a0d5c9ac32e2464ea2632b83a1e05351_0.png b/backend/static/maps/a0d5c9ac32e2464ea2632b83a1e05351_0.png
deleted file mode 100644
index 907cb2a..0000000
Binary files a/backend/static/maps/a0d5c9ac32e2464ea2632b83a1e05351_0.png and /dev/null differ
diff --git a/backend/static/maps/a108bbacce9249b390216db01f46c894_6.png b/backend/static/maps/a108bbacce9249b390216db01f46c894_6.png
deleted file mode 100644
index 25c4f2f..0000000
Binary files a/backend/static/maps/a108bbacce9249b390216db01f46c894_6.png and /dev/null differ
diff --git a/backend/static/maps/a10f6010-994e-0134-2096-0050569601ca-f.png b/backend/static/maps/a10f6010-994e-0134-2096-0050569601ca-f.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/a10f6010-994e-0134-2096-0050569601ca-f.png and /dev/null differ
diff --git a/backend/static/maps/a15f6680-994e-0134-2096-0050569601ca-7.png b/backend/static/maps/a15f6680-994e-0134-2096-0050569601ca-7.png
deleted file mode 100644
index a76a775..0000000
Binary files a/backend/static/maps/a15f6680-994e-0134-2096-0050569601ca-7.png and /dev/null differ
diff --git a/backend/static/maps/a1847c4cc69940f99b46b16e2b4fe7e3_0.png b/backend/static/maps/a1847c4cc69940f99b46b16e2b4fe7e3_0.png
deleted file mode 100644
index a01a2b6..0000000
Binary files a/backend/static/maps/a1847c4cc69940f99b46b16e2b4fe7e3_0.png and /dev/null differ
diff --git a/backend/static/maps/a1dd480eb86445239c8129056ab05ade_0.png b/backend/static/maps/a1dd480eb86445239c8129056ab05ade_0.png
deleted file mode 100644
index c8fdfd3..0000000
Binary files a/backend/static/maps/a1dd480eb86445239c8129056ab05ade_0.png and /dev/null differ
diff --git a/backend/static/maps/a1f7acf65795451d89f0a38565a975b3_5.png b/backend/static/maps/a1f7acf65795451d89f0a38565a975b3_5.png
deleted file mode 100644
index 86360f0..0000000
Binary files a/backend/static/maps/a1f7acf65795451d89f0a38565a975b3_5.png and /dev/null differ
diff --git a/backend/static/maps/a26597c42e8d431d8a616505f8a843f7.png b/backend/static/maps/a26597c42e8d431d8a616505f8a843f7.png
deleted file mode 100644
index ac793fc..0000000
Binary files a/backend/static/maps/a26597c42e8d431d8a616505f8a843f7.png and /dev/null differ
diff --git a/backend/static/maps/a2ae0210-994e-0134-2096-0050569601ca-7.png b/backend/static/maps/a2ae0210-994e-0134-2096-0050569601ca-7.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/a2ae0210-994e-0134-2096-0050569601ca-7.png and /dev/null differ
diff --git a/backend/static/maps/a2ce625c-1626-4648-a423-a0e738f0800b.png b/backend/static/maps/a2ce625c-1626-4648-a423-a0e738f0800b.png
deleted file mode 100644
index 772c3e6..0000000
Binary files a/backend/static/maps/a2ce625c-1626-4648-a423-a0e738f0800b.png and /dev/null differ
diff --git a/backend/static/maps/a2e719f0-994e-0134-2096-0050569601ca-4.png b/backend/static/maps/a2e719f0-994e-0134-2096-0050569601ca-4.png
deleted file mode 100644
index 00fd634..0000000
Binary files a/backend/static/maps/a2e719f0-994e-0134-2096-0050569601ca-4.png and /dev/null differ
diff --git a/backend/static/maps/a38f1f2d-0902-4ac6-a413-c386c9700f59.png b/backend/static/maps/a38f1f2d-0902-4ac6-a413-c386c9700f59.png
deleted file mode 100644
index 1fa45c7..0000000
Binary files a/backend/static/maps/a38f1f2d-0902-4ac6-a413-c386c9700f59.png and /dev/null differ
diff --git a/backend/static/maps/a3c2c5a0-994e-0134-2096-0050569601ca-1.png b/backend/static/maps/a3c2c5a0-994e-0134-2096-0050569601ca-1.png
deleted file mode 100644
index e2310e9..0000000
Binary files a/backend/static/maps/a3c2c5a0-994e-0134-2096-0050569601ca-1.png and /dev/null differ
diff --git a/backend/static/maps/a458e440-994e-0134-2096-0050569601ca-f.png b/backend/static/maps/a458e440-994e-0134-2096-0050569601ca-f.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/a458e440-994e-0134-2096-0050569601ca-f.png and /dev/null differ
diff --git a/backend/static/maps/a486e64e-122b-4c6a-8e97-693a02ed5291.png b/backend/static/maps/a486e64e-122b-4c6a-8e97-693a02ed5291.png
deleted file mode 100644
index ead26d1..0000000
Binary files a/backend/static/maps/a486e64e-122b-4c6a-8e97-693a02ed5291.png and /dev/null differ
diff --git a/backend/static/maps/a5319b120e1e48e283f84d172637e4e5_0.png b/backend/static/maps/a5319b120e1e48e283f84d172637e4e5_0.png
deleted file mode 100644
index 67690df..0000000
Binary files a/backend/static/maps/a5319b120e1e48e283f84d172637e4e5_0.png and /dev/null differ
diff --git a/backend/static/maps/a5520312-f4fe-4a1e-9d0b-bf879c1587a8.png b/backend/static/maps/a5520312-f4fe-4a1e-9d0b-bf879c1587a8.png
deleted file mode 100644
index 8c6c4dc..0000000
Binary files a/backend/static/maps/a5520312-f4fe-4a1e-9d0b-bf879c1587a8.png and /dev/null differ
diff --git a/backend/static/maps/a589bfe0-994e-0134-2096-0050569601ca-a.png b/backend/static/maps/a589bfe0-994e-0134-2096-0050569601ca-a.png
deleted file mode 100644
index a8817f3..0000000
Binary files a/backend/static/maps/a589bfe0-994e-0134-2096-0050569601ca-a.png and /dev/null differ
diff --git a/backend/static/maps/a5e801fab5674bbfb2493c27b3b6f996_28.png b/backend/static/maps/a5e801fab5674bbfb2493c27b3b6f996_28.png
deleted file mode 100644
index 7497fbb..0000000
Binary files a/backend/static/maps/a5e801fab5674bbfb2493c27b3b6f996_28.png and /dev/null differ
diff --git a/backend/static/maps/a60c25b4b2e44969b3164742901058a2_0.png b/backend/static/maps/a60c25b4b2e44969b3164742901058a2_0.png
deleted file mode 100644
index 6722596..0000000
Binary files a/backend/static/maps/a60c25b4b2e44969b3164742901058a2_0.png and /dev/null differ
diff --git a/backend/static/maps/a60c25b4b2e44969b3164742901058a2_1.png b/backend/static/maps/a60c25b4b2e44969b3164742901058a2_1.png
deleted file mode 100644
index 6722596..0000000
Binary files a/backend/static/maps/a60c25b4b2e44969b3164742901058a2_1.png and /dev/null differ
diff --git a/backend/static/maps/a60c25b4b2e44969b3164742901058a2_2.png b/backend/static/maps/a60c25b4b2e44969b3164742901058a2_2.png
deleted file mode 100644
index 6722596..0000000
Binary files a/backend/static/maps/a60c25b4b2e44969b3164742901058a2_2.png and /dev/null differ
diff --git a/backend/static/maps/a60c25b4b2e44969b3164742901058a2_3.png b/backend/static/maps/a60c25b4b2e44969b3164742901058a2_3.png
deleted file mode 100644
index 6722596..0000000
Binary files a/backend/static/maps/a60c25b4b2e44969b3164742901058a2_3.png and /dev/null differ
diff --git a/backend/static/maps/a60c25b4b2e44969b3164742901058a2_4.png b/backend/static/maps/a60c25b4b2e44969b3164742901058a2_4.png
deleted file mode 100644
index 6722596..0000000
Binary files a/backend/static/maps/a60c25b4b2e44969b3164742901058a2_4.png and /dev/null differ
diff --git a/backend/static/maps/a60c25b4b2e44969b3164742901058a2_5.png b/backend/static/maps/a60c25b4b2e44969b3164742901058a2_5.png
deleted file mode 100644
index d682159..0000000
Binary files a/backend/static/maps/a60c25b4b2e44969b3164742901058a2_5.png and /dev/null differ
diff --git a/backend/static/maps/a7142f50-994e-0134-2096-0050569601ca-a.png b/backend/static/maps/a7142f50-994e-0134-2096-0050569601ca-a.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/a7142f50-994e-0134-2096-0050569601ca-a.png and /dev/null differ
diff --git a/backend/static/maps/a71c59a0-994e-0134-2096-0050569601ca-d.png b/backend/static/maps/a71c59a0-994e-0134-2096-0050569601ca-d.png
deleted file mode 100644
index e44e1b8..0000000
Binary files a/backend/static/maps/a71c59a0-994e-0134-2096-0050569601ca-d.png and /dev/null differ
diff --git a/backend/static/maps/a730db5b-2a2d-46bd-8bf4-0d0b3c7bd2cc.png b/backend/static/maps/a730db5b-2a2d-46bd-8bf4-0d0b3c7bd2cc.png
deleted file mode 100644
index bd10f0a..0000000
Binary files a/backend/static/maps/a730db5b-2a2d-46bd-8bf4-0d0b3c7bd2cc.png and /dev/null differ
diff --git a/backend/static/maps/a737a9ba-283b-4c25-bc21-97be96d8fa2c.png b/backend/static/maps/a737a9ba-283b-4c25-bc21-97be96d8fa2c.png
deleted file mode 100644
index 833716a..0000000
Binary files a/backend/static/maps/a737a9ba-283b-4c25-bc21-97be96d8fa2c.png and /dev/null differ
diff --git a/backend/static/maps/a756a5a0-994e-0134-2096-0050569601ca-a.png b/backend/static/maps/a756a5a0-994e-0134-2096-0050569601ca-a.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/a756a5a0-994e-0134-2096-0050569601ca-a.png and /dev/null differ
diff --git a/backend/static/maps/a78994b0-994e-0134-2096-0050569601ca-2.png b/backend/static/maps/a78994b0-994e-0134-2096-0050569601ca-2.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/a78994b0-994e-0134-2096-0050569601ca-2.png and /dev/null differ
diff --git a/backend/static/maps/a7eec620-994e-0134-2096-0050569601ca-4.png b/backend/static/maps/a7eec620-994e-0134-2096-0050569601ca-4.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/a7eec620-994e-0134-2096-0050569601ca-4.png and /dev/null differ
diff --git a/backend/static/maps/a800e926-e18c-4458-be74-317de75e60d6.png b/backend/static/maps/a800e926-e18c-4458-be74-317de75e60d6.png
deleted file mode 100644
index 75d0b22..0000000
Binary files a/backend/static/maps/a800e926-e18c-4458-be74-317de75e60d6.png and /dev/null differ
diff --git a/backend/static/maps/a82f8160-994e-0134-2096-0050569601ca-5.png b/backend/static/maps/a82f8160-994e-0134-2096-0050569601ca-5.png
deleted file mode 100644
index 91f9bb1..0000000
Binary files a/backend/static/maps/a82f8160-994e-0134-2096-0050569601ca-5.png and /dev/null differ
diff --git a/backend/static/maps/a8413180-994e-0134-2096-0050569601ca-3.png b/backend/static/maps/a8413180-994e-0134-2096-0050569601ca-3.png
deleted file mode 100644
index e44e1b8..0000000
Binary files a/backend/static/maps/a8413180-994e-0134-2096-0050569601ca-3.png and /dev/null differ
diff --git a/backend/static/maps/a86a89e0-994e-0134-2096-0050569601ca-2.png b/backend/static/maps/a86a89e0-994e-0134-2096-0050569601ca-2.png
deleted file mode 100644
index a76a775..0000000
Binary files a/backend/static/maps/a86a89e0-994e-0134-2096-0050569601ca-2.png and /dev/null differ
diff --git a/backend/static/maps/a890bd618e5b414b8a6595202faf89ce_10.png b/backend/static/maps/a890bd618e5b414b8a6595202faf89ce_10.png
deleted file mode 100644
index 10f084e..0000000
Binary files a/backend/static/maps/a890bd618e5b414b8a6595202faf89ce_10.png and /dev/null differ
diff --git a/backend/static/maps/a8d6cac036164c0194eb3226f66f2aa8_0.png b/backend/static/maps/a8d6cac036164c0194eb3226f66f2aa8_0.png
deleted file mode 100644
index 7b52883..0000000
Binary files a/backend/static/maps/a8d6cac036164c0194eb3226f66f2aa8_0.png and /dev/null differ
diff --git a/backend/static/maps/a8f96977-6758-430d-a876-53b61f43d7c7.png b/backend/static/maps/a8f96977-6758-430d-a876-53b61f43d7c7.png
deleted file mode 100644
index d352bdc..0000000
Binary files a/backend/static/maps/a8f96977-6758-430d-a876-53b61f43d7c7.png and /dev/null differ
diff --git a/backend/static/maps/aa1d11e3-97b4-4910-90e2-4be02327e821.png b/backend/static/maps/aa1d11e3-97b4-4910-90e2-4be02327e821.png
deleted file mode 100644
index e64cbd9..0000000
Binary files a/backend/static/maps/aa1d11e3-97b4-4910-90e2-4be02327e821.png and /dev/null differ
diff --git a/backend/static/maps/aa462fa7a83d4a8784b8697e59bd5bd8_22.png b/backend/static/maps/aa462fa7a83d4a8784b8697e59bd5bd8_22.png
deleted file mode 100644
index a2ef961..0000000
Binary files a/backend/static/maps/aa462fa7a83d4a8784b8697e59bd5bd8_22.png and /dev/null differ
diff --git a/backend/static/maps/aa870bb3f8a74e0ca9adf69ff89ce80c_5.png b/backend/static/maps/aa870bb3f8a74e0ca9adf69ff89ce80c_5.png
deleted file mode 100644
index b4fc13c..0000000
Binary files a/backend/static/maps/aa870bb3f8a74e0ca9adf69ff89ce80c_5.png and /dev/null differ
diff --git a/backend/static/maps/ac458aa302f14469a7b963bbbea91959_0.png b/backend/static/maps/ac458aa302f14469a7b963bbbea91959_0.png
deleted file mode 100644
index 3a4a430..0000000
Binary files a/backend/static/maps/ac458aa302f14469a7b963bbbea91959_0.png and /dev/null differ
diff --git a/backend/static/maps/ac979aa5a6b7411bbe4708b04f548cd0_0.png b/backend/static/maps/ac979aa5a6b7411bbe4708b04f548cd0_0.png
deleted file mode 100644
index 07f9f7e..0000000
Binary files a/backend/static/maps/ac979aa5a6b7411bbe4708b04f548cd0_0.png and /dev/null differ
diff --git a/backend/static/maps/ac9e145dab2742158627147983ef8ce1_78.png b/backend/static/maps/ac9e145dab2742158627147983ef8ce1_78.png
deleted file mode 100644
index 8ee129b..0000000
Binary files a/backend/static/maps/ac9e145dab2742158627147983ef8ce1_78.png and /dev/null differ
diff --git a/backend/static/maps/acafd420-c451-0133-1d17-0050569601ca-e.png b/backend/static/maps/acafd420-c451-0133-1d17-0050569601ca-e.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/acafd420-c451-0133-1d17-0050569601ca-e.png and /dev/null differ
diff --git a/backend/static/maps/acbf6310-c451-0133-1d17-0050569601ca-7.png b/backend/static/maps/acbf6310-c451-0133-1d17-0050569601ca-7.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/acbf6310-c451-0133-1d17-0050569601ca-7.png and /dev/null differ
diff --git a/backend/static/maps/acc2e600-c451-0133-1d17-0050569601ca-4.png b/backend/static/maps/acc2e600-c451-0133-1d17-0050569601ca-4.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/acc2e600-c451-0133-1d17-0050569601ca-4.png and /dev/null differ
diff --git a/backend/static/maps/acd6aac0-c451-0133-1d17-0050569601ca-a.png b/backend/static/maps/acd6aac0-c451-0133-1d17-0050569601ca-a.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/acd6aac0-c451-0133-1d17-0050569601ca-a.png and /dev/null differ
diff --git a/backend/static/maps/acd9ee30-c451-0133-1d17-0050569601ca-0.png b/backend/static/maps/acd9ee30-c451-0133-1d17-0050569601ca-0.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/acd9ee30-c451-0133-1d17-0050569601ca-0.png and /dev/null differ
diff --git a/backend/static/maps/adb5f914-7929-4242-b300-d6bdb390d455.png b/backend/static/maps/adb5f914-7929-4242-b300-d6bdb390d455.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/adb5f914-7929-4242-b300-d6bdb390d455.png and /dev/null differ
diff --git a/backend/static/maps/ae6df7bb-1b95-418f-be01-9236ef118ae8.png b/backend/static/maps/ae6df7bb-1b95-418f-be01-9236ef118ae8.png
deleted file mode 100644
index 470e4f3..0000000
Binary files a/backend/static/maps/ae6df7bb-1b95-418f-be01-9236ef118ae8.png and /dev/null differ
diff --git a/backend/static/maps/af3d7050-c451-0133-1d17-0050569601ca-e.png b/backend/static/maps/af3d7050-c451-0133-1d17-0050569601ca-e.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/af3d7050-c451-0133-1d17-0050569601ca-e.png and /dev/null differ
diff --git a/backend/static/maps/af6ba7c36d954ec7a73b74fd44d861ec_1.png b/backend/static/maps/af6ba7c36d954ec7a73b74fd44d861ec_1.png
deleted file mode 100644
index 30c1bd9..0000000
Binary files a/backend/static/maps/af6ba7c36d954ec7a73b74fd44d861ec_1.png and /dev/null differ
diff --git a/backend/static/maps/afbb8830-c451-0133-1d17-0050569601ca-a.png b/backend/static/maps/afbb8830-c451-0133-1d17-0050569601ca-a.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/afbb8830-c451-0133-1d17-0050569601ca-a.png and /dev/null differ
diff --git a/backend/static/maps/afcbb8e5-7fd7-4290-a420-f2904122cc89.png b/backend/static/maps/afcbb8e5-7fd7-4290-a420-f2904122cc89.png
deleted file mode 100644
index 8b93be3..0000000
Binary files a/backend/static/maps/afcbb8e5-7fd7-4290-a420-f2904122cc89.png and /dev/null differ
diff --git a/backend/static/maps/aq3f-cb5w.png b/backend/static/maps/aq3f-cb5w.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/aq3f-cb5w.png and /dev/null differ
diff --git a/backend/static/maps/ark-85335-m58585.png b/backend/static/maps/ark-85335-m58585.png
deleted file mode 100644
index 35de281..0000000
Binary files a/backend/static/maps/ark-85335-m58585.png and /dev/null differ
diff --git a/backend/static/maps/ark-85335-m59z90c0q.png b/backend/static/maps/ark-85335-m59z90c0q.png
deleted file mode 100644
index 90a1ea7..0000000
Binary files a/backend/static/maps/ark-85335-m59z90c0q.png and /dev/null differ
diff --git a/backend/static/maps/ark-85335-m5df6mf6k.png b/backend/static/maps/ark-85335-m5df6mf6k.png
deleted file mode 100644
index 6e487da..0000000
Binary files a/backend/static/maps/ark-85335-m5df6mf6k.png and /dev/null differ
diff --git a/backend/static/maps/ark-85335-m5fq9q54g.png b/backend/static/maps/ark-85335-m5fq9q54g.png
deleted file mode 100644
index d4627d8..0000000
Binary files a/backend/static/maps/ark-85335-m5fq9q54g.png and /dev/null differ
diff --git a/backend/static/maps/ark-85335-m5jq0wn0d.png b/backend/static/maps/ark-85335-m5jq0wn0d.png
deleted file mode 100644
index 8bbd51d..0000000
Binary files a/backend/static/maps/ark-85335-m5jq0wn0d.png and /dev/null differ
diff --git a/backend/static/maps/ark-85335-m5ks6j476.png b/backend/static/maps/ark-85335-m5ks6j476.png
deleted file mode 100644
index ae262a7..0000000
Binary files a/backend/static/maps/ark-85335-m5ks6j476.png and /dev/null differ
diff --git a/backend/static/maps/ark-85335-m5mg7fv8f.png b/backend/static/maps/ark-85335-m5mg7fv8f.png
deleted file mode 100644
index b7a0680..0000000
Binary files a/backend/static/maps/ark-85335-m5mg7fv8f.png and /dev/null differ
diff --git a/backend/static/maps/ark-85335-m5t72b757.png b/backend/static/maps/ark-85335-m5t72b757.png
deleted file mode 100644
index 95e8e49..0000000
Binary files a/backend/static/maps/ark-85335-m5t72b757.png and /dev/null differ
diff --git a/backend/static/maps/ark28722-s7b60m.png b/backend/static/maps/ark28722-s7b60m.png
deleted file mode 100644
index ecdb33e..0000000
Binary files a/backend/static/maps/ark28722-s7b60m.png and /dev/null differ
diff --git a/backend/static/maps/ark28722-s7gc77.png b/backend/static/maps/ark28722-s7gc77.png
deleted file mode 100644
index 9de7a50..0000000
Binary files a/backend/static/maps/ark28722-s7gc77.png and /dev/null differ
diff --git a/backend/static/maps/ark28722-s7vs38.png b/backend/static/maps/ark28722-s7vs38.png
deleted file mode 100644
index ddf0d63..0000000
Binary files a/backend/static/maps/ark28722-s7vs38.png and /dev/null differ
diff --git a/backend/static/maps/b0295140-c451-0133-1d17-0050569601ca-6.png b/backend/static/maps/b0295140-c451-0133-1d17-0050569601ca-6.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b0295140-c451-0133-1d17-0050569601ca-6.png and /dev/null differ
diff --git a/backend/static/maps/b094597346304cee8e5df5f3e3ce60e4_0.png b/backend/static/maps/b094597346304cee8e5df5f3e3ce60e4_0.png
deleted file mode 100644
index 5d71965..0000000
Binary files a/backend/static/maps/b094597346304cee8e5df5f3e3ce60e4_0.png and /dev/null differ
diff --git a/backend/static/maps/b0e6c2d7-6e9f-4df2-b09f-f4f57cdd4273.png b/backend/static/maps/b0e6c2d7-6e9f-4df2-b09f-f4f57cdd4273.png
deleted file mode 100644
index a6415e1..0000000
Binary files a/backend/static/maps/b0e6c2d7-6e9f-4df2-b09f-f4f57cdd4273.png and /dev/null differ
diff --git a/backend/static/maps/b0f903221daf42a382c43b0227d3fcab_0.png b/backend/static/maps/b0f903221daf42a382c43b0227d3fcab_0.png
deleted file mode 100644
index 96f5b79..0000000
Binary files a/backend/static/maps/b0f903221daf42a382c43b0227d3fcab_0.png and /dev/null differ
diff --git a/backend/static/maps/b10de73a-238b-4f07-9769-10090a5c5724.png b/backend/static/maps/b10de73a-238b-4f07-9769-10090a5c5724.png
deleted file mode 100644
index 2384c26..0000000
Binary files a/backend/static/maps/b10de73a-238b-4f07-9769-10090a5c5724.png and /dev/null differ
diff --git a/backend/static/maps/b110417f-113a-4a49-abde-a9ac08ec7a25.png b/backend/static/maps/b110417f-113a-4a49-abde-a9ac08ec7a25.png
deleted file mode 100644
index 72a3e3c..0000000
Binary files a/backend/static/maps/b110417f-113a-4a49-abde-a9ac08ec7a25.png and /dev/null differ
diff --git a/backend/static/maps/b1900288-2ee3-4f64-a946-1273074fbb71.png b/backend/static/maps/b1900288-2ee3-4f64-a946-1273074fbb71.png
deleted file mode 100644
index 7e706c9..0000000
Binary files a/backend/static/maps/b1900288-2ee3-4f64-a946-1273074fbb71.png and /dev/null differ
diff --git a/backend/static/maps/b203a749-3328-4519-900a-7a54c6750057.png b/backend/static/maps/b203a749-3328-4519-900a-7a54c6750057.png
deleted file mode 100644
index cdd08da..0000000
Binary files a/backend/static/maps/b203a749-3328-4519-900a-7a54c6750057.png and /dev/null differ
diff --git a/backend/static/maps/b22c341e4d314b88bb4936b055145de2_4.png b/backend/static/maps/b22c341e4d314b88bb4936b055145de2_4.png
deleted file mode 100644
index 3c404dc..0000000
Binary files a/backend/static/maps/b22c341e4d314b88bb4936b055145de2_4.png and /dev/null differ
diff --git a/backend/static/maps/b2b28236607c4a3296e5a53564f3c19b_27.png b/backend/static/maps/b2b28236607c4a3296e5a53564f3c19b_27.png
deleted file mode 100644
index 809958b..0000000
Binary files a/backend/static/maps/b2b28236607c4a3296e5a53564f3c19b_27.png and /dev/null differ
diff --git a/backend/static/maps/b2c26690-c451-0133-1d17-0050569601ca-7.png b/backend/static/maps/b2c26690-c451-0133-1d17-0050569601ca-7.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b2c26690-c451-0133-1d17-0050569601ca-7.png and /dev/null differ
diff --git a/backend/static/maps/b2cf05bf6dfa445f94a8ebc7eb9d777a_72.png b/backend/static/maps/b2cf05bf6dfa445f94a8ebc7eb9d777a_72.png
deleted file mode 100644
index c9f8f2d..0000000
Binary files a/backend/static/maps/b2cf05bf6dfa445f94a8ebc7eb9d777a_72.png and /dev/null differ
diff --git a/backend/static/maps/b2d57337-8f40-4980-a702-3b595cb64737.png b/backend/static/maps/b2d57337-8f40-4980-a702-3b595cb64737.png
deleted file mode 100644
index 240f54f..0000000
Binary files a/backend/static/maps/b2d57337-8f40-4980-a702-3b595cb64737.png and /dev/null differ
diff --git a/backend/static/maps/b2e8b04493574238a2d5abe47ea46353_1.png b/backend/static/maps/b2e8b04493574238a2d5abe47ea46353_1.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/b2e8b04493574238a2d5abe47ea46353_1.png and /dev/null differ
diff --git a/backend/static/maps/b2fdb9e45dcb448caeab079b5636816d_4.png b/backend/static/maps/b2fdb9e45dcb448caeab079b5636816d_4.png
deleted file mode 100644
index 878e42a..0000000
Binary files a/backend/static/maps/b2fdb9e45dcb448caeab079b5636816d_4.png and /dev/null differ
diff --git a/backend/static/maps/b363f9e0-c451-0133-1d17-0050569601ca-4.png b/backend/static/maps/b363f9e0-c451-0133-1d17-0050569601ca-4.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b363f9e0-c451-0133-1d17-0050569601ca-4.png and /dev/null differ
diff --git a/backend/static/maps/b36a5dd0-c451-0133-1d17-0050569601ca-8.png b/backend/static/maps/b36a5dd0-c451-0133-1d17-0050569601ca-8.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b36a5dd0-c451-0133-1d17-0050569601ca-8.png and /dev/null differ
diff --git a/backend/static/maps/b37aa650-c451-0133-1d17-0050569601ca-9.png b/backend/static/maps/b37aa650-c451-0133-1d17-0050569601ca-9.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b37aa650-c451-0133-1d17-0050569601ca-9.png and /dev/null differ
diff --git a/backend/static/maps/b3c5e088edfa405da26454fd4dbfd9b6_0.png b/backend/static/maps/b3c5e088edfa405da26454fd4dbfd9b6_0.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/b3c5e088edfa405da26454fd4dbfd9b6_0.png and /dev/null differ
diff --git a/backend/static/maps/b42257779032462d8ba2810cb4391e8f_42.png b/backend/static/maps/b42257779032462d8ba2810cb4391e8f_42.png
deleted file mode 100644
index 4a704ce..0000000
Binary files a/backend/static/maps/b42257779032462d8ba2810cb4391e8f_42.png and /dev/null differ
diff --git a/backend/static/maps/b479e4bd7d70439a87e0230c99bddce5_0.png b/backend/static/maps/b479e4bd7d70439a87e0230c99bddce5_0.png
deleted file mode 100644
index 4557d76..0000000
Binary files a/backend/static/maps/b479e4bd7d70439a87e0230c99bddce5_0.png and /dev/null differ
diff --git a/backend/static/maps/b4ee33e2-bd36-4483-93a9-d4206c3ed2ef.png b/backend/static/maps/b4ee33e2-bd36-4483-93a9-d4206c3ed2ef.png
deleted file mode 100644
index 38cd9f1..0000000
Binary files a/backend/static/maps/b4ee33e2-bd36-4483-93a9-d4206c3ed2ef.png and /dev/null differ
diff --git a/backend/static/maps/b4f3d978-000b-4a46-94ca-253ab0ce6cf4.png b/backend/static/maps/b4f3d978-000b-4a46-94ca-253ab0ce6cf4.png
deleted file mode 100644
index db230f0..0000000
Binary files a/backend/static/maps/b4f3d978-000b-4a46-94ca-253ab0ce6cf4.png and /dev/null differ
diff --git a/backend/static/maps/b52daf40-c451-0133-1d17-0050569601ca-2.png b/backend/static/maps/b52daf40-c451-0133-1d17-0050569601ca-2.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b52daf40-c451-0133-1d17-0050569601ca-2.png and /dev/null differ
diff --git a/backend/static/maps/b566b3b0-c451-0133-1d17-0050569601ca-e.png b/backend/static/maps/b566b3b0-c451-0133-1d17-0050569601ca-e.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b566b3b0-c451-0133-1d17-0050569601ca-e.png and /dev/null differ
diff --git a/backend/static/maps/b5754810-c451-0133-1d17-0050569601ca-5.png b/backend/static/maps/b5754810-c451-0133-1d17-0050569601ca-5.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b5754810-c451-0133-1d17-0050569601ca-5.png and /dev/null differ
diff --git a/backend/static/maps/b58e0100-c451-0133-1d17-0050569601ca-5.png b/backend/static/maps/b58e0100-c451-0133-1d17-0050569601ca-5.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b58e0100-c451-0133-1d17-0050569601ca-5.png and /dev/null differ
diff --git a/backend/static/maps/b5927f10-c451-0133-1d17-0050569601ca-8.png b/backend/static/maps/b5927f10-c451-0133-1d17-0050569601ca-8.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b5927f10-c451-0133-1d17-0050569601ca-8.png and /dev/null differ
diff --git a/backend/static/maps/b5c3e890-c451-0133-1d17-0050569601ca-2.png b/backend/static/maps/b5c3e890-c451-0133-1d17-0050569601ca-2.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b5c3e890-c451-0133-1d17-0050569601ca-2.png and /dev/null differ
diff --git a/backend/static/maps/b5db56e0-c451-0133-1d17-0050569601ca-9.png b/backend/static/maps/b5db56e0-c451-0133-1d17-0050569601ca-9.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b5db56e0-c451-0133-1d17-0050569601ca-9.png and /dev/null differ
diff --git a/backend/static/maps/b5e5c5d0-c451-0133-1d17-0050569601ca-1.png b/backend/static/maps/b5e5c5d0-c451-0133-1d17-0050569601ca-1.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b5e5c5d0-c451-0133-1d17-0050569601ca-1.png and /dev/null differ
diff --git a/backend/static/maps/b65d3ec0-c451-0133-1d17-0050569601ca-e.png b/backend/static/maps/b65d3ec0-c451-0133-1d17-0050569601ca-e.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b65d3ec0-c451-0133-1d17-0050569601ca-e.png and /dev/null differ
diff --git a/backend/static/maps/b6c068e0-c451-0133-1d17-0050569601ca-9.png b/backend/static/maps/b6c068e0-c451-0133-1d17-0050569601ca-9.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b6c068e0-c451-0133-1d17-0050569601ca-9.png and /dev/null differ
diff --git a/backend/static/maps/b6ebf0c0-b43d-408a-a537-6ac58adb5d92.png b/backend/static/maps/b6ebf0c0-b43d-408a-a537-6ac58adb5d92.png
deleted file mode 100644
index 2407584..0000000
Binary files a/backend/static/maps/b6ebf0c0-b43d-408a-a537-6ac58adb5d92.png and /dev/null differ
diff --git a/backend/static/maps/b6f1fa9e4e2e4a48a49fe14a9606649f_3.png b/backend/static/maps/b6f1fa9e4e2e4a48a49fe14a9606649f_3.png
deleted file mode 100644
index 5f7e0ac..0000000
Binary files a/backend/static/maps/b6f1fa9e4e2e4a48a49fe14a9606649f_3.png and /dev/null differ
diff --git a/backend/static/maps/b7051c00-c451-0133-1d17-0050569601ca-4.png b/backend/static/maps/b7051c00-c451-0133-1d17-0050569601ca-4.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/b7051c00-c451-0133-1d17-0050569601ca-4.png and /dev/null differ
diff --git a/backend/static/maps/b7d2b792be164ad2b4cafca7ba8bd43d_0.png b/backend/static/maps/b7d2b792be164ad2b4cafca7ba8bd43d_0.png
deleted file mode 100644
index 52cfaeb..0000000
Binary files a/backend/static/maps/b7d2b792be164ad2b4cafca7ba8bd43d_0.png and /dev/null differ
diff --git a/backend/static/maps/b8139a837ca34c5499e8f32c4d211321_1.png b/backend/static/maps/b8139a837ca34c5499e8f32c4d211321_1.png
deleted file mode 100644
index 30c1bd9..0000000
Binary files a/backend/static/maps/b8139a837ca34c5499e8f32c4d211321_1.png and /dev/null differ
diff --git a/backend/static/maps/b820bc56-d28e-4515-82f0-3882f1d60002.png b/backend/static/maps/b820bc56-d28e-4515-82f0-3882f1d60002.png
deleted file mode 100644
index 44e3589..0000000
Binary files a/backend/static/maps/b820bc56-d28e-4515-82f0-3882f1d60002.png and /dev/null differ
diff --git a/backend/static/maps/b90d81ba-7c7a-4283-9899-827480d80a79.png b/backend/static/maps/b90d81ba-7c7a-4283-9899-827480d80a79.png
deleted file mode 100644
index 79228f6..0000000
Binary files a/backend/static/maps/b90d81ba-7c7a-4283-9899-827480d80a79.png and /dev/null differ
diff --git a/backend/static/maps/b981cd98-5c5e-413c-8d51-f3ee6d9b3785.png b/backend/static/maps/b981cd98-5c5e-413c-8d51-f3ee6d9b3785.png
deleted file mode 100644
index 0d135e8..0000000
Binary files a/backend/static/maps/b981cd98-5c5e-413c-8d51-f3ee6d9b3785.png and /dev/null differ
diff --git a/backend/static/maps/b9c0cf1a06014b419a33bfaee1c1f494_7.png b/backend/static/maps/b9c0cf1a06014b419a33bfaee1c1f494_7.png
deleted file mode 100644
index 46949ba..0000000
Binary files a/backend/static/maps/b9c0cf1a06014b419a33bfaee1c1f494_7.png and /dev/null differ
diff --git a/backend/static/maps/ba0eb9ff-a2b2-4a06-bf66-21aa1af5edb6.png b/backend/static/maps/ba0eb9ff-a2b2-4a06-bf66-21aa1af5edb6.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/ba0eb9ff-a2b2-4a06-bf66-21aa1af5edb6.png and /dev/null differ
diff --git a/backend/static/maps/ba85349a33f94330985aa2897146df0a_0.png b/backend/static/maps/ba85349a33f94330985aa2897146df0a_0.png
deleted file mode 100644
index 5f7b64e..0000000
Binary files a/backend/static/maps/ba85349a33f94330985aa2897146df0a_0.png and /dev/null differ
diff --git a/backend/static/maps/bac096c5-180e-4a63-acf8-80868b2048ea.png b/backend/static/maps/bac096c5-180e-4a63-acf8-80868b2048ea.png
deleted file mode 100644
index 4762592..0000000
Binary files a/backend/static/maps/bac096c5-180e-4a63-acf8-80868b2048ea.png and /dev/null differ
diff --git a/backend/static/maps/bb327330-c451-0133-1d17-0050569601ca-8.png b/backend/static/maps/bb327330-c451-0133-1d17-0050569601ca-8.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/bb327330-c451-0133-1d17-0050569601ca-8.png and /dev/null differ
diff --git a/backend/static/maps/bbd9e760-c451-0133-1d17-0050569601ca-d.png b/backend/static/maps/bbd9e760-c451-0133-1d17-0050569601ca-d.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/bbd9e760-c451-0133-1d17-0050569601ca-d.png and /dev/null differ
diff --git a/backend/static/maps/bc33fd70-bde7-468a-ab56-9af378611d97.png b/backend/static/maps/bc33fd70-bde7-468a-ab56-9af378611d97.png
deleted file mode 100644
index f50e561..0000000
Binary files a/backend/static/maps/bc33fd70-bde7-468a-ab56-9af378611d97.png and /dev/null differ
diff --git a/backend/static/maps/bd9cd14e-5f8e-48cf-a5f4-6d0a15ad4828.png b/backend/static/maps/bd9cd14e-5f8e-48cf-a5f4-6d0a15ad4828.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/bd9cd14e-5f8e-48cf-a5f4-6d0a15ad4828.png and /dev/null differ
diff --git a/backend/static/maps/bda62cb0-c451-0133-1d17-0050569601ca-f.png b/backend/static/maps/bda62cb0-c451-0133-1d17-0050569601ca-f.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/bda62cb0-c451-0133-1d17-0050569601ca-f.png and /dev/null differ
diff --git a/backend/static/maps/bdb36390-c451-0133-1d17-0050569601ca-5.png b/backend/static/maps/bdb36390-c451-0133-1d17-0050569601ca-5.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/bdb36390-c451-0133-1d17-0050569601ca-5.png and /dev/null differ
diff --git a/backend/static/maps/bdba50d0-c451-0133-1d17-0050569601ca-9.png b/backend/static/maps/bdba50d0-c451-0133-1d17-0050569601ca-9.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/bdba50d0-c451-0133-1d17-0050569601ca-9.png and /dev/null differ
diff --git a/backend/static/maps/be9969a0-c451-0133-1d17-0050569601ca-a.png b/backend/static/maps/be9969a0-c451-0133-1d17-0050569601ca-a.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/be9969a0-c451-0133-1d17-0050569601ca-a.png and /dev/null differ
diff --git a/backend/static/maps/beaa1896-7144-4d3e-bbfe-59a75e6935fb.png b/backend/static/maps/beaa1896-7144-4d3e-bbfe-59a75e6935fb.png
deleted file mode 100644
index 72a3e3c..0000000
Binary files a/backend/static/maps/beaa1896-7144-4d3e-bbfe-59a75e6935fb.png and /dev/null differ
diff --git a/backend/static/maps/beb8829f-e8e9-4034-aa91-a5777d48d36d.png b/backend/static/maps/beb8829f-e8e9-4034-aa91-a5777d48d36d.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/beb8829f-e8e9-4034-aa91-a5777d48d36d.png and /dev/null differ
diff --git a/backend/static/maps/bef072c0-c451-0133-1d17-0050569601ca-3.png b/backend/static/maps/bef072c0-c451-0133-1d17-0050569601ca-3.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/bef072c0-c451-0133-1d17-0050569601ca-3.png and /dev/null differ
diff --git a/backend/static/maps/berkeley-s7kq2q.png b/backend/static/maps/berkeley-s7kq2q.png
deleted file mode 100644
index 4bd1b58..0000000
Binary files a/backend/static/maps/berkeley-s7kq2q.png and /dev/null differ
diff --git a/backend/static/maps/berkeley-s7md7t.png b/backend/static/maps/berkeley-s7md7t.png
deleted file mode 100644
index 843b5ae..0000000
Binary files a/backend/static/maps/berkeley-s7md7t.png and /dev/null differ
diff --git a/backend/static/maps/bfa029a9b9734fb7949de0e3b1da1fb3.png b/backend/static/maps/bfa029a9b9734fb7949de0e3b1da1fb3.png
deleted file mode 100644
index 1ceb159..0000000
Binary files a/backend/static/maps/bfa029a9b9734fb7949de0e3b1da1fb3.png and /dev/null differ
diff --git a/backend/static/maps/bfa76b2a9428425eaf06ee933b199124_0.png b/backend/static/maps/bfa76b2a9428425eaf06ee933b199124_0.png
deleted file mode 100644
index b7ad7a1..0000000
Binary files a/backend/static/maps/bfa76b2a9428425eaf06ee933b199124_0.png and /dev/null differ
diff --git a/backend/static/maps/bfe14cda-3017-4d8e-9519-4f2502d0068f.png b/backend/static/maps/bfe14cda-3017-4d8e-9519-4f2502d0068f.png
deleted file mode 100644
index f8bb9f0..0000000
Binary files a/backend/static/maps/bfe14cda-3017-4d8e-9519-4f2502d0068f.png and /dev/null differ
diff --git a/backend/static/maps/c0033d45400e484a9a9bfc83f9a60ce8_0.png b/backend/static/maps/c0033d45400e484a9a9bfc83f9a60ce8_0.png
deleted file mode 100644
index 0be9cf2..0000000
Binary files a/backend/static/maps/c0033d45400e484a9a9bfc83f9a60ce8_0.png and /dev/null differ
diff --git a/backend/static/maps/c0100ac0-c451-0133-1d17-0050569601ca-3.png b/backend/static/maps/c0100ac0-c451-0133-1d17-0050569601ca-3.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c0100ac0-c451-0133-1d17-0050569601ca-3.png and /dev/null differ
diff --git a/backend/static/maps/c03938ed-0c45-4bed-9b01-d4b7f54d9063.png b/backend/static/maps/c03938ed-0c45-4bed-9b01-d4b7f54d9063.png
deleted file mode 100644
index c07386a..0000000
Binary files a/backend/static/maps/c03938ed-0c45-4bed-9b01-d4b7f54d9063.png and /dev/null differ
diff --git a/backend/static/maps/c056f6dcc30b444facb9335aeac2bd35_1.png b/backend/static/maps/c056f6dcc30b444facb9335aeac2bd35_1.png
deleted file mode 100644
index 711360e..0000000
Binary files a/backend/static/maps/c056f6dcc30b444facb9335aeac2bd35_1.png and /dev/null differ
diff --git a/backend/static/maps/c0d049f688154fa19b6639b32f23a2c7_0.png b/backend/static/maps/c0d049f688154fa19b6639b32f23a2c7_0.png
deleted file mode 100644
index 6a7c186..0000000
Binary files a/backend/static/maps/c0d049f688154fa19b6639b32f23a2c7_0.png and /dev/null differ
diff --git a/backend/static/maps/c14633a0-c451-0133-1d17-0050569601ca-0.png b/backend/static/maps/c14633a0-c451-0133-1d17-0050569601ca-0.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c14633a0-c451-0133-1d17-0050569601ca-0.png and /dev/null differ
diff --git a/backend/static/maps/c14c15d4630743daa0894b36766410eb_1.png b/backend/static/maps/c14c15d4630743daa0894b36766410eb_1.png
deleted file mode 100644
index 30c1bd9..0000000
Binary files a/backend/static/maps/c14c15d4630743daa0894b36766410eb_1.png and /dev/null differ
diff --git a/backend/static/maps/c14c6e30-c451-0133-1d17-0050569601ca-0.png b/backend/static/maps/c14c6e30-c451-0133-1d17-0050569601ca-0.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c14c6e30-c451-0133-1d17-0050569601ca-0.png and /dev/null differ
diff --git a/backend/static/maps/c196b290-c451-0133-1d17-0050569601ca-6.png b/backend/static/maps/c196b290-c451-0133-1d17-0050569601ca-6.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c196b290-c451-0133-1d17-0050569601ca-6.png and /dev/null differ
diff --git a/backend/static/maps/c19f73ca-1d8c-4d26-9687-b32bb4bea830.png b/backend/static/maps/c19f73ca-1d8c-4d26-9687-b32bb4bea830.png
deleted file mode 100644
index 343da90..0000000
Binary files a/backend/static/maps/c19f73ca-1d8c-4d26-9687-b32bb4bea830.png and /dev/null differ
diff --git a/backend/static/maps/c1e1cc10-c451-0133-1d17-0050569601ca-d.png b/backend/static/maps/c1e1cc10-c451-0133-1d17-0050569601ca-d.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c1e1cc10-c451-0133-1d17-0050569601ca-d.png and /dev/null differ
diff --git a/backend/static/maps/c20fac5bd5d64948898781462f842549_0.png b/backend/static/maps/c20fac5bd5d64948898781462f842549_0.png
deleted file mode 100644
index 1d70852..0000000
Binary files a/backend/static/maps/c20fac5bd5d64948898781462f842549_0.png and /dev/null differ
diff --git a/backend/static/maps/c2e6a9c0-c451-0133-1d17-0050569601ca-e.png b/backend/static/maps/c2e6a9c0-c451-0133-1d17-0050569601ca-e.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c2e6a9c0-c451-0133-1d17-0050569601ca-e.png and /dev/null differ
diff --git a/backend/static/maps/c5be9a96b5ba4f39984034939aff5a0c_1.png b/backend/static/maps/c5be9a96b5ba4f39984034939aff5a0c_1.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/c5be9a96b5ba4f39984034939aff5a0c_1.png and /dev/null differ
diff --git a/backend/static/maps/c5be9a96b5ba4f39984034939aff5a0c_2.png b/backend/static/maps/c5be9a96b5ba4f39984034939aff5a0c_2.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/c5be9a96b5ba4f39984034939aff5a0c_2.png and /dev/null differ
diff --git a/backend/static/maps/c5c8e01ea0ac4f89bf5936964993f302_8.png b/backend/static/maps/c5c8e01ea0ac4f89bf5936964993f302_8.png
deleted file mode 100644
index dd4ff56..0000000
Binary files a/backend/static/maps/c5c8e01ea0ac4f89bf5936964993f302_8.png and /dev/null differ
diff --git a/backend/static/maps/c5f3575dd7d545ada27064c74ac74f52_0.png b/backend/static/maps/c5f3575dd7d545ada27064c74ac74f52_0.png
deleted file mode 100644
index 62cf64a..0000000
Binary files a/backend/static/maps/c5f3575dd7d545ada27064c74ac74f52_0.png and /dev/null differ
diff --git a/backend/static/maps/c6190cd6-292a-46cc-b882-3be0e9c27823.png b/backend/static/maps/c6190cd6-292a-46cc-b882-3be0e9c27823.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/c6190cd6-292a-46cc-b882-3be0e9c27823.png and /dev/null differ
diff --git a/backend/static/maps/c6682719ee4044549e0169428c336f04_0.png b/backend/static/maps/c6682719ee4044549e0169428c336f04_0.png
deleted file mode 100644
index 8f1fa96..0000000
Binary files a/backend/static/maps/c6682719ee4044549e0169428c336f04_0.png and /dev/null differ
diff --git a/backend/static/maps/c68ba9655f0d49c8bd8da9d601428a25_11.png b/backend/static/maps/c68ba9655f0d49c8bd8da9d601428a25_11.png
deleted file mode 100644
index b315762..0000000
Binary files a/backend/static/maps/c68ba9655f0d49c8bd8da9d601428a25_11.png and /dev/null differ
diff --git a/backend/static/maps/c69b75a12ca64324a0109d48db735f6d_0.png b/backend/static/maps/c69b75a12ca64324a0109d48db735f6d_0.png
deleted file mode 100644
index f42bf38..0000000
Binary files a/backend/static/maps/c69b75a12ca64324a0109d48db735f6d_0.png and /dev/null differ
diff --git a/backend/static/maps/c69b75a12ca64324a0109d48db735f6d_4.png b/backend/static/maps/c69b75a12ca64324a0109d48db735f6d_4.png
deleted file mode 100644
index e2fc7af..0000000
Binary files a/backend/static/maps/c69b75a12ca64324a0109d48db735f6d_4.png and /dev/null differ
diff --git a/backend/static/maps/c6e90f6dfe8d493f907e5438bdfc4740_0.png b/backend/static/maps/c6e90f6dfe8d493f907e5438bdfc4740_0.png
deleted file mode 100644
index 236249c..0000000
Binary files a/backend/static/maps/c6e90f6dfe8d493f907e5438bdfc4740_0.png and /dev/null differ
diff --git a/backend/static/maps/c6f0fdb0-c451-0133-1d17-0050569601ca-5.png b/backend/static/maps/c6f0fdb0-c451-0133-1d17-0050569601ca-5.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c6f0fdb0-c451-0133-1d17-0050569601ca-5.png and /dev/null differ
diff --git a/backend/static/maps/c70585e0-c451-0133-1d17-0050569601ca-d.png b/backend/static/maps/c70585e0-c451-0133-1d17-0050569601ca-d.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c70585e0-c451-0133-1d17-0050569601ca-d.png and /dev/null differ
diff --git a/backend/static/maps/c70c14c0-c451-0133-1d17-0050569601ca-9.png b/backend/static/maps/c70c14c0-c451-0133-1d17-0050569601ca-9.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c70c14c0-c451-0133-1d17-0050569601ca-9.png and /dev/null differ
diff --git a/backend/static/maps/c715a932fbb54537813a5309fbbf73ea.png b/backend/static/maps/c715a932fbb54537813a5309fbbf73ea.png
deleted file mode 100644
index d72d47a..0000000
Binary files a/backend/static/maps/c715a932fbb54537813a5309fbbf73ea.png and /dev/null differ
diff --git a/backend/static/maps/c71f6280-c451-0133-1d17-0050569601ca-5.png b/backend/static/maps/c71f6280-c451-0133-1d17-0050569601ca-5.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c71f6280-c451-0133-1d17-0050569601ca-5.png and /dev/null differ
diff --git a/backend/static/maps/c7338aa3-d807-485f-b940-2ebcab585187.png b/backend/static/maps/c7338aa3-d807-485f-b940-2ebcab585187.png
deleted file mode 100644
index 314c84b..0000000
Binary files a/backend/static/maps/c7338aa3-d807-485f-b940-2ebcab585187.png and /dev/null differ
diff --git a/backend/static/maps/c749e34199c1425cbbc5959308658ec3_0.png b/backend/static/maps/c749e34199c1425cbbc5959308658ec3_0.png
deleted file mode 100644
index 6576372..0000000
Binary files a/backend/static/maps/c749e34199c1425cbbc5959308658ec3_0.png and /dev/null differ
diff --git a/backend/static/maps/c7cdec40-7e6e-0137-6d13-02d0d7bfd6e4-d.png b/backend/static/maps/c7cdec40-7e6e-0137-6d13-02d0d7bfd6e4-d.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c7cdec40-7e6e-0137-6d13-02d0d7bfd6e4-d.png and /dev/null differ
diff --git a/backend/static/maps/c7f27160-d3f2-013a-c558-02d0d7bfd6e4-3.png b/backend/static/maps/c7f27160-d3f2-013a-c558-02d0d7bfd6e4-3.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c7f27160-d3f2-013a-c558-02d0d7bfd6e4-3.png and /dev/null differ
diff --git a/backend/static/maps/c8080bd7-73a0-4a64-83ba-c1864d41597f.png b/backend/static/maps/c8080bd7-73a0-4a64-83ba-c1864d41597f.png
deleted file mode 100644
index acdc36a..0000000
Binary files a/backend/static/maps/c8080bd7-73a0-4a64-83ba-c1864d41597f.png and /dev/null differ
diff --git a/backend/static/maps/c87b26ca-299c-436f-9bd2-6ac90c00e4a0.png b/backend/static/maps/c87b26ca-299c-436f-9bd2-6ac90c00e4a0.png
deleted file mode 100644
index 11453df..0000000
Binary files a/backend/static/maps/c87b26ca-299c-436f-9bd2-6ac90c00e4a0.png and /dev/null differ
diff --git a/backend/static/maps/c8841486-5336-4e8e-abee-ba42263c234a.png b/backend/static/maps/c8841486-5336-4e8e-abee-ba42263c234a.png
deleted file mode 100644
index 3589202..0000000
Binary files a/backend/static/maps/c8841486-5336-4e8e-abee-ba42263c234a.png and /dev/null differ
diff --git a/backend/static/maps/c8996c0d-278b-4006-ad68-40009e0217e2.png b/backend/static/maps/c8996c0d-278b-4006-ad68-40009e0217e2.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/c8996c0d-278b-4006-ad68-40009e0217e2.png and /dev/null differ
diff --git a/backend/static/maps/c8fe5332-be82-426c-bf52-bb556fdffe88.png b/backend/static/maps/c8fe5332-be82-426c-bf52-bb556fdffe88.png
deleted file mode 100644
index 0cf98d4..0000000
Binary files a/backend/static/maps/c8fe5332-be82-426c-bf52-bb556fdffe88.png and /dev/null differ
diff --git a/backend/static/maps/c904aa20-c451-0133-1d17-0050569601ca-9.png b/backend/static/maps/c904aa20-c451-0133-1d17-0050569601ca-9.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c904aa20-c451-0133-1d17-0050569601ca-9.png and /dev/null differ
diff --git a/backend/static/maps/c90b7500-c451-0133-1d17-0050569601ca-a.png b/backend/static/maps/c90b7500-c451-0133-1d17-0050569601ca-a.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c90b7500-c451-0133-1d17-0050569601ca-a.png and /dev/null differ
diff --git a/backend/static/maps/c9128d518c934a3eb88fcd6df952887f_0.png b/backend/static/maps/c9128d518c934a3eb88fcd6df952887f_0.png
deleted file mode 100644
index d7426b9..0000000
Binary files a/backend/static/maps/c9128d518c934a3eb88fcd6df952887f_0.png and /dev/null differ
diff --git a/backend/static/maps/c912f4a0-c451-0133-1d17-0050569601ca-c.png b/backend/static/maps/c912f4a0-c451-0133-1d17-0050569601ca-c.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c912f4a0-c451-0133-1d17-0050569601ca-c.png and /dev/null differ
diff --git a/backend/static/maps/c92c39cd-e550-4e56-8500-7a41fb94af66.png b/backend/static/maps/c92c39cd-e550-4e56-8500-7a41fb94af66.png
deleted file mode 100644
index 0cf98d4..0000000
Binary files a/backend/static/maps/c92c39cd-e550-4e56-8500-7a41fb94af66.png and /dev/null differ
diff --git a/backend/static/maps/c946b510-c451-0133-1d17-0050569601ca-c.png b/backend/static/maps/c946b510-c451-0133-1d17-0050569601ca-c.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c946b510-c451-0133-1d17-0050569601ca-c.png and /dev/null differ
diff --git a/backend/static/maps/c94cc0b0-c451-0133-1d17-0050569601ca-e.png b/backend/static/maps/c94cc0b0-c451-0133-1d17-0050569601ca-e.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c94cc0b0-c451-0133-1d17-0050569601ca-e.png and /dev/null differ
diff --git a/backend/static/maps/c9630c90-c451-0133-1d17-0050569601ca-4.png b/backend/static/maps/c9630c90-c451-0133-1d17-0050569601ca-4.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c9630c90-c451-0133-1d17-0050569601ca-4.png and /dev/null differ
diff --git a/backend/static/maps/c96fd8d0-c451-0133-1d17-0050569601ca-2.png b/backend/static/maps/c96fd8d0-c451-0133-1d17-0050569601ca-2.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c96fd8d0-c451-0133-1d17-0050569601ca-2.png and /dev/null differ
diff --git a/backend/static/maps/c9f6bd10-c451-0133-1d17-0050569601ca-0.png b/backend/static/maps/c9f6bd10-c451-0133-1d17-0050569601ca-0.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c9f6bd10-c451-0133-1d17-0050569601ca-0.png and /dev/null differ
diff --git a/backend/static/maps/c9fcdf70-c451-0133-1d17-0050569601ca-7.png b/backend/static/maps/c9fcdf70-c451-0133-1d17-0050569601ca-7.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/c9fcdf70-c451-0133-1d17-0050569601ca-7.png and /dev/null differ
diff --git a/backend/static/maps/ca033c00-c451-0133-1d17-0050569601ca-e.png b/backend/static/maps/ca033c00-c451-0133-1d17-0050569601ca-e.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/ca033c00-c451-0133-1d17-0050569601ca-e.png and /dev/null differ
diff --git a/backend/static/maps/ca18b270-c451-0133-1d17-0050569601ca-8.png b/backend/static/maps/ca18b270-c451-0133-1d17-0050569601ca-8.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/ca18b270-c451-0133-1d17-0050569601ca-8.png and /dev/null differ
diff --git a/backend/static/maps/ca265804-1a2d-414c-9088-8870249f7bfb.png b/backend/static/maps/ca265804-1a2d-414c-9088-8870249f7bfb.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/ca265804-1a2d-414c-9088-8870249f7bfb.png and /dev/null differ
diff --git a/backend/static/maps/ca38e709-1593-4372-abf4-cd57da3616e4.png b/backend/static/maps/ca38e709-1593-4372-abf4-cd57da3616e4.png
deleted file mode 100644
index 72db661..0000000
Binary files a/backend/static/maps/ca38e709-1593-4372-abf4-cd57da3616e4.png and /dev/null differ
diff --git a/backend/static/maps/ca39638b-98a6-45f4-98fc-8de27097748a.png b/backend/static/maps/ca39638b-98a6-45f4-98fc-8de27097748a.png
deleted file mode 100644
index 4f11f50..0000000
Binary files a/backend/static/maps/ca39638b-98a6-45f4-98fc-8de27097748a.png and /dev/null differ
diff --git a/backend/static/maps/ca4ddf00-c451-0133-1d17-0050569601ca-5.png b/backend/static/maps/ca4ddf00-c451-0133-1d17-0050569601ca-5.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/ca4ddf00-c451-0133-1d17-0050569601ca-5.png and /dev/null differ
diff --git a/backend/static/maps/ca88c7b0-c451-0133-1d17-0050569601ca-2.png b/backend/static/maps/ca88c7b0-c451-0133-1d17-0050569601ca-2.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/ca88c7b0-c451-0133-1d17-0050569601ca-2.png and /dev/null differ
diff --git a/backend/static/maps/cab9b992-720c-491f-a5b1-68924a381683.png b/backend/static/maps/cab9b992-720c-491f-a5b1-68924a381683.png
deleted file mode 100644
index 15b8bfc..0000000
Binary files a/backend/static/maps/cab9b992-720c-491f-a5b1-68924a381683.png and /dev/null differ
diff --git a/backend/static/maps/cac677905d02463fb2bad34de1f289b2_0.png b/backend/static/maps/cac677905d02463fb2bad34de1f289b2_0.png
deleted file mode 100644
index 867a738..0000000
Binary files a/backend/static/maps/cac677905d02463fb2bad34de1f289b2_0.png and /dev/null differ
diff --git a/backend/static/maps/cae5dc00-c451-0133-1d17-0050569601ca-2.png b/backend/static/maps/cae5dc00-c451-0133-1d17-0050569601ca-2.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/cae5dc00-c451-0133-1d17-0050569601ca-2.png and /dev/null differ
diff --git a/backend/static/maps/camel-1008331.png b/backend/static/maps/camel-1008331.png
deleted file mode 100644
index f78cf89..0000000
Binary files a/backend/static/maps/camel-1008331.png and /dev/null differ
diff --git a/backend/static/maps/camel-1008332.png b/backend/static/maps/camel-1008332.png
deleted file mode 100644
index 9d2deb9..0000000
Binary files a/backend/static/maps/camel-1008332.png and /dev/null differ
diff --git a/backend/static/maps/camel-1014147.png b/backend/static/maps/camel-1014147.png
deleted file mode 100644
index 1f755cf..0000000
Binary files a/backend/static/maps/camel-1014147.png and /dev/null differ
diff --git a/backend/static/maps/camel-1014689.png b/backend/static/maps/camel-1014689.png
deleted file mode 100644
index 951b472..0000000
Binary files a/backend/static/maps/camel-1014689.png and /dev/null differ
diff --git a/backend/static/maps/camel-1015083.png b/backend/static/maps/camel-1015083.png
deleted file mode 100644
index 472044d..0000000
Binary files a/backend/static/maps/camel-1015083.png and /dev/null differ
diff --git a/backend/static/maps/camel-1015126.png b/backend/static/maps/camel-1015126.png
deleted file mode 100644
index 363bab0..0000000
Binary files a/backend/static/maps/camel-1015126.png and /dev/null differ
diff --git a/backend/static/maps/camel-1015134.png b/backend/static/maps/camel-1015134.png
deleted file mode 100644
index 0e93b29..0000000
Binary files a/backend/static/maps/camel-1015134.png and /dev/null differ
diff --git a/backend/static/maps/camel-1015243.png b/backend/static/maps/camel-1015243.png
deleted file mode 100644
index 8e98680..0000000
Binary files a/backend/static/maps/camel-1015243.png and /dev/null differ
diff --git a/backend/static/maps/camel-1018025.png b/backend/static/maps/camel-1018025.png
deleted file mode 100644
index d7361dc..0000000
Binary files a/backend/static/maps/camel-1018025.png and /dev/null differ
diff --git a/backend/static/maps/camel-1019416.png b/backend/static/maps/camel-1019416.png
deleted file mode 100644
index 447629a..0000000
Binary files a/backend/static/maps/camel-1019416.png and /dev/null differ
diff --git a/backend/static/maps/camel-1019421.png b/backend/static/maps/camel-1019421.png
deleted file mode 100644
index 223f9fa..0000000
Binary files a/backend/static/maps/camel-1019421.png and /dev/null differ
diff --git a/backend/static/maps/camel-1022685.png b/backend/static/maps/camel-1022685.png
deleted file mode 100644
index 32055b0..0000000
Binary files a/backend/static/maps/camel-1022685.png and /dev/null differ
diff --git a/backend/static/maps/cb3c34f1-4dec-4109-a168-082ce2244834.png b/backend/static/maps/cb3c34f1-4dec-4109-a168-082ce2244834.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/cb3c34f1-4dec-4109-a168-082ce2244834.png and /dev/null differ
diff --git a/backend/static/maps/cb82e751-cc0c-43a5-9c41-94c5a2043558.png b/backend/static/maps/cb82e751-cc0c-43a5-9c41-94c5a2043558.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/cb82e751-cc0c-43a5-9c41-94c5a2043558.png and /dev/null differ
diff --git a/backend/static/maps/cb8846afae4c44a09bbfb7ce7be8e3b7_0.png b/backend/static/maps/cb8846afae4c44a09bbfb7ce7be8e3b7_0.png
deleted file mode 100644
index 37cc75a..0000000
Binary files a/backend/static/maps/cb8846afae4c44a09bbfb7ce7be8e3b7_0.png and /dev/null differ
diff --git a/backend/static/maps/cb930931-9ccb-4b2a-b6f0-cf48b4153937.png b/backend/static/maps/cb930931-9ccb-4b2a-b6f0-cf48b4153937.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/cb930931-9ccb-4b2a-b6f0-cf48b4153937.png and /dev/null differ
diff --git a/backend/static/maps/cc516b88a47547bd974bba4ebc120ecf_15.png b/backend/static/maps/cc516b88a47547bd974bba4ebc120ecf_15.png
deleted file mode 100644
index 9ace377..0000000
Binary files a/backend/static/maps/cc516b88a47547bd974bba4ebc120ecf_15.png and /dev/null differ
diff --git a/backend/static/maps/cc5e5d08d61b4635b9415acf9dae5eb4_0.png b/backend/static/maps/cc5e5d08d61b4635b9415acf9dae5eb4_0.png
deleted file mode 100644
index 210bd80..0000000
Binary files a/backend/static/maps/cc5e5d08d61b4635b9415acf9dae5eb4_0.png and /dev/null differ
diff --git a/backend/static/maps/cce04ab0-c451-0133-1d17-0050569601ca-a.png b/backend/static/maps/cce04ab0-c451-0133-1d17-0050569601ca-a.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/cce04ab0-c451-0133-1d17-0050569601ca-a.png and /dev/null differ
diff --git a/backend/static/maps/cd5cb330-c451-0133-1d17-0050569601ca-8.png b/backend/static/maps/cd5cb330-c451-0133-1d17-0050569601ca-8.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/cd5cb330-c451-0133-1d17-0050569601ca-8.png and /dev/null differ
diff --git a/backend/static/maps/cd65c694-4db4-48f1-98db-b895c20498be.png b/backend/static/maps/cd65c694-4db4-48f1-98db-b895c20498be.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/cd65c694-4db4-48f1-98db-b895c20498be.png and /dev/null differ
diff --git a/backend/static/maps/cdd2e45d29774f9b9648e64f4fa5d5b2_0.png b/backend/static/maps/cdd2e45d29774f9b9648e64f4fa5d5b2_0.png
deleted file mode 100644
index de5e1a7..0000000
Binary files a/backend/static/maps/cdd2e45d29774f9b9648e64f4fa5d5b2_0.png and /dev/null differ
diff --git a/backend/static/maps/cdfb2891288546e49291aa25acef4f54_0.png b/backend/static/maps/cdfb2891288546e49291aa25acef4f54_0.png
deleted file mode 100644
index 0318b01..0000000
Binary files a/backend/static/maps/cdfb2891288546e49291aa25acef4f54_0.png and /dev/null differ
diff --git a/backend/static/maps/ce069117-df5f-4fac-809f-d60663873216.png b/backend/static/maps/ce069117-df5f-4fac-809f-d60663873216.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/ce069117-df5f-4fac-809f-d60663873216.png and /dev/null differ
diff --git a/backend/static/maps/cfd9d93a-d0d7-4639-9859-6caf4cb871b9.png b/backend/static/maps/cfd9d93a-d0d7-4639-9859-6caf4cb871b9.png
deleted file mode 100644
index 3ec3965..0000000
Binary files a/backend/static/maps/cfd9d93a-d0d7-4639-9859-6caf4cb871b9.png and /dev/null differ
diff --git a/backend/static/maps/cnf7-yj5k.png b/backend/static/maps/cnf7-yj5k.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/cnf7-yj5k.png and /dev/null differ
diff --git a/backend/static/maps/cugir-007274.png b/backend/static/maps/cugir-007274.png
deleted file mode 100644
index fb0e26b..0000000
Binary files a/backend/static/maps/cugir-007274.png and /dev/null differ
diff --git a/backend/static/maps/cugir-007275.png b/backend/static/maps/cugir-007275.png
deleted file mode 100644
index a4b238a..0000000
Binary files a/backend/static/maps/cugir-007275.png and /dev/null differ
diff --git a/backend/static/maps/cugir-007276.png b/backend/static/maps/cugir-007276.png
deleted file mode 100644
index d3ffb5f..0000000
Binary files a/backend/static/maps/cugir-007276.png and /dev/null differ
diff --git a/backend/static/maps/cugir-007315.png b/backend/static/maps/cugir-007315.png
deleted file mode 100644
index 5a81df3..0000000
Binary files a/backend/static/maps/cugir-007315.png and /dev/null differ
diff --git a/backend/static/maps/cugir-007924.png b/backend/static/maps/cugir-007924.png
deleted file mode 100644
index f27304c..0000000
Binary files a/backend/static/maps/cugir-007924.png and /dev/null differ
diff --git a/backend/static/maps/cugir-008167.png b/backend/static/maps/cugir-008167.png
deleted file mode 100644
index 1992089..0000000
Binary files a/backend/static/maps/cugir-008167.png and /dev/null differ
diff --git a/backend/static/maps/cugir-008172.png b/backend/static/maps/cugir-008172.png
deleted file mode 100644
index 1992089..0000000
Binary files a/backend/static/maps/cugir-008172.png and /dev/null differ
diff --git a/backend/static/maps/cugir-008175.png b/backend/static/maps/cugir-008175.png
deleted file mode 100644
index 1992089..0000000
Binary files a/backend/static/maps/cugir-008175.png and /dev/null differ
diff --git a/backend/static/maps/cugir-008180.png b/backend/static/maps/cugir-008180.png
deleted file mode 100644
index 1992089..0000000
Binary files a/backend/static/maps/cugir-008180.png and /dev/null differ
diff --git a/backend/static/maps/cugir-008181.png b/backend/static/maps/cugir-008181.png
deleted file mode 100644
index 1992089..0000000
Binary files a/backend/static/maps/cugir-008181.png and /dev/null differ
diff --git a/backend/static/maps/cugir-008196.png b/backend/static/maps/cugir-008196.png
deleted file mode 100644
index 1992089..0000000
Binary files a/backend/static/maps/cugir-008196.png and /dev/null differ
diff --git a/backend/static/maps/cugir-008202.png b/backend/static/maps/cugir-008202.png
deleted file mode 100644
index 1992089..0000000
Binary files a/backend/static/maps/cugir-008202.png and /dev/null differ
diff --git a/backend/static/maps/cugir-008206.png b/backend/static/maps/cugir-008206.png
deleted file mode 100644
index 1992089..0000000
Binary files a/backend/static/maps/cugir-008206.png and /dev/null differ
diff --git a/backend/static/maps/cugir-collection-tiger-line-files.png b/backend/static/maps/cugir-collection-tiger-line-files.png
deleted file mode 100644
index 1992089..0000000
Binary files a/backend/static/maps/cugir-collection-tiger-line-files.png and /dev/null differ
diff --git a/backend/static/maps/d007feb9-7fba-4a34-bdde-81b76e28847c.png b/backend/static/maps/d007feb9-7fba-4a34-bdde-81b76e28847c.png
deleted file mode 100644
index a115e22..0000000
Binary files a/backend/static/maps/d007feb9-7fba-4a34-bdde-81b76e28847c.png and /dev/null differ
diff --git a/backend/static/maps/d0c9d021-fb8e-49c9-a941-b7c48f56c3fb.png b/backend/static/maps/d0c9d021-fb8e-49c9-a941-b7c48f56c3fb.png
deleted file mode 100644
index 4a3fce3..0000000
Binary files a/backend/static/maps/d0c9d021-fb8e-49c9-a941-b7c48f56c3fb.png and /dev/null differ
diff --git a/backend/static/maps/d0d778a1-0456-4372-83dd-3a854d628f46.png b/backend/static/maps/d0d778a1-0456-4372-83dd-3a854d628f46.png
deleted file mode 100644
index 314c84b..0000000
Binary files a/backend/static/maps/d0d778a1-0456-4372-83dd-3a854d628f46.png and /dev/null differ
diff --git a/backend/static/maps/d1d3ebaa-b176-4867-b5a0-2008433ee95a.png b/backend/static/maps/d1d3ebaa-b176-4867-b5a0-2008433ee95a.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/d1d3ebaa-b176-4867-b5a0-2008433ee95a.png and /dev/null differ
diff --git a/backend/static/maps/d2226729f8854ee4b8ac0445bd11e815_4.png b/backend/static/maps/d2226729f8854ee4b8ac0445bd11e815_4.png
deleted file mode 100644
index ce8526a..0000000
Binary files a/backend/static/maps/d2226729f8854ee4b8ac0445bd11e815_4.png and /dev/null differ
diff --git a/backend/static/maps/d2917fe8decd449ba99b009b7b32a7c7_0.png b/backend/static/maps/d2917fe8decd449ba99b009b7b32a7c7_0.png
deleted file mode 100644
index ec9fb20..0000000
Binary files a/backend/static/maps/d2917fe8decd449ba99b009b7b32a7c7_0.png and /dev/null differ
diff --git a/backend/static/maps/d2be2d35055448afbb902a0f81a71033_120.png b/backend/static/maps/d2be2d35055448afbb902a0f81a71033_120.png
deleted file mode 100644
index 65a00e9..0000000
Binary files a/backend/static/maps/d2be2d35055448afbb902a0f81a71033_120.png and /dev/null differ
diff --git a/backend/static/maps/d2c5c83124c4408c9da63581c5773341_12.png b/backend/static/maps/d2c5c83124c4408c9da63581c5773341_12.png
deleted file mode 100644
index 10f084e..0000000
Binary files a/backend/static/maps/d2c5c83124c4408c9da63581c5773341_12.png and /dev/null differ
diff --git a/backend/static/maps/d3310d0b-0cf3-40dd-90df-09e05eeb4331.png b/backend/static/maps/d3310d0b-0cf3-40dd-90df-09e05eeb4331.png
deleted file mode 100644
index 55b6fb3..0000000
Binary files a/backend/static/maps/d3310d0b-0cf3-40dd-90df-09e05eeb4331.png and /dev/null differ
diff --git a/backend/static/maps/d339fb5d-9188-4328-b1d9-b46aa5918ef7.png b/backend/static/maps/d339fb5d-9188-4328-b1d9-b46aa5918ef7.png
deleted file mode 100644
index 4aac9d5..0000000
Binary files a/backend/static/maps/d339fb5d-9188-4328-b1d9-b46aa5918ef7.png and /dev/null differ
diff --git a/backend/static/maps/d34c3ad4-9232-48cf-a0f3-fade698c2bbc.png b/backend/static/maps/d34c3ad4-9232-48cf-a0f3-fade698c2bbc.png
deleted file mode 100644
index c36e3ca..0000000
Binary files a/backend/static/maps/d34c3ad4-9232-48cf-a0f3-fade698c2bbc.png and /dev/null differ
diff --git a/backend/static/maps/d3b5adbe-c7fb-4642-86d7-9ed1ff69eb9e.png b/backend/static/maps/d3b5adbe-c7fb-4642-86d7-9ed1ff69eb9e.png
deleted file mode 100644
index 854187f..0000000
Binary files a/backend/static/maps/d3b5adbe-c7fb-4642-86d7-9ed1ff69eb9e.png and /dev/null differ
diff --git a/backend/static/maps/d3c54a3b0044434aa5065e8cbb9d2470_5.png b/backend/static/maps/d3c54a3b0044434aa5065e8cbb9d2470_5.png
deleted file mode 100644
index 4855866..0000000
Binary files a/backend/static/maps/d3c54a3b0044434aa5065e8cbb9d2470_5.png and /dev/null differ
diff --git a/backend/static/maps/d412f3b82d6f4290bb3694ba940155d4_0.png b/backend/static/maps/d412f3b82d6f4290bb3694ba940155d4_0.png
deleted file mode 100644
index 80b735d..0000000
Binary files a/backend/static/maps/d412f3b82d6f4290bb3694ba940155d4_0.png and /dev/null differ
diff --git a/backend/static/maps/d4486e7d59734f08ba1626fa7aeb3488_0.png b/backend/static/maps/d4486e7d59734f08ba1626fa7aeb3488_0.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/d4486e7d59734f08ba1626fa7aeb3488_0.png and /dev/null differ
diff --git a/backend/static/maps/d47cdf19c30b443096f5d94cf87b52d7.png b/backend/static/maps/d47cdf19c30b443096f5d94cf87b52d7.png
deleted file mode 100644
index 70bedc7..0000000
Binary files a/backend/static/maps/d47cdf19c30b443096f5d94cf87b52d7.png and /dev/null differ
diff --git a/backend/static/maps/d4a14353cef1405796a8c2e4a893db18_0.png b/backend/static/maps/d4a14353cef1405796a8c2e4a893db18_0.png
deleted file mode 100644
index 543af58..0000000
Binary files a/backend/static/maps/d4a14353cef1405796a8c2e4a893db18_0.png and /dev/null differ
diff --git a/backend/static/maps/d4dbb171-8ad6-4457-b24e-7c94e776e422.png b/backend/static/maps/d4dbb171-8ad6-4457-b24e-7c94e776e422.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/d4dbb171-8ad6-4457-b24e-7c94e776e422.png and /dev/null differ
diff --git a/backend/static/maps/d52c6a01a673495698e57da02d33d4fe_0.png b/backend/static/maps/d52c6a01a673495698e57da02d33d4fe_0.png
deleted file mode 100644
index 3a4a430..0000000
Binary files a/backend/static/maps/d52c6a01a673495698e57da02d33d4fe_0.png and /dev/null differ
diff --git a/backend/static/maps/d55820e1-2f8d-4128-b573-16e81c19b753.png b/backend/static/maps/d55820e1-2f8d-4128-b573-16e81c19b753.png
deleted file mode 100644
index 94a2d06..0000000
Binary files a/backend/static/maps/d55820e1-2f8d-4128-b573-16e81c19b753.png and /dev/null differ
diff --git a/backend/static/maps/d5785d95-15d2-48f2-be87-1ff8b8203f1a.png b/backend/static/maps/d5785d95-15d2-48f2-be87-1ff8b8203f1a.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/d5785d95-15d2-48f2-be87-1ff8b8203f1a.png and /dev/null differ
diff --git a/backend/static/maps/d589644b98d84c9ab5df4d976f4faeee.png b/backend/static/maps/d589644b98d84c9ab5df4d976f4faeee.png
deleted file mode 100644
index 1ceb159..0000000
Binary files a/backend/static/maps/d589644b98d84c9ab5df4d976f4faeee.png and /dev/null differ
diff --git a/backend/static/maps/d5e74045e4554a6dbd2f72385730a3a9_121.png b/backend/static/maps/d5e74045e4554a6dbd2f72385730a3a9_121.png
deleted file mode 100644
index 76f27c5..0000000
Binary files a/backend/static/maps/d5e74045e4554a6dbd2f72385730a3a9_121.png and /dev/null differ
diff --git a/backend/static/maps/d6c7ac7796a04fd0bc182c13f40f2afc_8.png b/backend/static/maps/d6c7ac7796a04fd0bc182c13f40f2afc_8.png
deleted file mode 100644
index 7569320..0000000
Binary files a/backend/static/maps/d6c7ac7796a04fd0bc182c13f40f2afc_8.png and /dev/null differ
diff --git a/backend/static/maps/d6fded6f8a714e0f8a1fe7aabba1735e_0.png b/backend/static/maps/d6fded6f8a714e0f8a1fe7aabba1735e_0.png
deleted file mode 100644
index 4ec2778..0000000
Binary files a/backend/static/maps/d6fded6f8a714e0f8a1fe7aabba1735e_0.png and /dev/null differ
diff --git a/backend/static/maps/d73135b8-62d2-4cee-8c6f-9c1ebf3ba735.png b/backend/static/maps/d73135b8-62d2-4cee-8c6f-9c1ebf3ba735.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/d73135b8-62d2-4cee-8c6f-9c1ebf3ba735.png and /dev/null differ
diff --git a/backend/static/maps/d75e310afae54c03b32a2a2699a2e5d7.png b/backend/static/maps/d75e310afae54c03b32a2a2699a2e5d7.png
deleted file mode 100644
index cf6ebbc..0000000
Binary files a/backend/static/maps/d75e310afae54c03b32a2a2699a2e5d7.png and /dev/null differ
diff --git a/backend/static/maps/d7b396b5-4961-4290-a82f-b91c6fbeb0b5.png b/backend/static/maps/d7b396b5-4961-4290-a82f-b91c6fbeb0b5.png
deleted file mode 100644
index 3589202..0000000
Binary files a/backend/static/maps/d7b396b5-4961-4290-a82f-b91c6fbeb0b5.png and /dev/null differ
diff --git a/backend/static/maps/d7cd017406e5493fb0cd9e2c01d01293_0.png b/backend/static/maps/d7cd017406e5493fb0cd9e2c01d01293_0.png
deleted file mode 100644
index 517b552..0000000
Binary files a/backend/static/maps/d7cd017406e5493fb0cd9e2c01d01293_0.png and /dev/null differ
diff --git a/backend/static/maps/d8167961-27b4-4e10-a296-28b9d6936802.png b/backend/static/maps/d8167961-27b4-4e10-a296-28b9d6936802.png
deleted file mode 100644
index cd15e66..0000000
Binary files a/backend/static/maps/d8167961-27b4-4e10-a296-28b9d6936802.png and /dev/null differ
diff --git a/backend/static/maps/d89dff62-6c80-4aeb-9f65-1bb0f836556c.png b/backend/static/maps/d89dff62-6c80-4aeb-9f65-1bb0f836556c.png
deleted file mode 100644
index fb71215..0000000
Binary files a/backend/static/maps/d89dff62-6c80-4aeb-9f65-1bb0f836556c.png and /dev/null differ
diff --git a/backend/static/maps/d99579f8-1778-4b5d-9778-7d191614f3a4.png b/backend/static/maps/d99579f8-1778-4b5d-9778-7d191614f3a4.png
deleted file mode 100644
index 1471eea..0000000
Binary files a/backend/static/maps/d99579f8-1778-4b5d-9778-7d191614f3a4.png and /dev/null differ
diff --git a/backend/static/maps/d9cca08c27bb476d9f25f7dbbc59dd6f.png b/backend/static/maps/d9cca08c27bb476d9f25f7dbbc59dd6f.png
deleted file mode 100644
index 9cf5964..0000000
Binary files a/backend/static/maps/d9cca08c27bb476d9f25f7dbbc59dd6f.png and /dev/null differ
diff --git a/backend/static/maps/da0f4294-57ea-473d-98b8-315f1135f793.png b/backend/static/maps/da0f4294-57ea-473d-98b8-315f1135f793.png
deleted file mode 100644
index 8c6c4dc..0000000
Binary files a/backend/static/maps/da0f4294-57ea-473d-98b8-315f1135f793.png and /dev/null differ
diff --git a/backend/static/maps/dab215e7-32c4-43c9-8c4f-72bc6f658239.png b/backend/static/maps/dab215e7-32c4-43c9-8c4f-72bc6f658239.png
deleted file mode 100644
index 314c84b..0000000
Binary files a/backend/static/maps/dab215e7-32c4-43c9-8c4f-72bc6f658239.png and /dev/null differ
diff --git a/backend/static/maps/dae79ddcc012456db9f1c825375bd7e4_0.png b/backend/static/maps/dae79ddcc012456db9f1c825375bd7e4_0.png
deleted file mode 100644
index 52b927a..0000000
Binary files a/backend/static/maps/dae79ddcc012456db9f1c825375bd7e4_0.png and /dev/null differ
diff --git a/backend/static/maps/dafaf953-097b-42ca-ae1c-47ba0d11a907.png b/backend/static/maps/dafaf953-097b-42ca-ae1c-47ba0d11a907.png
deleted file mode 100644
index b45375e..0000000
Binary files a/backend/static/maps/dafaf953-097b-42ca-ae1c-47ba0d11a907.png and /dev/null differ
diff --git a/backend/static/maps/daffdfe4-f3d8-4d22-80ba-6335471fd793.png b/backend/static/maps/daffdfe4-f3d8-4d22-80ba-6335471fd793.png
deleted file mode 100644
index 8c6c4dc..0000000
Binary files a/backend/static/maps/daffdfe4-f3d8-4d22-80ba-6335471fd793.png and /dev/null differ
diff --git a/backend/static/maps/dba96c24-0454-47d6-9e1b-20cc44f9ba0f.png b/backend/static/maps/dba96c24-0454-47d6-9e1b-20cc44f9ba0f.png
deleted file mode 100644
index 332003c..0000000
Binary files a/backend/static/maps/dba96c24-0454-47d6-9e1b-20cc44f9ba0f.png and /dev/null differ
diff --git a/backend/static/maps/dc105e28f0e3488ea9d63fb84ce4f9cd_9.png b/backend/static/maps/dc105e28f0e3488ea9d63fb84ce4f9cd_9.png
deleted file mode 100644
index 6be17d5..0000000
Binary files a/backend/static/maps/dc105e28f0e3488ea9d63fb84ce4f9cd_9.png and /dev/null differ
diff --git a/backend/static/maps/dc71f28326644345aaf482f986ed395c_0.png b/backend/static/maps/dc71f28326644345aaf482f986ed395c_0.png
deleted file mode 100644
index 0df6625..0000000
Binary files a/backend/static/maps/dc71f28326644345aaf482f986ed395c_0.png and /dev/null differ
diff --git a/backend/static/maps/dcb094cb1c59412f938d587237266de4_0.png b/backend/static/maps/dcb094cb1c59412f938d587237266de4_0.png
deleted file mode 100644
index a4bb8d6..0000000
Binary files a/backend/static/maps/dcb094cb1c59412f938d587237266de4_0.png and /dev/null differ
diff --git a/backend/static/maps/dd1a85e0-dcf6-48f1-bbfb-63dc2f3c244f.png b/backend/static/maps/dd1a85e0-dcf6-48f1-bbfb-63dc2f3c244f.png
deleted file mode 100644
index 1a045d5..0000000
Binary files a/backend/static/maps/dd1a85e0-dcf6-48f1-bbfb-63dc2f3c244f.png and /dev/null differ
diff --git a/backend/static/maps/dd27616e-4b21-491e-ad44-e875cfc30359.png b/backend/static/maps/dd27616e-4b21-491e-ad44-e875cfc30359.png
deleted file mode 100644
index 55727b7..0000000
Binary files a/backend/static/maps/dd27616e-4b21-491e-ad44-e875cfc30359.png and /dev/null differ
diff --git a/backend/static/maps/de8488f2-478e-40a9-854a-0393725fa5ab.png b/backend/static/maps/de8488f2-478e-40a9-854a-0393725fa5ab.png
deleted file mode 100644
index 7ee123b..0000000
Binary files a/backend/static/maps/de8488f2-478e-40a9-854a-0393725fa5ab.png and /dev/null differ
diff --git a/backend/static/maps/debac0d4-b555-49a3-8df3-600dd5befaf5.png b/backend/static/maps/debac0d4-b555-49a3-8df3-600dd5befaf5.png
deleted file mode 100644
index 5284e6b..0000000
Binary files a/backend/static/maps/debac0d4-b555-49a3-8df3-600dd5befaf5.png and /dev/null differ
diff --git a/backend/static/maps/dedee0d6-1310-4619-9354-dbdd52089348.png b/backend/static/maps/dedee0d6-1310-4619-9354-dbdd52089348.png
deleted file mode 100644
index 3a40bd5..0000000
Binary files a/backend/static/maps/dedee0d6-1310-4619-9354-dbdd52089348.png and /dev/null differ
diff --git a/backend/static/maps/df42a260342f443394c4380e6b1aec5b_0.png b/backend/static/maps/df42a260342f443394c4380e6b1aec5b_0.png
deleted file mode 100644
index bed9783..0000000
Binary files a/backend/static/maps/df42a260342f443394c4380e6b1aec5b_0.png and /dev/null differ
diff --git a/backend/static/maps/df54cd61-3270-4e4f-95d2-bd4f2a21505d.png b/backend/static/maps/df54cd61-3270-4e4f-95d2-bd4f2a21505d.png
deleted file mode 100644
index 4decb8a..0000000
Binary files a/backend/static/maps/df54cd61-3270-4e4f-95d2-bd4f2a21505d.png and /dev/null differ
diff --git a/backend/static/maps/df73f6d3533d46419b0b2b6e3df7954f_0.png b/backend/static/maps/df73f6d3533d46419b0b2b6e3df7954f_0.png
deleted file mode 100644
index 696a49e..0000000
Binary files a/backend/static/maps/df73f6d3533d46419b0b2b6e3df7954f_0.png and /dev/null differ
diff --git a/backend/static/maps/df76bdded0a743bcaa8e7c208b3a1e02_7.png b/backend/static/maps/df76bdded0a743bcaa8e7c208b3a1e02_7.png
deleted file mode 100644
index e30489a..0000000
Binary files a/backend/static/maps/df76bdded0a743bcaa8e7c208b3a1e02_7.png and /dev/null differ
diff --git a/backend/static/maps/df827f607eb347d49a6cca071ce66d5e_11.png b/backend/static/maps/df827f607eb347d49a6cca071ce66d5e_11.png
deleted file mode 100644
index c584233..0000000
Binary files a/backend/static/maps/df827f607eb347d49a6cca071ce66d5e_11.png and /dev/null differ
diff --git a/backend/static/maps/df8b2b46-9267-4bb1-a3e2-b9f48c95386e.png b/backend/static/maps/df8b2b46-9267-4bb1-a3e2-b9f48c95386e.png
deleted file mode 100644
index 9727266..0000000
Binary files a/backend/static/maps/df8b2b46-9267-4bb1-a3e2-b9f48c95386e.png and /dev/null differ
diff --git a/backend/static/maps/di8g-4wjz.png b/backend/static/maps/di8g-4wjz.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/di8g-4wjz.png and /dev/null differ
diff --git a/backend/static/maps/e00ad753f20248bcaad14fa5adb4f24f_21.png b/backend/static/maps/e00ad753f20248bcaad14fa5adb4f24f_21.png
deleted file mode 100644
index 8d38245..0000000
Binary files a/backend/static/maps/e00ad753f20248bcaad14fa5adb4f24f_21.png and /dev/null differ
diff --git a/backend/static/maps/e0347c9a-f2aa-4055-bead-1f1e05904eff.png b/backend/static/maps/e0347c9a-f2aa-4055-bead-1f1e05904eff.png
deleted file mode 100644
index bba1517..0000000
Binary files a/backend/static/maps/e0347c9a-f2aa-4055-bead-1f1e05904eff.png and /dev/null differ
diff --git a/backend/static/maps/e041c7012bf64aaa98f4fd18cb74cced_2.png b/backend/static/maps/e041c7012bf64aaa98f4fd18cb74cced_2.png
deleted file mode 100644
index 91197fa..0000000
Binary files a/backend/static/maps/e041c7012bf64aaa98f4fd18cb74cced_2.png and /dev/null differ
diff --git a/backend/static/maps/e0aa219fd6034d7393d76d4490663986_2.png b/backend/static/maps/e0aa219fd6034d7393d76d4490663986_2.png
deleted file mode 100644
index d72d47a..0000000
Binary files a/backend/static/maps/e0aa219fd6034d7393d76d4490663986_2.png and /dev/null differ
diff --git a/backend/static/maps/e1f722e5-95b8-4c95-9300-c8729280c443.png b/backend/static/maps/e1f722e5-95b8-4c95-9300-c8729280c443.png
deleted file mode 100644
index cdd08da..0000000
Binary files a/backend/static/maps/e1f722e5-95b8-4c95-9300-c8729280c443.png and /dev/null differ
diff --git a/backend/static/maps/e2c8c825-66fd-46b6-a276-e3b9fd1c2d7e.png b/backend/static/maps/e2c8c825-66fd-46b6-a276-e3b9fd1c2d7e.png
deleted file mode 100644
index b3a9989..0000000
Binary files a/backend/static/maps/e2c8c825-66fd-46b6-a276-e3b9fd1c2d7e.png and /dev/null differ
diff --git a/backend/static/maps/e2d5f1e9-da48-4855-a1af-64be71b3f6ec.png b/backend/static/maps/e2d5f1e9-da48-4855-a1af-64be71b3f6ec.png
deleted file mode 100644
index 8b454ad..0000000
Binary files a/backend/static/maps/e2d5f1e9-da48-4855-a1af-64be71b3f6ec.png and /dev/null differ
diff --git a/backend/static/maps/e35d73ef-c88a-46d6-8360-396679e2c100.png b/backend/static/maps/e35d73ef-c88a-46d6-8360-396679e2c100.png
deleted file mode 100644
index cae5bdf..0000000
Binary files a/backend/static/maps/e35d73ef-c88a-46d6-8360-396679e2c100.png and /dev/null differ
diff --git a/backend/static/maps/e38905ff-cc78-4c78-a9e7-3f2c8a90fb2c.png b/backend/static/maps/e38905ff-cc78-4c78-a9e7-3f2c8a90fb2c.png
deleted file mode 100644
index 7b5120d..0000000
Binary files a/backend/static/maps/e38905ff-cc78-4c78-a9e7-3f2c8a90fb2c.png and /dev/null differ
diff --git a/backend/static/maps/e39608ca2a2f409daa874d8f35092c5b_0.png b/backend/static/maps/e39608ca2a2f409daa874d8f35092c5b_0.png
deleted file mode 100644
index e617b3a..0000000
Binary files a/backend/static/maps/e39608ca2a2f409daa874d8f35092c5b_0.png and /dev/null differ
diff --git a/backend/static/maps/e460eab5-5b86-4e4f-9d03-66ac954f6502.png b/backend/static/maps/e460eab5-5b86-4e4f-9d03-66ac954f6502.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/e460eab5-5b86-4e4f-9d03-66ac954f6502.png and /dev/null differ
diff --git a/backend/static/maps/e57238e0-d177-43fa-b8cd-5818c2da0cbf.png b/backend/static/maps/e57238e0-d177-43fa-b8cd-5818c2da0cbf.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/e57238e0-d177-43fa-b8cd-5818c2da0cbf.png and /dev/null differ
diff --git a/backend/static/maps/e5d4c9fd-11df-41c6-9d88-7d4499dcc396.png b/backend/static/maps/e5d4c9fd-11df-41c6-9d88-7d4499dcc396.png
deleted file mode 100644
index 6049aa1..0000000
Binary files a/backend/static/maps/e5d4c9fd-11df-41c6-9d88-7d4499dcc396.png and /dev/null differ
diff --git a/backend/static/maps/e60094b7-ef8e-4a22-a538-80a0305bb7cf.png b/backend/static/maps/e60094b7-ef8e-4a22-a538-80a0305bb7cf.png
deleted file mode 100644
index 664e57d..0000000
Binary files a/backend/static/maps/e60094b7-ef8e-4a22-a538-80a0305bb7cf.png and /dev/null differ
diff --git a/backend/static/maps/e6aed5d6-788a-4ae3-9343-8cc9b5ef9cd8.png b/backend/static/maps/e6aed5d6-788a-4ae3-9343-8cc9b5ef9cd8.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/e6aed5d6-788a-4ae3-9343-8cc9b5ef9cd8.png and /dev/null differ
diff --git a/backend/static/maps/e6c6e681727c4c46935ead5a9f8b56f5_0.png b/backend/static/maps/e6c6e681727c4c46935ead5a9f8b56f5_0.png
deleted file mode 100644
index 110a9ab..0000000
Binary files a/backend/static/maps/e6c6e681727c4c46935ead5a9f8b56f5_0.png and /dev/null differ
diff --git a/backend/static/maps/e72f70b80613473399d9fa689169d3f9_4.png b/backend/static/maps/e72f70b80613473399d9fa689169d3f9_4.png
deleted file mode 100644
index 7b70646..0000000
Binary files a/backend/static/maps/e72f70b80613473399d9fa689169d3f9_4.png and /dev/null differ
diff --git a/backend/static/maps/e73ca2b3f1f84c0c97a767a15404d58a_3.png b/backend/static/maps/e73ca2b3f1f84c0c97a767a15404d58a_3.png
deleted file mode 100644
index 3843a59..0000000
Binary files a/backend/static/maps/e73ca2b3f1f84c0c97a767a15404d58a_3.png and /dev/null differ
diff --git a/backend/static/maps/e78c7401-dd3e-4684-8fa2-da2a59735163.png b/backend/static/maps/e78c7401-dd3e-4684-8fa2-da2a59735163.png
deleted file mode 100644
index 32438e9..0000000
Binary files a/backend/static/maps/e78c7401-dd3e-4684-8fa2-da2a59735163.png and /dev/null differ
diff --git a/backend/static/maps/e8ecb2cb13bc49bf98c91b93306cdb37_1.png b/backend/static/maps/e8ecb2cb13bc49bf98c91b93306cdb37_1.png
deleted file mode 100644
index d72d47a..0000000
Binary files a/backend/static/maps/e8ecb2cb13bc49bf98c91b93306cdb37_1.png and /dev/null differ
diff --git a/backend/static/maps/e8fbcd94-fdeb-4ec5-8c32-2060ee178f78.png b/backend/static/maps/e8fbcd94-fdeb-4ec5-8c32-2060ee178f78.png
deleted file mode 100644
index 7986b37..0000000
Binary files a/backend/static/maps/e8fbcd94-fdeb-4ec5-8c32-2060ee178f78.png and /dev/null differ
diff --git a/backend/static/maps/e92cb1b1-d3d4-4b30-8b0f-02736e547c74.png b/backend/static/maps/e92cb1b1-d3d4-4b30-8b0f-02736e547c74.png
deleted file mode 100644
index 7225dc8..0000000
Binary files a/backend/static/maps/e92cb1b1-d3d4-4b30-8b0f-02736e547c74.png and /dev/null differ
diff --git a/backend/static/maps/e95ef4f73bd64ea7bf3af390db0539f7_0.png b/backend/static/maps/e95ef4f73bd64ea7bf3af390db0539f7_0.png
deleted file mode 100644
index 0ac3157..0000000
Binary files a/backend/static/maps/e95ef4f73bd64ea7bf3af390db0539f7_0.png and /dev/null differ
diff --git a/backend/static/maps/e9a9ca35-fec4-4802-bf51-b6d0fbd740b6.png b/backend/static/maps/e9a9ca35-fec4-4802-bf51-b6d0fbd740b6.png
deleted file mode 100644
index 51d7d9d..0000000
Binary files a/backend/static/maps/e9a9ca35-fec4-4802-bf51-b6d0fbd740b6.png and /dev/null differ
diff --git a/backend/static/maps/ea0561bb00a94ba8b286a736464ee326_0.png b/backend/static/maps/ea0561bb00a94ba8b286a736464ee326_0.png
deleted file mode 100644
index 10f864e..0000000
Binary files a/backend/static/maps/ea0561bb00a94ba8b286a736464ee326_0.png and /dev/null differ
diff --git a/backend/static/maps/eadb23c857394fc99b8cbdb04fa4d0c8_0.png b/backend/static/maps/eadb23c857394fc99b8cbdb04fa4d0c8_0.png
deleted file mode 100644
index 6d15613..0000000
Binary files a/backend/static/maps/eadb23c857394fc99b8cbdb04fa4d0c8_0.png and /dev/null differ
diff --git a/backend/static/maps/eaf95aa2-749a-46d2-bc60-a4ae0ef041e3.png b/backend/static/maps/eaf95aa2-749a-46d2-bc60-a4ae0ef041e3.png
deleted file mode 100644
index 910e868..0000000
Binary files a/backend/static/maps/eaf95aa2-749a-46d2-bc60-a4ae0ef041e3.png and /dev/null differ
diff --git a/backend/static/maps/eb57b69b-c8a5-47c1-8145-fd2f3b60e433.png b/backend/static/maps/eb57b69b-c8a5-47c1-8145-fd2f3b60e433.png
deleted file mode 100644
index 72a3e3c..0000000
Binary files a/backend/static/maps/eb57b69b-c8a5-47c1-8145-fd2f3b60e433.png and /dev/null differ
diff --git a/backend/static/maps/eb5e6ae8-0d84-4e95-991c-ab476886cc57.png b/backend/static/maps/eb5e6ae8-0d84-4e95-991c-ab476886cc57.png
deleted file mode 100644
index d69ab02..0000000
Binary files a/backend/static/maps/eb5e6ae8-0d84-4e95-991c-ab476886cc57.png and /dev/null differ
diff --git a/backend/static/maps/eb7fb68db05047558c7ec6afc483d630_4.png b/backend/static/maps/eb7fb68db05047558c7ec6afc483d630_4.png
deleted file mode 100644
index 288dc08..0000000
Binary files a/backend/static/maps/eb7fb68db05047558c7ec6afc483d630_4.png and /dev/null differ
diff --git a/backend/static/maps/eb8e673a-27a3-4f65-bccd-2d748ba53535.png b/backend/static/maps/eb8e673a-27a3-4f65-bccd-2d748ba53535.png
deleted file mode 100644
index fe86f97..0000000
Binary files a/backend/static/maps/eb8e673a-27a3-4f65-bccd-2d748ba53535.png and /dev/null differ
diff --git a/backend/static/maps/ebffe52ede7c417395e562db037f0322_2.png b/backend/static/maps/ebffe52ede7c417395e562db037f0322_2.png
deleted file mode 100644
index 23640da..0000000
Binary files a/backend/static/maps/ebffe52ede7c417395e562db037f0322_2.png and /dev/null differ
diff --git a/backend/static/maps/ec0c19db-a5c4-4995-b690-600d26279863.png b/backend/static/maps/ec0c19db-a5c4-4995-b690-600d26279863.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/ec0c19db-a5c4-4995-b690-600d26279863.png and /dev/null differ
diff --git a/backend/static/maps/eca44c33fc5744478e285d957f9c5a0d_0.png b/backend/static/maps/eca44c33fc5744478e285d957f9c5a0d_0.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/eca44c33fc5744478e285d957f9c5a0d_0.png and /dev/null differ
diff --git a/backend/static/maps/ecbc5d77-7e36-41c0-85f7-7eb7126fa5df.png b/backend/static/maps/ecbc5d77-7e36-41c0-85f7-7eb7126fa5df.png
deleted file mode 100644
index 81f573a..0000000
Binary files a/backend/static/maps/ecbc5d77-7e36-41c0-85f7-7eb7126fa5df.png and /dev/null differ
diff --git a/backend/static/maps/ecc54628e60546aebb921d68ba4750e8_1.png b/backend/static/maps/ecc54628e60546aebb921d68ba4750e8_1.png
deleted file mode 100644
index 40424b2..0000000
Binary files a/backend/static/maps/ecc54628e60546aebb921d68ba4750e8_1.png and /dev/null differ
diff --git a/backend/static/maps/ecca2b90-d7d3-0137-6f52-02d0d7bfd6e4-2.png b/backend/static/maps/ecca2b90-d7d3-0137-6f52-02d0d7bfd6e4-2.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/ecca2b90-d7d3-0137-6f52-02d0d7bfd6e4-2.png and /dev/null differ
diff --git a/backend/static/maps/ed9543e425284aa79c27f68bfebf90bc_0.png b/backend/static/maps/ed9543e425284aa79c27f68bfebf90bc_0.png
deleted file mode 100644
index 8e6c5d8..0000000
Binary files a/backend/static/maps/ed9543e425284aa79c27f68bfebf90bc_0.png and /dev/null differ
diff --git a/backend/static/maps/ef06baf7155849ba804852ed8f3844d4_0.png b/backend/static/maps/ef06baf7155849ba804852ed8f3844d4_0.png
deleted file mode 100644
index 25891f0..0000000
Binary files a/backend/static/maps/ef06baf7155849ba804852ed8f3844d4_0.png and /dev/null differ
diff --git a/backend/static/maps/ef940b35-ffe2-4d28-8c21-be5b39519b2f.png b/backend/static/maps/ef940b35-ffe2-4d28-8c21-be5b39519b2f.png
deleted file mode 100644
index d69ab02..0000000
Binary files a/backend/static/maps/ef940b35-ffe2-4d28-8c21-be5b39519b2f.png and /dev/null differ
diff --git a/backend/static/maps/efe1c85829524b8895412b7faf17e90e_0.png b/backend/static/maps/efe1c85829524b8895412b7faf17e90e_0.png
deleted file mode 100644
index b60d8e7..0000000
Binary files a/backend/static/maps/efe1c85829524b8895412b7faf17e90e_0.png and /dev/null differ
diff --git a/backend/static/maps/efe1c85829524b8895412b7faf17e90e_1.png b/backend/static/maps/efe1c85829524b8895412b7faf17e90e_1.png
deleted file mode 100644
index b60d8e7..0000000
Binary files a/backend/static/maps/efe1c85829524b8895412b7faf17e90e_1.png and /dev/null differ
diff --git a/backend/static/maps/eff17801-5f6f-40e7-8b2e-4a867d4c8588.png b/backend/static/maps/eff17801-5f6f-40e7-8b2e-4a867d4c8588.png
deleted file mode 100644
index 9868957..0000000
Binary files a/backend/static/maps/eff17801-5f6f-40e7-8b2e-4a867d4c8588.png and /dev/null differ
diff --git a/backend/static/maps/eff2c420c9664292b0cb25024483c3ea_156.png b/backend/static/maps/eff2c420c9664292b0cb25024483c3ea_156.png
deleted file mode 100644
index 199c857..0000000
Binary files a/backend/static/maps/eff2c420c9664292b0cb25024483c3ea_156.png and /dev/null differ
diff --git a/backend/static/maps/ehih-tkar.png b/backend/static/maps/ehih-tkar.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/ehih-tkar.png and /dev/null differ
diff --git a/backend/static/maps/f08f9a8d-f880-4788-bc23-56cf1abf28a0.png b/backend/static/maps/f08f9a8d-f880-4788-bc23-56cf1abf28a0.png
deleted file mode 100644
index 79228f6..0000000
Binary files a/backend/static/maps/f08f9a8d-f880-4788-bc23-56cf1abf28a0.png and /dev/null differ
diff --git a/backend/static/maps/f0a3856a-f864-4e9b-abfd-67e6f5421f90.png b/backend/static/maps/f0a3856a-f864-4e9b-abfd-67e6f5421f90.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/f0a3856a-f864-4e9b-abfd-67e6f5421f90.png and /dev/null differ
diff --git a/backend/static/maps/f1261fde-e7f7-4e28-b998-6b04a7961e3c.png b/backend/static/maps/f1261fde-e7f7-4e28-b998-6b04a7961e3c.png
deleted file mode 100644
index f37e714..0000000
Binary files a/backend/static/maps/f1261fde-e7f7-4e28-b998-6b04a7961e3c.png and /dev/null differ
diff --git a/backend/static/maps/f146a8db343044a68dc1dfbff06f5605_0.png b/backend/static/maps/f146a8db343044a68dc1dfbff06f5605_0.png
deleted file mode 100644
index a6252e2..0000000
Binary files a/backend/static/maps/f146a8db343044a68dc1dfbff06f5605_0.png and /dev/null differ
diff --git a/backend/static/maps/f1bebbe1eacd47bc8fdce90fa8ea9117_11.png b/backend/static/maps/f1bebbe1eacd47bc8fdce90fa8ea9117_11.png
deleted file mode 100644
index 697539e..0000000
Binary files a/backend/static/maps/f1bebbe1eacd47bc8fdce90fa8ea9117_11.png and /dev/null differ
diff --git a/backend/static/maps/f1e7d4ef-9614-48c6-a3a5-7ef5ed10fc28.png b/backend/static/maps/f1e7d4ef-9614-48c6-a3a5-7ef5ed10fc28.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/f1e7d4ef-9614-48c6-a3a5-7ef5ed10fc28.png and /dev/null differ
diff --git a/backend/static/maps/f2122360bfd741f09142ca9cf5de2e6f_21.png b/backend/static/maps/f2122360bfd741f09142ca9cf5de2e6f_21.png
deleted file mode 100644
index 1a86ccd..0000000
Binary files a/backend/static/maps/f2122360bfd741f09142ca9cf5de2e6f_21.png and /dev/null differ
diff --git a/backend/static/maps/f25b8ced-73b3-4625-82a3-1a0d8ce3bcd2.png b/backend/static/maps/f25b8ced-73b3-4625-82a3-1a0d8ce3bcd2.png
deleted file mode 100644
index 72a3e3c..0000000
Binary files a/backend/static/maps/f25b8ced-73b3-4625-82a3-1a0d8ce3bcd2.png and /dev/null differ
diff --git a/backend/static/maps/f30143d31e654e6ca7415d9acbcc2adf_0.png b/backend/static/maps/f30143d31e654e6ca7415d9acbcc2adf_0.png
deleted file mode 100644
index 93e329d..0000000
Binary files a/backend/static/maps/f30143d31e654e6ca7415d9acbcc2adf_0.png and /dev/null differ
diff --git a/backend/static/maps/f30143d31e654e6ca7415d9acbcc2adf_1.png b/backend/static/maps/f30143d31e654e6ca7415d9acbcc2adf_1.png
deleted file mode 100644
index 93e329d..0000000
Binary files a/backend/static/maps/f30143d31e654e6ca7415d9acbcc2adf_1.png and /dev/null differ
diff --git a/backend/static/maps/f30143d31e654e6ca7415d9acbcc2adf_2.png b/backend/static/maps/f30143d31e654e6ca7415d9acbcc2adf_2.png
deleted file mode 100644
index 93e329d..0000000
Binary files a/backend/static/maps/f30143d31e654e6ca7415d9acbcc2adf_2.png and /dev/null differ
diff --git a/backend/static/maps/f3084270-85ca-483d-87f6-01ad3d5c56a8.png b/backend/static/maps/f3084270-85ca-483d-87f6-01ad3d5c56a8.png
deleted file mode 100644
index 2f7a1b0..0000000
Binary files a/backend/static/maps/f3084270-85ca-483d-87f6-01ad3d5c56a8.png and /dev/null differ
diff --git a/backend/static/maps/f31b300aed104681823bdbdc261b9926_0.png b/backend/static/maps/f31b300aed104681823bdbdc261b9926_0.png
deleted file mode 100644
index e9c733d..0000000
Binary files a/backend/static/maps/f31b300aed104681823bdbdc261b9926_0.png and /dev/null differ
diff --git a/backend/static/maps/f367f750c4db4c92be41376ca83b9541_1.png b/backend/static/maps/f367f750c4db4c92be41376ca83b9541_1.png
deleted file mode 100644
index 5409acc..0000000
Binary files a/backend/static/maps/f367f750c4db4c92be41376ca83b9541_1.png and /dev/null differ
diff --git a/backend/static/maps/f468b878-9b9b-4a85-8b38-19d025f960af.png b/backend/static/maps/f468b878-9b9b-4a85-8b38-19d025f960af.png
deleted file mode 100644
index db230f0..0000000
Binary files a/backend/static/maps/f468b878-9b9b-4a85-8b38-19d025f960af.png and /dev/null differ
diff --git a/backend/static/maps/f4a77aa55fb94cd2b1c57f2badee16ea_0.png b/backend/static/maps/f4a77aa55fb94cd2b1c57f2badee16ea_0.png
deleted file mode 100644
index e815bf8..0000000
Binary files a/backend/static/maps/f4a77aa55fb94cd2b1c57f2badee16ea_0.png and /dev/null differ
diff --git a/backend/static/maps/f50df14f-d9ea-45ea-8cd5-8a9a58872c1a.png b/backend/static/maps/f50df14f-d9ea-45ea-8cd5-8a9a58872c1a.png
deleted file mode 100644
index bc21a0f..0000000
Binary files a/backend/static/maps/f50df14f-d9ea-45ea-8cd5-8a9a58872c1a.png and /dev/null differ
diff --git a/backend/static/maps/f52c0250-4c61-0134-1dad-0050569601ca-2.png b/backend/static/maps/f52c0250-4c61-0134-1dad-0050569601ca-2.png
deleted file mode 100644
index 5b7fb47..0000000
Binary files a/backend/static/maps/f52c0250-4c61-0134-1dad-0050569601ca-2.png and /dev/null differ
diff --git a/backend/static/maps/f56dfea7857046b9bcba1dc688e53da1_0.png b/backend/static/maps/f56dfea7857046b9bcba1dc688e53da1_0.png
deleted file mode 100644
index 3c034ce..0000000
Binary files a/backend/static/maps/f56dfea7857046b9bcba1dc688e53da1_0.png and /dev/null differ
diff --git a/backend/static/maps/f5eba38f-794b-417a-86a2-20518d548473.png b/backend/static/maps/f5eba38f-794b-417a-86a2-20518d548473.png
deleted file mode 100644
index a95089d..0000000
Binary files a/backend/static/maps/f5eba38f-794b-417a-86a2-20518d548473.png and /dev/null differ
diff --git a/backend/static/maps/f5f0648e-f085-4c85-8242-26bf6c942f40.png b/backend/static/maps/f5f0648e-f085-4c85-8242-26bf6c942f40.png
deleted file mode 100644
index b3a9989..0000000
Binary files a/backend/static/maps/f5f0648e-f085-4c85-8242-26bf6c942f40.png and /dev/null differ
diff --git a/backend/static/maps/f7ca736a-1c26-467f-9ae5-2e1839681536.png b/backend/static/maps/f7ca736a-1c26-467f-9ae5-2e1839681536.png
deleted file mode 100644
index 332003c..0000000
Binary files a/backend/static/maps/f7ca736a-1c26-467f-9ae5-2e1839681536.png and /dev/null differ
diff --git a/backend/static/maps/f800c5d3-40de-4d62-8cdf-7b2d76798159.png b/backend/static/maps/f800c5d3-40de-4d62-8cdf-7b2d76798159.png
deleted file mode 100644
index 7639e41..0000000
Binary files a/backend/static/maps/f800c5d3-40de-4d62-8cdf-7b2d76798159.png and /dev/null differ
diff --git a/backend/static/maps/f8645cc1-8699-4cda-bc77-1b9a87616e4f.png b/backend/static/maps/f8645cc1-8699-4cda-bc77-1b9a87616e4f.png
deleted file mode 100644
index 29ba567..0000000
Binary files a/backend/static/maps/f8645cc1-8699-4cda-bc77-1b9a87616e4f.png and /dev/null differ
diff --git a/backend/static/maps/f91318f1cc43489fb0e7aca2fde22899_0.png b/backend/static/maps/f91318f1cc43489fb0e7aca2fde22899_0.png
deleted file mode 100644
index a8c7f80..0000000
Binary files a/backend/static/maps/f91318f1cc43489fb0e7aca2fde22899_0.png and /dev/null differ
diff --git a/backend/static/maps/f9b09dd4-077e-47fa-b924-01a0261c8606.png b/backend/static/maps/f9b09dd4-077e-47fa-b924-01a0261c8606.png
deleted file mode 100644
index 7b09d17..0000000
Binary files a/backend/static/maps/f9b09dd4-077e-47fa-b924-01a0261c8606.png and /dev/null differ
diff --git a/backend/static/maps/fa64a1b2-1c06-416b-90c5-6453d01dee97.png b/backend/static/maps/fa64a1b2-1c06-416b-90c5-6453d01dee97.png
deleted file mode 100644
index 8c6c4dc..0000000
Binary files a/backend/static/maps/fa64a1b2-1c06-416b-90c5-6453d01dee97.png and /dev/null differ
diff --git a/backend/static/maps/fb2a540cd8af42c3aead9bd01bfb0072_0.png b/backend/static/maps/fb2a540cd8af42c3aead9bd01bfb0072_0.png
deleted file mode 100644
index 9aa7261..0000000
Binary files a/backend/static/maps/fb2a540cd8af42c3aead9bd01bfb0072_0.png and /dev/null differ
diff --git a/backend/static/maps/fb5cea44162b4aa9876db7e80bac05d2_8.png b/backend/static/maps/fb5cea44162b4aa9876db7e80bac05d2_8.png
deleted file mode 100644
index bd88f74..0000000
Binary files a/backend/static/maps/fb5cea44162b4aa9876db7e80bac05d2_8.png and /dev/null differ
diff --git a/backend/static/maps/fb6f2e2d-8cca-4e11-9a5a-0a8cce3d3695.png b/backend/static/maps/fb6f2e2d-8cca-4e11-9a5a-0a8cce3d3695.png
deleted file mode 100644
index e797ab8..0000000
Binary files a/backend/static/maps/fb6f2e2d-8cca-4e11-9a5a-0a8cce3d3695.png and /dev/null differ
diff --git a/backend/static/maps/fb77dd5a-cf29-403e-a68d-c52fe6366046.png b/backend/static/maps/fb77dd5a-cf29-403e-a68d-c52fe6366046.png
deleted file mode 100644
index 51d7d9d..0000000
Binary files a/backend/static/maps/fb77dd5a-cf29-403e-a68d-c52fe6366046.png and /dev/null differ
diff --git a/backend/static/maps/fb9122af409e46e7b09967c33cf48b31_14.png b/backend/static/maps/fb9122af409e46e7b09967c33cf48b31_14.png
deleted file mode 100644
index 3eb56ed..0000000
Binary files a/backend/static/maps/fb9122af409e46e7b09967c33cf48b31_14.png and /dev/null differ
diff --git a/backend/static/maps/fc902ca3-e022-44b1-8699-f81a00cb004f.png b/backend/static/maps/fc902ca3-e022-44b1-8699-f81a00cb004f.png
deleted file mode 100644
index 1e9c105..0000000
Binary files a/backend/static/maps/fc902ca3-e022-44b1-8699-f81a00cb004f.png and /dev/null differ
diff --git a/backend/static/maps/fcab7766-7cca-4c6a-9b90-74c04f3d0130.png b/backend/static/maps/fcab7766-7cca-4c6a-9b90-74c04f3d0130.png
deleted file mode 100644
index 7e2917e..0000000
Binary files a/backend/static/maps/fcab7766-7cca-4c6a-9b90-74c04f3d0130.png and /dev/null differ
diff --git a/backend/static/maps/fcef05f4-c079-4c86-a705-3acc5ba20333.png b/backend/static/maps/fcef05f4-c079-4c86-a705-3acc5ba20333.png
deleted file mode 100644
index 0db4dbc..0000000
Binary files a/backend/static/maps/fcef05f4-c079-4c86-a705-3acc5ba20333.png and /dev/null differ
diff --git a/backend/static/maps/fd6312f2140145cc92d4352d3aa1940a_1.png b/backend/static/maps/fd6312f2140145cc92d4352d3aa1940a_1.png
deleted file mode 100644
index 30c1bd9..0000000
Binary files a/backend/static/maps/fd6312f2140145cc92d4352d3aa1940a_1.png and /dev/null differ
diff --git a/backend/static/maps/fd643ccd5d0240fa8482cc5638044806_0.png b/backend/static/maps/fd643ccd5d0240fa8482cc5638044806_0.png
deleted file mode 100644
index 87eec4a..0000000
Binary files a/backend/static/maps/fd643ccd5d0240fa8482cc5638044806_0.png and /dev/null differ
diff --git a/backend/static/maps/fdaae21703374e4ea5cb42f66cc5479e.png b/backend/static/maps/fdaae21703374e4ea5cb42f66cc5479e.png
deleted file mode 100644
index 4b0936d..0000000
Binary files a/backend/static/maps/fdaae21703374e4ea5cb42f66cc5479e.png and /dev/null differ
diff --git a/backend/static/maps/fdb292eff0a749e6930b7e2666bcfe33_0.png b/backend/static/maps/fdb292eff0a749e6930b7e2666bcfe33_0.png
deleted file mode 100644
index cf29848..0000000
Binary files a/backend/static/maps/fdb292eff0a749e6930b7e2666bcfe33_0.png and /dev/null differ
diff --git a/backend/static/maps/fdf53cdeb2ec42b8a9422569f2e9531b_302.png b/backend/static/maps/fdf53cdeb2ec42b8a9422569f2e9531b_302.png
deleted file mode 100644
index c9410b5..0000000
Binary files a/backend/static/maps/fdf53cdeb2ec42b8a9422569f2e9531b_302.png and /dev/null differ
diff --git a/backend/static/maps/fe108791-ce15-4313-8635-11896142cbb4.png b/backend/static/maps/fe108791-ce15-4313-8635-11896142cbb4.png
deleted file mode 100644
index a8d42b8..0000000
Binary files a/backend/static/maps/fe108791-ce15-4313-8635-11896142cbb4.png and /dev/null differ
diff --git a/backend/static/maps/fe7e5332-4c87-410d-b0be-43c5d2c44ae0.png b/backend/static/maps/fe7e5332-4c87-410d-b0be-43c5d2c44ae0.png
deleted file mode 100644
index e21ce1b..0000000
Binary files a/backend/static/maps/fe7e5332-4c87-410d-b0be-43c5d2c44ae0.png and /dev/null differ
diff --git a/backend/static/maps/feaec36d-fc4d-46ae-8ffd-787c7b6a1218.png b/backend/static/maps/feaec36d-fc4d-46ae-8ffd-787c7b6a1218.png
deleted file mode 100644
index bc21a0f..0000000
Binary files a/backend/static/maps/feaec36d-fc4d-46ae-8ffd-787c7b6a1218.png and /dev/null differ
diff --git a/backend/static/maps/feb2cb7f6a714e4493ddbae349f783d6_0.png b/backend/static/maps/feb2cb7f6a714e4493ddbae349f783d6_0.png
deleted file mode 100644
index c35b4e7..0000000
Binary files a/backend/static/maps/feb2cb7f6a714e4493ddbae349f783d6_0.png and /dev/null differ
diff --git a/backend/static/maps/ff750996-ebaa-4d0b-8aaf-a4411d26771d.png b/backend/static/maps/ff750996-ebaa-4d0b-8aaf-a4411d26771d.png
deleted file mode 100644
index 86f70d3..0000000
Binary files a/backend/static/maps/ff750996-ebaa-4d0b-8aaf-a4411d26771d.png and /dev/null differ
diff --git a/backend/static/maps/ff8a5b2c-8df1-445c-9da0-17e9e57eaf3e.png b/backend/static/maps/ff8a5b2c-8df1-445c-9da0-17e9e57eaf3e.png
deleted file mode 100644
index 3589202..0000000
Binary files a/backend/static/maps/ff8a5b2c-8df1-445c-9da0-17e9e57eaf3e.png and /dev/null differ
diff --git a/backend/static/maps/ff96282c-f41c-4dbe-b225-3aaf2f3af851.png b/backend/static/maps/ff96282c-f41c-4dbe-b225-3aaf2f3af851.png
deleted file mode 100644
index 8b8b9a6..0000000
Binary files a/backend/static/maps/ff96282c-f41c-4dbe-b225-3aaf2f3af851.png and /dev/null differ
diff --git a/backend/static/maps/ffd6553eddc04803abcd82c25f9a5fe0_0.png b/backend/static/maps/ffd6553eddc04803abcd82c25f9a5fe0_0.png
deleted file mode 100644
index 362b785..0000000
Binary files a/backend/static/maps/ffd6553eddc04803abcd82c25f9a5fe0_0.png and /dev/null differ
diff --git a/backend/static/maps/fvmt-if5n.png b/backend/static/maps/fvmt-if5n.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/fvmt-if5n.png and /dev/null differ
diff --git a/backend/static/maps/gfnu-w3q6.png b/backend/static/maps/gfnu-w3q6.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/gfnu-w3q6.png and /dev/null differ
diff --git a/backend/static/maps/harvard-g6965-1708-a5.png b/backend/static/maps/harvard-g6965-1708-a5.png
deleted file mode 100644
index 4fb9799..0000000
Binary files a/backend/static/maps/harvard-g6965-1708-a5.png and /dev/null differ
diff --git a/backend/static/maps/hmfy-xsta.png b/backend/static/maps/hmfy-xsta.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/hmfy-xsta.png and /dev/null differ
diff --git a/backend/static/maps/ia-parcels-05000US19013.png b/backend/static/maps/ia-parcels-05000US19013.png
deleted file mode 100644
index b303193..0000000
Binary files a/backend/static/maps/ia-parcels-05000US19013.png and /dev/null differ
diff --git a/backend/static/maps/iyec-2es5.png b/backend/static/maps/iyec-2es5.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/iyec-2es5.png and /dev/null differ
diff --git a/backend/static/maps/jdsj-862i.png b/backend/static/maps/jdsj-862i.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/jdsj-862i.png and /dev/null differ
diff --git a/backend/static/maps/kas8-436q.png b/backend/static/maps/kas8-436q.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/kas8-436q.png and /dev/null differ
diff --git a/backend/static/maps/kd9gaiUExYqUbnoq.png b/backend/static/maps/kd9gaiUExYqUbnoq.png
deleted file mode 100644
index 66107fd..0000000
Binary files a/backend/static/maps/kd9gaiUExYqUbnoq.png and /dev/null differ
diff --git a/backend/static/maps/landgrabu_org.png b/backend/static/maps/landgrabu_org.png
deleted file mode 100644
index ce6599c..0000000
Binary files a/backend/static/maps/landgrabu_org.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2744.png b/backend/static/maps/mdl_nemhc-id-2744.png
deleted file mode 100644
index f208be0..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2744.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2751.png b/backend/static/maps/mdl_nemhc-id-2751.png
deleted file mode 100644
index bbf6be1..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2751.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2752.png b/backend/static/maps/mdl_nemhc-id-2752.png
deleted file mode 100644
index f0b12f5..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2752.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2754.png b/backend/static/maps/mdl_nemhc-id-2754.png
deleted file mode 100644
index 91c5634..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2754.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2757.png b/backend/static/maps/mdl_nemhc-id-2757.png
deleted file mode 100644
index 5429fbf..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2757.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2760.png b/backend/static/maps/mdl_nemhc-id-2760.png
deleted file mode 100644
index 91c5634..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2760.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2761.png b/backend/static/maps/mdl_nemhc-id-2761.png
deleted file mode 100644
index 91c5634..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2761.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2764.png b/backend/static/maps/mdl_nemhc-id-2764.png
deleted file mode 100644
index 97604b4..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2764.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2765.png b/backend/static/maps/mdl_nemhc-id-2765.png
deleted file mode 100644
index 3d5d6b9..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2765.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2766.png b/backend/static/maps/mdl_nemhc-id-2766.png
deleted file mode 100644
index 91c5634..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2766.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2767.png b/backend/static/maps/mdl_nemhc-id-2767.png
deleted file mode 100644
index c64854e..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2767.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2773.png b/backend/static/maps/mdl_nemhc-id-2773.png
deleted file mode 100644
index 91c5634..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2773.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2775.png b/backend/static/maps/mdl_nemhc-id-2775.png
deleted file mode 100644
index b75c55d..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2775.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2787.png b/backend/static/maps/mdl_nemhc-id-2787.png
deleted file mode 100644
index 91c5634..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2787.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2790.png b/backend/static/maps/mdl_nemhc-id-2790.png
deleted file mode 100644
index 91c5634..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2790.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2799.png b/backend/static/maps/mdl_nemhc-id-2799.png
deleted file mode 100644
index 91c5634..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2799.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2802.png b/backend/static/maps/mdl_nemhc-id-2802.png
deleted file mode 100644
index 91c5634..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2802.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2805.png b/backend/static/maps/mdl_nemhc-id-2805.png
deleted file mode 100644
index eedae2c..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2805.png and /dev/null differ
diff --git a/backend/static/maps/mdl_nemhc-id-2808.png b/backend/static/maps/mdl_nemhc-id-2808.png
deleted file mode 100644
index ce6ca67..0000000
Binary files a/backend/static/maps/mdl_nemhc-id-2808.png and /dev/null differ
diff --git a/backend/static/maps/msn-id-1896.png b/backend/static/maps/msn-id-1896.png
deleted file mode 100644
index 2239b2c..0000000
Binary files a/backend/static/maps/msn-id-1896.png and /dev/null differ
diff --git a/backend/static/maps/msn-id-1897.png b/backend/static/maps/msn-id-1897.png
deleted file mode 100644
index 2239b2c..0000000
Binary files a/backend/static/maps/msn-id-1897.png and /dev/null differ
diff --git a/backend/static/maps/nifi-zqag.png b/backend/static/maps/nifi-zqag.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/nifi-zqag.png and /dev/null differ
diff --git a/backend/static/maps/osu-0r967h708.png b/backend/static/maps/osu-0r967h708.png
deleted file mode 100644
index d7849e9..0000000
Binary files a/backend/static/maps/osu-0r967h708.png and /dev/null differ
diff --git a/backend/static/maps/osu-0z709703g.png b/backend/static/maps/osu-0z709703g.png
deleted file mode 100644
index 51d7d9d..0000000
Binary files a/backend/static/maps/osu-0z709703g.png and /dev/null differ
diff --git a/backend/static/maps/osu-1r66jf259.png b/backend/static/maps/osu-1r66jf259.png
deleted file mode 100644
index d7849e9..0000000
Binary files a/backend/static/maps/osu-1r66jf259.png and /dev/null differ
diff --git a/backend/static/maps/osu-2801pv81k.png b/backend/static/maps/osu-2801pv81k.png
deleted file mode 100644
index d7849e9..0000000
Binary files a/backend/static/maps/osu-2801pv81k.png and /dev/null differ
diff --git a/backend/static/maps/osu-9019sf75c.png b/backend/static/maps/osu-9019sf75c.png
deleted file mode 100644
index d7849e9..0000000
Binary files a/backend/static/maps/osu-9019sf75c.png and /dev/null differ
diff --git a/backend/static/maps/osu-cf95jq549.png b/backend/static/maps/osu-cf95jq549.png
deleted file mode 100644
index d7849e9..0000000
Binary files a/backend/static/maps/osu-cf95jq549.png and /dev/null differ
diff --git a/backend/static/maps/osu-cj82kk25w.png b/backend/static/maps/osu-cj82kk25w.png
deleted file mode 100644
index 286d1fd..0000000
Binary files a/backend/static/maps/osu-cj82kk25w.png and /dev/null differ
diff --git a/backend/static/maps/osu-df65vn31v.png b/backend/static/maps/osu-df65vn31v.png
deleted file mode 100644
index d7849e9..0000000
Binary files a/backend/static/maps/osu-df65vn31v.png and /dev/null differ
diff --git a/backend/static/maps/osu-dj52wj780.png b/backend/static/maps/osu-dj52wj780.png
deleted file mode 100644
index d7849e9..0000000
Binary files a/backend/static/maps/osu-dj52wj780.png and /dev/null differ
diff --git a/backend/static/maps/osu-h702qk41n.png b/backend/static/maps/osu-h702qk41n.png
deleted file mode 100644
index d7849e9..0000000
Binary files a/backend/static/maps/osu-h702qk41n.png and /dev/null differ
diff --git a/backend/static/maps/osu-sf268j29c.png b/backend/static/maps/osu-sf268j29c.png
deleted file mode 100644
index d7849e9..0000000
Binary files a/backend/static/maps/osu-sf268j29c.png and /dev/null differ
diff --git a/backend/static/maps/osu-t148fx164.png b/backend/static/maps/osu-t148fx164.png
deleted file mode 100644
index d7849e9..0000000
Binary files a/backend/static/maps/osu-t148fx164.png and /dev/null differ
diff --git a/backend/static/maps/osu-tm70n7749.png b/backend/static/maps/osu-tm70n7749.png
deleted file mode 100644
index d7849e9..0000000
Binary files a/backend/static/maps/osu-tm70n7749.png and /dev/null differ
diff --git a/backend/static/maps/p15160coll3-id-13.png b/backend/static/maps/p15160coll3-id-13.png
deleted file mode 100644
index 0400c5c..0000000
Binary files a/backend/static/maps/p15160coll3-id-13.png and /dev/null differ
diff --git a/backend/static/maps/p15160coll3-id-24.png b/backend/static/maps/p15160coll3-id-24.png
deleted file mode 100644
index 0400c5c..0000000
Binary files a/backend/static/maps/p15160coll3-id-24.png and /dev/null differ
diff --git a/backend/static/maps/p15160coll3-id-33.png b/backend/static/maps/p15160coll3-id-33.png
deleted file mode 100644
index 0400c5c..0000000
Binary files a/backend/static/maps/p15160coll3-id-33.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:1114.png b/backend/static/maps/p16022coll205:1114.png
deleted file mode 100644
index e13a18b..0000000
Binary files a/backend/static/maps/p16022coll205:1114.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:1137.png b/backend/static/maps/p16022coll205:1137.png
deleted file mode 100644
index 907b0ca..0000000
Binary files a/backend/static/maps/p16022coll205:1137.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:187.png b/backend/static/maps/p16022coll205:187.png
deleted file mode 100644
index 6ec35ac..0000000
Binary files a/backend/static/maps/p16022coll205:187.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:240.png b/backend/static/maps/p16022coll205:240.png
deleted file mode 100644
index 5515066..0000000
Binary files a/backend/static/maps/p16022coll205:240.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:251.png b/backend/static/maps/p16022coll205:251.png
deleted file mode 100644
index ee6544d..0000000
Binary files a/backend/static/maps/p16022coll205:251.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:268.png b/backend/static/maps/p16022coll205:268.png
deleted file mode 100644
index 601146b..0000000
Binary files a/backend/static/maps/p16022coll205:268.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:319.png b/backend/static/maps/p16022coll205:319.png
deleted file mode 100644
index 5995e90..0000000
Binary files a/backend/static/maps/p16022coll205:319.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:323.png b/backend/static/maps/p16022coll205:323.png
deleted file mode 100644
index 3164e63..0000000
Binary files a/backend/static/maps/p16022coll205:323.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:324.png b/backend/static/maps/p16022coll205:324.png
deleted file mode 100644
index a2b582c..0000000
Binary files a/backend/static/maps/p16022coll205:324.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:348.png b/backend/static/maps/p16022coll205:348.png
deleted file mode 100644
index 3aaf5dc..0000000
Binary files a/backend/static/maps/p16022coll205:348.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:363.png b/backend/static/maps/p16022coll205:363.png
deleted file mode 100644
index 9b41d94..0000000
Binary files a/backend/static/maps/p16022coll205:363.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:369.png b/backend/static/maps/p16022coll205:369.png
deleted file mode 100644
index cc5b719..0000000
Binary files a/backend/static/maps/p16022coll205:369.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:383.png b/backend/static/maps/p16022coll205:383.png
deleted file mode 100644
index 391d9b3..0000000
Binary files a/backend/static/maps/p16022coll205:383.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:396.png b/backend/static/maps/p16022coll205:396.png
deleted file mode 100644
index a684356..0000000
Binary files a/backend/static/maps/p16022coll205:396.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:446.png b/backend/static/maps/p16022coll205:446.png
deleted file mode 100644
index ce0be04..0000000
Binary files a/backend/static/maps/p16022coll205:446.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:532.png b/backend/static/maps/p16022coll205:532.png
deleted file mode 100644
index e13a18b..0000000
Binary files a/backend/static/maps/p16022coll205:532.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:622.png b/backend/static/maps/p16022coll205:622.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/p16022coll205:622.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:625.png b/backend/static/maps/p16022coll205:625.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/p16022coll205:625.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:626.png b/backend/static/maps/p16022coll205:626.png
deleted file mode 100644
index b24ede1..0000000
Binary files a/backend/static/maps/p16022coll205:626.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:634.png b/backend/static/maps/p16022coll205:634.png
deleted file mode 100644
index 265c78e..0000000
Binary files a/backend/static/maps/p16022coll205:634.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:660.png b/backend/static/maps/p16022coll205:660.png
deleted file mode 100644
index bc0ac62..0000000
Binary files a/backend/static/maps/p16022coll205:660.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:669.png b/backend/static/maps/p16022coll205:669.png
deleted file mode 100644
index bc0ac62..0000000
Binary files a/backend/static/maps/p16022coll205:669.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:672.png b/backend/static/maps/p16022coll205:672.png
deleted file mode 100644
index 1848768..0000000
Binary files a/backend/static/maps/p16022coll205:672.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:682.png b/backend/static/maps/p16022coll205:682.png
deleted file mode 100644
index f50a5bd..0000000
Binary files a/backend/static/maps/p16022coll205:682.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll205:742.png b/backend/static/maps/p16022coll205:742.png
deleted file mode 100644
index f019c38..0000000
Binary files a/backend/static/maps/p16022coll205:742.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:108.png b/backend/static/maps/p16022coll206:108.png
deleted file mode 100644
index a0f9e6f..0000000
Binary files a/backend/static/maps/p16022coll206:108.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:137.png b/backend/static/maps/p16022coll206:137.png
deleted file mode 100644
index 20fc1a2..0000000
Binary files a/backend/static/maps/p16022coll206:137.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:155.png b/backend/static/maps/p16022coll206:155.png
deleted file mode 100644
index 34b470e..0000000
Binary files a/backend/static/maps/p16022coll206:155.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:158.png b/backend/static/maps/p16022coll206:158.png
deleted file mode 100644
index b1b83bc..0000000
Binary files a/backend/static/maps/p16022coll206:158.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:162.png b/backend/static/maps/p16022coll206:162.png
deleted file mode 100644
index 3bbae0c..0000000
Binary files a/backend/static/maps/p16022coll206:162.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:175.png b/backend/static/maps/p16022coll206:175.png
deleted file mode 100644
index 917002c..0000000
Binary files a/backend/static/maps/p16022coll206:175.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:265.png b/backend/static/maps/p16022coll206:265.png
deleted file mode 100644
index 27f87e6..0000000
Binary files a/backend/static/maps/p16022coll206:265.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:277.png b/backend/static/maps/p16022coll206:277.png
deleted file mode 100644
index f3de279..0000000
Binary files a/backend/static/maps/p16022coll206:277.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:280.png b/backend/static/maps/p16022coll206:280.png
deleted file mode 100644
index 50849e6..0000000
Binary files a/backend/static/maps/p16022coll206:280.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:283.png b/backend/static/maps/p16022coll206:283.png
deleted file mode 100644
index f3de279..0000000
Binary files a/backend/static/maps/p16022coll206:283.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:289.png b/backend/static/maps/p16022coll206:289.png
deleted file mode 100644
index f3de279..0000000
Binary files a/backend/static/maps/p16022coll206:289.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:298.png b/backend/static/maps/p16022coll206:298.png
deleted file mode 100644
index f3de279..0000000
Binary files a/backend/static/maps/p16022coll206:298.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:32.png b/backend/static/maps/p16022coll206:32.png
deleted file mode 100644
index a0f9e6f..0000000
Binary files a/backend/static/maps/p16022coll206:32.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:320.png b/backend/static/maps/p16022coll206:320.png
deleted file mode 100644
index 6924d6b..0000000
Binary files a/backend/static/maps/p16022coll206:320.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:326.png b/backend/static/maps/p16022coll206:326.png
deleted file mode 100644
index 917002c..0000000
Binary files a/backend/static/maps/p16022coll206:326.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll206:83.png b/backend/static/maps/p16022coll206:83.png
deleted file mode 100644
index a0f9e6f..0000000
Binary files a/backend/static/maps/p16022coll206:83.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll229:4194.png b/backend/static/maps/p16022coll229:4194.png
deleted file mode 100644
index e5a9c0b..0000000
Binary files a/backend/static/maps/p16022coll229:4194.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1007.png b/backend/static/maps/p16022coll230:1007.png
deleted file mode 100644
index e6952d5..0000000
Binary files a/backend/static/maps/p16022coll230:1007.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1023.png b/backend/static/maps/p16022coll230:1023.png
deleted file mode 100644
index 5b53f95..0000000
Binary files a/backend/static/maps/p16022coll230:1023.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1113.png b/backend/static/maps/p16022coll230:1113.png
deleted file mode 100644
index a2c0cb6..0000000
Binary files a/backend/static/maps/p16022coll230:1113.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1146.png b/backend/static/maps/p16022coll230:1146.png
deleted file mode 100644
index a2c0cb6..0000000
Binary files a/backend/static/maps/p16022coll230:1146.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1149.png b/backend/static/maps/p16022coll230:1149.png
deleted file mode 100644
index 8663e54..0000000
Binary files a/backend/static/maps/p16022coll230:1149.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1180.png b/backend/static/maps/p16022coll230:1180.png
deleted file mode 100644
index e8a8d4a..0000000
Binary files a/backend/static/maps/p16022coll230:1180.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1220.png b/backend/static/maps/p16022coll230:1220.png
deleted file mode 100644
index 16127ac..0000000
Binary files a/backend/static/maps/p16022coll230:1220.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1242.png b/backend/static/maps/p16022coll230:1242.png
deleted file mode 100644
index 8c617ef..0000000
Binary files a/backend/static/maps/p16022coll230:1242.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1254.png b/backend/static/maps/p16022coll230:1254.png
deleted file mode 100644
index 4a3db7e..0000000
Binary files a/backend/static/maps/p16022coll230:1254.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1258.png b/backend/static/maps/p16022coll230:1258.png
deleted file mode 100644
index 2e7725d..0000000
Binary files a/backend/static/maps/p16022coll230:1258.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1262.png b/backend/static/maps/p16022coll230:1262.png
deleted file mode 100644
index 34c49cd..0000000
Binary files a/backend/static/maps/p16022coll230:1262.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1266.png b/backend/static/maps/p16022coll230:1266.png
deleted file mode 100644
index 0e6d097..0000000
Binary files a/backend/static/maps/p16022coll230:1266.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1275.png b/backend/static/maps/p16022coll230:1275.png
deleted file mode 100644
index 77578f6..0000000
Binary files a/backend/static/maps/p16022coll230:1275.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1277.png b/backend/static/maps/p16022coll230:1277.png
deleted file mode 100644
index 2b89b71..0000000
Binary files a/backend/static/maps/p16022coll230:1277.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1288.png b/backend/static/maps/p16022coll230:1288.png
deleted file mode 100644
index f1b2c64..0000000
Binary files a/backend/static/maps/p16022coll230:1288.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1294.png b/backend/static/maps/p16022coll230:1294.png
deleted file mode 100644
index 8960ef5..0000000
Binary files a/backend/static/maps/p16022coll230:1294.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1296.png b/backend/static/maps/p16022coll230:1296.png
deleted file mode 100644
index 29e4bba..0000000
Binary files a/backend/static/maps/p16022coll230:1296.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1302.png b/backend/static/maps/p16022coll230:1302.png
deleted file mode 100644
index 5057868..0000000
Binary files a/backend/static/maps/p16022coll230:1302.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1303.png b/backend/static/maps/p16022coll230:1303.png
deleted file mode 100644
index 7ae08ea..0000000
Binary files a/backend/static/maps/p16022coll230:1303.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1310.png b/backend/static/maps/p16022coll230:1310.png
deleted file mode 100644
index 3d15a10..0000000
Binary files a/backend/static/maps/p16022coll230:1310.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1314.png b/backend/static/maps/p16022coll230:1314.png
deleted file mode 100644
index 29e4bba..0000000
Binary files a/backend/static/maps/p16022coll230:1314.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1316.png b/backend/static/maps/p16022coll230:1316.png
deleted file mode 100644
index 1f289fa..0000000
Binary files a/backend/static/maps/p16022coll230:1316.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1572.png b/backend/static/maps/p16022coll230:1572.png
deleted file mode 100644
index c5eb305..0000000
Binary files a/backend/static/maps/p16022coll230:1572.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1573.png b/backend/static/maps/p16022coll230:1573.png
deleted file mode 100644
index a0e1fc8..0000000
Binary files a/backend/static/maps/p16022coll230:1573.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1651.png b/backend/static/maps/p16022coll230:1651.png
deleted file mode 100644
index d2270cc..0000000
Binary files a/backend/static/maps/p16022coll230:1651.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1670.png b/backend/static/maps/p16022coll230:1670.png
deleted file mode 100644
index 6b24f59..0000000
Binary files a/backend/static/maps/p16022coll230:1670.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1687.png b/backend/static/maps/p16022coll230:1687.png
deleted file mode 100644
index d2270cc..0000000
Binary files a/backend/static/maps/p16022coll230:1687.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1722.png b/backend/static/maps/p16022coll230:1722.png
deleted file mode 100644
index 8b93be3..0000000
Binary files a/backend/static/maps/p16022coll230:1722.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1730.png b/backend/static/maps/p16022coll230:1730.png
deleted file mode 100644
index 5f9e17f..0000000
Binary files a/backend/static/maps/p16022coll230:1730.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1753.png b/backend/static/maps/p16022coll230:1753.png
deleted file mode 100644
index cc018e9..0000000
Binary files a/backend/static/maps/p16022coll230:1753.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1798.png b/backend/static/maps/p16022coll230:1798.png
deleted file mode 100644
index d2270cc..0000000
Binary files a/backend/static/maps/p16022coll230:1798.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1884.png b/backend/static/maps/p16022coll230:1884.png
deleted file mode 100644
index 5f26f15..0000000
Binary files a/backend/static/maps/p16022coll230:1884.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1890.png b/backend/static/maps/p16022coll230:1890.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/p16022coll230:1890.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1906.png b/backend/static/maps/p16022coll230:1906.png
deleted file mode 100644
index 4cd5a7a..0000000
Binary files a/backend/static/maps/p16022coll230:1906.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1909.png b/backend/static/maps/p16022coll230:1909.png
deleted file mode 100644
index e99da49..0000000
Binary files a/backend/static/maps/p16022coll230:1909.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1915.png b/backend/static/maps/p16022coll230:1915.png
deleted file mode 100644
index e99da49..0000000
Binary files a/backend/static/maps/p16022coll230:1915.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1927.png b/backend/static/maps/p16022coll230:1927.png
deleted file mode 100644
index e99da49..0000000
Binary files a/backend/static/maps/p16022coll230:1927.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1934.png b/backend/static/maps/p16022coll230:1934.png
deleted file mode 100644
index c7ff4ef..0000000
Binary files a/backend/static/maps/p16022coll230:1934.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1964.png b/backend/static/maps/p16022coll230:1964.png
deleted file mode 100644
index aabd6ae..0000000
Binary files a/backend/static/maps/p16022coll230:1964.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:1997.png b/backend/static/maps/p16022coll230:1997.png
deleted file mode 100644
index 360e221..0000000
Binary files a/backend/static/maps/p16022coll230:1997.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2032.png b/backend/static/maps/p16022coll230:2032.png
deleted file mode 100644
index 1dd59e9..0000000
Binary files a/backend/static/maps/p16022coll230:2032.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2036.png b/backend/static/maps/p16022coll230:2036.png
deleted file mode 100644
index 69135ba..0000000
Binary files a/backend/static/maps/p16022coll230:2036.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2040.png b/backend/static/maps/p16022coll230:2040.png
deleted file mode 100644
index 58365b8..0000000
Binary files a/backend/static/maps/p16022coll230:2040.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2046.png b/backend/static/maps/p16022coll230:2046.png
deleted file mode 100644
index 69135ba..0000000
Binary files a/backend/static/maps/p16022coll230:2046.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2054.png b/backend/static/maps/p16022coll230:2054.png
deleted file mode 100644
index 115b217..0000000
Binary files a/backend/static/maps/p16022coll230:2054.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2058.png b/backend/static/maps/p16022coll230:2058.png
deleted file mode 100644
index ba74e3a..0000000
Binary files a/backend/static/maps/p16022coll230:2058.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2071.png b/backend/static/maps/p16022coll230:2071.png
deleted file mode 100644
index 1dd59e9..0000000
Binary files a/backend/static/maps/p16022coll230:2071.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2072.png b/backend/static/maps/p16022coll230:2072.png
deleted file mode 100644
index 115b217..0000000
Binary files a/backend/static/maps/p16022coll230:2072.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2078.png b/backend/static/maps/p16022coll230:2078.png
deleted file mode 100644
index 1dd59e9..0000000
Binary files a/backend/static/maps/p16022coll230:2078.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2097.png b/backend/static/maps/p16022coll230:2097.png
deleted file mode 100644
index 115b217..0000000
Binary files a/backend/static/maps/p16022coll230:2097.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2234.png b/backend/static/maps/p16022coll230:2234.png
deleted file mode 100644
index 3107683..0000000
Binary files a/backend/static/maps/p16022coll230:2234.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2255.png b/backend/static/maps/p16022coll230:2255.png
deleted file mode 100644
index cbd4544..0000000
Binary files a/backend/static/maps/p16022coll230:2255.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2299.png b/backend/static/maps/p16022coll230:2299.png
deleted file mode 100644
index c2ae15a..0000000
Binary files a/backend/static/maps/p16022coll230:2299.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2314.png b/backend/static/maps/p16022coll230:2314.png
deleted file mode 100644
index f20afd9..0000000
Binary files a/backend/static/maps/p16022coll230:2314.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2317.png b/backend/static/maps/p16022coll230:2317.png
deleted file mode 100644
index f83f2e8..0000000
Binary files a/backend/static/maps/p16022coll230:2317.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2340.png b/backend/static/maps/p16022coll230:2340.png
deleted file mode 100644
index 5a7b2a0..0000000
Binary files a/backend/static/maps/p16022coll230:2340.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2383.png b/backend/static/maps/p16022coll230:2383.png
deleted file mode 100644
index f53cca3..0000000
Binary files a/backend/static/maps/p16022coll230:2383.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2444.png b/backend/static/maps/p16022coll230:2444.png
deleted file mode 100644
index 738c875..0000000
Binary files a/backend/static/maps/p16022coll230:2444.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2445.png b/backend/static/maps/p16022coll230:2445.png
deleted file mode 100644
index 738c875..0000000
Binary files a/backend/static/maps/p16022coll230:2445.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2448.png b/backend/static/maps/p16022coll230:2448.png
deleted file mode 100644
index f53cca3..0000000
Binary files a/backend/static/maps/p16022coll230:2448.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2452.png b/backend/static/maps/p16022coll230:2452.png
deleted file mode 100644
index c2ae15a..0000000
Binary files a/backend/static/maps/p16022coll230:2452.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2459.png b/backend/static/maps/p16022coll230:2459.png
deleted file mode 100644
index 1c34d63..0000000
Binary files a/backend/static/maps/p16022coll230:2459.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2468.png b/backend/static/maps/p16022coll230:2468.png
deleted file mode 100644
index 727d810..0000000
Binary files a/backend/static/maps/p16022coll230:2468.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2471.png b/backend/static/maps/p16022coll230:2471.png
deleted file mode 100644
index 0fd504a..0000000
Binary files a/backend/static/maps/p16022coll230:2471.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2472.png b/backend/static/maps/p16022coll230:2472.png
deleted file mode 100644
index c2ae15a..0000000
Binary files a/backend/static/maps/p16022coll230:2472.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2478.png b/backend/static/maps/p16022coll230:2478.png
deleted file mode 100644
index 5a7b2a0..0000000
Binary files a/backend/static/maps/p16022coll230:2478.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2485.png b/backend/static/maps/p16022coll230:2485.png
deleted file mode 100644
index 738c875..0000000
Binary files a/backend/static/maps/p16022coll230:2485.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2488.png b/backend/static/maps/p16022coll230:2488.png
deleted file mode 100644
index 5c6a8b3..0000000
Binary files a/backend/static/maps/p16022coll230:2488.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2490.png b/backend/static/maps/p16022coll230:2490.png
deleted file mode 100644
index d770c67..0000000
Binary files a/backend/static/maps/p16022coll230:2490.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2492.png b/backend/static/maps/p16022coll230:2492.png
deleted file mode 100644
index 60c4b9a..0000000
Binary files a/backend/static/maps/p16022coll230:2492.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2509.png b/backend/static/maps/p16022coll230:2509.png
deleted file mode 100644
index 3a6dc8b..0000000
Binary files a/backend/static/maps/p16022coll230:2509.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2543.png b/backend/static/maps/p16022coll230:2543.png
deleted file mode 100644
index f50a5bd..0000000
Binary files a/backend/static/maps/p16022coll230:2543.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2617.png b/backend/static/maps/p16022coll230:2617.png
deleted file mode 100644
index 3b341ff..0000000
Binary files a/backend/static/maps/p16022coll230:2617.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2629.png b/backend/static/maps/p16022coll230:2629.png
deleted file mode 100644
index 4b0d3e0..0000000
Binary files a/backend/static/maps/p16022coll230:2629.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2695.png b/backend/static/maps/p16022coll230:2695.png
deleted file mode 100644
index f50a5bd..0000000
Binary files a/backend/static/maps/p16022coll230:2695.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2738.png b/backend/static/maps/p16022coll230:2738.png
deleted file mode 100644
index cf5d404..0000000
Binary files a/backend/static/maps/p16022coll230:2738.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2743.png b/backend/static/maps/p16022coll230:2743.png
deleted file mode 100644
index c9d3484..0000000
Binary files a/backend/static/maps/p16022coll230:2743.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2751.png b/backend/static/maps/p16022coll230:2751.png
deleted file mode 100644
index 2a1bac6..0000000
Binary files a/backend/static/maps/p16022coll230:2751.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2756.png b/backend/static/maps/p16022coll230:2756.png
deleted file mode 100644
index cd46935..0000000
Binary files a/backend/static/maps/p16022coll230:2756.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2863.png b/backend/static/maps/p16022coll230:2863.png
deleted file mode 100644
index d61542e..0000000
Binary files a/backend/static/maps/p16022coll230:2863.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2878.png b/backend/static/maps/p16022coll230:2878.png
deleted file mode 100644
index ca76e7e..0000000
Binary files a/backend/static/maps/p16022coll230:2878.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2897.png b/backend/static/maps/p16022coll230:2897.png
deleted file mode 100644
index e2050f4..0000000
Binary files a/backend/static/maps/p16022coll230:2897.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2912.png b/backend/static/maps/p16022coll230:2912.png
deleted file mode 100644
index bde72b4..0000000
Binary files a/backend/static/maps/p16022coll230:2912.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2916.png b/backend/static/maps/p16022coll230:2916.png
deleted file mode 100644
index ff911ff..0000000
Binary files a/backend/static/maps/p16022coll230:2916.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2917.png b/backend/static/maps/p16022coll230:2917.png
deleted file mode 100644
index 6ffbfe4..0000000
Binary files a/backend/static/maps/p16022coll230:2917.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2918.png b/backend/static/maps/p16022coll230:2918.png
deleted file mode 100644
index 9a316a4..0000000
Binary files a/backend/static/maps/p16022coll230:2918.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2923.png b/backend/static/maps/p16022coll230:2923.png
deleted file mode 100644
index ff911ff..0000000
Binary files a/backend/static/maps/p16022coll230:2923.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2924.png b/backend/static/maps/p16022coll230:2924.png
deleted file mode 100644
index f5f3513..0000000
Binary files a/backend/static/maps/p16022coll230:2924.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2929.png b/backend/static/maps/p16022coll230:2929.png
deleted file mode 100644
index 085c290..0000000
Binary files a/backend/static/maps/p16022coll230:2929.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2934.png b/backend/static/maps/p16022coll230:2934.png
deleted file mode 100644
index ff911ff..0000000
Binary files a/backend/static/maps/p16022coll230:2934.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:2944.png b/backend/static/maps/p16022coll230:2944.png
deleted file mode 100644
index ff911ff..0000000
Binary files a/backend/static/maps/p16022coll230:2944.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:304-index.png b/backend/static/maps/p16022coll230:304-index.png
deleted file mode 100644
index 48af49e..0000000
Binary files a/backend/static/maps/p16022coll230:304-index.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3050.png b/backend/static/maps/p16022coll230:3050.png
deleted file mode 100644
index ff911ff..0000000
Binary files a/backend/static/maps/p16022coll230:3050.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3062.png b/backend/static/maps/p16022coll230:3062.png
deleted file mode 100644
index ff911ff..0000000
Binary files a/backend/static/maps/p16022coll230:3062.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3073.png b/backend/static/maps/p16022coll230:3073.png
deleted file mode 100644
index 3406be9..0000000
Binary files a/backend/static/maps/p16022coll230:3073.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:311.png b/backend/static/maps/p16022coll230:311.png
deleted file mode 100644
index 6649bdc..0000000
Binary files a/backend/static/maps/p16022coll230:311.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3120.png b/backend/static/maps/p16022coll230:3120.png
deleted file mode 100644
index ff911ff..0000000
Binary files a/backend/static/maps/p16022coll230:3120.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3123.png b/backend/static/maps/p16022coll230:3123.png
deleted file mode 100644
index 3c6aac8..0000000
Binary files a/backend/static/maps/p16022coll230:3123.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:316.png b/backend/static/maps/p16022coll230:316.png
deleted file mode 100644
index 590069a..0000000
Binary files a/backend/static/maps/p16022coll230:316.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3177.png b/backend/static/maps/p16022coll230:3177.png
deleted file mode 100644
index 5d46c01..0000000
Binary files a/backend/static/maps/p16022coll230:3177.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3183.png b/backend/static/maps/p16022coll230:3183.png
deleted file mode 100644
index ff911ff..0000000
Binary files a/backend/static/maps/p16022coll230:3183.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3189.png b/backend/static/maps/p16022coll230:3189.png
deleted file mode 100644
index ff911ff..0000000
Binary files a/backend/static/maps/p16022coll230:3189.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:321.png b/backend/static/maps/p16022coll230:321.png
deleted file mode 100644
index 67d10ab..0000000
Binary files a/backend/static/maps/p16022coll230:321.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3466.png b/backend/static/maps/p16022coll230:3466.png
deleted file mode 100644
index 7d6a82d..0000000
Binary files a/backend/static/maps/p16022coll230:3466.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3501.png b/backend/static/maps/p16022coll230:3501.png
deleted file mode 100644
index 4da0af3..0000000
Binary files a/backend/static/maps/p16022coll230:3501.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3516.png b/backend/static/maps/p16022coll230:3516.png
deleted file mode 100644
index 4da0af3..0000000
Binary files a/backend/static/maps/p16022coll230:3516.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3528.png b/backend/static/maps/p16022coll230:3528.png
deleted file mode 100644
index 4ae9266..0000000
Binary files a/backend/static/maps/p16022coll230:3528.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3667.png b/backend/static/maps/p16022coll230:3667.png
deleted file mode 100644
index 73b040f..0000000
Binary files a/backend/static/maps/p16022coll230:3667.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3689.png b/backend/static/maps/p16022coll230:3689.png
deleted file mode 100644
index 0280bc0..0000000
Binary files a/backend/static/maps/p16022coll230:3689.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3727.png b/backend/static/maps/p16022coll230:3727.png
deleted file mode 100644
index d297c61..0000000
Binary files a/backend/static/maps/p16022coll230:3727.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3737.png b/backend/static/maps/p16022coll230:3737.png
deleted file mode 100644
index f0d9c98..0000000
Binary files a/backend/static/maps/p16022coll230:3737.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3766.png b/backend/static/maps/p16022coll230:3766.png
deleted file mode 100644
index f0d9c98..0000000
Binary files a/backend/static/maps/p16022coll230:3766.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3775.png b/backend/static/maps/p16022coll230:3775.png
deleted file mode 100644
index 28f2925..0000000
Binary files a/backend/static/maps/p16022coll230:3775.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3778.png b/backend/static/maps/p16022coll230:3778.png
deleted file mode 100644
index 2eb9d75..0000000
Binary files a/backend/static/maps/p16022coll230:3778.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3800.png b/backend/static/maps/p16022coll230:3800.png
deleted file mode 100644
index e1c10e7..0000000
Binary files a/backend/static/maps/p16022coll230:3800.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3923.png b/backend/static/maps/p16022coll230:3923.png
deleted file mode 100644
index 8909800..0000000
Binary files a/backend/static/maps/p16022coll230:3923.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:3997.png b/backend/static/maps/p16022coll230:3997.png
deleted file mode 100644
index 1f289fa..0000000
Binary files a/backend/static/maps/p16022coll230:3997.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4003.png b/backend/static/maps/p16022coll230:4003.png
deleted file mode 100644
index e138967..0000000
Binary files a/backend/static/maps/p16022coll230:4003.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4038.png b/backend/static/maps/p16022coll230:4038.png
deleted file mode 100644
index d5cce1e..0000000
Binary files a/backend/static/maps/p16022coll230:4038.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4056.png b/backend/static/maps/p16022coll230:4056.png
deleted file mode 100644
index b49424f..0000000
Binary files a/backend/static/maps/p16022coll230:4056.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4082.png b/backend/static/maps/p16022coll230:4082.png
deleted file mode 100644
index d5cce1e..0000000
Binary files a/backend/static/maps/p16022coll230:4082.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4085.png b/backend/static/maps/p16022coll230:4085.png
deleted file mode 100644
index dfc7710..0000000
Binary files a/backend/static/maps/p16022coll230:4085.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:409.png b/backend/static/maps/p16022coll230:409.png
deleted file mode 100644
index cdd08da..0000000
Binary files a/backend/static/maps/p16022coll230:409.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4104.png b/backend/static/maps/p16022coll230:4104.png
deleted file mode 100644
index 12863bc..0000000
Binary files a/backend/static/maps/p16022coll230:4104.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4109.png b/backend/static/maps/p16022coll230:4109.png
deleted file mode 100644
index d2270cc..0000000
Binary files a/backend/static/maps/p16022coll230:4109.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4119.png b/backend/static/maps/p16022coll230:4119.png
deleted file mode 100644
index 76d99ad..0000000
Binary files a/backend/static/maps/p16022coll230:4119.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4141.png b/backend/static/maps/p16022coll230:4141.png
deleted file mode 100644
index 3d4e724..0000000
Binary files a/backend/static/maps/p16022coll230:4141.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4158.png b/backend/static/maps/p16022coll230:4158.png
deleted file mode 100644
index f53cca3..0000000
Binary files a/backend/static/maps/p16022coll230:4158.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:416.png b/backend/static/maps/p16022coll230:416.png
deleted file mode 100644
index 9a8c0ad..0000000
Binary files a/backend/static/maps/p16022coll230:416.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4169.png b/backend/static/maps/p16022coll230:4169.png
deleted file mode 100644
index 1687ec8..0000000
Binary files a/backend/static/maps/p16022coll230:4169.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:418.png b/backend/static/maps/p16022coll230:418.png
deleted file mode 100644
index 697cd89..0000000
Binary files a/backend/static/maps/p16022coll230:418.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4217.png b/backend/static/maps/p16022coll230:4217.png
deleted file mode 100644
index 738c875..0000000
Binary files a/backend/static/maps/p16022coll230:4217.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4222.png b/backend/static/maps/p16022coll230:4222.png
deleted file mode 100644
index 1dd59e9..0000000
Binary files a/backend/static/maps/p16022coll230:4222.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4227.png b/backend/static/maps/p16022coll230:4227.png
deleted file mode 100644
index cbd4544..0000000
Binary files a/backend/static/maps/p16022coll230:4227.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4232.png b/backend/static/maps/p16022coll230:4232.png
deleted file mode 100644
index 87cf68c..0000000
Binary files a/backend/static/maps/p16022coll230:4232.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4249.png b/backend/static/maps/p16022coll230:4249.png
deleted file mode 100644
index 98b9bef..0000000
Binary files a/backend/static/maps/p16022coll230:4249.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4260.png b/backend/static/maps/p16022coll230:4260.png
deleted file mode 100644
index 73b040f..0000000
Binary files a/backend/static/maps/p16022coll230:4260.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4261.png b/backend/static/maps/p16022coll230:4261.png
deleted file mode 100644
index f89c299..0000000
Binary files a/backend/static/maps/p16022coll230:4261.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4269.png b/backend/static/maps/p16022coll230:4269.png
deleted file mode 100644
index 73b040f..0000000
Binary files a/backend/static/maps/p16022coll230:4269.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:4275.png b/backend/static/maps/p16022coll230:4275.png
deleted file mode 100644
index 98b9bef..0000000
Binary files a/backend/static/maps/p16022coll230:4275.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:429.png b/backend/static/maps/p16022coll230:429.png
deleted file mode 100644
index 99f32fc..0000000
Binary files a/backend/static/maps/p16022coll230:429.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:431.png b/backend/static/maps/p16022coll230:431.png
deleted file mode 100644
index 0f31058..0000000
Binary files a/backend/static/maps/p16022coll230:431.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:438.png b/backend/static/maps/p16022coll230:438.png
deleted file mode 100644
index 755d750..0000000
Binary files a/backend/static/maps/p16022coll230:438.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:447.png b/backend/static/maps/p16022coll230:447.png
deleted file mode 100644
index 26435dc..0000000
Binary files a/backend/static/maps/p16022coll230:447.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:453.png b/backend/static/maps/p16022coll230:453.png
deleted file mode 100644
index c23f453..0000000
Binary files a/backend/static/maps/p16022coll230:453.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:488.png b/backend/static/maps/p16022coll230:488.png
deleted file mode 100644
index ad8b604..0000000
Binary files a/backend/static/maps/p16022coll230:488.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:493.png b/backend/static/maps/p16022coll230:493.png
deleted file mode 100644
index 76083a9..0000000
Binary files a/backend/static/maps/p16022coll230:493.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:498.png b/backend/static/maps/p16022coll230:498.png
deleted file mode 100644
index cf5277a..0000000
Binary files a/backend/static/maps/p16022coll230:498.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:510.png b/backend/static/maps/p16022coll230:510.png
deleted file mode 100644
index 748a354..0000000
Binary files a/backend/static/maps/p16022coll230:510.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:524.png b/backend/static/maps/p16022coll230:524.png
deleted file mode 100644
index dc7a2e2..0000000
Binary files a/backend/static/maps/p16022coll230:524.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:531.png b/backend/static/maps/p16022coll230:531.png
deleted file mode 100644
index 037967c..0000000
Binary files a/backend/static/maps/p16022coll230:531.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:536.png b/backend/static/maps/p16022coll230:536.png
deleted file mode 100644
index 9b7724e..0000000
Binary files a/backend/static/maps/p16022coll230:536.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:537.png b/backend/static/maps/p16022coll230:537.png
deleted file mode 100644
index c35c2af..0000000
Binary files a/backend/static/maps/p16022coll230:537.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:539.png b/backend/static/maps/p16022coll230:539.png
deleted file mode 100644
index 7fb52c5..0000000
Binary files a/backend/static/maps/p16022coll230:539.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:553.png b/backend/static/maps/p16022coll230:553.png
deleted file mode 100644
index 467b436..0000000
Binary files a/backend/static/maps/p16022coll230:553.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:588.png b/backend/static/maps/p16022coll230:588.png
deleted file mode 100644
index 9c17303..0000000
Binary files a/backend/static/maps/p16022coll230:588.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:590.png b/backend/static/maps/p16022coll230:590.png
deleted file mode 100644
index 8964950..0000000
Binary files a/backend/static/maps/p16022coll230:590.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:594.png b/backend/static/maps/p16022coll230:594.png
deleted file mode 100644
index 4cd5a7a..0000000
Binary files a/backend/static/maps/p16022coll230:594.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:627.png b/backend/static/maps/p16022coll230:627.png
deleted file mode 100644
index 14a5ac6..0000000
Binary files a/backend/static/maps/p16022coll230:627.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:649.png b/backend/static/maps/p16022coll230:649.png
deleted file mode 100644
index 99f32fc..0000000
Binary files a/backend/static/maps/p16022coll230:649.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:653.png b/backend/static/maps/p16022coll230:653.png
deleted file mode 100644
index 2bccaab..0000000
Binary files a/backend/static/maps/p16022coll230:653.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:662.png b/backend/static/maps/p16022coll230:662.png
deleted file mode 100644
index 7d65df7..0000000
Binary files a/backend/static/maps/p16022coll230:662.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:675.png b/backend/static/maps/p16022coll230:675.png
deleted file mode 100644
index 5b0f8fd..0000000
Binary files a/backend/static/maps/p16022coll230:675.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:679.png b/backend/static/maps/p16022coll230:679.png
deleted file mode 100644
index e844ee2..0000000
Binary files a/backend/static/maps/p16022coll230:679.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:707.png b/backend/static/maps/p16022coll230:707.png
deleted file mode 100644
index 1abae3b..0000000
Binary files a/backend/static/maps/p16022coll230:707.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:718.png b/backend/static/maps/p16022coll230:718.png
deleted file mode 100644
index 5e56028..0000000
Binary files a/backend/static/maps/p16022coll230:718.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:754.png b/backend/static/maps/p16022coll230:754.png
deleted file mode 100644
index 4aaa184..0000000
Binary files a/backend/static/maps/p16022coll230:754.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:767.png b/backend/static/maps/p16022coll230:767.png
deleted file mode 100644
index 174b813..0000000
Binary files a/backend/static/maps/p16022coll230:767.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:773.png b/backend/static/maps/p16022coll230:773.png
deleted file mode 100644
index 13b3800..0000000
Binary files a/backend/static/maps/p16022coll230:773.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:785.png b/backend/static/maps/p16022coll230:785.png
deleted file mode 100644
index 774d4f0..0000000
Binary files a/backend/static/maps/p16022coll230:785.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:797.png b/backend/static/maps/p16022coll230:797.png
deleted file mode 100644
index 1fec017..0000000
Binary files a/backend/static/maps/p16022coll230:797.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:800.png b/backend/static/maps/p16022coll230:800.png
deleted file mode 100644
index ce409ce..0000000
Binary files a/backend/static/maps/p16022coll230:800.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:808.png b/backend/static/maps/p16022coll230:808.png
deleted file mode 100644
index 84f5b00..0000000
Binary files a/backend/static/maps/p16022coll230:808.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:818.png b/backend/static/maps/p16022coll230:818.png
deleted file mode 100644
index 9c84936..0000000
Binary files a/backend/static/maps/p16022coll230:818.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:823.png b/backend/static/maps/p16022coll230:823.png
deleted file mode 100644
index 557fe4c..0000000
Binary files a/backend/static/maps/p16022coll230:823.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:853.png b/backend/static/maps/p16022coll230:853.png
deleted file mode 100644
index 7be6c1f..0000000
Binary files a/backend/static/maps/p16022coll230:853.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:859.png b/backend/static/maps/p16022coll230:859.png
deleted file mode 100644
index ced52c5..0000000
Binary files a/backend/static/maps/p16022coll230:859.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll230:978.png b/backend/static/maps/p16022coll230:978.png
deleted file mode 100644
index 6fea1d2..0000000
Binary files a/backend/static/maps/p16022coll230:978.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll231:1185.png b/backend/static/maps/p16022coll231:1185.png
deleted file mode 100644
index a0f9e6f..0000000
Binary files a/backend/static/maps/p16022coll231:1185.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll231:3399.png b/backend/static/maps/p16022coll231:3399.png
deleted file mode 100644
index 8fa72f8..0000000
Binary files a/backend/static/maps/p16022coll231:3399.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll231:35.png b/backend/static/maps/p16022coll231:35.png
deleted file mode 100644
index 867f5bd..0000000
Binary files a/backend/static/maps/p16022coll231:35.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll231:39.png b/backend/static/maps/p16022coll231:39.png
deleted file mode 100644
index 657f3c8..0000000
Binary files a/backend/static/maps/p16022coll231:39.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll244:245.png b/backend/static/maps/p16022coll244:245.png
deleted file mode 100644
index edbfe26..0000000
Binary files a/backend/static/maps/p16022coll244:245.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll244:313.png b/backend/static/maps/p16022coll244:313.png
deleted file mode 100644
index b78c010..0000000
Binary files a/backend/static/maps/p16022coll244:313.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll244:373.png b/backend/static/maps/p16022coll244:373.png
deleted file mode 100644
index 5f1549b..0000000
Binary files a/backend/static/maps/p16022coll244:373.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll244:380.png b/backend/static/maps/p16022coll244:380.png
deleted file mode 100644
index b78c010..0000000
Binary files a/backend/static/maps/p16022coll244:380.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll244:395.png b/backend/static/maps/p16022coll244:395.png
deleted file mode 100644
index 739cd01..0000000
Binary files a/backend/static/maps/p16022coll244:395.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll244:645.png b/backend/static/maps/p16022coll244:645.png
deleted file mode 100644
index b78c010..0000000
Binary files a/backend/static/maps/p16022coll244:645.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:1041.png b/backend/static/maps/p16022coll245:1041.png
deleted file mode 100644
index 4780c73..0000000
Binary files a/backend/static/maps/p16022coll245:1041.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:1047.png b/backend/static/maps/p16022coll245:1047.png
deleted file mode 100644
index 946642e..0000000
Binary files a/backend/static/maps/p16022coll245:1047.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:1055.png b/backend/static/maps/p16022coll245:1055.png
deleted file mode 100644
index f3de279..0000000
Binary files a/backend/static/maps/p16022coll245:1055.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:1062.png b/backend/static/maps/p16022coll245:1062.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/p16022coll245:1062.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:1081.png b/backend/static/maps/p16022coll245:1081.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/p16022coll245:1081.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:1087.png b/backend/static/maps/p16022coll245:1087.png
deleted file mode 100644
index bb4844b..0000000
Binary files a/backend/static/maps/p16022coll245:1087.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:1101.png b/backend/static/maps/p16022coll245:1101.png
deleted file mode 100644
index 9c65135..0000000
Binary files a/backend/static/maps/p16022coll245:1101.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:198.png b/backend/static/maps/p16022coll245:198.png
deleted file mode 100644
index 9a903ae..0000000
Binary files a/backend/static/maps/p16022coll245:198.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:679.png b/backend/static/maps/p16022coll245:679.png
deleted file mode 100644
index 34832ee..0000000
Binary files a/backend/static/maps/p16022coll245:679.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:858.png b/backend/static/maps/p16022coll245:858.png
deleted file mode 100644
index 5596c72..0000000
Binary files a/backend/static/maps/p16022coll245:858.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:860.png b/backend/static/maps/p16022coll245:860.png
deleted file mode 100644
index fcc257b..0000000
Binary files a/backend/static/maps/p16022coll245:860.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:865.png b/backend/static/maps/p16022coll245:865.png
deleted file mode 100644
index b9989c5..0000000
Binary files a/backend/static/maps/p16022coll245:865.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:867.png b/backend/static/maps/p16022coll245:867.png
deleted file mode 100644
index 5596c72..0000000
Binary files a/backend/static/maps/p16022coll245:867.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:884.png b/backend/static/maps/p16022coll245:884.png
deleted file mode 100644
index ab6ea35..0000000
Binary files a/backend/static/maps/p16022coll245:884.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:886.png b/backend/static/maps/p16022coll245:886.png
deleted file mode 100644
index c64f0de..0000000
Binary files a/backend/static/maps/p16022coll245:886.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:891.png b/backend/static/maps/p16022coll245:891.png
deleted file mode 100644
index 129aef7..0000000
Binary files a/backend/static/maps/p16022coll245:891.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:894.png b/backend/static/maps/p16022coll245:894.png
deleted file mode 100644
index 129aef7..0000000
Binary files a/backend/static/maps/p16022coll245:894.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:908.png b/backend/static/maps/p16022coll245:908.png
deleted file mode 100644
index ede8ea5..0000000
Binary files a/backend/static/maps/p16022coll245:908.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:914.png b/backend/static/maps/p16022coll245:914.png
deleted file mode 100644
index 5596c72..0000000
Binary files a/backend/static/maps/p16022coll245:914.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:916.png b/backend/static/maps/p16022coll245:916.png
deleted file mode 100644
index e65ff49..0000000
Binary files a/backend/static/maps/p16022coll245:916.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:968.png b/backend/static/maps/p16022coll245:968.png
deleted file mode 100644
index ab6ea35..0000000
Binary files a/backend/static/maps/p16022coll245:968.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:978.png b/backend/static/maps/p16022coll245:978.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/p16022coll245:978.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:982.png b/backend/static/maps/p16022coll245:982.png
deleted file mode 100644
index ab6ea35..0000000
Binary files a/backend/static/maps/p16022coll245:982.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:984.png b/backend/static/maps/p16022coll245:984.png
deleted file mode 100644
index a296ac5..0000000
Binary files a/backend/static/maps/p16022coll245:984.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll245:986.png b/backend/static/maps/p16022coll245:986.png
deleted file mode 100644
index 9e58e5a..0000000
Binary files a/backend/static/maps/p16022coll245:986.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:109.png b/backend/static/maps/p16022coll246:109.png
deleted file mode 100644
index 3c197c2..0000000
Binary files a/backend/static/maps/p16022coll246:109.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:178.png b/backend/static/maps/p16022coll246:178.png
deleted file mode 100644
index 37fc3fb..0000000
Binary files a/backend/static/maps/p16022coll246:178.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:211.png b/backend/static/maps/p16022coll246:211.png
deleted file mode 100644
index b2c5e47..0000000
Binary files a/backend/static/maps/p16022coll246:211.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:219.png b/backend/static/maps/p16022coll246:219.png
deleted file mode 100644
index e2e4228..0000000
Binary files a/backend/static/maps/p16022coll246:219.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:274.png b/backend/static/maps/p16022coll246:274.png
deleted file mode 100644
index 810fb63..0000000
Binary files a/backend/static/maps/p16022coll246:274.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:288.png b/backend/static/maps/p16022coll246:288.png
deleted file mode 100644
index b2c5e47..0000000
Binary files a/backend/static/maps/p16022coll246:288.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:294.png b/backend/static/maps/p16022coll246:294.png
deleted file mode 100644
index f6ab4b8..0000000
Binary files a/backend/static/maps/p16022coll246:294.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:302.png b/backend/static/maps/p16022coll246:302.png
deleted file mode 100644
index e2e4228..0000000
Binary files a/backend/static/maps/p16022coll246:302.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:305.png b/backend/static/maps/p16022coll246:305.png
deleted file mode 100644
index f7658f3..0000000
Binary files a/backend/static/maps/p16022coll246:305.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:354.png b/backend/static/maps/p16022coll246:354.png
deleted file mode 100644
index eb7a3d7..0000000
Binary files a/backend/static/maps/p16022coll246:354.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:364.png b/backend/static/maps/p16022coll246:364.png
deleted file mode 100644
index b2e5720..0000000
Binary files a/backend/static/maps/p16022coll246:364.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:414.png b/backend/static/maps/p16022coll246:414.png
deleted file mode 100644
index 8ced00b..0000000
Binary files a/backend/static/maps/p16022coll246:414.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:449.png b/backend/static/maps/p16022coll246:449.png
deleted file mode 100644
index 60fc7b0..0000000
Binary files a/backend/static/maps/p16022coll246:449.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll246:72.png b/backend/static/maps/p16022coll246:72.png
deleted file mode 100644
index 98b9bef..0000000
Binary files a/backend/static/maps/p16022coll246:72.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll247:113.png b/backend/static/maps/p16022coll247:113.png
deleted file mode 100644
index 91d6024..0000000
Binary files a/backend/static/maps/p16022coll247:113.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll247:160.png b/backend/static/maps/p16022coll247:160.png
deleted file mode 100644
index f846479..0000000
Binary files a/backend/static/maps/p16022coll247:160.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll247:200.png b/backend/static/maps/p16022coll247:200.png
deleted file mode 100644
index 85767bc..0000000
Binary files a/backend/static/maps/p16022coll247:200.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll247:201.png b/backend/static/maps/p16022coll247:201.png
deleted file mode 100644
index f846479..0000000
Binary files a/backend/static/maps/p16022coll247:201.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll247:249.png b/backend/static/maps/p16022coll247:249.png
deleted file mode 100644
index f846479..0000000
Binary files a/backend/static/maps/p16022coll247:249.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll247:276.png b/backend/static/maps/p16022coll247:276.png
deleted file mode 100644
index f846479..0000000
Binary files a/backend/static/maps/p16022coll247:276.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll247:35.png b/backend/static/maps/p16022coll247:35.png
deleted file mode 100644
index a2c6bd2..0000000
Binary files a/backend/static/maps/p16022coll247:35.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll247:59.png b/backend/static/maps/p16022coll247:59.png
deleted file mode 100644
index 91d6024..0000000
Binary files a/backend/static/maps/p16022coll247:59.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll247:65.png b/backend/static/maps/p16022coll247:65.png
deleted file mode 100644
index 91d6024..0000000
Binary files a/backend/static/maps/p16022coll247:65.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll247:92.png b/backend/static/maps/p16022coll247:92.png
deleted file mode 100644
index b1b83bc..0000000
Binary files a/backend/static/maps/p16022coll247:92.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll247:98.png b/backend/static/maps/p16022coll247:98.png
deleted file mode 100644
index 91d6024..0000000
Binary files a/backend/static/maps/p16022coll247:98.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll289:10.png b/backend/static/maps/p16022coll289:10.png
deleted file mode 100644
index 6199455..0000000
Binary files a/backend/static/maps/p16022coll289:10.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll289:12.png b/backend/static/maps/p16022coll289:12.png
deleted file mode 100644
index 6199455..0000000
Binary files a/backend/static/maps/p16022coll289:12.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll289:13.png b/backend/static/maps/p16022coll289:13.png
deleted file mode 100644
index 6199455..0000000
Binary files a/backend/static/maps/p16022coll289:13.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll289:14.png b/backend/static/maps/p16022coll289:14.png
deleted file mode 100644
index 6199455..0000000
Binary files a/backend/static/maps/p16022coll289:14.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll289:15.png b/backend/static/maps/p16022coll289:15.png
deleted file mode 100644
index 6199455..0000000
Binary files a/backend/static/maps/p16022coll289:15.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll289:16.png b/backend/static/maps/p16022coll289:16.png
deleted file mode 100644
index 6199455..0000000
Binary files a/backend/static/maps/p16022coll289:16.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll289:17.png b/backend/static/maps/p16022coll289:17.png
deleted file mode 100644
index 6199455..0000000
Binary files a/backend/static/maps/p16022coll289:17.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll289:18.png b/backend/static/maps/p16022coll289:18.png
deleted file mode 100644
index 6199455..0000000
Binary files a/backend/static/maps/p16022coll289:18.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll289:33.png b/backend/static/maps/p16022coll289:33.png
deleted file mode 100644
index 6199455..0000000
Binary files a/backend/static/maps/p16022coll289:33.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-124.png b/backend/static/maps/p16022coll55-id-124.png
deleted file mode 100644
index 5d22a3e..0000000
Binary files a/backend/static/maps/p16022coll55-id-124.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-130.png b/backend/static/maps/p16022coll55-id-130.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-130.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-135.png b/backend/static/maps/p16022coll55-id-135.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-135.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-136.png b/backend/static/maps/p16022coll55-id-136.png
deleted file mode 100644
index 809d3cc..0000000
Binary files a/backend/static/maps/p16022coll55-id-136.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-143.png b/backend/static/maps/p16022coll55-id-143.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-143.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-152.png b/backend/static/maps/p16022coll55-id-152.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-152.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-161.png b/backend/static/maps/p16022coll55-id-161.png
deleted file mode 100644
index 815617f..0000000
Binary files a/backend/static/maps/p16022coll55-id-161.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-170.png b/backend/static/maps/p16022coll55-id-170.png
deleted file mode 100644
index 9435e05..0000000
Binary files a/backend/static/maps/p16022coll55-id-170.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1722.png b/backend/static/maps/p16022coll55-id-1722.png
deleted file mode 100644
index 8a226f2..0000000
Binary files a/backend/static/maps/p16022coll55-id-1722.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1726.png b/backend/static/maps/p16022coll55-id-1726.png
deleted file mode 100644
index 1f49e25..0000000
Binary files a/backend/static/maps/p16022coll55-id-1726.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1727.png b/backend/static/maps/p16022coll55-id-1727.png
deleted file mode 100644
index 97bb9eb..0000000
Binary files a/backend/static/maps/p16022coll55-id-1727.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1728.png b/backend/static/maps/p16022coll55-id-1728.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-1728.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1730.png b/backend/static/maps/p16022coll55-id-1730.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-1730.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1732.png b/backend/static/maps/p16022coll55-id-1732.png
deleted file mode 100644
index 348d300..0000000
Binary files a/backend/static/maps/p16022coll55-id-1732.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1734.png b/backend/static/maps/p16022coll55-id-1734.png
deleted file mode 100644
index 547896c..0000000
Binary files a/backend/static/maps/p16022coll55-id-1734.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1735.png b/backend/static/maps/p16022coll55-id-1735.png
deleted file mode 100644
index c4f2ce1..0000000
Binary files a/backend/static/maps/p16022coll55-id-1735.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1736.png b/backend/static/maps/p16022coll55-id-1736.png
deleted file mode 100644
index 809d3cc..0000000
Binary files a/backend/static/maps/p16022coll55-id-1736.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1738.png b/backend/static/maps/p16022coll55-id-1738.png
deleted file mode 100644
index 84bd378..0000000
Binary files a/backend/static/maps/p16022coll55-id-1738.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1739.png b/backend/static/maps/p16022coll55-id-1739.png
deleted file mode 100644
index 6fb2b4d..0000000
Binary files a/backend/static/maps/p16022coll55-id-1739.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1740.png b/backend/static/maps/p16022coll55-id-1740.png
deleted file mode 100644
index 9ebdbcb..0000000
Binary files a/backend/static/maps/p16022coll55-id-1740.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1742.png b/backend/static/maps/p16022coll55-id-1742.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-1742.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1743.png b/backend/static/maps/p16022coll55-id-1743.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-1743.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1745.png b/backend/static/maps/p16022coll55-id-1745.png
deleted file mode 100644
index 13a0938..0000000
Binary files a/backend/static/maps/p16022coll55-id-1745.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1748.png b/backend/static/maps/p16022coll55-id-1748.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-1748.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1749.png b/backend/static/maps/p16022coll55-id-1749.png
deleted file mode 100644
index 2745dfc..0000000
Binary files a/backend/static/maps/p16022coll55-id-1749.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-175.png b/backend/static/maps/p16022coll55-id-175.png
deleted file mode 100644
index e736b32..0000000
Binary files a/backend/static/maps/p16022coll55-id-175.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1751.png b/backend/static/maps/p16022coll55-id-1751.png
deleted file mode 100644
index 97bb9eb..0000000
Binary files a/backend/static/maps/p16022coll55-id-1751.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1752.png b/backend/static/maps/p16022coll55-id-1752.png
deleted file mode 100644
index f242a16..0000000
Binary files a/backend/static/maps/p16022coll55-id-1752.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1753.png b/backend/static/maps/p16022coll55-id-1753.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-1753.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1754.png b/backend/static/maps/p16022coll55-id-1754.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-1754.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1755.png b/backend/static/maps/p16022coll55-id-1755.png
deleted file mode 100644
index 4111e8b..0000000
Binary files a/backend/static/maps/p16022coll55-id-1755.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1757.png b/backend/static/maps/p16022coll55-id-1757.png
deleted file mode 100644
index 4111e8b..0000000
Binary files a/backend/static/maps/p16022coll55-id-1757.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-1758.png b/backend/static/maps/p16022coll55-id-1758.png
deleted file mode 100644
index 97bb9eb..0000000
Binary files a/backend/static/maps/p16022coll55-id-1758.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-176.png b/backend/static/maps/p16022coll55-id-176.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-176.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-177.png b/backend/static/maps/p16022coll55-id-177.png
deleted file mode 100644
index c4f2ce1..0000000
Binary files a/backend/static/maps/p16022coll55-id-177.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-179.png b/backend/static/maps/p16022coll55-id-179.png
deleted file mode 100644
index 7b65e4f..0000000
Binary files a/backend/static/maps/p16022coll55-id-179.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-180.png b/backend/static/maps/p16022coll55-id-180.png
deleted file mode 100644
index f55d27b..0000000
Binary files a/backend/static/maps/p16022coll55-id-180.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-188.png b/backend/static/maps/p16022coll55-id-188.png
deleted file mode 100644
index c4f2ce1..0000000
Binary files a/backend/static/maps/p16022coll55-id-188.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-190.png b/backend/static/maps/p16022coll55-id-190.png
deleted file mode 100644
index 809d3cc..0000000
Binary files a/backend/static/maps/p16022coll55-id-190.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-51.png b/backend/static/maps/p16022coll55-id-51.png
deleted file mode 100644
index 4111e8b..0000000
Binary files a/backend/static/maps/p16022coll55-id-51.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-52.png b/backend/static/maps/p16022coll55-id-52.png
deleted file mode 100644
index 51c6b10..0000000
Binary files a/backend/static/maps/p16022coll55-id-52.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-53.png b/backend/static/maps/p16022coll55-id-53.png
deleted file mode 100644
index 13a0938..0000000
Binary files a/backend/static/maps/p16022coll55-id-53.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-55.png b/backend/static/maps/p16022coll55-id-55.png
deleted file mode 100644
index 38ff737..0000000
Binary files a/backend/static/maps/p16022coll55-id-55.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-56.png b/backend/static/maps/p16022coll55-id-56.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-56.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-57.png b/backend/static/maps/p16022coll55-id-57.png
deleted file mode 100644
index 809d3cc..0000000
Binary files a/backend/static/maps/p16022coll55-id-57.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-72.png b/backend/static/maps/p16022coll55-id-72.png
deleted file mode 100644
index 7b65e4f..0000000
Binary files a/backend/static/maps/p16022coll55-id-72.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-76.png b/backend/static/maps/p16022coll55-id-76.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-76.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-77.png b/backend/static/maps/p16022coll55-id-77.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-77.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-78.png b/backend/static/maps/p16022coll55-id-78.png
deleted file mode 100644
index 366d372..0000000
Binary files a/backend/static/maps/p16022coll55-id-78.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-80.png b/backend/static/maps/p16022coll55-id-80.png
deleted file mode 100644
index 150a7ec..0000000
Binary files a/backend/static/maps/p16022coll55-id-80.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll55-id-88.png b/backend/static/maps/p16022coll55-id-88.png
deleted file mode 100644
index 348d300..0000000
Binary files a/backend/static/maps/p16022coll55-id-88.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll583:1949.png b/backend/static/maps/p16022coll583:1949.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/p16022coll583:1949.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll583:2052.png b/backend/static/maps/p16022coll583:2052.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/p16022coll583:2052.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll583:592.png b/backend/static/maps/p16022coll583:592.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/p16022coll583:592.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll583:715.png b/backend/static/maps/p16022coll583:715.png
deleted file mode 100644
index 78cd11d..0000000
Binary files a/backend/static/maps/p16022coll583:715.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll6-id-1.png b/backend/static/maps/p16022coll6-id-1.png
deleted file mode 100644
index e5d10db..0000000
Binary files a/backend/static/maps/p16022coll6-id-1.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll6-id-1014.png b/backend/static/maps/p16022coll6-id-1014.png
deleted file mode 100644
index e5d10db..0000000
Binary files a/backend/static/maps/p16022coll6-id-1014.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll6-id-1581.png b/backend/static/maps/p16022coll6-id-1581.png
deleted file mode 100644
index 52630ad..0000000
Binary files a/backend/static/maps/p16022coll6-id-1581.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll6-id-180.png b/backend/static/maps/p16022coll6-id-180.png
deleted file mode 100644
index e5d10db..0000000
Binary files a/backend/static/maps/p16022coll6-id-180.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll6-id-1972.png b/backend/static/maps/p16022coll6-id-1972.png
deleted file mode 100644
index e5d10db..0000000
Binary files a/backend/static/maps/p16022coll6-id-1972.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll6-id-1973.png b/backend/static/maps/p16022coll6-id-1973.png
deleted file mode 100644
index e5d10db..0000000
Binary files a/backend/static/maps/p16022coll6-id-1973.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll6-id-1974.png b/backend/static/maps/p16022coll6-id-1974.png
deleted file mode 100644
index e5d10db..0000000
Binary files a/backend/static/maps/p16022coll6-id-1974.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll6-id-1975.png b/backend/static/maps/p16022coll6-id-1975.png
deleted file mode 100644
index e5d10db..0000000
Binary files a/backend/static/maps/p16022coll6-id-1975.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll6-id-2.png b/backend/static/maps/p16022coll6-id-2.png
deleted file mode 100644
index e5d10db..0000000
Binary files a/backend/static/maps/p16022coll6-id-2.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll6-id-3224.png b/backend/static/maps/p16022coll6-id-3224.png
deleted file mode 100644
index e5d10db..0000000
Binary files a/backend/static/maps/p16022coll6-id-3224.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll6-id-496.png b/backend/static/maps/p16022coll6-id-496.png
deleted file mode 100644
index e5d10db..0000000
Binary files a/backend/static/maps/p16022coll6-id-496.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll6-id-587.png b/backend/static/maps/p16022coll6-id-587.png
deleted file mode 100644
index e5d10db..0000000
Binary files a/backend/static/maps/p16022coll6-id-587.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll624:258.png b/backend/static/maps/p16022coll624:258.png
deleted file mode 100644
index 9f2f265..0000000
Binary files a/backend/static/maps/p16022coll624:258.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll624:541.png b/backend/static/maps/p16022coll624:541.png
deleted file mode 100644
index 4459789..0000000
Binary files a/backend/static/maps/p16022coll624:541.png and /dev/null differ
diff --git a/backend/static/maps/p16022coll624:887.png b/backend/static/maps/p16022coll624:887.png
deleted file mode 100644
index 7639e41..0000000
Binary files a/backend/static/maps/p16022coll624:887.png and /dev/null differ
diff --git a/backend/static/maps/pmh6-gzg6.png b/backend/static/maps/pmh6-gzg6.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/pmh6-gzg6.png and /dev/null differ
diff --git a/backend/static/maps/pst_0011210485_33609.png b/backend/static/maps/pst_0011210485_33609.png
deleted file mode 100644
index 6b5be2d..0000000
Binary files a/backend/static/maps/pst_0011210485_33609.png and /dev/null differ
diff --git a/backend/static/maps/pstems_0052767067_eldersridge_08_pitt.png b/backend/static/maps/pstems_0052767067_eldersridge_08_pitt.png
deleted file mode 100644
index 40bb86d..0000000
Binary files a/backend/static/maps/pstems_0052767067_eldersridge_08_pitt.png and /dev/null differ
diff --git a/backend/static/maps/pstems_0052767067_eldersridge_08_uf.png b/backend/static/maps/pstems_0052767067_eldersridge_08_uf.png
deleted file mode 100644
index 40bb86d..0000000
Binary files a/backend/static/maps/pstems_0052767067_eldersridge_08_uf.png and /dev/null differ
diff --git a/backend/static/maps/pstems_0052767067_punxsutawney_06_brk.png b/backend/static/maps/pstems_0052767067_punxsutawney_06_brk.png
deleted file mode 100644
index f758c86..0000000
Binary files a/backend/static/maps/pstems_0052767067_punxsutawney_06_brk.png and /dev/null differ
diff --git a/backend/static/maps/pstems_0052767067_punxsutawney_06_lf.png b/backend/static/maps/pstems_0052767067_punxsutawney_06_lf.png
deleted file mode 100644
index f758c86..0000000
Binary files a/backend/static/maps/pstems_0052767067_punxsutawney_06_lf.png and /dev/null differ
diff --git a/backend/static/maps/pstems_0052767067_punxsutawney_06_lk.png b/backend/static/maps/pstems_0052767067_punxsutawney_06_lk.png
deleted file mode 100644
index f758c86..0000000
Binary files a/backend/static/maps/pstems_0052767067_punxsutawney_06_lk.png and /dev/null differ
diff --git a/backend/static/maps/pstems_0052767067_punxsutawney_06_uf.png b/backend/static/maps/pstems_0052767067_punxsutawney_06_uf.png
deleted file mode 100644
index f758c86..0000000
Binary files a/backend/static/maps/pstems_0052767067_punxsutawney_06_uf.png and /dev/null differ
diff --git a/backend/static/maps/r9q2-naq3.png b/backend/static/maps/r9q2-naq3.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/r9q2-naq3.png and /dev/null differ
diff --git a/backend/static/maps/rbvn-uw5j.png b/backend/static/maps/rbvn-uw5j.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/rbvn-uw5j.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:15908.png b/backend/static/maps/rutgers-lib:15908.png
deleted file mode 100644
index 1884534..0000000
Binary files a/backend/static/maps/rutgers-lib:15908.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:16021.png b/backend/static/maps/rutgers-lib:16021.png
deleted file mode 100644
index bb2894a..0000000
Binary files a/backend/static/maps/rutgers-lib:16021.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:16113.png b/backend/static/maps/rutgers-lib:16113.png
deleted file mode 100644
index 1884534..0000000
Binary files a/backend/static/maps/rutgers-lib:16113.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:19916.png b/backend/static/maps/rutgers-lib:19916.png
deleted file mode 100644
index 3c89c3f..0000000
Binary files a/backend/static/maps/rutgers-lib:19916.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:20219.png b/backend/static/maps/rutgers-lib:20219.png
deleted file mode 100644
index 9d457e4..0000000
Binary files a/backend/static/maps/rutgers-lib:20219.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:20220.png b/backend/static/maps/rutgers-lib:20220.png
deleted file mode 100644
index 9d457e4..0000000
Binary files a/backend/static/maps/rutgers-lib:20220.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:33920.png b/backend/static/maps/rutgers-lib:33920.png
deleted file mode 100644
index 02cdb46..0000000
Binary files a/backend/static/maps/rutgers-lib:33920.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:36702.png b/backend/static/maps/rutgers-lib:36702.png
deleted file mode 100644
index 7bd15ac..0000000
Binary files a/backend/static/maps/rutgers-lib:36702.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:36904.png b/backend/static/maps/rutgers-lib:36904.png
deleted file mode 100644
index 02cdb46..0000000
Binary files a/backend/static/maps/rutgers-lib:36904.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:51863.png b/backend/static/maps/rutgers-lib:51863.png
deleted file mode 100644
index 1884534..0000000
Binary files a/backend/static/maps/rutgers-lib:51863.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:56971.png b/backend/static/maps/rutgers-lib:56971.png
deleted file mode 100644
index 7bd15ac..0000000
Binary files a/backend/static/maps/rutgers-lib:56971.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:56978.png b/backend/static/maps/rutgers-lib:56978.png
deleted file mode 100644
index 7bd15ac..0000000
Binary files a/backend/static/maps/rutgers-lib:56978.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:57202.png b/backend/static/maps/rutgers-lib:57202.png
deleted file mode 100644
index 02cdb46..0000000
Binary files a/backend/static/maps/rutgers-lib:57202.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:57206.png b/backend/static/maps/rutgers-lib:57206.png
deleted file mode 100644
index 02cdb46..0000000
Binary files a/backend/static/maps/rutgers-lib:57206.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:57216.png b/backend/static/maps/rutgers-lib:57216.png
deleted file mode 100644
index d0a85f9..0000000
Binary files a/backend/static/maps/rutgers-lib:57216.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:57219.png b/backend/static/maps/rutgers-lib:57219.png
deleted file mode 100644
index d0a85f9..0000000
Binary files a/backend/static/maps/rutgers-lib:57219.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:57230.png b/backend/static/maps/rutgers-lib:57230.png
deleted file mode 100644
index d0a85f9..0000000
Binary files a/backend/static/maps/rutgers-lib:57230.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:57245.png b/backend/static/maps/rutgers-lib:57245.png
deleted file mode 100644
index 02cdb46..0000000
Binary files a/backend/static/maps/rutgers-lib:57245.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:57996.png b/backend/static/maps/rutgers-lib:57996.png
deleted file mode 100644
index 48d981c..0000000
Binary files a/backend/static/maps/rutgers-lib:57996.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:58641.png b/backend/static/maps/rutgers-lib:58641.png
deleted file mode 100644
index 7bd15ac..0000000
Binary files a/backend/static/maps/rutgers-lib:58641.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:58644.png b/backend/static/maps/rutgers-lib:58644.png
deleted file mode 100644
index 7bd15ac..0000000
Binary files a/backend/static/maps/rutgers-lib:58644.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:58800.png b/backend/static/maps/rutgers-lib:58800.png
deleted file mode 100644
index 48d981c..0000000
Binary files a/backend/static/maps/rutgers-lib:58800.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:58809.png b/backend/static/maps/rutgers-lib:58809.png
deleted file mode 100644
index 92ed704..0000000
Binary files a/backend/static/maps/rutgers-lib:58809.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:58810.png b/backend/static/maps/rutgers-lib:58810.png
deleted file mode 100644
index 7bd15ac..0000000
Binary files a/backend/static/maps/rutgers-lib:58810.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:63941.png b/backend/static/maps/rutgers-lib:63941.png
deleted file mode 100644
index 7bd15ac..0000000
Binary files a/backend/static/maps/rutgers-lib:63941.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:63990.png b/backend/static/maps/rutgers-lib:63990.png
deleted file mode 100644
index 7bd15ac..0000000
Binary files a/backend/static/maps/rutgers-lib:63990.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:63991.png b/backend/static/maps/rutgers-lib:63991.png
deleted file mode 100644
index 7bd15ac..0000000
Binary files a/backend/static/maps/rutgers-lib:63991.png and /dev/null differ
diff --git a/backend/static/maps/rutgers-lib:64298.png b/backend/static/maps/rutgers-lib:64298.png
deleted file mode 100644
index 681067f..0000000
Binary files a/backend/static/maps/rutgers-lib:64298.png and /dev/null differ
diff --git a/backend/static/maps/stanford-bb852ks2473.png b/backend/static/maps/stanford-bb852ks2473.png
deleted file mode 100644
index c2ae15a..0000000
Binary files a/backend/static/maps/stanford-bb852ks2473.png and /dev/null differ
diff --git a/backend/static/maps/stanford-bd291tg5997.png b/backend/static/maps/stanford-bd291tg5997.png
deleted file mode 100644
index 70dd0eb..0000000
Binary files a/backend/static/maps/stanford-bd291tg5997.png and /dev/null differ
diff --git a/backend/static/maps/stanford-bf979fz8729.png b/backend/static/maps/stanford-bf979fz8729.png
deleted file mode 100644
index 286d1fd..0000000
Binary files a/backend/static/maps/stanford-bf979fz8729.png and /dev/null differ
diff --git a/backend/static/maps/stanford-bg023wx0903.png b/backend/static/maps/stanford-bg023wx0903.png
deleted file mode 100644
index 15bc99b..0000000
Binary files a/backend/static/maps/stanford-bg023wx0903.png and /dev/null differ
diff --git a/backend/static/maps/stanford-bh077jm8995.png b/backend/static/maps/stanford-bh077jm8995.png
deleted file mode 100644
index da18ae3..0000000
Binary files a/backend/static/maps/stanford-bh077jm8995.png and /dev/null differ
diff --git a/backend/static/maps/stanford-bk279jt9935.png b/backend/static/maps/stanford-bk279jt9935.png
deleted file mode 100644
index 4945aaa..0000000
Binary files a/backend/static/maps/stanford-bk279jt9935.png and /dev/null differ
diff --git a/backend/static/maps/stanford-bm750zk5408.png b/backend/static/maps/stanford-bm750zk5408.png
deleted file mode 100644
index 4945aaa..0000000
Binary files a/backend/static/maps/stanford-bm750zk5408.png and /dev/null differ
diff --git a/backend/static/maps/stanford-br080kw9577.png b/backend/static/maps/stanford-br080kw9577.png
deleted file mode 100644
index d6a687c..0000000
Binary files a/backend/static/maps/stanford-br080kw9577.png and /dev/null differ
diff --git a/backend/static/maps/stanford-br749py7973.png b/backend/static/maps/stanford-br749py7973.png
deleted file mode 100644
index f6cc6cc..0000000
Binary files a/backend/static/maps/stanford-br749py7973.png and /dev/null differ
diff --git a/backend/static/maps/stanford-bt802nq3342.png b/backend/static/maps/stanford-bt802nq3342.png
deleted file mode 100644
index adfe2b9..0000000
Binary files a/backend/static/maps/stanford-bt802nq3342.png and /dev/null differ
diff --git a/backend/static/maps/stanford-bx475ys0831.png b/backend/static/maps/stanford-bx475ys0831.png
deleted file mode 100644
index fc01583..0000000
Binary files a/backend/static/maps/stanford-bx475ys0831.png and /dev/null differ
diff --git a/backend/static/maps/stanford-by235yw4950.png b/backend/static/maps/stanford-by235yw4950.png
deleted file mode 100644
index 4945aaa..0000000
Binary files a/backend/static/maps/stanford-by235yw4950.png and /dev/null differ
diff --git a/backend/static/maps/stanford-bz016zj5513.png b/backend/static/maps/stanford-bz016zj5513.png
deleted file mode 100644
index d51aaee..0000000
Binary files a/backend/static/maps/stanford-bz016zj5513.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cb530jj1527.png b/backend/static/maps/stanford-cb530jj1527.png
deleted file mode 100644
index b543977..0000000
Binary files a/backend/static/maps/stanford-cb530jj1527.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cc024xw2688.png b/backend/static/maps/stanford-cc024xw2688.png
deleted file mode 100644
index f8e32af..0000000
Binary files a/backend/static/maps/stanford-cc024xw2688.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cc300tj1620.png b/backend/static/maps/stanford-cc300tj1620.png
deleted file mode 100644
index cedf46d..0000000
Binary files a/backend/static/maps/stanford-cc300tj1620.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cc475wq7118.png b/backend/static/maps/stanford-cc475wq7118.png
deleted file mode 100644
index 47aaa80..0000000
Binary files a/backend/static/maps/stanford-cc475wq7118.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cc513sx7077.png b/backend/static/maps/stanford-cc513sx7077.png
deleted file mode 100644
index 56eca51..0000000
Binary files a/backend/static/maps/stanford-cc513sx7077.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cd620rf8061.png b/backend/static/maps/stanford-cd620rf8061.png
deleted file mode 100644
index 77ec0d0..0000000
Binary files a/backend/static/maps/stanford-cd620rf8061.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cd999gq2166.png b/backend/static/maps/stanford-cd999gq2166.png
deleted file mode 100644
index f396d63..0000000
Binary files a/backend/static/maps/stanford-cd999gq2166.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cf418nb1589.png b/backend/static/maps/stanford-cf418nb1589.png
deleted file mode 100644
index 6a9e5b2..0000000
Binary files a/backend/static/maps/stanford-cf418nb1589.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cf420zs7030.png b/backend/static/maps/stanford-cf420zs7030.png
deleted file mode 100644
index a886e9e..0000000
Binary files a/backend/static/maps/stanford-cf420zs7030.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cg937fj6800.png b/backend/static/maps/stanford-cg937fj6800.png
deleted file mode 100644
index 47f1363..0000000
Binary files a/backend/static/maps/stanford-cg937fj6800.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ch447sc4297.png b/backend/static/maps/stanford-ch447sc4297.png
deleted file mode 100644
index fd467f3..0000000
Binary files a/backend/static/maps/stanford-ch447sc4297.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ck577wr4532.png b/backend/static/maps/stanford-ck577wr4532.png
deleted file mode 100644
index e6b9053..0000000
Binary files a/backend/static/maps/stanford-ck577wr4532.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cn621mb7977.png b/backend/static/maps/stanford-cn621mb7977.png
deleted file mode 100644
index 0aefec9..0000000
Binary files a/backend/static/maps/stanford-cn621mb7977.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cn795dv1463.png b/backend/static/maps/stanford-cn795dv1463.png
deleted file mode 100644
index 73cb57c..0000000
Binary files a/backend/static/maps/stanford-cn795dv1463.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cp440my7947.png b/backend/static/maps/stanford-cp440my7947.png
deleted file mode 100644
index eaea6d5..0000000
Binary files a/backend/static/maps/stanford-cp440my7947.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cp962wc2338.png b/backend/static/maps/stanford-cp962wc2338.png
deleted file mode 100644
index ce7d53d..0000000
Binary files a/backend/static/maps/stanford-cp962wc2338.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cq255hv2452.png b/backend/static/maps/stanford-cq255hv2452.png
deleted file mode 100644
index e3c5f6d..0000000
Binary files a/backend/static/maps/stanford-cq255hv2452.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cr928nk7710.png b/backend/static/maps/stanford-cr928nk7710.png
deleted file mode 100644
index fc29496..0000000
Binary files a/backend/static/maps/stanford-cr928nk7710.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cv470cy1140.png b/backend/static/maps/stanford-cv470cy1140.png
deleted file mode 100644
index d1579bf..0000000
Binary files a/backend/static/maps/stanford-cv470cy1140.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cv676dy5796.png b/backend/static/maps/stanford-cv676dy5796.png
deleted file mode 100644
index 7925ce2..0000000
Binary files a/backend/static/maps/stanford-cv676dy5796.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cv797jr3039.png b/backend/static/maps/stanford-cv797jr3039.png
deleted file mode 100644
index 4b3ffe4..0000000
Binary files a/backend/static/maps/stanford-cv797jr3039.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cw298nk7833.png b/backend/static/maps/stanford-cw298nk7833.png
deleted file mode 100644
index d6a687c..0000000
Binary files a/backend/static/maps/stanford-cw298nk7833.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cw455nd1658.png b/backend/static/maps/stanford-cw455nd1658.png
deleted file mode 100644
index 18da9dc..0000000
Binary files a/backend/static/maps/stanford-cw455nd1658.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cw906dp5331.png b/backend/static/maps/stanford-cw906dp5331.png
deleted file mode 100644
index 795bd27..0000000
Binary files a/backend/static/maps/stanford-cw906dp5331.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cx265bg1032.png b/backend/static/maps/stanford-cx265bg1032.png
deleted file mode 100644
index dfb2992..0000000
Binary files a/backend/static/maps/stanford-cx265bg1032.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cx470qx4211.png b/backend/static/maps/stanford-cx470qx4211.png
deleted file mode 100644
index dee7dda..0000000
Binary files a/backend/static/maps/stanford-cx470qx4211.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cx668xc0429.png b/backend/static/maps/stanford-cx668xc0429.png
deleted file mode 100644
index 5ae9c17..0000000
Binary files a/backend/static/maps/stanford-cx668xc0429.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cx756hg5532.png b/backend/static/maps/stanford-cx756hg5532.png
deleted file mode 100644
index f31f366..0000000
Binary files a/backend/static/maps/stanford-cx756hg5532.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cy636sh3167.png b/backend/static/maps/stanford-cy636sh3167.png
deleted file mode 100644
index 3838e4e..0000000
Binary files a/backend/static/maps/stanford-cy636sh3167.png and /dev/null differ
diff --git a/backend/static/maps/stanford-cz261pg6615.png b/backend/static/maps/stanford-cz261pg6615.png
deleted file mode 100644
index 08c4192..0000000
Binary files a/backend/static/maps/stanford-cz261pg6615.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dg724zh8245.png b/backend/static/maps/stanford-dg724zh8245.png
deleted file mode 100644
index c2ae15a..0000000
Binary files a/backend/static/maps/stanford-dg724zh8245.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dg763sb9932.png b/backend/static/maps/stanford-dg763sb9932.png
deleted file mode 100644
index 061624c..0000000
Binary files a/backend/static/maps/stanford-dg763sb9932.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dh175qg8129.png b/backend/static/maps/stanford-dh175qg8129.png
deleted file mode 100644
index f4de99f..0000000
Binary files a/backend/static/maps/stanford-dh175qg8129.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dj677cf3811.png b/backend/static/maps/stanford-dj677cf3811.png
deleted file mode 100644
index 7a9f748..0000000
Binary files a/backend/static/maps/stanford-dj677cf3811.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dk107wh4157.png b/backend/static/maps/stanford-dk107wh4157.png
deleted file mode 100644
index 00feef6..0000000
Binary files a/backend/static/maps/stanford-dk107wh4157.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dk125cs0147.png b/backend/static/maps/stanford-dk125cs0147.png
deleted file mode 100644
index 73cb57c..0000000
Binary files a/backend/static/maps/stanford-dk125cs0147.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dk504jq8677.png b/backend/static/maps/stanford-dk504jq8677.png
deleted file mode 100644
index 509ff01..0000000
Binary files a/backend/static/maps/stanford-dk504jq8677.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dk937nd7564.png b/backend/static/maps/stanford-dk937nd7564.png
deleted file mode 100644
index 200cdb5..0000000
Binary files a/backend/static/maps/stanford-dk937nd7564.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dm099yf2270.png b/backend/static/maps/stanford-dm099yf2270.png
deleted file mode 100644
index cd9d2d8..0000000
Binary files a/backend/static/maps/stanford-dm099yf2270.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dn768qz2883.png b/backend/static/maps/stanford-dn768qz2883.png
deleted file mode 100644
index f1cb632..0000000
Binary files a/backend/static/maps/stanford-dn768qz2883.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dq079zg0547.png b/backend/static/maps/stanford-dq079zg0547.png
deleted file mode 100644
index 809ea55..0000000
Binary files a/backend/static/maps/stanford-dq079zg0547.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dq448sy1534.png b/backend/static/maps/stanford-dq448sy1534.png
deleted file mode 100644
index 44dd135..0000000
Binary files a/backend/static/maps/stanford-dq448sy1534.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dq788xx7619.png b/backend/static/maps/stanford-dq788xx7619.png
deleted file mode 100644
index 77ec0d0..0000000
Binary files a/backend/static/maps/stanford-dq788xx7619.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dr534cf4984.png b/backend/static/maps/stanford-dr534cf4984.png
deleted file mode 100644
index 2f6f0c9..0000000
Binary files a/backend/static/maps/stanford-dr534cf4984.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ds401wt4784.png b/backend/static/maps/stanford-ds401wt4784.png
deleted file mode 100644
index 313a4e9..0000000
Binary files a/backend/static/maps/stanford-ds401wt4784.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dw718fh3417.png b/backend/static/maps/stanford-dw718fh3417.png
deleted file mode 100644
index f5903ca..0000000
Binary files a/backend/static/maps/stanford-dw718fh3417.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dw844vg4833.png b/backend/static/maps/stanford-dw844vg4833.png
deleted file mode 100644
index e0f8351..0000000
Binary files a/backend/static/maps/stanford-dw844vg4833.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dx676mv8958.png b/backend/static/maps/stanford-dx676mv8958.png
deleted file mode 100644
index 89f9774..0000000
Binary files a/backend/static/maps/stanford-dx676mv8958.png and /dev/null differ
diff --git a/backend/static/maps/stanford-dy991sz4456.png b/backend/static/maps/stanford-dy991sz4456.png
deleted file mode 100644
index 0fa5bc4..0000000
Binary files a/backend/static/maps/stanford-dy991sz4456.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fb325dg9259.png b/backend/static/maps/stanford-fb325dg9259.png
deleted file mode 100644
index 9df20ea..0000000
Binary files a/backend/static/maps/stanford-fb325dg9259.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fb535jt9967.png b/backend/static/maps/stanford-fb535jt9967.png
deleted file mode 100644
index 8620856..0000000
Binary files a/backend/static/maps/stanford-fb535jt9967.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fc483gx8437.png b/backend/static/maps/stanford-fc483gx8437.png
deleted file mode 100644
index 76fe5e8..0000000
Binary files a/backend/static/maps/stanford-fc483gx8437.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fd012jh1657.png b/backend/static/maps/stanford-fd012jh1657.png
deleted file mode 100644
index 6ea9418..0000000
Binary files a/backend/static/maps/stanford-fd012jh1657.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fd250sr8201.png b/backend/static/maps/stanford-fd250sr8201.png
deleted file mode 100644
index b4dc947..0000000
Binary files a/backend/static/maps/stanford-fd250sr8201.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fd953pg7906.png b/backend/static/maps/stanford-fd953pg7906.png
deleted file mode 100644
index f0d9c98..0000000
Binary files a/backend/static/maps/stanford-fd953pg7906.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fg927zg2189.png b/backend/static/maps/stanford-fg927zg2189.png
deleted file mode 100644
index 4945aaa..0000000
Binary files a/backend/static/maps/stanford-fg927zg2189.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fk191sw2939.png b/backend/static/maps/stanford-fk191sw2939.png
deleted file mode 100644
index 73d2631..0000000
Binary files a/backend/static/maps/stanford-fk191sw2939.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fk251mg0206.png b/backend/static/maps/stanford-fk251mg0206.png
deleted file mode 100644
index 11fab5f..0000000
Binary files a/backend/static/maps/stanford-fk251mg0206.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fk653xf5711.png b/backend/static/maps/stanford-fk653xf5711.png
deleted file mode 100644
index fa8c709..0000000
Binary files a/backend/static/maps/stanford-fk653xf5711.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fm462zc2951.png b/backend/static/maps/stanford-fm462zc2951.png
deleted file mode 100644
index e6bda83..0000000
Binary files a/backend/static/maps/stanford-fm462zc2951.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fn566hh7972.png b/backend/static/maps/stanford-fn566hh7972.png
deleted file mode 100644
index 3a2510b..0000000
Binary files a/backend/static/maps/stanford-fn566hh7972.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fq505jv7833.png b/backend/static/maps/stanford-fq505jv7833.png
deleted file mode 100644
index 1e94fad..0000000
Binary files a/backend/static/maps/stanford-fq505jv7833.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fr148tw1471.png b/backend/static/maps/stanford-fr148tw1471.png
deleted file mode 100644
index af57a0b..0000000
Binary files a/backend/static/maps/stanford-fr148tw1471.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fr898mz8532.png b/backend/static/maps/stanford-fr898mz8532.png
deleted file mode 100644
index df695c5..0000000
Binary files a/backend/static/maps/stanford-fr898mz8532.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fs789th9218.png b/backend/static/maps/stanford-fs789th9218.png
deleted file mode 100644
index fd467f3..0000000
Binary files a/backend/static/maps/stanford-fs789th9218.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fv761md9580.png b/backend/static/maps/stanford-fv761md9580.png
deleted file mode 100644
index c37cb05..0000000
Binary files a/backend/static/maps/stanford-fv761md9580.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fw274np8584.png b/backend/static/maps/stanford-fw274np8584.png
deleted file mode 100644
index f87d49a..0000000
Binary files a/backend/static/maps/stanford-fw274np8584.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fw646fg6941.png b/backend/static/maps/stanford-fw646fg6941.png
deleted file mode 100644
index 2076dbc..0000000
Binary files a/backend/static/maps/stanford-fw646fg6941.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fx286fc0756.png b/backend/static/maps/stanford-fx286fc0756.png
deleted file mode 100644
index 52bef5e..0000000
Binary files a/backend/static/maps/stanford-fx286fc0756.png and /dev/null differ
diff --git a/backend/static/maps/stanford-fy381dh1496.png b/backend/static/maps/stanford-fy381dh1496.png
deleted file mode 100644
index 6742eb5..0000000
Binary files a/backend/static/maps/stanford-fy381dh1496.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gb047yq1789.png b/backend/static/maps/stanford-gb047yq1789.png
deleted file mode 100644
index 81b9570..0000000
Binary files a/backend/static/maps/stanford-gb047yq1789.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gc081vs0264.png b/backend/static/maps/stanford-gc081vs0264.png
deleted file mode 100644
index 53e0aaa..0000000
Binary files a/backend/static/maps/stanford-gc081vs0264.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gd194pz8272.png b/backend/static/maps/stanford-gd194pz8272.png
deleted file mode 100644
index ca7d42c..0000000
Binary files a/backend/static/maps/stanford-gd194pz8272.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gd504hd7898.png b/backend/static/maps/stanford-gd504hd7898.png
deleted file mode 100644
index b5d9097..0000000
Binary files a/backend/static/maps/stanford-gd504hd7898.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gg472jy6721.png b/backend/static/maps/stanford-gg472jy6721.png
deleted file mode 100644
index be01fe8..0000000
Binary files a/backend/static/maps/stanford-gg472jy6721.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gh026fd4381.png b/backend/static/maps/stanford-gh026fd4381.png
deleted file mode 100644
index d31aad0..0000000
Binary files a/backend/static/maps/stanford-gh026fd4381.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gj461ff3214.png b/backend/static/maps/stanford-gj461ff3214.png
deleted file mode 100644
index 8a02fb7..0000000
Binary files a/backend/static/maps/stanford-gj461ff3214.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gk626wd6189.png b/backend/static/maps/stanford-gk626wd6189.png
deleted file mode 100644
index 7c9f22b..0000000
Binary files a/backend/static/maps/stanford-gk626wd6189.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gn522sy3319.png b/backend/static/maps/stanford-gn522sy3319.png
deleted file mode 100644
index 73d2631..0000000
Binary files a/backend/static/maps/stanford-gn522sy3319.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gq392js4737.png b/backend/static/maps/stanford-gq392js4737.png
deleted file mode 100644
index 5ae9c17..0000000
Binary files a/backend/static/maps/stanford-gq392js4737.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gv718zk9195.png b/backend/static/maps/stanford-gv718zk9195.png
deleted file mode 100644
index 4ee160b..0000000
Binary files a/backend/static/maps/stanford-gv718zk9195.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gw177fc7976.png b/backend/static/maps/stanford-gw177fc7976.png
deleted file mode 100644
index 123e5ce..0000000
Binary files a/backend/static/maps/stanford-gw177fc7976.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gw439pk0596.png b/backend/static/maps/stanford-gw439pk0596.png
deleted file mode 100644
index ea0b8bd..0000000
Binary files a/backend/static/maps/stanford-gw439pk0596.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gy157tv4692.png b/backend/static/maps/stanford-gy157tv4692.png
deleted file mode 100644
index 006ff62..0000000
Binary files a/backend/static/maps/stanford-gy157tv4692.png and /dev/null differ
diff --git a/backend/static/maps/stanford-gy279xg0510.png b/backend/static/maps/stanford-gy279xg0510.png
deleted file mode 100644
index 73cb57c..0000000
Binary files a/backend/static/maps/stanford-gy279xg0510.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hb122jb8130.png b/backend/static/maps/stanford-hb122jb8130.png
deleted file mode 100644
index f3a711f..0000000
Binary files a/backend/static/maps/stanford-hb122jb8130.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hc034zw0276.png b/backend/static/maps/stanford-hc034zw0276.png
deleted file mode 100644
index fd467f3..0000000
Binary files a/backend/static/maps/stanford-hc034zw0276.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hc038wk4004.png b/backend/static/maps/stanford-hc038wk4004.png
deleted file mode 100644
index 3863e5e..0000000
Binary files a/backend/static/maps/stanford-hc038wk4004.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hf628py7488.png b/backend/static/maps/stanford-hf628py7488.png
deleted file mode 100644
index 6ff08b8..0000000
Binary files a/backend/static/maps/stanford-hf628py7488.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hf653vx2307.png b/backend/static/maps/stanford-hf653vx2307.png
deleted file mode 100644
index 821e8e9..0000000
Binary files a/backend/static/maps/stanford-hf653vx2307.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hg151ss8419.png b/backend/static/maps/stanford-hg151ss8419.png
deleted file mode 100644
index 47894b1..0000000
Binary files a/backend/static/maps/stanford-hg151ss8419.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hm262bc4021.png b/backend/static/maps/stanford-hm262bc4021.png
deleted file mode 100644
index 265c78e..0000000
Binary files a/backend/static/maps/stanford-hm262bc4021.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hn022bw9567.png b/backend/static/maps/stanford-hn022bw9567.png
deleted file mode 100644
index 2f4a1f8..0000000
Binary files a/backend/static/maps/stanford-hn022bw9567.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hn301jg7298.png b/backend/static/maps/stanford-hn301jg7298.png
deleted file mode 100644
index 9d86cd2..0000000
Binary files a/backend/static/maps/stanford-hn301jg7298.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hn742qr7543.png b/backend/static/maps/stanford-hn742qr7543.png
deleted file mode 100644
index 631e850..0000000
Binary files a/backend/static/maps/stanford-hn742qr7543.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hq627gh2501.png b/backend/static/maps/stanford-hq627gh2501.png
deleted file mode 100644
index d065a01..0000000
Binary files a/backend/static/maps/stanford-hq627gh2501.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hr091wk5837.png b/backend/static/maps/stanford-hr091wk5837.png
deleted file mode 100644
index fa4104f..0000000
Binary files a/backend/static/maps/stanford-hr091wk5837.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hr482fn1744.png b/backend/static/maps/stanford-hr482fn1744.png
deleted file mode 100644
index f2b630b..0000000
Binary files a/backend/static/maps/stanford-hr482fn1744.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hs607dn5589.png b/backend/static/maps/stanford-hs607dn5589.png
deleted file mode 100644
index 656e336..0000000
Binary files a/backend/static/maps/stanford-hs607dn5589.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hv744zv9508.png b/backend/static/maps/stanford-hv744zv9508.png
deleted file mode 100644
index 7dda006..0000000
Binary files a/backend/static/maps/stanford-hv744zv9508.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hv829rm6225.png b/backend/static/maps/stanford-hv829rm6225.png
deleted file mode 100644
index 81385a8..0000000
Binary files a/backend/static/maps/stanford-hv829rm6225.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hw327pj4436.png b/backend/static/maps/stanford-hw327pj4436.png
deleted file mode 100644
index 9614ddb..0000000
Binary files a/backend/static/maps/stanford-hw327pj4436.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hx043dn1887.png b/backend/static/maps/stanford-hx043dn1887.png
deleted file mode 100644
index 9a5c120..0000000
Binary files a/backend/static/maps/stanford-hx043dn1887.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hx547dv1406.png b/backend/static/maps/stanford-hx547dv1406.png
deleted file mode 100644
index 3951af6..0000000
Binary files a/backend/static/maps/stanford-hx547dv1406.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hx712cf1874.png b/backend/static/maps/stanford-hx712cf1874.png
deleted file mode 100644
index 0aefec9..0000000
Binary files a/backend/static/maps/stanford-hx712cf1874.png and /dev/null differ
diff --git a/backend/static/maps/stanford-hx872sp6848.png b/backend/static/maps/stanford-hx872sp6848.png
deleted file mode 100644
index 00cd60f..0000000
Binary files a/backend/static/maps/stanford-hx872sp6848.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jb896tp9580.png b/backend/static/maps/stanford-jb896tp9580.png
deleted file mode 100644
index 347b179..0000000
Binary files a/backend/static/maps/stanford-jb896tp9580.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jd036jd7627.png b/backend/static/maps/stanford-jd036jd7627.png
deleted file mode 100644
index c678143..0000000
Binary files a/backend/static/maps/stanford-jd036jd7627.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jj777pp4868.png b/backend/static/maps/stanford-jj777pp4868.png
deleted file mode 100644
index d3f41ab..0000000
Binary files a/backend/static/maps/stanford-jj777pp4868.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jk020wv2208.png b/backend/static/maps/stanford-jk020wv2208.png
deleted file mode 100644
index d221229..0000000
Binary files a/backend/static/maps/stanford-jk020wv2208.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jk521jx4901.png b/backend/static/maps/stanford-jk521jx4901.png
deleted file mode 100644
index 229403b..0000000
Binary files a/backend/static/maps/stanford-jk521jx4901.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jk529vg0266.png b/backend/static/maps/stanford-jk529vg0266.png
deleted file mode 100644
index 7c1b226..0000000
Binary files a/backend/static/maps/stanford-jk529vg0266.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jm453xc4077.png b/backend/static/maps/stanford-jm453xc4077.png
deleted file mode 100644
index d6a687c..0000000
Binary files a/backend/static/maps/stanford-jm453xc4077.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jm708wc5637.png b/backend/static/maps/stanford-jm708wc5637.png
deleted file mode 100644
index abad607..0000000
Binary files a/backend/static/maps/stanford-jm708wc5637.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jn016pm9915.png b/backend/static/maps/stanford-jn016pm9915.png
deleted file mode 100644
index d55cbbb..0000000
Binary files a/backend/static/maps/stanford-jn016pm9915.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jn766dx6840.png b/backend/static/maps/stanford-jn766dx6840.png
deleted file mode 100644
index 81c8a44..0000000
Binary files a/backend/static/maps/stanford-jn766dx6840.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jp823qm6541.png b/backend/static/maps/stanford-jp823qm6541.png
deleted file mode 100644
index 61b88d8..0000000
Binary files a/backend/static/maps/stanford-jp823qm6541.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jq088zc1404.png b/backend/static/maps/stanford-jq088zc1404.png
deleted file mode 100644
index 11173f5..0000000
Binary files a/backend/static/maps/stanford-jq088zc1404.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jq618sp8021.png b/backend/static/maps/stanford-jq618sp8021.png
deleted file mode 100644
index 359aa08..0000000
Binary files a/backend/static/maps/stanford-jq618sp8021.png and /dev/null differ
diff --git a/backend/static/maps/stanford-js953qv9371.png b/backend/static/maps/stanford-js953qv9371.png
deleted file mode 100644
index 90165dd..0000000
Binary files a/backend/static/maps/stanford-js953qv9371.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jt602gd9751.png b/backend/static/maps/stanford-jt602gd9751.png
deleted file mode 100644
index ebf9a83..0000000
Binary files a/backend/static/maps/stanford-jt602gd9751.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jt832dj5846.png b/backend/static/maps/stanford-jt832dj5846.png
deleted file mode 100644
index d55c2b9..0000000
Binary files a/backend/static/maps/stanford-jt832dj5846.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jt875gg7165.png b/backend/static/maps/stanford-jt875gg7165.png
deleted file mode 100644
index 548274b..0000000
Binary files a/backend/static/maps/stanford-jt875gg7165.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jv992gn5039.png b/backend/static/maps/stanford-jv992gn5039.png
deleted file mode 100644
index 85e8e04..0000000
Binary files a/backend/static/maps/stanford-jv992gn5039.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jx041rw1382.png b/backend/static/maps/stanford-jx041rw1382.png
deleted file mode 100644
index 461e0d7..0000000
Binary files a/backend/static/maps/stanford-jx041rw1382.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jx253kn5220.png b/backend/static/maps/stanford-jx253kn5220.png
deleted file mode 100644
index caa5775..0000000
Binary files a/backend/static/maps/stanford-jx253kn5220.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jx281dy5221.png b/backend/static/maps/stanford-jx281dy5221.png
deleted file mode 100644
index 0aefec9..0000000
Binary files a/backend/static/maps/stanford-jx281dy5221.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jy922yp6026.png b/backend/static/maps/stanford-jy922yp6026.png
deleted file mode 100644
index 57accf2..0000000
Binary files a/backend/static/maps/stanford-jy922yp6026.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jz093hs9443.png b/backend/static/maps/stanford-jz093hs9443.png
deleted file mode 100644
index c2ae15a..0000000
Binary files a/backend/static/maps/stanford-jz093hs9443.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jz110cf1395.png b/backend/static/maps/stanford-jz110cf1395.png
deleted file mode 100644
index a886e9e..0000000
Binary files a/backend/static/maps/stanford-jz110cf1395.png and /dev/null differ
diff --git a/backend/static/maps/stanford-jz111zh7490.png b/backend/static/maps/stanford-jz111zh7490.png
deleted file mode 100644
index 8177ccb..0000000
Binary files a/backend/static/maps/stanford-jz111zh7490.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kc080bx4783.png b/backend/static/maps/stanford-kc080bx4783.png
deleted file mode 100644
index 1fa7a9c..0000000
Binary files a/backend/static/maps/stanford-kc080bx4783.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kc291nv5789.png b/backend/static/maps/stanford-kc291nv5789.png
deleted file mode 100644
index 4671b3c..0000000
Binary files a/backend/static/maps/stanford-kc291nv5789.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kc907cp3216.png b/backend/static/maps/stanford-kc907cp3216.png
deleted file mode 100644
index 5b9a80f..0000000
Binary files a/backend/static/maps/stanford-kc907cp3216.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kd180vp0173.png b/backend/static/maps/stanford-kd180vp0173.png
deleted file mode 100644
index 413e892..0000000
Binary files a/backend/static/maps/stanford-kd180vp0173.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kg232qj0676.png b/backend/static/maps/stanford-kg232qj0676.png
deleted file mode 100644
index 2f4a1f8..0000000
Binary files a/backend/static/maps/stanford-kg232qj0676.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kh204pc3017.png b/backend/static/maps/stanford-kh204pc3017.png
deleted file mode 100644
index f53cca3..0000000
Binary files a/backend/static/maps/stanford-kh204pc3017.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kk544xm4197.png b/backend/static/maps/stanford-kk544xm4197.png
deleted file mode 100644
index b345d17..0000000
Binary files a/backend/static/maps/stanford-kk544xm4197.png and /dev/null differ
diff --git a/backend/static/maps/stanford-km804hp4802.png b/backend/static/maps/stanford-km804hp4802.png
deleted file mode 100644
index 65445ae..0000000
Binary files a/backend/static/maps/stanford-km804hp4802.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kn218rd2810.png b/backend/static/maps/stanford-kn218rd2810.png
deleted file mode 100644
index ca839e4..0000000
Binary files a/backend/static/maps/stanford-kn218rd2810.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kp668dr9650.png b/backend/static/maps/stanford-kp668dr9650.png
deleted file mode 100644
index 359aa08..0000000
Binary files a/backend/static/maps/stanford-kp668dr9650.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kq538mt6549.png b/backend/static/maps/stanford-kq538mt6549.png
deleted file mode 100644
index f53cca3..0000000
Binary files a/backend/static/maps/stanford-kq538mt6549.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kr140fz6488.png b/backend/static/maps/stanford-kr140fz6488.png
deleted file mode 100644
index d5a72c0..0000000
Binary files a/backend/static/maps/stanford-kr140fz6488.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ks063fz4690.png b/backend/static/maps/stanford-ks063fz4690.png
deleted file mode 100644
index 463a7ee..0000000
Binary files a/backend/static/maps/stanford-ks063fz4690.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ks917qz0223.png b/backend/static/maps/stanford-ks917qz0223.png
deleted file mode 100644
index 03b582d..0000000
Binary files a/backend/static/maps/stanford-ks917qz0223.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kv709rs0781.png b/backend/static/maps/stanford-kv709rs0781.png
deleted file mode 100644
index da18ae3..0000000
Binary files a/backend/static/maps/stanford-kv709rs0781.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kw003rj3034.png b/backend/static/maps/stanford-kw003rj3034.png
deleted file mode 100644
index a5e8c60..0000000
Binary files a/backend/static/maps/stanford-kw003rj3034.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ky723jt6050.png b/backend/static/maps/stanford-ky723jt6050.png
deleted file mode 100644
index 5f49ab5..0000000
Binary files a/backend/static/maps/stanford-ky723jt6050.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kz070py1234.png b/backend/static/maps/stanford-kz070py1234.png
deleted file mode 100644
index b345d17..0000000
Binary files a/backend/static/maps/stanford-kz070py1234.png and /dev/null differ
diff --git a/backend/static/maps/stanford-kz512th0661.png b/backend/static/maps/stanford-kz512th0661.png
deleted file mode 100644
index 3951af6..0000000
Binary files a/backend/static/maps/stanford-kz512th0661.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mb568tt0967.png b/backend/static/maps/stanford-mb568tt0967.png
deleted file mode 100644
index 331e7b1..0000000
Binary files a/backend/static/maps/stanford-mb568tt0967.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mb886mv5963.png b/backend/static/maps/stanford-mb886mv5963.png
deleted file mode 100644
index f8286b8..0000000
Binary files a/backend/static/maps/stanford-mb886mv5963.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mc451gd4077.png b/backend/static/maps/stanford-mc451gd4077.png
deleted file mode 100644
index 297e0b0..0000000
Binary files a/backend/static/maps/stanford-mc451gd4077.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mc833mw5122.png b/backend/static/maps/stanford-mc833mw5122.png
deleted file mode 100644
index 36b0dcf..0000000
Binary files a/backend/static/maps/stanford-mc833mw5122.png and /dev/null differ
diff --git a/backend/static/maps/stanford-md755hh6967.png b/backend/static/maps/stanford-md755hh6967.png
deleted file mode 100644
index 0d5e499..0000000
Binary files a/backend/static/maps/stanford-md755hh6967.png and /dev/null differ
diff --git a/backend/static/maps/stanford-md900ds8293.png b/backend/static/maps/stanford-md900ds8293.png
deleted file mode 100644
index 1e94fad..0000000
Binary files a/backend/static/maps/stanford-md900ds8293.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mf076kv4364.png b/backend/static/maps/stanford-mf076kv4364.png
deleted file mode 100644
index be33f26..0000000
Binary files a/backend/static/maps/stanford-mf076kv4364.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mf364pc6743.png b/backend/static/maps/stanford-mf364pc6743.png
deleted file mode 100644
index 2af51af..0000000
Binary files a/backend/static/maps/stanford-mf364pc6743.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mg892sk6652.png b/backend/static/maps/stanford-mg892sk6652.png
deleted file mode 100644
index b38350b..0000000
Binary files a/backend/static/maps/stanford-mg892sk6652.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mh803ht5664.png b/backend/static/maps/stanford-mh803ht5664.png
deleted file mode 100644
index 5839c1a..0000000
Binary files a/backend/static/maps/stanford-mh803ht5664.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mh823mc5067.png b/backend/static/maps/stanford-mh823mc5067.png
deleted file mode 100644
index f610663..0000000
Binary files a/backend/static/maps/stanford-mh823mc5067.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mj608zg0275.png b/backend/static/maps/stanford-mj608zg0275.png
deleted file mode 100644
index 5bb9209..0000000
Binary files a/backend/static/maps/stanford-mj608zg0275.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mk866kc3484.png b/backend/static/maps/stanford-mk866kc3484.png
deleted file mode 100644
index 87a00ef..0000000
Binary files a/backend/static/maps/stanford-mk866kc3484.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mm618hx4108.png b/backend/static/maps/stanford-mm618hx4108.png
deleted file mode 100644
index 623156a..0000000
Binary files a/backend/static/maps/stanford-mm618hx4108.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mm869sh2302.png b/backend/static/maps/stanford-mm869sh2302.png
deleted file mode 100644
index c1cc6e2..0000000
Binary files a/backend/static/maps/stanford-mm869sh2302.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mn080rh4340.png b/backend/static/maps/stanford-mn080rh4340.png
deleted file mode 100644
index 874cdbc..0000000
Binary files a/backend/static/maps/stanford-mn080rh4340.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mn106fd8747.png b/backend/static/maps/stanford-mn106fd8747.png
deleted file mode 100644
index 9614ddb..0000000
Binary files a/backend/static/maps/stanford-mn106fd8747.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mn565xr9255.png b/backend/static/maps/stanford-mn565xr9255.png
deleted file mode 100644
index 61a5518..0000000
Binary files a/backend/static/maps/stanford-mn565xr9255.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mn611wf1002.png b/backend/static/maps/stanford-mn611wf1002.png
deleted file mode 100644
index c80ed17..0000000
Binary files a/backend/static/maps/stanford-mn611wf1002.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mn959cv2446.png b/backend/static/maps/stanford-mn959cv2446.png
deleted file mode 100644
index f0d7149..0000000
Binary files a/backend/static/maps/stanford-mn959cv2446.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mp281vy9386.png b/backend/static/maps/stanford-mp281vy9386.png
deleted file mode 100644
index df2e8af..0000000
Binary files a/backend/static/maps/stanford-mp281vy9386.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mp713mh7686.png b/backend/static/maps/stanford-mp713mh7686.png
deleted file mode 100644
index 477f256..0000000
Binary files a/backend/static/maps/stanford-mp713mh7686.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mq098dq7710.png b/backend/static/maps/stanford-mq098dq7710.png
deleted file mode 100644
index b345d17..0000000
Binary files a/backend/static/maps/stanford-mq098dq7710.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mr099wj4148.png b/backend/static/maps/stanford-mr099wj4148.png
deleted file mode 100644
index f10c6ec..0000000
Binary files a/backend/static/maps/stanford-mr099wj4148.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mv443st0486.png b/backend/static/maps/stanford-mv443st0486.png
deleted file mode 100644
index 61b88d8..0000000
Binary files a/backend/static/maps/stanford-mv443st0486.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mv455xr3058.png b/backend/static/maps/stanford-mv455xr3058.png
deleted file mode 100644
index df695c5..0000000
Binary files a/backend/static/maps/stanford-mv455xr3058.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mw853yj7799.png b/backend/static/maps/stanford-mw853yj7799.png
deleted file mode 100644
index 203a531..0000000
Binary files a/backend/static/maps/stanford-mw853yj7799.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mx463ng4520.png b/backend/static/maps/stanford-mx463ng4520.png
deleted file mode 100644
index e8e1b3f..0000000
Binary files a/backend/static/maps/stanford-mx463ng4520.png and /dev/null differ
diff --git a/backend/static/maps/stanford-my816cz9752.png b/backend/static/maps/stanford-my816cz9752.png
deleted file mode 100644
index 024c758..0000000
Binary files a/backend/static/maps/stanford-my816cz9752.png and /dev/null differ
diff --git a/backend/static/maps/stanford-mz935mj4335.png b/backend/static/maps/stanford-mz935mj4335.png
deleted file mode 100644
index 03d5e0e..0000000
Binary files a/backend/static/maps/stanford-mz935mj4335.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nd124my6773.png b/backend/static/maps/stanford-nd124my6773.png
deleted file mode 100644
index a9adc64..0000000
Binary files a/backend/static/maps/stanford-nd124my6773.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nd698hq9439.png b/backend/static/maps/stanford-nd698hq9439.png
deleted file mode 100644
index cc1a672..0000000
Binary files a/backend/static/maps/stanford-nd698hq9439.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ng324gh5570.png b/backend/static/maps/stanford-ng324gh5570.png
deleted file mode 100644
index 03b582d..0000000
Binary files a/backend/static/maps/stanford-ng324gh5570.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ng411tq1358.png b/backend/static/maps/stanford-ng411tq1358.png
deleted file mode 100644
index 1141915..0000000
Binary files a/backend/static/maps/stanford-ng411tq1358.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ng634vc2019.png b/backend/static/maps/stanford-ng634vc2019.png
deleted file mode 100644
index cee1051..0000000
Binary files a/backend/static/maps/stanford-ng634vc2019.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nh800mm2361.png b/backend/static/maps/stanford-nh800mm2361.png
deleted file mode 100644
index f0d9c98..0000000
Binary files a/backend/static/maps/stanford-nh800mm2361.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nh891yz3147.png b/backend/static/maps/stanford-nh891yz3147.png
deleted file mode 100644
index 2f4a1f8..0000000
Binary files a/backend/static/maps/stanford-nh891yz3147.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nh953cs6320.png b/backend/static/maps/stanford-nh953cs6320.png
deleted file mode 100644
index e8e1b3f..0000000
Binary files a/backend/static/maps/stanford-nh953cs6320.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nj343cd1518.png b/backend/static/maps/stanford-nj343cd1518.png
deleted file mode 100644
index 13526c5..0000000
Binary files a/backend/static/maps/stanford-nj343cd1518.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nj700wk5561.png b/backend/static/maps/stanford-nj700wk5561.png
deleted file mode 100644
index b8714b3..0000000
Binary files a/backend/static/maps/stanford-nj700wk5561.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nm233qz6061.png b/backend/static/maps/stanford-nm233qz6061.png
deleted file mode 100644
index bb531a4..0000000
Binary files a/backend/static/maps/stanford-nm233qz6061.png and /dev/null differ
diff --git a/backend/static/maps/stanford-np165yq7060.png b/backend/static/maps/stanford-np165yq7060.png
deleted file mode 100644
index b345d17..0000000
Binary files a/backend/static/maps/stanford-np165yq7060.png and /dev/null differ
diff --git a/backend/static/maps/stanford-np866pz2637.png b/backend/static/maps/stanford-np866pz2637.png
deleted file mode 100644
index 2c134de..0000000
Binary files a/backend/static/maps/stanford-np866pz2637.png and /dev/null differ
diff --git a/backend/static/maps/stanford-np874vc2852.png b/backend/static/maps/stanford-np874vc2852.png
deleted file mode 100644
index 675b1b4..0000000
Binary files a/backend/static/maps/stanford-np874vc2852.png and /dev/null differ
diff --git a/backend/static/maps/stanford-np910dz4023.png b/backend/static/maps/stanford-np910dz4023.png
deleted file mode 100644
index 8b56cf5..0000000
Binary files a/backend/static/maps/stanford-np910dz4023.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nw022hy4236.png b/backend/static/maps/stanford-nw022hy4236.png
deleted file mode 100644
index 70844fb..0000000
Binary files a/backend/static/maps/stanford-nw022hy4236.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nw945zv2996.png b/backend/static/maps/stanford-nw945zv2996.png
deleted file mode 100644
index 1d80f50..0000000
Binary files a/backend/static/maps/stanford-nw945zv2996.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nx837tk2752.png b/backend/static/maps/stanford-nx837tk2752.png
deleted file mode 100644
index 11fab5f..0000000
Binary files a/backend/static/maps/stanford-nx837tk2752.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ny807dr0769.png b/backend/static/maps/stanford-ny807dr0769.png
deleted file mode 100644
index f3eb129..0000000
Binary files a/backend/static/maps/stanford-ny807dr0769.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nz271ny2119.png b/backend/static/maps/stanford-nz271ny2119.png
deleted file mode 100644
index 2f4a1f8..0000000
Binary files a/backend/static/maps/stanford-nz271ny2119.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nz307cg0957.png b/backend/static/maps/stanford-nz307cg0957.png
deleted file mode 100644
index b93b76c..0000000
Binary files a/backend/static/maps/stanford-nz307cg0957.png and /dev/null differ
diff --git a/backend/static/maps/stanford-nz375yg5868.png b/backend/static/maps/stanford-nz375yg5868.png
deleted file mode 100644
index 39bc8ec..0000000
Binary files a/backend/static/maps/stanford-nz375yg5868.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pb480pz9305.png b/backend/static/maps/stanford-pb480pz9305.png
deleted file mode 100644
index b2cf00a..0000000
Binary files a/backend/static/maps/stanford-pb480pz9305.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pb725bj8758.png b/backend/static/maps/stanford-pb725bj8758.png
deleted file mode 100644
index 0aefec9..0000000
Binary files a/backend/static/maps/stanford-pb725bj8758.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pc204zy5923.png b/backend/static/maps/stanford-pc204zy5923.png
deleted file mode 100644
index 09e6e91..0000000
Binary files a/backend/static/maps/stanford-pc204zy5923.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pg551gj7265.png b/backend/static/maps/stanford-pg551gj7265.png
deleted file mode 100644
index b6b0021..0000000
Binary files a/backend/static/maps/stanford-pg551gj7265.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pj160vc5788.png b/backend/static/maps/stanford-pj160vc5788.png
deleted file mode 100644
index 6e57b5f..0000000
Binary files a/backend/static/maps/stanford-pj160vc5788.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pj444wh8860.png b/backend/static/maps/stanford-pj444wh8860.png
deleted file mode 100644
index 0d7df49..0000000
Binary files a/backend/static/maps/stanford-pj444wh8860.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pj799kj8342.png b/backend/static/maps/stanford-pj799kj8342.png
deleted file mode 100644
index dfe6b1c..0000000
Binary files a/backend/static/maps/stanford-pj799kj8342.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pk434fr7555.png b/backend/static/maps/stanford-pk434fr7555.png
deleted file mode 100644
index d15578a..0000000
Binary files a/backend/static/maps/stanford-pk434fr7555.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pn587cm0240.png b/backend/static/maps/stanford-pn587cm0240.png
deleted file mode 100644
index ac0d585..0000000
Binary files a/backend/static/maps/stanford-pn587cm0240.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pn748gm7355.png b/backend/static/maps/stanford-pn748gm7355.png
deleted file mode 100644
index 6c292f7..0000000
Binary files a/backend/static/maps/stanford-pn748gm7355.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pq405rc8496.png b/backend/static/maps/stanford-pq405rc8496.png
deleted file mode 100644
index 6bf5443..0000000
Binary files a/backend/static/maps/stanford-pq405rc8496.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pq713kh7725.png b/backend/static/maps/stanford-pq713kh7725.png
deleted file mode 100644
index 35235a9..0000000
Binary files a/backend/static/maps/stanford-pq713kh7725.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ps951dx1279.png b/backend/static/maps/stanford-ps951dx1279.png
deleted file mode 100644
index 9606b10..0000000
Binary files a/backend/static/maps/stanford-ps951dx1279.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pt933zh9573.png b/backend/static/maps/stanford-pt933zh9573.png
deleted file mode 100644
index a279c0b..0000000
Binary files a/backend/static/maps/stanford-pt933zh9573.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pv411wm0035.png b/backend/static/maps/stanford-pv411wm0035.png
deleted file mode 100644
index bb0eec8..0000000
Binary files a/backend/static/maps/stanford-pv411wm0035.png and /dev/null differ
diff --git a/backend/static/maps/stanford-px053ft5911.png b/backend/static/maps/stanford-px053ft5911.png
deleted file mode 100644
index 1e94fad..0000000
Binary files a/backend/static/maps/stanford-px053ft5911.png and /dev/null differ
diff --git a/backend/static/maps/stanford-px754zz4325.png b/backend/static/maps/stanford-px754zz4325.png
deleted file mode 100644
index 0aefec9..0000000
Binary files a/backend/static/maps/stanford-px754zz4325.png and /dev/null differ
diff --git a/backend/static/maps/stanford-py415kt4491.png b/backend/static/maps/stanford-py415kt4491.png
deleted file mode 100644
index 3951af6..0000000
Binary files a/backend/static/maps/stanford-py415kt4491.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pz184sd4724.png b/backend/static/maps/stanford-pz184sd4724.png
deleted file mode 100644
index 34ca029..0000000
Binary files a/backend/static/maps/stanford-pz184sd4724.png and /dev/null differ
diff --git a/backend/static/maps/stanford-pz762fx6021.png b/backend/static/maps/stanford-pz762fx6021.png
deleted file mode 100644
index 2ce3225..0000000
Binary files a/backend/static/maps/stanford-pz762fx6021.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qc363hn3299.png b/backend/static/maps/stanford-qc363hn3299.png
deleted file mode 100644
index 74a2aa7..0000000
Binary files a/backend/static/maps/stanford-qc363hn3299.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qf892sr9382.png b/backend/static/maps/stanford-qf892sr9382.png
deleted file mode 100644
index 235ec11..0000000
Binary files a/backend/static/maps/stanford-qf892sr9382.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qg837rd5455.png b/backend/static/maps/stanford-qg837rd5455.png
deleted file mode 100644
index 29deb3f..0000000
Binary files a/backend/static/maps/stanford-qg837rd5455.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qh592xp2377.png b/backend/static/maps/stanford-qh592xp2377.png
deleted file mode 100644
index d66c2f8..0000000
Binary files a/backend/static/maps/stanford-qh592xp2377.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qj185pg0214.png b/backend/static/maps/stanford-qj185pg0214.png
deleted file mode 100644
index 73b040f..0000000
Binary files a/backend/static/maps/stanford-qj185pg0214.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qn014cr7123.png b/backend/static/maps/stanford-qn014cr7123.png
deleted file mode 100644
index d6a687c..0000000
Binary files a/backend/static/maps/stanford-qn014cr7123.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qp286rg1161.png b/backend/static/maps/stanford-qp286rg1161.png
deleted file mode 100644
index 87a00ef..0000000
Binary files a/backend/static/maps/stanford-qp286rg1161.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qq802mt3140.png b/backend/static/maps/stanford-qq802mt3140.png
deleted file mode 100644
index a9da737..0000000
Binary files a/backend/static/maps/stanford-qq802mt3140.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qt338gk9888.png b/backend/static/maps/stanford-qt338gk9888.png
deleted file mode 100644
index 57098f2..0000000
Binary files a/backend/static/maps/stanford-qt338gk9888.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qt520bh9199.png b/backend/static/maps/stanford-qt520bh9199.png
deleted file mode 100644
index f0a94ea..0000000
Binary files a/backend/static/maps/stanford-qt520bh9199.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qt739dq2220.png b/backend/static/maps/stanford-qt739dq2220.png
deleted file mode 100644
index 7c1b226..0000000
Binary files a/backend/static/maps/stanford-qt739dq2220.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qv223pp8387.png b/backend/static/maps/stanford-qv223pp8387.png
deleted file mode 100644
index 0113c78..0000000
Binary files a/backend/static/maps/stanford-qv223pp8387.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qv621sy2752.png b/backend/static/maps/stanford-qv621sy2752.png
deleted file mode 100644
index 359aa08..0000000
Binary files a/backend/static/maps/stanford-qv621sy2752.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qz121wh2550.png b/backend/static/maps/stanford-qz121wh2550.png
deleted file mode 100644
index 34eeb36..0000000
Binary files a/backend/static/maps/stanford-qz121wh2550.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qz300vx5345.png b/backend/static/maps/stanford-qz300vx5345.png
deleted file mode 100644
index 0aefec9..0000000
Binary files a/backend/static/maps/stanford-qz300vx5345.png and /dev/null differ
diff --git a/backend/static/maps/stanford-qz984ms7706.png b/backend/static/maps/stanford-qz984ms7706.png
deleted file mode 100644
index 631e228..0000000
Binary files a/backend/static/maps/stanford-qz984ms7706.png and /dev/null differ
diff --git a/backend/static/maps/stanford-rd729yx7957.png b/backend/static/maps/stanford-rd729yx7957.png
deleted file mode 100644
index bf8379d..0000000
Binary files a/backend/static/maps/stanford-rd729yx7957.png and /dev/null differ
diff --git a/backend/static/maps/stanford-rg765zt7618.png b/backend/static/maps/stanford-rg765zt7618.png
deleted file mode 100644
index a7291c3..0000000
Binary files a/backend/static/maps/stanford-rg765zt7618.png and /dev/null differ
diff --git a/backend/static/maps/stanford-rj546wn3892.png b/backend/static/maps/stanford-rj546wn3892.png
deleted file mode 100644
index 3d33605..0000000
Binary files a/backend/static/maps/stanford-rj546wn3892.png and /dev/null differ
diff --git a/backend/static/maps/stanford-rk248bk2495.png b/backend/static/maps/stanford-rk248bk2495.png
deleted file mode 100644
index c678143..0000000
Binary files a/backend/static/maps/stanford-rk248bk2495.png and /dev/null differ
diff --git a/backend/static/maps/stanford-rk929kv6429.png b/backend/static/maps/stanford-rk929kv6429.png
deleted file mode 100644
index 73cb57c..0000000
Binary files a/backend/static/maps/stanford-rk929kv6429.png and /dev/null differ
diff --git a/backend/static/maps/stanford-rq443fp2092.png b/backend/static/maps/stanford-rq443fp2092.png
deleted file mode 100644
index bd798fb..0000000
Binary files a/backend/static/maps/stanford-rq443fp2092.png and /dev/null differ
diff --git a/backend/static/maps/stanford-rs794wj0936.png b/backend/static/maps/stanford-rs794wj0936.png
deleted file mode 100644
index df695c5..0000000
Binary files a/backend/static/maps/stanford-rs794wj0936.png and /dev/null differ
diff --git a/backend/static/maps/stanford-rv980rt5057.png b/backend/static/maps/stanford-rv980rt5057.png
deleted file mode 100644
index 5ae9c17..0000000
Binary files a/backend/static/maps/stanford-rv980rt5057.png and /dev/null differ
diff --git a/backend/static/maps/stanford-rw197xm8685.png b/backend/static/maps/stanford-rw197xm8685.png
deleted file mode 100644
index fe69f08..0000000
Binary files a/backend/static/maps/stanford-rw197xm8685.png and /dev/null differ
diff --git a/backend/static/maps/stanford-rw871gr7791.png b/backend/static/maps/stanford-rw871gr7791.png
deleted file mode 100644
index d6a687c..0000000
Binary files a/backend/static/maps/stanford-rw871gr7791.png and /dev/null differ
diff --git a/backend/static/maps/stanford-rx861dz2980.png b/backend/static/maps/stanford-rx861dz2980.png
deleted file mode 100644
index f22d7fe..0000000
Binary files a/backend/static/maps/stanford-rx861dz2980.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ry558mk7173.png b/backend/static/maps/stanford-ry558mk7173.png
deleted file mode 100644
index 229403b..0000000
Binary files a/backend/static/maps/stanford-ry558mk7173.png and /dev/null differ
diff --git a/backend/static/maps/stanford-rz239nx1054.png b/backend/static/maps/stanford-rz239nx1054.png
deleted file mode 100644
index 5ec8406..0000000
Binary files a/backend/static/maps/stanford-rz239nx1054.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sb484tx0915.png b/backend/static/maps/stanford-sb484tx0915.png
deleted file mode 100644
index 6f66f07..0000000
Binary files a/backend/static/maps/stanford-sb484tx0915.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sb742vh2182.png b/backend/static/maps/stanford-sb742vh2182.png
deleted file mode 100644
index 6494aae..0000000
Binary files a/backend/static/maps/stanford-sb742vh2182.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sc421mj7431.png b/backend/static/maps/stanford-sc421mj7431.png
deleted file mode 100644
index d3b34a4..0000000
Binary files a/backend/static/maps/stanford-sc421mj7431.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sd828pm7136.png b/backend/static/maps/stanford-sd828pm7136.png
deleted file mode 100644
index 9231467..0000000
Binary files a/backend/static/maps/stanford-sd828pm7136.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sd905gq8303.png b/backend/static/maps/stanford-sd905gq8303.png
deleted file mode 100644
index d24c1c9..0000000
Binary files a/backend/static/maps/stanford-sd905gq8303.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sf131hz4116.png b/backend/static/maps/stanford-sf131hz4116.png
deleted file mode 100644
index d8d7167..0000000
Binary files a/backend/static/maps/stanford-sf131hz4116.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sg708cs1367.png b/backend/static/maps/stanford-sg708cs1367.png
deleted file mode 100644
index df695c5..0000000
Binary files a/backend/static/maps/stanford-sg708cs1367.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sh254dk8922.png b/backend/static/maps/stanford-sh254dk8922.png
deleted file mode 100644
index 5d4615c..0000000
Binary files a/backend/static/maps/stanford-sh254dk8922.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sh927kj9021.png b/backend/static/maps/stanford-sh927kj9021.png
deleted file mode 100644
index 0b2dc31..0000000
Binary files a/backend/static/maps/stanford-sh927kj9021.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sj960cq3203.png b/backend/static/maps/stanford-sj960cq3203.png
deleted file mode 100644
index b48cc66..0000000
Binary files a/backend/static/maps/stanford-sj960cq3203.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sk718zd0944.png b/backend/static/maps/stanford-sk718zd0944.png
deleted file mode 100644
index 5ae9c17..0000000
Binary files a/backend/static/maps/stanford-sk718zd0944.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sn182vh3445.png b/backend/static/maps/stanford-sn182vh3445.png
deleted file mode 100644
index fabef90..0000000
Binary files a/backend/static/maps/stanford-sn182vh3445.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sn783cd6200.png b/backend/static/maps/stanford-sn783cd6200.png
deleted file mode 100644
index fd467f3..0000000
Binary files a/backend/static/maps/stanford-sn783cd6200.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sn956np0420.png b/backend/static/maps/stanford-sn956np0420.png
deleted file mode 100644
index 9da7cd2..0000000
Binary files a/backend/static/maps/stanford-sn956np0420.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sp628tx7863.png b/backend/static/maps/stanford-sp628tx7863.png
deleted file mode 100644
index b57137e..0000000
Binary files a/backend/static/maps/stanford-sp628tx7863.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sp807yd2954.png b/backend/static/maps/stanford-sp807yd2954.png
deleted file mode 100644
index b345d17..0000000
Binary files a/backend/static/maps/stanford-sp807yd2954.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sr294bd4761.png b/backend/static/maps/stanford-sr294bd4761.png
deleted file mode 100644
index 9a2c795..0000000
Binary files a/backend/static/maps/stanford-sr294bd4761.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sr474mh7076.png b/backend/static/maps/stanford-sr474mh7076.png
deleted file mode 100644
index 0aefec9..0000000
Binary files a/backend/static/maps/stanford-sr474mh7076.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sr949pp5625.png b/backend/static/maps/stanford-sr949pp5625.png
deleted file mode 100644
index e8e1b3f..0000000
Binary files a/backend/static/maps/stanford-sr949pp5625.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sv998rv5723.png b/backend/static/maps/stanford-sv998rv5723.png
deleted file mode 100644
index 082e119..0000000
Binary files a/backend/static/maps/stanford-sv998rv5723.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sw718qm4945.png b/backend/static/maps/stanford-sw718qm4945.png
deleted file mode 100644
index 3181694..0000000
Binary files a/backend/static/maps/stanford-sw718qm4945.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sw807gc3541.png b/backend/static/maps/stanford-sw807gc3541.png
deleted file mode 100644
index 2d7cd11..0000000
Binary files a/backend/static/maps/stanford-sw807gc3541.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sy911bw3389.png b/backend/static/maps/stanford-sy911bw3389.png
deleted file mode 100644
index f53cca3..0000000
Binary files a/backend/static/maps/stanford-sy911bw3389.png and /dev/null differ
diff --git a/backend/static/maps/stanford-sz226kb1842.png b/backend/static/maps/stanford-sz226kb1842.png
deleted file mode 100644
index 2ba5cd7..0000000
Binary files a/backend/static/maps/stanford-sz226kb1842.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tb136th4875.png b/backend/static/maps/stanford-tb136th4875.png
deleted file mode 100644
index 5d4650f..0000000
Binary files a/backend/static/maps/stanford-tb136th4875.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tb880xj7994.png b/backend/static/maps/stanford-tb880xj7994.png
deleted file mode 100644
index db2606f..0000000
Binary files a/backend/static/maps/stanford-tb880xj7994.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tc477vn9888.png b/backend/static/maps/stanford-tc477vn9888.png
deleted file mode 100644
index 03b582d..0000000
Binary files a/backend/static/maps/stanford-tc477vn9888.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tc541mp2031.png b/backend/static/maps/stanford-tc541mp2031.png
deleted file mode 100644
index dd6dcf3..0000000
Binary files a/backend/static/maps/stanford-tc541mp2031.png and /dev/null differ
diff --git a/backend/static/maps/stanford-td025fk2546.png b/backend/static/maps/stanford-td025fk2546.png
deleted file mode 100644
index beae1c3..0000000
Binary files a/backend/static/maps/stanford-td025fk2546.png and /dev/null differ
diff --git a/backend/static/maps/stanford-td803hr4166.png b/backend/static/maps/stanford-td803hr4166.png
deleted file mode 100644
index 9c6a9d9..0000000
Binary files a/backend/static/maps/stanford-td803hr4166.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tf101cp1510.png b/backend/static/maps/stanford-tf101cp1510.png
deleted file mode 100644
index bb531a4..0000000
Binary files a/backend/static/maps/stanford-tf101cp1510.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tf109vt7574.png b/backend/static/maps/stanford-tf109vt7574.png
deleted file mode 100644
index 660019a..0000000
Binary files a/backend/static/maps/stanford-tf109vt7574.png and /dev/null differ
diff --git a/backend/static/maps/stanford-th010xy1742.png b/backend/static/maps/stanford-th010xy1742.png
deleted file mode 100644
index db56d72..0000000
Binary files a/backend/static/maps/stanford-th010xy1742.png and /dev/null differ
diff --git a/backend/static/maps/stanford-th798fb4586.png b/backend/static/maps/stanford-th798fb4586.png
deleted file mode 100644
index 35235a9..0000000
Binary files a/backend/static/maps/stanford-th798fb4586.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tj369yw8683.png b/backend/static/maps/stanford-tj369yw8683.png
deleted file mode 100644
index 8918f06..0000000
Binary files a/backend/static/maps/stanford-tj369yw8683.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tj383pz2480.png b/backend/static/maps/stanford-tj383pz2480.png
deleted file mode 100644
index 61e171f..0000000
Binary files a/backend/static/maps/stanford-tj383pz2480.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tn360hh9936.png b/backend/static/maps/stanford-tn360hh9936.png
deleted file mode 100644
index 461e0d7..0000000
Binary files a/backend/static/maps/stanford-tn360hh9936.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tn989jt6293.png b/backend/static/maps/stanford-tn989jt6293.png
deleted file mode 100644
index e50d003..0000000
Binary files a/backend/static/maps/stanford-tn989jt6293.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tp955sp0123.png b/backend/static/maps/stanford-tp955sp0123.png
deleted file mode 100644
index 5aae9f7..0000000
Binary files a/backend/static/maps/stanford-tp955sp0123.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tq310nc7616.png b/backend/static/maps/stanford-tq310nc7616.png
deleted file mode 100644
index 6ee0b69..0000000
Binary files a/backend/static/maps/stanford-tq310nc7616.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tq511pr5084.png b/backend/static/maps/stanford-tq511pr5084.png
deleted file mode 100644
index 5bb9209..0000000
Binary files a/backend/static/maps/stanford-tq511pr5084.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tq868sg2111.png b/backend/static/maps/stanford-tq868sg2111.png
deleted file mode 100644
index bb531a4..0000000
Binary files a/backend/static/maps/stanford-tq868sg2111.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tq986bb9620.png b/backend/static/maps/stanford-tq986bb9620.png
deleted file mode 100644
index 3846428..0000000
Binary files a/backend/static/maps/stanford-tq986bb9620.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tr490vf5608.png b/backend/static/maps/stanford-tr490vf5608.png
deleted file mode 100644
index e80bd6e..0000000
Binary files a/backend/static/maps/stanford-tr490vf5608.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ts184dn4092.png b/backend/static/maps/stanford-ts184dn4092.png
deleted file mode 100644
index 9614ddb..0000000
Binary files a/backend/static/maps/stanford-ts184dn4092.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ts651zb1517.png b/backend/static/maps/stanford-ts651zb1517.png
deleted file mode 100644
index 8281b5b..0000000
Binary files a/backend/static/maps/stanford-ts651zb1517.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tt022hy5175.png b/backend/static/maps/stanford-tt022hy5175.png
deleted file mode 100644
index e8f1a1e..0000000
Binary files a/backend/static/maps/stanford-tt022hy5175.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tt369vk9000.png b/backend/static/maps/stanford-tt369vk9000.png
deleted file mode 100644
index d55be73..0000000
Binary files a/backend/static/maps/stanford-tt369vk9000.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tt596nz1569.png b/backend/static/maps/stanford-tt596nz1569.png
deleted file mode 100644
index 2f4a1f8..0000000
Binary files a/backend/static/maps/stanford-tt596nz1569.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tv008bc9085.png b/backend/static/maps/stanford-tv008bc9085.png
deleted file mode 100644
index 47aaa80..0000000
Binary files a/backend/static/maps/stanford-tv008bc9085.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tv260nj4578.png b/backend/static/maps/stanford-tv260nj4578.png
deleted file mode 100644
index 1ec1d7c..0000000
Binary files a/backend/static/maps/stanford-tv260nj4578.png and /dev/null differ
diff --git a/backend/static/maps/stanford-tz757gy1259.png b/backend/static/maps/stanford-tz757gy1259.png
deleted file mode 100644
index b370691..0000000
Binary files a/backend/static/maps/stanford-tz757gy1259.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vb505dy8703.png b/backend/static/maps/stanford-vb505dy8703.png
deleted file mode 100644
index 37267de..0000000
Binary files a/backend/static/maps/stanford-vb505dy8703.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vc061bp2984.png b/backend/static/maps/stanford-vc061bp2984.png
deleted file mode 100644
index 63edc1b..0000000
Binary files a/backend/static/maps/stanford-vc061bp2984.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vd004hn8635.png b/backend/static/maps/stanford-vd004hn8635.png
deleted file mode 100644
index 3dbcd39..0000000
Binary files a/backend/static/maps/stanford-vd004hn8635.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vd461hv3379.png b/backend/static/maps/stanford-vd461hv3379.png
deleted file mode 100644
index cef7249..0000000
Binary files a/backend/static/maps/stanford-vd461hv3379.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vd668sc8220.png b/backend/static/maps/stanford-vd668sc8220.png
deleted file mode 100644
index 4671b3c..0000000
Binary files a/backend/static/maps/stanford-vd668sc8220.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vf040px7697.png b/backend/static/maps/stanford-vf040px7697.png
deleted file mode 100644
index d3690d6..0000000
Binary files a/backend/static/maps/stanford-vf040px7697.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vj693tb0894.png b/backend/static/maps/stanford-vj693tb0894.png
deleted file mode 100644
index 9a87bdb..0000000
Binary files a/backend/static/maps/stanford-vj693tb0894.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vj873xk9564.png b/backend/static/maps/stanford-vj873xk9564.png
deleted file mode 100644
index 1fd173d..0000000
Binary files a/backend/static/maps/stanford-vj873xk9564.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vm046dm4312.png b/backend/static/maps/stanford-vm046dm4312.png
deleted file mode 100644
index 53e2a9a..0000000
Binary files a/backend/static/maps/stanford-vm046dm4312.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vm487nw2910.png b/backend/static/maps/stanford-vm487nw2910.png
deleted file mode 100644
index 7c1b226..0000000
Binary files a/backend/static/maps/stanford-vm487nw2910.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vm772xm4689.png b/backend/static/maps/stanford-vm772xm4689.png
deleted file mode 100644
index fdef5dd..0000000
Binary files a/backend/static/maps/stanford-vm772xm4689.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vn384ps5855.png b/backend/static/maps/stanford-vn384ps5855.png
deleted file mode 100644
index 97239d3..0000000
Binary files a/backend/static/maps/stanford-vn384ps5855.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vq090cy9643.png b/backend/static/maps/stanford-vq090cy9643.png
deleted file mode 100644
index 509ff01..0000000
Binary files a/backend/static/maps/stanford-vq090cy9643.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vq703tq5346.png b/backend/static/maps/stanford-vq703tq5346.png
deleted file mode 100644
index da18ae3..0000000
Binary files a/backend/static/maps/stanford-vq703tq5346.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vr100vs6614.png b/backend/static/maps/stanford-vr100vs6614.png
deleted file mode 100644
index f2ca847..0000000
Binary files a/backend/static/maps/stanford-vr100vs6614.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vr559zn0094.png b/backend/static/maps/stanford-vr559zn0094.png
deleted file mode 100644
index 70844fb..0000000
Binary files a/backend/static/maps/stanford-vr559zn0094.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vr643zk0012.png b/backend/static/maps/stanford-vr643zk0012.png
deleted file mode 100644
index e18a763..0000000
Binary files a/backend/static/maps/stanford-vr643zk0012.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vs575sf0632.png b/backend/static/maps/stanford-vs575sf0632.png
deleted file mode 100644
index 61b88d8..0000000
Binary files a/backend/static/maps/stanford-vs575sf0632.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vt652gx2003.png b/backend/static/maps/stanford-vt652gx2003.png
deleted file mode 100644
index dde355a..0000000
Binary files a/backend/static/maps/stanford-vt652gx2003.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vx572wx7854.png b/backend/static/maps/stanford-vx572wx7854.png
deleted file mode 100644
index 6e52c93..0000000
Binary files a/backend/static/maps/stanford-vx572wx7854.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vx626rp7621.png b/backend/static/maps/stanford-vx626rp7621.png
deleted file mode 100644
index 61b88d8..0000000
Binary files a/backend/static/maps/stanford-vx626rp7621.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vy057xd4993.png b/backend/static/maps/stanford-vy057xd4993.png
deleted file mode 100644
index 61e171f..0000000
Binary files a/backend/static/maps/stanford-vy057xd4993.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vy318wt4621.png b/backend/static/maps/stanford-vy318wt4621.png
deleted file mode 100644
index 3e9d542..0000000
Binary files a/backend/static/maps/stanford-vy318wt4621.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vz103rb3855.png b/backend/static/maps/stanford-vz103rb3855.png
deleted file mode 100644
index cc47faa..0000000
Binary files a/backend/static/maps/stanford-vz103rb3855.png and /dev/null differ
diff --git a/backend/static/maps/stanford-vz874sc7648.png b/backend/static/maps/stanford-vz874sc7648.png
deleted file mode 100644
index 5cbbfa0..0000000
Binary files a/backend/static/maps/stanford-vz874sc7648.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wb288ky6196.png b/backend/static/maps/stanford-wb288ky6196.png
deleted file mode 100644
index 247a7e3..0000000
Binary files a/backend/static/maps/stanford-wb288ky6196.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wc306gj7427.png b/backend/static/maps/stanford-wc306gj7427.png
deleted file mode 100644
index 0cc0ce8..0000000
Binary files a/backend/static/maps/stanford-wc306gj7427.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wc400bn0433.png b/backend/static/maps/stanford-wc400bn0433.png
deleted file mode 100644
index fd467f3..0000000
Binary files a/backend/static/maps/stanford-wc400bn0433.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wc590wy7435.png b/backend/static/maps/stanford-wc590wy7435.png
deleted file mode 100644
index 359aa08..0000000
Binary files a/backend/static/maps/stanford-wc590wy7435.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wd229xk2007.png b/backend/static/maps/stanford-wd229xk2007.png
deleted file mode 100644
index e5b79ab..0000000
Binary files a/backend/static/maps/stanford-wd229xk2007.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wg587fd2376.png b/backend/static/maps/stanford-wg587fd2376.png
deleted file mode 100644
index d53d4fe..0000000
Binary files a/backend/static/maps/stanford-wg587fd2376.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wh394qy4535.png b/backend/static/maps/stanford-wh394qy4535.png
deleted file mode 100644
index 36372b4..0000000
Binary files a/backend/static/maps/stanford-wh394qy4535.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wj811ms2586.png b/backend/static/maps/stanford-wj811ms2586.png
deleted file mode 100644
index b54e031..0000000
Binary files a/backend/static/maps/stanford-wj811ms2586.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wk022td6859.png b/backend/static/maps/stanford-wk022td6859.png
deleted file mode 100644
index 1e94fad..0000000
Binary files a/backend/static/maps/stanford-wk022td6859.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wm014fv8685.png b/backend/static/maps/stanford-wm014fv8685.png
deleted file mode 100644
index 7c1b226..0000000
Binary files a/backend/static/maps/stanford-wm014fv8685.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wm675mv9049.png b/backend/static/maps/stanford-wm675mv9049.png
deleted file mode 100644
index bb531a4..0000000
Binary files a/backend/static/maps/stanford-wm675mv9049.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wp332fk4868.png b/backend/static/maps/stanford-wp332fk4868.png
deleted file mode 100644
index 9239905..0000000
Binary files a/backend/static/maps/stanford-wp332fk4868.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wp765zw1879.png b/backend/static/maps/stanford-wp765zw1879.png
deleted file mode 100644
index 4b0cefb..0000000
Binary files a/backend/static/maps/stanford-wp765zw1879.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wp923cx5875.png b/backend/static/maps/stanford-wp923cx5875.png
deleted file mode 100644
index 86c4452..0000000
Binary files a/backend/static/maps/stanford-wp923cx5875.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wq280wk4908.png b/backend/static/maps/stanford-wq280wk4908.png
deleted file mode 100644
index 17f9c7d..0000000
Binary files a/backend/static/maps/stanford-wq280wk4908.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ws423tx2448.png b/backend/static/maps/stanford-ws423tx2448.png
deleted file mode 100644
index b57a734..0000000
Binary files a/backend/static/maps/stanford-ws423tx2448.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ws701mc8333.png b/backend/static/maps/stanford-ws701mc8333.png
deleted file mode 100644
index bb531a4..0000000
Binary files a/backend/static/maps/stanford-ws701mc8333.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wv585bc6865.png b/backend/static/maps/stanford-wv585bc6865.png
deleted file mode 100644
index 200cdb5..0000000
Binary files a/backend/static/maps/stanford-wv585bc6865.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wv983tm1584.png b/backend/static/maps/stanford-wv983tm1584.png
deleted file mode 100644
index c4ab55b..0000000
Binary files a/backend/static/maps/stanford-wv983tm1584.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ww854qf4285.png b/backend/static/maps/stanford-ww854qf4285.png
deleted file mode 100644
index 57accf2..0000000
Binary files a/backend/static/maps/stanford-ww854qf4285.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wx140gw5197.png b/backend/static/maps/stanford-wx140gw5197.png
deleted file mode 100644
index fe33fff..0000000
Binary files a/backend/static/maps/stanford-wx140gw5197.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wx902rj2076.png b/backend/static/maps/stanford-wx902rj2076.png
deleted file mode 100644
index 17e1e83..0000000
Binary files a/backend/static/maps/stanford-wx902rj2076.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wy056pz5419.png b/backend/static/maps/stanford-wy056pz5419.png
deleted file mode 100644
index 80bf878..0000000
Binary files a/backend/static/maps/stanford-wy056pz5419.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wy805fh2554.png b/backend/static/maps/stanford-wy805fh2554.png
deleted file mode 100644
index 2d7cd11..0000000
Binary files a/backend/static/maps/stanford-wy805fh2554.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wy896vb8516.png b/backend/static/maps/stanford-wy896vb8516.png
deleted file mode 100644
index 660ceff..0000000
Binary files a/backend/static/maps/stanford-wy896vb8516.png and /dev/null differ
diff --git a/backend/static/maps/stanford-wz504vr4333.png b/backend/static/maps/stanford-wz504vr4333.png
deleted file mode 100644
index 504efef..0000000
Binary files a/backend/static/maps/stanford-wz504vr4333.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xg070wh7159.png b/backend/static/maps/stanford-xg070wh7159.png
deleted file mode 100644
index 217bfdb..0000000
Binary files a/backend/static/maps/stanford-xg070wh7159.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xg598wd4681.png b/backend/static/maps/stanford-xg598wd4681.png
deleted file mode 100644
index 62d625f..0000000
Binary files a/backend/static/maps/stanford-xg598wd4681.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xg709qt2157.png b/backend/static/maps/stanford-xg709qt2157.png
deleted file mode 100644
index fad5c47..0000000
Binary files a/backend/static/maps/stanford-xg709qt2157.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xg857mw4630.png b/backend/static/maps/stanford-xg857mw4630.png
deleted file mode 100644
index b837702..0000000
Binary files a/backend/static/maps/stanford-xg857mw4630.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xh341cx3779.png b/backend/static/maps/stanford-xh341cx3779.png
deleted file mode 100644
index fd8fd0b..0000000
Binary files a/backend/static/maps/stanford-xh341cx3779.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xh400bs8990.png b/backend/static/maps/stanford-xh400bs8990.png
deleted file mode 100644
index 8fb51d6..0000000
Binary files a/backend/static/maps/stanford-xh400bs8990.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xj408js6736.png b/backend/static/maps/stanford-xj408js6736.png
deleted file mode 100644
index 36f36b9..0000000
Binary files a/backend/static/maps/stanford-xj408js6736.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xm536wp1814.png b/backend/static/maps/stanford-xm536wp1814.png
deleted file mode 100644
index 8b16ce2..0000000
Binary files a/backend/static/maps/stanford-xm536wp1814.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xn125dn1518.png b/backend/static/maps/stanford-xn125dn1518.png
deleted file mode 100644
index 7ed58fe..0000000
Binary files a/backend/static/maps/stanford-xn125dn1518.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xn545zm8676.png b/backend/static/maps/stanford-xn545zm8676.png
deleted file mode 100644
index 0aefec9..0000000
Binary files a/backend/static/maps/stanford-xn545zm8676.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xn626fk0469.png b/backend/static/maps/stanford-xn626fk0469.png
deleted file mode 100644
index 335c395..0000000
Binary files a/backend/static/maps/stanford-xn626fk0469.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xn748dm9108.png b/backend/static/maps/stanford-xn748dm9108.png
deleted file mode 100644
index a5b1b75..0000000
Binary files a/backend/static/maps/stanford-xn748dm9108.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xr457bt7358.png b/backend/static/maps/stanford-xr457bt7358.png
deleted file mode 100644
index 4671b3c..0000000
Binary files a/backend/static/maps/stanford-xr457bt7358.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xs659jb9888.png b/backend/static/maps/stanford-xs659jb9888.png
deleted file mode 100644
index 200cdb5..0000000
Binary files a/backend/static/maps/stanford-xs659jb9888.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xv132sx1713.png b/backend/static/maps/stanford-xv132sx1713.png
deleted file mode 100644
index 71494ef..0000000
Binary files a/backend/static/maps/stanford-xv132sx1713.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xv882mx8506.png b/backend/static/maps/stanford-xv882mx8506.png
deleted file mode 100644
index f363690..0000000
Binary files a/backend/static/maps/stanford-xv882mx8506.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xw442md8231.png b/backend/static/maps/stanford-xw442md8231.png
deleted file mode 100644
index 3460f83..0000000
Binary files a/backend/static/maps/stanford-xw442md8231.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xy342dw0766.png b/backend/static/maps/stanford-xy342dw0766.png
deleted file mode 100644
index da18ae3..0000000
Binary files a/backend/static/maps/stanford-xy342dw0766.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xy974vp1657.png b/backend/static/maps/stanford-xy974vp1657.png
deleted file mode 100644
index 656e336..0000000
Binary files a/backend/static/maps/stanford-xy974vp1657.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xz278xc9073.png b/backend/static/maps/stanford-xz278xc9073.png
deleted file mode 100644
index 23a848e..0000000
Binary files a/backend/static/maps/stanford-xz278xc9073.png and /dev/null differ
diff --git a/backend/static/maps/stanford-xz432bp4228.png b/backend/static/maps/stanford-xz432bp4228.png
deleted file mode 100644
index 5851a13..0000000
Binary files a/backend/static/maps/stanford-xz432bp4228.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yb019dk9254.png b/backend/static/maps/stanford-yb019dk9254.png
deleted file mode 100644
index 4d58aa7..0000000
Binary files a/backend/static/maps/stanford-yb019dk9254.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yc810rj3545.png b/backend/static/maps/stanford-yc810rj3545.png
deleted file mode 100644
index 1e94fad..0000000
Binary files a/backend/static/maps/stanford-yc810rj3545.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yf893gf5185.png b/backend/static/maps/stanford-yf893gf5185.png
deleted file mode 100644
index eaea6d5..0000000
Binary files a/backend/static/maps/stanford-yf893gf5185.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yg728hk4594.png b/backend/static/maps/stanford-yg728hk4594.png
deleted file mode 100644
index f40ab3d..0000000
Binary files a/backend/static/maps/stanford-yg728hk4594.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yg959vy3274.png b/backend/static/maps/stanford-yg959vy3274.png
deleted file mode 100644
index 3d9aa20..0000000
Binary files a/backend/static/maps/stanford-yg959vy3274.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yh002nq6420.png b/backend/static/maps/stanford-yh002nq6420.png
deleted file mode 100644
index 549dcfe..0000000
Binary files a/backend/static/maps/stanford-yh002nq6420.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yh838zg5759.png b/backend/static/maps/stanford-yh838zg5759.png
deleted file mode 100644
index 4dc5815..0000000
Binary files a/backend/static/maps/stanford-yh838zg5759.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yj121xk0764.png b/backend/static/maps/stanford-yj121xk0764.png
deleted file mode 100644
index f056e3b..0000000
Binary files a/backend/static/maps/stanford-yj121xk0764.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yj142kb3734.png b/backend/static/maps/stanford-yj142kb3734.png
deleted file mode 100644
index 81a9382..0000000
Binary files a/backend/static/maps/stanford-yj142kb3734.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yj163by1487.png b/backend/static/maps/stanford-yj163by1487.png
deleted file mode 100644
index 2db1d4d..0000000
Binary files a/backend/static/maps/stanford-yj163by1487.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yj989ws2895.png b/backend/static/maps/stanford-yj989ws2895.png
deleted file mode 100644
index 4945aaa..0000000
Binary files a/backend/static/maps/stanford-yj989ws2895.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yk122bq6564.png b/backend/static/maps/stanford-yk122bq6564.png
deleted file mode 100644
index c37cb05..0000000
Binary files a/backend/static/maps/stanford-yk122bq6564.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ym219gb2804.png b/backend/static/maps/stanford-ym219gb2804.png
deleted file mode 100644
index f3a711f..0000000
Binary files a/backend/static/maps/stanford-ym219gb2804.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yn382ts8968.png b/backend/static/maps/stanford-yn382ts8968.png
deleted file mode 100644
index 8fb6662..0000000
Binary files a/backend/static/maps/stanford-yn382ts8968.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yn736dv5160.png b/backend/static/maps/stanford-yn736dv5160.png
deleted file mode 100644
index bb531a4..0000000
Binary files a/backend/static/maps/stanford-yn736dv5160.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yp257hb5265.png b/backend/static/maps/stanford-yp257hb5265.png
deleted file mode 100644
index 13a5d0b..0000000
Binary files a/backend/static/maps/stanford-yp257hb5265.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yp482vz6368.png b/backend/static/maps/stanford-yp482vz6368.png
deleted file mode 100644
index dffd868..0000000
Binary files a/backend/static/maps/stanford-yp482vz6368.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yq839dv6963.png b/backend/static/maps/stanford-yq839dv6963.png
deleted file mode 100644
index 5d4615c..0000000
Binary files a/backend/static/maps/stanford-yq839dv6963.png and /dev/null differ
diff --git a/backend/static/maps/stanford-ys524rx1284.png b/backend/static/maps/stanford-ys524rx1284.png
deleted file mode 100644
index 73d2631..0000000
Binary files a/backend/static/maps/stanford-ys524rx1284.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yt122mc1204.png b/backend/static/maps/stanford-yt122mc1204.png
deleted file mode 100644
index 415b07e..0000000
Binary files a/backend/static/maps/stanford-yt122mc1204.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yv134bx5135.png b/backend/static/maps/stanford-yv134bx5135.png
deleted file mode 100644
index ba3a06f..0000000
Binary files a/backend/static/maps/stanford-yv134bx5135.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yy425kw3766.png b/backend/static/maps/stanford-yy425kw3766.png
deleted file mode 100644
index bf73c9c..0000000
Binary files a/backend/static/maps/stanford-yy425kw3766.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yy464gv8053.png b/backend/static/maps/stanford-yy464gv8053.png
deleted file mode 100644
index f784f94..0000000
Binary files a/backend/static/maps/stanford-yy464gv8053.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yy874bw5480.png b/backend/static/maps/stanford-yy874bw5480.png
deleted file mode 100644
index 789a7d7..0000000
Binary files a/backend/static/maps/stanford-yy874bw5480.png and /dev/null differ
diff --git a/backend/static/maps/stanford-yz293xh1097.png b/backend/static/maps/stanford-yz293xh1097.png
deleted file mode 100644
index fa935e3..0000000
Binary files a/backend/static/maps/stanford-yz293xh1097.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zb352pb5096.png b/backend/static/maps/stanford-zb352pb5096.png
deleted file mode 100644
index 9614ddb..0000000
Binary files a/backend/static/maps/stanford-zb352pb5096.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zb786ww5967.png b/backend/static/maps/stanford-zb786ww5967.png
deleted file mode 100644
index 80bf878..0000000
Binary files a/backend/static/maps/stanford-zb786ww5967.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zd096zk8218.png b/backend/static/maps/stanford-zd096zk8218.png
deleted file mode 100644
index ef22849..0000000
Binary files a/backend/static/maps/stanford-zd096zk8218.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zg338xh5248.png b/backend/static/maps/stanford-zg338xh5248.png
deleted file mode 100644
index 235ec11..0000000
Binary files a/backend/static/maps/stanford-zg338xh5248.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zg934rd8487.png b/backend/static/maps/stanford-zg934rd8487.png
deleted file mode 100644
index 4dae46d..0000000
Binary files a/backend/static/maps/stanford-zg934rd8487.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zg982fx5597.png b/backend/static/maps/stanford-zg982fx5597.png
deleted file mode 100644
index 7df9180..0000000
Binary files a/backend/static/maps/stanford-zg982fx5597.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zh230tn8113.png b/backend/static/maps/stanford-zh230tn8113.png
deleted file mode 100644
index f8e9048..0000000
Binary files a/backend/static/maps/stanford-zh230tn8113.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zh315vs7445.png b/backend/static/maps/stanford-zh315vs7445.png
deleted file mode 100644
index da92f49..0000000
Binary files a/backend/static/maps/stanford-zh315vs7445.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zh374gw2012.png b/backend/static/maps/stanford-zh374gw2012.png
deleted file mode 100644
index 459e4e2..0000000
Binary files a/backend/static/maps/stanford-zh374gw2012.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zh944fy2083.png b/backend/static/maps/stanford-zh944fy2083.png
deleted file mode 100644
index 3693603..0000000
Binary files a/backend/static/maps/stanford-zh944fy2083.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zj353cp8419.png b/backend/static/maps/stanford-zj353cp8419.png
deleted file mode 100644
index 4671b3c..0000000
Binary files a/backend/static/maps/stanford-zj353cp8419.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zj648gx8591.png b/backend/static/maps/stanford-zj648gx8591.png
deleted file mode 100644
index 94aec90..0000000
Binary files a/backend/static/maps/stanford-zj648gx8591.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zm093gx2369.png b/backend/static/maps/stanford-zm093gx2369.png
deleted file mode 100644
index 0aefec9..0000000
Binary files a/backend/static/maps/stanford-zm093gx2369.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zm534vp6363.png b/backend/static/maps/stanford-zm534vp6363.png
deleted file mode 100644
index cdb6ab7..0000000
Binary files a/backend/static/maps/stanford-zm534vp6363.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zm848qv9125.png b/backend/static/maps/stanford-zm848qv9125.png
deleted file mode 100644
index 7a1fd6d..0000000
Binary files a/backend/static/maps/stanford-zm848qv9125.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zp052wn6600.png b/backend/static/maps/stanford-zp052wn6600.png
deleted file mode 100644
index 2e668f7..0000000
Binary files a/backend/static/maps/stanford-zp052wn6600.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zp640nv9896.png b/backend/static/maps/stanford-zp640nv9896.png
deleted file mode 100644
index ed6b6d8..0000000
Binary files a/backend/static/maps/stanford-zp640nv9896.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zp799xw8630.png b/backend/static/maps/stanford-zp799xw8630.png
deleted file mode 100644
index f05d3ef..0000000
Binary files a/backend/static/maps/stanford-zp799xw8630.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zp887rp9349.png b/backend/static/maps/stanford-zp887rp9349.png
deleted file mode 100644
index 5d9b9f5..0000000
Binary files a/backend/static/maps/stanford-zp887rp9349.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zq621hs6355.png b/backend/static/maps/stanford-zq621hs6355.png
deleted file mode 100644
index 4520f31..0000000
Binary files a/backend/static/maps/stanford-zq621hs6355.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zq811nh5368.png b/backend/static/maps/stanford-zq811nh5368.png
deleted file mode 100644
index 72b061e..0000000
Binary files a/backend/static/maps/stanford-zq811nh5368.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zr428hb7795.png b/backend/static/maps/stanford-zr428hb7795.png
deleted file mode 100644
index 9614ddb..0000000
Binary files a/backend/static/maps/stanford-zr428hb7795.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zr731vs6875.png b/backend/static/maps/stanford-zr731vs6875.png
deleted file mode 100644
index fb2b8c8..0000000
Binary files a/backend/static/maps/stanford-zr731vs6875.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zs583qy9152.png b/backend/static/maps/stanford-zs583qy9152.png
deleted file mode 100644
index ace3f44..0000000
Binary files a/backend/static/maps/stanford-zs583qy9152.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zs823mt0047.png b/backend/static/maps/stanford-zs823mt0047.png
deleted file mode 100644
index 40608fe..0000000
Binary files a/backend/static/maps/stanford-zs823mt0047.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zs937jp1255.png b/backend/static/maps/stanford-zs937jp1255.png
deleted file mode 100644
index 002362f..0000000
Binary files a/backend/static/maps/stanford-zs937jp1255.png and /dev/null differ
diff --git a/backend/static/maps/stanford-zt768nj7369.png b/backend/static/maps/stanford-zt768nj7369.png
deleted file mode 100644
index e775c94..0000000
Binary files a/backend/static/maps/stanford-zt768nj7369.png and /dev/null differ
diff --git a/backend/static/maps/t028r24w4fi01.png b/backend/static/maps/t028r24w4fi01.png
deleted file mode 100644
index 29b4d1e..0000000
Binary files a/backend/static/maps/t028r24w4fi01.png and /dev/null differ
diff --git a/backend/static/maps/t028r24w4fi03.png b/backend/static/maps/t028r24w4fi03.png
deleted file mode 100644
index 8acb635..0000000
Binary files a/backend/static/maps/t028r24w4fi03.png and /dev/null differ
diff --git a/backend/static/maps/t028r24w4fm02.png b/backend/static/maps/t028r24w4fm02.png
deleted file mode 100644
index 8acb635..0000000
Binary files a/backend/static/maps/t028r24w4fm02.png and /dev/null differ
diff --git a/backend/static/maps/t049r13w4fi01.png b/backend/static/maps/t049r13w4fi01.png
deleted file mode 100644
index 5ff922f..0000000
Binary files a/backend/static/maps/t049r13w4fi01.png and /dev/null differ
diff --git a/backend/static/maps/t049r14w4fi01.png b/backend/static/maps/t049r14w4fi01.png
deleted file mode 100644
index 3bb4a20..0000000
Binary files a/backend/static/maps/t049r14w4fi01.png and /dev/null differ
diff --git a/backend/static/maps/t050r13w4fi01.png b/backend/static/maps/t050r13w4fi01.png
deleted file mode 100644
index e67f84b..0000000
Binary files a/backend/static/maps/t050r13w4fi01.png and /dev/null differ
diff --git a/backend/static/maps/t051r12w4fi01.png b/backend/static/maps/t051r12w4fi01.png
deleted file mode 100644
index 9d07b9b..0000000
Binary files a/backend/static/maps/t051r12w4fi01.png and /dev/null differ
diff --git a/backend/static/maps/t051r14w4fi01.png b/backend/static/maps/t051r14w4fi01.png
deleted file mode 100644
index b38f36c..0000000
Binary files a/backend/static/maps/t051r14w4fi01.png and /dev/null differ
diff --git a/backend/static/maps/t051r16w4fi01.png b/backend/static/maps/t051r16w4fi01.png
deleted file mode 100644
index 79e9a42..0000000
Binary files a/backend/static/maps/t051r16w4fi01.png and /dev/null differ
diff --git a/backend/static/maps/t051r17w4fi01.png b/backend/static/maps/t051r17w4fi01.png
deleted file mode 100644
index 3c90480..0000000
Binary files a/backend/static/maps/t051r17w4fi01.png and /dev/null differ
diff --git a/backend/static/maps/t052r12w4fi01.png b/backend/static/maps/t052r12w4fi01.png
deleted file mode 100644
index 0f36513..0000000
Binary files a/backend/static/maps/t052r12w4fi01.png and /dev/null differ
diff --git a/backend/static/maps/t055r08w4fl02.png b/backend/static/maps/t055r08w4fl02.png
deleted file mode 100644
index fba3cf5..0000000
Binary files a/backend/static/maps/t055r08w4fl02.png and /dev/null differ
diff --git a/backend/static/maps/t124r49w5fi01.png b/backend/static/maps/t124r49w5fi01.png
deleted file mode 100644
index 8883f88..0000000
Binary files a/backend/static/maps/t124r49w5fi01.png and /dev/null differ
diff --git a/backend/static/maps/t146r32w5fd02.png b/backend/static/maps/t146r32w5fd02.png
deleted file mode 100644
index ebbfe3b..0000000
Binary files a/backend/static/maps/t146r32w5fd02.png and /dev/null differ
diff --git a/backend/static/maps/t146r34w5fi01.png b/backend/static/maps/t146r34w5fi01.png
deleted file mode 100644
index 93537f5..0000000
Binary files a/backend/static/maps/t146r34w5fi01.png and /dev/null differ
diff --git a/backend/static/maps/t147r32w5fi01.png b/backend/static/maps/t147r32w5fi01.png
deleted file mode 100644
index d8ad93d..0000000
Binary files a/backend/static/maps/t147r32w5fi01.png and /dev/null differ
diff --git a/backend/static/maps/t147r32w5fl02.png b/backend/static/maps/t147r32w5fl02.png
deleted file mode 100644
index d8ad93d..0000000
Binary files a/backend/static/maps/t147r32w5fl02.png and /dev/null differ
diff --git a/backend/static/maps/t147r34w5fi01.png b/backend/static/maps/t147r34w5fi01.png
deleted file mode 100644
index d296349..0000000
Binary files a/backend/static/maps/t147r34w5fi01.png and /dev/null differ
diff --git a/backend/static/maps/t148gt77d.png b/backend/static/maps/t148gt77d.png
deleted file mode 100644
index bd4a8f8..0000000
Binary files a/backend/static/maps/t148gt77d.png and /dev/null differ
diff --git a/backend/static/maps/t164r49w5fi01.png b/backend/static/maps/t164r49w5fi01.png
deleted file mode 100644
index 6122b58..0000000
Binary files a/backend/static/maps/t164r49w5fi01.png and /dev/null differ
diff --git a/backend/static/maps/thkh-m6bg.png b/backend/static/maps/thkh-m6bg.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/thkh-m6bg.png and /dev/null differ
diff --git a/backend/static/maps/uati-b8hh.png b/backend/static/maps/uati-b8hh.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/uati-b8hh.png and /dev/null differ
diff --git a/backend/static/maps/ucpz-2r55.png b/backend/static/maps/ucpz-2r55.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/ucpz-2r55.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_106.png b/backend/static/maps/ui_sheetmaps_106.png
deleted file mode 100644
index b303193..0000000
Binary files a/backend/static/maps/ui_sheetmaps_106.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_113.png b/backend/static/maps/ui_sheetmaps_113.png
deleted file mode 100644
index ca5ec5e..0000000
Binary files a/backend/static/maps/ui_sheetmaps_113.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_125.png b/backend/static/maps/ui_sheetmaps_125.png
deleted file mode 100644
index 324b494..0000000
Binary files a/backend/static/maps/ui_sheetmaps_125.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_14.png b/backend/static/maps/ui_sheetmaps_14.png
deleted file mode 100644
index 266542c..0000000
Binary files a/backend/static/maps/ui_sheetmaps_14.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_189.png b/backend/static/maps/ui_sheetmaps_189.png
deleted file mode 100644
index e5a352e..0000000
Binary files a/backend/static/maps/ui_sheetmaps_189.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_23.png b/backend/static/maps/ui_sheetmaps_23.png
deleted file mode 100644
index 266542c..0000000
Binary files a/backend/static/maps/ui_sheetmaps_23.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_28.png b/backend/static/maps/ui_sheetmaps_28.png
deleted file mode 100644
index 266542c..0000000
Binary files a/backend/static/maps/ui_sheetmaps_28.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_321.png b/backend/static/maps/ui_sheetmaps_321.png
deleted file mode 100644
index ca5ec5e..0000000
Binary files a/backend/static/maps/ui_sheetmaps_321.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_33.png b/backend/static/maps/ui_sheetmaps_33.png
deleted file mode 100644
index 266542c..0000000
Binary files a/backend/static/maps/ui_sheetmaps_33.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_43.png b/backend/static/maps/ui_sheetmaps_43.png
deleted file mode 100644
index 724db81..0000000
Binary files a/backend/static/maps/ui_sheetmaps_43.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_52.png b/backend/static/maps/ui_sheetmaps_52.png
deleted file mode 100644
index ca5ec5e..0000000
Binary files a/backend/static/maps/ui_sheetmaps_52.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_86.png b/backend/static/maps/ui_sheetmaps_86.png
deleted file mode 100644
index ef11b86..0000000
Binary files a/backend/static/maps/ui_sheetmaps_86.png and /dev/null differ
diff --git a/backend/static/maps/ui_sheetmaps_91.png b/backend/static/maps/ui_sheetmaps_91.png
deleted file mode 100644
index 959fafc..0000000
Binary files a/backend/static/maps/ui_sheetmaps_91.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1335.png b/backend/static/maps/ui_testiadep_1335.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1335.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1745.png b/backend/static/maps/ui_testiadep_1745.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1745.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1748.png b/backend/static/maps/ui_testiadep_1748.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1748.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1751.png b/backend/static/maps/ui_testiadep_1751.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1751.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1760.png b/backend/static/maps/ui_testiadep_1760.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1760.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1763.png b/backend/static/maps/ui_testiadep_1763.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1763.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1788.png b/backend/static/maps/ui_testiadep_1788.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1788.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1791.png b/backend/static/maps/ui_testiadep_1791.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1791.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1793.png b/backend/static/maps/ui_testiadep_1793.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1793.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1805.png b/backend/static/maps/ui_testiadep_1805.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1805.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1813.png b/backend/static/maps/ui_testiadep_1813.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1813.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1814.png b/backend/static/maps/ui_testiadep_1814.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1814.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1820.png b/backend/static/maps/ui_testiadep_1820.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1820.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1827.png b/backend/static/maps/ui_testiadep_1827.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1827.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_1835.png b/backend/static/maps/ui_testiadep_1835.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_1835.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_679.png b/backend/static/maps/ui_testiadep_679.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_679.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_706.png b/backend/static/maps/ui_testiadep_706.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_706.png and /dev/null differ
diff --git a/backend/static/maps/ui_testiadep_817.png b/backend/static/maps/ui_testiadep_817.png
deleted file mode 100644
index 159d3a9..0000000
Binary files a/backend/static/maps/ui_testiadep_817.png and /dev/null differ
diff --git a/backend/static/maps/ui_ucm_113.png b/backend/static/maps/ui_ucm_113.png
deleted file mode 100644
index 90abe75..0000000
Binary files a/backend/static/maps/ui_ucm_113.png and /dev/null differ
diff --git a/backend/static/maps/ui_ucm_119.png b/backend/static/maps/ui_ucm_119.png
deleted file mode 100644
index 90abe75..0000000
Binary files a/backend/static/maps/ui_ucm_119.png and /dev/null differ
diff --git a/backend/static/maps/ui_ucm_138.png b/backend/static/maps/ui_ucm_138.png
deleted file mode 100644
index 90abe75..0000000
Binary files a/backend/static/maps/ui_ucm_138.png and /dev/null differ
diff --git a/backend/static/maps/ui_ucm_195.png b/backend/static/maps/ui_ucm_195.png
deleted file mode 100644
index 90abe75..0000000
Binary files a/backend/static/maps/ui_ucm_195.png and /dev/null differ
diff --git a/backend/static/maps/ui_ucm_197.png b/backend/static/maps/ui_ucm_197.png
deleted file mode 100644
index 90abe75..0000000
Binary files a/backend/static/maps/ui_ucm_197.png and /dev/null differ
diff --git a/backend/static/maps/ui_ucm_212.png b/backend/static/maps/ui_ucm_212.png
deleted file mode 100644
index 90abe75..0000000
Binary files a/backend/static/maps/ui_ucm_212.png and /dev/null differ
diff --git a/backend/static/maps/ui_ucm_255.png b/backend/static/maps/ui_ucm_255.png
deleted file mode 100644
index 90abe75..0000000
Binary files a/backend/static/maps/ui_ucm_255.png and /dev/null differ
diff --git a/backend/static/maps/ui_ucm_258.png b/backend/static/maps/ui_ucm_258.png
deleted file mode 100644
index 90abe75..0000000
Binary files a/backend/static/maps/ui_ucm_258.png and /dev/null differ
diff --git a/backend/static/maps/ui_ucm_29.png b/backend/static/maps/ui_ucm_29.png
deleted file mode 100644
index 90abe75..0000000
Binary files a/backend/static/maps/ui_ucm_29.png and /dev/null differ
diff --git a/backend/static/maps/ui_ucm_35.png b/backend/static/maps/ui_ucm_35.png
deleted file mode 100644
index 90abe75..0000000
Binary files a/backend/static/maps/ui_ucm_35.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_121241.png b/backend/static/maps/utaustin_121241.png
deleted file mode 100644
index b56e953..0000000
Binary files a/backend/static/maps/utaustin_121241.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_121263.png b/backend/static/maps/utaustin_121263.png
deleted file mode 100644
index 129f1c9..0000000
Binary files a/backend/static/maps/utaustin_121263.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_121266.png b/backend/static/maps/utaustin_121266.png
deleted file mode 100644
index 38b194b..0000000
Binary files a/backend/static/maps/utaustin_121266.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_121268.png b/backend/static/maps/utaustin_121268.png
deleted file mode 100644
index 9da092c..0000000
Binary files a/backend/static/maps/utaustin_121268.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_121273.png b/backend/static/maps/utaustin_121273.png
deleted file mode 100644
index 854cc01..0000000
Binary files a/backend/static/maps/utaustin_121273.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_121276.png b/backend/static/maps/utaustin_121276.png
deleted file mode 100644
index c7818be..0000000
Binary files a/backend/static/maps/utaustin_121276.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_121277.png b/backend/static/maps/utaustin_121277.png
deleted file mode 100644
index a1bd1a2..0000000
Binary files a/backend/static/maps/utaustin_121277.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_121283.png b/backend/static/maps/utaustin_121283.png
deleted file mode 100644
index 9b2dcfc..0000000
Binary files a/backend/static/maps/utaustin_121283.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_19003.png b/backend/static/maps/utaustin_19003.png
deleted file mode 100644
index 94b5d0e..0000000
Binary files a/backend/static/maps/utaustin_19003.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_19004.png b/backend/static/maps/utaustin_19004.png
deleted file mode 100644
index 4343557..0000000
Binary files a/backend/static/maps/utaustin_19004.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_19005.png b/backend/static/maps/utaustin_19005.png
deleted file mode 100644
index 862aef1..0000000
Binary files a/backend/static/maps/utaustin_19005.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_19006.png b/backend/static/maps/utaustin_19006.png
deleted file mode 100644
index 657c611..0000000
Binary files a/backend/static/maps/utaustin_19006.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_19007.png b/backend/static/maps/utaustin_19007.png
deleted file mode 100644
index 656ea4e..0000000
Binary files a/backend/static/maps/utaustin_19007.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_19008.png b/backend/static/maps/utaustin_19008.png
deleted file mode 100644
index d08b3e1..0000000
Binary files a/backend/static/maps/utaustin_19008.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_19009.png b/backend/static/maps/utaustin_19009.png
deleted file mode 100644
index 3cb633e..0000000
Binary files a/backend/static/maps/utaustin_19009.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_19010.png b/backend/static/maps/utaustin_19010.png
deleted file mode 100644
index 9435d68..0000000
Binary files a/backend/static/maps/utaustin_19010.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_19011.png b/backend/static/maps/utaustin_19011.png
deleted file mode 100644
index 5194391..0000000
Binary files a/backend/static/maps/utaustin_19011.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_19012.png b/backend/static/maps/utaustin_19012.png
deleted file mode 100644
index 97b25e5..0000000
Binary files a/backend/static/maps/utaustin_19012.png and /dev/null differ
diff --git a/backend/static/maps/utaustin_19128.png b/backend/static/maps/utaustin_19128.png
deleted file mode 100644
index 65956df..0000000
Binary files a/backend/static/maps/utaustin_19128.png and /dev/null differ
diff --git a/backend/static/maps/walter-geology-library.png b/backend/static/maps/walter-geology-library.png
deleted file mode 100644
index e1e6461..0000000
Binary files a/backend/static/maps/walter-geology-library.png and /dev/null differ
diff --git a/backend/static/maps/wwy2-k7b3.png b/backend/static/maps/wwy2-k7b3.png
deleted file mode 100644
index 8b2beb3..0000000
Binary files a/backend/static/maps/wwy2-k7b3.png and /dev/null differ
diff --git a/backend/tests/api/test_ogc.py b/backend/tests/api/test_ogc.py
index f67a1c4..22d35cd 100644
--- a/backend/tests/api/test_ogc.py
+++ b/backend/tests/api/test_ogc.py
@@ -12,7 +12,7 @@ def test_ogc_landing_page():
assert response.status_code == 200
data = response.json()
assert "links" in data
- assert data["title"] == "BTAA Geospatial API - OGC API Records"
+ assert data["title"] == "OpenGeoMetadata API - OGC API Records"
def test_ogc_conformance():
diff --git a/backend/tests/api/v1/test_admin_endpoints.py b/backend/tests/api/v1/test_admin_endpoints.py
index 1c5c528..20da13d 100644
--- a/backend/tests/api/v1/test_admin_endpoints.py
+++ b/backend/tests/api/v1/test_admin_endpoints.py
@@ -7,6 +7,7 @@
from fastapi.testclient import TestClient
from app.main import app
+from tests.utils.route_helpers import route_paths
client = TestClient(app)
@@ -70,7 +71,7 @@ def test_identify_geo_entities_endpoint_exists(self):
def test_admin_endpoints_structure(self):
"""Test that admin endpoints are properly configured."""
# Check that admin routes exist
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
# Check if admin routes are present (they might not be included in the main app)
admin_routes = [route for route in routes if "/admin" in route]
diff --git a/backend/tests/api/v1/test_citation_endpoints.py b/backend/tests/api/v1/test_citation_endpoints.py
index 568204b..40ce04e 100644
--- a/backend/tests/api/v1/test_citation_endpoints.py
+++ b/backend/tests/api/v1/test_citation_endpoints.py
@@ -6,6 +6,7 @@
from fastapi.testclient import TestClient
from app.main import app
+from tests.utils.route_helpers import route_paths
client = TestClient(app)
@@ -18,9 +19,9 @@ def assert_public_error(data, *, status: int, code: str):
@pytest.mark.unit
def test_citation_endpoint_paths_exist():
"""Test that citation endpoints are registered."""
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
assert "/api/v1/resources/{id}" in routes
- resource_routes = [r.path for r in app.routes if "citation" in str(r.path)]
+ resource_routes = [path for path in routes if "citation" in path]
assert len(resource_routes) >= 1
diff --git a/backend/tests/api/v1/test_endpoint_modules_resources.py b/backend/tests/api/v1/test_endpoint_modules_resources.py
index 88e32e7..bb87a2c 100644
--- a/backend/tests/api/v1/test_endpoint_modules_resources.py
+++ b/backend/tests/api/v1/test_endpoint_modules_resources.py
@@ -8,6 +8,7 @@
# Create test app
from app.api.v1.endpoint_modules.resources import router
+from tests.utils.route_helpers import route_paths, routes_with_paths
app = FastAPI()
app.include_router(router)
@@ -191,7 +192,7 @@ def test_invalid_limit_parameter(self):
def test_endpoint_paths_exist(self):
"""Test that all expected endpoint paths exist."""
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
expected_paths = [
"/resources/",
@@ -210,11 +211,9 @@ def test_endpoint_paths_exist(self):
def test_endpoint_http_methods(self):
"""Test that endpoints use correct HTTP methods."""
- routes = [route for route in app.routes if hasattr(route, "methods")]
-
# All resource endpoints should be GET methods
- for route in routes:
- if "/resources" in route.path:
+ for path, route in routes_with_paths(app):
+ if "/resources" in path:
assert "GET" in route.methods
def test_function_signatures(self):
diff --git a/backend/tests/api/v1/test_endpoint_modules_resources_production.py b/backend/tests/api/v1/test_endpoint_modules_resources_production.py
index 3de8493..f037fa1 100644
--- a/backend/tests/api/v1/test_endpoint_modules_resources_production.py
+++ b/backend/tests/api/v1/test_endpoint_modules_resources_production.py
@@ -41,8 +41,8 @@ def test_get_resource_with_real_database(self):
if response.status_code == 404:
data = response.json()
- assert "error" in data
- assert "not found" in data["error"].lower()
+ message = data.get("error") or data.get("detail", "")
+ assert "not found" in message.lower()
def test_get_resource_ogm_with_real_database(self):
"""Test get resource OGM with real database connection."""
diff --git a/backend/tests/api/v1/test_endpoint_modules_root.py b/backend/tests/api/v1/test_endpoint_modules_root.py
index 27409b1..05b05b3 100644
--- a/backend/tests/api/v1/test_endpoint_modules_root.py
+++ b/backend/tests/api/v1/test_endpoint_modules_root.py
@@ -8,6 +8,7 @@
# Create test app
from app.api.v1.endpoint_modules.root import router
+from tests.utils.route_helpers import route_by_path, route_paths
app = FastAPI()
app.include_router(router)
@@ -85,7 +86,7 @@ def test_api_root_response_content(self):
# Check attributes
attributes = api_info["attributes"]
- assert attributes["api"] == "BTAA Geospatial API"
+ assert attributes["api"] == "OpenGeoMetadata API"
assert attributes["version"] == "0.7.0"
assert "description" in attributes
assert "endpoints" in attributes
@@ -123,8 +124,8 @@ def test_api_root_description(self):
attributes = data["data"]["attributes"]
description = attributes["description"]
- assert "Big Ten Academic Alliance" in description
- assert "geospatial" in description
+ assert "OpenGeoMetadata" in description
+ assert "Aardvark" in description
def test_api_root_version(self):
"""Test API root version."""
@@ -171,16 +172,14 @@ def test_api_root_response_headers(self):
def test_api_root_endpoint_path_exists(self):
"""Test that root endpoint path exists."""
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
assert "/" in routes
def test_api_root_endpoint_http_method(self):
"""Test that root endpoint uses correct HTTP method."""
- routes = [route for route in app.routes if hasattr(route, "methods")]
-
- for route in routes:
- if route.path == "/":
- assert "GET" in route.methods
+ route = route_by_path(app, "/")
+ assert route is not None
+ assert "GET" in route.methods
def test_function_signature(self):
"""Test function signature for root endpoint."""
diff --git a/backend/tests/api/v1/test_gazetteer_endpoints.py b/backend/tests/api/v1/test_gazetteer_endpoints.py
index de31716..e3d385e 100644
--- a/backend/tests/api/v1/test_gazetteer_endpoints.py
+++ b/backend/tests/api/v1/test_gazetteer_endpoints.py
@@ -4,6 +4,7 @@
from fastapi.testclient import TestClient
from app.main import app
+from tests.utils.route_helpers import route_paths
client = TestClient(app)
@@ -311,7 +312,7 @@ def disable_caching(self):
def test_gazetteer_endpoints_structure(self):
"""Test that gazetteer endpoints are properly configured."""
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
assert "/api/v1/gazetteers" in routes
assert "/api/v1/gazetteers/search" in routes
diff --git a/backend/tests/api/v1/test_mcp_endpoints.py b/backend/tests/api/v1/test_mcp_endpoints.py
index d9e6d9a..681c3f7 100644
--- a/backend/tests/api/v1/test_mcp_endpoints.py
+++ b/backend/tests/api/v1/test_mcp_endpoints.py
@@ -9,6 +9,7 @@
from app.api.v1.endpoint_modules.mcp import router
from app.main import app
+from tests.utils.route_helpers import route_paths
client = TestClient(app)
@@ -19,7 +20,7 @@ class TestMCPEndpoints:
def test_mcp_endpoint_structure(self):
"""Test that the MCP endpoint is properly configured."""
# Test that the app has the expected routes
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
# Check that MCP routes exist
assert "/api/v1/mcp" in routes
@@ -33,9 +34,9 @@ def test_mcp_info_endpoint(self):
data = response.json()
# Check basic service information
- assert data["name"] == "btaa-geospatial-api"
+ assert data["name"] == "opengeometadata-api"
assert data["version"] == "0.7.0"
- assert data["description"] == "BTAA Geospatial API MCP Service"
+ assert data["description"] == "OpenGeoMetadata API MCP Service"
assert data["protocol"] == "mcp"
assert "stdio" in data["transports"]
assert "websocket" in data["transports"]
@@ -119,7 +120,7 @@ def test_mcp_info_endpoint_response_structure(self):
def test_mcp_websocket_endpoint_exists(self):
"""Test that the WebSocket endpoint is properly configured."""
# Check that the WebSocket route exists
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
assert "/api/v1/mcp/ws" in routes
# Note: WebSocket testing requires a different approach
@@ -180,7 +181,7 @@ def test_mcp_http_transport_initialize(self):
data = response.json()
assert data["jsonrpc"] == "2.0"
assert data["id"] == 1
- assert data["result"]["serverInfo"]["name"] == "btaa-geospatial-api"
+ assert data["result"]["serverInfo"]["name"] == "opengeometadata-api"
def test_mcp_http_transport_tools_list(self):
"""Test JSON-RPC tools/list over HTTP POST."""
diff --git a/backend/tests/api/v1/test_resource_distributions_endpoint.py b/backend/tests/api/v1/test_resource_distributions_endpoint.py
index c2e4769..54dd57f 100644
--- a/backend/tests/api/v1/test_resource_distributions_endpoint.py
+++ b/backend/tests/api/v1/test_resource_distributions_endpoint.py
@@ -9,6 +9,7 @@
from fastapi.testclient import TestClient
from app.main import app
+from tests.utils.route_helpers import route_by_path, route_paths
class TestResourceDistributionsEndpoint:
@@ -22,23 +23,18 @@ def client(self):
def test_endpoint_exists(self, client):
"""Test that the distributions endpoint is properly configured."""
# Check that the endpoint route exists
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
assert "/api/v1/resources/{id}/distributions" in routes
def test_endpoint_route_registration(self, client):
"""Test that the distributions endpoint route is properly registered."""
# This test verifies the endpoint exists without making database calls
# that could conflict with other tests in the suite
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
assert "/api/v1/resources/{id}/distributions" in routes
# Verify it's a GET endpoint
- distributions_route = None
- for route in app.routes:
- if hasattr(route, "path") and route.path == "/api/v1/resources/{id}/distributions":
- distributions_route = route
- break
-
+ distributions_route = route_by_path(app, "/api/v1/resources/{id}/distributions")
assert distributions_route is not None
assert hasattr(distributions_route, "methods")
assert "GET" in distributions_route.methods
diff --git a/backend/tests/api/v1/test_resource_endpoints.py b/backend/tests/api/v1/test_resource_endpoints.py
index b585c26..0a1b1af 100644
--- a/backend/tests/api/v1/test_resource_endpoints.py
+++ b/backend/tests/api/v1/test_resource_endpoints.py
@@ -8,6 +8,7 @@
from app.main import app
from app.services.relationship_service import RelationshipService
+from tests.utils.route_helpers import route_by_path, route_paths
client = TestClient(app)
@@ -37,7 +38,7 @@ def test_relationship_service_initialization():
def test_resource_endpoints_exist():
"""Test that the resource endpoints are properly configured."""
# Test that the app has the expected routes
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
# Check that resource routes exist
assert "/api/v1/resources/" in routes
@@ -62,7 +63,7 @@ def test_resource_endpoint_structure():
# Verify the main app structure
assert hasattr(app, "title")
- assert app.title == "BTAA Geospatial API"
+ assert app.title == "OpenGeoMetadata API"
@pytest.mark.unit
@@ -73,7 +74,7 @@ async def test_resource_endpoint_404_handling():
# without requiring actual database connections
# Test that the endpoint structure is correct
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
assert "/api/v1/resources/{id}" in routes
# Verify that the app has proper error handling
@@ -83,15 +84,11 @@ async def test_resource_endpoint_404_handling():
@pytest.mark.unit
def test_ogm_endpoint_structure():
"""Test that the metadata endpoint is properly configured (formerly OGM)."""
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
assert "/api/v1/resources/{id}/metadata" in routes
# Find the metadata route and verify its configuration
- metadata_route = None
- for route in app.routes:
- if route.path == "/api/v1/resources/{id}/metadata":
- metadata_route = route
- break
+ metadata_route = route_by_path(app, "/api/v1/resources/{id}/metadata")
assert metadata_route is not None
assert metadata_route.methods == {"GET"}
@@ -100,15 +97,11 @@ def test_ogm_endpoint_structure():
@pytest.mark.unit
def test_viewer_endpoint_structure():
"""Test that the viewer endpoint is properly configured."""
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
assert "/api/v1/resources/{id}/viewer" in routes
# Find the viewer route and verify its configuration
- viewer_route = None
- for route in app.routes:
- if route.path == "/api/v1/resources/{id}/viewer":
- viewer_route = route
- break
+ viewer_route = route_by_path(app, "/api/v1/resources/{id}/viewer")
assert viewer_route is not None
assert viewer_route.methods == {"GET"}
@@ -582,7 +575,7 @@ class TestResourceEndpointsEnhanced:
def test_resource_endpoints_structure(self):
"""Test that resource endpoints are properly configured."""
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
assert "/api/v1/resources/" in routes
assert "/api/v1/resources/{id}" in routes
diff --git a/backend/tests/api/v1/test_search_endpoints.py b/backend/tests/api/v1/test_search_endpoints.py
index eb302ca..6f74e91 100644
--- a/backend/tests/api/v1/test_search_endpoints.py
+++ b/backend/tests/api/v1/test_search_endpoints.py
@@ -9,6 +9,7 @@
from app.api.v1.endpoint_modules.search import _handle_search
from app.main import app
from app.services.resource_representation_cache import RESOURCE_SEARCH_RESULT_REPRESENTATION_PROFILE
+from tests.utils.route_helpers import route_paths
client = TestClient(app)
@@ -732,7 +733,7 @@ class TestSearchEndpointsEnhanced:
def test_search_endpoints_structure(self):
"""Test that search endpoints are properly configured."""
- routes = [route.path for route in app.routes]
+ routes = route_paths(app)
assert "/api/v1/search" in routes
assert "/api/v1/suggest" in routes
diff --git a/backend/tests/api/v1/test_sitemap_endpoints.py b/backend/tests/api/v1/test_sitemap_endpoints.py
index 3e35f6f..9b48ce7 100644
--- a/backend/tests/api/v1/test_sitemap_endpoints.py
+++ b/backend/tests/api/v1/test_sitemap_endpoints.py
@@ -31,14 +31,16 @@ async def async_client():
@pytest.mark.asyncio
async def test_sitemap_xml_serves_cached_document(async_client, monkeypatch):
sitemap_xml = """"""
+ get_current_document = AsyncMock(return_value=sitemap_xml)
- monkeypatch.setattr("app.main.get_sitemap_document", AsyncMock(return_value=sitemap_xml))
+ monkeypatch.setattr("app.main.get_current_sitemap_document", get_current_document)
response = await async_client.get("/sitemap.xml")
assert response.status_code == 200
assert response.text == sitemap_xml
assert response.headers["content-type"].startswith("application/xml")
+ get_current_document.assert_awaited_once_with("sitemap.xml")
@pytest.mark.asyncio
diff --git a/backend/tests/elasticsearch/test_search.py b/backend/tests/elasticsearch/test_search.py
index e363a53..e87b198 100644
--- a/backend/tests/elasticsearch/test_search.py
+++ b/backend/tests/elasticsearch/test_search.py
@@ -10,9 +10,11 @@
from app.elasticsearch.search import (
BBOX_SPATIAL_BOOST_WEIGHT,
MIN_BBOX_IOU_OVERLAP_RATIO,
+ _build_bbox_overlap_filter,
_compute_bbox_spatial_metrics,
_escape_query_string_brackets,
_normalize_geo_bbox_bounds,
+ find_similar_resources,
get_search_criteria,
map_h3_aggregation,
search_resources,
@@ -65,6 +67,26 @@ def test_get_search_criteria(self):
assert criteria["filters"] == {"dct_spatial_sm": ["Minnesota"]}
assert criteria["sort"] == [{"_score": "desc"}]
+ @pytest.mark.asyncio
+ async def test_find_similar_resources_short_circuits_missing_source_doc(self, monkeypatch):
+ """Missing source docs should not emit traced Elasticsearch GET 404s."""
+ monkeypatch.setenv("ELASTICSEARCH_INDEX", "opengeometadata_api")
+ mock_es = AsyncMock()
+ mock_es.exists.return_value = False
+ mock_es.get = AsyncMock()
+ mock_es.search = AsyncMock()
+
+ with patch("app.elasticsearch.search.es", mock_es):
+ result = await find_similar_resources("retired-resource-id")
+
+ assert result == []
+ mock_es.exists.assert_awaited_once_with(
+ index="opengeometadata_api",
+ id="retired-resource-id",
+ )
+ mock_es.get.assert_not_awaited()
+ mock_es.search.assert_not_awaited()
+
def test_compute_bbox_spatial_metrics_rewards_containment(self):
"""Contained extents should still score well even when query bbox is larger."""
metrics = _compute_bbox_spatial_metrics(
@@ -101,6 +123,35 @@ def test_compute_bbox_spatial_metrics_returns_zero_for_no_overlap(self):
"spatial_score": 0.0,
}
+ def test_bbox_overlap_filter_keeps_small_resource_inside_large_query(self):
+ """State-sized searches must retain fully contained city data."""
+ query_bounds = {
+ "q_minx": -98.37,
+ "q_maxx": -89.89,
+ "q_miny": 43.20,
+ "q_maxy": 49.07,
+ }
+ metrics = _compute_bbox_spatial_metrics(
+ d_minx=-93.376,
+ d_maxx=-93.187,
+ d_miny=44.882,
+ d_maxy=45.051,
+ **query_bounds,
+ )
+
+ assert metrics["overlap_ratio"] < MIN_BBOX_IOU_OVERLAP_RATIO
+ assert metrics["containment_ratio"] == pytest.approx(1.0)
+
+ overlap_filter = _build_bbox_overlap_filter(
+ **query_bounds,
+ min_overlap_ratio=MIN_BBOX_IOU_OVERLAP_RATIO,
+ )
+ script = overlap_filter["script"]["script"]
+
+ assert "docContainmentRatio = intersection / docArea" in script["source"]
+ assert "return docContainmentRatio >= params.minOverlapRatio" in script["source"]
+ assert script["params"]["minOverlapRatio"] == MIN_BBOX_IOU_OVERLAP_RATIO
+
def test_normalize_geo_bbox_bounds_sorts_reversed_non_wrapped_longitudes(self):
"""Small reversed bbox ranges should not be mistaken for antimeridian searches."""
bounds = _normalize_geo_bbox_bounds(
@@ -505,11 +556,12 @@ async def test_search_resources_with_geospatial_bbox_filter(self):
assert box["top_left"] == {"lat": 45.0, "lon": -109.0}
assert box["bottom_right"] == {"lat": 41.0, "lon": -104.0}
- # BBox searches now apply an overlap-ratio hard filter by default.
+ # BBox searches apply a document-containment hard filter by default.
script_filter = next((f for f in filters if "script" in f), None)
assert script_filter is not None
params = script_filter["script"]["script"]["params"]
assert params["minOverlapRatio"] == MIN_BBOX_IOU_OVERLAP_RATIO
+ assert "docContainmentRatio" in script_filter["script"]["script"]["source"]
script_score = search_query["script_score"]["script"]
assert "containmentRatio" in script_score["source"]
diff --git a/backend/tests/scripts/test_prime_resource_representation_cache.py b/backend/tests/scripts/test_prime_resource_representation_cache.py
index 37976bc..8235eb8 100644
--- a/backend/tests/scripts/test_prime_resource_representation_cache.py
+++ b/backend/tests/scripts/test_prime_resource_representation_cache.py
@@ -119,6 +119,31 @@ async def test_disconnect_legacy_database_only_closes_pool_opened_by_primer():
assert fake_database.is_connected is False
+@pytest.mark.asyncio
+async def test_fetch_relationships_map_uses_public_relationship_service():
+ relationships = {
+ "parent": {
+ "dct:hasPart": [
+ {
+ "resource_id": "published-child",
+ "resource_title": "Published child",
+ "link": "/resources/published-child",
+ }
+ ]
+ }
+ }
+
+ with patch.object(
+ prime_resource_cache.RelationshipService,
+ "get_resource_relationships_map",
+ AsyncMock(return_value=relationships),
+ ) as mock_relationships:
+ result = await prime_resource_cache._fetch_relationships_map(["parent", "parent", ""])
+
+ assert result == relationships
+ mock_relationships.assert_awaited_once_with(["parent"])
+
+
@pytest.mark.asyncio
async def test_prime_resource_representation_builds_core_resource_and_stores_cache():
resource_dict = {"id": "resource-1", "dc_title_s": "Resource 1"}
diff --git a/backend/tests/scripts/test_refresh_resource_caches.py b/backend/tests/scripts/test_refresh_resource_caches.py
new file mode 100644
index 0000000..b8fb175
--- /dev/null
+++ b/backend/tests/scripts/test_refresh_resource_caches.py
@@ -0,0 +1,115 @@
+from types import SimpleNamespace
+from unittest.mock import patch
+
+import pytest
+
+import scripts.refresh_resource_caches as refresh_resource_caches
+
+
+class FakeDatabase:
+ def __init__(self, *, is_connected: bool):
+ self.is_connected = is_connected
+ self.connect_count = 0
+ self.disconnect_count = 0
+
+ async def connect(self):
+ self.connect_count += 1
+ self.is_connected = True
+
+ async def disconnect(self):
+ self.disconnect_count += 1
+ self.is_connected = False
+
+
+class FakeAsyncClient:
+ def __init__(self, **kwargs):
+ self.database = kwargs.pop("database")
+ self.kwargs = kwargs
+
+ async def __aenter__(self):
+ return self
+
+ async def __aexit__(self, exc_type, exc, tb):
+ return False
+
+ async def get(self, path, *, headers):
+ assert self.database.is_connected is True
+ return SimpleNamespace(status_code=200)
+
+
+@pytest.mark.asyncio
+async def test_warm_endpoint_caches_connects_database_before_concurrent_requests():
+ fake_database = FakeDatabase(is_connected=False)
+
+ def fake_client(**kwargs):
+ return FakeAsyncClient(database=fake_database, **kwargs)
+
+ with (
+ patch.object(refresh_resource_caches, "database", fake_database),
+ patch.object(refresh_resource_caches.httpx, "ASGITransport", return_value=object()),
+ patch.object(refresh_resource_caches.httpx, "AsyncClient", side_effect=fake_client),
+ ):
+ stats = await refresh_resource_caches.warm_endpoint_caches(
+ ["parent"],
+ tagged_paths=[],
+ include_tagged_paths=False,
+ max_paths=10,
+ concurrency=2,
+ timeout_seconds=5,
+ )
+
+ assert stats == {"attempted": 2, "warmed": 2, "errors": 0}
+ assert fake_database.connect_count == 1
+ assert fake_database.disconnect_count == 1
+
+
+@pytest.mark.asyncio
+async def test_warm_endpoint_caches_leaves_existing_database_pool_open():
+ fake_database = FakeDatabase(is_connected=True)
+
+ with (
+ patch.object(refresh_resource_caches, "database", fake_database),
+ patch.object(refresh_resource_caches.httpx, "ASGITransport", return_value=object()),
+ patch.object(
+ refresh_resource_caches.httpx,
+ "AsyncClient",
+ side_effect=lambda **kwargs: FakeAsyncClient(database=fake_database, **kwargs),
+ ),
+ ):
+ await refresh_resource_caches.warm_endpoint_caches(
+ ["parent"],
+ tagged_paths=[],
+ include_tagged_paths=False,
+ max_paths=10,
+ concurrency=2,
+ timeout_seconds=5,
+ )
+
+ assert fake_database.connect_count == 0
+ assert fake_database.disconnect_count == 0
+
+
+@pytest.mark.asyncio
+async def test_warm_endpoint_caches_disconnects_database_after_client_failure():
+ fake_database = FakeDatabase(is_connected=False)
+
+ with (
+ patch.object(refresh_resource_caches, "database", fake_database),
+ patch.object(refresh_resource_caches.httpx, "ASGITransport", return_value=object()),
+ patch.object(
+ refresh_resource_caches.httpx,
+ "AsyncClient",
+ side_effect=RuntimeError("client setup failed"),
+ ),
+ ):
+ with pytest.raises(RuntimeError, match="client setup failed"):
+ await refresh_resource_caches.warm_endpoint_caches(
+ ["parent"],
+ tagged_paths=[],
+ include_tagged_paths=False,
+ max_paths=10,
+ concurrency=2,
+ timeout_seconds=5,
+ )
+
+ assert fake_database.disconnect_count == 1
diff --git a/backend/tests/services/test_image_service.py b/backend/tests/services/test_image_service.py
index f4c1938..cec389d 100644
--- a/backend/tests/services/test_image_service.py
+++ b/backend/tests/services/test_image_service.py
@@ -653,9 +653,7 @@ def test_public_thumbnail_url_never_exposes_the_external_source(self):
service = ImageService(
{
"id": "test-doc",
- "dct_references_s": json.dumps(
- {"http://schema.org/thumbnailUrl": source_url}
- ),
+ "dct_references_s": json.dumps({"http://schema.org/thumbnailUrl": source_url}),
}
)
diff --git a/backend/tests/services/test_ogm_importer_thumbnail_changes.py b/backend/tests/services/test_ogm_importer_thumbnail_changes.py
index 29fad38..ae62cce 100644
--- a/backend/tests/services/test_ogm_importer_thumbnail_changes.py
+++ b/backend/tests/services/test_ogm_importer_thumbnail_changes.py
@@ -20,7 +20,10 @@ async def test_changed_thumbnail_ids_detects_new_and_changed_sources_only():
changed = {**existing, "id": "changed"}
incoming = [
dict(existing),
- {**changed, "dct_references_s": '{"http://schema.org/thumbnailUrl":"https://example/b.jpg"}'},
+ {
+ **changed,
+ "dct_references_s": '{"http://schema.org/thumbnailUrl":"https://example/b.jpg"}',
+ },
{**existing, "id": "new"},
]
diff --git a/backend/tests/services/test_relationship_service.py b/backend/tests/services/test_relationship_service.py
index 1988896..bd16a02 100644
--- a/backend/tests/services/test_relationship_service.py
+++ b/backend/tests/services/test_relationship_service.py
@@ -48,6 +48,72 @@ async def fake_fetch_relationship_rows(resource_ids, *, limit_per_predicate=None
"link": "/resources/part-1",
}
+ @pytest.mark.asyncio
+ async def test_source_of_aliases_are_canonicalized_and_deduplicated(self, monkeypatch):
+ async def fake_fetch_relationship_rows(resource_ids, *, limit_per_predicate=None):
+ assert list(resource_ids) == ["parent-record"]
+ assert limit_per_predicate is None
+ return [
+ {
+ "subject_id": "parent-record",
+ "predicate": predicate,
+ "object_id": "child-record",
+ "dct_title_s": "Child record",
+ }
+ for predicate in ("dct:isSourceOf", "dct:sourceOf")
+ ]
+
+ monkeypatch.setattr(
+ RelationshipService,
+ "_fetch_relationship_rows",
+ staticmethod(fake_fetch_relationship_rows),
+ )
+
+ relationships = await RelationshipService.get_resource_relationships("parent-record")
+
+ assert relationships == {
+ "dct:isSourceOf": [
+ {
+ "resource_id": "child-record",
+ "resource_title": "Child record",
+ "link": "/resources/child-record",
+ }
+ ]
+ }
+
+ @pytest.mark.asyncio
+ async def test_source_of_summary_uses_derived_records_browse_filter(self, monkeypatch):
+ async def fake_fetch_relationship_rows(resource_ids, *, limit_per_predicate=None):
+ assert list(resource_ids) == ["parent-record"]
+ assert limit_per_predicate == 5
+ return [
+ {
+ "subject_id": "parent-record",
+ "predicate": predicate,
+ "object_id": "child-record",
+ "dct_title_s": "Child record",
+ "total_count": 20,
+ }
+ for predicate in ("dct:isSourceOf", "dct:sourceOf")
+ ]
+
+ monkeypatch.setattr(
+ RelationshipService,
+ "_fetch_relationship_rows",
+ staticmethod(fake_fetch_relationship_rows),
+ )
+
+ summaries = await RelationshipService.get_resource_relationship_summaries_map(
+ ["parent-record"]
+ )
+
+ summary = summaries["parent-record"]
+ assert len(summary["relationships"]["dct:isSourceOf"]) == 1
+ assert summary["counts"] == {"dct:isSourceOf": 20}
+ assert summary["browse_links"] == {
+ "dct:isSourceOf": ("/search?include_filters[dct_source_sm][]=parent-record")
+ }
+
@pytest.mark.asyncio
async def test_get_resource_relationships_with_real_database(self):
"""Test getting resource relationships using real database connection."""
diff --git a/backend/tests/services/test_relationship_sync.py b/backend/tests/services/test_relationship_sync.py
new file mode 100644
index 0000000..3c34836
--- /dev/null
+++ b/backend/tests/services/test_relationship_sync.py
@@ -0,0 +1,35 @@
+from app.services.relationship_sync import (
+ ALL_RELATIONSHIP_PREDICATES,
+ RELATIONSHIP_FAMILIES,
+ _build_relationship_rows,
+)
+
+
+def test_source_relationships_use_canonical_parent_and_child_predicates():
+ source_family = next(family for family in RELATIONSHIP_FAMILIES if family[0] == "dct_source_sm")
+
+ rows = _build_relationship_rows(
+ {
+ source_family: [
+ {
+ "id": "child-record",
+ "dct_source_sm": ["parent-record"],
+ }
+ ]
+ },
+ ["child-record", "parent-record"],
+ )
+
+ assert rows == [
+ {
+ "subject_id": "child-record",
+ "predicate": "dct:source",
+ "object_id": "parent-record",
+ },
+ {
+ "subject_id": "parent-record",
+ "predicate": "dct:isSourceOf",
+ "object_id": "child-record",
+ },
+ ]
+ assert "dct:sourceOf" in ALL_RELATIONSHIP_PREDICATES
diff --git a/backend/tests/services/test_sitemap_service.py b/backend/tests/services/test_sitemap_service.py
index fa7bb8d..71b5d0f 100644
--- a/backend/tests/services/test_sitemap_service.py
+++ b/backend/tests/services/test_sitemap_service.py
@@ -8,6 +8,7 @@
build_robots_txt,
build_sitemap_documents,
build_x_robots_tag,
+ get_current_sitemap_document,
)
NS = {"sm": "http://www.sitemaps.org/schemas/sitemap/0.9"}
@@ -90,6 +91,18 @@ def test_build_x_robots_tag_disables_indexing_when_feature_flag_is_off():
assert build_x_robots_tag(indexing_enabled=True) is None
+async def test_get_current_sitemap_document_ignores_stale_application_url(monkeypatch):
+ async def fake_get_json(key: str):
+ if key.endswith(":manifest"):
+ return {"application_url": "https://previous-ogm-origin.example.org"}
+ return {"content": ""}
+
+ monkeypatch.setenv("APPLICATION_URL", "https://ogm.geo4lib.app")
+ monkeypatch.setattr("app.services.sitemap_service._store.get_json", fake_get_json)
+
+ assert await get_current_sitemap_document("sitemap.xml") is None
+
+
def test_build_sitemap_documents_renders_single_urlset():
result = build_sitemap_documents(
base_url="https://geo.example.org",
diff --git a/backend/tests/test_sanity.py b/backend/tests/test_sanity.py
index 251c967..0422dba 100644
--- a/backend/tests/test_sanity.py
+++ b/backend/tests/test_sanity.py
@@ -29,7 +29,7 @@ def test_api_docs_available():
assert (
"swagger" in response.text.lower()
or "openapi" in response.text.lower()
- or "btaa geospatial api" in response.text.lower()
+ or "opengeometadata api" in response.text.lower()
)
@@ -54,4 +54,4 @@ def test_api_version():
assert "attributes" in data["data"]
assert "version" in data["data"]["attributes"]
assert "api" in data["data"]["attributes"]
- assert data["data"]["attributes"]["api"] == "BTAA Geospatial API"
+ assert data["data"]["attributes"]["api"] == "OpenGeoMetadata API"
diff --git a/backend/tests/utils/route_helpers.py b/backend/tests/utils/route_helpers.py
new file mode 100644
index 0000000..458be91
--- /dev/null
+++ b/backend/tests/utils/route_helpers.py
@@ -0,0 +1,45 @@
+from collections.abc import Iterator
+from typing import Any
+
+
+def route_paths(route_owner: Any) -> list[str]:
+ """Return registered route paths, including routes nested by include_router."""
+ return [path for path, _route in routes_with_paths(route_owner)]
+
+
+def route_by_path(route_owner: Any, path: str) -> Any | None:
+ """Find a registered route by path, including nested include_router routes."""
+ for route_path, route in routes_with_paths(route_owner):
+ if route_path == path:
+ return route
+ return None
+
+
+def routes_with_paths(route_owner: Any, prefix: str = "") -> Iterator[tuple[str, Any]]:
+ for route in getattr(route_owner, "routes", []):
+ include_context = getattr(route, "include_context", None)
+ route_prefix = (
+ getattr(route, "prefix", None) or getattr(include_context, "prefix", None) or ""
+ )
+ nested_prefix = _join_route_path(prefix, route_prefix)
+
+ path = getattr(route, "path", None)
+ if isinstance(path, str):
+ yield _join_route_path(prefix, path), route
+
+ original_router = getattr(route, "original_router", None)
+ if original_router is not None:
+ yield from routes_with_paths(original_router, nested_prefix)
+
+ if getattr(route, "routes", None):
+ yield from routes_with_paths(route, nested_prefix)
+
+
+def _join_route_path(prefix: str, path: str) -> str:
+ if not prefix:
+ return path
+ if not path:
+ return prefix
+ if path == prefix or path.startswith(f"{prefix.rstrip('/')}/"):
+ return path
+ return f"{prefix.rstrip('/')}/{path.lstrip('/')}"
diff --git a/backend/uv.lock b/backend/uv.lock
index d3be99f..df4a3ff 100644
--- a/backend/uv.lock
+++ b/backend/uv.lock
@@ -1,5 +1,5 @@
version = 1
-revision = 3
+revision = 2
requires-python = ">=3.11"
resolution-markers = [
"python_full_version >= '3.12'",
@@ -653,154 +653,6 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/20/2a/1b016902351a523aa2bd446b50a5bc1175d7a7d1cf90fe2ef904f9b84ebc/cryptography-46.0.7-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:258514877e15963bd43b558917bc9f54cf7cf866c38aa576ebf47a77ddbc43a4", size = 3412829, upload-time = "2026-04-08T01:57:48.874Z" },
]
-[[package]]
-name = "data-api"
-version = "0.7.0"
-source = { virtual = "." }
-dependencies = [
- { name = "aiohttp" },
- { name = "annotated-types" },
- { name = "anyio" },
- { name = "appsignal" },
- { name = "async-timeout" },
- { name = "asyncpg" },
- { name = "celery" },
- { name = "click" },
- { name = "databases" },
- { name = "docker" },
- { name = "duckdb" },
- { name = "elasticsearch" },
- { name = "exceptiongroup" },
- { name = "fastapi" },
- { name = "fiona" },
- { name = "flower" },
- { name = "geopandas" },
- { name = "greenlet" },
- { name = "h11" },
- { name = "h3" },
- { name = "httpx" },
- { name = "idna" },
- { name = "jinja2" },
- { name = "jsonschema" },
- { name = "lxml" },
- { name = "mapbox-vector-tile" },
- { name = "mccabe" },
- { name = "mcp" },
- { name = "mypy-extensions" },
- { name = "openai" },
- { name = "opentelemetry-instrumentation-fastapi" },
- { name = "packaging" },
- { name = "pandas" },
- { name = "pathspec" },
- { name = "pillow" },
- { name = "platformdirs" },
- { name = "pmtiles" },
- { name = "psycopg2-binary" },
- { name = "py-staticmaps", extra = ["cairo"] },
- { name = "pycairo" },
- { name = "pydantic" },
- { name = "pydantic-core" },
- { name = "pygments" },
- { name = "pytesseract" },
- { name = "python-dotenv" },
- { name = "python-multipart" },
- { name = "pyyaml" },
- { name = "redis" },
- { name = "requests" },
- { name = "rio-tiler" },
- { name = "sniffio" },
- { name = "sqlalchemy" },
- { name = "starlette" },
- { name = "tomli" },
- { name = "tornado" },
- { name = "typing-extensions" },
- { name = "urllib3" },
- { name = "user-agents" },
- { name = "uvicorn" },
- { name = "websockets" },
-]
-
-[package.optional-dependencies]
-dev = [
- { name = "mypy" },
- { name = "pytest" },
- { name = "pytest-asyncio" },
- { name = "pytest-cov" },
- { name = "pytest-xdist" },
- { name = "ruff" },
-]
-
-[package.metadata]
-requires-dist = [
- { name = "aiohttp", specifier = "==3.13.4" },
- { name = "annotated-types", specifier = "==0.7.0" },
- { name = "anyio", specifier = "==4.7.0" },
- { name = "appsignal", specifier = ">=1.0.0" },
- { name = "async-timeout", specifier = "==5.0.1" },
- { name = "asyncpg", specifier = "==0.30.0" },
- { name = "celery", specifier = ">=5.3.0" },
- { name = "click", specifier = "==8.1.7" },
- { name = "databases", specifier = "==0.9.0" },
- { name = "docker", specifier = "==7.1.0" },
- { name = "duckdb", specifier = ">=1.3.1" },
- { name = "elasticsearch", specifier = ">=9.0.0" },
- { name = "exceptiongroup", specifier = "==1.2.2" },
- { name = "fastapi", specifier = ">=0.115.6" },
- { name = "fiona", specifier = "==1.10.1" },
- { name = "flower", specifier = "==2.0.1" },
- { name = "geopandas", specifier = "==1.1.2" },
- { name = "greenlet", specifier = "==3.1.1" },
- { name = "h11", specifier = "==0.16.0" },
- { name = "h3", specifier = ">=4.0.0" },
- { name = "httpx", specifier = ">=0.24.0" },
- { name = "idna", specifier = "==3.15" },
- { name = "jinja2", specifier = ">=3.1.2" },
- { name = "jsonschema", specifier = ">=4.21.1" },
- { name = "lxml", specifier = ">=6.1.0" },
- { name = "mapbox-vector-tile", specifier = ">=2.0.0" },
- { name = "mccabe", specifier = "==0.7.0" },
- { name = "mcp", specifier = ">=1.23.0" },
- { name = "mypy", marker = "extra == 'dev'", specifier = "==1.9.0" },
- { name = "mypy-extensions", specifier = "==1.0.0" },
- { name = "openai", specifier = "==1.12.0" },
- { name = "opentelemetry-instrumentation-fastapi", specifier = ">=0.49b0" },
- { name = "packaging", specifier = "==24.2" },
- { name = "pandas", specifier = ">=2.3.0" },
- { name = "pathspec", specifier = "==0.12.1" },
- { name = "pillow", specifier = "==12.1.1" },
- { name = "platformdirs", specifier = "==4.3.6" },
- { name = "pmtiles", specifier = ">=3.0.0" },
- { name = "psycopg2-binary", specifier = "==2.9.10" },
- { name = "py-staticmaps", extras = ["cairo"], specifier = ">=0.4.0" },
- { name = "pycairo", specifier = ">=1.29.0" },
- { name = "pydantic", specifier = "==2.12.5" },
- { name = "pydantic-core", specifier = "==2.41.5" },
- { name = "pygments", specifier = "==2.20.0" },
- { name = "pytesseract", specifier = "==0.3.10" },
- { name = "pytest", marker = "extra == 'dev'", specifier = ">=8.2.0" },
- { name = "pytest-asyncio", marker = "extra == 'dev'", specifier = "==0.25.3" },
- { name = "pytest-cov", marker = "extra == 'dev'", specifier = "==4.1.0" },
- { name = "pytest-xdist", marker = "extra == 'dev'", specifier = ">=3.5.0" },
- { name = "python-dotenv", specifier = ">=1.2.2" },
- { name = "python-multipart", specifier = "==0.0.27" },
- { name = "pyyaml", specifier = ">=6.0.3" },
- { name = "redis", specifier = "==5.0.0" },
- { name = "requests", specifier = "==2.33.0" },
- { name = "rio-tiler", specifier = ">=8.0.0" },
- { name = "ruff", marker = "extra == 'dev'", specifier = ">=0.11.6" },
- { name = "sniffio", specifier = "==1.3.1" },
- { name = "sqlalchemy", specifier = "==2.0.36" },
- { name = "starlette", specifier = "==0.49.1" },
- { name = "tomli", specifier = "==2.2.1" },
- { name = "tornado", specifier = "==6.5.5" },
- { name = "typing-extensions", specifier = ">=4.14.1" },
- { name = "urllib3", specifier = "==2.7.0" },
- { name = "user-agents", specifier = ">=2.2.0" },
- { name = "uvicorn", specifier = "==0.32.1" },
- { name = "websockets", specifier = "==15.0.1" },
-]
-provides-extras = ["dev"]
-
[[package]]
name = "databases"
version = "0.9.0"
@@ -1788,6 +1640,154 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/26/a1/75474477af2a1dae3a25f80b72bbaf20e8296191ece7fff2f67984206f33/openai-1.12.0-py3-none-any.whl", hash = "sha256:a54002c814e05222e413664f651b5916714e4700d041d5cf5724d3ae1a3e3481", size = 226675, upload-time = "2024-02-09T00:15:06.795Z" },
]
+[[package]]
+name = "opengeometadata-api"
+version = "0.7.0"
+source = { virtual = "." }
+dependencies = [
+ { name = "aiohttp" },
+ { name = "annotated-types" },
+ { name = "anyio" },
+ { name = "appsignal" },
+ { name = "async-timeout" },
+ { name = "asyncpg" },
+ { name = "celery" },
+ { name = "click" },
+ { name = "databases" },
+ { name = "docker" },
+ { name = "duckdb" },
+ { name = "elasticsearch" },
+ { name = "exceptiongroup" },
+ { name = "fastapi" },
+ { name = "fiona" },
+ { name = "flower" },
+ { name = "geopandas" },
+ { name = "greenlet" },
+ { name = "h11" },
+ { name = "h3" },
+ { name = "httpx" },
+ { name = "idna" },
+ { name = "jinja2" },
+ { name = "jsonschema" },
+ { name = "lxml" },
+ { name = "mapbox-vector-tile" },
+ { name = "mccabe" },
+ { name = "mcp" },
+ { name = "mypy-extensions" },
+ { name = "openai" },
+ { name = "opentelemetry-instrumentation-fastapi" },
+ { name = "packaging" },
+ { name = "pandas" },
+ { name = "pathspec" },
+ { name = "pillow" },
+ { name = "platformdirs" },
+ { name = "pmtiles" },
+ { name = "psycopg2-binary" },
+ { name = "py-staticmaps", extra = ["cairo"] },
+ { name = "pycairo" },
+ { name = "pydantic" },
+ { name = "pydantic-core" },
+ { name = "pygments" },
+ { name = "pytesseract" },
+ { name = "python-dotenv" },
+ { name = "python-multipart" },
+ { name = "pyyaml" },
+ { name = "redis" },
+ { name = "requests" },
+ { name = "rio-tiler" },
+ { name = "sniffio" },
+ { name = "sqlalchemy" },
+ { name = "starlette" },
+ { name = "tomli" },
+ { name = "tornado" },
+ { name = "typing-extensions" },
+ { name = "urllib3" },
+ { name = "user-agents" },
+ { name = "uvicorn" },
+ { name = "websockets" },
+]
+
+[package.optional-dependencies]
+dev = [
+ { name = "mypy" },
+ { name = "pytest" },
+ { name = "pytest-asyncio" },
+ { name = "pytest-cov" },
+ { name = "pytest-xdist" },
+ { name = "ruff" },
+]
+
+[package.metadata]
+requires-dist = [
+ { name = "aiohttp", specifier = "==3.13.4" },
+ { name = "annotated-types", specifier = "==0.7.0" },
+ { name = "anyio", specifier = "==4.7.0" },
+ { name = "appsignal", specifier = ">=1.0.0" },
+ { name = "async-timeout", specifier = "==5.0.1" },
+ { name = "asyncpg", specifier = "==0.30.0" },
+ { name = "celery", specifier = ">=5.3.0" },
+ { name = "click", specifier = "==8.1.7" },
+ { name = "databases", specifier = "==0.9.0" },
+ { name = "docker", specifier = "==7.1.0" },
+ { name = "duckdb", specifier = ">=1.3.1" },
+ { name = "elasticsearch", specifier = ">=9.0.0" },
+ { name = "exceptiongroup", specifier = "==1.2.2" },
+ { name = "fastapi", specifier = ">=0.115.6" },
+ { name = "fiona", specifier = "==1.10.1" },
+ { name = "flower", specifier = "==2.0.1" },
+ { name = "geopandas", specifier = "==1.1.2" },
+ { name = "greenlet", specifier = "==3.1.1" },
+ { name = "h11", specifier = "==0.16.0" },
+ { name = "h3", specifier = ">=4.0.0" },
+ { name = "httpx", specifier = ">=0.24.0" },
+ { name = "idna", specifier = "==3.15" },
+ { name = "jinja2", specifier = ">=3.1.2" },
+ { name = "jsonschema", specifier = ">=4.21.1" },
+ { name = "lxml", specifier = ">=6.1.0" },
+ { name = "mapbox-vector-tile", specifier = ">=2.0.0" },
+ { name = "mccabe", specifier = "==0.7.0" },
+ { name = "mcp", specifier = ">=1.23.0" },
+ { name = "mypy", marker = "extra == 'dev'", specifier = "==1.9.0" },
+ { name = "mypy-extensions", specifier = "==1.0.0" },
+ { name = "openai", specifier = "==1.12.0" },
+ { name = "opentelemetry-instrumentation-fastapi", specifier = ">=0.49b0" },
+ { name = "packaging", specifier = "==24.2" },
+ { name = "pandas", specifier = ">=2.3.0" },
+ { name = "pathspec", specifier = "==0.12.1" },
+ { name = "pillow", specifier = "==12.1.1" },
+ { name = "platformdirs", specifier = "==4.3.6" },
+ { name = "pmtiles", specifier = ">=3.0.0" },
+ { name = "psycopg2-binary", specifier = "==2.9.10" },
+ { name = "py-staticmaps", extras = ["cairo"], specifier = ">=0.4.0" },
+ { name = "pycairo", specifier = ">=1.29.0" },
+ { name = "pydantic", specifier = "==2.12.5" },
+ { name = "pydantic-core", specifier = "==2.41.5" },
+ { name = "pygments", specifier = "==2.20.0" },
+ { name = "pytesseract", specifier = "==0.3.10" },
+ { name = "pytest", marker = "extra == 'dev'", specifier = ">=8.2.0" },
+ { name = "pytest-asyncio", marker = "extra == 'dev'", specifier = "==0.25.3" },
+ { name = "pytest-cov", marker = "extra == 'dev'", specifier = "==4.1.0" },
+ { name = "pytest-xdist", marker = "extra == 'dev'", specifier = ">=3.5.0" },
+ { name = "python-dotenv", specifier = ">=1.2.2" },
+ { name = "python-multipart", specifier = "==0.0.27" },
+ { name = "pyyaml", specifier = ">=6.0.3" },
+ { name = "redis", specifier = "==5.0.0" },
+ { name = "requests", specifier = "==2.33.0" },
+ { name = "rio-tiler", specifier = ">=8.0.0" },
+ { name = "ruff", marker = "extra == 'dev'", specifier = ">=0.11.6" },
+ { name = "sniffio", specifier = "==1.3.1" },
+ { name = "sqlalchemy", specifier = "==2.0.36" },
+ { name = "starlette", specifier = "==0.49.1" },
+ { name = "tomli", specifier = "==2.2.1" },
+ { name = "tornado", specifier = "==6.5.5" },
+ { name = "typing-extensions", specifier = ">=4.14.1" },
+ { name = "urllib3", specifier = "==2.7.0" },
+ { name = "user-agents", specifier = ">=2.2.0" },
+ { name = "uvicorn", specifier = "==0.32.1" },
+ { name = "websockets", specifier = "==15.0.1" },
+]
+provides-extras = ["dev"]
+
[[package]]
name = "opentelemetry-api"
version = "1.39.1"
diff --git a/docker-compose.yml b/docker-compose.yml
index d48257f..0dbdb97 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -3,7 +3,7 @@ services:
build:
context: .
dockerfile: Dockerfile
- image: ewlarson/opengeometadata-api:0.6.0
+ image: opengeometadata-api:dev
container_name: opengeometadata-api-app
environment:
- DATABASE_URL=postgresql+asyncpg://postgres:${POSTGRES_PASSWORD:-postgres}@paradedb:5432/opengeometadata_api
diff --git a/docs/deployment.md b/docs/deployment.md
index 20f710c..74fe790 100644
--- a/docs/deployment.md
+++ b/docs/deployment.md
@@ -9,7 +9,7 @@ The OGM API is deployed to production using Kamal, which orchestrates Docker con
- **Web Service**: FastAPI application (Python/uvicorn)
- **Worker Service**: Celery worker for OGM harvests, cache jobs, and async processing
- **Accessories** (supporting services):
- - ParadeDB/PostgreSQL database
+ - PostgreSQL database
- Elasticsearch search engine
- Redis cache/message broker
@@ -222,7 +222,7 @@ elasticsearch:
- Single-node configuration
- 2GB heap size
- Security disabled (bound to localhost only)
-- Data persisted to `esdata` volume
+- Data persisted at `/var/lib/opengeometadata-api/elasticsearch` on the host
### PostgreSQL
@@ -237,7 +237,7 @@ postgres:
- Existing PostgreSQL 15 accessory used by the current production deployment
- Initialized via `config/init.sql`
- FAST vector embeddings are disabled in Kamal by default because the current production database image does not expose the `vector` extension
-- Data persisted to `pgdata` volume
+- Data persisted at `/var/lib/opengeometadata-api/postgres` on the host
### Redis
@@ -251,7 +251,7 @@ redis:
- Append-only file (AOF) persistence enabled
- Current production accessory runs without Redis AUTH; the app should omit
`REDIS_PASSWORD` unless/until the accessory is explicitly recreated with auth
-- Data persisted to `redisdata` volume
+- Data persisted at `/var/lib/opengeometadata-api/redis` on the host
## Deployment Commands
@@ -487,33 +487,42 @@ kamal app exec "python /app/backend/scripts/run_migrations.py"
### Backup Database
-SSH into the server and run:
+Create a logical PostgreSQL backup on the host. A logical dump is safe while
+PostgreSQL is running; copying its live data directory is not:
```bash
# SSH to server
ssh ewlarson@ogm.geo4lib.app
-# Create backup
-docker exec ogm-api-postgres pg_dump -U ogm_api_user btaa_ogm_api > backup_$(date +%Y%m%d).sql
+# Create a restricted backup directory and a custom-format dump
+ogm_backup_dir=/var/backups/opengeometadata-api
+sudo install -d -m 700 -o "$(id -un)" -g "$(id -gn)" "$ogm_backup_dir"
+docker exec ogm-api-postgres \
+ pg_dump --format=custom -U ogm_api_user btaa_ogm_api \
+ > "$ogm_backup_dir/postgres-$(date -u +%Y%m%dT%H%M%SZ).dump"
-# Compress backup
-gzip backup_$(date +%Y%m%d).sql
+# Confirm the newest dump is non-empty and structurally readable
+ogm_backup_file="$(find "$ogm_backup_dir" -type f -name 'postgres-*.dump' -print | sort | tail -n1)"
+test -s "$ogm_backup_file"
+docker exec -i ogm-api-postgres pg_restore --list < "$ogm_backup_file" >/dev/null
```
+Copy the verified dump to an access-controlled off-host backup system and
+record its identifier before a deployment or migration window.
+
### Restore Database
```bash
-# Copy backup to server
-scp backup.sql.gz ewlarson@ogm.geo4lib.app:~/
+# Copy a verified custom-format backup to the server
+scp postgres-YYYYMMDDTHHMMSSZ.dump ewlarson@ogm.geo4lib.app:/var/backups/opengeometadata-api/
# SSH to server
ssh ewlarson@ogm.geo4lib.app
-# Decompress
-gunzip backup.sql.gz
-
-# Restore
-cat backup.sql | docker exec -i ogm-api-postgres psql -U ogm_api_user btaa_ogm_api
+# Restore only during an approved recovery window
+docker exec -i ogm-api-postgres \
+ pg_restore --clean --if-exists -U ogm_api_user -d btaa_ogm_api \
+ < /var/backups/opengeometadata-api/postgres-YYYYMMDDTHHMMSSZ.dump
```
## Elasticsearch Operations
@@ -667,15 +676,17 @@ For automated deployments via GitHub Actions or similar:
6. **SSL certificates**: Kamal handles Let's Encrypt automatically
7. **Volume security**: Persistent volumes contain sensitive data
-## Volumes & Data Persistence
+## Host Directories & Data Persistence
-Kamal manages three persistent volumes:
+Kamal bind-mounts three persistent host directories. These paths are stable
+production identity and must not change during a repository or image transfer:
-- `esdata`: Elasticsearch index data
-- `pgdata`: PostgreSQL database files
-- `redisdata`: Redis cache data
+- `/var/lib/opengeometadata-api/elasticsearch`: Elasticsearch index data
+- `/var/lib/opengeometadata-api/postgres`: PostgreSQL database files
+- `/var/lib/opengeometadata-api/redis`: Redis append-only cache data
-These volumes persist across deployments and container restarts.
+These directories persist across deployments and container restarts. They are
+not Docker named volumes; `docker volume` commands do not back them up.
### Backing Up Volumes
@@ -683,14 +694,16 @@ These volumes persist across deployments and container restarts.
# SSH to server
ssh ewlarson@ogm.geo4lib.app
-# List volumes
-docker volume ls
-
-# Backup a volume
-docker run --rm -v pgdata:/data -v $(pwd):/backup \
- alpine tar czf /backup/pgdata_backup.tar.gz /data
+# Confirm the configured directories and mounts
+sudo find /var/lib/opengeometadata-api -maxdepth 1 -type d -print
+docker inspect ogm-api-postgres --format '{{json .Mounts}}'
```
+Use the logical PostgreSQL procedure above for database backups. Use a
+provider/filesystem snapshot for the three bind directories only with an
+explicit consistency plan. Never archive the live PostgreSQL data directory as
+if it were an ordinary file tree.
+
## Performance Tuning
### Elasticsearch Memory
diff --git a/docs/repository_branch_inventory.md b/docs/repository_branch_inventory.md
new file mode 100644
index 0000000..b0a6d12
--- /dev/null
+++ b/docs/repository_branch_inventory.md
@@ -0,0 +1,68 @@
+# Pre-transfer branch inventory
+
+This inventory records the branch state of `ewlarson/ogm-api` on 2026-08-19.
+It exists so the history rewrite and organization transfer use an intentional
+ref set. Branch deletion is not performed by repository preparation scripts.
+
+At audit time the repository had 18 live branches, no tags, and no open pull
+requests. All ten historical pull requests were closed and merged.
+
+## Fully merged branches
+
+These branch tips are ancestors of `develop` and contain zero commits ahead of
+it. Their pull-request or commit history remains in `develop`; retaining the
+branch name adds no source history.
+
+| Branch | Commits behind `develop` | Recommended disposition |
+| --- | ---: | --- |
+| `agent/fix-unr-iiif-thumbnails` | 5 | Delete before transfer |
+| `feature/admin-endpoints` | 118 | Delete before transfer |
+| `feature/ai-summaries` | 138 | Delete before transfer |
+| `feature/downloads` | 169 | Delete before transfer |
+| `feature/gazetteer` | 158 | Delete before transfer |
+| `feature/item_allmaps` | 99 | Delete before transfer |
+| `feature/ogm-studio-api-dashboard` | 17 | Delete before transfer |
+| `feature/queue-and-cache` | 172 | Delete before transfer |
+| `feature/reference-visuals-from-dct-references` | 10 | Delete before transfer |
+| `feature/relations` | 164 | Delete before transfer |
+| `feature/restore-ogm-repo-dashboard` | 7 | Delete before transfer |
+| `feature/swagger-json-response-highlighting` | 18 | Delete before transfer |
+| `feature/sync-geobtaa-api-2026-06-06` | 18 | Delete before transfer |
+| `main` | 217 | Delete after confirming `develop` remains the default branch |
+
+## Unmerged historical branches
+
+These branches have no pull requests and have been inactive since 2025. Their
+patches are not byte-for-byte present in `develop`, so deletion needs an owner
+decision even though their intended capabilities have been superseded.
+
+| Branch | Behind/ahead | Unique commits | Assessment | Recommended disposition |
+| --- | ---: | --- | --- | --- |
+| `feature/duckdb-shapefiles` | 97 / 1 | `f3870d0` | Early shapefile endpoint plus a committed 3.4 MB DuckDB file and large lockfile change. Current `develop` has a maintained shapefile service and endpoint test coverage. | Delete after owner confirmation |
+| `feature/geosearch` | 97 / 2 | `2277261`, `efce8eb` | Initial bbox search. Current `develop` has normalized bbox filters, scoring, containment behavior, and extensive tests. The same branch also remains in the BTAA upstream remote. | Delete after owner confirmation |
+| `feature/test-suite` | 174 / 1 | `e2f8305` | Initial test harness with a committed SQLite test database. Current `develop` has 158 backend test modules and a passing 1,831-test suite. | Delete after owner confirmation |
+
+If any historical branch must be retained for archaeology, preserve it outside
+the transferred repository with an access-controlled `git bundle` and record
+its full commit SHA in the private migration record. Do not create archive tags
+inside this repository: tags keep the same objects reachable and defeat ref
+cleanup.
+
+## Cutover procedure
+
+1. Freeze pushes and repeat the live branch inventory.
+2. Confirm that no pull request is open and no collaborator has unpublished
+ work based on a branch slated for deletion.
+3. Obtain explicit owner approval for the three unmerged branches.
+4. Delete approved remote branches while the repository is still under the
+ personal owner.
+5. Fetch with pruning into the cutover workstation and verify that local
+ `origin/*` refs exactly match GitHub.
+6. Populate the fresh rewrite mirror only from the approved live heads and
+ tags. Never include `upstream/*` refs or locally fetched BTAA tags.
+7. Record the final ref names and pre-rewrite SHAs in the private change record.
+
+The tested rewrite can preserve all 18 branches, so branch pruning is a
+governance and cleanliness decision rather than a technical prerequisite. The
+recommended community-facing end state is a single `develop` branch unless an
+OpenGeoMetadata maintainer asks to retain another ref.
diff --git a/docs/repository_transfer.md b/docs/repository_transfer.md
new file mode 100644
index 0000000..769c230
--- /dev/null
+++ b/docs/repository_transfer.md
@@ -0,0 +1,229 @@
+# Repository transfer and production continuity runbook
+
+This runbook moves `ewlarson/ogm-api` to `OpenGeoMetadata/ogm-api` without
+coupling GitHub ownership to a production deployment. The repository transfer
+is a control-plane change. It must not restart containers, change the Kamal
+service identity, move persistent data, or change the image pulled by
+production.
+
+GitHub normally preserves issues, pull requests, releases, webhooks, deploy
+keys, secrets, and redirects when a repository is transferred. Organization
+policy and package permissions still require explicit verification. Review
+GitHub's current [repository transfer documentation](https://docs.github.com/en/repositories/creating-and-managing-repositories/transferring-a-repository)
+immediately before the change.
+
+See `repository_transfer_rehearsal.md` for the dated, non-secret evidence from
+the isolated history-rewrite and live preflight rehearsal. That evidence must
+be refreshed during the actual change window.
+
+See `repository_branch_inventory.md` for the disposition of all live personal
+repository branches. Do not copy every fetched ref into the cutover mirror by
+default; only GitHub-owned refs approved in that ledger belong in the transfer.
+
+## Stop conditions
+
+Do not transfer the repository until all of these are true:
+
+- a secret scan of every repository-owned branch and tag is clean, and any
+ credential the scan identifies has been rotated at its authority;
+- a coordinated history rewrite has removed generated `backend/static/maps/`
+ assets from every branch and tag (the rewrite also strips Kamal secret paths
+ defensively);
+- the rewritten repository passes `make transfer-readiness-full`;
+- the OpenGeoMetadata owners have approved the repository name, visibility,
+ teams, branch policy, Actions policy, and secret owners;
+- every live branch has an approved keep/delete disposition and no open pull
+ request or collaborator work depends on a branch slated for deletion;
+- the currently deployed image reference and digest, Kamal version, and
+ rollback version have been recorded; and
+- a production database backup and a host-volume snapshot or equivalent
+ recovery point have been verified.
+
+The preparation audit found `.kamal/secrets` in commits reachable only from the
+separate `geobtaa/api` upstream remote, not in branches owned by
+`ewlarson/ogm-api`. It found no shared assignments between that upstream file
+and the current ignored local operator file. Do not import upstream refs or
+tags into the transferred repository. If a subsequent scanner finds a secret
+in an OGM-owned ref, treat it as compromised: removing Git history does not
+revoke a credential and is not a substitute for rotation.
+
+## Production invariants
+
+The following values are intentionally frozen through the repository transfer:
+
+| Invariant | Current value |
+| --- | --- |
+| Kamal service | `ogm-api` |
+| Production host and proxy hostname | `ogm.geo4lib.app` |
+| Roles | `web`, `worker`, `cron` |
+| Container image | `ewlarson/opengeometadata-api` |
+| Registry and login owner | `ghcr.io`, `ewlarson` |
+| Elasticsearch index | `opengeometadata_api` |
+| PostgreSQL database | `btaa_ogm_api` |
+| Elasticsearch volume | `/var/lib/opengeometadata-api/elasticsearch` |
+| PostgreSQL volume | `/var/lib/opengeometadata-api/postgres` |
+| Redis volume | `/var/lib/opengeometadata-api/redis` |
+
+The legacy PostgreSQL database name is persistent identity, not public project
+branding. Rename it only in a separate, backed-up database migration.
+
+Run the local invariant checks before and after every preparation commit:
+
+```bash
+make transfer-readiness
+```
+
+## Phase 1: verify and externalize secrets
+
+1. Scan every OGM-owned branch and tag without copying suspected values into an
+ issue, chat, log, or pull request.
+2. If the scan identifies a credential, rotate it at its authority. Relevant
+ classes include registry/GitHub tokens, database/admin credentials, webhook
+ signing secrets, SSH material, and third-party API credentials.
+3. Replace any rotated deployment value through the approved secret source,
+ verify the running application, and only then revoke the old value.
+4. Confirm `.kamal/` remains ignored and that no workflow, fixture, log, or
+ documentation contains a copied value.
+5. Record the scan result and, when applicable, who rotated each credential,
+ its authority, and completion time in the private operational system—not in
+ this repository.
+
+Do not edit the operator's ignored local `.kamal/secrets` file as part of a
+repository cleanup commit; doing so can silently break the next deployment.
+
+## Phase 2: rewrite contaminated and generated history
+
+The current repository-owned branch history contains more than a thousand
+generated static-map paths. Schedule a push freeze and announce that every
+existing clone will need to be re-cloned. Record the last pre-rewrite commit in
+the private change record; do not create a public pre-rewrite tag, because that
+would keep the removed objects reachable. Perform the rewrite in a fresh
+temporary mirror of `origin`, never in an operator's deployment checkout:
+
+```bash
+git clone --mirror git@github.com:ewlarson/ogm-api.git ogm-api-sanitized.git
+cd ogm-api-sanitized.git
+git filter-repo --force \
+ --path .kamal/secrets \
+ --path .kamal/registry-password \
+ --path backend/static/maps \
+ --invert-paths
+```
+
+Inspect every rewritten ref, run a secret scanner approved by the
+OpenGeoMetadata organization, and run the equivalent of:
+
+```bash
+git rev-list --objects --all | grep -E '(^|/)(\.kamal/(secrets|registry-password)|backend/static/maps/)'
+```
+
+The command must return no paths. Only after verification should the release
+operator force-push all rewritten branches and tags. Remove cached forks or
+temporary mirrors that could reintroduce the old objects, preserve the private
+audit record, and require collaborators to re-clone.
+
+## Phase 3: record the running deployment
+
+From the operator workstation, record these outputs in the private change
+record:
+
+```bash
+git rev-parse HEAD
+kamal version
+kamal details
+kamal app images
+```
+
+Also record the active container image including its immutable digest, the
+previous known-good image, accessory health, free disk space, last successful
+nightly reconciliation, database backup identifier, and a small production
+smoke-test result. Do not run `kamal deploy` during the GitHub transfer.
+
+The transfer operator must separately confirm that the personal GHCR image is
+still readable by the production host. GitHub repository transfer does not
+make a personal container package organization-owned. Package linkage and
+access are managed separately; review GitHub's current
+[package/repository connection documentation](https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package).
+
+## Phase 4: transfer the repository
+
+1. Freeze pushes and scheduled/manual deployment activity.
+2. Run `make transfer-readiness-full` against the exact commit being moved.
+3. In GitHub, transfer the repository to `OpenGeoMetadata` using the unchanged
+ repository name `ogm-api`.
+4. Do not create a replacement `ewlarson/ogm-api`; that would interfere with
+ GitHub's redirect from the old URL.
+5. Update the local Git remote after the transfer:
+
+ ```bash
+ git remote set-url origin git@github.com:OpenGeoMetadata/ogm-api.git
+ git remote -v
+ ```
+
+6. Run `./scripts/verify_transfer_readiness.sh --post-transfer`.
+
+No production containers should change during these steps.
+
+## Phase 5: verify GitHub controls and automation
+
+Immediately verify:
+
+- repository visibility, default branch (`develop`), tags, releases, issues,
+ pull requests, discussions, and redirect behavior;
+- OpenGeoMetadata owner/admin access and least-privilege team access;
+- branch protection or rulesets, required checks, Actions permissions, and
+ environment approval rules;
+- webhooks, deploy keys, GitHub Apps, security settings, vulnerability alerts,
+ and code-scanning configuration;
+- Actions secrets `OGM_KAMAL_SSH_PRIVATE_KEY`, `OGM_KAMAL_SSH_HOST`,
+ `OGM_KAMAL_SSH_PORT`, and `OGM_KAMAL_SSH_USER`; and
+- that the nightly workflow can locate a running container labeled
+ `service=ogm-api` and complete one manually dispatched reconciliation.
+
+Verify the public API, OpenAPI document, a representative search, a resource
+response, sitemap/robots behavior, and the harvest dashboard. Then unfreeze
+normal repository activity. A successful repository transfer does not require
+or authorize a production deployment.
+
+## Phase 6: migrate the image namespace later
+
+Move from the personal package to an organization-owned GHCR package only in a
+separate release:
+
+1. create `ghcr.io/opengeometadata/opengeometadata-api` with explicit package
+ access for the repository and deployment principals;
+2. publish the same immutable release to both personal and organization image
+ names;
+3. verify matching image digests and pull the organization image from the
+ production host before editing Kamal configuration;
+4. change only the Kamal image/registry settings, keeping the service, host,
+ roles, index, database, accessory names, and volume paths fixed;
+5. deploy during a separate window, verify health and data continuity, and
+ keep the personal image available for rollback; and
+6. retire the personal package only after a complete rollback window and an
+ independent cold-start/pull test.
+
+## Rollback
+
+If GitHub ownership or policy is wrong, freeze writes and transfer the
+repository back while the original owner and name are still available. The
+running application is unaffected because its image and host were not changed.
+
+If the nightly workflow fails, disable its schedule or leave it frozen, run the
+existing production reconciliation through the recorded operator path, and fix
+organization secrets/permissions before re-enabling it.
+
+If the later image migration fails, restore
+`ewlarson/opengeometadata-api` and the recorded immutable tag/digest, then use
+the normal Kamal rollback procedure. Never remove or recreate PostgreSQL,
+Elasticsearch, or Redis accessories as part of an image rollback.
+
+## Completion evidence
+
+The migration is complete only when the organization repository is the
+documented canonical source, the old URL redirects, all organization controls
+and scheduled workflows are verified, the full-history and secret scans are
+clean (with any actual exposure recorded as rotated), and production continues
+to serve the same data from the same persistent volumes. Organization-owned
+image publication may remain a documented follow-up if the personal image is
+still deliberately pinned and supported.
diff --git a/docs/repository_transfer_rehearsal.md b/docs/repository_transfer_rehearsal.md
new file mode 100644
index 0000000..abbc2c6
--- /dev/null
+++ b/docs/repository_transfer_rehearsal.md
@@ -0,0 +1,90 @@
+# Repository transfer rehearsal evidence
+
+This file records non-secret evidence gathered on 2026-08-19 while preparing
+`ewlarson/ogm-api` for transfer to `OpenGeoMetadata/ogm-api`. It is a snapshot,
+not authorization to transfer. Repeat every live check during the scheduled
+change window and store sensitive operational evidence in the private change
+record described by `repository_transfer.md`.
+
+## Requirement evidence
+
+| Requirement | Evidence | Result |
+| --- | --- | --- |
+| Source repository identity | GitHub reported public, active `ewlarson/ogm-api`, default branch `develop` | Pass |
+| Destination authority | GitHub reported active `admin` membership in `OpenGeoMetadata` | Pass |
+| Destination name | Authenticated request for `OpenGeoMetadata/ogm-api` returned HTTP 404 | Available at check time |
+| Rehearsal source fidelity | All 18 locally fetched `origin/*` branch names and tips matched the live GitHub branch list | Pass |
+| Historical secret paths | Repository-owned history contained zero `.kamal/secrets` or `.kamal/registry-password` paths | Pass |
+| Generated history | Repository-owned history contained 2,108 `backend/static/maps/` paths | Rewrite required |
+| Current worktree | Generated maps are deleted from the index and `backend/static/maps/` is ignored | Pass |
+| Actions secrets | Four expected nightly SSH secret names exist; values were not read | Pass |
+| Other GitHub attachments | Zero webhooks, deploy keys, rulesets, environments, and Actions variables | Pass |
+| Branch disposition | 14 non-default branches are fully merged; three inactive 2025 branches contain superseded unique patches; no pull request is open | Owner decision required for three branches |
+| Source Actions policy | Actions enabled; repository default was write, while each prepared workflow now declares `contents: read` | Pass after prepared changes are published |
+| Destination Actions policy | Token could not read organization policy because it lacks `admin:org` | Manual preflight required |
+| Personal GHCR package metadata | Token could not read package metadata because it lacks `read:packages` | Manual preflight required |
+| Production registry access | Production host successfully inspected the deployed personal GHCR manifest using its existing credentials | Pass |
+| Production topology | Kamal 2.7.0 reported healthy proxy, `web`, `worker`, `cron`, PostgreSQL, Elasticsearch, and Redis containers | Pass |
+| Production API | API root returned version `0.7.0`; representative search returned results | Pass |
+
+## Isolated rewrite rehearsal
+
+The rehearsal populated a new bare repository only from the locally fetched
+`refs/remotes/origin/*` branches after those refs were compared to live GitHub.
+BTAA remote refs and locally fetched BTAA tags were excluded. The temporary
+mirror was rewritten with:
+
+```bash
+git filter-repo --force \
+ --path .kamal/secrets \
+ --path .kamal/registry-password \
+ --path backend/static/maps \
+ --invert-paths
+```
+
+Results:
+
+- all 18 branch names remained present;
+- all 232 source commits received a mapping and none were dropped;
+- sensitive-path count remained zero;
+- generated-map path count fell from 2,108 to zero;
+- `git fsck --full --strict` completed successfully;
+- packed object storage fell from approximately 329 MiB to 122 MiB; and
+- the rewritten `develop` tree retained the `ogm-api` service, personal image
+ path, production hostname, and all three persistent host directory mappings.
+
+The rehearsal mirror was local and disposable. Nothing was force-pushed, no
+repository was transferred, no image was published, and no production state
+was changed.
+
+The sanitized mirror was then cloned into a disposable candidate checkout.
+Every modified, deleted, and untracked path from the prepared shared worktree
+was overlaid onto that checkout. A path-by-path comparison covered 799 source
+paths with zero mismatches. After a temporary candidate-only commit:
+
+- `./scripts/verify_transfer_readiness.sh --full-history` passed every check;
+- `git fsck --full --strict` passed; and
+- the complete backend suite passed with 1,831 tests passed, 99 skipped, and
+ one expected-pass after the existing ignored local test configuration was
+ linked into the disposable checkout; and
+- the candidate worktree was clean.
+
+The temporary rehearsal commit was not created in the shared checkout and was
+not pushed anywhere.
+
+## Change-window evidence still required
+
+Before the actual transfer:
+
+1. commit and review the prepared worktree;
+2. approve `repository_branch_inventory.md`, prune approved branches, freeze
+ pushes, and repeat the live branch-tip comparison;
+3. verify the OpenGeoMetadata Actions policy with an organization-authorized
+ token or in the organization settings UI;
+4. verify personal GHCR package ownership/access with `read:packages`, while
+ keeping production pinned to the personal image path;
+5. create and verify the database backup and host snapshot identified in the
+ private change record;
+6. rewrite a fresh mirror of the frozen GitHub repository and require
+ `make transfer-readiness-full` to pass in a checkout of the result; and
+7. follow the transfer and rollback sequence in `repository_transfer.md`.
diff --git a/docs/upstream_reconciliation.md b/docs/upstream_reconciliation.md
new file mode 100644
index 0000000..bd6d727
--- /dev/null
+++ b/docs/upstream_reconciliation.md
@@ -0,0 +1,101 @@
+# BTAA backend reconciliation
+
+This repository does not share Git ancestry with `geobtaa/api`. The local
+`develop` branch and `upstream/develop` have no merge base, so Git ahead/behind
+counts are not an integration plan. The supported unit of comparison is the
+BTAA `backend/` subtree recorded in `config/geobtaa-backend-source.env`.
+
+## Baseline and target
+
+| Item | Value |
+| --- | --- |
+| Last imported BTAA commit | `0c9d80b3b36e833fce0a17551da893bf0aa68928` |
+| BTAA tag containing that commit | `v0.7.16` |
+| Recorded backend split | `1cf222b377be4ba1d8468fa864724542e866eb3e` |
+| Review ceiling | BTAA `0.8.11` (`4254aa3`) |
+| OGM product version | Independent; currently `0.7.0` |
+
+The review ceiling is not a promise that this product becomes BTAA `0.8.11`.
+OGM releases and BTAA source provenance are separate concepts.
+
+## Reconciliation policy
+
+1. Review only non-merge commits that affect `backend/` between the recorded
+ baseline and the selected review ceiling.
+2. Classify each change as `ported`, `port selectively`, `dependency review`,
+ `defer`, or `not applicable`.
+3. Port shared behavior with its tests and record the upstream SHA. Do not
+ cherry-pick whole commits across the unrelated histories.
+4. Never overwrite the downstream paths listed in
+ `config/ogm-owned-paths.txt` without an explicit OGM design decision.
+5. Run focused tests for every port, followed by the complete backend suite
+ before release.
+6. Update `config/geobtaa-backend-source.env` only for a complete applied
+ subtree import. Selective ports remain documented here instead.
+
+## Baseline CI coverage
+
+The recorded `v0.7.16` backend baseline postdates BTAA commit `44411cf`, which
+introduced the repository-level CI workflow. The backend subtree import could
+not carry that top-level workflow, so this repository now ports its compatible
+backend job separately in `.github/workflows/ci.yml`.
+
+The port runs the complete Python suite with ParadeDB, Elasticsearch, Redis,
+parallel workers, a wall-clock watchdog, and a 50% coverage floor. BTAA's
+frontend, CLI, QGIS plugin, and MkDocs jobs are intentionally excluded because
+those products are not present in this backend-only repository. Action
+dependencies are pinned to immutable commits to satisfy the transfer-readiness
+policy.
+
+## Decision ledger: `v0.7.16` through `0.8.11`
+
+| Upstream commit | Decision | OGM rationale or follow-up |
+| --- | --- | --- |
+| `e95178a` Prepare GTM for production cutover | **Ported selectively** | Ported the recursive test route helper needed by FastAPI's lazy `include_router` representation and updated route-registration assertions. BTAA frontend analytics and production configuration remain not applicable. |
+| `1433322` Bump API version to 0.8.0 | Not applicable | OGM product versioning is independent. |
+| `a529b3b` Prepare v0.8.1 release | Not applicable | BTAA release bookkeeping is not imported. |
+| `a17b83e` Fix production feedback delivery default | Not applicable | Recipient and mail defaults are operator-specific. |
+| `a51a018` Fix production sitemap canonical URL | **Ported** | Prevents a mirror from serving sitemap documents generated for a different origin. Ported with OGM hostname coverage. |
+| `97c80d2` Add Turnstile bot exemptions and update Kithe bridge | Defer | Mixed BTAA edge policy and Kithe control-plane behavior. Revisit only if those components enter the supported OGM deployment profile. |
+| `7becdd8` Version bump for v0.8.4 | Not applicable | BTAA release bookkeeping is not imported. |
+| `caf71d7` Fix similar items missing Elasticsearch docs | **Ported** | Uses `exists` instead of a traced `GET` 404 for retired or intentionally unindexed records. |
+| `e6674b4` Bump version to 0.8.5 | Not applicable | BTAA release bookkeeping is not imported. |
+| `7165142` Improve telemetry and Elasticsearch visibility controls | Port selectively | Public/suppressed filtering, mapping checks, and cache-key isolation support the mirror public-read contract. AppSignal and BTAA fallback values do not. Requires a dedicated cross-endpoint PR. |
+| `1ea6609` Bump version to 0.8.6 | Not applicable | BTAA release bookkeeping is not imported. |
+| `d60a24a` Fix bridge relationship sync and indexing refresh | Defer | Primarily Kithe Bridge reconciliation. OGM mirrors use GitHub Aardvark harvests as their correctness path. |
+| `15c1200` Fix AppSignal frontend telemetry isolation | Not applicable | Frontend telemetry and BTAA observability configuration are not part of this backend product. |
+| `a477847` Fix Kithe Bridge deletion reconciliation | Defer | Kithe-specific deletion workflow; evaluate against OGM repository removal and tombstone policy separately. |
+| `9d2eb78` Bump `aiohttp` | Dependency review | Re-resolve against the OGM lockfile and run security/compatibility tests instead of copying one lockfile delta. |
+| `fb4bbbf` Drop Flower from Kamal deployments | Already satisfied | OGM Kamal roles are `web`, `worker`, and `cron`; Flower remains only an optional local Compose service. |
+| `a545109` Handle Bridge tombstone deletes | Defer | Useful design input for deletion semantics, but the implementation is coupled to Kithe Bridge. |
+| `b8098a0` Bump version to 0.8.7 | Not applicable | BTAA release bookkeeping is not imported. |
+| `6f4b73b` Refresh project dependencies | Dependency review | Produce a fresh OGM dependency PR with lockfile, license, vulnerability, and runtime verification. |
+| `721ea3b` Adjust response handling and file checks | **Ported selectively** | The production-database test now accepts both the legacy `error` and FastAPI `detail` missing-resource envelopes, as required by the full CI suite. Broader Slack, admin, and BTAA response-label changes remain deferred. |
+| `93f73d6` Use local Postgres backups in production | Design reference | Mirror backup/rebuild behavior belongs in the OGM operating runbook and secret model, not as a blind BTAA script import. |
+| `0a24422` Bump version to 0.8.8 | Not applicable | BTAA release bookkeeping is not imported. |
+| `d991db3` Bump version to 0.8.9 | Not applicable | BTAA release bookkeeping is not imported. |
+| `ab214d5` Fix GEOMG distribution and asset syncing | Port selectively | Aardvark distribution, reference, asset, and relationship correctness is relevant, but the commit is broad and Bridge-heavy. Split it into contract-focused ports after fixture comparison. |
+| `2d5444f` Fix location filtering for contained resources | **Ported** | Uses document containment for bbox eligibility so a large query retains small fully contained resources. |
+| `bfbd4db` Bump version to 0.8.10 | Not applicable | BTAA release bookkeeping is not imported. |
+| `ac1b700` Fix relationship cache priming visibility | **Ported** | Routes priming through the public relationship service, connects the legacy database pool for in-process warming, and advances the representation cache version. |
+| `78466a2` Fix source relationship direction | **Ported** | Emits canonical `dct:isSourceOf`, removes the legacy inverse during sync, canonicalizes old rows, and deduplicates responses. |
+| `f1f4092` Release v0.8.11 | Not applicable | Backend changes are release-version updates; the named PMTiles rendering fix is in the BTAA frontend, which this repository does not ship. |
+
+## Port verification
+
+The accepted ports are covered by focused tests in:
+
+- `tests/elasticsearch/test_search.py`
+- `tests/services/test_relationship_service.py`
+- `tests/services/test_relationship_sync.py`
+- `tests/services/test_sitemap_service.py`
+- `tests/scripts/test_prime_resource_representation_cache.py`
+- `tests/scripts/test_refresh_resource_caches.py`
+- `tests/utils/route_helpers.py`
+
+The complete backend suite is also enforced by `.github/workflows/ci.yml` on
+pull requests and pushes to `develop`.
+
+Before the next upstream review, fetch `upstream`, choose a new immutable review
+ceiling, append every backend-affecting commit to this ledger, and keep earlier
+decisions intact for auditability.
diff --git a/publish.sh b/publish.sh
index 6ee249e..ac58262 100755
--- a/publish.sh
+++ b/publish.sh
@@ -1,14 +1,28 @@
-#!/bin/bash
+#!/usr/bin/env bash
+
set -euo pipefail
-VERSION="${1:-}"
-if [ -z "$VERSION" ]; then
- echo "Please provide a version number (e.g. ./publish.sh 0.6.0)"
+version="${1:-}"
+if [ -z "$version" ]; then
+ echo "Usage: OGM_IMAGE_REPOSITORIES='ghcr.io/owner/image [ghcr.io/owner/image]' $0 VERSION" >&2
exit 1
fi
-docker build -t ewlarson/opengeometadata-api:latest -t ewlarson/opengeometadata-api:"$VERSION" .
-docker push ewlarson/opengeometadata-api:latest
-docker push ewlarson/opengeometadata-api:"$VERSION"
+read -r -a image_repositories <<< "${OGM_IMAGE_REPOSITORIES:-ghcr.io/ewlarson/opengeometadata-api}"
+if [ "${#image_repositories[@]}" -eq 0 ]; then
+ echo "OGM_IMAGE_REPOSITORIES must contain at least one image repository." >&2
+ exit 1
+fi
+
+build_tags=()
+for image_repository in "${image_repositories[@]}"; do
+ build_tags+=(--tag "$image_repository:$version" --tag "$image_repository:latest")
+done
+
+docker build "${build_tags[@]}" .
-echo "Published ewlarson/opengeometadata-api:latest and ewlarson/opengeometadata-api:$VERSION"
+for image_repository in "${image_repositories[@]}"; do
+ docker push "$image_repository:$version"
+ docker push "$image_repository:latest"
+ echo "Published $image_repository:$version and $image_repository:latest"
+done
diff --git a/scripts/verify_transfer_readiness.sh b/scripts/verify_transfer_readiness.sh
new file mode 100755
index 0000000..6a8d851
--- /dev/null
+++ b/scripts/verify_transfer_readiness.sh
@@ -0,0 +1,165 @@
+#!/usr/bin/env bash
+
+set -euo pipefail
+
+mode="worktree"
+case "${1:-}" in
+ "") ;;
+ --full-history) mode="full-history" ;;
+ --post-transfer) mode="post-transfer" ;;
+ *)
+ echo "Usage: $0 [--full-history|--post-transfer]" >&2
+ exit 2
+ ;;
+esac
+
+script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+repository_root="$(cd "$script_dir/.." && pwd)"
+cd "$repository_root"
+
+failures=0
+
+pass() {
+ printf 'PASS %s\n' "$1"
+}
+
+fail() {
+ printf 'FAIL %s\n' "$1" >&2
+ failures=$((failures + 1))
+}
+
+expect_exact_line() {
+ local file="$1"
+ local line="$2"
+ local label="$3"
+ if grep -Fqx -- "$line" "$file"; then
+ pass "$label"
+ else
+ fail "$label"
+ fi
+}
+
+expect_path_absent_from_index() {
+ local pathspec="$1"
+ local label="$2"
+ if [ -z "$(git ls-files -- "$pathspec")" ]; then
+ pass "$label"
+ else
+ fail "$label"
+ fi
+}
+
+expect_path_absent_from_index '.kamal/secrets' 'Kamal secrets are not tracked'
+expect_path_absent_from_index '.kamal/registry-password' 'Kamal registry password is not tracked'
+expect_path_absent_from_index 'backend/static/maps/**' 'generated static maps are not tracked'
+
+expect_exact_line .gitignore '.kamal/' 'Kamal operator files are ignored'
+expect_exact_line .gitignore 'backend/static/maps/' 'generated static maps are ignored'
+
+expected_image="${OGM_EXPECTED_IMAGE:-ewlarson/opengeometadata-api}"
+expect_exact_line config/deploy.yml 'service: ogm-api' 'Kamal service identity is unchanged'
+expect_exact_line config/deploy.yml "image: $expected_image" 'production image identity is unchanged'
+expect_exact_line config/deploy.yml ' host: ogm.geo4lib.app' 'production proxy hostname is unchanged'
+expect_exact_line config/deploy.yml ' ELASTICSEARCH_INDEX: opengeometadata_api' 'Elasticsearch index is unchanged'
+expect_exact_line config/deploy.yml ' POSTGRES_DB: btaa_ogm_api' 'PostgreSQL database is unchanged'
+expect_exact_line config/deploy.yml ' - /var/lib/opengeometadata-api/elasticsearch:/usr/share/elasticsearch/data' 'Elasticsearch volume is unchanged'
+expect_exact_line config/deploy.yml ' - /var/lib/opengeometadata-api/postgres:/var/lib/postgresql/data' 'PostgreSQL volume is unchanged'
+expect_exact_line config/deploy.yml ' - /var/lib/opengeometadata-api/redis:/data' 'Redis volume is unchanged'
+
+for role in web worker cron; do
+ if grep -Eq "^ ${role}:$" config/deploy.yml; then
+ pass "Kamal ${role} role is present"
+ else
+ fail "Kamal ${role} role is present"
+ fi
+done
+
+if grep -Fq 'Draft for Community Discussion' README.md \
+ && grep -Fq 'ogm-mirror-network' README.md; then
+ pass 'README represents the proposal and its draft status'
+else
+ fail 'README represents the proposal and its draft status'
+fi
+
+for required_document in \
+ docs/repository_transfer.md \
+ docs/repository_transfer_rehearsal.md \
+ docs/repository_branch_inventory.md \
+ docs/upstream_reconciliation.md; do
+ if [ -s "$required_document" ]; then
+ pass "$required_document exists"
+ else
+ fail "$required_document exists"
+ fi
+done
+
+floating_actions="$(grep -ERn \
+ 'uses:[[:space:]]+[^[:space:]#]+@(v[0-9]|main|master)([[:space:]#]|$)' \
+ .github/workflows 2>/dev/null || true)"
+if [ -z "$floating_actions" ]; then
+ pass 'GitHub Actions dependencies are pinned to immutable commits'
+else
+ fail 'GitHub Actions dependencies are pinned to immutable commits'
+fi
+
+workflow_permission_failures=0
+for workflow in .github/workflows/*.yml .github/workflows/*.yaml; do
+ [ -e "$workflow" ] || continue
+ if ! grep -Fq 'permissions:' "$workflow" || ! grep -Fq ' contents: read' "$workflow"; then
+ workflow_permission_failures=$((workflow_permission_failures + 1))
+ fi
+done
+if [ "$workflow_permission_failures" -eq 0 ]; then
+ pass 'GitHub workflows declare read-only repository contents permission'
+else
+ fail "$workflow_permission_failures GitHub workflow(s) lack explicit read-only contents permission"
+fi
+
+if grep -Eq '^GEOBTAA_API_LAST_IMPORT_COMMIT=[0-9a-f]{40}$' config/geobtaa-backend-source.env \
+ && grep -Eq '^GEOBTAA_API_LAST_BACKEND_SPLIT_COMMIT=[0-9a-f]{40}$' config/geobtaa-backend-source.env; then
+ pass 'BTAA subtree provenance is pinned to immutable commits'
+else
+ fail 'BTAA subtree provenance is pinned to immutable commits'
+fi
+
+if [ "$mode" = "full-history" ]; then
+ repository_refs="$(git for-each-ref --format='%(refname)' refs/heads refs/remotes/origin)"
+ if ! git remote get-url upstream >/dev/null 2>&1; then
+ repository_refs="$repository_refs
+$(git for-each-ref --format='%(refname)' refs/tags)"
+ fi
+ history_paths="$(git log --format= --name-only $repository_refs -- \
+ .kamal/secrets \
+ .kamal/registry-password \
+ backend/static/maps \
+ | awk 'NF' \
+ | sort -u)"
+ if [ -z "$history_paths" ]; then
+ pass 'sensitive and generated paths are absent from repository-owned history'
+ else
+ history_sensitive_count="$(printf '%s\n' "$history_paths" | awk '
+ /^\.kamal\// { count++ } END { print count + 0 }
+ ')"
+ history_generated_count="$(printf '%s\n' "$history_paths" | awk '
+ /^backend\/static\/maps\// { count++ } END { print count + 0 }
+ ')"
+ fail "Git history still contains $history_sensitive_count sensitive and $history_generated_count generated path(s)"
+ fi
+fi
+
+if [ "$mode" = "post-transfer" ]; then
+ origin_url="$(git remote get-url origin 2>/dev/null || true)"
+ case "$origin_url" in
+ git@github.com:OpenGeoMetadata/ogm-api.git|https://github.com/OpenGeoMetadata/ogm-api.git)
+ pass 'origin points to OpenGeoMetadata/ogm-api'
+ ;;
+ *) fail 'origin points to OpenGeoMetadata/ogm-api' ;;
+ esac
+fi
+
+if [ "$failures" -gt 0 ]; then
+ printf '\nTransfer readiness failed with %d issue(s).\n' "$failures" >&2
+ exit 1
+fi
+
+printf '\nTransfer readiness checks passed (%s mode).\n' "$mode"