From 3015104f5b1883f24cb52acc3567b863d83dab9c Mon Sep 17 00:00:00 2001 From: david kiania Date: Mon, 8 Jun 2026 22:04:49 +0300 Subject: [PATCH] docs+tooling: OSM POI export workflow + Shell stations data; graded DQ report - scripts/export_osm_pois.py: reproducible OSM .pbf -> GeoJSON+CSV exporter (amenity/brand filter; pyosmium via uv, no system deps). - docs/OSM_POI_EXPORT.md: runbook (extract -> export -> FleetNow layer) with reference counts (1,794 fuel stations; Shell=232). - shell_stations.geojson/.csv: the Shell export of record (232 pts, kenya-260605). - docs/reports/260608_fleet_registry_data_quality.*: rewritten as a graded (Red/Amber/Yellow) action plan with owners. - .gitignore: ignore *.osm.pbf (331MB, reproducible). CLAUDE.md: index the new docs. Co-Authored-By: Claude Opus 4.8 --- .gitignore | 3 + CLAUDE.md | 2 + docs/OSM_POI_EXPORT.md | 50 + .../260608_fleet_registry_data_quality.md | 130 +- .../260608_fleet_registry_data_quality.pdf | 6841 +++++++---------- scripts/export_osm_pois.py | 88 + shell_stations.csv | 233 + shell_stations.geojson | 1 + 8 files changed, 3124 insertions(+), 4224 deletions(-) create mode 100644 docs/OSM_POI_EXPORT.md create mode 100644 scripts/export_osm_pois.py create mode 100644 shell_stations.csv create mode 100644 shell_stations.geojson diff --git a/.gitignore b/.gitignore index e120b36..ec62bfd 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,9 @@ __pycache__/ # OS .DS_Store + +# OSM extracts (large, reproducible from download — see docs/OSM_POI_EXPORT.md) +*.osm.pbf Thumbs.db # Backups diff --git a/CLAUDE.md b/CLAUDE.md index cfc0c56..28fb620 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -105,7 +105,9 @@ docs/ # Reference docs (connections, API, KPIs, project co docs/PLATFORM_OVERVIEW.html # Current-state platform reference (architecture, deploy, read-API, # full DB schema, Grafana panels) — open in a browser. Post n8n→fleetapi. docs/DWH_PIPELINE.md # DWH pipeline operations runbook (setup, troubleshooting) +docs/OSM_POI_EXPORT.md # Runbook: OSM .pbf → POI GeoJSON → FleetNow map layer (Shell stations) docs/superpowers/ # Pitch specs and implementation plans (not deployed code) +scripts/export_osm_pois.py # OSM .pbf → GeoJSON+CSV POI exporter (amenity/brand filter); see OSM_POI_EXPORT.md dwh/ # DWH migrations for tracksolid_dwh@31.97.44.246:5888 # 260423_dwh_ddl_v1.sql — bronze/silver/gold schemas + roles # 261001_dwh_control.sql — watermarks + run log diff --git a/docs/OSM_POI_EXPORT.md b/docs/OSM_POI_EXPORT.md new file mode 100644 index 0000000..f85e5b9 --- /dev/null +++ b/docs/OSM_POI_EXPORT.md @@ -0,0 +1,50 @@ +# OSM POI Export → FleetNow map layer + +How we turn an OpenStreetMap extract into a toggleable **FleetNow overlay layer** +(e.g. the 232 Shell fuel stations). Reproducible end-to-end. + +## 1. Get a Kenya extract + +Download a `.osm.pbf` (Geofabrik / BBBike), e.g. `kenya-260605.osm.pbf`. + +> **Do not commit the `.pbf`** — it's ~331 MB and is gitignored (`*.osm.pbf`). +> It's fully reproducible from the download. + +## 2. Export the POIs + +No system tooling required — `pyosmium`'s prebuilt wheel is fetched by `uv`: + +```bash +uv run --no-project --with osmium python scripts/export_osm_pois.py \ + kenya-260605.osm.pbf --amenity fuel --brand Shell \ + --out-geojson shell_stations.geojson --out-csv shell_stations.csv +``` + +- Gas stations are OSM **`amenity=fuel`**. Brand is the **`brand`** tag — but only + ~36% of Kenyan stations carry it (≈92% have a `name`), so when `--brand` is given + and a feature has no `brand` tag, the script falls back to matching `name`/`operator`. +- Omit `--brand` to export **every** station of that amenity. +- Nodes use their own coordinate; ways/areas use their node **centroid**. + +**Reference counts** (extract `kenya-260605`, captured 2026-06-08): + +| Metric | Value | +|---|---| +| Total fuel stations (`amenity=fuel`) | 1,794 (1,582 nodes + 212 areas) | +| With a `brand` tag | 659 (36%) · with a `name` | 1,652 (92%) | +| **Shell** | **232** (209 `brand=Shell` + 23 by name) | +| Other top brands | Total 154 · Rubis 147 · TotalEnergies 50 · Kobil 10 | + +## 3. Add it to FleetNow as a layer + +Copy the GeoJSON into the FleetNow repo's `layers/` directory and register it — +full details in the **fleetnow** repo `README.md` → *"Map overlay layers"*: + +```bash +cp shell_stations.geojson ../fleetnow/layers/ +# then add one entry to the OVERLAYS array in fleetnow/index.html, commit + push. +``` + +FleetNow keeps its own served copy under `fleetnow/layers/`; the artifact here +(`shell_stations.geojson` / `.csv`) is the export of record. Re-running step 2 on a +newer extract and re-copying refreshes the layer. diff --git a/docs/reports/260608_fleet_registry_data_quality.md b/docs/reports/260608_fleet_registry_data_quality.md index c75904e..c4482a0 100644 --- a/docs/reports/260608_fleet_registry_data_quality.md +++ b/docs/reports/260608_fleet_registry_data_quality.md @@ -1,117 +1,75 @@ -# Fleet Registry — Data Quality Report +# Fleet Registry — Outstanding Data-Quality Issues -**Date:** 2026-06-08 -**Source:** `tracksolid.devices` (the single registry of record) -**Prepared for:** Fireside leadership / fleet operations -**Scope:** 181 tracking devices → **80 physical vehicles** after de-duplicating the GPS-tracker + dashcam pairs that share a number plate. +**Date:** 2026-06-08 · **Source:** `tracksolid.devices` (verified live) · **Scope:** 181 devices → 80 vehicles + +**Urgency:** 🔴 **RED** = fix now (blocks ops / safety / visibility) · 🟠 **AMBER** = fix soon (accountability, classification, data trust) · 🟡 **YELLOW** = cleanup. + +> ## ⭐ Biggest single fix: run the driver/plate CSV import +> Most items below are **missing source fields**. The prepared **`import_drivers_csv.py --apply`** has **not been run** (`vehicle_category` still 0/181, device count still 181). Running it — or entering the fields at source in the Tracksolid Pro portal — clears the bulk of this list at once. --- -## 1. Executive summary +## 🔴 RED — fix now -The fleet registry is **operationally usable but materially incomplete**, and the gaps concentrate in exactly the fields the business needs to run field-service KPIs: driver identity, driver contact, vehicle type, and device pairing. +**R1. No driver phone — 175 / 181 (97%).** Dispatch/escalation can't contact a driver; only 6 are reachable. → Capture mobiles. **Owner:** Operations + Engineering (import). -| Theme | Headline | Business impact | -|---|---|---| -| **Driver contact** | **97%** of records have **no driver phone** (175 / 181) | Dispatch and escalation can't reach the driver from our own systems | -| **Driver identity** | **23%** have **no driver name** (41 / 181) | Trips, speeding and idle time can't be attributed to a person — no accountability | -| **Vehicle type** | **22%** have **no model** (40 / 181) | We can't cleanly separate ticket-closing service cars from cranes / bikes | -| **Device pairing** | **29%** of vehicles (23 / 80) are **missing a tracker or a camera** | Blind spots: 6 vehicles have **no GPS at all**; 16 have **no dashcam evidence** | -| **Unidentified hardware** | **41** device rows carry **no plate**; 19 of those are fully blank | Hardware we are paying to track but cannot tie to a vehicle, driver or city | +**R2. 6 vehicles have NO GPS tracker** (dashcam only → invisible on the live map, no trips/mileage): `KCN 496A · KCQ 215F · KCU 237Z · KDM 306S · KDN 759G · KCZ 199P`. → Field-check; install/repair or decommission. **Owner:** Field ops. -**Root cause is upstream, not in our database.** Almost every gap is a field that was never entered in the **Tracksolid Pro portal** at provisioning time — our pipeline faithfully stores whatever the portal holds. This is a **data-entry discipline** problem at vehicle onboarding, plus an **incomplete driver/plate import** that is still pending (the 144-device CSV). +**R3. 37 fully-unidentified devices being tracked** (no plate, model, or driver; "unknown" status). → Match serial/IMEI to a vehicle or decommission. **Owner:** Field ops + Engineering. --- -## 2. The fleet, de-duplicated +## 🟠 AMBER — fix soon -After collapsing tracker+camera pairs to one row per number plate: +**A1. No driver name — 41 / 181 (23%).** Trips/speeding/idle can't be attributed → no accountability. → Assign drivers at source. **Owner:** Operations. *(CSV covers most.)* -| Segment | Vehicles | Detail | -|---|---|---| -| **Field service** (closes customer tickets) | ~62 | Probox ×57, Van, Vezel, Mazda, + a few UG/other cars | -| **Specialist** (cranes, bikes, pick-ups — *not* immediate tickets) | ~17 | Crane ×3, Motorbike ×8, Pick-Up ×~6 | -| **Ambiguous** (type conflicts — see §3) | 2 | KCY 080X, KCZ 223P | -| **Total physical vehicles** | **80** | from 181 devices | -| **Unassigned spare devices** (no plate) | 41 rows | cannot be counted as vehicles | +**A2. 16 vehicles have a tracker but NO dashcam** — no incident/safety video (all 8 motorbikes, the Uganda units, several Proboxes). → Decide which need a camera; schedule installs. **Owner:** Field ops. ---- +**A3. No vehicle model — 40 / 181 (22%).** Forces guesswork on the field-service vs specialist split. → Set `vehicle_models` at source. **Owner:** Operations. *(CSV covers most.)* -## 3. Findings by severity +**A4. Duplicate plates corrupting the count:** +- `KDS 453Y` entered twice — `KDS 453Y` (tracker) + `KDS 453 Y` (camera, stray space). +- `KCC 199P` vs `KCZ 199P` — both pick-ups, both driver *Mbuvi Kioko*, one tracker + one camera → almost certainly **one vehicle under two plates**. +→ Correct the plate in the portal, then re-sync. **Owner:** Operations. -### 🔴 Critical — operational blind spots - -**C1. 6 vehicles have a dashcam but NO GPS tracker** — they are invisible on the live fleet map and contribute no trips/mileage. -`KCN 496A · KCQ 215F · KCU 237Z · KDM 306S · KDN 759G · KCZ 199P` - -**C2. 16 vehicles have a GPS tracker but NO dashcam** — no video evidence for incidents, disputes, or safety review. Concentrated in the **specialist fleet** (all 8 motorbikes, the Uganda vehicles) plus several Proboxes. - -**C3. 41 device rows (23%) carry no number plate** — they cannot be tied to a vehicle, driver, or city. **19 of these are entirely blank** (no plate, no model, no driver, status "unknown") — hardware we track but cannot identify at all. - -### 🟠 High — accountability & classification gaps - -**H1. 97% of records have no driver phone** (175 / 181). Only 6 drivers are contactable from our data. - -**H2. 23% have no driver name** (41 / 181). Behaviour analytics (speeding, idle, harsh events) cannot be attributed. - -**H3. 22% have no vehicle model** (40 / 181) — this is the field that drives the field-service vs specialist split. Until it's populated, ~22% of the fleet can only be classified by guessing from the device name. - -**H4. Plate data-entry inconsistencies** corrupting the vehicle count: -- **`KDS 453Y` is entered twice** — `KDS 453Y` (tracker) and `KDS 453 Y` (camera, stray space). One vehicle, counted as two. -- **`KCC 199P` vs `KCZ 199P`** — both pick-ups, both driver *Mbuvi Kioko*, one tracker + one camera. Almost certainly **one vehicle mis-keyed under two plates**. - -**H5. Two plates disagree with themselves** — the tracker and dashcam on the *same plate* report different vehicle types: +**A5. Two plates disagree with themselves (model conflict):** | Plate | Tracker says | Camera says | Driver | |---|---|---|---| | KCY 080X | Pick-Up | Probox | Lawrence Kijogi | | KCZ 223P | Pick-Up | Probox | Felix Muema | -### 🟡 Medium — analytics reliability +→ Confirm the real type; set both devices to match. **Owner:** Operations. -**M1. `assigned_city` is unreliable.** 4 vehicles have their two devices assigned to *different cities* (e.g. KDC 490Q: Mombasa vs Nairobi; KCY 838X: Mombasa vs Voi). The field appears **derived from the Tracksolid account** the device sits in, not the vehicle's actual base — so **regional (Nairobi / Mombasa / Kampala) reporting is suspect**. - -**M2. Placeholder / non-person driver names** pollute driver-level analytics: `Garage` (×4), `UG` (×2), `Management_Mazda` (×2), `Parked` (×1). These are slots, not people. - -**M3. One driver, multiple plates** — 5 cases (`Garage`, `Gideon Kiprono`, `Kelvin Wambugu`, `Mbuvi Kioko`, `UG`). Some are the duplicate-plate issues above; the rest need confirmation of whether a driver genuinely rotates vehicles. - -### ⚪ Low — asset-register completeness (low operational impact today) - -**L1. `vehicle_brand` is 99% empty** (179 / 181) and **`vin` is 100% empty** (181 / 181). Not currently used in any KPI, but would be needed for a formal asset/insurance register. +**A6. `assigned_city` unreliable → regional reporting suspect.** 4 vehicles show two cities (e.g. KDC 490Q: Mombasa/Nairobi; KCY 838X: Mombasa/Voi) — it's inherited from the account, not the vehicle. → Set per vehicle. **Owner:** Operations + Engineering. --- -## 4. Completeness scorecard (device-level, 181 rows) +## 🟡 YELLOW — cleanup -| Field | Populated | Missing | % missing | -|---|---|---|---| -| Number plate | 140 | 41 | 23% | -| Vehicle model | 141 | 40 | 22% | -| Driver name | 140 | 41 | 23% | -| Driver phone | 6 | 175 | **97%** | -| SIM | 155 | 26 | 14% | -| Assigned city | 152 | 29 | 16% | -| Vehicle brand | 2 | 179 | **99%** | -| VIN | 0 | 181 | **100%** | +**Y1. Placeholder driver names** — `Garage` (×4), `UG` (×2), `Management_Mazda` (×2), `Parked` (×1). → Replace with real names or a clear "unassigned" convention. **Owner:** Operations. + +**Y2. Missing SIM (26) and cost-centre (31).** → Backfill from records/CSV. **Owner:** Operations + Engineering. + +**Y3. `vehicle_category` empty (0 / 181).** Low urgency — the map/KPIs derive the segment from `vehicle_models` automatically. → Optional; CSV fills it. **Owner:** Engineering. --- -## 5. Recommended actions +## Action plan -| # | Action | Owner | Effort | Fixes | -|---|---|---|---|---| -| 1 | **Run the pending driver/plate CSV import** (144 devices with names + plates already prepared) | Engineering | Low — one command | H1, H2, H3 (large chunk) | -| 2 | **Mandate model + driver + phone at vehicle onboarding** in the Tracksolid Pro portal; make them required fields in the process | Operations | Process change | Root cause of most gaps | -| 3 | **Resolve the 4 specific record issues** in §3 (KDS 453Y dup, KCC/KCZ 199P, KCY 080X, KCZ 223P) | Operations to confirm, Engineering to correct | Low | H4, H5 | -| 4 | **Audit the 22 vehicles missing a tracker or camera** (§3 C1/C2) — install missing hardware or confirm intentional | Field ops | Medium | C1, C2 | -| 5 | **Identify the 19 fully-blank devices** — match serial → vehicle, or decommission | Field ops | Medium | C3 | -| 6 | **Stop trusting `assigned_city` for regional reporting** until it's set per-vehicle rather than inherited from the account | Engineering + Ops | Medium | M1 | -| 7 | Replace placeholder driver names with real assignments or a clear "unassigned" convention | Operations | Low | M2, M3 | +| # | Tier | Issue | Action | Owner | Cleared by CSV import? | +|---|---|---|---|---|---| +| R1 | 🔴 | No driver phone (97%) | Capture mobiles | Ops + Eng | ✅ mostly | +| R2 | 🔴 | 6 vehicles, no GPS tracker | Field-check / install | Field ops | — | +| R3 | 🔴 | 37 unidentified devices | Identify or decommission | Field ops + Eng | ✅ partly | +| A1 | 🟠 | No driver name (23%) | Assign drivers | Ops | ✅ mostly | +| A2 | 🟠 | 16 vehicles, no dashcam | Schedule installs | Field ops | — | +| A3 | 🟠 | No vehicle model (22%) | Set model at source | Ops | ✅ mostly | +| A4 | 🟠 | Duplicate plates (KDS 453Y; KCC/KCZ 199P) | Fix plate, re-sync | Ops | — | +| A5 | 🟠 | Model conflicts (KCY 080X, KCZ 223P) | Confirm type | Ops | partial | +| A6 | 🟠 | Unreliable assigned_city | Set per vehicle | Ops + Eng | ✅ yes | +| Y1 | 🟡 | Placeholder driver names | Replace | Ops | partial | +| Y2 | 🟡 | Missing SIM (26) / cost-centre (31) | Backfill | Ops + Eng | ✅ mostly | +| Y3 | 🟡 | vehicle_category empty | Optional populate | Eng | ✅ yes | -**Quick wins:** Actions 1 and 3 are low-effort and would clear the majority of the High-severity gaps immediately. - ---- - -## 6. Method & reproducibility - -All figures derived from a single read-only scan of `tracksolid.devices`. De-duplication keys on a normalised plate (`UPPER(REPLACE(vehicle_number,' ',''))`) so spacing variants collapse. Tracker = device types `GT06E / X3 / AT4`; camera = `JC400P`. The scan script and the proposed `tracksolid.v_vehicles` de-duplicated view are tracked in the repository; re-running the scan after each remediation step will show progress against this baseline. +**Suggested order:** (1) run/validate the **CSV import** — clears R1, R3(part), A1, A3, A6, Y2, Y3; (2) field-ops sweep for **R2 + A2** (tracker/camera hardware); (3) Operations fixes **A4/A5 plates + Y1** in the portal; (4) re-run the scan to confirm. diff --git a/docs/reports/260608_fleet_registry_data_quality.pdf b/docs/reports/260608_fleet_registry_data_quality.pdf index 2eba271..a892277 100644 --- a/docs/reports/260608_fleet_registry_data_quality.pdf +++ b/docs/reports/260608_fleet_registry_data_quality.pdf @@ -4,8 +4,8 @@ 1 0 obj << /Type /Pages - /Count 6 - /Kids [389 0 R 391 0 R 393 0 R 395 0 R 397 0 R 399 0 R] + /Count 3 + /Kids [270 0 R 272 0 R 274 0 R] >> endobj @@ -22,10 +22,10 @@ endobj << /Parent 2 0 R /First 4 0 R - /Last 13 0 R - /Count -6 - /Title - /Dest 384 0 R + /Last 8 0 R + /Count -5 + /Title + /Dest 264 0 R >> endobj @@ -33,8 +33,8 @@ endobj << /Parent 3 0 R /Next 5 0 R - /Title (1. Executive summary) - /Dest 374 0 R + /Title + /Dest 259 0 R >> endobj @@ -43,98 +43,47 @@ endobj /Parent 3 0 R /Next 6 0 R /Prev 4 0 R - /Title (2. The fleet, de-duplicated) - /Dest 375 0 R + /Title + /Dest 260 0 R >> endobj 6 0 obj << /Parent 3 0 R - /Next 11 0 R + /Next 7 0 R /Prev 5 0 R - /First 7 0 R - /Last 10 0 R - /Count -4 - /Title (3. Findings by severity) - /Dest 380 0 R + /Title + /Dest 261 0 R >> endobj 7 0 obj << - /Parent 6 0 R + /Parent 3 0 R /Next 8 0 R - /Title - /Dest 376 0 R + /Prev 6 0 R + /Title + /Dest 262 0 R >> endobj 8 0 obj << - /Parent 6 0 R - /Next 9 0 R + /Parent 3 0 R /Prev 7 0 R - /Title - /Dest 377 0 R + /Title (Action plan) + /Dest 263 0 R >> endobj 9 0 obj << - /Parent 6 0 R - /Next 10 0 R - /Prev 8 0 R - /Title - /Dest 378 0 R + /Nums [0 214 0 R 1 215 0 R 2 216 0 R] >> endobj 10 0 obj -<< - /Parent 6 0 R - /Prev 9 0 R - /Title - /Dest 379 0 R ->> -endobj - -11 0 obj -<< - /Parent 3 0 R - /Next 12 0 R - /Prev 6 0 R - /Title (4. Completeness scorecard (device-level, 181 rows)) - /Dest 381 0 R ->> -endobj - -12 0 obj -<< - /Parent 3 0 R - /Next 13 0 R - /Prev 11 0 R - /Title (5. Recommended actions) - /Dest 382 0 R ->> -endobj - -13 0 obj -<< - /Parent 3 0 R - /Prev 12 0 R - /Title (6. Method & reproducibility) - /Dest 383 0 R ->> -endobj - -14 0 obj -<< - /Nums [0 327 0 R 1 328 0 R 2 329 0 R 3 330 0 R 4 331 0 R 5 332 0 R] ->> -endobj - -15 0 obj << /Type /StructTreeRoot /RoleMap << @@ -144,192 +93,298 @@ endobj /Strong /Span /Em /Span >> - /K [22 0 R] + /K [14 0 R] /ParentTree << - /Nums [0 16 0 R 1 17 0 R 2 18 0 R 3 19 0 R 4 20 0 R 5 21 0 R] + /Nums [0 11 0 R 1 12 0 R 2 13 0 R] >> /IDTree << - /Names [(U1x0y0) 315 0 R (U1x1y0) 314 0 R (U1x2y0) 313 0 R (U2x0y0) 264 0 R (U2x1y0) 263 0 R (U2x2y0) 262 0 R (U3x0y0) 194 0 R (U3x1y0) 193 0 R (U3x2y0) 192 0 R (U3x3y0) 191 0 R (U4x0y0) 144 0 R (U4x1y0) 143 0 R (U4x2y0) 142 0 R (U4x3y0) 141 0 R (U5x0y0) 92 0 R (U5x1y0) 91 0 R (U5x2y0) 90 0 R (U5x3y0) 89 0 R (U5x4y0) 88 0 R] + /Names [(U1x0y0) 158 0 R (U1x1y0) 157 0 R (U1x2y0) 156 0 R (U1x3y0) 155 0 R (U2x0y0) 113 0 R (U2x1y0) 112 0 R (U2x2y0) 111 0 R (U2x3y0) 110 0 R (U2x4y0) 109 0 R (U2x5y0) 108 0 R] >> - /ParentTreeNextKey 6 + /ParentTreeNextKey 3 +>> +endobj + +11 0 obj +[213 0 R 212 0 R 208 0 R 211 0 R 208 0 R 210 0 R 208 0 R 209 0 R 208 0 R 207 0 R 203 0 R 203 0 R 203 0 R 206 0 R 203 0 R 203 0 R 203 0 R 205 0 R 203 0 R 203 0 R 203 0 R 203 0 R 204 0 R 203 0 R 202 0 R 202 0 R 196 0 R 201 0 R 196 0 R 200 0 R 200 0 R 196 0 R 198 0 R 196 0 R 197 0 R 196 0 R 196 0 R 196 0 R 194 0 R 194 0 R 193 0 R 191 0 R 191 0 R 192 0 R 191 0 R 190 0 R 187 0 R 187 0 R 189 0 R 187 0 R 187 0 R 188 0 R 187 0 R 186 0 R 184 0 R 184 0 R 185 0 R 184 0 R 183 0 R 183 0 R 182 0 R 179 0 R 179 0 R 179 0 R 181 0 R 179 0 R 180 0 R 178 0 R 176 0 R 176 0 R 177 0 R 176 0 R 176 0 R 175 0 R 171 0 R 171 0 R 174 0 R 171 0 R 173 0 R 171 0 R 172 0 R 170 0 R 161 0 R 169 0 R 161 0 R 168 0 R 161 0 R 167 0 R 161 0 R 166 0 R 161 0 R 165 0 R 161 0 R 164 0 R 164 0 R 161 0 R 163 0 R 161 0 R 161 0 R 162 0 R 161 0 R 160 0 R 158 0 R 157 0 R 156 0 R 155 0 R 152 0 R 151 0 R 150 0 R 149 0 R 147 0 R 146 0 R 145 0 R 144 0 R 139 0 R 140 0 R 139 0 R] +endobj + +12 0 obj +[138 0 R 137 0 R 135 0 R 133 0 R 133 0 R 133 0 R 134 0 R 133 0 R 132 0 R 132 0 R 131 0 R 125 0 R 130 0 R 125 0 R 129 0 R 125 0 R 128 0 R 125 0 R 127 0 R 125 0 R 125 0 R 126 0 R 125 0 R 124 0 R 122 0 R 123 0 R 122 0 R 122 0 R 121 0 R 120 0 R 118 0 R 115 0 R 117 0 R 115 0 R 116 0 R 115 0 R] +endobj + +13 0 obj +[114 0 R 113 0 R 112 0 R 111 0 R 110 0 R 109 0 R 108 0 R 108 0 R 105 0 R 104 0 R 103 0 R 103 0 R 102 0 R 102 0 R 102 0 R 101 0 R 100 0 R 100 0 R 98 0 R 97 0 R 96 0 R 96 0 R 95 0 R 95 0 R 94 0 R 93 0 R 91 0 R 90 0 R 89 0 R 89 0 R 89 0 R 88 0 R 88 0 R 88 0 R 88 0 R 87 0 R 87 0 R 86 0 R 86 0 R 84 0 R 83 0 R 82 0 R 82 0 R 81 0 R 81 0 R 81 0 R 80 0 R 79 0 R 79 0 R 77 0 R 76 0 R 75 0 R 75 0 R 74 0 R 74 0 R 74 0 R 73 0 R 72 0 R 70 0 R 69 0 R 68 0 R 68 0 R 67 0 R 67 0 R 66 0 R 65 0 R 65 0 R 63 0 R 62 0 R 61 0 R 61 0 R 61 0 R 61 0 R 60 0 R 60 0 R 59 0 R 58 0 R 56 0 R 55 0 R 54 0 R 54 0 R 54 0 R 54 0 R 54 0 R 53 0 R 52 0 R 51 0 R 49 0 R 48 0 R 47 0 R 46 0 R 46 0 R 46 0 R 45 0 R 44 0 R 44 0 R 42 0 R 41 0 R 40 0 R 40 0 R 39 0 R 38 0 R 37 0 R 35 0 R 34 0 R 33 0 R 33 0 R 33 0 R 32 0 R 31 0 R 30 0 R 30 0 R 28 0 R 27 0 R 26 0 R 26 0 R 25 0 R 25 0 R 24 0 R 23 0 R 23 0 R 19 0 R 15 0 R 18 0 R 15 0 R 15 0 R 17 0 R 15 0 R 16 0 R 15 0 R 15 0 R] +endobj + +14 0 obj +<< + /Type /StructElem + /S /Document + /P 10 0 R + /K [213 0 R 208 0 R 203 0 R 195 0 R 194 0 R 191 0 R 187 0 R 184 0 R 183 0 R 179 0 R 176 0 R 171 0 R 161 0 R 159 0 R 141 0 R 139 0 R 133 0 R 132 0 R 125 0 R 122 0 R 115 0 R 114 0 R 20 0 R 15 0 R] +>> +endobj + +15 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [19 0 R 122 18 0 R 124 125 17 0 R 127 16 0 R 129 130] + /Pg 274 0 R >> endobj 16 0 obj -[326 0 R 325 0 R 319 0 R 324 0 R 319 0 R 323 0 R 319 0 R 322 0 R 319 0 R 319 0 R 321 0 R 319 0 R 320 0 R 319 0 R 319 0 R 318 0 R 316 0 R 317 0 R 316 0 R 316 0 R 316 0 R 315 0 R 314 0 R 313 0 R 310 0 R 308 0 R 306 0 R 307 0 R 307 0 R 306 0 R 305 0 R 305 0 R 305 0 R 303 0 R 301 0 R 299 0 R 300 0 R 299 0 R 299 0 R 298 0 R 298 0 R 298 0 R 296 0 R 294 0 R 292 0 R 293 0 R 292 0 R 291 0 R 291 0 R 291 0 R 289 0 R 287 0 R 285 0 R 286 0 R 286 0 R 286 0 R 282 0 R 284 0 R 284 0 R 282 0 R 283 0 R 283 0 R 283 0 R 280 0 R 278 0 R 276 0 R 277 0 R 276 0 R 276 0 R 275 0 R 275 0 R 275 0 R 271 0 R 267 0 R 267 0 R 270 0 R 267 0 R 267 0 R 269 0 R 267 0 R 268 0 R 268 0 R 267 0 R 266 0 R 265 0 R 264 0 R 263 0 R 262 0 R 259 0 R 258 0 R 258 0 R 257 0 R 256 0 R 256 0 R 254 0 R 252 0 R 252 0 R 253 0 R 252 0 R 251 0 R 250 0 R 250 0 R 248 0 R 247 0 R 247 0 R 246 0 R 245 0 R 243 0 R 241 0 R 239 0 R 237 0 R 236 0 R 236 0 R 235 0 R 234 0 R] +<< + /Type /StructElem + /S /Strong + /P 15 0 R + /K [128] + /Pg 274 0 R +>> endobj 17 0 obj -[229 0 R 228 0 R 228 0 R 227 0 R 225 0 R 225 0 R 226 0 R 224 0 R 222 0 R 222 0 R 223 0 R 222 0 R 222 0 R 221 0 R 219 0 R 220 0 R 219 0 R 219 0 R 218 0 R 218 0 R 217 0 R 216 0 R 215 0 R 214 0 R 214 0 R 213 0 R 212 0 R 212 0 R 211 0 R 198 0 R 210 0 R 208 0 R 198 0 R 207 0 R 198 0 R 206 0 R 198 0 R 205 0 R 203 0 R 202 0 R 198 0 R 200 0 R 198 0 R 199 0 R 199 0 R 198 0 R 197 0 R 195 0 R 196 0 R 195 0 R 195 0 R 194 0 R 193 0 R 192 0 R 191 0 R 188 0 R 187 0 R 186 0 R 185 0 R 183 0 R 182 0 R 181 0 R 180 0 R 176 0 R 176 0 R 175 0 R 174 0 R 172 0 R 168 0 R 171 0 R 168 0 R 168 0 R 170 0 R 170 0 R 170 0 R 168 0 R 169 0 R 169 0 R 168 0 R 167 0 R 162 0 R 166 0 R 162 0 R 165 0 R 162 0 R 164 0 R 162 0 R 163 0 R 162 0 R 161 0 R 155 0 R 160 0 R 155 0 R 159 0 R 155 0 R 158 0 R 155 0 R 157 0 R 155 0 R 156 0 R 155 0 R 155 0 R 154 0 R 154 0 R 153 0 R 152 0 R 150 0 R 146 0 R 149 0 R 147 0 R 146 0 R 146 0 R] +<< + /Type /StructElem + /S /Strong + /P 15 0 R + /K [126] + /Pg 274 0 R +>> endobj 18 0 obj -[145 0 R 144 0 R 143 0 R 142 0 R 141 0 R 138 0 R 137 0 R 136 0 R 135 0 R 133 0 R 132 0 R 131 0 R 130 0 R 128 0 R 127 0 R 126 0 R 125 0 R 123 0 R 122 0 R 121 0 R 120 0 R 117 0 R 116 0 R 115 0 R 114 0 R 112 0 R 111 0 R 110 0 R 109 0 R 107 0 R 106 0 R 105 0 R 104 0 R 101 0 R 100 0 R 99 0 R 98 0 R] +<< + /Type /StructElem + /S /Strong + /P 15 0 R + /K [123] + /Pg 274 0 R +>> endobj 19 0 obj -[93 0 R] +<< + /Type /StructElem + /S /Strong + /P 15 0 R + /K [121] + /Pg 274 0 R +>> endobj 20 0 obj -[92 0 R 91 0 R 90 0 R 89 0 R 88 0 R 85 0 R 84 0 R 84 0 R 84 0 R 84 0 R 83 0 R 83 0 R 83 0 R 83 0 R 82 0 R 81 0 R 81 0 R 81 0 R 80 0 R 80 0 R 78 0 R 77 0 R 77 0 R 77 0 R 77 0 R 77 0 R 77 0 R 77 0 R 76 0 R 76 0 R 76 0 R 76 0 R 76 0 R 76 0 R 76 0 R 75 0 R 74 0 R 73 0 R 73 0 R 71 0 R 70 0 R 70 0 R 70 0 R 69 0 R 69 0 R 69 0 R 69 0 R 68 0 R 68 0 R 68 0 R 68 0 R 68 0 R 68 0 R 67 0 R 66 0 R 64 0 R 63 0 R 63 0 R 63 0 R 63 0 R 63 0 R 63 0 R 62 0 R 62 0 R 62 0 R 62 0 R 62 0 R 61 0 R 60 0 R 59 0 R 57 0 R 56 0 R 56 0 R 56 0 R 56 0 R 55 0 R 55 0 R 55 0 R 54 0 R 53 0 R 52 0 R 50 0 R 49 0 R 48 0 R 46 0 R 46 0 R 46 0 R 46 0 R 45 0 R 45 0 R 45 0 R 45 0 R 45 0 R 45 0 R 44 0 R 44 0 R 43 0 R 42 0 R 40 0 R 39 0 R 39 0 R 39 0 R 39 0 R 39 0 R 39 0 R 39 0 R 39 0 R 39 0 R 39 0 R 38 0 R 37 0 R 36 0 R] +<< + /Type /StructElem + /S /Table + /P 14 0 R + /K [106 0 R 21 0 R] +>> endobj 21 0 obj -[31 0 R 30 0 R 30 0 R 29 0 R 23 0 R 28 0 R 23 0 R 23 0 R 27 0 R 23 0 R 23 0 R 26 0 R 23 0 R 25 0 R 23 0 R 24 0 R 23 0 R 23 0 R] +<< + /Type /StructElem + /S /TBody + /P 20 0 R + /K [99 0 R 92 0 R 85 0 R 78 0 R 71 0 R 64 0 R 57 0 R 50 0 R 43 0 R 36 0 R 29 0 R 22 0 R] +>> endobj 22 0 obj << /Type /StructElem - /S /Document - /P 15 0 R - /K [326 0 R 319 0 R 318 0 R 316 0 R 272 0 R 267 0 R 266 0 R 265 0 R 230 0 R 229 0 R 228 0 R 225 0 R 222 0 R 219 0 R 218 0 R 216 0 R 214 0 R 212 0 R 198 0 R 195 0 R 177 0 R 176 0 R 168 0 R 162 0 R 155 0 R 154 0 R 146 0 R 145 0 R 94 0 R 93 0 R 32 0 R 30 0 R 29 0 R 23 0 R] + /S /TR + /P 21 0 R + /K [28 0 R 27 0 R 26 0 R 25 0 R 24 0 R 23 0 R] >> endobj 23 0 obj << /Type /StructElem - /S /P + /S /TD /P 22 0 R - /K [4 28 0 R 6 7 27 0 R 9 10 26 0 R 12 25 0 R 14 24 0 R 16 17] - /Pg 399 0 R + /A [<< + /O /Table + /Headers [(U2x5y0)] + >>] + /K [119 120] + /Pg 274 0 R >> endobj 24 0 obj << /Type /StructElem - /S /Code - /P 23 0 R - /K [15] - /Pg 399 0 R + /S /TD + /P 22 0 R + /A [<< + /O /Table + /Headers [(U2x4y0)] + >>] + /K [118] + /Pg 274 0 R >> endobj 25 0 obj << /Type /StructElem - /S /Code - /P 23 0 R - /K [13] - /Pg 399 0 R + /S /TD + /P 22 0 R + /A [<< + /O /Table + /Headers [(U2x3y0)] + >>] + /K [116 117] + /Pg 274 0 R >> endobj 26 0 obj << /Type /StructElem - /S /Code - /P 23 0 R - /K [11] - /Pg 399 0 R + /S /TD + /P 22 0 R + /A [<< + /O /Table + /Headers [(U2x2y0)] + >>] + /K [114 115] + /Pg 274 0 R >> endobj 27 0 obj << /Type /StructElem - /S /Code - /P 23 0 R - /K [8] - /Pg 399 0 R + /S /TD + /P 22 0 R + /A [<< + /O /Table + /Headers [(U2x1y0)] + >>] + /K [113] + /Pg 274 0 R >> endobj 28 0 obj << /Type /StructElem - /S /Code - /P 23 0 R - /K [5] - /Pg 399 0 R + /S /TD + /P 22 0 R + /A [<< + /O /Table + /Headers [(U2x0y0)] + >>] + /K [112] + /Pg 274 0 R >> endobj 29 0 obj << /Type /StructElem - /S /H2 - /P 22 0 R - /T (6. Method & reproducibility) - /K [3] - /Pg 399 0 R + /S /TR + /P 21 0 R + /K [35 0 R 34 0 R 33 0 R 32 0 R 31 0 R 30 0 R] >> endobj 30 0 obj << /Type /StructElem - /S /P - /P 22 0 R - /K [31 0 R 1 2] - /Pg 399 0 R + /S /TD + /P 29 0 R + /A [<< + /O /Table + /Headers [(U2x5y0)] + >>] + /K [110 111] + /Pg 274 0 R >> endobj 31 0 obj << /Type /StructElem - /S /Strong - /P 30 0 R - /K [0] - /Pg 399 0 R + /S /TD + /P 29 0 R + /A [<< + /O /Table + /Headers [(U2x4y0)] + >>] + /K [109] + /Pg 274 0 R >> endobj 32 0 obj << /Type /StructElem - /S /Div - /P 22 0 R + /S /TD + /P 29 0 R /A [<< - /O /Layout - /Placement /Block + /O /Table + /Headers [(U2x3y0)] >>] - /K [33 0 R] + /K [108] + /Pg 274 0 R >> endobj 33 0 obj << /Type /StructElem - /S /Table - /P 32 0 R - /K [86 0 R 34 0 R] + /S /TD + /P 29 0 R + /A [<< + /O /Table + /Headers [(U2x2y0)] + >>] + /K [105 106 107] + /Pg 274 0 R >> endobj 34 0 obj << /Type /StructElem - /S /TBody - /P 33 0 R - /K [79 0 R 72 0 R 65 0 R 58 0 R 51 0 R 41 0 R 35 0 R] + /S /TD + /P 29 0 R + /A [<< + /O /Table + /Headers [(U2x1y0)] + >>] + /K [104] + /Pg 274 0 R >> endobj 35 0 obj << /Type /StructElem - /S /TR - /P 34 0 R - /K [40 0 R 39 0 R 38 0 R 37 0 R 36 0 R] + /S /TD + /P 29 0 R + /A [<< + /O /Table + /Headers [(U2x0y0)] + >>] + /K [103] + /Pg 274 0 R >> endobj 36 0 obj << /Type /StructElem - /S /TD - /P 35 0 R - /A [<< - /O /Table - /Headers [(U5x4y0)] - >>] - /K [111] - /Pg 397 0 R + /S /TR + /P 21 0 R + /K [42 0 R 41 0 R 40 0 R 39 0 R 38 0 R 37 0 R] >> endobj @@ -337,13 +392,13 @@ endobj << /Type /StructElem /S /TD - /P 35 0 R + /P 36 0 R /A [<< /O /Table - /Headers [(U5x3y0)] + /Headers [(U2x5y0)] >>] - /K [110] - /Pg 397 0 R + /K [102] + /Pg 274 0 R >> endobj @@ -351,13 +406,13 @@ endobj << /Type /StructElem /S /TD - /P 35 0 R + /P 36 0 R /A [<< /O /Table - /Headers [(U5x2y0)] + /Headers [(U2x4y0)] >>] - /K [109] - /Pg 397 0 R + /K [101] + /Pg 274 0 R >> endobj @@ -365,13 +420,13 @@ endobj << /Type /StructElem /S /TD - /P 35 0 R + /P 36 0 R /A [<< /O /Table - /Headers [(U5x1y0)] + /Headers [(U2x3y0)] >>] - /K [99 100 101 102 103 104 105 106 107 108] - /Pg 397 0 R + /K [100] + /Pg 274 0 R >> endobj @@ -379,22 +434,27 @@ endobj << /Type /StructElem /S /TD - /P 35 0 R + /P 36 0 R /A [<< /O /Table - /Headers [(U5x0y0)] + /Headers [(U2x2y0)] >>] - /K [98] - /Pg 397 0 R + /K [98 99] + /Pg 274 0 R >> endobj 41 0 obj << /Type /StructElem - /S /TR - /P 34 0 R - /K [50 0 R 45 0 R 44 0 R 43 0 R 42 0 R] + /S /TD + /P 36 0 R + /A [<< + /O /Table + /Headers [(U2x1y0)] + >>] + /K [97] + /Pg 274 0 R >> endobj @@ -402,27 +462,22 @@ endobj << /Type /StructElem /S /TD - /P 41 0 R + /P 36 0 R /A [<< /O /Table - /Headers [(U5x4y0)] + /Headers [(U2x0y0)] >>] - /K [97] - /Pg 397 0 R + /K [96] + /Pg 274 0 R >> endobj 43 0 obj << /Type /StructElem - /S /TD - /P 41 0 R - /A [<< - /O /Table - /Headers [(U5x3y0)] - >>] - /K [96] - /Pg 397 0 R + /S /TR + /P 21 0 R + /K [49 0 R 48 0 R 47 0 R 46 0 R 45 0 R 44 0 R] >> endobj @@ -430,13 +485,13 @@ endobj << /Type /StructElem /S /TD - /P 41 0 R + /P 43 0 R /A [<< /O /Table - /Headers [(U5x2y0)] + /Headers [(U2x5y0)] >>] /K [94 95] - /Pg 397 0 R + /Pg 274 0 R >> endobj @@ -444,75 +499,92 @@ endobj << /Type /StructElem /S /TD - /P 41 0 R + /P 43 0 R /A [<< /O /Table - /Headers [(U5x1y0)] + /Headers [(U2x4y0)] >>] - /K [49 0 R 47 0 R 46 0 R 88 89 90 91 92 93] - /Pg 397 0 R + /K [93] + /Pg 274 0 R >> endobj 46 0 obj << /Type /StructElem - /S /Strong - /P 45 0 R - /K [84 85 86 87] - /Pg 397 0 R + /S /TD + /P 43 0 R + /A [<< + /O /Table + /Headers [(U2x3y0)] + >>] + /K [90 91 92] + /Pg 274 0 R >> endobj 47 0 obj << /Type /StructElem - /S /Code - /P 45 0 R - /K [48 0 R] + /S /TD + /P 43 0 R + /A [<< + /O /Table + /Headers [(U2x2y0)] + >>] + /K [89] + /Pg 274 0 R >> endobj 48 0 obj << /Type /StructElem - /S /Strong - /P 47 0 R - /K [83] - /Pg 397 0 R + /S /TD + /P 43 0 R + /A [<< + /O /Table + /Headers [(U2x1y0)] + >>] + /K [88] + /Pg 274 0 R >> endobj 49 0 obj << /Type /StructElem - /S /Strong - /P 45 0 R - /K [82] - /Pg 397 0 R + /S /TD + /P 43 0 R + /A [<< + /O /Table + /Headers [(U2x0y0)] + >>] + /K [87] + /Pg 274 0 R >> endobj 50 0 obj << /Type /StructElem - /S /TD - /P 41 0 R - /A [<< - /O /Table - /Headers [(U5x0y0)] - >>] - /K [81] - /Pg 397 0 R + /S /TR + /P 21 0 R + /K [56 0 R 55 0 R 54 0 R 53 0 R 52 0 R 51 0 R] >> endobj 51 0 obj << /Type /StructElem - /S /TR - /P 34 0 R - /K [57 0 R 55 0 R 54 0 R 53 0 R 52 0 R] + /S /TD + /P 50 0 R + /A [<< + /O /Table + /Headers [(U2x5y0)] + >>] + /K [86] + /Pg 274 0 R >> endobj @@ -520,13 +592,13 @@ endobj << /Type /StructElem /S /TD - /P 51 0 R + /P 50 0 R /A [<< /O /Table - /Headers [(U5x4y0)] + /Headers [(U2x4y0)] >>] - /K [80] - /Pg 397 0 R + /K [85] + /Pg 274 0 R >> endobj @@ -534,13 +606,13 @@ endobj << /Type /StructElem /S /TD - /P 51 0 R + /P 50 0 R /A [<< /O /Table - /Headers [(U5x3y0)] + /Headers [(U2x3y0)] >>] - /K [79] - /Pg 397 0 R + /K [84] + /Pg 274 0 R >> endobj @@ -548,13 +620,13 @@ endobj << /Type /StructElem /S /TD - /P 51 0 R + /P 50 0 R /A [<< /O /Table - /Headers [(U5x2y0)] + /Headers [(U2x2y0)] >>] - /K [78] - /Pg 397 0 R + /K [79 80 81 82 83] + /Pg 274 0 R >> endobj @@ -562,46 +634,50 @@ endobj << /Type /StructElem /S /TD - /P 51 0 R + /P 50 0 R /A [<< /O /Table - /Headers [(U5x1y0)] + /Headers [(U2x1y0)] >>] - /K [56 0 R 75 76 77] - /Pg 397 0 R + /K [78] + /Pg 274 0 R >> endobj 56 0 obj << /Type /StructElem - /S /Strong - /P 55 0 R - /K [71 72 73 74] - /Pg 397 0 R + /S /TD + /P 50 0 R + /A [<< + /O /Table + /Headers [(U2x0y0)] + >>] + /K [77] + /Pg 274 0 R >> endobj 57 0 obj << /Type /StructElem - /S /TD - /P 51 0 R - /A [<< - /O /Table - /Headers [(U5x0y0)] - >>] - /K [70] - /Pg 397 0 R + /S /TR + /P 21 0 R + /K [63 0 R 62 0 R 61 0 R 60 0 R 59 0 R 58 0 R] >> endobj 58 0 obj << /Type /StructElem - /S /TR - /P 34 0 R - /K [64 0 R 62 0 R 61 0 R 60 0 R 59 0 R] + /S /TD + /P 57 0 R + /A [<< + /O /Table + /Headers [(U2x5y0)] + >>] + /K [76] + /Pg 274 0 R >> endobj @@ -609,13 +685,13 @@ endobj << /Type /StructElem /S /TD - /P 58 0 R + /P 57 0 R /A [<< /O /Table - /Headers [(U5x4y0)] + /Headers [(U2x4y0)] >>] - /K [69] - /Pg 397 0 R + /K [75] + /Pg 274 0 R >> endobj @@ -623,13 +699,13 @@ endobj << /Type /StructElem /S /TD - /P 58 0 R + /P 57 0 R /A [<< /O /Table - /Headers [(U5x3y0)] + /Headers [(U2x3y0)] >>] - /K [68] - /Pg 397 0 R + /K [73 74] + /Pg 274 0 R >> endobj @@ -637,13 +713,13 @@ endobj << /Type /StructElem /S /TD - /P 58 0 R + /P 57 0 R /A [<< /O /Table - /Headers [(U5x2y0)] + /Headers [(U2x2y0)] >>] - /K [67] - /Pg 397 0 R + /K [69 70 71 72] + /Pg 274 0 R >> endobj @@ -651,46 +727,50 @@ endobj << /Type /StructElem /S /TD - /P 58 0 R + /P 57 0 R /A [<< /O /Table - /Headers [(U5x1y0)] + /Headers [(U2x1y0)] >>] - /K [63 0 R 62 63 64 65 66] - /Pg 397 0 R + /K [68] + /Pg 274 0 R >> endobj 63 0 obj << /Type /StructElem - /S /Strong - /P 62 0 R - /K [56 57 58 59 60 61] - /Pg 397 0 R + /S /TD + /P 57 0 R + /A [<< + /O /Table + /Headers [(U2x0y0)] + >>] + /K [67] + /Pg 274 0 R >> endobj 64 0 obj << /Type /StructElem - /S /TD - /P 58 0 R - /A [<< - /O /Table - /Headers [(U5x0y0)] - >>] - /K [55] - /Pg 397 0 R + /S /TR + /P 21 0 R + /K [70 0 R 69 0 R 68 0 R 67 0 R 66 0 R 65 0 R] >> endobj 65 0 obj << /Type /StructElem - /S /TR - /P 34 0 R - /K [71 0 R 69 0 R 68 0 R 67 0 R 66 0 R] + /S /TD + /P 64 0 R + /A [<< + /O /Table + /Headers [(U2x5y0)] + >>] + /K [65 66] + /Pg 274 0 R >> endobj @@ -698,13 +778,13 @@ endobj << /Type /StructElem /S /TD - /P 65 0 R + /P 64 0 R /A [<< /O /Table - /Headers [(U5x4y0)] + /Headers [(U2x4y0)] >>] - /K [54] - /Pg 397 0 R + /K [64] + /Pg 274 0 R >> endobj @@ -712,13 +792,13 @@ endobj << /Type /StructElem /S /TD - /P 65 0 R + /P 64 0 R /A [<< /O /Table - /Headers [(U5x3y0)] + /Headers [(U2x3y0)] >>] - /K [53] - /Pg 397 0 R + /K [62 63] + /Pg 274 0 R >> endobj @@ -726,13 +806,13 @@ endobj << /Type /StructElem /S /TD - /P 65 0 R + /P 64 0 R /A [<< /O /Table - /Headers [(U5x2y0)] + /Headers [(U2x2y0)] >>] - /K [47 48 49 50 51 52] - /Pg 397 0 R + /K [60 61] + /Pg 274 0 R >> endobj @@ -740,46 +820,50 @@ endobj << /Type /StructElem /S /TD - /P 65 0 R + /P 64 0 R /A [<< /O /Table - /Headers [(U5x1y0)] + /Headers [(U2x1y0)] >>] - /K [70 0 R 43 44 45 46] - /Pg 397 0 R + /K [59] + /Pg 274 0 R >> endobj 70 0 obj << /Type /StructElem - /S /Strong - /P 69 0 R - /K [40 41 42] - /Pg 397 0 R + /S /TD + /P 64 0 R + /A [<< + /O /Table + /Headers [(U2x0y0)] + >>] + /K [58] + /Pg 274 0 R >> endobj 71 0 obj << /Type /StructElem - /S /TD - /P 65 0 R - /A [<< - /O /Table - /Headers [(U5x0y0)] - >>] - /K [39] - /Pg 397 0 R + /S /TR + /P 21 0 R + /K [77 0 R 76 0 R 75 0 R 74 0 R 73 0 R 72 0 R] >> endobj 72 0 obj << /Type /StructElem - /S /TR - /P 34 0 R - /K [78 0 R 76 0 R 75 0 R 74 0 R 73 0 R] + /S /TD + /P 71 0 R + /A [<< + /O /Table + /Headers [(U2x5y0)] + >>] + /K [57] + /Pg 274 0 R >> endobj @@ -787,13 +871,13 @@ endobj << /Type /StructElem /S /TD - /P 72 0 R + /P 71 0 R /A [<< /O /Table - /Headers [(U5x4y0)] + /Headers [(U2x4y0)] >>] - /K [37 38] - /Pg 397 0 R + /K [56] + /Pg 274 0 R >> endobj @@ -801,13 +885,13 @@ endobj << /Type /StructElem /S /TD - /P 72 0 R + /P 71 0 R /A [<< /O /Table - /Headers [(U5x3y0)] + /Headers [(U2x3y0)] >>] - /K [36] - /Pg 397 0 R + /K [53 54 55] + /Pg 274 0 R >> endobj @@ -815,13 +899,13 @@ endobj << /Type /StructElem /S /TD - /P 72 0 R + /P 71 0 R /A [<< /O /Table - /Headers [(U5x2y0)] + /Headers [(U2x2y0)] >>] - /K [35] - /Pg 397 0 R + /K [51 52] + /Pg 274 0 R >> endobj @@ -829,46 +913,50 @@ endobj << /Type /StructElem /S /TD - /P 72 0 R + /P 71 0 R /A [<< /O /Table - /Headers [(U5x1y0)] + /Headers [(U2x1y0)] >>] - /K [77 0 R 28 29 30 31 32 33 34] - /Pg 397 0 R + /K [50] + /Pg 274 0 R >> endobj 77 0 obj << /Type /StructElem - /S /Strong - /P 76 0 R - /K [21 22 23 24 25 26 27] - /Pg 397 0 R + /S /TD + /P 71 0 R + /A [<< + /O /Table + /Headers [(U2x0y0)] + >>] + /K [49] + /Pg 274 0 R >> endobj 78 0 obj << /Type /StructElem - /S /TD - /P 72 0 R - /A [<< - /O /Table - /Headers [(U5x0y0)] - >>] - /K [20] - /Pg 397 0 R + /S /TR + /P 21 0 R + /K [84 0 R 83 0 R 82 0 R 81 0 R 80 0 R 79 0 R] >> endobj 79 0 obj << /Type /StructElem - /S /TR - /P 34 0 R - /K [85 0 R 83 0 R 82 0 R 81 0 R 80 0 R] + /S /TD + /P 78 0 R + /A [<< + /O /Table + /Headers [(U2x5y0)] + >>] + /K [47 48] + /Pg 274 0 R >> endobj @@ -876,18 +964,13 @@ endobj << /Type /StructElem /S /TD - /P 79 0 R + /P 78 0 R /A [<< /O /Table - /Headers [(U5x4y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] + /Headers [(U2x4y0)] >>] - /K [18 19] - /Pg 397 0 R + /K [46] + /Pg 274 0 R >> endobj @@ -895,18 +978,13 @@ endobj << /Type /StructElem /S /TD - /P 79 0 R + /P 78 0 R /A [<< /O /Table - /Headers [(U5x3y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] + /Headers [(U2x3y0)] >>] - /K [15 16 17] - /Pg 397 0 R + /K [43 44 45] + /Pg 274 0 R >> endobj @@ -914,18 +992,13 @@ endobj << /Type /StructElem /S /TD - /P 79 0 R + /P 78 0 R /A [<< /O /Table - /Headers [(U5x2y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] + /Headers [(U2x2y0)] >>] - /K [14] - /Pg 397 0 R + /K [41 42] + /Pg 274 0 R >> endobj @@ -933,208 +1006,185 @@ endobj << /Type /StructElem /S /TD - /P 79 0 R + /P 78 0 R /A [<< /O /Table - /Headers [(U5x1y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] + /Headers [(U2x1y0)] >>] - /K [84 0 R 10 11 12 13] - /Pg 397 0 R + /K [40] + /Pg 274 0 R >> endobj 84 0 obj << /Type /StructElem - /S /Strong - /P 83 0 R - /K [6 7 8 9] - /Pg 397 0 R + /S /TD + /P 78 0 R + /A [<< + /O /Table + /Headers [(U2x0y0)] + >>] + /K [39] + /Pg 274 0 R >> endobj 85 0 obj << /Type /StructElem - /S /TD - /P 79 0 R - /A [<< - /O /Table - /Headers [(U5x0y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] - >>] - /K [5] - /Pg 397 0 R + /S /TR + /P 21 0 R + /K [91 0 R 90 0 R 89 0 R 88 0 R 87 0 R 86 0 R] >> endobj 86 0 obj << /Type /StructElem - /S /THead - /P 33 0 R - /K [87 0 R] + /S /TD + /P 85 0 R + /A [<< + /O /Table + /Headers [(U2x5y0)] + >>] + /K [37 38] + /Pg 274 0 R >> endobj 87 0 obj << /Type /StructElem - /S /TR - /P 86 0 R - /K [92 0 R 91 0 R 90 0 R 89 0 R 88 0 R] + /S /TD + /P 85 0 R + /A [<< + /O /Table + /Headers [(U2x4y0)] + >>] + /K [35 36] + /Pg 274 0 R >> endobj 88 0 obj << /Type /StructElem - /S /TH - /P 87 0 R - /ID (U5x4y0) + /S /TD + /P 85 0 R /A [<< /O /Table - /Scope /Column - /Headers [] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/None /Solid /None /None] - /BorderThickness [0 1 0 0] + /Headers [(U2x3y0)] >>] - /K [4] - /Pg 397 0 R + /K [31 32 33 34] + /Pg 274 0 R >> endobj 89 0 obj << /Type /StructElem - /S /TH - /P 87 0 R - /ID (U5x3y0) + /S /TD + /P 85 0 R /A [<< /O /Table - /Scope /Column - /Headers [] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/None /Solid /None /None] - /BorderThickness [0 1 0 0] + /Headers [(U2x2y0)] >>] - /K [3] - /Pg 397 0 R + /K [28 29 30] + /Pg 274 0 R >> endobj 90 0 obj << /Type /StructElem - /S /TH - /P 87 0 R - /ID (U5x2y0) + /S /TD + /P 85 0 R /A [<< /O /Table - /Scope /Column - /Headers [] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/None /Solid /None /None] - /BorderThickness [0 1 0 0] + /Headers [(U2x1y0)] >>] - /K [2] - /Pg 397 0 R + /K [27] + /Pg 274 0 R >> endobj 91 0 obj << /Type /StructElem - /S /TH - /P 87 0 R - /ID (U5x1y0) + /S /TD + /P 85 0 R /A [<< /O /Table - /Scope /Column - /Headers [] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/None /Solid /None /None] - /BorderThickness [0 1 0 0] + /Headers [(U2x0y0)] >>] - /K [1] - /Pg 397 0 R + /K [26] + /Pg 274 0 R >> endobj 92 0 obj << /Type /StructElem - /S /TH - /P 87 0 R - /ID (U5x0y0) - /A [<< - /O /Table - /Scope /Column - /Headers [] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/None /Solid /None /None] - /BorderThickness [0 1 0 0] - >>] - /K [0] - /Pg 397 0 R + /S /TR + /P 21 0 R + /K [98 0 R 97 0 R 96 0 R 95 0 R 94 0 R 93 0 R] >> endobj 93 0 obj << /Type /StructElem - /S /H2 - /P 22 0 R - /T (5. Recommended actions) - /K [0] - /Pg 395 0 R + /S /TD + /P 92 0 R + /A [<< + /O /Table + /Headers [(U2x5y0)] + >>] + /K [25] + /Pg 274 0 R >> endobj 94 0 obj << /Type /StructElem - /S /Table - /P 22 0 R - /K [139 0 R 95 0 R] + /S /TD + /P 92 0 R + /A [<< + /O /Table + /Headers [(U2x4y0)] + >>] + /K [24] + /Pg 274 0 R >> endobj 95 0 obj << /Type /StructElem - /S /TBody - /P 94 0 R - /K [134 0 R 129 0 R 124 0 R 118 0 R 113 0 R 108 0 R 102 0 R 96 0 R] + /S /TD + /P 92 0 R + /A [<< + /O /Table + /Headers [(U2x3y0)] + >>] + /K [22 23] + /Pg 274 0 R >> endobj 96 0 obj << /Type /StructElem - /S /TR - /P 95 0 R - /K [101 0 R 100 0 R 99 0 R 97 0 R] + /S /TD + /P 92 0 R + /A [<< + /O /Table + /Headers [(U2x2y0)] + >>] + /K [20 21] + /Pg 274 0 R >> endobj @@ -1142,36 +1192,36 @@ endobj << /Type /StructElem /S /TD - /P 96 0 R + /P 92 0 R /A [<< /O /Table - /Headers [(U4x3y0)] + /Headers [(U2x1y0)] >>] - /K [98 0 R] + /K [19] + /Pg 274 0 R >> endobj 98 0 obj << /Type /StructElem - /S /Strong - /P 97 0 R - /K [36] - /Pg 393 0 R + /S /TD + /P 92 0 R + /A [<< + /O /Table + /Headers [(U2x0y0)] + >>] + /K [18] + /Pg 274 0 R >> endobj 99 0 obj << /Type /StructElem - /S /TD - /P 96 0 R - /A [<< - /O /Table - /Headers [(U4x2y0)] - >>] - /K [35] - /Pg 393 0 R + /S /TR + /P 21 0 R + /K [105 0 R 104 0 R 103 0 R 102 0 R 101 0 R 100 0 R] >> endobj @@ -1179,13 +1229,18 @@ endobj << /Type /StructElem /S /TD - /P 96 0 R + /P 99 0 R /A [<< /O /Table - /Headers [(U4x1y0)] + /Headers [(U2x5y0)] + >> << + /O /Layout + /BorderColor [0 0 0] + /BorderStyle [/Solid /None /None /None] + /BorderThickness [1 0 0 0] >>] - /K [34] - /Pg 393 0 R + /K [16 17] + /Pg 274 0 R >> endobj @@ -1193,22 +1248,37 @@ endobj << /Type /StructElem /S /TD - /P 96 0 R + /P 99 0 R /A [<< /O /Table - /Headers [(U4x0y0)] + /Headers [(U2x4y0)] + >> << + /O /Layout + /BorderColor [0 0 0] + /BorderStyle [/Solid /None /None /None] + /BorderThickness [1 0 0 0] >>] - /K [33] - /Pg 393 0 R + /K [15] + /Pg 274 0 R >> endobj 102 0 obj << /Type /StructElem - /S /TR - /P 95 0 R - /K [107 0 R 106 0 R 105 0 R 103 0 R] + /S /TD + /P 99 0 R + /A [<< + /O /Table + /Headers [(U2x3y0)] + >> << + /O /Layout + /BorderColor [0 0 0] + /BorderStyle [/Solid /None /None /None] + /BorderThickness [1 0 0 0] + >>] + /K [12 13 14] + /Pg 274 0 R >> endobj @@ -1216,22 +1286,37 @@ endobj << /Type /StructElem /S /TD - /P 102 0 R + /P 99 0 R /A [<< /O /Table - /Headers [(U4x3y0)] + /Headers [(U2x2y0)] + >> << + /O /Layout + /BorderColor [0 0 0] + /BorderStyle [/Solid /None /None /None] + /BorderThickness [1 0 0 0] >>] - /K [104 0 R] + /K [10 11] + /Pg 274 0 R >> endobj 104 0 obj << /Type /StructElem - /S /Strong - /P 103 0 R - /K [32] - /Pg 393 0 R + /S /TD + /P 99 0 R + /A [<< + /O /Table + /Headers [(U2x1y0)] + >> << + /O /Layout + /BorderColor [0 0 0] + /BorderStyle [/Solid /None /None /None] + /BorderThickness [1 0 0 0] + >>] + /K [9] + /Pg 274 0 R >> endobj @@ -1239,395 +1324,10 @@ endobj << /Type /StructElem /S /TD - /P 102 0 R + /P 99 0 R /A [<< /O /Table - /Headers [(U4x2y0)] - >>] - /K [31] - /Pg 393 0 R ->> -endobj - -106 0 obj -<< - /Type /StructElem - /S /TD - /P 102 0 R - /A [<< - /O /Table - /Headers [(U4x1y0)] - >>] - /K [30] - /Pg 393 0 R ->> -endobj - -107 0 obj -<< - /Type /StructElem - /S /TD - /P 102 0 R - /A [<< - /O /Table - /Headers [(U4x0y0)] - >>] - /K [29] - /Pg 393 0 R ->> -endobj - -108 0 obj -<< - /Type /StructElem - /S /TR - /P 95 0 R - /K [112 0 R 111 0 R 110 0 R 109 0 R] ->> -endobj - -109 0 obj -<< - /Type /StructElem - /S /TD - /P 108 0 R - /A [<< - /O /Table - /Headers [(U4x3y0)] - >>] - /K [28] - /Pg 393 0 R ->> -endobj - -110 0 obj -<< - /Type /StructElem - /S /TD - /P 108 0 R - /A [<< - /O /Table - /Headers [(U4x2y0)] - >>] - /K [27] - /Pg 393 0 R ->> -endobj - -111 0 obj -<< - /Type /StructElem - /S /TD - /P 108 0 R - /A [<< - /O /Table - /Headers [(U4x1y0)] - >>] - /K [26] - /Pg 393 0 R ->> -endobj - -112 0 obj -<< - /Type /StructElem - /S /TD - /P 108 0 R - /A [<< - /O /Table - /Headers [(U4x0y0)] - >>] - /K [25] - /Pg 393 0 R ->> -endobj - -113 0 obj -<< - /Type /StructElem - /S /TR - /P 95 0 R - /K [117 0 R 116 0 R 115 0 R 114 0 R] ->> -endobj - -114 0 obj -<< - /Type /StructElem - /S /TD - /P 113 0 R - /A [<< - /O /Table - /Headers [(U4x3y0)] - >>] - /K [24] - /Pg 393 0 R ->> -endobj - -115 0 obj -<< - /Type /StructElem - /S /TD - /P 113 0 R - /A [<< - /O /Table - /Headers [(U4x2y0)] - >>] - /K [23] - /Pg 393 0 R ->> -endobj - -116 0 obj -<< - /Type /StructElem - /S /TD - /P 113 0 R - /A [<< - /O /Table - /Headers [(U4x1y0)] - >>] - /K [22] - /Pg 393 0 R ->> -endobj - -117 0 obj -<< - /Type /StructElem - /S /TD - /P 113 0 R - /A [<< - /O /Table - /Headers [(U4x0y0)] - >>] - /K [21] - /Pg 393 0 R ->> -endobj - -118 0 obj -<< - /Type /StructElem - /S /TR - /P 95 0 R - /K [123 0 R 122 0 R 121 0 R 119 0 R] ->> -endobj - -119 0 obj -<< - /Type /StructElem - /S /TD - /P 118 0 R - /A [<< - /O /Table - /Headers [(U4x3y0)] - >>] - /K [120 0 R] ->> -endobj - -120 0 obj -<< - /Type /StructElem - /S /Strong - /P 119 0 R - /K [20] - /Pg 393 0 R ->> -endobj - -121 0 obj -<< - /Type /StructElem - /S /TD - /P 118 0 R - /A [<< - /O /Table - /Headers [(U4x2y0)] - >>] - /K [19] - /Pg 393 0 R ->> -endobj - -122 0 obj -<< - /Type /StructElem - /S /TD - /P 118 0 R - /A [<< - /O /Table - /Headers [(U4x1y0)] - >>] - /K [18] - /Pg 393 0 R ->> -endobj - -123 0 obj -<< - /Type /StructElem - /S /TD - /P 118 0 R - /A [<< - /O /Table - /Headers [(U4x0y0)] - >>] - /K [17] - /Pg 393 0 R ->> -endobj - -124 0 obj -<< - /Type /StructElem - /S /TR - /P 95 0 R - /K [128 0 R 127 0 R 126 0 R 125 0 R] ->> -endobj - -125 0 obj -<< - /Type /StructElem - /S /TD - /P 124 0 R - /A [<< - /O /Table - /Headers [(U4x3y0)] - >>] - /K [16] - /Pg 393 0 R ->> -endobj - -126 0 obj -<< - /Type /StructElem - /S /TD - /P 124 0 R - /A [<< - /O /Table - /Headers [(U4x2y0)] - >>] - /K [15] - /Pg 393 0 R ->> -endobj - -127 0 obj -<< - /Type /StructElem - /S /TD - /P 124 0 R - /A [<< - /O /Table - /Headers [(U4x1y0)] - >>] - /K [14] - /Pg 393 0 R ->> -endobj - -128 0 obj -<< - /Type /StructElem - /S /TD - /P 124 0 R - /A [<< - /O /Table - /Headers [(U4x0y0)] - >>] - /K [13] - /Pg 393 0 R ->> -endobj - -129 0 obj -<< - /Type /StructElem - /S /TR - /P 95 0 R - /K [133 0 R 132 0 R 131 0 R 130 0 R] ->> -endobj - -130 0 obj -<< - /Type /StructElem - /S /TD - /P 129 0 R - /A [<< - /O /Table - /Headers [(U4x3y0)] - >>] - /K [12] - /Pg 393 0 R ->> -endobj - -131 0 obj -<< - /Type /StructElem - /S /TD - /P 129 0 R - /A [<< - /O /Table - /Headers [(U4x2y0)] - >>] - /K [11] - /Pg 393 0 R ->> -endobj - -132 0 obj -<< - /Type /StructElem - /S /TD - /P 129 0 R - /A [<< - /O /Table - /Headers [(U4x1y0)] - >>] - /K [10] - /Pg 393 0 R ->> -endobj - -133 0 obj -<< - /Type /StructElem - /S /TD - /P 129 0 R - /A [<< - /O /Table - /Headers [(U4x0y0)] - >>] - /K [9] - /Pg 393 0 R ->> -endobj - -134 0 obj -<< - /Type /StructElem - /S /TR - /P 95 0 R - /K [138 0 R 137 0 R 136 0 R 135 0 R] ->> -endobj - -135 0 obj -<< - /Type /StructElem - /S /TD - /P 134 0 R - /A [<< - /O /Table - /Headers [(U4x3y0)] + /Headers [(U2x0y0)] >> << /O /Layout /BorderColor [0 0 0] @@ -1635,91 +1335,76 @@ endobj /BorderThickness [1 0 0 0] >>] /K [8] - /Pg 393 0 R + /Pg 274 0 R >> endobj -136 0 obj -<< - /Type /StructElem - /S /TD - /P 134 0 R - /A [<< - /O /Table - /Headers [(U4x2y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] - >>] - /K [7] - /Pg 393 0 R ->> -endobj - -137 0 obj -<< - /Type /StructElem - /S /TD - /P 134 0 R - /A [<< - /O /Table - /Headers [(U4x1y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] - >>] - /K [6] - /Pg 393 0 R ->> -endobj - -138 0 obj -<< - /Type /StructElem - /S /TD - /P 134 0 R - /A [<< - /O /Table - /Headers [(U4x0y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] - >>] - /K [5] - /Pg 393 0 R ->> -endobj - -139 0 obj +106 0 obj << /Type /StructElem /S /THead - /P 94 0 R - /K [140 0 R] + /P 20 0 R + /K [107 0 R] >> endobj -140 0 obj +107 0 obj << /Type /StructElem /S /TR - /P 139 0 R - /K [144 0 R 143 0 R 142 0 R 141 0 R] + /P 106 0 R + /K [113 0 R 112 0 R 111 0 R 110 0 R 109 0 R 108 0 R] >> endobj -141 0 obj +108 0 obj << /Type /StructElem /S /TH - /P 140 0 R - /ID (U4x3y0) + /P 107 0 R + /ID (U2x5y0) + /A [<< + /O /Table + /Scope /Column + /Headers [] + >> << + /O /Layout + /BorderColor [0 0 0] + /BorderStyle [/None /Solid /None /None] + /BorderThickness [0 1 0 0] + >>] + /K [6 7] + /Pg 274 0 R +>> +endobj + +109 0 obj +<< + /Type /StructElem + /S /TH + /P 107 0 R + /ID (U2x4y0) + /A [<< + /O /Table + /Scope /Column + /Headers [] + >> << + /O /Layout + /BorderColor [0 0 0] + /BorderStyle [/None /Solid /None /None] + /BorderThickness [0 1 0 0] + >>] + /K [5] + /Pg 274 0 R +>> +endobj + +110 0 obj +<< + /Type /StructElem + /S /TH + /P 107 0 R + /ID (U2x3y0) /A [<< /O /Table /Scope /Column @@ -1731,1405 +1416,15 @@ endobj /BorderThickness [0 1 0 0] >>] /K [4] - /Pg 393 0 R + /Pg 274 0 R >> endobj -142 0 obj +111 0 obj << /Type /StructElem /S /TH - /P 140 0 R - /ID (U4x2y0) - /A [<< - /O /Table - /Scope /Column - /Headers [] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/None /Solid /None /None] - /BorderThickness [0 1 0 0] - >>] - /K [3] - /Pg 393 0 R ->> -endobj - -143 0 obj -<< - /Type /StructElem - /S /TH - /P 140 0 R - /ID (U4x1y0) - /A [<< - /O /Table - /Scope /Column - /Headers [] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/None /Solid /None /None] - /BorderThickness [0 1 0 0] - >>] - /K [2] - /Pg 393 0 R ->> -endobj - -144 0 obj -<< - /Type /StructElem - /S /TH - /P 140 0 R - /ID (U4x0y0) - /A [<< - /O /Table - /Scope /Column - /Headers [] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/None /Solid /None /None] - /BorderThickness [0 1 0 0] - >>] - /K [1] - /Pg 393 0 R ->> -endobj - -145 0 obj -<< - /Type /StructElem - /S /H2 - /P 22 0 R - /T (4. Completeness scorecard (device-level, 181 rows)) - /K [0] - /Pg 393 0 R ->> -endobj - -146 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [153 0 R 151 0 R 150 0 R 107 148 0 R 147 0 R 110 111] - /Pg 391 0 R ->> -endobj - -147 0 obj -<< - /Type /StructElem - /S /Strong - /P 146 0 R - /K [109] - /Pg 391 0 R ->> -endobj - -148 0 obj -<< - /Type /StructElem - /S /Code - /P 146 0 R - /K [149 0 R] ->> -endobj - -149 0 obj -<< - /Type /StructElem - /S /Strong - /P 148 0 R - /K [108] - /Pg 391 0 R ->> -endobj - -150 0 obj -<< - /Type /StructElem - /S /Strong - /P 146 0 R - /K [106] - /Pg 391 0 R ->> -endobj - -151 0 obj -<< - /Type /StructElem - /S /Code - /P 146 0 R - /K [152 0 R] ->> -endobj - -152 0 obj -<< - /Type /StructElem - /S /Strong - /P 151 0 R - /K [105] - /Pg 391 0 R ->> -endobj - -153 0 obj -<< - /Type /StructElem - /S /Strong - /P 146 0 R - /K [104] - /Pg 391 0 R ->> -endobj - -154 0 obj -<< - /Type /StructElem - /S /H3 - /P 22 0 R - /T - /K [102 103] - /Pg 391 0 R ->> -endobj - -155 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [161 0 R 90 160 0 R 92 159 0 R 94 158 0 R 96 157 0 R 98 156 0 R 100 101] - /Pg 391 0 R ->> -endobj - -156 0 obj -<< - /Type /StructElem - /S /Code - /P 155 0 R - /K [99] - /Pg 391 0 R ->> -endobj - -157 0 obj -<< - /Type /StructElem - /S /Code - /P 155 0 R - /K [97] - /Pg 391 0 R ->> -endobj - -158 0 obj -<< - /Type /StructElem - /S /Code - /P 155 0 R - /K [95] - /Pg 391 0 R ->> -endobj - -159 0 obj -<< - /Type /StructElem - /S /Code - /P 155 0 R - /K [93] - /Pg 391 0 R ->> -endobj - -160 0 obj -<< - /Type /StructElem - /S /Code - /P 155 0 R - /K [91] - /Pg 391 0 R ->> -endobj - -161 0 obj -<< - /Type /StructElem - /S /Strong - /P 155 0 R - /K [89] - /Pg 391 0 R ->> -endobj - -162 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [167 0 R 80 166 0 R 82 165 0 R 84 164 0 R 86 163 0 R 88] - /Pg 391 0 R ->> -endobj - -163 0 obj -<< - /Type /StructElem - /S /Code - /P 162 0 R - /K [87] - /Pg 391 0 R ->> -endobj - -164 0 obj -<< - /Type /StructElem - /S /Code - /P 162 0 R - /K [85] - /Pg 391 0 R ->> -endobj - -165 0 obj -<< - /Type /StructElem - /S /Code - /P 162 0 R - /K [83] - /Pg 391 0 R ->> -endobj - -166 0 obj -<< - /Type /StructElem - /S /Code - /P 162 0 R - /K [81] - /Pg 391 0 R ->> -endobj - -167 0 obj -<< - /Type /StructElem - /S /Strong - /P 162 0 R - /K [79] - /Pg 391 0 R ->> -endobj - -168 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [175 0 R 173 0 R 172 0 R 68 171 0 R 70 71 170 0 R 75 169 0 R 78] - /Pg 391 0 R ->> -endobj - -169 0 obj -<< - /Type /StructElem - /S /Strong - /P 168 0 R - /K [76 77] - /Pg 391 0 R ->> -endobj - -170 0 obj -<< - /Type /StructElem - /S /Strong - /P 168 0 R - /K [72 73 74] - /Pg 391 0 R ->> -endobj - -171 0 obj -<< - /Type /StructElem - /S /Em - /P 168 0 R - /K [69] - /Pg 391 0 R ->> -endobj - -172 0 obj -<< - /Type /StructElem - /S /Strong - /P 168 0 R - /K [67] - /Pg 391 0 R ->> -endobj - -173 0 obj -<< - /Type /StructElem - /S /Code - /P 168 0 R - /K [174 0 R] ->> -endobj - -174 0 obj -<< - /Type /StructElem - /S /Strong - /P 173 0 R - /K [66] - /Pg 391 0 R ->> -endobj - -175 0 obj -<< - /Type /StructElem - /S /Strong - /P 168 0 R - /K [65] - /Pg 391 0 R ->> -endobj - -176 0 obj -<< - /Type /StructElem - /S /H3 - /P 22 0 R - /T - /K [63 64] - /Pg 391 0 R ->> -endobj - -177 0 obj -<< - /Type /StructElem - /S /Table - /P 22 0 R - /K [189 0 R 178 0 R] ->> -endobj - -178 0 obj -<< - /Type /StructElem - /S /TBody - /P 177 0 R - /K [184 0 R 179 0 R] ->> -endobj - -179 0 obj -<< - /Type /StructElem - /S /TR - /P 178 0 R - /K [183 0 R 182 0 R 181 0 R 180 0 R] ->> -endobj - -180 0 obj -<< - /Type /StructElem - /S /TD - /P 179 0 R - /A [<< - /O /Table - /Headers [(U3x3y0)] - >>] - /K [62] - /Pg 391 0 R ->> -endobj - -181 0 obj -<< - /Type /StructElem - /S /TD - /P 179 0 R - /A [<< - /O /Table - /Headers [(U3x2y0)] - >>] - /K [61] - /Pg 391 0 R ->> -endobj - -182 0 obj -<< - /Type /StructElem - /S /TD - /P 179 0 R - /A [<< - /O /Table - /Headers [(U3x1y0)] - >>] - /K [60] - /Pg 391 0 R ->> -endobj - -183 0 obj -<< - /Type /StructElem - /S /TD - /P 179 0 R - /A [<< - /O /Table - /Headers [(U3x0y0)] - >>] - /K [59] - /Pg 391 0 R ->> -endobj - -184 0 obj -<< - /Type /StructElem - /S /TR - /P 178 0 R - /K [188 0 R 187 0 R 186 0 R 185 0 R] ->> -endobj - -185 0 obj -<< - /Type /StructElem - /S /TD - /P 184 0 R - /A [<< - /O /Table - /Headers [(U3x3y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] - >>] - /K [58] - /Pg 391 0 R ->> -endobj - -186 0 obj -<< - /Type /StructElem - /S /TD - /P 184 0 R - /A [<< - /O /Table - /Headers [(U3x2y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] - >>] - /K [57] - /Pg 391 0 R ->> -endobj - -187 0 obj -<< - /Type /StructElem - /S /TD - /P 184 0 R - /A [<< - /O /Table - /Headers [(U3x1y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] - >>] - /K [56] - /Pg 391 0 R ->> -endobj - -188 0 obj -<< - /Type /StructElem - /S /TD - /P 184 0 R - /A [<< - /O /Table - /Headers [(U3x0y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] - >>] - /K [55] - /Pg 391 0 R ->> -endobj - -189 0 obj -<< - /Type /StructElem - /S /THead - /P 177 0 R - /K [190 0 R] ->> -endobj - -190 0 obj -<< - /Type /StructElem - /S /TR - /P 189 0 R - /K [194 0 R 193 0 R 192 0 R 191 0 R] ->> -endobj - -191 0 obj -<< - /Type /StructElem - /S /TH - /P 190 0 R - /ID (U3x3y0) - /A [<< - /O /Table - /Scope /Column - /Headers [] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/None /Solid /None /None] - /BorderThickness [0 1 0 0] - >>] - /K [54] - /Pg 391 0 R ->> -endobj - -192 0 obj -<< - /Type /StructElem - /S /TH - /P 190 0 R - /ID (U3x2y0) - /A [<< - /O /Table - /Scope /Column - /Headers [] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/None /Solid /None /None] - /BorderThickness [0 1 0 0] - >>] - /K [53] - /Pg 391 0 R ->> -endobj - -193 0 obj -<< - /Type /StructElem - /S /TH - /P 190 0 R - /ID (U3x1y0) - /A [<< - /O /Table - /Scope /Column - /Headers [] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/None /Solid /None /None] - /BorderThickness [0 1 0 0] - >>] - /K [52] - /Pg 391 0 R ->> -endobj - -194 0 obj -<< - /Type /StructElem - /S /TH - /P 190 0 R - /ID (U3x0y0) - /A [<< - /O /Table - /Scope /Column - /Headers [] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/None /Solid /None /None] - /BorderThickness [0 1 0 0] - >>] - /K [51] - /Pg 391 0 R ->> -endobj - -195 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [197 0 R 47 196 0 R 49 50] - /Pg 391 0 R ->> -endobj - -196 0 obj -<< - /Type /StructElem - /S /Em - /P 195 0 R - /K [48] - /Pg 391 0 R ->> -endobj - -197 0 obj -<< - /Type /StructElem - /S /Strong - /P 195 0 R - /K [46] - /Pg 391 0 R ->> -endobj - -198 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [211 0 R 29 209 0 R 208 0 R 32 207 0 R 34 206 0 R 36 204 0 R 203 0 R 201 0 R 40 200 0 R 42 199 0 R 45] - /Pg 391 0 R ->> -endobj - -199 0 obj -<< - /Type /StructElem - /S /Strong - /P 198 0 R - /K [43 44] - /Pg 391 0 R ->> -endobj - -200 0 obj -<< - /Type /StructElem - /S /Em - /P 198 0 R - /K [41] - /Pg 391 0 R ->> -endobj - -201 0 obj -<< - /Type /StructElem - /S /Code - /P 198 0 R - /K [202 0 R] ->> -endobj - -202 0 obj -<< - /Type /StructElem - /S /Strong - /P 201 0 R - /K [39] - /Pg 391 0 R ->> -endobj - -203 0 obj -<< - /Type /StructElem - /S /Strong - /P 198 0 R - /K [38] - /Pg 391 0 R ->> -endobj - -204 0 obj -<< - /Type /StructElem - /S /Code - /P 198 0 R - /K [205 0 R] ->> -endobj - -205 0 obj -<< - /Type /StructElem - /S /Strong - /P 204 0 R - /K [37] - /Pg 391 0 R ->> -endobj - -206 0 obj -<< - /Type /StructElem - /S /Code - /P 198 0 R - /K [35] - /Pg 391 0 R ->> -endobj - -207 0 obj -<< - /Type /StructElem - /S /Code - /P 198 0 R - /K [33] - /Pg 391 0 R ->> -endobj - -208 0 obj -<< - /Type /StructElem - /S /Strong - /P 198 0 R - /K [31] - /Pg 391 0 R ->> -endobj - -209 0 obj -<< - /Type /StructElem - /S /Code - /P 198 0 R - /K [210 0 R] ->> -endobj - -210 0 obj -<< - /Type /StructElem - /S /Strong - /P 209 0 R - /K [30] - /Pg 391 0 R ->> -endobj - -211 0 obj -<< - /Type /StructElem - /S /Strong - /P 198 0 R - /K [28] - /Pg 391 0 R ->> -endobj - -212 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [213 0 R 26 27] - /Pg 391 0 R ->> -endobj - -213 0 obj -<< - /Type /StructElem - /S /Strong - /P 212 0 R - /K [25] - /Pg 391 0 R ->> -endobj - -214 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [215 0 R 23 24] - /Pg 391 0 R ->> -endobj - -215 0 obj -<< - /Type /StructElem - /S /Strong - /P 214 0 R - /K [22] - /Pg 391 0 R ->> -endobj - -216 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [217 0 R 21] - /Pg 391 0 R ->> -endobj - -217 0 obj -<< - /Type /StructElem - /S /Strong - /P 216 0 R - /K [20] - /Pg 391 0 R ->> -endobj - -218 0 obj -<< - /Type /StructElem - /S /H3 - /P 22 0 R - /T - /K [18 19] - /Pg 391 0 R ->> -endobj - -219 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [221 0 R 14 220 0 R 16 17] - /Pg 391 0 R ->> -endobj - -220 0 obj -<< - /Type /StructElem - /S /Strong - /P 219 0 R - /K [15] - /Pg 391 0 R ->> -endobj - -221 0 obj -<< - /Type /StructElem - /S /Strong - /P 219 0 R - /K [13] - /Pg 391 0 R ->> -endobj - -222 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [224 0 R 8 9 223 0 R 11 12] - /Pg 391 0 R ->> -endobj - -223 0 obj -<< - /Type /StructElem - /S /Strong - /P 222 0 R - /K [10] - /Pg 391 0 R ->> -endobj - -224 0 obj -<< - /Type /StructElem - /S /Strong - /P 222 0 R - /K [7] - /Pg 391 0 R ->> -endobj - -225 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [227 0 R 4 5 226 0 R] - /Pg 391 0 R ->> -endobj - -226 0 obj -<< - /Type /StructElem - /S /Code - /P 225 0 R - /K [6] - /Pg 391 0 R ->> -endobj - -227 0 obj -<< - /Type /StructElem - /S /Strong - /P 225 0 R - /K [3] - /Pg 391 0 R ->> -endobj - -228 0 obj -<< - /Type /StructElem - /S /H3 - /P 22 0 R - /T - /K [1 2] - /Pg 391 0 R ->> -endobj - -229 0 obj -<< - /Type /StructElem - /S /H2 - /P 22 0 R - /T (3. Findings by severity) - /K [0] - /Pg 391 0 R ->> -endobj - -230 0 obj -<< - /Type /StructElem - /S /Div - /P 22 0 R - /A [<< - /O /Layout - /Placement /Block - >>] - /K [231 0 R] ->> -endobj - -231 0 obj -<< - /Type /StructElem - /S /Table - /P 230 0 R - /K [260 0 R 232 0 R] ->> -endobj - -232 0 obj -<< - /Type /StructElem - /S /TBody - /P 231 0 R - /K [255 0 R 249 0 R 244 0 R 238 0 R 233 0 R] ->> -endobj - -233 0 obj -<< - /Type /StructElem - /S /TR - /P 232 0 R - /K [236 0 R 235 0 R 234 0 R] ->> -endobj - -234 0 obj -<< - /Type /StructElem - /S /TD - /P 233 0 R - /A [<< - /O /Table - /Headers [(U2x2y0)] - >>] - /K [114] - /Pg 389 0 R ->> -endobj - -235 0 obj -<< - /Type /StructElem - /S /TD - /P 233 0 R - /A [<< - /O /Table - /Headers [(U2x1y0)] - >>] - /K [113] - /Pg 389 0 R ->> -endobj - -236 0 obj -<< - /Type /StructElem - /S /TD - /P 233 0 R - /A [<< - /O /Table - /Headers [(U2x0y0)] - >>] - /K [237 0 R 111 112] - /Pg 389 0 R ->> -endobj - -237 0 obj -<< - /Type /StructElem - /S /Strong - /P 236 0 R - /K [110] - /Pg 389 0 R ->> -endobj - -238 0 obj -<< - /Type /StructElem - /S /TR - /P 232 0 R - /K [242 0 R 240 0 R 239 0 R] ->> -endobj - -239 0 obj -<< - /Type /StructElem - /S /TD - /P 238 0 R - /A [<< - /O /Table - /Headers [(U2x2y0)] - >>] - /K [109] - /Pg 389 0 R ->> -endobj - -240 0 obj -<< - /Type /StructElem - /S /TD - /P 238 0 R - /A [<< - /O /Table - /Headers [(U2x1y0)] - >>] - /K [241 0 R] ->> -endobj - -241 0 obj -<< - /Type /StructElem - /S /Strong - /P 240 0 R - /K [108] - /Pg 389 0 R ->> -endobj - -242 0 obj -<< - /Type /StructElem - /S /TD - /P 238 0 R - /A [<< - /O /Table - /Headers [(U2x0y0)] - >>] - /K [243 0 R] ->> -endobj - -243 0 obj -<< - /Type /StructElem - /S /Strong - /P 242 0 R - /K [107] - /Pg 389 0 R ->> -endobj - -244 0 obj -<< - /Type /StructElem - /S /TR - /P 232 0 R - /K [247 0 R 246 0 R 245 0 R] ->> -endobj - -245 0 obj -<< - /Type /StructElem - /S /TD - /P 244 0 R - /A [<< - /O /Table - /Headers [(U2x2y0)] - >>] - /K [106] - /Pg 389 0 R ->> -endobj - -246 0 obj -<< - /Type /StructElem - /S /TD - /P 244 0 R - /A [<< - /O /Table - /Headers [(U2x1y0)] - >>] - /K [105] - /Pg 389 0 R ->> -endobj - -247 0 obj -<< - /Type /StructElem - /S /TD - /P 244 0 R - /A [<< - /O /Table - /Headers [(U2x0y0)] - >>] - /K [248 0 R 103 104] - /Pg 389 0 R ->> -endobj - -248 0 obj -<< - /Type /StructElem - /S /Strong - /P 247 0 R - /K [102] - /Pg 389 0 R ->> -endobj - -249 0 obj -<< - /Type /StructElem - /S /TR - /P 232 0 R - /K [252 0 R 251 0 R 250 0 R] ->> -endobj - -250 0 obj -<< - /Type /StructElem - /S /TD - /P 249 0 R - /A [<< - /O /Table - /Headers [(U2x2y0)] - >>] - /K [100 101] - /Pg 389 0 R ->> -endobj - -251 0 obj -<< - /Type /StructElem - /S /TD - /P 249 0 R - /A [<< - /O /Table - /Headers [(U2x1y0)] - >>] - /K [99] - /Pg 389 0 R ->> -endobj - -252 0 obj -<< - /Type /StructElem - /S /TD - /P 249 0 R - /A [<< - /O /Table - /Headers [(U2x0y0)] - >>] - /K [254 0 R 95 96 253 0 R 98] - /Pg 389 0 R ->> -endobj - -253 0 obj -<< - /Type /StructElem - /S /Em - /P 252 0 R - /K [97] - /Pg 389 0 R ->> -endobj - -254 0 obj -<< - /Type /StructElem - /S /Strong - /P 252 0 R - /K [94] - /Pg 389 0 R ->> -endobj - -255 0 obj -<< - /Type /StructElem - /S /TR - /P 232 0 R - /K [258 0 R 257 0 R 256 0 R] ->> -endobj - -256 0 obj -<< - /Type /StructElem - /S /TD - /P 255 0 R - /A [<< - /O /Table - /Headers [(U2x2y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] - >>] - /K [92 93] - /Pg 389 0 R ->> -endobj - -257 0 obj -<< - /Type /StructElem - /S /TD - /P 255 0 R - /A [<< - /O /Table - /Headers [(U2x1y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] - >>] - /K [91] - /Pg 389 0 R ->> -endobj - -258 0 obj -<< - /Type /StructElem - /S /TD - /P 255 0 R - /A [<< - /O /Table - /Headers [(U2x0y0)] - >> << - /O /Layout - /BorderColor [0 0 0] - /BorderStyle [/Solid /None /None /None] - /BorderThickness [1 0 0 0] - >>] - /K [259 0 R 89 90] - /Pg 389 0 R ->> -endobj - -259 0 obj -<< - /Type /StructElem - /S /Strong - /P 258 0 R - /K [88] - /Pg 389 0 R ->> -endobj - -260 0 obj -<< - /Type /StructElem - /S /THead - /P 231 0 R - /K [261 0 R] ->> -endobj - -261 0 obj -<< - /Type /StructElem - /S /TR - /P 260 0 R - /K [264 0 R 263 0 R 262 0 R] ->> -endobj - -262 0 obj -<< - /Type /StructElem - /S /TH - /P 261 0 R + /P 107 0 R /ID (U2x2y0) /A [<< /O /Table @@ -3141,16 +1436,16 @@ endobj /BorderStyle [/None /Solid /None /None] /BorderThickness [0 1 0 0] >>] - /K [87] - /Pg 389 0 R + /K [3] + /Pg 274 0 R >> endobj -263 0 obj +112 0 obj << /Type /StructElem /S /TH - /P 261 0 R + /P 107 0 R /ID (U2x1y0) /A [<< /O /Table @@ -3162,16 +1457,16 @@ endobj /BorderStyle [/None /Solid /None /None] /BorderThickness [0 1 0 0] >>] - /K [86] - /Pg 389 0 R + /K [2] + /Pg 274 0 R >> endobj -264 0 obj +113 0 obj << /Type /StructElem /S /TH - /P 261 0 R + /P 107 0 R /ID (U2x0y0) /A [<< /O /Table @@ -3183,454 +1478,397 @@ endobj /BorderStyle [/None /Solid /None /None] /BorderThickness [0 1 0 0] >>] - /K [85] - /Pg 389 0 R + /K [1] + /Pg 274 0 R >> endobj -265 0 obj -<< - /Type /StructElem - /S /P - /P 22 0 R - /K [84] - /Pg 389 0 R ->> -endobj - -266 0 obj +114 0 obj << /Type /StructElem /S /H2 - /P 22 0 R - /T (2. The fleet, de-duplicated) - /K [83] - /Pg 389 0 R + /P 14 0 R + /T (Action plan) + /K [0] + /Pg 274 0 R >> endobj -267 0 obj +115 0 obj << /Type /StructElem /S /P - /P 22 0 R - /K [271 0 R 73 74 270 0 R 76 77 269 0 R 79 268 0 R 82] - /Pg 389 0 R + /P 14 0 R + /K [121 0 R 119 0 R 118 0 R 31 117 0 R 33 116 0 R 35] + /Pg 272 0 R >> endobj -268 0 obj +116 0 obj << /Type /StructElem /S /Strong - /P 267 0 R - /K [80 81] - /Pg 389 0 R + /P 115 0 R + /K [34] + /Pg 272 0 R >> endobj -269 0 obj +117 0 obj +<< + /Type /StructElem + /S /Code + /P 115 0 R + /K [32] + /Pg 272 0 R +>> +endobj + +118 0 obj << /Type /StructElem /S /Strong - /P 267 0 R - /K [78] - /Pg 389 0 R + /P 115 0 R + /K [30] + /Pg 272 0 R >> endobj -270 0 obj +119 0 obj +<< + /Type /StructElem + /S /Code + /P 115 0 R + /K [120 0 R] +>> +endobj + +120 0 obj << /Type /StructElem /S /Strong - /P 267 0 R - /K [75] - /Pg 389 0 R + /P 119 0 R + /K [29] + /Pg 272 0 R >> endobj -271 0 obj +121 0 obj << /Type /StructElem /S /Strong - /P 267 0 R - /K [72] - /Pg 389 0 R + /P 115 0 R + /K [28] + /Pg 272 0 R >> endobj -272 0 obj +122 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [124 0 R 24 123 0 R 26 27] + /Pg 272 0 R +>> +endobj + +123 0 obj +<< + /Type /StructElem + /S /Strong + /P 122 0 R + /K [25] + /Pg 272 0 R +>> +endobj + +124 0 obj +<< + /Type /StructElem + /S /Strong + /P 122 0 R + /K [23] + /Pg 272 0 R +>> +endobj + +125 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [131 0 R 11 130 0 R 13 129 0 R 15 128 0 R 17 127 0 R 19 20 126 0 R 22] + /Pg 272 0 R +>> +endobj + +126 0 obj +<< + /Type /StructElem + /S /Strong + /P 125 0 R + /K [21] + /Pg 272 0 R +>> +endobj + +127 0 obj +<< + /Type /StructElem + /S /Code + /P 125 0 R + /K [18] + /Pg 272 0 R +>> +endobj + +128 0 obj +<< + /Type /StructElem + /S /Code + /P 125 0 R + /K [16] + /Pg 272 0 R +>> +endobj + +129 0 obj +<< + /Type /StructElem + /S /Code + /P 125 0 R + /K [14] + /Pg 272 0 R +>> +endobj + +130 0 obj +<< + /Type /StructElem + /S /Code + /P 125 0 R + /K [12] + /Pg 272 0 R +>> +endobj + +131 0 obj +<< + /Type /StructElem + /S /Strong + /P 125 0 R + /K [10] + /Pg 272 0 R +>> +endobj + +132 0 obj +<< + /Type /StructElem + /S /H2 + /P 14 0 R + /T + /K [8 9] + /Pg 272 0 R +>> +endobj + +133 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [138 0 R 136 0 R 135 0 R 3 4 5 134 0 R 7] + /Pg 272 0 R +>> +endobj + +134 0 obj +<< + /Type /StructElem + /S /Strong + /P 133 0 R + /K [6] + /Pg 272 0 R +>> +endobj + +135 0 obj +<< + /Type /StructElem + /S /Strong + /P 133 0 R + /K [2] + /Pg 272 0 R +>> +endobj + +136 0 obj +<< + /Type /StructElem + /S /Code + /P 133 0 R + /K [137 0 R] +>> +endobj + +137 0 obj +<< + /Type /StructElem + /S /Strong + /P 136 0 R + /K [1] + /Pg 272 0 R +>> +endobj + +138 0 obj +<< + /Type /StructElem + /S /Strong + /P 133 0 R + /K [0] + /Pg 272 0 R +>> +endobj + +139 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [114 140 0 R 116] + /Pg 270 0 R +>> +endobj + +140 0 obj +<< + /Type /StructElem + /S /Strong + /P 139 0 R + /K [115] + /Pg 270 0 R +>> +endobj + +141 0 obj << /Type /StructElem /S /Table - /P 22 0 R - /K [311 0 R 273 0 R] + /P 14 0 R + /K [153 0 R 142 0 R] >> endobj -273 0 obj +142 0 obj << /Type /StructElem /S /TBody - /P 272 0 R - /K [304 0 R 297 0 R 290 0 R 281 0 R 274 0 R] + /P 141 0 R + /K [148 0 R 143 0 R] >> endobj -274 0 obj +143 0 obj << /Type /StructElem /S /TR - /P 273 0 R - /K [279 0 R 276 0 R 275 0 R] + /P 142 0 R + /K [147 0 R 146 0 R 145 0 R 144 0 R] >> endobj -275 0 obj +144 0 obj << /Type /StructElem /S /TD - /P 274 0 R + /P 143 0 R + /A [<< + /O /Table + /Headers [(U1x3y0)] + >>] + /K [113] + /Pg 270 0 R +>> +endobj + +145 0 obj +<< + /Type /StructElem + /S /TD + /P 143 0 R /A [<< /O /Table /Headers [(U1x2y0)] >>] - /K [69 70 71] - /Pg 389 0 R + /K [112] + /Pg 270 0 R >> endobj -276 0 obj +146 0 obj << /Type /StructElem /S /TD - /P 274 0 R + /P 143 0 R /A [<< /O /Table /Headers [(U1x1y0)] >>] - /K [278 0 R 65 277 0 R 67 68] - /Pg 389 0 R + /K [111] + /Pg 270 0 R >> endobj -277 0 obj -<< - /Type /StructElem - /S /Strong - /P 276 0 R - /K [66] - /Pg 389 0 R ->> -endobj - -278 0 obj -<< - /Type /StructElem - /S /Strong - /P 276 0 R - /K [64] - /Pg 389 0 R ->> -endobj - -279 0 obj +147 0 obj << /Type /StructElem /S /TD - /P 274 0 R + /P 143 0 R /A [<< /O /Table /Headers [(U1x0y0)] >>] - /K [280 0 R] + /K [110] + /Pg 270 0 R >> endobj -280 0 obj -<< - /Type /StructElem - /S /Strong - /P 279 0 R - /K [63] - /Pg 389 0 R ->> -endobj - -281 0 obj +148 0 obj << /Type /StructElem /S /TR - /P 273 0 R - /K [288 0 R 285 0 R 282 0 R] + /P 142 0 R + /K [152 0 R 151 0 R 150 0 R 149 0 R] >> endobj -282 0 obj +149 0 obj << /Type /StructElem /S /TD - /P 281 0 R + /P 148 0 R /A [<< /O /Table - /Headers [(U1x2y0)] + /Headers [(U1x3y0)] + >> << + /O /Layout + /BorderColor [0 0 0] + /BorderStyle [/Solid /None /None /None] + /BorderThickness [1 0 0 0] >>] - /K [56 284 0 R 59 283 0 R] - /Pg 389 0 R + /K [109] + /Pg 270 0 R >> endobj -283 0 obj -<< - /Type /StructElem - /S /Strong - /P 282 0 R - /K [60 61 62] - /Pg 389 0 R ->> -endobj - -284 0 obj -<< - /Type /StructElem - /S /Strong - /P 282 0 R - /K [57 58] - /Pg 389 0 R ->> -endobj - -285 0 obj +150 0 obj << /Type /StructElem /S /TD - /P 281 0 R - /A [<< - /O /Table - /Headers [(U1x1y0)] - >>] - /K [287 0 R 52 286 0 R] - /Pg 389 0 R ->> -endobj - -286 0 obj -<< - /Type /StructElem - /S /Strong - /P 285 0 R - /K [53 54 55] - /Pg 389 0 R ->> -endobj - -287 0 obj -<< - /Type /StructElem - /S /Strong - /P 285 0 R - /K [51] - /Pg 389 0 R ->> -endobj - -288 0 obj -<< - /Type /StructElem - /S /TD - /P 281 0 R - /A [<< - /O /Table - /Headers [(U1x0y0)] - >>] - /K [289 0 R] ->> -endobj - -289 0 obj -<< - /Type /StructElem - /S /Strong - /P 288 0 R - /K [50] - /Pg 389 0 R ->> -endobj - -290 0 obj -<< - /Type /StructElem - /S /TR - /P 273 0 R - /K [295 0 R 292 0 R 291 0 R] ->> -endobj - -291 0 obj -<< - /Type /StructElem - /S /TD - /P 290 0 R - /A [<< - /O /Table - /Headers [(U1x2y0)] - >>] - /K [47 48 49] - /Pg 389 0 R ->> -endobj - -292 0 obj -<< - /Type /StructElem - /S /TD - /P 290 0 R - /A [<< - /O /Table - /Headers [(U1x1y0)] - >>] - /K [294 0 R 44 293 0 R 46] - /Pg 389 0 R ->> -endobj - -293 0 obj -<< - /Type /StructElem - /S /Strong - /P 292 0 R - /K [45] - /Pg 389 0 R ->> -endobj - -294 0 obj -<< - /Type /StructElem - /S /Strong - /P 292 0 R - /K [43] - /Pg 389 0 R ->> -endobj - -295 0 obj -<< - /Type /StructElem - /S /TD - /P 290 0 R - /A [<< - /O /Table - /Headers [(U1x0y0)] - >>] - /K [296 0 R] ->> -endobj - -296 0 obj -<< - /Type /StructElem - /S /Strong - /P 295 0 R - /K [42] - /Pg 389 0 R ->> -endobj - -297 0 obj -<< - /Type /StructElem - /S /TR - /P 273 0 R - /K [302 0 R 299 0 R 298 0 R] ->> -endobj - -298 0 obj -<< - /Type /StructElem - /S /TD - /P 297 0 R - /A [<< - /O /Table - /Headers [(U1x2y0)] - >>] - /K [39 40 41] - /Pg 389 0 R ->> -endobj - -299 0 obj -<< - /Type /StructElem - /S /TD - /P 297 0 R - /A [<< - /O /Table - /Headers [(U1x1y0)] - >>] - /K [301 0 R 35 300 0 R 37 38] - /Pg 389 0 R ->> -endobj - -300 0 obj -<< - /Type /StructElem - /S /Strong - /P 299 0 R - /K [36] - /Pg 389 0 R ->> -endobj - -301 0 obj -<< - /Type /StructElem - /S /Strong - /P 299 0 R - /K [34] - /Pg 389 0 R ->> -endobj - -302 0 obj -<< - /Type /StructElem - /S /TD - /P 297 0 R - /A [<< - /O /Table - /Headers [(U1x0y0)] - >>] - /K [303 0 R] ->> -endobj - -303 0 obj -<< - /Type /StructElem - /S /Strong - /P 302 0 R - /K [33] - /Pg 389 0 R ->> -endobj - -304 0 obj -<< - /Type /StructElem - /S /TR - /P 273 0 R - /K [309 0 R 306 0 R 305 0 R] ->> -endobj - -305 0 obj -<< - /Type /StructElem - /S /TD - /P 304 0 R + /P 148 0 R /A [<< /O /Table /Headers [(U1x2y0)] @@ -3640,16 +1878,16 @@ endobj /BorderStyle [/Solid /None /None /None] /BorderThickness [1 0 0 0] >>] - /K [30 31 32] - /Pg 389 0 R + /K [108] + /Pg 270 0 R >> endobj -306 0 obj +151 0 obj << /Type /StructElem /S /TD - /P 304 0 R + /P 148 0 R /A [<< /O /Table /Headers [(U1x1y0)] @@ -3659,36 +1897,16 @@ endobj /BorderStyle [/Solid /None /None /None] /BorderThickness [1 0 0 0] >>] - /K [308 0 R 26 307 0 R 29] - /Pg 389 0 R + /K [107] + /Pg 270 0 R >> endobj -307 0 obj -<< - /Type /StructElem - /S /Strong - /P 306 0 R - /K [27 28] - /Pg 389 0 R ->> -endobj - -308 0 obj -<< - /Type /StructElem - /S /Strong - /P 306 0 R - /K [25] - /Pg 389 0 R ->> -endobj - -309 0 obj +152 0 obj << /Type /StructElem /S /TD - /P 304 0 R + /P 148 0 R /A [<< /O /Table /Headers [(U1x0y0)] @@ -3698,43 +1916,55 @@ endobj /BorderStyle [/Solid /None /None /None] /BorderThickness [1 0 0 0] >>] - /K [310 0 R] + /K [106] + /Pg 270 0 R >> endobj -310 0 obj -<< - /Type /StructElem - /S /Strong - /P 309 0 R - /K [24] - /Pg 389 0 R ->> -endobj - -311 0 obj +153 0 obj << /Type /StructElem /S /THead - /P 272 0 R - /K [312 0 R] + /P 141 0 R + /K [154 0 R] >> endobj -312 0 obj +154 0 obj << /Type /StructElem /S /TR - /P 311 0 R - /K [315 0 R 314 0 R 313 0 R] + /P 153 0 R + /K [158 0 R 157 0 R 156 0 R 155 0 R] >> endobj -313 0 obj +155 0 obj << /Type /StructElem /S /TH - /P 312 0 R + /P 154 0 R + /ID (U1x3y0) + /A [<< + /O /Table + /Scope /Column + /Headers [] + >> << + /O /Layout + /BorderColor [0 0 0] + /BorderStyle [/None /Solid /None /None] + /BorderThickness [0 1 0 0] + >>] + /K [105] + /Pg 270 0 R +>> +endobj + +156 0 obj +<< + /Type /StructElem + /S /TH + /P 154 0 R /ID (U1x2y0) /A [<< /O /Table @@ -3746,16 +1976,16 @@ endobj /BorderStyle [/None /Solid /None /None] /BorderThickness [0 1 0 0] >>] - /K [23] - /Pg 389 0 R + /K [104] + /Pg 270 0 R >> endobj -314 0 obj +157 0 obj << /Type /StructElem /S /TH - /P 312 0 R + /P 154 0 R /ID (U1x1y0) /A [<< /O /Table @@ -3767,16 +1997,16 @@ endobj /BorderStyle [/None /Solid /None /None] /BorderThickness [0 1 0 0] >>] - /K [22] - /Pg 389 0 R + /K [103] + /Pg 270 0 R >> endobj -315 0 obj +158 0 obj << /Type /StructElem /S /TH - /P 312 0 R + /P 154 0 R /ID (U1x0y0) /A [<< /O /Table @@ -3788,124 +2018,563 @@ endobj /BorderStyle [/None /Solid /None /None] /BorderThickness [0 1 0 0] >>] - /K [21] - /Pg 389 0 R + /K [102] + /Pg 270 0 R >> endobj -316 0 obj +159 0 obj << /Type /StructElem /S /P - /P 22 0 R - /K [16 317 0 R 18 19 20] - /Pg 389 0 R + /P 14 0 R + /K [160 0 R] >> endobj -317 0 obj +160 0 obj << /Type /StructElem /S /Strong - /P 316 0 R - /K [17] - /Pg 389 0 R + /P 159 0 R + /K [101] + /Pg 270 0 R >> endobj -318 0 obj -<< - /Type /StructElem - /S /H2 - /P 22 0 R - /T (1. Executive summary) - /K [15] - /Pg 389 0 R ->> -endobj - -319 0 obj +161 0 obj << /Type /StructElem /S /P - /P 22 0 R - /K [325 0 R 2 324 0 R 4 323 0 R 6 322 0 R 8 9 321 0 R 11 320 0 R 13 14] - /Pg 389 0 R + /P 14 0 R + /K [170 0 R 82 169 0 R 84 168 0 R 86 167 0 R 88 166 0 R 90 165 0 R 92 164 0 R 95 163 0 R 97 98 162 0 R 100] + /Pg 270 0 R >> endobj -320 0 obj +162 0 obj << /Type /StructElem /S /Strong - /P 319 0 R - /K [12] - /Pg 389 0 R + /P 161 0 R + /K [99] + /Pg 270 0 R >> endobj -321 0 obj +163 0 obj << /Type /StructElem /S /Strong - /P 319 0 R - /K [10] - /Pg 389 0 R + /P 161 0 R + /K [96] + /Pg 270 0 R >> endobj -322 0 obj +164 0 obj << /Type /StructElem - /S /Strong - /P 319 0 R - /K [7] - /Pg 389 0 R + /S /Em + /P 161 0 R + /K [93 94] + /Pg 270 0 R >> endobj -323 0 obj +165 0 obj << /Type /StructElem /S /Code - /P 319 0 R + /P 161 0 R + /K [91] + /Pg 270 0 R +>> +endobj + +166 0 obj +<< + /Type /StructElem + /S /Code + /P 161 0 R + /K [89] + /Pg 270 0 R +>> +endobj + +167 0 obj +<< + /Type /StructElem + /S /Code + /P 161 0 R + /K [87] + /Pg 270 0 R +>> +endobj + +168 0 obj +<< + /Type /StructElem + /S /Code + /P 161 0 R + /K [85] + /Pg 270 0 R +>> +endobj + +169 0 obj +<< + /Type /StructElem + /S /Code + /P 161 0 R + /K [83] + /Pg 270 0 R +>> +endobj + +170 0 obj +<< + /Type /StructElem + /S /Strong + /P 161 0 R + /K [81] + /Pg 270 0 R +>> +endobj + +171 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [175 0 R 74 75 174 0 R 77 173 0 R 79 172 0 R] + /Pg 270 0 R +>> +endobj + +172 0 obj +<< + /Type /StructElem + /S /Em + /P 171 0 R + /K [80] + /Pg 270 0 R +>> +endobj + +173 0 obj +<< + /Type /StructElem + /S /Strong + /P 171 0 R + /K [78] + /Pg 270 0 R +>> +endobj + +174 0 obj +<< + /Type /StructElem + /S /Code + /P 171 0 R + /K [76] + /Pg 270 0 R +>> +endobj + +175 0 obj +<< + /Type /StructElem + /S /Strong + /P 171 0 R + /K [73] + /Pg 270 0 R +>> +endobj + +176 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [178 0 R 68 69 177 0 R 71 72] + /Pg 270 0 R +>> +endobj + +177 0 obj +<< + /Type /StructElem + /S /Strong + /P 176 0 R + /K [70] + /Pg 270 0 R +>> +endobj + +178 0 obj +<< + /Type /StructElem + /S /Strong + /P 176 0 R + /K [67] + /Pg 270 0 R +>> +endobj + +179 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [182 0 R 61 62 63 181 0 R 65 180 0 R] + /Pg 270 0 R +>> +endobj + +180 0 obj +<< + /Type /StructElem + /S /Em + /P 179 0 R + /K [66] + /Pg 270 0 R +>> +endobj + +181 0 obj +<< + /Type /StructElem + /S /Strong + /P 179 0 R + /K [64] + /Pg 270 0 R +>> +endobj + +182 0 obj +<< + /Type /StructElem + /S /Strong + /P 179 0 R + /K [60] + /Pg 270 0 R +>> +endobj + +183 0 obj +<< + /Type /StructElem + /S /H2 + /P 14 0 R + /T + /K [58 59] + /Pg 270 0 R +>> +endobj + +184 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [186 0 R 54 55 185 0 R 57] + /Pg 270 0 R +>> +endobj + +185 0 obj +<< + /Type /StructElem + /S /Strong + /P 184 0 R + /K [56] + /Pg 270 0 R +>> +endobj + +186 0 obj +<< + /Type /StructElem + /S /Strong + /P 184 0 R + /K [53] + /Pg 270 0 R +>> +endobj + +187 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [190 0 R 46 47 189 0 R 49 50 188 0 R 52] + /Pg 270 0 R +>> +endobj + +188 0 obj +<< + /Type /StructElem + /S /Strong + /P 187 0 R + /K [51] + /Pg 270 0 R +>> +endobj + +189 0 obj +<< + /Type /StructElem + /S /Code + /P 187 0 R + /K [48] + /Pg 270 0 R +>> +endobj + +190 0 obj +<< + /Type /StructElem + /S /Strong + /P 187 0 R + /K [45] + /Pg 270 0 R +>> +endobj + +191 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [193 0 R 41 42 192 0 R 44] + /Pg 270 0 R +>> +endobj + +192 0 obj +<< + /Type /StructElem + /S /Strong + /P 191 0 R + /K [43] + /Pg 270 0 R +>> +endobj + +193 0 obj +<< + /Type /StructElem + /S /Strong + /P 191 0 R + /K [40] + /Pg 270 0 R +>> +endobj + +194 0 obj +<< + /Type /StructElem + /S /H2 + /P 14 0 R + /T + /K [38 39] + /Pg 270 0 R +>> +endobj + +195 0 obj +<< + /Type /StructElem + /S /BlockQuote + /P 14 0 R + /K [202 0 R 196 0 R] +>> +endobj + +196 0 obj +<< + /Type /StructElem + /S /P + /P 195 0 R + /K [26 201 0 R 28 199 0 R 31 198 0 R 33 197 0 R 35 36 37] + /Pg 270 0 R +>> +endobj + +197 0 obj +<< + /Type /StructElem + /S /Code + /P 196 0 R + /K [34] + /Pg 270 0 R +>> +endobj + +198 0 obj +<< + /Type /StructElem + /S /Strong + /P 196 0 R + /K [32] + /Pg 270 0 R +>> +endobj + +199 0 obj +<< + /Type /StructElem + /S /Code + /P 196 0 R + /K [200 0 R] +>> +endobj + +200 0 obj +<< + /Type /StructElem + /S /Strong + /P 199 0 R + /K [29 30] + /Pg 270 0 R +>> +endobj + +201 0 obj +<< + /Type /StructElem + /S /Strong + /P 196 0 R + /K [27] + /Pg 270 0 R +>> +endobj + +202 0 obj +<< + /Type /StructElem + /S /H2 + /P 195 0 R + /T + /K [24 25] + /Pg 270 0 R +>> +endobj + +203 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [207 0 R 10 11 12 206 0 R 14 15 16 205 0 R 18 19 20 21 204 0 R 23] + /Pg 270 0 R +>> +endobj + +204 0 obj +<< + /Type /StructElem + /S /Strong + /P 203 0 R + /K [22] + /Pg 270 0 R +>> +endobj + +205 0 obj +<< + /Type /StructElem + /S /Strong + /P 203 0 R + /K [17] + /Pg 270 0 R +>> +endobj + +206 0 obj +<< + /Type /StructElem + /S /Strong + /P 203 0 R + /K [13] + /Pg 270 0 R +>> +endobj + +207 0 obj +<< + /Type /StructElem + /S /Strong + /P 203 0 R + /K [9] + /Pg 270 0 R +>> +endobj + +208 0 obj +<< + /Type /StructElem + /S /P + /P 14 0 R + /K [212 0 R 2 211 0 R 4 210 0 R 6 209 0 R 8] + /Pg 270 0 R +>> +endobj + +209 0 obj +<< + /Type /StructElem + /S /Strong + /P 208 0 R + /K [7] + /Pg 270 0 R +>> +endobj + +210 0 obj +<< + /Type /StructElem + /S /Code + /P 208 0 R /K [5] - /Pg 389 0 R + /Pg 270 0 R >> endobj -324 0 obj +211 0 obj << /Type /StructElem /S /Strong - /P 319 0 R + /P 208 0 R /K [3] - /Pg 389 0 R + /Pg 270 0 R >> endobj -325 0 obj +212 0 obj << /Type /StructElem /S /Strong - /P 319 0 R + /P 208 0 R /K [1] - /Pg 389 0 R + /Pg 270 0 R >> endobj -326 0 obj +213 0 obj << /Type /StructElem /S /H1 - /P 22 0 R - /T + /P 14 0 R + /T /K [0] - /Pg 389 0 R + /Pg 270 0 R >> endobj -327 0 obj +214 0 obj << /Type /PageLabel /S /D @@ -3913,7 +2582,7 @@ endobj >> endobj -328 0 obj +215 0 obj << /Type /PageLabel /S /D @@ -3921,7 +2590,7 @@ endobj >> endobj -329 0 obj +216 0 obj << /Type /PageLabel /S /D @@ -3929,58 +2598,34 @@ endobj >> endobj -330 0 obj -<< - /Type /PageLabel - /S /D - /St 4 ->> -endobj - -331 0 obj -<< - /Type /PageLabel - /S /D - /St 5 ->> -endobj - -332 0 obj -<< - /Type /PageLabel - /S /D - /St 6 ->> -endobj - -333 0 obj +217 0 obj << /Type /Font /Subtype /Type0 - /BaseFont /GWPTFZ+LibertinusSerif-Bold-Identity-H + /BaseFont /CKEULS+LibertinusSerif-Bold-Identity-H /Encoding /Identity-H - /DescendantFonts [334 0 R] - /ToUnicode 337 0 R + /DescendantFonts [218 0 R] + /ToUnicode 221 0 R >> endobj -334 0 obj +218 0 obj << /Type /Font /Subtype /CIDFontType0 - /BaseFont /GWPTFZ+LibertinusSerif-Bold + /BaseFont /CKEULS+LibertinusSerif-Bold /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> - /FontDescriptor 336 0 R + /FontDescriptor 220 0 R /DW 0 - /W [0 0 500 1 1 545 2 2 325 3 3 489 4 4 358 5 5 250 6 6 716 7 7 521 8 8 322 9 9 427 10 10 428 11 11 558 12 12 742 13 13 734 14 14 505.99997 15 15 730 16 16 598 17 17 581 18 18 551 19 19 256 20 20 504 21 21 456 22 22 614 23 23 561 24 24 391 25 26 514 27 27 619 28 28 529 29 29 514 30 30 244 31 31 609 32 32 561 33 33 905 34 34 616 35 35 542 36 37 514 38 38 637 39 40 514 41 41 700 42 42 613 43 43 358 44 45 732 46 46 641 47 47 777 48 48 514 49 49 244 50 50 652 51 51 316 52 52 680 53 53 740 54 54 706 55 55 514 56 56 740 57 57 730 58 59 315 60 60 817 61 61 729 62 62 514 63 63 899 64 64 736 65 65 577 66 66 537 67 67 367] + /W [0 0 500 1 1 545 2 2 325 3 3 489 4 4 358 5 5 250 6 6 716 7 7 521 8 8 322 9 9 427 10 10 428 11 11 558 12 12 742 13 13 730 14 14 598 15 15 505.99997 16 16 616 17 17 561 18 18 734 19 19 358 20 20 730 21 21 367 22 22 256 23 23 504 24 24 551 25 25 456 26 26 581 27 27 732 28 28 609 29 29 740 30 30 899 31 31 654 32 32 624 33 33 577 34 34 1028 35 35 641 36 36 561 37 37 619 38 38 529 39 39 316 40 40 706 41 41 700 42 42 905 43 43 542 44 44 777 45 45 514 46 46 244 47 47 740 48 50 514 51 51 315 52 52 514 53 53 637 54 54 315 55 56 514 57 57 732 58 58 614 59 59 613 60 60 514 61 61 391 62 63 514 64 64 652 65 65 680 66 66 1154 67 67 537] >> endobj -335 0 obj +219 0 obj << /Length 13 /Filter /FlateDecode @@ -3990,23 +2635,23 @@ x endstream endobj -336 0 obj +220 0 obj << /Type /FontDescriptor - /FontName /GWPTFZ+LibertinusSerif-Bold + /FontName /CKEULS+LibertinusSerif-Bold /Flags 131078 - /FontBBox [0 -238 1135 720] + /FontBBox [-1 -238 1135 720] /ItalicAngle 0 /Ascent 894 /Descent -246 /CapHeight 645 /StemV 168.6 - /CIDSet 335 0 R - /FontFile3 338 0 R + /CIDSet 219 0 R + /FontFile3 222 0 R >> endobj -337 0 obj +221 0 obj << /Length 1552 /Type /CMap @@ -4048,61 +2693,61 @@ endcodespacerange <000A> <0072> <000B> <0079> <000C> <2014> -<000D> <0044> -<000E> <0061> -<000F> <0051> -<0010> <0075> -<0011> <0070> -<0012> <006F> -<0013> <003A> -<0014> <0053> -<0015> <0063> -<0016> <0050> -<0017> <0064> -<0018> <0066> -<0019> <0038> -<001A> <0030> -<001B> <0068> -<001C> <0076> -<001D> <0031> -<001E> <002E> -<001F> <0045> -<0020> <0078> -<0021> <006D> -<0022> <006E> -<0023> <0062> -<0024> <0039> -<0025> <0037> -<0026> <0025> -<0027> <0032> -<0028> <0033> +<000D> <004F> +<000E> <0075> +<000F> <0061> +<0010> <006E> +<0011> <0064> +<0012> <0044> +<0013> <002D> +<0014> <0051> +<0015> <0049> +<0016> <003A> +<0017> <0053> +<0018> <006F> +<0019> <0063> +<001A> <0070> +<001B> <0055> +<001C> <0045> +<001D> <0041> +<001E> <004D> +<001F> <0042> +<0020> <0059> +<0021> <004C> +<0022> <0057> +<0023> <00660069> +<0024> <0078> +<0025> <0068> +<0026> <0076> +<0027> <002F> +<0028> <0043> <0029> <0056> -<002A> <006B> -<002B> <00AD> -<002C> <0047> -<002D> <0055> -<002E> <00660069> -<002F> <0077> -<0030> <0034> -<0031> <002C> -<0032> <0054> -<0033> <002F> -<0034> <0066006C> -<0035> <0041> -<0036> <0043> -<0037> <0036> -<0038> <004E> -<0039> <004F> -<003A> <0028> -<003B> <0029> -<003C> <0048> -<003D> <0026> -<003E> <0035> -<003F> <004D> -<0040> <004B> -<0041> <004C> -<0042> <002B> -<0043> <0049> +<002A> <006D> +<002B> <0062> +<002C> <0077> +<002D> <0031> +<002E> <002E> +<002F> <004E> +<0030> <0037> +<0031> <0035> +<0032> <0038> +<0033> <0028> +<0034> <0039> +<0035> <0025> +<0036> <0029> +<0037> <0032> +<0038> <0036> +<0039> <0047> +<003A> <0050> +<003B> <006B> +<003C> <0033> +<003D> <0066> +<003E> <0034> +<003F> <0030> +<0040> <0054> +<0041> <0066006C> +<0042> <2192> +<0043> <002B> endbfchar endcmap CMapName currentdict /CMap defineresource pop @@ -4113,95 +2758,84 @@ end endstream endobj -338 0 obj +222 0 obj << - /Length 7372 + /Length 7379 /Filter /FlateDecode /Subtype /CIDFontType0C >> stream -xyy\W6-2mBYUD"4 V44-;'bbLEgLL2s:_Ff2^Ωs=s.ix'o - %E%Ņn Od]('jV?xwO.]N}ɩw NNIϿp,./99s8<DDQ a kcBB<[ _[`BEc. -LX?iL RfkqJO..:&$p38NNNNkQ5A8{vif= pv?k|!w:S9v_'Ln"5{IE.k]w-&܋ ]'coaU?\5ǝnOFb !{a .Srxx܋3_iy|/{g`g 8dz{+y_a`2qcr0^#_‘ sT6(^x6aw@B]㏔$hAm4 -T -BcQ2!L&إg'Wi߳.TYf1 FIaw)9L<xo %2J| qIbԉfCsYqpe6˥F.H5GpZ _EН]ӭ9q92hTˌ-F>Ե\}6vZ2SeOBx0k+k/t@iryk3Gm/r4kOD|mK)qMTPy\@ִƾ-SgT~ |כ0_γxz"+5͠)Dh~XY2Tђ]I8[[[JʌfJH"E|Wjv Mil\E]0*ur -JFrي !b=C mvtx08 ޛ"}n 9R'%XƯ'O`Wshl&w~ ΐt3cJ&_B=F!{c?ig6R -VVM^GeC.#!%@vXbx mA଼ -s 9Ć^{$Nt`{xluZ?41 KꋥUb|$D.ӜFa92)DpM~AG o| -h 2:Lv1 -iiY@bCz]W]M GRfSSϓttX\EbW=P+$5 W%"7lQX>/:3vs5A)!J-;$)%lc:,3[%J2 9gvdג]34d-t7DQxxexGwuKu}BA߄HJ\;Dui xw<q6\[xJllw`L)X'y5]V;*T2Mi~Z 0kaw [+ 1R*ʬ5 -4&ޜ0zu_l Tcu8rKRIV]å -ZPm){{<݀+J]e:y%馣g@zsNuy$bj{݁[-#YGdp#nޑ 9:8orKuӍsh=,*3mGfq(_qvK/ "psf`_i3+ @f Q(1Grh3_jT\@* 4|LO["#Ut1_ӺS6N&25&yj>S45JUFnC֑!?\< &a?LVI«w9sAts=dЈPZS*D!cH'[ )q#Q]j ;фőg*9 -8" ..m 0u4w( Jt e6aQ2rY/wEZr -М30\aklk `p'''Jv}k'<+fޛvK~"OE$ճFHAODwNbؖ'(Tc"M!`!W -)Nynih9GKlll*=v]*RT CS'p1C3[PUE%Ep:1z8(BGj$dcEUCӈ&|bG{0ޓv<3b?F ϖ t' -(BQ危Q5t*ɘ^ML%yzSDh^, T9#7"@צF^|ӌGƤxCpE\4m[gnJ&k.w^2TS}4E@m~/MJ^jTPqE[DZ -o]/y¯kz5GusR90۹ԿpXm$cLc/׼DRlTޑwʿW=Iݾ$uS-Mo5?tрiPjLf(k$~;WyIe54$ gaӔkBlx ~0 v0Voti} Re|Xc҇)l DS&NN†G|9Ą<VҔ%ڽ])y~W-m~Hldv{ -Kck[) -Y/.@VadHAxqlVA _Fk-xM]Ǡ6fOTER"`)UGȎgU5ZFlm#Cֈ"vX^Y&kl}R8?:rqCqϯ(-x}= E)A9,=EN/,2`8DQQEag=$83O&Gҝ!>f/W8=DKpCxySo4 G%V$ i'@{; X Ηpe&$\ r Gт}GxxRF mޡ@#4"*\=r[NwqL- y?e绞ac#㰇MG<etZ/ -P%wFM^ʬOZI3>Y(LVe-~ԮCTKo;P-ڿ}׎Iyxp~\Q2%e7W_KcCFCHK#qU3ٳeeɔڃ4&:g%z-ƺ4oN?9PCޠ*QRJ'2'(%NHOJ)R#OFa*:a,)><"SSmeT@T4 6oں^M =&D+c#p$O K#Ohi?}&o`3=_L1W&.4쇸,w-@P{F}\ q5>RLJMg-C$L@{~ƾ*:Kt_D̃QTDA -+F -aNa[Mgl^y1!F2LD;oG&BbSRsp/Uߧ{3s-Mb?힒W(+",Qٍ]2 'ܱ564_1=b `DZWɎ -LL$ 2Do#큈6hvj+*-9hq)Yi%-vi`Eݵ ܅6{9o?}j/$'hiT͇͵:hTWɌhƗog )ˏ%;a1cuj?Q6Dۅhm1.D]Ռ'Gdq aK >1a ^M(@W SczI8!`IX{< dh?2";ZB OC;>euԾ^g›R,4/[d2GLv63UOl-_>|q&R(s/ԕ7" -[CV8|e7ywZH0OtqL~XpZ@ ,9D{i!$0 qcOas2 V -Ç A.O;3 -/c Sr_#|l4r3 -( -7ƕ&f.kvhFjK{Vs'o=thp*ny>ٳl)VBGc \ tlo81ҳ=[kmSR1svhst#B%9  PejQ Sk)k޳SXaҰ-ևxHpUla{tRI8q8鎦Z9xMgۻIs $kswvƺ!全uڪBv Fnl[B_'tg;wIJRҌ`2$-.1pBU-i?G´o.? M<)WO;WxIe'[t7 nd@QDnͧydoZw-1 \<e -F@+^4=L2{OnDK #h+mQU˶f4j*+0n0 +Ic>_Oc jyBx_es\_-ş9ws<^[M(5J=UԷw0'bQ4fXMDLcMNʄiDLq{PMjb,lx:Tٟ$cGO{XD2g׶SϫJMI bmJFs)L=ai4d5ZVheX +/hK `x0KE +xzy\Sg7Ll^{ZZqK "@dK @EpVKNkΌ3q\a޾(ny $7yN{']8), 8&.,2>vgpLX9tžBMtڇnIAק3\\\M~Ņ3\\~m?f9}+6(* xcPpd\X\⺨#1aB<<[/Z ]O-&*<80sm|\hTLq.l|p6k,;[̋x3"A _N7I&w[;/L~})_|n)S~c7Ŋn~JL 2)o}g/}I/X=sؙ6/m?{ggjdzmjpXX,Q{w>CW ˃| 8r; -_}灳d JbEWሢt,䳛[]k;h+&MXBҁӗbQVu^nI{.pV{9uX +)k- >=<:ƺPND Kꍦ5xIC5Žye(vȈ<HEE/ 4 ?zʏVSUAd}G5ߔGKKz8~VDV4wCQa5Xd%s +j,T瞨{t :H'ޫ &7oҖ*MSJb͙W_-n?Vb CO<\! i~qHKfS24 +T *;4]EK@X2nd#qJ0f[$2QaYc_4If$2 =NY31!VP.%zOdPU-17YKt85-1%)dp|4ՐNسlhΧ֚CNZƷ9z<:|zrf*2 Q{긲0k 6ZNNk4xvIGS*_Bn4'h4EOZ͚Y۔^xnp`L)X'Չ]`{is+,iZ0kQ[*L1Sƪ +ruFќ0] 6r%7)‘/IJ$k[ ib +|X08Wwtu;h$)#n٠Y|ۿ8(uNK12D5/!)r'2,pϑ.JgnOx V/^|/tyKXS$pE\4m[醾`:2eڕ_J2W|4=tTWЈgj3t6j9 f/5{e\{7~$`3rWCyd@kD-0L.Coy=ټz}t%JsN4Bn[n5F5{v)!R,yAʩȾcKvDؗ7jjj \ tㅨ?ٓ朅ٮg M m0qpw;;yX X7ldn%)^@mK ;HDDG[}#7ŽFz݁;}a[0g)%$T*0 Baݧ Rs}EtK}CĉF*A`'NCMMo֬XD*9UgiJ;Xz7xB c1ϔvRǻ 0u]4wH *l6baQrrZ&WRx-|E~8 o~{uޏ__?B shoϘ-b=_SjHG4O@im u=Iaǘ5/%Mާ$UIuW٩VHRT?}zrs>U-X'۹͋O(!7M2]ݳO[5Ma?Hw|K/;In#GnX9>4f2+HВCLf"QXZuӵw1R"$G(#ykh("Fs7G(=^Sk|&k( YqlޗH=Zªa.W+u7mܴ\}O- IWW4>2AmP܈`T'M1wmi*3&ptH5-vrlAWQq{dvIYg`U$ޣrn!Wa&9#x 8 5`,֦q >z1dc81 򣼷j0_a޽eVHUQPK1kMR38w_Nɉ$ЂW0ߕdR[S m6&q1f.OJDYYڌ™I$i =Á&0-]s.ެpwĢH}V^pRLҲ sN *Gnl9?:M#X' 9Q9q&wh,Æ+Ҧ9hykE7{ av>6-dhrIkB+L?:* ml9\LGM#_3aLh2%i!n%;[֣*d}-]4CL(sw?Pijyj{5ɊHMFx0bmYc,U͵eE tQ^nrC!~KB3i?˨.P.o='Zc+Bh4&w`F `v`0(.P壢R;8SZ9&}` .ǚ휔9̄<\vڒ.ܽJV*lk"IM6V:R=f׾TH` }aVȚňG .{7v;x\V/^|A16s:[ y;$t_|d"*ڛ_ыdCAP/V2%j+Uv4՚CSGkwXN]%3]Iɗb*xRĚcK5i` +;U璶\k~N W`!q+yE +DҰH5ɾVR`ed\^y- B(WV_ i]Z"I&_Ev:KQYw*c`!š(|j} + DâlFZ ⯠鹉jiJ,4LБD?1vReNط-:U 4Z;uufgSZʖi̐TqԖwb8e''[ͬER藺cney0@4fpI\Ž4k?z?f䁭*/m'^\t-yߎт|wL> (uu=.g &o[&KVj. nILIhrhaP1#,M=h:7,sG+kO+C"G [0՘Hf|_cSY; w w'#W}y[duvgw׻*8fi@ Q%ߵ̸ ŃauTTMEYh z;9]@Zpw\t 9hE % MtF #EF[Y.|o6 ;hF<6XI$ߍ> . }-Atm N JhWK X;Pݹ-sܼsρI𐜘DJbh ??=K0kAyq]F)Yמ]N՜Lc_cr8HҘtPc&y\Ac]p >? @u]MT̯T Eq) 2 )S[_? w+!Ia/!6>"@v4TM~ΦvE` +Y?)l-7i9vG=Ǜ7m}WMa9zMEL3/-o8a#߉(h;|Eߝ`:$0{!ڭ/0B'cKRsw,K^\Кe9FT̲LJi2j*HX[ hut4<1+~~AqUeNQ tmu\S3M +9~<> HG/Fl4Y06GGQ]XuT:h=M;iCxb\/X[[2ާUv:Xg̡֬ [ +V!WJZW&C0hZ'Jv&Ć(鬼HZ![QT|zrBw B:¥N 9D{q@۫lki\=i2tF9Icb2H|Rح耂~u+ u35صabs.L#?]MUu%uVA9`ѡjp@pkR`Vf?lʗH|e&3E%0Y> endobj -340 0 obj +224 0 obj << /Type /Font /Subtype /CIDFontType0 - /BaseFont /AUKGYS+LibertinusSerif-Regular + /BaseFont /KLJQAH+LibertinusSerif-Regular /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> - /FontDescriptor 342 0 R + /FontDescriptor 226 0 R /DW 0 - /W [0 0 500 1 1 250 2 4 465 5 5 338 6 6 465 7 7 298 8 8 316 9 9 538 10 10 447 11 11 390 12 12 271 13 13 542 14 14 500 15 15 264 16 16 372 17 17 515 18 18 504 19 19 310 20 20 428 21 21 505.99997 22 22 298 23 23 485 24 24 457 25 25 519 26 26 323 27 27 540 28 28 465 29 29 512 30 30 497 31 31 1130 32 32 596 33 33 531 34 34 685 35 35 541 36 36 485 37 37 550 38 38 790 39 39 493 40 40 220 41 41 597 42 42 220 43 43 490 44 44 560 45 45 637 46 46 297 47 47 236 48 48 730 49 49 588 50 51 465 52 52 701 53 53 268 54 54 747 55 55 465 56 56 742 57 57 951 58 58 465 59 59 236 60 60 465 61 61 695 62 62 646 63 63 652 64 64 449 65 65 550 66 66 424 67 67 839 68 68 661 69 69 473 70 70 575 71 71 660 72 72 604 73 74 375 75 75 702 76 76 637 77 77 582 78 78 528 79 79 272 80 80 250 81 81 702 82 82 699 83 83 465 84 84 557 85 85 503.00003 86 86 587 87 87 550] + /W [0 0 500 1 1 250 2 4 465 5 5 338 6 6 465 7 7 250 8 8 298 9 9 497 10 10 447 11 11 372 12 12 271 13 13 560 14 14 505.99997 15 15 264 16 16 298 17 17 465 18 18 428 19 19 390 20 20 1130 21 21 538 22 22 550 23 23 490 24 24 542 25 25 504 26 26 747 27 27 493 28 28 512 29 29 519 30 30 323 31 31 457 32 32 310 33 33 316 34 34 515 35 35 531 36 37 220 38 38 839 39 39 790 40 40 597 41 41 587 42 42 500 43 43 742 44 44 541 45 45 701 46 46 268 47 47 236 48 48 646 49 49 702 50 50 550 51 51 557 52 52 236 53 53 485 54 55 375 56 56 297 57 57 695 58 58 661 59 59 485 60 60 637 61 61 575 62 62 660 63 63 528 64 64 272 65 65 604 66 67 465 68 68 250 69 69 465 70 70 702 71 71 699 72 72 652 73 73 550 74 74 588 75 75 465 76 76 435 77 77 465 78 78 637 79 79 685 80 80 465 81 81 540 82 82 486] >> endobj -341 0 obj +225 0 obj << - /Length 11 + /Length 13 /Filter /FlateDecode >> stream -xA - +xA + endstream endobj -342 0 obj +226 0 obj << /Type /FontDescriptor - /FontName /AUKGYS+LibertinusSerif-Regular + /FontName /KLJQAH+LibertinusSerif-Regular /Flags 131078 /FontBBox [-48 -238 1072 736] /ItalicAngle 0 @@ -4209,14 +2843,14 @@ endobj /Descent -246 /CapHeight 658 /StemV 95.4 - /CIDSet 341 0 R - /FontFile3 344 0 R + /CIDSet 225 0 R + /FontFile3 228 0 R >> endobj -343 0 obj +227 0 obj << - /Length 1840 + /Length 1762 /Type /CMap /WMode 0 >> @@ -4243,94 +2877,89 @@ end def 1 begincodespacerange <0000> endcodespacerange -87 beginbfchar +82 beginbfchar <0001> <0020> <0002> <0032> <0003> <0030> <0004> <0036> <0005> <002D> <0006> <0038> -<0007> <0028> -<0008> <0074> -<0009> <0068> +<0007> <00B7> +<0008> <0028> +<0009> <0076> <000A> <0065> -<000B> <0073> +<000B> <0072> <000C> <0069> -<000D> <006E> -<000E> <0067> +<000D> <00660069> +<000E> <0064> <000F> <006C> -<0010> <0072> -<0011> <0079> -<0012> <006F> -<0013> <0066> -<0014> <0063> -<0015> <0064> -<0016> <0029> -<0017> <0046> -<0018> <0061> -<0019> <0070> -<001A> <002F> -<001B> <0066006C> -<001C> <0031> -<001D> <006B> -<001E> <0076> -<001F> <2192> -<0020> <00660074> -<0021> <0075> -<0022> <0047> -<0023> <0050> -<0024> <0053> -<0025> <002B> -<0026> <006D> -<0027> <0062> -<0028> <002E> -<0029> <0054> -<002A> <002C> -<002B> <0078> -<002C> <00660069> -<002D> <004B> -<002E> <0049> -<002F> <003A> -<0030> <0048> -<0031> <0042> -<0032> <0037> -<0033> <0035> -<0034> <0044> -<0035> <2019> -<0036> <0077> -<0037> <0034> -<0038> <2014> -<0039> <0057> -<003A> <0033> -<003B> <003B> -<003C> <0039> -<003D> <0041> -<003E> <0043> -<003F> <0056> -<0040> <007E> -<0041> <00D7> -<0042> <007A> -<0043> <004D> -<0044> <0055> -<0045> <00A7> -<0046> <0059> -<0047> <0058> -<0048> <005A> -<0049> <201C> -<004A> <201D> -<004B> <004F> -<004C> <0025> -<004D> <00660066> -<004E> <004C> -<004F> <006A> -<0050> <00A0> -<0051> <0051> -<0052> <004E> -<0053> <0023> -<0054> <0045> -<0055> <0071> -<0056> <0052> -<0057> <003D> +<0010> <0029> +<0011> <0031> +<0012> <0063> +<0013> <0073> +<0014> <2192> +<0015> <0068> +<0016> <003D> +<0017> <0078> +<0018> <006E> +<0019> <006F> +<001A> <0077> +<001B> <0062> +<001C> <006B> +<001D> <0070> +<001E> <002F> +<001F> <0061> +<0020> <0066> +<0021> <0074> +<0022> <0079> +<0023> <0075> +<0024> <002C> +<0025> <002E> +<0026> <004D> +<0027> <006D> +<0028> <0054> +<0029> <0052> +<002A> <0067> +<002B> <2014> +<002C> <0050> +<002D> <0044> +<002E> <2019> +<002F> <003B> +<0030> <0043> +<0031> <004F> +<0032> <002B> +<0033> <0045> +<0034> <003A> +<0035> <0046> +<0036> <201C> +<0037> <201D> +<0038> <0049> +<0039> <0041> +<003A> <0055> +<003B> <0053> +<003C> <004B> +<003D> <0059> +<003E> <0058> +<003F> <004C> +<0040> <006A> +<0041> <005A> +<0042> <0033> +<0043> <0034> +<0044> <00A0> +<0045> <0039> +<0046> <0051> +<0047> <004E> +<0048> <0056> +<0049> <00D7> +<004A> <0042> +<004B> <0023> +<004C> <003F> +<004D> <0037> +<004E> <0025> +<004F> <0047> +<0050> <0035> +<0051> <0066006C> +<0052> <005F> endbfchar endcmap CMapName currentdict /CMap defineresource pop @@ -4341,86 +2970,91 @@ end endstream endobj -344 0 obj +228 0 obj << - /Length 9475 + /Length 8546 /Filter /FlateDecode /Subtype /CIDFontType0C >> stream -xz|TUb"ÚH -(JY&HBz!Mz2L}33I&!=RĠ? Ⱥ~g23{Ͻ=m87wwww#C"b$D9$,9* l53O&3݈nJ}"鯳i/{g'=>g~m4O?Mw{ 7ww6o!1IIi+c"“4/ϟ;[Ceٍ B]817wm9Vfy~4;lk=,M|\5qB a=vv$RѮ x{65zn[{[1~3>/NO6DӼٓ:0_<yʰǰw]'SN.lS -BGt3AE%12 <7&MmڇL?،KG> _0|3Z0^{9p6U?wU?3C5Q`_|X -X l\  CXuRгN3/-+N`Ҵ→ -R4Aj2 -k/4H.i ,2|7 -TMd7u+Ud!%AVU a8Z={F#~utcڹN#Ջ6bpwހ*_?=F:|_FѮgm/ l%cYN\|/.dc|H xEnbQ4|޼ԉ.7_W!L;گNSV)OG<>`;+]'2L> {.󲢉0~F=s׻fF_OP$woTA"?j$ed'Mzv=vyIrh&]{!dM  K 8s&ۚU,VOO h}ߚ/]?JIJNT,ݏ.*=>RȨRֻ[8C&sW=:AӢ FofѠ1rǁ"x Yb\4ay x(W<ptAf9?KGfsd4%C٫c+:,ՋinJ|t^<'m8Ig@k"8ZZFNim+42y\KbY#+$92J̔PlVx~1؇rh"ZZT8$+iNQE KEbv!:)mm66qN*[t"g%5Qp|׆5$E(PeRdviE\K`_%e)y Ѩ4x¢Z&9!z)Fm6nt^U.swhsWg} 6-~HhL&<,@b>&R%j[> k!ziK- $?>8F*R]Es*Kz\&"yhئ2lρ`ؾ^ ]LpѠW) Vނ3TXʠA{sX 빘EӬnm\V[_ˑՈR`0-b2R)bTJ*PsYkP߫R.H&Ut\̦S*5yx(~2lEb.6jg%Z 9al趶f$.IkK$QB !O*ųlg+%rf#3_ZRRVZObʍ96mxŧ*.c3#ae5vqOd.ϟ*)-:>OKP*I*SL2}̪8/>GOVmLi6"WObb ]NߟWXu?QO:YSC慽^Ʈw؅rsvѩs,$xTxoZnP$V _åv -oHwUpz;->&+ xR!?~sˇU+_FոDDba|;r.GsU$VZK"K͊LJĎ bKv N"|Hf x(2o˰ D`-YOOa\2B%QQt9n5)a/4/IF"l>{헕>$ 8:eM[ ,TeJ)#ٗMe&d5"<&3:[XQ[fSֈm EZI-ЗŚ rƍ>>[E?" VWB>0,5}}}&[xva*GR2+,y\kƅ^T:am6Ύ`\ZZ%alNy8uKIÐrD2h&!3nW Oir}pb+#Xؿ|zC,©}GԐQDg2zi>n6 $LJ;-GţPT:aDy̅ dޯJLw׿H_1En All=8~~W6/Owa +0+:MR ɪrB.@ێUŅj?դ/V+ - -+n҂B0%ɈL$*IJѦfFj͐P\xnjv b]-;{\3 w ƈQKQhdʤ2#舑;S`]ȇ3 c! x΂$_I{wh+gu<,nfrz̓˽h Z&86=[`cgHIfq5^깉To7whD;  ˜Ȉ>8:^00}k5-:~Y[yyCyl vR<ɷof"WG7;c&RJpdFI}} b>kBgܶֈjqs6{r?Ǻqt&NEyDJk K,9f$&*X6jIYD7X,_]H,3skܗ-:" t+o(d[>}9ZֺķI(O#PFU|;*@U@YC]N"m,˶?Bpen}@;s3ܫ;֧nN(Rm nڎo;d2rybBȐ'q% Jj`McqL{dr4Etr+כMF٪WYr R#Loޥ!Q!_Y`O/{^{)JXQBS5[!~~LUb}}UU}}bULLbb PژNc'\O.sLT//-&-Db-nK+UD XR4^ !J%EE\JYq앲>v9ěw)ڒ1{nk=0Fі<^tMTw6?*YU#.Qbi@g{6!VK X9xg[_i,O `fG͆HO`d7]kQ{h:~؊uu7楓r_:r ڑWNyȻ ꨚQ'Q6O[W^F[PF*FF7RU4~LMyyFw?[zt͚a\gtt(\E\/XNY<2K#cO}.(9AR>͉q((H4g6e';g4@2`W]?q\@5]e94Svh+vL7;ThZ]UڠlwA,-.7pT,]^eq Vh2:.GjQ,{dF@^}mڶC"`:tDvyZVy \XŹZ;7D.=n*4d7r tݴzԡDRgR^{/fKw}tss,.l~ǹp`ܿ?*ܾHBB}(kh ~?6 -v Cdt/Gu>m{閖˳+mp*ki-MtOaF/{wXPM9_uØțQY6 qg`#;{eV("5ɵ:z1Дq;r+Krq5 -S3>;^/p_h&)5 3ge!A*H/ގf2T9Sg5$}w=ݍwb0vC &!PC+`]<5ʈN?r{|W؋8mKdZRxi,h L}t|f~xlG#Л8i ɃJg&k`2|^[Cz"U W-loM&k#4(9땛'Q}[hF7!ڢv.??Y1kҳA,vF{WpOf3I&ы7V#|_brdṻLrҪ)X@Ó54nnJ!HB -=Vm4}aVi$,Vu.AEX/d*abKY&a._XN3쮷mtCC{FJF3ugt4YkYbBĕ -QAbPC3rVWJqAJ7$l K\YU6uGXU+3fC"Dz%1HfjXj6v5g,cW uG<.*88!0XM@*Ja $E!$)V, e"z7>գ-kgj?xVM<݄'W~aѾhݽ ݂=3[DL\ C|_lw؅0ijvG|K( 1:sr ^k*.w5}ڵ$v3'}O-J(,ܿk(˨NoL *-61+m' K?v֡0_⍧9 tQq @k$]"KH, B(+/SF!.x%ךhQ!TPCw~EԱ &x(TGcヴ?&6.<>`]Ь{MVa6vqG/C(K/5&d wt5w!TRR(u*J$+O*q\k1X&P*ѽ74˘ \i^DX͈=9~ao++f5jRuUv^F^ZEUuAZі1B9mԄ:ts1._ʜv3vW1g=UKDlr< f 8m?13Tc+TH",i!f ‡]EC>{5t[K蠻njhŐJqB"J.&.zV%?/0YKI&sXnėvS=cRGX9I|7!f|CzX -aǢ5,f7 }AkXsyXizX®,ǎCYXm8zbKQ9 ;?fwZؗ:Y}"=Jt>DoӼrT9lweJ7qedwMT Ug:,mLL+a8vM:$b;*GIזCS $jGM=j +Y,8$:1"1maLlZ|DXxCO{yӧM𐧇zzU|ħ$%'LZcg|rmn},m73ΨSs/ #t =C~_惑tX0]{1{ϱǘparqZicWYcԘƤŕU Oy'qêĂ79؍Iek[׮ђh'LJh1)kួֹvYI +K뙎z:\gCTxrMY@v>׳veq=󙰨P!q_GbKw6s6Suzxz.ay{ͷ,2lo/_10 `׮m eEa2.¿) ش5.xNhԖ*T8}{5jBM6*(L%qtZi4*qXd"a,|PjlWcY֐[%f6N꛵I%xYAj,/ètZުi+FPmǗmK + "V-_/v74wYV#tGF<=x\ARvoN,! 2tH-N^6%!d:Ი aGTFb[‚/a +2P0,%\-;CDB1*D##IMrŇ?܂yB,q2 "Z<^(},/0h*b]W$zE/n/3Ef*nvVPCQK7\ a;YBEϥ"7W|>x'cuxiu~mϚ)Ϗ#}@gݤ͖:5d6Ż", PY γZi՚ZޭjSTA;{- 宲#W 6MאH;nCo|RwtF^A^(NoM%|L***v1R(ga~W fgk_z_æ!V .=e3ۯ ;"7D- 2^>yZf ش̍f'IkJ^l#UmPJ6٠W. Q[4$0ףJtep|%+HRV)v1 ICqo'XWMNz`U3fe`8./(U)$7';5SfYHf,Wh@:y*Lj8[s x~&Lt6***(>.uuzuu rZc5oB^Aᚱ(hʨ?J2}Y7Ef2'P?qNi7U1@U :2`"Qah FB%RQQ1Co4lꄈR-9ޠKߋwW!֢+41[T4WHU+ncR9f/Ca< ;ymU`]jkN<80DWELx'?O]6ځv3}z/H ?Dlƌ>( +Bb4ۡIK7(hVXqXh"GDsi$a )l)7h* +?TY(X$Wie3!Fڑg=\>>DѡGjޮ΃NS7VBR'3d@ װjBBgû<LǨSi, *;n4Z-fnrE= 3Cc"ISau/[f\VBWA +aBxfTkK4࢛Tsbm2K=$QM=i]Im-U2@ǺT kz󛎺zs~2T J'*!<7'1:2".5)#6'U͇x؝T?N"!pu)ޗ<&4frha yS;^|=eUJ?]n!;wTݾ7lD` +JKYPa]U?ѳqDOD id.A oJ{!@)Pˆ{ba Ip-pww.OhFmxSCQI)Ej*Wӥx4n'9msfI*7Q&t&ckru#\RSd2%a%9;̮V˅HVe +"9."1ߔ\VQ1)@~0 +9.֝^6,[Tq za'.zR]DrIsMtssD?>&͍%xSuRɛ#S`DetR0b>^h (;q-ߍ7%-%"rßh=y72ϼqy ZPj, ~$֥T*䔝/ثq2ou; ?@xNX2E[HQޮGiME`/>5G# RPjtė);T^m yuH}uHwHNi&]Rxt"jOf|w83pYgzeQ[]{H _Yܝ"| XtMX8.RM06ԺtSS:o.3rsIhzlQdҸ56c@BZmw͗v`KUa]%qq$vԜd>}ʗ|*"cI?&!?BVSM`M_<؋ó'.2 ~űiuIeJ)%^Xj/"*nO{ |dRIbL/GɾqBP_[+P5;ɞ'^8.Y5\y5vVTYgOlyߵe6!UŪ rsKYB6#HA z<0i-럘_uE7ԿSO@758j'Ex#{D^}}ADE T= $)#}oE + OgqnFω;&)ma7oTHRn-Z9GTxV~<}z?DϜU]eٌNi߰qk3(glEФg͟ѳVTLA%h=⠩h=Ϡ0؟w~C4.;wE>v!~AVdxEo~K +T ٠c+hoEh>7׬0,η0f[iZs2ibV6!it*"5S ~NV{ABa2ҮY |삲%ϣh5V˨QoƣK-Yн>1'/[_uY$]%nՑFEhSUTKƨ`acVS_.:s}_ ? *vj\b]EWyݩ{nm%ڸw+dә?W=ٱ_SOwmm]-'Z%R;ݽׂ].c֖VYtdj^\1 $7+%}cWV7)@KTn{Ol-NT +U6ىE3:(?*xfoSu:?o,8B0#SX:Ćz=0o0+pA#BTH!#t(9-͌d(ξ_xok+'44;!;cN-칦+Cue%MO[LNU_pY&(q^B{j$%q2,*+i(Rk9Gbt (E2lh`J{Wyp&A CҠv9h(911;\͇E->Ns'sMOw/<>sЅEFBd2Kv1A%&;Z[Յ F!"Y-D|%[Q!TP]%:٨أ.Rԯ1(N+Z' #s?vw?'P`2|OHx jaSLB"r +Ul-;O[}P*11U]H؎F"BRjޤ$0ݬV(gY-`<&2eRBy݈ز#gjhPRmӥ*\ "hzZf$?hQu^o +կtk Nf~&=_jzҸ_jh SBW#PLCIt]գV)L9pF<$Rћ$zJs +pIrJZtCVq~]m#T}V=b61֒?61'ݬf:5B!{:Q⠱c7! <995#JQy"5ǽJRy-yEB%Q^GLٞeM;OW`T|fބlhvkyfB+J|Gs^B3uX/qh\G7&n065/O +vۭ*D@}᧿$DK`N{Y4v?GkV;9t\^1lChflOV LھJ'%a{?^O*I(h[qR`$!1w9ҁC+T p 0: h$a0y^px^HP_4N8U4o }h:ZÃtcCʨ {kw̨$x]ٶh /Vv1Y4zC&*j6+ƆϡOxk>­%n ZA\K4Z™ʕ!cbN#s`87-4qt7 ev;O-b痗eN 7y/3:(x{rx OnVhU:+D> +>JH W +K@`7UquUM:ݖ\4<|NKErxJw\Uc3ez"G܈<>TSZ5IJV6VFKeNS.S 0ADN $K!%vit~ pŢW6:V +$ eјIqw;HԮLf*sjG!' r~N^7Onͱ˭0[v-X]JH˕]M#fK'0tBAuۧK'0F?MfC SFܪt!sO&ﻜ1*JJ+[Λ4vu=TkYq4gL,& dτrfm6 endstream endobj -345 0 obj +229 0 obj << /Type /Font /Subtype /Type0 - /BaseFont /HVKUYV+DejaVuSansMono + /BaseFont /WQXYSX+DejaVuSansMono /Encoding /Identity-H - /DescendantFonts [346 0 R] - /ToUnicode 349 0 R + /DescendantFonts [230 0 R] + /ToUnicode 233 0 R >> endobj -346 0 obj +230 0 obj << /Type /Font /Subtype /CIDFontType2 - /BaseFont /HVKUYV+DejaVuSansMono + /BaseFont /WQXYSX+DejaVuSansMono /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> - /FontDescriptor 348 0 R + /FontDescriptor 232 0 R /DW 0 /CIDToGIDMap /Identity - /W [0 59 602.0508] + /W [0 45 602.0508] >> endobj -347 0 obj +231 0 obj << - /Length 13 + /Length 14 /Filter /FlateDecode >> stream -x ># +x endstream endobj -348 0 obj +232 0 obj << /Type /FontDescriptor - /FontName /HVKUYV+DejaVuSansMono + /FontName /WQXYSX+DejaVuSansMono /Flags 131077 /FontBBox [0 -235.83984 602.0508 765.1367] /ItalicAngle 0 @@ -4428,14 +3062,14 @@ endobj /Descent -240.23438 /CapHeight 759.7656 /StemV 95.4 - /CIDSet 347 0 R - /FontFile2 350 0 R + /CIDSet 231 0 R + /FontFile2 234 0 R >> endobj -349 0 obj +233 0 obj << - /Length 1432 + /Length 1236 /Type /CMap /WMode 0 >> @@ -4462,7 +3096,7 @@ end def 1 begincodespacerange <0000> endcodespacerange -59 beginbfchar +45 beginbfchar <0001> <0074> <0002> <0072> <0003> <0061> @@ -4476,52 +3110,38 @@ endcodespacerange <000B> <002E> <000C> <0065> <000D> <0076> -<000E> <004B> -<000F> <0043> -<0010> <004E> -<0011> <0020> -<0012> <0034> -<0013> <0039> -<0014> <0036> -<0015> <0041> -<0016> <00B7> -<0017> <0051> -<0018> <0032> -<0019> <0031> -<001A> <0035> -<001B> <0046> -<001C> <0055> -<001D> <0033> -<001E> <0037> -<001F> <005A> -<0020> <0044> -<0021> <004D> -<0022> <0030> -<0023> <0053> -<0024> <0047> -<0025> <0050> -<0026> <0059> -<0027> <0067> -<0028> <006E> -<0029> <006D> -<002A> <005F> -<002B> <007A> -<002C> <0070> -<002D> <0057> -<002E> <0062> -<002F> <0075> -<0030> <0045> -<0031> <0052> -<0032> <0028> -<0033> <004C> -<0034> <0068> -<0035> <002C> -<0036> <0027> -<0037> <0029> -<0038> <0054> -<0039> <002F> -<003A> <0058> -<003B> <004A> +<000E> <0068> +<000F> <005F> +<0010> <0067> +<0011> <0079> +<0012> <004B> +<0013> <0043> +<0014> <004E> +<0015> <0020> +<0016> <0034> +<0017> <0039> +<0018> <0036> +<0019> <0041> +<001A> <00B7> +<001B> <0051> +<001C> <0032> +<001D> <0031> +<001E> <0035> +<001F> <0046> +<0020> <0055> +<0021> <0033> +<0022> <0037> +<0023> <005A> +<0024> <0044> +<0025> <004D> +<0026> <0030> +<0027> <0053> +<0028> <0047> +<0029> <0050> +<002A> <006D> +<002B> <0059> +<002C> <006E> +<002D> <007A> endbfchar endcmap CMapName currentdict /CMap defineresource pop @@ -4532,75 +3152,220 @@ end endstream endobj -350 0 obj +234 0 obj << - /Length 10507 + /Length 9356 /Filter /FlateDecode >> stream -x{ xUڵjWU?~G Ly%!H `Ȁ A0 j#  AEd%:22'$ :sw&jzk`9 x|Qܕ oH3*$ͽ yY|M >hZz.t<=i 4:,z""Q N'Θf?_K=UO+)nXPZR3l]hAGUEj4)WG6B=zX--)ĺzr%1ۤ'/)m* N§P_,<ȇO.@=m cT`'vWI),*^UpZ> a5M Jᴐl%~f"] 9͟?ېJnn5u/u{f=k}֕(; $(fr1*ľ2qBFWJ2475oseaKVB F!5AAڃs94H64zmYYos&L[|fMIvG-?sLk"]رi)ijy +#H2啽,xGV.I~|(Ot񲄎 Vݹ$ -0AyBT9¢u=2HuA$B 6*qfoϛH;fٞegz:ƦƥƧ&døô3lG;' qa=zf2 G{$Sfj8׿yrޖWwM4}㤌-P-+vNyscYң{}NFo}%-W@$x̕AGPy4lZ6*ne@1f5_޸&8Y!>=,<4{b>)q 6MC_oV׮q@7frx}Lp“4P5\Q!%-\P -P$I+klTb!=!@ <@QA1 5[y}8&-4+}}B._<1s >A'R;F pL8D:`빜^_3Hxo'.cROJE[_/OTUa -ǭ%ٮ8 -1ꉢZX70\Ehup9K8ta$+Aɵ\}h+Yrժ5xVOHoJl8fg>=@KS"@,M%64v+ b ߓaHJ "oF iR@Aף y 6_OB&42"KG^dI6;O}qͪWңz׮$3񰿜m@@.E..SY -'o()p%OB8Frf768I"0J4dJnIL&dHq!d[yo r{X M`O[zG fϛn={d熪4k4Q! i ғtVa*ERNUMԲ*I8Wƫ㴹$>֞rX"M-Җ_K]-"T޹$ ɞ? yPLҔ(sy4prڰEvv\7Dc/dvB2vrN?=}tY PQD$EUT aFJ69MAӃk߾I7!a_8&Kj)Q -9jjPIe)PƑYX8b|#`qt;C>}|vH7KiHyXAhRk(5b6Sc;Ë/NFzrBc-#es3 8olYM;Ӿ]l)<;:#$(P;kPy&ANu(Hb Nsbdy[Me PGo HFUP2$Y6 Y+q%ƣK*n"u7ɳ[n;K]-2z+Y*D>R/q* @n smI A9N~^t>8pZm EX{D+NtXeٳY4A ^jHHHKUjv}-߯|ƺzkյ[WGKd9y&rg -{R@WuVϾ"@` !t7UhDdGYm/8ej`ŎFQ]]Vmx7O=D.zq/:5rU_aY8`I,OiBa$'kF,ݐエ+ztQ߯xlmFH8Fjj Kq"z(~yS6 &U2]N\>~:OsINMZ !FUZ78jXT9 NbLk^,X=+5\Mu@:SpFjni:߈]~k_|hT6Z-U/w:=mn p@/yGOu55JTtBw}Uu`i#RQ 8Au-=\]x-hj"jdⴥINHk쵅g2lޗ d)%nqO[f ȫ3_~%#{|dfnqrOz:@O 5Vv(qcj\Jm]BDb.V_c{KV^mp-+U]w%m6huB6mcܘѬoM߽oߖ[+m|fBC?'t-vz?}dfO~sCqqVH\ۓ6HPBLdH -NsY ~gȠV d6R%T%«{wǤܡV.y~G斝.+87HЅ t9QH൦/>.迶bq) ;N@`KHz:@'>2 -0&4C@S_3vM4?ݍ\ȇN=.F!}eCuSN8V.CRʛg3O$k'w\.bKtD+حFMӐ̿E -'6v-w%6?gC[Dbwn_}ټjզݗ>-/9Pj0,B{^7Jh w"HeCaȈ'`ϵl<2[idtW OH3!auΰu\ױi9"A1TA.>^ܨ[MVYbB2{86#gf+VoZlu=}GtRxjz)9yb$w۹W[#$D#c'nShB'DYgk03IA4amպeӅmU<>߽,h,ZVS_:WE7NvAVCaCH -66Lnf1,*emJGh||v -+9R)*O`ZൃL -@7rKڡ<=q8^+9Z9>ە0ewXZ<%gu~c -1Ĵkq$<ąɄLHJk:~>ԩO )&Q~7<'(͊ɒ_OnYK҄kO?b-RǾrA( Ю@?gHGV7(RJ䣱XjU;j6oQYﯾd_]#ǿ@@c?1&81 +jFSY_!mݻ?')IG..Jߑ! ; ?~ϯxF(BM߉3H,>&YNjM`d?DjnI Ҧ<¾NUJLDvSua|z3KU+W*v/˹pxF޺t1Kw&P!`g&Q{ŧe,Jn5Әy'Oq@r"קU#>^[v6d 1&V5 <Pu LN34* ISDA@o#BpwhkѣE *"h'Dxd7h!EivܦLai6T$ICq'c?!OX_rKV~4ӦRFKe)%|6 yͪF`\cjk,v4A;ϭnG؞A|{INJc+~??|vn\'=Z_5w)ᱮ?o?BhE}j cg8h5,J2VqB*BX |63a7nB\M6X caTL8nڃS;HoqRqIG f]Hq iKAq$«(yHۺxt4H>g)۾Dŏ`wv]Hܽ%ssta]Ri@Kn^_W94rdgPw-lCv$e<ŧ_>a\K^\'|kQ]E7p3,Rw\6NVńVcd݄vަroC)̾bEYi<ho]1܎//b'lp w,Zsvۮ (^A{%=K34S"7"OkWZ:#`8|F/ -`4H#`,@ȇ.}~=AqP (-(+hO8AWŧ!Pá7 0ZPa0Bטá 8(Qp!aB]10׻GJ6 aA}! -=.??@os_Ҿ#NP}FHrÅ`_|!n ]~0Fb 1B -i%Åe+tzj._ì"9 fe?F?. _Ž -}[I\/:g` > -wbN+n r<9Nz$ocW>حFBQ`YkUʄWzZx7^k1-tneA2Խ"c)/|W X߷A@??[&(Eg y=짻?kÄ#OJzqj?C9I;uiRsa6O@@=%&~<Oq"0V0l0&@2$_ CwD@a}B r`0<#!&h3d R`Xf v I$tɴo j@ -od$DHl*^-} }$3 Q3UU+b Dz8$aR1V:0~uxs|9ޘ7_.o~M7Oy_2n<ϹM&MMb6Zgm>Faʆp%çmyѸ'pSK2O-ťNÊ`|b3,_d,'9//2㢣r:D Ʌ;8iNrDN`8ށept$}80pÇH#80D1zttpO,g8(?b8,tȁOgد^x r^_ ͳa^LZo=91Ȟ\3,\1x< $0fhV!J`O=!=5vQ4a-3LKrд(L”$MdCM>IBh%ζF`7.n7C}]lڅag&ZGт.  M`Db\A-:v`IcFFGbH h May$tX14āv[3$jCB6YbA]p1X.lAF 'ـf[=eC!PP!ITaHR6[($*e#+%IV$pz-/hf;Y +x{ xTչ3Ig2C2IB.$3\T@PBDLP4z(ZJ#@! RZk-4R _7H^,g?Wo.]^Q +[ǗVT.Ww򧀼eKz\64`W׀8 NNc/89Uk`ӨNZ+,4{)#4`cjFFTS#Mcɬ{ *Re"jqF= c=b*pƴl-ۂq5h6!)5֌xD٧ VP֢*fvoxf̿]ͣMWXefTc2Oߣ:5M]APfa!f̓Z= FSiz R&q|z;ZS3pa-(TSjQ6<;*TP|}؇ j NeArgPAЕ_:vH*Tft0_qӼMO}˩н0@JoÍ|lT_vޣ'L6آaAEe=i'φMOI]4̼'Wuz_.zZ@# +}qIb'l0B3>jiԒf'f NKMs䥸yUg?>O4^Dmٺ2Z.GizEC`sZr bk7]lπ ^ue#.?lwM6r`,-Uvrb91ځ?3`_Zyl{[GRI qAMSXá#댋q8NN뺩[{{\8S#sWբhmi +H0 bkŸl\6]llovJvnfݎa;~wB \OLnN~y\iyL"yg߁,tEϳHbJË^~y/W=;:tK>sLۚ%3]]Ά'Nj OF< Κjl"c'DІ'M92.qr/y2r7GE@||L{Ǹ3gm߫JDG~?Ŝ[o\PGs+i(mr.ݑ}Wlʪ;ӻ] R'6m~͗饫Wiw)~',>o &ʔPZ2‘0'M6ao iY$xLy^=v?Aav#o; giД* c=8?bK`PTs1`"2/ŕrػbN<C ߓbU*L BpkbFk7snf%tWf#tF6UOQfQvJ"6X:+0[2&jD?A mr5:v0Eèp6cȹ5kF:eFլy.X//ޚ>UgQ_yzӶg܏語 DBz$yY|>V;XG;]cߔ)6ukL<9Ghnw;,bi\dFfTMO-!=ʔV4on+S8Yi`Ssڇxd1KA^'ۖ'h ґ`1wvmZ}}>sXd}όoʩS~V׳'cKgϳ-qFVly3(wљM +up5+.BXł5?==`,*qzO%]OUJzYOm8+֦LIR$0WZ  I|=W=szz.U+x3П)Dᅠ03`gNlaf^=R(וJs)ݔO_}k3:#vc'qAο@a?5JC}ύF}Vߥ.u/J#jOr'Ŗ@K{*R!.tz25[yt {T־%dCYJݑ={_8ж;Ka%?]<&*zQ/nOӓ*j}LݗT]¢--Ig[]br;ڣy+:47EK<y5nu,_KqU-a9mq!}g 뗏s#Gs>DB^;t\y#U] H^LRd1"QZ]lLXF)Q +)el%mWim*p['BR>Y D fU +64K6 +ė ^$z63s8hyI(Wf}`4|S'vSգBMgn[l׾*ƚ;_}DflX-V%+f /% P肻=5@>MㅆzOzCaTu5M]nAimi}3TW:?͙d_YZ,M`Jy!Pu ߺזu,lzI}bw=\?~CsW/mW@CR7訷Ҵ$B 35oЬ-پ֖E6 7>jLèkzT{゚hzׄzUc<W!|/0$M-eyrhrgG-&=n185?!.|Ը~ţ޽c8o'- LN>N3?J>c g}tJsMևM;Uݯ=}ZJ=q !)2GIB!6?;ʕuLwN1Q O|RD{rO#h9/-C.,1m.՛ڔ[l[wϮg{;jvnytzc_FJS,ywmWVqj)x34O!|*W y=6'T$\:uxTJ4Kc)5|ۧo+<<K [̸,ٺM/IF`j4YǛA-*8h16C KNIr^Rj L-7^o\D \P!ҮSddCdծ2S\Qf'ӓ!xU¦aO{d__ēbxJno2LԕN)D)̮(!P*ǡijCCveH-nwF:䊧9,bmqt֓m=}Y>GDz:(R\i.\iSXS"ŕ#ͦ|}jsvw}>.i{D-I)dq> /gBR(KYZe˲g9 +P +*P xV ++fb&t ۅ]lv.m˶˾˱+l?~گ~~~c8Ǝ)zӎl†1AU4Sgj3vuf0sT:o c0>ukj6?^S߮\Z[&LexK.ol֗cٻCbxm`?` =(_}+_RpʗThZ_zw_YW#ڴJȌS{z˦E0)fmXY_r)ې+/++LvlcIYLcuX@:3eUmY+,)3ܲ>{OXAo|V;ݸN_+SC ]nZ$%'97*n4ɒL^WwF\iy)ꄻO?(.&g]x~f:u7CK{vTY\=;Xe*[ 7 MQsd,8\AHV{1WtӏvncءkL7j;u[^?=gs\oHſǹ#Wm656r\ EiFɣ&7e$8z`I5f3hVsQ"ll5gkz-۞+)-+/H(H,Rе i5VWj}m}cuXmLmlm\m|mBmbmڮIil37HYMeOQ+>as}6enRRl1`I4E'2 A]nGJ,1o\\i.߻l1[Hrek9ʏ=~Vc/.v/)%3pP uBM*r0NaYGUV !ruݗۊhm*MB[=lst*(m6pTY:ϴPh!3#]AMf(>onZ9 \ts፦/CֲXhA36b7]B5J$ިF6F+G>v U؆%l5FL:`N>WhJ,<ǒ'eJ% >USNZꊾP-v9[=?: +;t:; 7Go +b8 A>?7o)gy]a+0-\b>4疆 +`{~ЗAC2Vܜ1WA! reI欱28Sϖ +g\Tܔ"m]ގ<,`hCXsye)%2찦@Flʴo Kb1L)&+(3 227{ߑVy,quDyv~n3)ٚATow{Bβ3Ûã&lgr撠VXdHO*Lk*M$sMy֘y8ȒIϥ Q|j6dt^H2*o+Ko^ɹmEJ͹fa1l}L,ci<̛g%&+%r.M.tYRiKY_RWgg%Yh;MoʂזuPeIe[>u渒2Lzz{ ے݊lP\bj|;[QҾ䆮TgfhZEJ|'-д|>6u1[CU7SYsg-uFbզ2wă VL읍Xbrjzs-{8{2h]byw;wQ7#JM1?cYQ枬KV}U|f.a9FJ̪o/۽:- EY#5Eɦɘ!h+$x11SPa(03.C;~9ؔ8,1Ĕ=^STǙgQqf>[i"L2DSXL:sb 0xٍZa-Ǐ5m,l<ݲ(D !(D)O/7ǵ9GFfuyղl|0C\H)'[$SC`lP0%H-41JDQ9}NQ1bMZ.HD&֓sid$Rcѓ0EjJXXl:4%{+'M2>ލ{#,yzaiV?v¬#R9dfeDE?i%@P9&dYnKG(34݂oh3a +9Oe$)w!Z7*w+ĵ;Gcoqgfuy:p\Ur[Paq6} Vw%VhLdou U\ rzkyf,,mA*ԭ+DiHJ^a˽$cmcoY[>1W+**{&² ]־>D"`n|d\Y=+N`-{ ˴Q>2.|)n(o9popW&&8L1 #1QQHxtI܉hx$`0#Q; 1xYY͢>9¢QbXm&ĢO7 2 3;@,<?>± +ĜXr@aʳl1<1goc茠7tWk^Av&A'kA7:_卂~ +G}_=#^!%Ak_Ep~A/Mz.. U'M3~"hxvA;=#?-hG8mߖɷ ږICx}=u zj'|_*_myǷ'|T[CaqmM5>js=梍6Z/u.u.AkU8Z=UA?XE#aA+=(jWERU}uW+TW *Lu_2{bArh9TvyJ;'4D4S"hF woCtA<4UA${rhI& +{M4Ce|1GitUGn^G#HA#^LJ86͇.>MC߮.*lP෫C|H$ i`v_7~Z'40DK`_A] =]Pz$b +ERH*(śSV7GS' *Kb<"(OAc +)c Gy*nA.]dDFrE]dGFR]DG8).i +o`CNN[0A{ wǐ ]2&{22 2Vn3 _]B9\ endstream endobj -351 0 obj +235 0 obj << - /Type /Font - /Subtype /Type0 - /BaseFont /OHYPAK+LibertinusSerif-Italic-Identity-H - /Encoding /Identity-H - /DescendantFonts [352 0 R] - /ToUnicode 355 0 R + /Length 23 + /Filter /FlateDecode +>> +stream +x00P0PH1ү0Pp +Q +endstream +endobj + +236 0 obj +<< + /Length 23 + /Filter /FlateDecode +>> +stream +x00P0PH1ү0TpR +endstream +endobj + +237 0 obj +<< + /Length 23 + /Filter /FlateDecode +>> +stream +x00P0PH1ү0RpS +endstream +endobj + +238 0 obj +<< + /Length 23 + /Filter /FlateDecode +>> +stream +x00P0PH1ү0VpT +endstream +endobj + +239 0 obj +<< + /Length 23 + /Filter /FlateDecode +>> +stream +x00P0PH1ү0QpU +endstream +endobj + +240 0 obj +<< + /Type /FontDescriptor + /FontName /AppleColorEmoji + /Flags 131076 + /FontBBox [0 -102.400024 800 697.6] + /ItalicAngle 0 + /Ascent 697.6 + /Descent -102.400024 + /FontFamily (AppleColorEmoji) + /FontStretch /Normal + /FontWeight 400 >> endobj -352 0 obj +241 0 obj << /Type /Font - /Subtype /CIDFontType0 - /BaseFont /OHYPAK+LibertinusSerif-Italic + /Subtype /Type3 + /Resources << + /ProcSet [/PDF /Text /ImageC /ImageB] + /XObject << + /x0 265 0 R + /x1 266 0 R + /x2 267 0 R + /x3 268 0 R + /x4 269 0 R + >> + >> + /Name /AppleColorEmoji + /FontBBox [0 -102.400024 800 697.6] + /ToUnicode 242 0 R + /FontMatrix [0.00125 0 0 0.00125 0 0] + /FirstChar 0 + /LastChar 4 + /Widths [800 800 800 800 800] + /FontDescriptor 240 0 R + /CharProcs << + /g0 235 0 R + /g1 236 0 R + /g2 237 0 R + /g3 238 0 R + /g4 239 0 R + >> + /Encoding << + /Type /Encoding + /Differences [0 /g0 /g1 /g2 /g3 /g4] + >> +>> +endobj + +242 0 obj +<< + /Length 673 + /Type /CMap + /WMode 0 +>> +stream +%!PS-Adobe-3.0 Resource-CMap +%%DocumentNeededResources: procset CIDInit +%%IncludeResource: procset CIDInit +%%BeginResource: CMap Custom +%%Title: (Custom Adobe Identity 0) +%%Version: 1 +%%EndComments +/CIDInit /ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo 3 dict dup begin + /Registry (Adobe) def + /Ordering (Identity) def + /Supplement 0 def +end def +/CMapName /Custom def +/CMapVersion 1 def +/CMapType 0 def +/WMode 0 def +1 begincodespacerange +<00> +endcodespacerange +5 beginbfchar +<00> +<01> +<02> +<03> <2B50> +<04> <2705> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +%%EndResource +%%EOF +endstream +endobj + +243 0 obj +<< + /Type /Font + /Subtype /Type0 + /BaseFont /SBCURZ+DejaVuSansMono-Bold + /Encoding /Identity-H + /DescendantFonts [244 0 R] + /ToUnicode 247 0 R +>> +endobj + +244 0 obj +<< + /Type /Font + /Subtype /CIDFontType2 + /BaseFont /SBCURZ+DejaVuSansMono-Bold /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> - /FontDescriptor 354 0 R + /FontDescriptor 246 0 R /DW 0 - /W [0 0 500 1 1 518 2 2 447 3 3 307 4 4 804 5 5 478 6 6 521 7 7 472 8 8 276 9 9 250 10 10 637 11 11 486 12 12 353 13 13 486 14 14 783 15 15 401 16 16 489 17 17 266 18 18 489 19 19 568 20 20 357 21 21 389] + /CIDToGIDMap /Identity + /W [0 21 602.0508] >> endobj -353 0 obj +245 0 obj << /Length 11 /Filter /FlateDecode @@ -4610,25 +3375,25 @@ x endstream endobj -354 0 obj +246 0 obj << /Type /FontDescriptor - /FontName /OHYPAK+LibertinusSerif-Italic - /Flags 131142 - /FontBBox [-83 -238 874 705] - /ItalicAngle -12 - /Ascent 894 - /Descent -246 - /CapHeight 645 - /StemV 95.4 - /CIDSet 353 0 R - /FontFile3 356 0 R + /FontName /SBCURZ+DejaVuSansMono-Bold + /Flags 131077 + /FontBBox [0 -235.83984 602.0508 812.9883] + /ItalicAngle 0 + /Ascent 759.7656 + /Descent -240.23438 + /CapHeight 759.7656 + /StemV 168.6 + /CIDSet 245 0 R + /FontFile2 248 0 R >> endobj -355 0 obj +247 0 obj << - /Length 904 + /Length 900 /Type /CMap /WMode 0 >> @@ -4656,27 +3421,27 @@ end def <0000> endcodespacerange 21 beginbfchar -<0001> <006E> -<0002> <006F> -<0003> <0074> -<0004> <004D> -<0005> <0062> -<0006> <0075> -<0007> <0076> -<0008> <0069> -<0009> <0020> -<000A> <004B> -<000B> <006B> -<000C> <0073> -<000D> <0061> -<000E> <006D> -<000F> <0065> -<0010> <0070> -<0011> <006C> -<0012> <0064> -<0013> <00660066> -<0014> <0072> -<0015> <0063> +<0001> <0069> +<0002> <006D> +<0003> <0070> +<0004> <006F> +<0005> <0072> +<0006> <0074> +<0007> <005F> +<0008> <0064> +<0009> <0076> +<000A> <0065> +<000B> <0073> +<000C> <0063> +<000D> <002E> +<000E> <0079> +<000F> <0020> +<0010> <002D> +<0011> <0061> +<0012> <006C> +<0013> <0067> +<0014> <006E> +<0015> <0068> endbfchar endcmap CMapName currentdict /CMap defineresource pop @@ -4687,221 +3452,95 @@ end endstream endobj -356 0 obj +248 0 obj << - /Length 3277 - /Filter /FlateDecode - /Subtype /CIDFontType0C ->> -stream -xypWǥeǍ;t3'25ݰ$$aͱ26-lْ-h%uKݭۖ/,C6m$pIp&7[3jvzʹ% LM?~~~_h"X,^@Y+ޭ*Q%+%ɭxؓ+SERS?Ixtk"VD?Z)-,>\ZHH>@꣢X"۶H]|HY+e5uU%Gt[T_yjU{(W}ժ*uPjsIX៍7lK[bK` .T%ecK.ߖ"H3N24я,U.JYpI勍Rɒ%K7-M,O?؃O=')E  -ۑYMGõ藘B#2zie2sH;kƩ&F vv ,۫hL'!,U7ޝ93v6;-5ƕZ^f+0 FЙ) B#hB+z%)_LCv.:X/ω<İ&.K+u_ - Oo2Tl.(r . OBh(քeldE,wZ|grJkZ:夜n644Ęؐ{25e(c\ղP5t"&4XE/ 4pzEry4\ h9LRcVW -- 91ǘQwj2QGqN iCL a -XVd}.?qA+m  /Ӿ -,7 $?hy/"~$x1v̉ɳ@E\VĤ}HhBڈpWX$m>e?Zg >5+(89E抃Ja57:hsZlR !RK]'G[ [=Yd=.[} շ`n,*tgvA-a_}~U`Xߌ6FZ;x|(1)cSgK[FF~s\` ΅=-:WrsMVLH$5 ~ۿKKun h_XX=@䑎\ .)\:NAaM - | νnI3.Kb2* Zi-,| VQbAye,-zg7%yC`*p))6zmIfKL'R38/AJ"Lw:mz,@3g VF0&Fے|2>bF Z!T_ 1 6z?a7JPVi r9E4J$b1aAE+`4*˶BCgr4 xh0@|x{Y㾎+Z5XQAw4SS}(e46F5M,j5֢W9 ̄}PDcbйO>Hɭ3ofgy^a\xymζ]("{ - yZº)@ZiT\Yb,_䟗s3W2ݑqzYͯ@[C@;[X Q`$P6(O^ !QZJ6 -!Oߞ"-QCj&Us`5xڭVF֛D"u>6v -, -?~΄ߎh+8\(*2!^`C33C|TIUV5ul׈* ƣȻG˷Nke#6u֜g1a%1r)29ԘLXK̂?ss`48(ᓞBztg e x.zkt:|t. W~+ <#| ^EG"J\%D$KJf.Un[Ef_4?sQOҎ*G&olGb]R-c>ߡn9 -rno4,fi\]=B}4b0j}![b1ߘ4=%`+Ye5\KheS|ȷp#urR 9]|!*E-T(UJq!sOq©Uy]/eۧo~ug]\lQ w>|oJ- -_'p4>I˹hxONpW>Cݡݚ]֬}8~|@u?մ-vo+Y] -l mz+jhh1lä-\V:uN}cWԧ'qPõm'쁈ku6pxfΗe³ s7AIȯw4 /*,A ި oX}kRm墭6tQo mW92@^w)V9d8 CK -endstream -endobj - -357 0 obj -<< - /Length 23 + /Length 5820 /Filter /FlateDecode >> stream -x00P0PH1ү0Pp -Q +xY Tי~w;030 3"?(ꠠ! "o$AAP$Ԩi4`v[11Ʀ MՒICOnRnMv{f-|Ocr;sw}~=v"n[dwfx 67nH>jjir@P? joLvm/fk ƄGoukvJQkZ~` ~%i60}@i{GC{ʧ3w F2H4 +) .M\$0Xr4}H& JP~9^B-Q6}@\>H8 E|$^7 &qx W!Ht$m4(~D@ :exIaEv[ N3p:V uTO7Ч8iJo A\MN#G l4G.g8 'h6ۯvQZ^n%>Z8rDc +Σ|/Dd*:L~r'iS.{7ncغ;@ݡu&/u VXZX]Z\v@ruNgZjaJ{u~#G\15K$~ώ"|aYhΒPV+ ] Ӆ f4;2F:iȯg$CB 峅Bp@#:e'v]t!ohh$oh6^ /Bok-eVd$bBf\۷7oܾ}<+!F@yCG y +}VjuRyo]tah;׆/  +$5!b)ؽj_RT>qܝיESRS&l_n~Ǣڽ#fGXc$ǚFGl6}rtEӟ ;~pv.U 9IwNU'6^ئFyQ-9MI 9f4C,dr-"]ݽ[@3oAxd'ćj]|B[uY{f=߽13^O !'nM̞ilrro8>bx4G憈_$8 ӥdm.YlHX=T{rlr\r|rBcs [1 m)جWb #;+CIv֜L~򥵵n0tZ EQ6{L!3?1küYnyp6u@RHvw"B$)xԽ2Ů&Y!Y=hA[?,s I#ңGSd] -4{t!$}cRn}Dzw4Y:qocW53AƊ f- a67c I_D>?P~`=ʰ/8yx{ q$jr\ H_Fz&ʱW~Q-f1qv) )hLq Kd:ZQ %◁1,| QkDfơH$H{`DN?=@3G:$/2L8P8B'ЁԠpQt81Yh@HhF`5:Qh+hf8ЎE QцVԈr*.a9ڰmX6 9VvYp ґI>GOWQ + QB;a+щ6lE vDұ ҂#usdGEZІn$8㨻f8&|3tH\߃/9"9c1&8І/{V& +ilTe\C&rlØ65*|`<jhC-柦/u29^:A |jʤq~T'N`I[/mC3jV +)֮1|ьg8}n<1wс6csܚzX3jU3k9uhV!EŤ[p/|W3sڭ cxo'έH#CHVσ*9 r*T'nܣnG< "gnxrDƙ=it +$6uBf"[Y2!9y,'Nge`W j&2x &qnrpeJ-s}+~HXu'M=;%S EMA[9Z&Db| ]ଲhT1~y ۟G>ǿ;6r=ݭr8*VMF8JOlgUk (Ag%Laj.Yj>Xi(8(zVB +,E% bp X(B +Q /f|8kP$$*!KQ|!{B6TKU1PkBT+P.d/GJP$t=f)P D7+ +/Vb+,[Bc c1ŸN1lBC!|Ln;˄n*Hxe9"dzdle拸q~ G▞MέeqJ +K$"L*'ԵM<>"+*B7 pǽP#dfA{89nF?n _Y(p(E?'t +s\er*+{r9'B5~)j*vu={J'rN@)YY<{[USr7}[}6֋>];Ǻ~u&W;S e^ЫzY_u[y +5 1ⒻŘv 5b _;X v*{f0'r;ƞ1nN8y7 ;}ש~_7a#߻ ogJG ^77fe@9Va cR7X;uVg\߻NOZNѓ^~~ӗ^`/m/F"zpv:}>Qv\_;=(}n|$vl=擟MG^zF9=goݐ?/OCC7)uz:B'ܴ?BA+BLo}l=f5Vkg0wW{b{=䇿fWч}Wh>OWvF]tg_Km0{'nogiB)3uӎ-C[i{c9gNɡs,lNΊb4+ʲhzgG1o=fah'ggE,,=Y J>VNM1T3M) ,HSk>> -stream -x00P0PH1ү0TpR -endstream -endobj - -359 0 obj -<< - /Length 23 - /Filter /FlateDecode ->> -stream -x00P0PH1ү0RpS -endstream -endobj - -360 0 obj -<< - /Length 23 - /Filter /FlateDecode ->> -stream -x00P0PH1ү0VpT -endstream -endobj - -361 0 obj -<< - /Type /FontDescriptor - /FontName /AppleColorEmoji - /Flags 131076 - /FontBBox [0 -102.400024 800 697.6] - /ItalicAngle 0 - /Ascent 697.6 - /Descent -102.400024 - /FontFamily (AppleColorEmoji) - /FontStretch /Normal - /FontWeight 400 ->> -endobj - -362 0 obj -<< - /Type /Font - /Subtype /Type3 - /Resources << - /ProcSet [/PDF /Text /ImageC /ImageB] - /XObject << - /x0 385 0 R - /x1 386 0 R - /x2 387 0 R - /x3 388 0 R - >> - >> - /Name /AppleColorEmoji - /FontBBox [0 -102.400024 800 697.6] - /ToUnicode 363 0 R - /FontMatrix [0.00125 0 0 0.00125 0 0] - /FirstChar 0 - /LastChar 3 - /Widths [800 800 800 800] - /FontDescriptor 361 0 R - /CharProcs << - /g0 357 0 R - /g1 358 0 R - /g2 359 0 R - /g3 360 0 R - >> - /Encoding << - /Type /Encoding - /Differences [0 /g0 /g1 /g2 /g3] - >> ->> -endobj - -363 0 obj -<< - /Length 661 - /Type /CMap - /WMode 0 ->> -stream -%!PS-Adobe-3.0 Resource-CMap -%%DocumentNeededResources: procset CIDInit -%%IncludeResource: procset CIDInit -%%BeginResource: CMap Custom -%%Title: (Custom Adobe Identity 0) -%%Version: 1 -%%EndComments -/CIDInit /ProcSet findresource begin -12 dict begin -begincmap -/CIDSystemInfo 3 dict dup begin - /Registry (Adobe) def - /Ordering (Identity) def - /Supplement 0 def -end def -/CMapName /Custom def -/CMapVersion 1 def -/CMapType 0 def -/WMode 0 def -1 begincodespacerange -<00> -endcodespacerange -4 beginbfchar -<00> -<01> -<02> -<03> <26AA> -endbfchar -endcmap -CMapName currentdict /CMap defineresource pop -end -end -%%EndResource -%%EOF -endstream -endobj - -364 0 obj +249 0 obj << /Type /Font /Subtype /Type0 - /BaseFont /ALDRXP+DejaVuSansMono-Bold + /BaseFont /WTNRDL+LibertinusSerif-Italic-Identity-H /Encoding /Identity-H - /DescendantFonts [365 0 R] - /ToUnicode 368 0 R + /DescendantFonts [250 0 R] + /ToUnicode 253 0 R >> endobj -365 0 obj +250 0 obj << /Type /Font - /Subtype /CIDFontType2 - /BaseFont /ALDRXP+DejaVuSansMono-Bold + /Subtype /CIDFontType0 + /BaseFont /WTNRDL+LibertinusSerif-Italic /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> - /FontDescriptor 367 0 R + /FontDescriptor 252 0 R /DW 0 - /CIDToGIDMap /Identity - /W [0 29 602.0508] + /W [0 0 500 1 1 306 2 2 616 3 3 454 4 4 597 5 5 250 6 6 389 7 7 447 8 8 472 9 9 401 10 10 357 11 11 353 12 12 783 13 13 307 14 14 219 15 15 313 16 16 804 17 17 478 18 18 521 19 19 276 20 20 637 21 21 486] >> endobj -366 0 obj +251 0 obj << - /Length 12 + /Length 11 /Filter /FlateDecode >> stream -x  +x endstream endobj -367 0 obj +252 0 obj << /Type /FontDescriptor - /FontName /ALDRXP+DejaVuSansMono-Bold - /Flags 131077 - /FontBBox [0 -235.83984 602.0508 812.9883] - /ItalicAngle 0 - /Ascent 759.7656 - /Descent -240.23438 - /CapHeight 759.7656 - /StemV 168.6 - /CIDSet 366 0 R - /FontFile2 369 0 R + /FontName /WTNRDL+LibertinusSerif-Italic + /Flags 131142 + /FontBBox [0 -204 874 708] + /ItalicAngle -12 + /Ascent 894 + /Descent -246 + /CapHeight 645 + /StemV 95.4 + /CIDSet 251 0 R + /FontFile3 254 0 R >> endobj -368 0 obj +253 0 obj << - /Length 1012 + /Length 900 /Type /CMap /WMode 0 >> @@ -4928,36 +3567,28 @@ end def 1 begincodespacerange <0000> endcodespacerange -29 beginbfchar -<0001> <004B> -<0002> <0044> +21 beginbfchar +<0001> <0028> +<0002> <0043> <0003> <0053> -<0004> <0020> -<0005> <0034> -<0006> <0035> -<0007> <0033> -<0008> <0059> -<0009> <0043> -<000A> <0031> -<000B> <0039> -<000C> <0050> -<000D> <005A> -<000E> <0061> -<000F> <0073> -<0010> <0069> -<0011> <0067> -<0012> <006E> -<0013> <0065> -<0014> <0064> -<0015> <005F> -<0016> <0063> -<0017> <0074> -<0018> <0079> -<0019> <0076> -<001A> <0068> -<001B> <006C> -<001C> <0062> -<001D> <0072> +<0004> <0056> +<0005> <0020> +<0006> <0063> +<0007> <006F> +<0008> <0076> +<0009> <0065> +<000A> <0072> +<000B> <0073> +<000C> <006D> +<000D> <0074> +<000E> <002E> +<000F> <0029> +<0010> <004D> +<0011> <0062> +<0012> <0075> +<0013> <0069> +<0014> <004B> +<0015> <006B> endbfchar endcmap CMapName currentdict /CMap defineresource pop @@ -4968,58 +3599,39 @@ end endstream endobj -369 0 obj +254 0 obj << - /Length 6745 + /Length 2927 /Filter /FlateDecode + /Subtype /CIDFontType0C >> stream -xz xU~;;r;΅$$`;\B P"IعAn BV1iSX "22tr63-ֱxZK=޹sg&d}uFE޶]ݞs+z6roCGc΂-} /iu7u -~8kkjտH>G6vQKo-͂̀3[k{;x*im]k JG{W7ͦ{ttw}<}?%$2I.IǐH.L u5TE $$t`c\.be1v@fXҦ:iMl ď/RnpA ~,׈^ץ-^5 ׸08vH" tH8C C|D7eirc %X׵C gjL%l[<XM93N=6,*Κ<YlYtge_ʕ/Z2'{UFٗ. K]ZdNg%?[띓tXJ2Y[Qsֳ$4)r; --&4I2rG.΅"%,R.(QFWC_{h 1(t+]AUy,tGIѮt[6@JlHOhvM[\gFӅT>#ds' [hd44zPٮ1jMצdC - Rh{IIDI$DdorZ=D#5;:G7zLX(YlCµso/, sUn۴>OC_ f, -$35RԨedE'k& -]*9#lMz^{~TkڥI_)T>N_>^SU=;xᾧ2Tȝ~O>a.:T2dHt@(IKLZHh(Zr;E:۽vYHI -YL>-m ;'q Gǯc"'ۏvw5m6㥄 |"I -)+[Ry,$9[R6P6CeeYaKéRe|,.Y@nga@jA{e4 -b] R!jD{_"+H!I +CL/r%-A*Iؽ}^!imN3f DG" 7qpۓH$f\W|C qDv txyuDkV}d -FD}h|^6%yT!#Ījw?1Ѣ !vzZV'ҁ `: -"'B`>b(]ڽ{aLzv7B)J}wUyp_ WAlRŤ11ZhOj<ߘr} )єƘncNu2lџF~{p-"%Ŀļ&}y -NN+,…$^:ͫSëQbOk(]; #._Q8fFگ9ό_HǓfd1&%֐d11I&Q]}1Mvr}r3#QoLYnKJ.mO`|:假JL}!Әi4gZܨlwf|fBfbfR'ÛUM".IUP2 -抖8/}nc]N|Kiܾ>((,O]iO?WBP4dGC ahQ&nhCL`ZlJFFB%`/QB=i i IUBOyG _"rǸ:e|Fd`E #.֔OKaGJR?b}4!3-nߡq{23բph+.# -Glva9P)[vRI||\u3_Ʈ^o/ fhs?zi?kF7*I6!@\93+yX=%~Hn) 1Oq *f^>xs˹{K|]y$ n|Hzk,S:okNW7reO f,b2#jloB5?Ӥ?D;0Xܳܚx[ht44_*uף^Ū'zJ(ZqB\pi򿕷H'Aczr#;>:{Eg9dqʍ~kHs;!aUN 6c^ qqMWrthnow3;*.(/.}I@In_O6([nmkۺHSuĐxWX$o(EdH?y$[(Y΅ O_}p>>w56qN E¯ԧqZ$VSƔwI -rر]TE .Egg+7|s9v@ˎÉfY݀AgK265T2> -vN뫝<ٯXOߒDv\yUW$_! ApQ>*݁RFLX-VX&3`5[d4|f#Z,fAYe\c:] yOGBHaWɝOR@GRwȥc[g/@O&3B0幍Qyg_yLcrMhn Nb,v= [QPq}fŰOgT#k\c'y 4. 8tdv#%XDgpT^Y2ƋMZs峿RkUy&+&)zhVw,IW횞S7aIEy^ZIfi柼u]* 4Z'S@H - 523ಸUkY1vidk7F/U j)E9Zޟ׿pZSy]U@KgkE=mI:WnDCۺuGV%*?D~M!hA'Cc]`ux[qx1ș!!5IǤt3}X6G3?kcqh24-SZI[a%P>GR^ KzL~>߇) 1> duH&c#擎ٙF΄-hrC'ш&tà lC&<#yȇuЌntG-Z V ېJтxP9!Kգ .#؎Zl@<؆&Ԣ bBhAZЌm vV͔S%p ю6cтL vYpri"GzĺBw1J7:0E0z.؆zqo`$mG7Ma({q:ԣ؍L7s?nYi?iO||acY'vv4|)nY*MF*IՇjZ8 V'Vw;jhG濍a[(x-}KHUj$ՋQ#8yJ$ {ގmhFm>5B -=O xssq~hG=${ux&yb \:aZ#1$r; t"'#km0{w1eדۅ&qVvdOؙ+GHVAfuoou9gӣnҢ݂֯! f-TcD#[.t &ۄC䩅? 2yKU-Su}^:_}[y5 cqɻ1N b˯T}WDh`ϓ9agpԷ[3>}\͡):c4'ޯ -w#9b -@?gKA:"1pip!X%؀2Z܅Xe[ K/(yI&}Au=d:3N -=󴙝I6O=N+S6OO=NmiBO''qrx)=C?;OSߤn(~Gc); -}T(tчnz!;DvO4Cg>z߽Vv_,Jo)~';t_~mHd{tOӾېztBw)̴̺sgTѐ:z)fk-yǶ́qmjHdMAؐiMu -GkzOnmQ]tn`t [tBU:2ʵnV9HVZ75 --_dtu)tBWptu.IK8}t.5?]h J,lBK4 HG#+;\4/ysl^ -,ahA|ύa ;мܘ-14g$9v6A K^βl;Y-,J<[c`-t09[\E34}MKaiԗ|h*,5hr%S )I\,)&rD&ĻXƻ8'墳xnX;s8Sb4c[qU sҨ"*NȜ7O6?ߤ68O̺Z`Ԭ2s"5̔HVj&RjVc`Zr @5$pNfzʆ  ,iZ0IXzعf"=!677q+[lccۘ=f-PSqӔJ`R24C(5x5G ^U!ܒ*D~bɧ辖_kn~|xDfa(Zr#W>Vhu܊}fqYEeup)p}@rSa? $1A)S="6+廾s;8>@ԡΜ`;OFq/ N\$J%tA>*F]Z\@-:hFx%1@ +Tt%tUG1W^<#G 2U|wZlX "V*(ma wMe5/pUڡwQ'b\c/qD9:߭ +K+`QaLntLNY5˪V'2hV4Y:Q;>i+mF{؟\T֔d]!A+ +i`7_ +M<Ādrl}7 KN}PK%$ⱲOKTȦ(X|+f6Pf:Z)ohkj RMWKP+U4HNdU\;`ׇ߹ Kŧr|W~nw՗5\Z6lZߟ\Pĸ5(K!yOq-Vocu25z-Y]_M?YK),0$gBML{6u' Td +q)yLN޹ɧ%CF +NJkcŕ" o?WM*lB,!M V)y6E#D vp/X GW$>Pn )6!<݃?zkr,bA7>`'@7uC$C)L2$38rrFG%ZWiζq; +V{>-k\=E/f7n_ 놑-:Ol@k ̄;XCT䏅BtzJk-D#-e2Mr+I,b Xќk\d +:k$] .]\enb|!D; #=qXX ebOi J\ +FQ+#OtrNHGpUgMMc #YT lrp=2QN[Z;uEitR8 uQng-k5%5IGS3RAҔ-S&O}{g?.!ݸ8Fx,9esa˨w;d=mY޾n7Z:,XSJM${2,jUn}r(<| C>oh{n_ȕ%uS,Wi5%&k0N_ endstream endobj -370 0 obj -[/ICCBased 372 0 R] +255 0 obj +[/ICCBased 257 0 R] endobj -371 0 obj -[/ICCBased 373 0 R] +256 0 obj +[/ICCBased 258 0 R] endobj -372 0 obj +257 0 obj << /Length 258 /N 1 @@ -5034,7 +3646,7 @@ F endstream endobj -373 0 obj +258 0 obj << /Length 314 /N 3 @@ -5048,51 +3660,31 @@ x endstream endobj -374 0 obj -[389 0 R /XYZ 90 686.2198 0] +259 0 obj +[270 0 R /XYZ 100.5 671.99927 0] endobj -375 0 obj -[389 0 R /XYZ 90 299.86975 0] +260 0 obj +[270 0 R /XYZ 90 569.3933 0] endobj -376 0 obj -[391 0 R /XYZ 90 725.3498 0] +261 0 obj +[270 0 R /XYZ 90 420.33527 0] endobj -377 0 obj -[391 0 R /XYZ 90 584.3098 0] +262 0 obj +[272 0 R /XYZ 90 699.7928 0] endobj -378 0 obj -[391 0 R /XYZ 90 325.2898 0] +263 0 obj +[274 0 R /XYZ 90 761.8898 0] endobj -379 0 obj -[391 0 R /XYZ 90 171.1698 0] +264 0 obj +[270 0 R /XYZ 90 761.8898 0] endobj -380 0 obj -[391 0 R /XYZ 90 747.48975 0] -endobj - -381 0 obj -[393 0 R /XYZ 90 761.8898 0] -endobj - -382 0 obj -[395 0 R /XYZ 90 761.8898 0] -endobj - -383 0 obj -[399 0 R /XYZ 90 715.8298 0] -endobj - -384 0 obj -[389 0 R /XYZ 90 761.8898 0] -endobj - -385 0 obj +265 0 obj << /Length 40 /Type /XObject @@ -5101,7 +3693,7 @@ endobj /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /XObject << - /x0 402 0 R + /x0 277 0 R >> >> /BBox [0 -102.400024 800 697.6] @@ -5111,7 +3703,7 @@ x endstream endobj -386 0 obj +266 0 obj << /Length 40 /Type /XObject @@ -5120,7 +3712,7 @@ endobj /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /XObject << - /x0 404 0 R + /x0 279 0 R >> >> /BBox [0 -102.400024 800 697.6] @@ -5130,7 +3722,7 @@ x endstream endobj -387 0 obj +267 0 obj << /Length 40 /Type /XObject @@ -5139,7 +3731,7 @@ endobj /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /XObject << - /x0 406 0 R + /x0 281 0 R >> >> /BBox [0 -102.400024 800 697.6] @@ -5149,7 +3741,7 @@ x endstream endobj -388 0 obj +268 0 obj << /Length 40 /Type /XObject @@ -5158,7 +3750,7 @@ endobj /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /XObject << - /x0 408 0 R + /x0 283 0 R >> >> /BBox [0 -102.400024 800 697.6] @@ -5168,259 +3760,158 @@ x endstream endobj -389 0 obj +269 0 obj +<< + /Length 40 + /Type /XObject + /Subtype /Form + /Filter /FlateDecode + /Resources << + /ProcSet [/PDF /Text /ImageC /ImageB] + /XObject << + /x0 285 0 R + >> + >> + /BBox [0 -102.400024 800 697.6] +>> +stream +x+00PAkh`gb```d˥_a +endstream +endobj + +270 0 obj << /Type /Page /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /ColorSpace << - /c0 370 0 R + /c0 255 0 R >> /Font << - /f0 333 0 R - /f1 339 0 R - /f2 345 0 R - /f3 351 0 R + /f0 217 0 R + /f1 223 0 R + /f2 229 0 R + /f3 241 0 R + /f4 243 0 R + /f5 249 0 R >> >> /MediaBox [0 0 595.2756 841.8898] /StructParents 0 /Parent 1 0 R - /Contents 390 0 R + /Contents 271 0 R >> endobj -390 0 obj +271 0 obj << - /Length 4576 + /Length 4747 /Filter /FlateDecode >> stream -xْ_1+9({hHl:V:NYOiELWo~~>|uW_U7Ϟu/^{xw U9}\ݻ_6nzû-@u׷s'qο%n*O.WS&>o3=LMtc ~9_O~Ӳ x8nc}wכm~rsnl3&ֻ~~ep3B d);RP Ή*}X5V)`JW."(w΍4O+EA53 ݊6_kIuΕ%C963g/;tw7#gL Xpq͝ǃ] =_-zX|^>w[ixNlqف"hf!(iX$ 4P 8)IN:Sq-gVH /a'꭬g.hfvzAюu~)2:&B3BMzi63i6د[ 2ٚΕ6mG @ -\@YdIǎ7 Щ~HHOn%sI/6h )%s - nOL(=*%Ÿd[wdz #%0oKV1QiN5L0V#R3 ??fo/ S RM?:epzgK1·_=i.GŽ;z18hqιvIdF=6')sWbx7gdlzXDFtq⬉,)j/G.ٯ -03i(ON|nvai͸=F*4;r ydkLDŽ\_.qe_8,fy2'G( - Rq[,HP3\M]VIn9\Ŗ]#7K -3e4I#S.Ph0gh#ûiGfM=',SRV͗Z>%1= ;B1 -Ỷ BڔR,>|3t)DB7u󾬴W-O_='̈Fn%Ĭ2`s#`NIP0zBP&SM&&uӾL20GCw 2P -$E[Yf阎;>O#)+s|9tʯlN'HJSC2 Nk<,e#bKyMXB3LPT?+B -+W)C3)΃'MڐemK6d*>"M Rd^ -m#PHU$S E -ų0%Fz`R[˨3`:#,zYd{R˂q1N 1Th!}q)]8sݞٌE>~dbDގVQqiQKらDA#~bSSk d*m#͐جNbDw hSC+}s ?FV%=ٵB !~$j?+-iN(`pu-jyf~j[Di͊;΃LɅ$Eޡ98nkQ2x5̻2QUԾI9Vi& N$q[]4+.OUkQthV"$BhWsJG")GivŷDi))523-O iKhڧ#`gOѦqmCi3%)6> -\pQ݃Ԟ )<]?U6)2tyRW3ec1oJ"(_bBXnL3M.+e/~\θװtS9L; -hASHHea=lˑ_\ 8GIEj8ec򻈪fF*ZL 0,.~0=YUcMFBN.YL(0-15J:3 -ueNxMQQnC"t9d塆6Fs&yMn OBc2 -zS(P,=JTWiP`:8'i-|z_¯ҿsBEZ3͗icHqkN1k+R -4ݻO#fpMe+B QwqRMiƥ0maV> z,Y4%SݻU1lj' ✵ޚ8 b- fm5y -]#xnjn=drJN40(a3d5ݕ!>rV2@ 9;&k:aH,kxi 6Lr)t ^߬>w5o~}r,"%sB0僦\ U%50a=+Psh~?wI%ʼ) 9!çy%6/YsMQ0q(r+'OL[ Onc;xNe u_imkwd'ye5fdr9SEfA2өpEFAwH)|diʳ1-~9 -o=N0ՈMc2%E~aB<ۧ CEO9$ZGIiv%/.c̋P=+GBYD35 ֤J򌾫wR;h/:+GBh*l \,Eu^ ^ܘIH{(;39 -L 煒M''s/ϣz%B~n04Uᶙx+9l` -cMρB[zAG:{W,Au) B!K ][*xjAl DPAdPC`Wrh,ƅ_|9tyV?Ǣ inȷ}>/>zIe\qd_;dOpGN& `چfmˏ4af\ݨՁ'GL%YSȂJ]^8Z#S(7HۺzΜѽW<}eAėp!jfAcTi&Up)$ ? -TdL1KvxJQRNփzr*v LDKpQ!#ʧu72gA -Y -:!m;j9UԻ65 ̤Z#@mY-Ѷ>l߿}辽zq7ꛏŸwo?~ܕ+musEݧ\76*O}dzwSD$*Q-܁zBàNF8srģ_=Ph%gC'hBD{-f̏vTGQ$Np?Cs\o(~Cs]0];oK KГ2) LƧ GZ nd^-6] + Qc)0~!C!~y!f[fh TгҤOGc. 4jeC(p竾֠%eR}/vYﲱlY\"K3ClZ)D6urFMPJݓiTtDU|8'"AIr]v1$(WܠFuTN~/'J Ac¤U>aHb`Lq)^L2|(Ky?PCJg\i%d ^dC=š|6F^th̠g$Ngv6.Әy#8o1m{ϕ_?NǞ_hlg;rؙQA)JyysN&b2e<~gdD4M5F>5$\8 R@ee(ψeMgF<%ݧՂJ$BJ:J8ҋ-W$*k$f>' {9SnH,Cʸ؀$%LjK%5Ρ ":`(J`Fg}3%փ5ɴ#v但 A+ q!r#7S+ghrg `9 Dkr" uZM齢]f(gl݈p Sӷ ?SYB*`KP}tdI TgrArF0Eu-ʵ}0\ +M<ݱ8W3wg/ +}ܫ*|zO,@{}'#NG#F E 'MgKt,0TOӿ= ~hZwO I̪:Q9}J|0fUȒ5GM&=?L9o!ǜSUk?ܫ\x;4G~;<|[O?z_>4?}~m}y5pol9;2?88R4 endstream endobj -391 0 obj +272 0 obj << /Type /Page /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /ColorSpace << - /c0 370 0 R + /c0 255 0 R >> /Font << - /f0 333 0 R - /f1 362 0 R - /f2 339 0 R - /f3 345 0 R - /f4 364 0 R - /f5 351 0 R + /f0 217 0 R + /f1 243 0 R + /f2 223 0 R + /f3 241 0 R + /f4 229 0 R >> >> /MediaBox [0 0 595.2756 841.8898] /StructParents 1 /Parent 1 0 R - /Contents 392 0 R + /Contents 273 0 R >> endobj -392 0 obj +273 0 obj << - /Length 5367 + /Length 1772 /Filter /FlateDecode >> stream -x=ۖ%K~)dI4Ad'1}N9M6Q@(Ns}h\ -w7o^op!‡~x=^mf36a#cV9?ᯛ?l~7pŋo(Ntp6 ~||sBW7{?=s/W)ώ?IWď?w:MvpCSoc2wo6GT Sz?10pQ%2aye +l&79KDIT9=b;\8KOp`!!$Ԧa=߾exawo8 +01-U|l A\ N\) 3PZX -}s 0kjA{Pg"VFZO>rhw4q L#cJk(t%{;\@LTr.Rj aP oO\oj4 6FYz"Fyic9EmELW9τo=@>rA4gz]\g\7AFX`%%`4>v\,Rl%7: j-G2M}fpq&9SA)'SM =@Af+v;d0$鼘k4 s&JSfʝm&Bݕ9T:t0K ˂wď*wѴuQwmc@I 3R~ 8ŕj|TcZP!t-wd6^N:8ZY@U(I",u$'#48sK<0vA' -ͼ ά4(VqU!5/dZ"1B:73~vsW}}e~ݚ.4VcE,v4&-%7tSD#{bFHeIDcǡj9 wp׃buutz3IKPWs4R!Erkvʝ8n=5D>s~-hfQ6_EMܗQvUs12z1Jݞ)E{#M9t#)JJMA p57o ER@QEwYD ܥX1M]9)_/e,oJv뫓g --u7и2Mdp833W‹&N:?I|6u4+)~p - OAO@)'Պ`^zFxdK:й5RKw 6'DpQ>Jɪ}!)` gR<_Ɂ,rTc"Ј'U\@6XZ^{[ax'I'#!/9d{@)gd>pӖeh!?Sv:?38lS<ۛp~TL/1qROӷ %q+зLF'87cC6 - oaUNS0@tG[.[{HūԗPw6T:+@+?qHǕ!UlP#Bm-|0}Ŷ} BN'rv69v03ᙱ"%Eb!gDJٯ SAX5Z3|aEw@{Xr|8B63$Ԑ 7(^0f gk#jgA:@Z[Ty՗Mڗu py5H{e!$Q q*v- |ۆ)LKۚ5LE@"e5?7cyciPNkLmjt#hqetwvm%vu:#L!2Lv Aƀ)Ύ.g]m$-V#HRHz_>c?<P[UL{Nrʾ8ZA4r[Lv#$dkg=YJGO̴֥+bJK#H$Cg%*'tb׭[)HONq@%fͮMWg ]F1[r[o m[]EA2o3SMo%2h#čbB/ׁ\cBc'-֤dJ:_TO̗2\/=Kf~vs:M"K#s$,T\j?Y<1]DV% [um=a-O=}~pd,=YaOi׭O cn6.uPR<(މP6_[([c+eF0iNͼh#AN)//\FbMua-c:fɮLc*ԁA"WvXDrJ͸rrvS5:2},gV**аk`)йY}BxC:2W h JPKI$PPJRdk";2!jT=th` *.SLj#hPܡ EBѨJ Hr]Htf\Q Bv󃲖ToZδl4X̴ʹ0('0'cS}`ʏ)1bێIe~}OƼ~,q~u/*9ւf;=:αM6 tgb᰽k <c ijb7[<ǬFSbP,^SG;w,lԚ1ߥ;̶O$4bwA6O9͔;C55mu[7IV4Ls -fYe/R2y5L+7L;yʎA.pNaJ\Y)z=r+0YQ!|.Nr`_VKcЂ{&4',/Yk%gO@BE) 8\`k+jGs`Ķ`hn2J-ePUHaistؘw&נK7B[^š1`bjW:vC 0T]}U0})fap#Ă9]$6Cai$ONXX(R*˚GHj%ޓclS;CBZ[v6xVNK%VBƞcZ;r_%ڗBҗ?zY؝j= .!?/ꀼpG\8U´Hںv7_13.O,wNaۨ/ u!K.ѭS~M %B*􆘪jrHU*h|6jOpɌSN|fi~7dLeWz``IkITG>֍@+h/'GZJVfZt0Y?fyPp?{OJ{wh.̸ GȫO|V7qaxi7?ރAdk2Z\}Qݲh2] XiLVxZqpBPiiWl3a#q+5HX׿WF zpU & L ~U۱} ܳ[oXp;<퐧9?Jŕ* B!֕ -P;bbQu7傟ͻ4#ќO?#(FdʭpAꂣ'܎hHSDG"Gmn3W`rofL~7GsJ9=>b-θpW?݀"&'O;PI1V#VxyaVX?PyG2eWg*qktA N*皛#i' ԠWBh_ -OF%7j|\1Qٝ ] )K]|֤@x -Ȝ5X9ڝe"KvAVMm\-Pk-C*4"2*p-=^"Vm[*SZA1/|b8X׍AI9I߽3ޗY7%a~\ܯ%Y(I݄h. H~ЗncIbq0QU^;ed$l69ӆm}I XV4u҈&{Q07~$>.Ik7Nz@1,~2LSPI+?'Xx9x8moRx)9-4 +iPY4WM|2?:tV-)crK!Cajݺlٌܟ ~<c=?OjrpBՊSLE4Z1tr|c!QL(4U\8k5ejy.8aHUL XXBC,7$`mpq&{?pLqn!}8[oeJ!`p;\r,s%@u9˨e {A:lK06ss2ᴔ~L >gw&ʒz.p Hb:B1SKOw x=KiBԀd(l^{TGq6a*+MoC]y4KH WqT7yN$yg +QhH%lC||Q"uA\ ` +ɐUKBJ()ϦY:ch@(Cw%d:!xm_=KMj~fzѶ԰*DrPH볹cٽӯlq;|`"a,M Q(89 a0 RfA'*85dU:|uAj1Ync-\}nWYe:0 }ܟF/+SGU )9UZ]bB 7M1Ym׮LLt'u}zಮ//5O~_,_]^WͣU{o6M4@RV)ɉT*HX-8@W5 endstream endobj -393 0 obj +274 0 obj << /Type /Page /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /ColorSpace << - /c0 370 0 R + /c0 255 0 R >> /Font << - /f0 333 0 R - /f1 339 0 R + /f0 217 0 R + /f1 223 0 R + /f2 241 0 R >> >> /MediaBox [0 0 595.2756 841.8898] /StructParents 2 /Parent 1 0 R - /Contents 394 0 R + /Contents 275 0 R >> endobj -394 0 obj +275 0 obj << - /Length 1116 + /Length 3246 /Filter /FlateDecode >> stream -xř]o6+حK- y,kѸ-ڻjzzv[W_P"1I%3W!OfO:;+]yH):1/>"h -8Fb&h zW/ b%(Znonx;$sIlZ"l:뀻>xIs- NV_hߣ]4K4U/yBO>-;Xڃ>|0a;u,>.7Vh2- Ͱ01~ۏ%ZSHݥ!ʘ(^? -}w>o|7^.?jjZW"W*hLQS8_-]낂X'f"S`-oq[,, -G~[ KFApQûp~ Aǐ?xKmsrN)) =nN'[Dd4ӄ̵Qߴ@Ԣh -(Έp8 >>xpd|0|h =*U،{s:tL3j_ZCcGkؐJ!-Y4 3)V'#6 $ab1@ -zz )G]^8B,݀QJey3:@ɛN<_DnH@$?2p_ ,5Ey{h1ziՖs9qؑCC&+'yNy;͌H23ԊN|}LGD!)cn{һ6m֠ Bn*Daɔ-wj?j{z;;W=^`-WUuXYOs0Ft bi +x\[w ~_A٩u,lMԩէ8jTٜg9$Wj< >\H=~b_3zmBggF +0fW']췋l3$rǯrr pw粽mo9uwϭbg߮^~Xxu:yvpy~eWցb )9}+^'?$jj8e\TtF2CبȐ!Y+ٿ')V䰐nvzI^%>K"E@].-LQ' 4`V +un*D Uh ֡``zR B&lKtŚَ5;6=;;RI@aF̝&ȣtVfM|\5*у zbPR|ؐ@q"!Toם'e˂Nk=OȔ4?1v$$HEVƟfXתQE1W:v^b;jʊ!l"a#iAs%E̤NmJs-h.KؽHuԕdш',40-co P&e.r[勗/9i v64Fq2@q$[I?D qJV)`͝ $ c +>P|`4M@zqw,d*ãI+_ʀvT8%IWp͢ (_5gg#Ry}r[ssjC8AR)V3-8e,ߚ!F땺a4%šN"fs-]8a"qrX1OqEtR+Ue <АN $AXR|qićSj V:WH~K7)㮜pl'$%andB +rIlȻShӱߺ2FR!d$ǁ[8G0Z@!b"ews+%f#fXRW6)͕DMJ㔱Ul#W%5$"l# ˔3laSGE8#p\]Cų@x͎7U{Źq!LM I5UG A[;Sa6u\ʱ|x+I#ZP$$SƂ6dJ%Ih䣌ab$F +򫤅hB+k5SZ^-/\栲ȡz-2[>} ڰui|h5`TKk,WU4iYӱ\#T =98&ZP-i)@6ZO/XN)08O.`$|``T.;iLkfN5)F(Jr͔ W=q}=TJ{o39v$U(] t70pz喱.XnT6dhVlJ/o+g*QUU6(@X] ⭊P\M +048jhL:Z)}Xsif~B NqtVay=2J[n[z?8Np͂MŽоSv$W:kO4=O*:idS m!-#EƵqF!CPBvǚIWz n#L6+t3Cz%fR}PޢAR 4nisy7Is9b57T9UX$+,OfPL +Jb̏lw 0MC`*xķc5ëM 5>P¹L 0/*"*07ubN rF5(>8BFNE}S@}$$+QEA' !W485'a0^-p^0YlҗUqp9ԖȔq^z~5r{V#26A:ӃG 6I<5r~~۾qqm(Bp0[/wGɩ *cs=/9!8'e&҂Ue3dt HB$ N+!jf)"m QݯdO B13Ra5H5(2GZ6ekȷG!ۅ _;ƺIm` ]Q*^>8AetP%*H﯎fI܁8tT5ߦlfw19>e9~jioj>jwInqPYY}.#GLџЇ۠?g0,lӚБB!۱P/Rk]E-Tm+Hk씨4ڢ|MD/۲¬y>{0kqoQํ7h7vyg> - /Font << - /f0 333 0 R - /f1 339 0 R - >> - >> - /MediaBox [0 0 595.2756 841.8898] - /StructParents 3 - /Parent 1 0 R - /Contents 396 0 R ->> -endobj - -396 0 obj -<< - /Length 254 - /Filter /FlateDecode ->> -stream -x}KO@W]ɢКhDٕ.(bT:.f(7}#ǼbAؤ+01UJ$`$"FyEC`'bE Փҁ~ TCc2vg?fь87` ov0({%zgZoR^U^ѠyV`'Nٛ󠿎%}7%5Ok Oȷ]'(tVBÏ o7m1 -endstream -endobj - -397 0 obj -<< - /Type /Page - /Resources << - /ProcSet [/PDF /Text /ImageC /ImageB] - /ColorSpace << - /c0 370 0 R - >> - /Font << - /f0 339 0 R - /f1 333 0 R - /f2 364 0 R - >> - >> - /MediaBox [0 0 595.2756 841.8898] - /StructParents 4 - /Parent 1 0 R - /Contents 398 0 R ->> -endobj - -398 0 obj -<< - /Length 3301 - /Filter /FlateDecode ->> -stream -x\Ys~_1+P8E);+)y@2RE9*)bb|YJsw_WglSl1̂|/=}xҹ'oHꢉr,QIRrV<<,ŭ*ĐrB= ]c=ځJUҫTR!e14b`>^٠(@B˅Jؑa&xnmh4XUdnJuY9<d[!AS>cPR zϓZ)ۭ'2uK/QɱNtn)|D)' -XmHa_;IKRކ3> KJjjV ҵ%>yѡ -eɍ^T -e}K1 $}j֛p9z;S+7V8U ٚlk%\I\rKm~b.RE!Gl,.rz"Ymryy2 2CERH_'%yKXQ -k屻%# "y(ž_1ZM:/s\WKQB3.ݣM$TjVT9UDNXF*-Z -Ƽ$$ bs*9J8$VXr2Z?Y̫(!Ulܶ@3%Fdum3[`*rk\գR CϮbx2t+F閘O" N''A -yIJa,y4\֧'~)҈J&l0&>F}@m5g8ƀsS9 IzfĒ/P\,TVa"IADv~:sߩuzZ6ͣĽ_MJ 2),Mk*Ĝ :PAc*5&d F#jp":(Ï_i2&O\7& -Vu֙`|Aa8R_|\ӻٛwWznv?|MٌSlM;g&9>x -endstream -endobj - -399 0 obj -<< - /Type /Page - /Resources << - /ProcSet [/PDF /Text /ImageC /ImageB] - /ColorSpace << - /c0 370 0 R - >> - /Font << - /f0 333 0 R - /f1 339 0 R - /f2 345 0 R - >> - >> - /MediaBox [0 0 595.2756 841.8898] - /StructParents 5 - /Parent 1 0 R - /Contents 400 0 R ->> -endobj - -400 0 obj -<< - /Length 1365 - /Filter /FlateDecode ->> -stream -xY[4~P5*_n\&axhMYuJjmIdvbǶtt߹d|ۛ^aSw˲x\).0@K 4qH݇^bF`5CbZ#,;A}kxs{@BA$cݷ>Z׫ME Q0cr,Dؽ*&5"̓toޑ~4:YJkDG鴘\t"ʼF;7F>Oi?8uX [ -z)}xY˖2"c6뇕3QOՉ2Ü)D Q ђ{glU .ƍ[_p 6.bq^fW4 -+ $A 7͏E HBAU,siM RZ7+I@`C'etDHKy]cm`LN̯z D$fRxs$VOY H5b(RpjV.g2H2, |x(b,#@,A\ תeuK36a V!1%HDI o}7 z -r3yp؇0A=83&T/3`'*")Vi_dHsf}Z&ҋJCF`rފC/Z⾼gZ5D zZ}oU6DkK=HE%bA0 -~Q{iTN:)?!"F XdOSi*(id|\Hd -l46ˆ|Yb*ݡVjf0 Pu޿yQ!UScIBFDml6XB`1z6FaiڰmҐ)n44WRM#\A;ʳQG i ӑ";ᔐ>b)mgƹB{y<^BB ;6(3ӌfT{" ƃՀȐ*3$8h"!D/Ϡ0cP-`x~q3fk 1cQŬ3%r|nD(ƶL̅y\*0O b*liz8N%3NuFg'%i\I1JKqz0ӜY}L7Ӵ ZJݚ2uW^EULR4T\4]}-l͊/Pa1Aw^7?~oׇ>> stream x흉wTUcU`"27Ђ<ƅ@ TZ[Ҷ[FlZET[ cddDL2U*zoo9T"5{~g}ν;hIT1?;Zw=:r8I$)J2J CIÇ}VQ\F2Ie9EAi(銲$LפwCdq6EL9YN4%%CQ6AelUUҶ/we(|( @@ -5491,7 +3982,7 @@ S%'lb endstream endobj -403 0 obj +278 0 obj << /Length 1131 /Type /XObject @@ -5508,7 +3999,7 @@ x endstream endobj -404 0 obj +279 0 obj << /Length 8541 /Type /XObject @@ -5516,9 +4007,9 @@ endobj /Filter /FlateDecode /Width 160 /Height 160 - /ColorSpace 371 0 R + /ColorSpace 256 0 R /BitsPerComponent 8 - /SMask 403 0 R + /SMask 278 0 R >> stream x tSי/[ i6LҴͤIO30IN%N:iՀwU H@6cc]eI1%mY{Z> stream x ty @@ -5639,9 +4130,9 @@ QIV4>2 endstream endobj -407 0 obj +282 0 obj << - /Length 1539 + /Length 1803 /Type /XObject /Subtype /Image /Filter /FlateDecode @@ -5651,62 +4142,259 @@ endobj /BitsPerComponent 8 >> stream -x͝Oef"JPHK"rW3Q5ʦ8,M卜m2SW^S"]X"x:xo#z>}4/pIs/^byyƍҕjgAٍچGxJӃ͓Þ;ĴZ zLX4k0oCfd9:pD'c|_p -X%߮ꡔ6": U.22Tc-HnkЄG?$h6^Q h:2A[;wN@SwkOڗXSz ^^T.vh^z} -| ^-W_\/Q#}GoqUn, vn~v4=fS `H6@II0MSn֟<~`IM$oOx)W)ͭ?S3r%7lJ-bB||I%6&IDI`LagZ T@;1lWM|NaxYV8Y\76rfNȸd>XS)_T5U+ˌΨLk^֜֜x)TuN޸5LfH8تHĤ(9h c 4gFJ;A% QDd[ʺk|W]o@Jk~KH5qfkQ6(Xb8,9V -/8n)<ȹBE#ͮ>lP;Q u^좤"vm?M&=8 -M8=;wciA >E8oԌtGmwE+LJ\0hf#å"r7~DǺ#|AjzD3ĞOl=[ Oz8;oz# -.g}_s%ňi6.y*?(](z{#el:GF(qZ*2;1vt[lB imSf2'ɀs9Cߒ5=\qUHj¤S/jGo?ԍvt GnQ<6]S4~S;|ѣzبc*Fv7\:|o33ƀEj -B'5mE -çⴗGegfN6_>/_ѩ-4]^-6\{٭tWJ0N]UXulH%+nԁcL)r_Tỷi#ndz +x{Tg]p +m2aSc]N؄(-r9QGeN1s;{X2%ntW>TiU'F/BDh + b9ֲ:;D\i[lWx@1Ųzz)2e9KoO#6ˍ*32C<Xcg+|š"2+oȗ~ 9cو:g= ,ȣ + `+_rW2Zo9Xɫ@;] +?\o=BzxZg +#j|lm(<+&짅e;%O.ݜ͂o!\[_WR `FfRS;^&d +Y&Bed08RegUC^|&ߑ[^"s1;lQ}z}}^@lх$w+1-ʃ." < 6dv"5uOj*NP[jf&A⩙nGtKIHP5U.$z[Td=&o~ZnHM]X.0h(U&Ȯ8R@ ݓ !VTa0Zɨ$Hr] EzT{9*Q nN3%|%3@Uyf?SP+q&jyGi4dZzzIN_WͯMW>CTXfa@_Tد锇*j׊V'XTp5U\IQYۣYhO>TCg4IZh,-tZ٪1;BVUI0Gra.}C>h-gٛ$y|+MYDτxz*6^Y%6K}ώ%foR:^^7:T9Q $ ym7I2Mr5Z؊qsqy*Z~+xB~wdKlLM 8$#5p/|5$//`~#?u\|SoΖ0RuBओr_џhim5&]noSR](@Kt!ar׌C; IGuL\ryΰtrE'(zr5/{RopS:ȍ`Sl m@S\ +~hU/e K'[\j* zQTW:,\S-ޢhAV + +qy3JERkHs~.ZEhF@CcS@ endstream endobj -408 0 obj +283 0 obj << - /Length 1344 + /Length 23156 /Type /XObject /Subtype /Image /Filter /FlateDecode /Width 160 /Height 160 - /ColorSpace 371 0 R + /ColorSpace 256 0 R /BitsPerComponent 8 - /SMask 407 0 R + /SMask 282 0 R >> stream -xr8Elf5[øR]cl3 =DȘ||lXMߦ{'SSpi28m;>pǶm9c4o\7MӴ,KEQeJ4M0xn80}4rQJeYE²,4{\\)ucL!TJ5M3 ~> C4J))16Y48NEQt]m_O6늢qgdaH)n3WqnL]eEQT8z߿b:4q˲1FZkBq,n*}1YuY9Cc]ky>5}vu]Z'u]%u[ :Ì㨔r]*mgJOWyl6V_t63M3Ii%3-O6I2|߯B3t:Ѧmn < t˨nɞu=mom}uytJzx l$Sp8p޸eeYۋp8!aaZ ڶyzm)qL}ǫFN{}߷jB+5FL4Mk۶i]*Huii·WjL($IV4H)e۶+&mJ)pÐ\F pŴL_6qy莩,*Rwg*u\r4BߪsR.ˢCeYE]ueZ>Y@R0*&}JBo,ˊaVEQdYaa*tcRa0 i93ֶGLR|Rޜt:ebI|iY$Iei.Qy$yB0 Y| K)4M-4Rr15/Q -LDZ-lyt,x3)y˗Q~]^1=ZqLOxEiEQDQikeYaA{Eŷ,k I:hbpcA}_X8mw۞`^?>>6𥻊 _`8z +x켅w׾Zws +ifjFat4дM)9eN@hf[2ɒ,lY8IQ{͵׳fmh~;{Fq~mu>T=繦c|a8j//t2\b>}X֟Vd*Z|qĆi|/@{55ZBc"#ሚelhtpk9ݘnL@7&›i؈H? .^#qj6 +_}_y_}]eW&z + "C?qW3QzΝ `Ν Wᯎxɮ:.&<(3q\ d950Wg5Xl?xճ앩?z-Cn9bA\UV<w¢KՅh;[(W6^$r8܂8%`_ b2T[تgch42-&})ҭee8މ>mTM{ּ'aC6g6W-9;$ڟz-XǗ͇#mlݕ8،cji0ur$چoQϋP~/o`$oŜp`GgL)Sr+\ׯϡO={8lC04ch{qDz :N'CqMI$Pm%hW2栞#v@3ua^#6D1!U:HӺQs5?m`Z#~8{G⵼h9T=>_ +^1;֊.`qP>3J"aXӻl>d h܊^FblfQ ,m1P)ظ}+W_#^(W?͖l*@a2_$ 0KμNz)YY8ޅCSAVY/AP]Hߎ::F=@VV\:^v>c{UaV cEP~Uc54< 7𹋘#!`WHq\d`YYI]Yሂixl"(` {Er '@J>?}>:$xF76Ic2|VEVVFrÊ\Yhx$jI9 pPwdՔ.brb?D# kNU@?U ~__D0MN{+[2l? *rśoE,-##/G^BcG䉪H0)Y+('J44 %U۰i(^dD'bw"=J|}6퀽`b'܌Bz*Iw.CB=@V|[}0y&h_MXqI!w7YYUH+ #YY_+\(y,z!tP+_Ȏ71GWԗFī#|fq{VdD]Y9|S~hl> gM}v kL݉h]9¿MnEFtkd@ϋp|v.Ԅc.{]Ih']e 7R2|^]\J*'&(lm_GQaIi;h 5!5:.{S$/-C=w'WYM~*F̋Jѕ ; =X7US%SNS~SUcJcg {O-\USs8}:¿Phqל˷þWMuoXlgGD6۲a19p1O?GgO25[J4}1v+Nn=+~2}7?aG/P1doˢJO?vT+]WMØ"6]iTAaH>zO }2hܚH$ZP": +Kl|>Zw#ŋhGiBwA[끽XERͥ\Er`,btWx^{Llo@ .Y˼ +opp24\t n"H*ROgސ!@?!wd\/+qcx-q@gh2\Dy? ~P3_@ПC=`"ОKL7m o,|`* +`,'K9c)g(㍥<W &߀;P И 7*^ڋp8}߀ޏA@ׇ@WB'ݪo@ut&[i!$ŽW%z)N! $AH"ҿgի|?-&jD({-o$FJ4ғtk[?pc&j܄dI<ڟAg9z?OPU/B˄ +է ~vow`ϻoS@l{?}ÁY8xg,Мg +Pw ^ XCI>vu~̫>]O`{6TUA_e( =['`qxHCh+  -Ż(;x;Ȇ ۡtq;jځej݊ail{oVq ?Hs(oo)0d8" 6CX)"EjCF;Iælش6a9.ذ J@il  l< 棰8l9[N֧Y2%2ʗakd$~t :8Շc`a EfjTlGl3S~P~ ]f턢z;Mr#\dX DaXSěaVؘMe'lݍr|?RBGQI{ +i^A$>K8$m&4rc>+=#=k +v}_ifAQ zOn+"~$ []ifC6m%[`fX nHP6êd[6Bf( +E۠(dv' =h'W)/>=O-_eN0732<)\-㊗t,"aXU%TCzXt~ߒ@6v=%¶}P~*C哨x +uD]ϢPߋH*ҾŦS{S!Y^I T =bD8=;~BfxF7kh/d6^ҟGݧu$Gq'G<OBv@~زМwӘgC6$ނ7Ͱv#5r,_ ˖x1(Z-e + WD 3#y+CyYtn3}á=ܹlC/ޗQk yE"ߑsl +`E/$E2ɥrIe+\:%T8iAHRt☌9P72v?+l >FƏ_={iBo kh +{~ +u=C"yO"5:<Gj;dj݇ .$7u|%_+Z,΍- + Y6Síp J +wx**JwEnύbpeꕠv-oҭ)$^Զ$PEHj?K9xu/F:~zE 'H}AGd9l:vƞ|+*E"rrb#WȯPZS_kz;- T1")2n,6m$ +@5c_1`캉ױ +_B zY 52| ##hy N. ^CQKdw=:OgH +:NRGl=s@PG>Ɩ.- _>mtQ7~yQߙ.)+(ɾmsmwrxo>̝.Y^aZN8[#0~ߣxSK|,W\z dl7FșK=u!o c_%ȅmX#$qfUlKh#= +rS~Kt<g۽ȫATlsd*2 +bHi‘Fr8a YT$%SJ xJI\2V[~ٮ#Uh@51~o:.],Z鿳s1׹QγvnMup=#3;ol`ņPh1Lϧ{p@+=; +_ !swa/SNJ^ EM@$*@L4;E6rKQSj{Hjhl4pCOT"o +H'% B  y#5$%MD"SWϨP=IT+ͬI ~7KRTN.Z'T:GԍA-TwF.'' - Ј ($Azὕ2˱3OB7wy +nLq\c;;rndu޵ʿK*[=][x*|/eD{>f YWu " +GmrB,Xl9vi\DYsֺgem{lEw2f +*7yOio%r>"-0ڊbmT$$&.M^z'*0ɬ6oJ1MsƔ&H:=ktbI@0ðtw!N + 0~ISuM7|]{ouTn/ޜi4tatӕKgg֏9ֲ[Nۭ[3 k#޶]_/Lö*c l@L +(N$rw;캛SUl|c$KK1XFzx ZNw-4 К2N_Vrvnq@/=ب }*d+ ]rQwVƒ|siƫ ֺSlkvs %˝5/z;>Z +C6ăMlXE L;d;FRV@f~c!YPn9%:6v~єU޿R0)~'aYT ! AyFƔ,hxjBW{Sᄵjh)wY닇n22Ey*:j-f-f[i_h+^j/_qNj. ⰳ*쭋Pq19+b"PܯN( +ONݔ_!BS}#t~G?s{_oML(Kuz^ "8`?}D.űV*6(xu}gmO[j,0ܜ7t{PޖCraQ-WuHr\Ӟoڟ[AkQQ&Ȇ[hSF vXX8ub^M3tÔeOH=lLR C}~/m3=aXM]w0yt4ScTLT D:(o{\glMXjv 3 K,[/mӋ/"92VVVV^!j{Ws?t#`9"꘿.h`\T \L9UtLI.ZaDu¯p쿑\xJopjX7M9X*"g\\Db.؋|ƛ ZNZjV /]/ب/ޡ/١y^'7tݴ4jVmdʳNsϼkK^QvWE5 IH3xdU"VX%|DI-XFD?qRǞfY}ӿM-tT/ۦ{t=1q?"؃`Y3XPՆ\e~kxݭ9ʦxx\X]>rpd +ĀXz>0%6y~1)~c A.wVl5nުo_r̦x"=lb,[;T/X/X/ަ/ݩدܓk}d=dVg٪6;oyzi/7$⮌j@=nࢍ|[ #C mcN|T vb&Q7B8e95>h%u"EJ?˺_S^tX*|zR?B7]lR(l;ݦN:0T!D@84sq)EQ_YU/{?zrt&{"1Uo0f W +V +7m,ۥ8(gc[ƚ&sel|zv])w'br#ȋb2&PɆD\փ2 RMo| UL6SP!Õ6bw'E't'-isnH6=h_[f_"2Ql6;z(D@ZxIHm,P񔄝y5g{gclcZCIp.p5InM>M_U4vmRXk;cw1lÐ5 &4pz6RTDaWnvo٫CEXP9T\T[\WN[ax?OnB;c ƚݦ抍U,k:[FG⤧w~J~3ʍ +@)#U *Z!(f\楘,7aLH2JETS +ρ_|0a"B5C"͈oB\#dְ᪸,) ;o-Cg]]ڕ/Y6+ -/,Z;X|F#:/c^c.cfS*sEzn]);V |)`]8n< qJ>Zb",a`&Sn@݂a AtR:<%bXK!kL20 JقQ ,Y ` ^F`Y_u7}3ϝ ;M5 J h$fjJvj*WbP`h}XXXT\e^k]olrqN>.-W"1 p2>RbՐXx fbVD-1iY %ZvjT#w~%lBbđC+)8B9وx)$Cpj&XF\wB9;wNի-&CJۂ|*ppt=9#䨱v:XT\"ZghoPuw}7 Z.עq_/%|D+` +ūSb6)DNn!/w~j +;ďLb $)47)H1h>VE*Pi̛q Y/?yvoW>cmch*[/^_4H)(Z7Pzp#/ SƺFvc:Sy2\R&h|ɣg!`_n=_.,%0Zc(^՘Ƭ`susi)0&1 5ӤD HzH$#1sufHM 􅋵yD&@ e*N1ȿ34j10V7g*̢6&{Nꄧklv)dw`>H X9f*0Sh +tͥ\1$HF8{C!i}$U}DjHCxQIb Nl bE0^be\ |w"k!ŀ;SvkfSZRKihh +25EJ~00v62M̢5ڵVF{sSqw~!J{w@8FQK1SrV`UD4W9%󵘯K ]$.N@I5(|Z;HbI>I]ՅҾ 0[J/R>\ĆB`+oiI{NdIP\_XWP`0`%u [CQcNccE<\e]kl7murOx [Eނ\CBa3%-lfԲ6xؚץyt>ңw?m&_C;#Jv:٨$fQJ@ 1;1ϵǠCo)W>{KE,*_F"w0sx]oYnx(m$A6Ud̵uvFlG\PA]~s_}W`& F;8c8N-Ř-L)Ep- 订O o*5i TCOPHS"QғXԗ35H^֖ +j"WeNjPF +p.w_X_sﵷd[%͢U +"W[`LSbp@΁Cs m_441f+VWYjk^@c9a +_Ǒ[8cy8jka+NWg?HGxB*)*LRx%d'pEAzY :[6kV*Kh  ,,X)\I9 7 Fqz|j&VhXn^SlwFōsρ,_D+8| GnѤx>PRѾGw)T mTFD~T*kOQHb(@  +t۲uU+ʖ.,ZAn( WC!c}I\RVQՐk^orXӼ]/e#qı8zx^"Ա|jT/lQrS.[,RJa*$m +=K%}\B3pYeE5B{}muv*h|dx`JM񪁒%nhO!i8r*D_QZ[TνjR1b)B]ȋ +p GЗ8=/g4?qڽm@joS~M,2V뫶j?H߰V9*V 3%lG߳ jw@^d9ǑY x/qGeBESױk8v.TSSjGtz$jpI7\";֋8|?7}yGY<OBA^ wm2.qM\P9@b-sWV +TOΌ5<4հ3Dv(v>]O#|_Qp\8v5)"E}!ۄ>jLdCEWC_*<<")xOB h?-!6;D+-K}M+]Mk,Æ`5꥾AќHqq'[Vupp+4솖~9# z +;g8=Mz *%0YW>d +]sgF!><')#qx@^0hr=뙎Qb_ݲh_0T;/*YJ-syн +llhC~:B1:')> ]GZv4'Iy|"[B_з8 +gQ<\ ϣ6I~D3( +};uz*U8=\GI +m8#Ahm{y'5As%X/6[=SKU- TfŪ1ct:=T@O&ԬC[q}$$EE!0ǑrN,xOQݯ i.wDQ@OP#C/>Km B=(G 'rACAc@nh ۠~3X z2|~buPv y) Lv/Zf|й Mа v@. +^8@p$GtA#4AǐhTm?Ekėy} y_Fy:N ":=h*/ +* ϓ[a r@T@}u4oMP]ˀj'i- 2}[<-O>xg'E*3 fo4M5 . 4gy>JK'''Fqx"h怎g9ԬаbhI ^H^KDb& "9@N!U +5fJ$Bt&ڶDfh n ȄKz!Pesئii%ަm<9 1L#l(N4OSl&PK@ +]Mo-YAk6lw&D[wMBr1/;a*97c5(3f؄ B-)ԺnR@fh-i=4C6,=z>Pe3ئIѦyƵ>3B%ce㥏%fut2hsABзhVA*8CFhTNMk#6D] v' +`-QNw#:v Էбw@v;m ͆6Ae&nAMмSAZĥC.`< Atq +#ki.J<KFKKe*Fqգqa"hsz>YVm&gņִ6CfR-[ BnCmȚ وڶ#;C#cqZimо-Lf:6C+'au +]nJ_Rؿvυ|h5Nf$c)ƹA|_ú`HXɘx#_KNYc^ +]IB1 +eAh\KYC!iI6-4q/" ٶ!R]o@ͣu"?BDUмא-q +WLh\ + Cˉ\R8,Oǡj&O'~&C sU23Cc#bŏŋbK @d6怮yw_PCJτZ a5Lu(:r*Lm*J$Z7"R`H&RVi͵ди2a%áeP@b[B?̅jO-S߆x\L:+0' Y S4%\4&Z<.V(S'׎%Im*h s@<7 ,`Y꒮(, + a5.k]B*d + +\ZJYB "[ v>`\=v΂ӡ|*2oH֏KEy>qփI@Dhl +&')@9gA\h .,e0&t DͪD$aLh2f&322e4ͥph1 )a![HY@>)Oo6fB +&I|N0)"W> g ƅƊ2Q 1t<: ( fA 00C3/!ZjtKȉ$-nKi{9Z)K2@YFy4$C"*tBRxEyxi4sk'|08h/jB\CT΁V3:}h%6gf}Ӊg;B4|"Mɤ#~2)w_×?#?-Ȉ)3[_(_/ǂ m"PL4Bt5Z {gb8%u!NlgY|lq.7bf1YL,o6;fA00Mj@ &:ς}3R0;CS@5'D>(&x:4qd,'֍'=; Yϟ)-]eU5xih˷I@9O$qLPOA43v$ 34zggwgk5=5393S ۮYL {Cfdbf>!3o:z) ']SIs"18@X<4ұd/f0uccᆙ _PhX#L-~/y+z=׏FM@6ֵST @B45g +9wN:2Lǔjj}jT99>5jRSS"ю)1xk:==iMg2 '|DsL͎;8>cy Kc@^2eciBx7w?o?:'\?sqsGy|()omcy8x@>@D1tLIj>QMO)'D" APۄbb}BL51tNd;'rk"=tML |{PRcxy94fi!KGꗩO4Jū|ySycxd+g!aaN(/3VjYd@{b,Pep)s rcmqᖱ 40+pǸǸcqXOtqLylu\X6."S)U؎j1 6ǂqɨ@c2W< @2oK h~4W7`Du㣒!@`pcG) ++OO qDc\(Uc|\i 6hs Na[[Z3"ᦌd_<[7]3)zQk#֪GmUlգQΚQ<| cFytutD6:&Web438eO:lh+F9@룠(/}oxG]maQl%eqw.IwR]T$7-q%JX wM5`<9nufk}o6!3ZC+ŶS ywRheVWuQ69Щ/9@^7ڠ1*o7C|iמs7\wʕVl=cfpЇstw+?*/+}'CGcGA!ի?r~4|^N|}xQ_1 VUk5f;hcAWg;:Mf ߌd4MJPe,,S*3Vns.dK]B~u ]{VVe\.0gs4s2~K r7Akj/Mdh}+t ]kZq9|S}~Ϫ߱F}ͨi՗->ϴoS8w]6 gC'p}t6WfJP&7MYM <,jTiuR(XؠEwn n1UT"}5O_Ri>NSIr/NĈY! %qjoE̱g {+n mdۯtW:Ny*oX6o4^R^R 焺AIuRuUWb,K@>fL M},L4`<.juTVIeMchw*Z!T}.7Dy%.)4'%w"v(q)K~ +\ b"0' G,s\.teӵgtsn=R^R RT%示APquPWI0NYKw~}ڃWn7W` IBI@qdQe +UQuS0uS@,2]»KDw ,Q>Oj/e~Na ۏa|;E/&pK^_#@ +AR r$z;F%ȃu%O9H^/eB4:~Fv6HeTnm>'X\]&%R]?9C;ghLXe{엕H-clL8Վ@IJW( *DBiYTYcw<^ZXcfb4vI =al7/0ɋ dGdGmy-PRBd1B>LGYt!JDyYkDsl5Ft 0V4059<8Yd\'gh/[ `mmfz7P C+FvbD7F(q\I`J#()DI#JV`e +N@;3x{o`i>2M-ѫ$z@bI= +!t?+x1ًBpyy0[A`7` +!Ȉ!ZS0I,~9_ayחfo/)w˨9T]DT]Ĕ\'y;vuE}{؞74s}ћ׹/{ri5_O5v DnWG +HJV2p7 wp'hgfidzћ$ZI Wq2GrDb^d7&zpMn2n:eV +q[aVX߭.AVR.!bQ8M4]`Y65^D:hw."JQuQu;u,ٝef΂=o.+l65ҦVnGN~c0tH7 +wp7up7 w4IIk G*1:"y> "ЏhfVt7*qэ nwS{ؼ_}S>6@>їXVԴ5Æ|Xχ8! +!F +х"A8NgI<2hy +Π9f;(*@232ug4ў۳Lg[\s^X.QPɎ2F؊bJ @:1Q11oH%_Rgď/Awض +:QمI.\pr=  h?!Q>;§'먉sBH'B.!q ?I:TH-64ҚFX mL,Βi=ög֜9KC兑z7Z׷x'w#80F[Nvj ATC0t*A:Х:B'^=¶hD.Hb{Y>Afؠه̘0=*ܺN &> +, !N # "BQ;1GIAZ:Y6kNdvhg4۞a[\sV_7VsC兡 +lR͈ƀ0vkD;Z~~Е^ ]zs7tꆎ w»Ndǁn;ά$'%h~ hciቴX(Fc&!b!ȉVSE?'a? ag2^GJ%zi$V +nN + m $Na$N,ݚb[3 W3T+sU˙t_= S +b "@nj@e/tJn}u ;C'owȎ)ڐ ܴ̒f9hIR4@/L +!9(^D?]Q>rG~/h)H%Wcp=7P+P;wp;h+D3MLsmd:_( _L=92XNUSz +퀆ijzqCtJNyqq~]+cEY"$D%xz!d Q!5_E^B^z"/~&bvTH A>LJ|K䶗~؏|QҌH$HS4j]uT(Mg]'oZHW kixYtNЅ:;;AVh +Z mA`Ed&pNh +~NꅰQa11F^R^\=>fSc|zO1-!DN2/%vľ?b~܏\ R7!kADj!F%1)fj)fX,M gzRuX~A;^Ajn W~2k.llNо5fhF +Dm E'-z)l"}b|bZ^\^|$?u}r<v<䞇8Gċ{Kr僯}pŏT b0^UM$sd*ev,3s\F_EMTH͍6GLB箖tEnر=q!n̅ Zb%/~'U +Su/Rtir(8 >9.*+t倯 _5V Ixo؞DG8f:zC౛=v'V' OB1Z,&1тVBQ։Y uA~"}&M?cbjX +~dYvJmxъm[ځ;C'~đ d£¾{lշ='Ivj5[ڜ\mL6v2F9d~5?T^Y/fFE-|xǻYJSl Vhŷ ߱\unjׯ vۡG=shסߵSbov' M(im,6̒@fF7H[r|7s?sOG);&$ ƼWwNwм⭤`!D3.ifVl+n'`1mm[m3VPq.~6ƷUS~ـAlG~>YL/G0߰\lmTBf7̸0-`$'y$ߣ`< , (| 4HwfE;%:}l7Pŧci恔#|t0SmڙMi䖙țy3R&s'}'0qAįak\h#;%8?o8dfc`!9,F{'wAN!>ԟ<&PnM˝ |sǶAߏc'Ik'-&a&0a0 B`ykwkV,l!=RHZW?NMya˥tm{ Lq8n7A7;{b')/څ5+>ӃÊ@!M_X{,O?c"!>ԗ6ܝb+L$M&w nٴr@x O3VY?8`N*nR=ogAWg1>6M{`٘w-L Y6+6=ox+h ٿd?Կ7mz];;ʾ0o'?OޚM=zpAc;xx8]mtq[Eg3grh@B\ ljc $H6ݦwN[{o#GFp!>RHw@>:o7]}'>O|'Ws3 endstream endobj -409 0 obj +284 0 obj +<< + /Length 582 + /Type /XObject + /Subtype /Image + /Filter /FlateDecode + /Width 160 + /Height 160 + /ColorSpace /DeviceGray + /BitsPerComponent 8 +>> +stream +xJa Wy s!nT t)ɭ ANpM&Mhi-H84s?/bo8>=qco}˸-WA_W®%xu {K}m?;.[TݖFޡp]˵!y?yZo*F]Q6*ՁeF2B叼;#t77Q5JՉ׾yՌTwsFa.6Z_ us2ZϾs $OۧGdc=EV5j;uV?2jG'F$4j è>0è>0è>0è>0è>0è>0è>0è>0è>0è>0è>0}ײ~Qe`g`߷ ɰ8٨i}H goyӹƲyudT6mߖ*2MqGOy?R:IuoŸ_ד_q f +endstream +endobj + +285 0 obj +<< + /Length 8405 + /Type /XObject + /Subtype /Image + /Filter /FlateDecode + /Width 160 + /Height 160 + /ColorSpace 256 0 R + /BitsPerComponent 8 + /SMask 284 0 R +>> +stream +x tTuoUeo,튄H 1tiGvnmQ;$,}$ld*$@B! ЈNQ=*%TJ8!DyO5**Z/Zpab +0rhе*:`=%0 +ujVj4@(qaU *& \-Lla`L pC*\@a\$-çJX*ؠM*W5D!R [m@b46!Ĩ1D451BA]KKhVa*ؤpZO@ⵐHLUc@k1hh +fD1a* 8QDaY4-*EQzn@f3Y )ZHBuL)dN (•BKg}Z+gCÈͦΤ3Sԃy( L\ +UƢB5$K:\F +һ<ۮx"6y 7ܮs槜ݑ|&7榜ݑ~6cuvW@-OK)-SNRנhB5k#x5$iҲfP .w{& dO>?;} m3nn3؁䳹])dYZ6,I"bPA~ +bTx +H)G ;tk +RA2ؼxաlH6̒q3 X>|6'a kա͋H5ÞC +CjtKlV+lW^ )BuP2V&^&+?)_1GY77ah0$+ v0:TEz5AJ5|ʍ%@ +t[ E2q=iQ3vs368կH{'TkER ~EdiP^a$n8\DQ&rwhaP"/>~@ƾ谾maa,gs֎spn6<%2TK:ʼnQ*T6Vm-_m[s:bM_Ě~b 7# &۾5#ǽ,B)8Ow-BNnFD*BT>ݲck6mԦNooG683︹!%> 6mα5- T: +8A"rEU>ٮyUO2)Т 5*SpR9 +QB +Ԑ|-ia*]މ5N~CNh`ՉVkڻ*Hr4,Q"$;o) N )jT jT +e^u78'YNePxU?x*l(WB-T8%J›J+!] j(`G-每w3p?櫇zZa.ӢjBQ +Qfc "D% WW.J4PTtz{_x8f`?_}o-TdQ\ +%(P&2Ir*ҝ{PYf>s/ne++u30z_yw2*R8Y*Q+9D!A iJaW R<\++z^ZҊޗW~y7QDK+z^zGJJ(.G(t W2U@2CPJȤ[ԱXC/,us+~v^XcȤJ*ۭF}JT@2,(+ E +WA1y,>ֹbg~扞␛[x/=%GC~vK=0߮ߟ~fg\dS\U(1EBHD@/4*@%*PAkXKUOHOHH}FҢ}uO;$)] De*ԗD5B[]2T]EJأ*%3ZzɅ/z|tscv/YRY:z9zȰ9:pr?TQ<:7=@R:IS(1SB() ErWBUPjЂKu.׵d77f%w/C;]M_}y*|c/߻y[w-׹d}HTjWDr'CQA*XJVxjoɜG~ǝnn̽]]VT[|_._o_⦴Ϛ;xxs:'Z&q +~e5J㥐&g% +P +%-g?4c} gwsۿ`9?=~o?3g:fٻ[8cn~ +WD9rO9Z RHBvހ +5k̹{1}nnMOXj>??CwW?J}1?8eYC~oUIQkK!]y_wf9x9fOk=h;k>p'-k>M;^@imk0HJ(1OB7&ȐB +e@rElk mmws~Sa}Ͽr +Ţmڃxm3{gZM3DI\%PA"!Û&+oW:CzH:+ɔzșK.K5g6{4+m\F{ѯ[*3u29nvB2G{wK BvM_]܎uiۃ[4Wz J[@}7!%2I.0+6O hƞ6] s kvv!+={7:JZ6Ok*0cJ2JRHrcA@JP)L`uMS|2ŻE -?=~LEg̳Y;4Om" r0P\%P=ɍ o`2/ڻQݤnvcëY6k;taN"hnюh=MFU- 'a7b 12 / +%P*J)ZȪhTz4)=H=_ fHӤhT +A-*CqBIn?$@F QU&h f7DZ<=}!i >BGYePK*%R5#/I^ +RhrC4׫ƤsG}k&åC@i$Auջ 4V^n<^z5ohw̒nWo701jNhࡹ:RhX-)p3~3Kڿۧe4: 28*3( ` @ h &GMyD}cen tIP]28*3Hk?D( @0BM X :.N0 D_𛉰jVC&V@,A(@JQb^ +Փ\557]r)96\~vCIT!52Mɽ#?{A@,W(a$6r Ƥ𝉰7μAy~J P@C4,+M/vB>5 K2B(7> y*5`?4a"$E3~3Q7fԋl@,(@J(I|QFɯ__/~G=W}QqՉ}>P@}f?zzk&3Q<gQZa= 2jWsIh-z󞉰ꘋ;z_1ɯ@T̾P z46BOf(.}QV5+!藴^k'Wo$yDV5)N0뼕_o֯7$x_1D bfz]14J g"lz֓ 3B@*ѯ7^ 9ސ ް`C,buИ=e_ycWk%A$JIb7 +BnzxG3Kg˯'/b/ Fo7Xeh9#BO}@r=bVTK(1Ib ECzְLmUf7y# 9I~ ^P/zQ՚xB,6-}ڪ_B-cf+ %YU^(TҊ~= R= =ȯ'Tyj= 4] DGyDV*5[IP-ɪ"qTmoDxDVfϼ7JBHBEP$2T EN=hju&3Q2[c:TC*I\Ix!ʽޯʄP)j`B=Y Vx'7oA[jc:TC*I\~/t=BY83-OC B'K*@R-| L0FfnZ #FDuD!Dc:TC*I\I& + PPP `LV~{|}%f$Kcˑb3Um;ԑUIHb6 u0iZZGZZEڧ~!0(uI^f7'gS&wl̢sGj:0l:foX ++ +yDVI0Dw+@@ +@Nv~M-: Vߪ^2_~\|o9m壍45Z׉p;CT7~XHnEBHi^ ]Uo݈fϲfg_Y}|5?_`c+B)d9a[w:WKUZ\'k??NwR1UZdLmVUK<VG32yDVKm(~c2vTTQ|GQ Cp4 F3UC02'L$L;j~kAlq.MGee5۪Z!L&hkq*ԁƤ}۪YX5;JW;Jd& +=1q_lfq8J32Dm_I,o$v$<]%U%wHtcZj3UB0 fgݜ"e%/T&Q[/؈tu/6🉰(/MgZGTJ¿u"lZfμN3u*=*#0Ywƙu"l$(ge 6+YCUwe%ϙwf!&FrR}(F;_Js/|˻J_UٯUc(x(h 5J}V\Y|_}/|׿يmYb'ȫ?qбoiL~@l_=9f~4VJlcDd5JY[?dV w t_U‰Z7+t[(cI9m1ܶqLd1{s]ݗ;j@>zt۪=qhn Xئ{L~ sK-B0y oM8`"-,FSvx>-A9{ ̮vJan4UV-'MF v3d/1ڥPtP> endobj -410 0 obj +287 0 obj << /Length 999 /Type /Metadata /Subtype /XML >> stream -Typst 0.14.2en-US2026-06-08T13:03:40+03:002026-06-08T13:03:40+03:006application/pdfN87Qy7kU35qwV1OlvKlCOg==N87Qy7kU35qwV1OlvKlCOg==proof1.7 +Typst 0.14.2en-US2026-06-08T16:27:32+03:002026-06-08T16:27:32+03:003application/pdfjJHHfm7hptPrFCmLY+ERvA==jJHHfm7hptPrFCmLY+ERvA==proof1.7 endstream endobj -411 0 obj +288 0 obj << /Type /Catalog /Pages 1 0 R - /Metadata 410 0 R - /PageLabels 14 0 R + /Metadata 287 0 R + /PageLabels 9 0 R /Lang (en-US) - /StructTreeRoot 15 0 R + /StructTreeRoot 10 0 R /MarkInfo << /Marked true /Suspects false @@ -5719,426 +4407,303 @@ endobj endobj xref -0 412 +0 289 0000000000 65535 f 0000000016 00000 n -0000000122 00000 n -0000000202 00000 n -0000000458 00000 n -0000000558 00000 n -0000000679 00000 n -0000000839 00000 n -0000001071 00000 n -0000001353 00000 n -0000001584 00000 n -0000001933 00000 n -0000002079 00000 n -0000002198 00000 n -0000002307 00000 n -0000002400 00000 n -0000003023 00000 n -0000003962 00000 n -0000004877 00000 n -0000005190 00000 n -0000005216 00000 n -0000006019 00000 n -0000006164 00000 n -0000006507 00000 n -0000006649 00000 n -0000006739 00000 n -0000006829 00000 n -0000006919 00000 n -0000007008 00000 n -0000007097 00000 n -0000007219 00000 n -0000007314 00000 n -0000007405 00000 n -0000007536 00000 n -0000007624 00000 n -0000007747 00000 n -0000007853 00000 n -0000007995 00000 n -0000008137 00000 n -0000008279 00000 n -0000008456 00000 n -0000008597 00000 n -0000008703 00000 n -0000008844 00000 n -0000008985 00000 n -0000009129 00000 n -0000009306 00000 n -0000009407 00000 n -0000009487 00000 n -0000009579 00000 n -0000009671 00000 n -0000009812 00000 n -0000009918 00000 n -0000010059 00000 n -0000010200 00000 n -0000010341 00000 n -0000010495 00000 n -0000010596 00000 n -0000010737 00000 n -0000010843 00000 n -0000010984 00000 n -0000011125 00000 n -0000011266 00000 n -0000011426 00000 n -0000011533 00000 n -0000011674 00000 n -0000011780 00000 n -0000011921 00000 n -0000012062 00000 n -0000012218 00000 n -0000012375 00000 n -0000012473 00000 n -0000012614 00000 n -0000012720 00000 n -0000012864 00000 n -0000013005 00000 n -0000013146 00000 n -0000013312 00000 n -0000013422 00000 n -0000013563 00000 n -0000013669 00000 n -0000013936 00000 n -0000014206 00000 n -0000014470 00000 n -0000014750 00000 n -0000014847 00000 n -0000015110 00000 n -0000015191 00000 n -0000015297 00000 n -0000015586 00000 n -0000015875 00000 n -0000016164 00000 n -0000016453 00000 n -0000016742 00000 n -0000016859 00000 n -0000016948 00000 n -0000017085 00000 n -0000017186 00000 n -0000017317 00000 n -0000017409 00000 n -0000017550 00000 n -0000017692 00000 n -0000017834 00000 n -0000017938 00000 n -0000018072 00000 n -0000018166 00000 n -0000018309 00000 n -0000018452 00000 n -0000018595 00000 n -0000018699 00000 n -0000018842 00000 n -0000018985 00000 n -0000019128 00000 n -0000019271 00000 n -0000019375 00000 n -0000019518 00000 n -0000019661 00000 n -0000019804 00000 n -0000019947 00000 n -0000020051 00000 n -0000020185 00000 n -0000020279 00000 n -0000020422 00000 n -0000020565 00000 n -0000020708 00000 n -0000020812 00000 n -0000020955 00000 n -0000021098 00000 n -0000021241 00000 n -0000021384 00000 n -0000021488 00000 n -0000021631 00000 n -0000021774 00000 n -0000021917 00000 n -0000022059 00000 n -0000022163 00000 n -0000022428 00000 n -0000022693 00000 n -0000022958 00000 n -0000023223 00000 n -0000023306 00000 n -0000023411 00000 n -0000023702 00000 n -0000023993 00000 n -0000024284 00000 n -0000024575 00000 n -0000024721 00000 n -0000024858 00000 n -0000024953 00000 n -0000025036 00000 n -0000025131 00000 n -0000025226 00000 n -0000025309 00000 n -0000025404 00000 n -0000025499 00000 n -0000025869 00000 n -0000026025 00000 n -0000026117 00000 n -0000026209 00000 n -0000026301 00000 n -0000026393 00000 n -0000026485 00000 n -0000026579 00000 n -0000026719 00000 n -0000026811 00000 n -0000026903 00000 n -0000026995 00000 n -0000027087 00000 n -0000027181 00000 n -0000027329 00000 n -0000027426 00000 n -0000027526 00000 n -0000027616 00000 n -0000027710 00000 n -0000027793 00000 n -0000027887 00000 n -0000027981 00000 n -0000028217 00000 n -0000028308 00000 n -0000028400 00000 n -0000028505 00000 n -0000028648 00000 n -0000028791 00000 n -0000028934 00000 n -0000029077 00000 n -0000029182 00000 n -0000029448 00000 n -0000029714 00000 n -0000029980 00000 n -0000030246 00000 n -0000030330 00000 n -0000030435 00000 n -0000030727 00000 n -0000031019 00000 n -0000031311 00000 n -0000031603 00000 n -0000031713 00000 n -0000031803 00000 n -0000031897 00000 n -0000032083 00000 n -0000032180 00000 n -0000032270 00000 n -0000032353 00000 n -0000032447 00000 n -0000032541 00000 n -0000032624 00000 n -0000032718 00000 n -0000032810 00000 n -0000032902 00000 n -0000032996 00000 n -0000033079 00000 n -0000033173 00000 n -0000033267 00000 n -0000033366 00000 n -0000033460 00000 n -0000033559 00000 n -0000033653 00000 n -0000033749 00000 n -0000033843 00000 n -0000034131 00000 n -0000034241 00000 n -0000034335 00000 n -0000034429 00000 n -0000034540 00000 n -0000034634 00000 n -0000034727 00000 n -0000034832 00000 n -0000034923 00000 n -0000035016 00000 n -0000035266 00000 n -0000035385 00000 n -0000035518 00000 n -0000035610 00000 n -0000035726 00000 n -0000035823 00000 n -0000035967 00000 n -0000036111 00000 n -0000036267 00000 n -0000036362 00000 n -0000036459 00000 n -0000036603 00000 n -0000036737 00000 n -0000036832 00000 n -0000036966 00000 n -0000037061 00000 n -0000037158 00000 n -0000037302 00000 n -0000037446 00000 n -0000037602 00000 n -0000037697 00000 n -0000037794 00000 n -0000037942 00000 n -0000038085 00000 n -0000038250 00000 n -0000038340 00000 n -0000038434 00000 n -0000038531 00000 n -0000038800 00000 n -0000039066 00000 n -0000039343 00000 n -0000039437 00000 n -0000039521 00000 n -0000039618 00000 n -0000039910 00000 n -0000040202 00000 n -0000040494 00000 n -0000040582 00000 n -0000040706 00000 n -0000040841 00000 n -0000040938 00000 n -0000041032 00000 n -0000041126 00000 n -0000041220 00000 n -0000041311 00000 n -0000041427 00000 n -0000041524 00000 n -0000041673 00000 n -0000041838 00000 n -0000041932 00000 n -0000042026 00000 n -0000042160 00000 n -0000042254 00000 n -0000042351 00000 n -0000042513 00000 n -0000042613 00000 n -0000042710 00000 n -0000042869 00000 n -0000042969 00000 n -0000043063 00000 n -0000043197 00000 n -0000043291 00000 n -0000043388 00000 n -0000043537 00000 n -0000043699 00000 n -0000043793 00000 n -0000043887 00000 n -0000044021 00000 n -0000044115 00000 n -0000044212 00000 n -0000044361 00000 n -0000044526 00000 n -0000044620 00000 n -0000044714 00000 n -0000044848 00000 n -0000044942 00000 n -0000045039 00000 n -0000045311 00000 n -0000045596 00000 n -0000045693 00000 n -0000045787 00000 n -0000046044 00000 n -0000046138 00000 n -0000046222 00000 n -0000046319 00000 n -0000046611 00000 n -0000046903 00000 n -0000047195 00000 n -0000047300 00000 n -0000047394 00000 n -0000047511 00000 n -0000047663 00000 n -0000047757 00000 n -0000047851 00000 n -0000047944 00000 n -0000048035 00000 n -0000048128 00000 n -0000048221 00000 n -0000048465 00000 n -0000048524 00000 n -0000048583 00000 n -0000048642 00000 n -0000048701 00000 n -0000048760 00000 n -0000048819 00000 n -0000049001 00000 n -0000049852 00000 n -0000049943 00000 n -0000050196 00000 n -0000051830 00000 n -0000059308 00000 n -0000059493 00000 n -0000060568 00000 n -0000060657 00000 n -0000060914 00000 n -0000062836 00000 n -0000072417 00000 n -0000072582 00000 n -0000072850 00000 n -0000072941 00000 n -0000073218 00000 n -0000074732 00000 n -0000085320 00000 n -0000085504 00000 n -0000085941 00000 n -0000086030 00000 n -0000086287 00000 n -0000087272 00000 n -0000090655 00000 n -0000090756 00000 n -0000090857 00000 n -0000090958 00000 n -0000091059 00000 n -0000091319 00000 n -0000091902 00000 n -0000092644 00000 n -0000092814 00000 n -0000093087 00000 n -0000093177 00000 n -0000093460 00000 n -0000094554 00000 n -0000101379 00000 n -0000101417 00000 n -0000101455 00000 n -0000101814 00000 n -0000102237 00000 n -0000102284 00000 n -0000102332 00000 n -0000102379 00000 n -0000102426 00000 n -0000102473 00000 n -0000102520 00000 n -0000102568 00000 n -0000102615 00000 n -0000102662 00000 n -0000102709 00000 n -0000102756 00000 n -0000103046 00000 n -0000103336 00000 n -0000103626 00000 n -0000103916 00000 n -0000104244 00000 n -0000108900 00000 n -0000109264 00000 n -0000114711 00000 n -0000115003 00000 n -0000116199 00000 n -0000116491 00000 n -0000116824 00000 n -0000117134 00000 n -0000120515 00000 n -0000120825 00000 n -0000122270 00000 n -0000123588 00000 n -0000132971 00000 n -0000134292 00000 n -0000143036 00000 n -0000144357 00000 n -0000155100 00000 n -0000156829 00000 n -0000158376 00000 n -0000158503 00000 n -0000159592 00000 n +0000000098 00000 n +0000000178 00000 n +0000000481 00000 n +0000000777 00000 n +0000000939 00000 n +0000001113 00000 n +0000001287 00000 n +0000001378 00000 n +0000001440 00000 n +0000001888 00000 n +0000002843 00000 n +0000003150 00000 n +0000004104 00000 n +0000004371 00000 n +0000004507 00000 n +0000004600 00000 n +0000004693 00000 n +0000004786 00000 n +0000004879 00000 n +0000004968 00000 n +0000005126 00000 n +0000005239 00000 n +0000005385 00000 n +0000005527 00000 n +0000005673 00000 n +0000005819 00000 n +0000005961 00000 n +0000006103 00000 n +0000006216 00000 n +0000006362 00000 n +0000006504 00000 n +0000006646 00000 n +0000006796 00000 n +0000006938 00000 n +0000007080 00000 n +0000007193 00000 n +0000007335 00000 n +0000007477 00000 n +0000007619 00000 n +0000007763 00000 n +0000007904 00000 n +0000008045 00000 n +0000008158 00000 n +0000008302 00000 n +0000008443 00000 n +0000008590 00000 n +0000008731 00000 n +0000008872 00000 n +0000009013 00000 n +0000009126 00000 n +0000009267 00000 n +0000009408 00000 n +0000009549 00000 n +0000009702 00000 n +0000009843 00000 n +0000009984 00000 n +0000010097 00000 n +0000010238 00000 n +0000010379 00000 n +0000010523 00000 n +0000010673 00000 n +0000010814 00000 n +0000010955 00000 n +0000011068 00000 n +0000011212 00000 n +0000011353 00000 n +0000011497 00000 n +0000011641 00000 n +0000011782 00000 n +0000011923 00000 n +0000012036 00000 n +0000012177 00000 n +0000012318 00000 n +0000012465 00000 n +0000012609 00000 n +0000012750 00000 n +0000012891 00000 n +0000013004 00000 n +0000013148 00000 n +0000013289 00000 n +0000013436 00000 n +0000013580 00000 n +0000013721 00000 n +0000013862 00000 n +0000013975 00000 n +0000014119 00000 n +0000014263 00000 n +0000014413 00000 n +0000014560 00000 n +0000014701 00000 n +0000014842 00000 n +0000014955 00000 n +0000015096 00000 n +0000015237 00000 n +0000015381 00000 n +0000015525 00000 n +0000015666 00000 n +0000015807 00000 n +0000015926 00000 n +0000016194 00000 n +0000016459 00000 n +0000016730 00000 n +0000016998 00000 n +0000017262 00000 n +0000017526 00000 n +0000017609 00000 n +0000017730 00000 n +0000018023 00000 n +0000018314 00000 n +0000018605 00000 n +0000018896 00000 n +0000019187 00000 n +0000019478 00000 n +0000019585 00000 n +0000019719 00000 n +0000019813 00000 n +0000019905 00000 n +0000019999 00000 n +0000020082 00000 n +0000020176 00000 n +0000020270 00000 n +0000020380 00000 n +0000020474 00000 n +0000020568 00000 n +0000020722 00000 n +0000020816 00000 n +0000020908 00000 n +0000021000 00000 n +0000021092 00000 n +0000021184 00000 n +0000021278 00000 n +0000021456 00000 n +0000021581 00000 n +0000021674 00000 n +0000021767 00000 n +0000021850 00000 n +0000021943 00000 n +0000022036 00000 n +0000022137 00000 n +0000022232 00000 n +0000022323 00000 n +0000022415 00000 n +0000022520 00000 n +0000022664 00000 n +0000022808 00000 n +0000022952 00000 n +0000023096 00000 n +0000023201 00000 n +0000023468 00000 n +0000023735 00000 n +0000024002 00000 n +0000024269 00000 n +0000024353 00000 n +0000024458 00000 n +0000024751 00000 n +0000025044 00000 n +0000025337 00000 n +0000025630 00000 n +0000025709 00000 n +0000025804 00000 n +0000025992 00000 n +0000026086 00000 n +0000026180 00000 n +0000026273 00000 n +0000026365 00000 n +0000026457 00000 n +0000026549 00000 n +0000026641 00000 n +0000026733 00000 n +0000026827 00000 n +0000026956 00000 n +0000027046 00000 n +0000027140 00000 n +0000027232 00000 n +0000027326 00000 n +0000027439 00000 n +0000027533 00000 n +0000027627 00000 n +0000027748 00000 n +0000027838 00000 n +0000027932 00000 n +0000028026 00000 n +0000028206 00000 n +0000028316 00000 n +0000028410 00000 n +0000028504 00000 n +0000028628 00000 n +0000028722 00000 n +0000028814 00000 n +0000028908 00000 n +0000029018 00000 n +0000029112 00000 n +0000029206 00000 n +0000029374 00000 n +0000029470 00000 n +0000029609 00000 n +0000029701 00000 n +0000029795 00000 n +0000029878 00000 n +0000029975 00000 n +0000030069 00000 n +0000030386 00000 n +0000030536 00000 n +0000030630 00000 n +0000030724 00000 n +0000030818 00000 n +0000030911 00000 n +0000031036 00000 n +0000031129 00000 n +0000031220 00000 n +0000031313 00000 n +0000031406 00000 n +0000031698 00000 n +0000031757 00000 n +0000031816 00000 n +0000031875 00000 n +0000032057 00000 n +0000032920 00000 n +0000033011 00000 n +0000033265 00000 n +0000034899 00000 n +0000042384 00000 n +0000042569 00000 n +0000043578 00000 n +0000043669 00000 n +0000043926 00000 n +0000045770 00000 n +0000054422 00000 n +0000054587 00000 n +0000054855 00000 n +0000054947 00000 n +0000055224 00000 n +0000056542 00000 n +0000065978 00000 n +0000066079 00000 n +0000066180 00000 n +0000066281 00000 n +0000066382 00000 n +0000066483 00000 n +0000066743 00000 n +0000067368 00000 n +0000068122 00000 n +0000068292 00000 n +0000068565 00000 n +0000068654 00000 n +0000068937 00000 n +0000069918 00000 n +0000075818 00000 n +0000076002 00000 n +0000076439 00000 n +0000076528 00000 n +0000076783 00000 n +0000077764 00000 n +0000080797 00000 n +0000080835 00000 n +0000080873 00000 n +0000081232 00000 n +0000081655 00000 n +0000081706 00000 n +0000081753 00000 n +0000081801 00000 n +0000081848 00000 n +0000081895 00000 n +0000081942 00000 n +0000082232 00000 n +0000082522 00000 n +0000082812 00000 n +0000083102 00000 n +0000083392 00000 n +0000083756 00000 n +0000088583 00000 n +0000088929 00000 n +0000090781 00000 n +0000091091 00000 n +0000094417 00000 n +0000095735 00000 n +0000105118 00000 n +0000106439 00000 n +0000115183 00000 n +0000116504 00000 n +0000127247 00000 n +0000129240 00000 n +0000152600 00000 n +0000153371 00000 n +0000161979 00000 n +0000162106 00000 n +0000163195 00000 n trailer << - /Size 412 - /Root 411 0 R - /Info 409 0 R - /ID [(N87Qy7kU35qwV1OlvKlCOg==) (N87Qy7kU35qwV1OlvKlCOg==)] + /Size 289 + /Root 288 0 R + /Info 286 0 R + /ID [(jJHHfm7hptPrFCmLY+ERvA==) (jJHHfm7hptPrFCmLY+ERvA==)] >> startxref -159854 +163456 %%EOF \ No newline at end of file diff --git a/scripts/export_osm_pois.py b/scripts/export_osm_pois.py new file mode 100644 index 0000000..e52baf5 --- /dev/null +++ b/scripts/export_osm_pois.py @@ -0,0 +1,88 @@ +#!/usr/bin/env python3 +"""Export OSM POIs (e.g. fuel stations) from a .osm.pbf to GeoJSON + CSV. + +These exports feed FleetNow's toggleable map-overlay layers (see +docs/OSM_POI_EXPORT.md and the fleetnow repo's README "Map overlay layers"). + +No system tooling needed — run via uv so pyosmium's prebuilt wheel is fetched: + + uv run --no-project --with osmium python scripts/export_osm_pois.py \ + kenya-260605.osm.pbf --amenity fuel --brand Shell \ + --out-geojson shell_stations.geojson --out-csv shell_stations.csv + +Notes: +- Gas stations are OSM ``amenity=fuel``. Brand lives in the ``brand`` tag, but + only ~36% of Kenyan stations carry it, so when ``--brand`` is given and a + feature has no ``brand`` tag we fall back to matching ``name``/``operator``. +- Omit ``--brand`` to export every feature of that amenity. +- Nodes use their own coordinate; ways/areas use the centroid of their nodes + (so ``locations=True`` is required on apply_file). +""" +import argparse, json, csv + + +def main(): + ap = argparse.ArgumentParser(description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter) + ap.add_argument("pbf", help="input .osm.pbf") + ap.add_argument("--amenity", default="fuel", help="OSM amenity value (default: fuel)") + ap.add_argument("--brand", default=None, help="case-insensitive brand/name match; omit for all") + ap.add_argument("--out-geojson", default="pois.geojson") + ap.add_argument("--out-csv", default="pois.csv") + args = ap.parse_args() + + import osmium + + brand_lc = args.brand.lower() if args.brand else None + + def match(t): + if t.get("amenity") != args.amenity: + return False + if brand_lc is None: + return True + b = (t.get("brand") or "").lower() + if b: + return brand_lc in b + return brand_lc in (t.get("name") or "").lower() or brand_lc in (t.get("operator") or "").lower() + + feats = [] + + def add(lon, lat, t, kind, oid): + feats.append({ + "type": "Feature", + "properties": { + "name": t.get("name"), "brand": t.get("brand"), + "operator": t.get("operator"), "osm_type": kind, "osm_id": oid, + }, + "geometry": {"type": "Point", "coordinates": [round(lon, 6), round(lat, 6)]}, + }) + + class H(osmium.SimpleHandler): + def node(self, o): + if match(o.tags): + add(o.location.lon, o.location.lat, o.tags, "node", o.id) + def way(self, o): + if match(o.tags): + xs = []; ys = [] + for n in o.nodes: + try: + if n.location.valid(): + xs.append(n.location.lon); ys.append(n.location.lat) + except Exception: + pass + if xs: + add(sum(xs) / len(xs), sum(ys) / len(ys), o.tags, "way", o.id) + + H().apply_file(args.pbf, locations=True) + + json.dump({"type": "FeatureCollection", "features": feats}, open(args.out_geojson, "w")) + with open(args.out_csv, "w", newline="") as f: + w = csv.writer(f); w.writerow(["name", "lat", "lon", "brand", "operator", "osm_type", "osm_id"]) + for ft in feats: + p = ft["properties"]; lon, lat = ft["geometry"]["coordinates"] + w.writerow([p["name"], lat, lon, p["brand"], p["operator"], p["osm_type"], p["osm_id"]]) + + print(f"exported {len(feats)} features -> {args.out_geojson}, {args.out_csv}") + + +if __name__ == "__main__": + main() diff --git a/shell_stations.csv b/shell_stations.csv new file mode 100644 index 0000000..6758d1c --- /dev/null +++ b/shell_stations.csv @@ -0,0 +1,233 @@ +name,lat,lon,brand,operator,brand_source,osm_type,osm_id +Shell Kabuagi,-1.316594,36.718419,Shell,,brand_tag,node,30088444 +Shell,-1.316337,36.814074,Shell,,brand_tag,node,30092268 +Shell,-1.292004,36.784895,Shell,,brand_tag,node,30210342 +Shell,-1.292514,36.821731,Shell,,brand_tag,node,30215041 +Shell,-1.264944,36.811142,Shell,,brand_tag,node,30402252 +Shell Bellevue,-1.321222,36.841704,Shell,,brand_tag,node,30695844 +Shell,-1.259212,36.818551,,,name,node,295829498 +Shell,-3.400363,38.549144,Shell,,brand_tag,node,344711386 +Shell,-4.064245,39.671241,Shell,,brand_tag,node,344969183 +Shell,-4.04045,39.678266,Shell,,brand_tag,node,344970554 +Shell,-4.035198,39.684952,Shell,,brand_tag,node,344971084 +Shell Links Road Filling Station,-4.051857,39.688222,Shell,,brand_tag,node,346562706 +Shell,-0.71861,36.432908,Shell,,brand_tag,node,415582755 +Shell,-1.307743,36.803669,Shell,,brand_tag,node,490741522 +Shell Petrol Station,-1.288024,36.741743,Shell,,brand_tag,node,558923029 +Shell,-1.310587,36.817074,Shell,,brand_tag,node,582803761 +Shell,-1.305716,36.827261,Shell,,brand_tag,node,582803763 +Shell,-1.520877,37.267142,Shell,,brand_tag,node,582803840 +Shell Makupa,-4.041392,39.656827,Shell,Shell,brand_tag,node,612947282 +Shell Changamwe,-4.027279,39.62732,Shell,Shell,brand_tag,node,612947302 +Shell,-1.249864,36.861223,Shell,,brand_tag,node,703562830 +Shell,-1.246981,36.871498,Shell,,brand_tag,node,703562919 +Shell - Ruiru,-1.149099,36.958483,Shell,,brand_tag,node,711491743 +Shell,-1.293773,36.886453,Shell,Shell,brand_tag,node,712868923 +Shell,-1.256982,36.922912,Shell,,brand_tag,node,734051667 +Shell,-1.230839,36.80343,Shell,Shell,brand_tag,node,812840504 +Shell,-1.232602,36.875076,Shell,,brand_tag,node,900302335 +Shell Avenue Service Station,-1.285422,36.818863,Shell,,brand_tag,node,911026324 +Shell Adams Arcade,-1.300601,36.779709,Shell,,brand_tag,node,1045731889 +Shell,-1.267364,36.81745,Shell,,brand_tag,node,1147234418 +Shell,-4.085069,39.654867,Shell,Shell,brand_tag,node,1320763086 +Shell,0.181801,34.295817,Shell,Indivdual,brand_tag,node,1419926800 +Shell,-1.265026,36.740926,Shell,,brand_tag,node,1506606959 +Shell,-0.284215,36.068872,Shell,,brand_tag,node,1636429762 +Shell,-1.31465,36.859873,Shell,Shell/BP,brand_tag,node,1678061764 +Shell,-1.090556,35.871981,Shell,,brand_tag,node,1690703696 +Shell,0.03559,37.655216,Shell,,brand_tag,node,1814694405 +Shell,0.05734,37.642474,Shell,,brand_tag,node,1814694430 +Shell,0.016696,37.077472,Shell,,brand_tag,node,1830086395 +Shell,-0.363566,35.293414,Shell,,brand_tag,node,1838955746 +Shell,0.634907,34.280633,Shell,,brand_tag,node,1856237414 +Shell Bidii,-1.279267,36.848606,Shell,,brand_tag,node,1997615249 +Shell,-2.693933,38.166679,Shell,,brand_tag,node,2137912798 +Shell Baraka,-1.259949,36.785711,Shell,,brand_tag,node,2218541216 +Shell,-4.047937,39.662737,Shell,,brand_tag,node,2377336397 +Shell,2.32971,37.988219,Shell,,brand_tag,node,2462468244 +Shell,-1.281187,36.816595,Shell,,brand_tag,node,2533881587 +Shell,-1.446789,36.968782,Shell,Shell,brand_tag,node,2653484553 +Shell Roysambu,-1.217787,36.890669,Shell,,brand_tag,node,2953872784 +Shell petrol station,-0.424642,36.952432,,2NK,name,node,3078763165 +Shell petrol station,-0.421785,36.952518,,,name,node,3078776472 +Shell,-0.334861,37.646147,Shell,,brand_tag,node,3243527416 +Isiolo Service Station,0.3519,37.582829,Shell,,brand_tag,node,3247766463 +Shell,-0.500952,36.314893,Shell,,brand_tag,node,3421681816 +Bajoo Shell Services,1.749142,40.057779,Shell,,brand_tag,node,3683457938 +Buna Filling Station,2.786999,39.509127,Shell,,brand_tag,node,3695322660 +Shell,-1.395443,36.939718,Shell,,brand_tag,node,3729203207 +Shell,-1.10888,36.641976,Shell,,brand_tag,node,3808532767 +Shell,-1.299065,36.763624,Shell,,brand_tag,node,4210622090 +Shell,-1.245784,36.662797,Shell,,brand_tag,node,4324873067 +Shell,0.337182,37.578977,Shell,,brand_tag,node,4461211795 +Shell,-3.405215,38.362976,Shell,,brand_tag,node,4475364889 +Shell,-0.454161,39.645824,Shell,,brand_tag,node,4685351383 +Shell,-0.625556,34.75581,Shell,,brand_tag,node,4720565411 +Shell,-0.697715,36.427394,Shell,,brand_tag,node,4914118412 +"Shell Petrol Station, Muguga",-1.061481,37.157952,,,name,node,4946660224 +"Shell New Thika Rd, Ruiru",-1.160387,36.958055,Shell,,brand_tag,node,4947103423 +Shell,-1.226429,36.663491,Shell,,brand_tag,node,4972148621 +Shell,-1.229222,36.840393,Shell,,brand_tag,node,5119552023 +Shell,-1.264064,36.838234,Shell,,brand_tag,node,5119573528 +Shell,-0.977475,37.095977,Shell,,brand_tag,node,5126219526 +Shell,-0.929697,37.160111,Shell,,brand_tag,node,5126247329 +Shell,-1.011913,36.903025,Shell,,brand_tag,node,5162725223 +Shell Petrol Station Kajiado,-1.835716,36.799667,Shell,Shell,brand_tag,node,5179571022 +Shell,-1.180887,37.440173,Shell,,brand_tag,node,5181243643 +Shell,-1.280736,36.827944,Shell,,brand_tag,node,5217418921 +Shell,-1.171399,36.828308,Shell,,brand_tag,node,5327749961 +Shell,-1.262778,36.801048,Shell,,brand_tag,node,5340449107 +Shell,0.540157,35.296916,Shell,,brand_tag,node,5392739324 +Shell,0.448948,35.967056,,,name,node,5403105422 +Shell,-1.292007,36.84313,Shell,,brand_tag,node,5496066065 +Shell,-1.295157,36.854441,Shell,,brand_tag,node,5496079228 +Shell Kasarani Petrol Station,-1.218327,36.895867,,,name,node,5526332569 +Shell,-1.30385,36.856284,Shell,,brand_tag,node,5539579719 +Shell,-1.195935,36.751887,Shell,,brand_tag,node,5540791550 +Shell,-1.3074,36.842468,Shell,,brand_tag,node,5569591300 +Shell Banana,-1.175701,36.759722,Shell,,brand_tag,node,5581701614 +Shell Kiserian,-1.432004,36.686175,Shell,Vivo,brand_tag,node,5588931919 +Mwingi Shell Petrol Station,-0.937425,38.044514,Shell,Shell,brand_tag,node,5768445294 +Mart Petrol Station,0.494496,35.746217,Shell,,brand_tag,node,5781632986 +Shell,-1.263474,36.981924,Shell,,brand_tag,node,5887135685 +Shell,-4.060892,39.662713,Shell,,brand_tag,node,6054282205 +Shell,-4.043209,39.663984,Shell,,brand_tag,node,6054858991 +Shell,-0.984791,36.584131,Shell,,brand_tag,node,6054861952 +Shell,-1.089833,35.882185,Shell,,brand_tag,node,6054877097 +Shell,-0.769528,36.501316,Shell,,brand_tag,node,6054980226 +Shell,-1.057588,36.776239,,,name,node,6063644317 +Shell Filling station,-4.084926,39.654747,Shell,,brand_tag,node,6072960948 +Shell,-1.456045,37.004306,Shell,,brand_tag,node,6086991186 +Shell,-0.780234,34.948265,Shell,,brand_tag,node,6105930796 +Shell,1.01741,35.002629,Shell,,brand_tag,node,6106202680 +Shell,-0.929519,37.159777,Shell,,brand_tag,node,6140765579 +Shell,-0.074245,37.670579,Shell,,brand_tag,node,6144610331 +Shell,0.524964,35.251383,Shell,,brand_tag,node,6147580921 +Shell,0.489345,35.269825,Shell,,brand_tag,node,6149443773 +Shell Petrol Station,0.465501,35.297389,,,name,node,6149634448 +Shell,-1.248207,36.876,Shell,,brand_tag,node,6198796724 +Shell,-1.043083,37.066139,Shell,,brand_tag,node,6207691351 +Shell,-1.042001,37.071543,Shell,,brand_tag,node,6207707073 +Shell,-1.037044,37.071925,Shell,,brand_tag,node,6209964953 +Shell,-0.841126,37.137857,,,name,node,6212995383 +Shell,-0.485965,37.138349,Shell,,brand_tag,node,6213405879 +Shell,-1.347761,36.662815,Shell,,brand_tag,node,6216321668 +Shell Petrol Station,-1.416823,36.686915,,,name,node,6218487553 +Shell,-1.396852,36.755199,Shell,,brand_tag,node,6218698870 +PETRO Shelly,-4.085731,39.667207,,,name,node,6222293185 +Shell Maanzoni,-1.516527,37.107005,Shell,,brand_tag,node,6226894926 +Shell,-1.532784,37.131763,Shell,,brand_tag,node,6229374240 +Shell Kitengela,-1.50442,36.954102,,,name,node,6229505975 +shell,-1.735489,37.198837,Shell,,brand_tag,node,6229624406 +Shell,-2.081484,37.477328,Shell,,brand_tag,node,6232739137 +Shell,-3.973832,39.547043,Shell,,brand_tag,node,6235829860 +Shell,-4.007792,39.60037,Shell,,brand_tag,node,6235830590 +Shell,0.580828,34.557734,Shell,,brand_tag,node,6236062090 +Shell,-1.365272,38.012171,Shell,,brand_tag,node,6236068237 +Shell Filling Station,0.035,36.364412,,,name,node,6241664256 +Shell Chaka,-0.361651,36.999992,Shell,,brand_tag,node,6244921195 +Shell,0.005805,37.072986,Shell,,brand_tag,node,6246803075 +Shell,-1.260591,36.710164,Shell,,brand_tag,node,6251561800 +Shell service station Fedha,-1.316073,36.895595,Shell,,brand_tag,node,6259798932 +Shell Service Station - Kayole,-1.2829,36.90304,Shell,,brand_tag,node,6259810690 +Shell Mumias Road,-1.286405,36.88066,Shell,,brand_tag,node,6259860371 +Shell,3.094471,35.614012,Shell,,brand_tag,node,6263511612 +Shell,0.509984,35.293509,Shell,Shell Petrol Station,brand_tag,node,6327543347 +Shell,-0.144338,34.8022,Shell,,brand_tag,node,6633204913 +Shell,-0.779415,36.426665,Shell,,brand_tag,node,6644488886 +Shell,-3.578128,39.87102,Shell,,brand_tag,node,6716512885 +Shell,-3.214362,40.117773,Shell,,brand_tag,node,6793044096 +Shell,-1.273195,36.911201,Shell,,brand_tag,node,6819692388 +Shell Petrol Station,-1.055007,37.111221,Shell,,brand_tag,node,6851086245 +Shell,-0.542158,37.454875,Shell,,brand_tag,node,6860253187 +Shell,0.06024,37.636552,Shell,,brand_tag,node,6882011852 +Shell,-0.71496,37.261577,Shell,,brand_tag,node,6895782975 +shell- Bonje,-3.991998,39.562412,Shell,,brand_tag,node,6938700260 +Shell,0.453207,34.130811,Shell,,brand_tag,node,6945529552 +Shell,-0.130428,34.794978,Shell,,brand_tag,node,6969176798 +Shell,-3.211576,40.121388,Shell,,brand_tag,node,7166621203 +Shell,-3.39087,38.581827,Shell,,brand_tag,node,7166621204 +shell makupa service station,-4.040825,39.656857,Shell,,brand_tag,node,7172031316 +Shell,-0.322371,36.15036,Shell,,brand_tag,node,7187879248 +shell,-0.074322,34.682137,Shell,,brand_tag,node,7227297576 +Shell,0.28749,34.756277,Shell,,brand_tag,node,7239126633 +Shell,-1.323004,36.706266,Shell,,brand_tag,node,7305927852 +Shell- Syokimau,-1.357374,36.907769,Shell,,brand_tag,node,7507287888 +Shell,-1.210901,36.875751,Shell,Shell,brand_tag,node,7643261185 +Shell,-0.973363,37.095865,Shell,,brand_tag,node,7872591802 +Shell,-0.366585,35.284074,Shell,,brand_tag,node,7893551877 +Shell,0.87809,35.120238,Shell,,brand_tag,node,7934573084 +Shell,-1.089807,35.882577,Shell,,brand_tag,node,7988261701 +Shell,-0.541871,37.455485,Shell,,brand_tag,node,8039934769 +Shell,-1.358313,38.007156,Shell,,brand_tag,node,8047307634 +Shell,-3.92977,39.53407,Shell,,brand_tag,node,8050570392 +Shell,-0.264808,36.377656,,,name,node,8182514303 +Shell Ruai,-1.276187,37.016097,Shell,,brand_tag,node,8202067662 +Shell,-1.170384,36.91699,Shell,,brand_tag,node,8231893217 +Shell - Eastern By-pass - Ruiru,-1.166976,36.964879,Shell,,brand_tag,node,8247882582 +Shell,-1.281858,36.962424,Shell,,brand_tag,node,8293614674 +Shell,-1.280476,36.690323,Shell,,brand_tag,node,8318718279 +Shell,-1.281238,36.634916,Shell,,brand_tag,node,8321307638 +Shell,-1.267623,36.609868,Shell,,brand_tag,node,8321307639 +Shell,-1.234142,36.989696,Shell,,brand_tag,node,8338714141 +Shell,-1.267493,37.315826,Shell,,brand_tag,node,8338714151 +Shell,-1.256284,36.879297,Shell,,brand_tag,node,8345317201 +Shell,-1.425451,36.958715,Shell,,brand_tag,node,8371880141 +Shell,-0.78364,36.871819,,,name,node,8483709617 +Shell,-1.28234,37.104729,Shell,,brand_tag,node,8862700293 +Shell,-1.231358,36.924224,Shell,,brand_tag,node,9004506167 +Shell Mirema,-1.213808,36.892432,Shell,,brand_tag,node,9014259343 +Shell,-1.459477,37.25047,Shell,,brand_tag,node,9028867156 +Shell,0.027305,36.365863,Shell,,brand_tag,node,9048281880 +Shell,-0.20372,35.843587,Shell,,brand_tag,node,9053460332 +Shell,-1.229246,36.84025,Shell,,brand_tag,node,10080456017 +Shell,-3.936283,39.744896,,,name,node,10255650224 +Shell Petrol Station,-1.286734,36.740804,,,name,node,10971302670 +Shell -Bombolulu,-4.025633,39.697377,Shell,,brand_tag,node,11500364389 +Shell,-1.313698,36.720914,Shell,,brand_tag,node,11711795482 +Shell,-1.274671,36.799912,Shell,,brand_tag,node,12163148139 +Shell,-1.307959,36.781587,Shell,,brand_tag,node,12165032865 +Shell,0.28095,34.744859,Shell,,brand_tag,node,12489868997 +Shell Syokimau,-1.378091,36.927818,,,name,node,12600151901 +Shell,-1.262862,36.90678,,,name,node,12886546509 +Shell Gas Station,-0.779732,36.427412,,,name,node,13088820396 +Shell,-1.230649,34.482215,Shell,,brand_tag,node,13446964574 +Shell,-0.900865,34.53639,Shell,,brand_tag,node,13446964578 +Shell,0.078482,34.720706,Shell,,brand_tag,node,13447042942 +Shell,0.600804,35.163178,Shell,,brand_tag,node,13528448115 +shell,-0.143442,34.801363,,,name,node,13714210044 +shell,-0.077947,34.727069,Shell,,brand_tag,node,13720608494 +Shell,-1.282701,36.824838,Shell,,brand_tag,way,123365084 +Shell,-1.2799,36.82273,Shell,,brand_tag,way,125107079 +Shell,-1.289727,36.811096,Shell,,brand_tag,way,125336232 +Shell,-1.287955,36.838738,Shell,,brand_tag,way,126936993 +Shell,-1.272506,36.83183,Shell,,brand_tag,way,126995763 +Shell Service Station - Jogoo Road,-1.295715,36.860244,Shell,,brand_tag,way,129323643 +Shell,-1.268949,36.817225,Shell,,brand_tag,way,133548150 +Shell,-1.310807,36.817766,Shell,,brand_tag,way,144188726 +Shell- Lavington,-1.280811,36.769286,Shell,Shell,brand_tag,way,226322138 +Shell,-1.322412,36.708022,Shell,,brand_tag,way,226714111 +Shell,-1.263021,36.802726,Shell,,brand_tag,way,238857325 +Shell,-1.30349,36.828502,Shell,,brand_tag,way,366568545 +Shell,-0.09443,34.76444,Shell,,brand_tag,way,390104534 +Shell,-0.282248,36.09429,Shell,,brand_tag,way,483211211 +Shell,-0.285481,36.075122,Shell,,brand_tag,way,488459901 +Shell Kitengela ex-Engen,-1.491085,36.954337,Shell,,brand_tag,way,536796727 +Shell Voi,-3.400372,38.549126,Shell,Shell,brand_tag,way,593734920 +Shell,-0.865417,36.566545,,,name,way,642076596 +Shell,-1.275817,36.834388,Shell,,brand_tag,way,686179946 +Shell,-0.536827,37.452256,Shell,,brand_tag,way,732602668 +Shell Petrol Station - Greenspan,-1.288893,36.902407,Shell,,brand_tag,way,977833647 +Shell petrol station (feroze),-1.26303,36.906097,Shell,,brand_tag,way,1055608664 +Shell,-0.268103,34.971231,Shell,,brand_tag,way,1069555494 +Shell Hurlingham,-1.295405,36.799606,Shell,,brand_tag,way,1088482284 +Shell Service Station - Embakassi,-1.317926,36.917619,Shell,,brand_tag,way,1107378445 +Shell,-1.328958,36.683097,Shell,,brand_tag,way,1107729725 +Shell,-2.831336,37.524927,Shell,,brand_tag,way,1110216588 +Shell Kahawa Sukari,-1.188788,36.931934,Shell,,brand_tag,way,1135425767 +Shell,-0.074421,34.691528,Shell,,brand_tag,way,1222533725 +Shell Service Station - Likoni Road,-1.303854,36.856227,Shell,,brand_tag,way,1273152921 +Shell,-1.835509,36.799548,Shell,,brand_tag,way,1290701573 +Shell,-2.538055,36.800975,Shell,,brand_tag,way,1413265354 +Shell Fuel Station - Tala,-1.26749,37.315706,,,name,way,1434009884 +Shell,-1.266132,36.98704,Shell,Shell,brand_tag,way,1497383075 diff --git a/shell_stations.geojson b/shell_stations.geojson new file mode 100644 index 0000000..8814a25 --- /dev/null +++ b/shell_stations.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"name": "Shell Kabuagi", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 30088444}, "geometry": {"type": "Point", "coordinates": [36.718419, -1.316594]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 30092268}, "geometry": {"type": "Point", "coordinates": [36.814074, -1.316337]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 30210342}, "geometry": {"type": "Point", "coordinates": [36.784895, -1.292004]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 30215041}, "geometry": {"type": "Point", "coordinates": [36.821731, -1.292514]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 30402252}, "geometry": {"type": "Point", "coordinates": [36.811142, -1.264944]}}, {"type": "Feature", "properties": {"name": "Shell Bellevue", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 30695844}, "geometry": {"type": "Point", "coordinates": [36.841704, -1.321222]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 295829498}, "geometry": {"type": "Point", "coordinates": [36.818551, -1.259212]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 344711386}, "geometry": {"type": "Point", "coordinates": [38.549144, -3.400363]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 344969183}, "geometry": {"type": "Point", "coordinates": [39.671241, -4.064245]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 344970554}, "geometry": {"type": "Point", "coordinates": [39.678266, -4.04045]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 344971084}, "geometry": {"type": "Point", "coordinates": [39.684952, -4.035198]}}, {"type": "Feature", "properties": {"name": "Shell Links Road Filling Station", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 346562706}, "geometry": {"type": "Point", "coordinates": [39.688222, -4.051857]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 415582755}, "geometry": {"type": "Point", "coordinates": [36.432908, -0.71861]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 490741522}, "geometry": {"type": "Point", "coordinates": [36.803669, -1.307743]}}, {"type": "Feature", "properties": {"name": "Shell Petrol Station", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 558923029}, "geometry": {"type": "Point", "coordinates": [36.741743, -1.288024]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 582803761}, "geometry": {"type": "Point", "coordinates": [36.817074, -1.310587]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 582803763}, "geometry": {"type": "Point", "coordinates": [36.827261, -1.305716]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 582803840}, "geometry": {"type": "Point", "coordinates": [37.267142, -1.520877]}}, {"type": "Feature", "properties": {"name": "Shell Makupa", "brand": "Shell", "operator": "Shell", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 612947282}, "geometry": {"type": "Point", "coordinates": [39.656827, -4.041392]}}, {"type": "Feature", "properties": {"name": "Shell Changamwe", "brand": "Shell", "operator": "Shell", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 612947302}, "geometry": {"type": "Point", "coordinates": [39.62732, -4.027279]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 703562830}, "geometry": {"type": "Point", "coordinates": [36.861223, -1.249864]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 703562919}, "geometry": {"type": "Point", "coordinates": [36.871498, -1.246981]}}, {"type": "Feature", "properties": {"name": "Shell - Ruiru", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 711491743}, "geometry": {"type": "Point", "coordinates": [36.958483, -1.149099]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": "Shell", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 712868923}, "geometry": {"type": "Point", "coordinates": [36.886453, -1.293773]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 734051667}, "geometry": {"type": "Point", "coordinates": [36.922912, -1.256982]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": "Shell", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 812840504}, "geometry": {"type": "Point", "coordinates": [36.80343, -1.230839]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 900302335}, "geometry": {"type": "Point", "coordinates": [36.875076, -1.232602]}}, {"type": "Feature", "properties": {"name": "Shell Avenue Service Station", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 911026324}, "geometry": {"type": "Point", "coordinates": [36.818863, -1.285422]}}, {"type": "Feature", "properties": {"name": "Shell Adams Arcade", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1045731889}, "geometry": {"type": "Point", "coordinates": [36.779709, -1.300601]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1147234418}, "geometry": {"type": "Point", "coordinates": [36.81745, -1.267364]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": "Shell", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1320763086}, "geometry": {"type": "Point", "coordinates": [39.654867, -4.085069]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": "Indivdual", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1419926800}, "geometry": {"type": "Point", "coordinates": [34.295817, 0.181801]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1506606959}, "geometry": {"type": "Point", "coordinates": [36.740926, -1.265026]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1636429762}, "geometry": {"type": "Point", "coordinates": [36.068872, -0.284215]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": "Shell/BP", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1678061764}, "geometry": {"type": "Point", "coordinates": [36.859873, -1.31465]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1690703696}, "geometry": {"type": "Point", "coordinates": [35.871981, -1.090556]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1814694405}, "geometry": {"type": "Point", "coordinates": [37.655216, 0.03559]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1814694430}, "geometry": {"type": "Point", "coordinates": [37.642474, 0.05734]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1830086395}, "geometry": {"type": "Point", "coordinates": [37.077472, 0.016696]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1838955746}, "geometry": {"type": "Point", "coordinates": [35.293414, -0.363566]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1856237414}, "geometry": {"type": "Point", "coordinates": [34.280633, 0.634907]}}, {"type": "Feature", "properties": {"name": "Shell Bidii", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 1997615249}, "geometry": {"type": "Point", "coordinates": [36.848606, -1.279267]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 2137912798}, "geometry": {"type": "Point", "coordinates": [38.166679, -2.693933]}}, {"type": "Feature", "properties": {"name": "Shell Baraka", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 2218541216}, "geometry": {"type": "Point", "coordinates": [36.785711, -1.259949]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 2377336397}, "geometry": {"type": "Point", "coordinates": [39.662737, -4.047937]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 2462468244}, "geometry": {"type": "Point", "coordinates": [37.988219, 2.32971]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 2533881587}, "geometry": {"type": "Point", "coordinates": [36.816595, -1.281187]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": "Shell", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 2653484553}, "geometry": {"type": "Point", "coordinates": [36.968782, -1.446789]}}, {"type": "Feature", "properties": {"name": "Shell Roysambu", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 2953872784}, "geometry": {"type": "Point", "coordinates": [36.890669, -1.217787]}}, {"type": "Feature", "properties": {"name": "Shell petrol station", "brand": null, "operator": "2NK", "brand_source": "name", "osm_type": "node", "osm_id": 3078763165}, "geometry": {"type": "Point", "coordinates": [36.952432, -0.424642]}}, {"type": "Feature", "properties": {"name": "Shell petrol station", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 3078776472}, "geometry": {"type": "Point", "coordinates": [36.952518, -0.421785]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 3243527416}, "geometry": {"type": "Point", "coordinates": [37.646147, -0.334861]}}, {"type": "Feature", "properties": {"name": "Isiolo Service Station", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 3247766463}, "geometry": {"type": "Point", "coordinates": [37.582829, 0.3519]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 3421681816}, "geometry": {"type": "Point", "coordinates": [36.314893, -0.500952]}}, {"type": "Feature", "properties": {"name": "Bajoo Shell Services", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 3683457938}, "geometry": {"type": "Point", "coordinates": [40.057779, 1.749142]}}, {"type": "Feature", "properties": {"name": "Buna Filling Station", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 3695322660}, "geometry": {"type": "Point", "coordinates": [39.509127, 2.786999]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 3729203207}, "geometry": {"type": "Point", "coordinates": [36.939718, -1.395443]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 3808532767}, "geometry": {"type": "Point", "coordinates": [36.641976, -1.10888]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 4210622090}, "geometry": {"type": "Point", "coordinates": [36.763624, -1.299065]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 4324873067}, "geometry": {"type": "Point", "coordinates": [36.662797, -1.245784]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 4461211795}, "geometry": {"type": "Point", "coordinates": [37.578977, 0.337182]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 4475364889}, "geometry": {"type": "Point", "coordinates": [38.362976, -3.405215]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 4685351383}, "geometry": {"type": "Point", "coordinates": [39.645824, -0.454161]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 4720565411}, "geometry": {"type": "Point", "coordinates": [34.75581, -0.625556]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 4914118412}, "geometry": {"type": "Point", "coordinates": [36.427394, -0.697715]}}, {"type": "Feature", "properties": {"name": "Shell Petrol Station, Muguga", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 4946660224}, "geometry": {"type": "Point", "coordinates": [37.157952, -1.061481]}}, {"type": "Feature", "properties": {"name": "Shell New Thika Rd, Ruiru", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 4947103423}, "geometry": {"type": "Point", "coordinates": [36.958055, -1.160387]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 4972148621}, "geometry": {"type": "Point", "coordinates": [36.663491, -1.226429]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5119552023}, "geometry": {"type": "Point", "coordinates": [36.840393, -1.229222]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5119573528}, "geometry": {"type": "Point", "coordinates": [36.838234, -1.264064]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5126219526}, "geometry": {"type": "Point", "coordinates": [37.095977, -0.977475]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5126247329}, "geometry": {"type": "Point", "coordinates": [37.160111, -0.929697]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5162725223}, "geometry": {"type": "Point", "coordinates": [36.903025, -1.011913]}}, {"type": "Feature", "properties": {"name": "Shell Petrol Station Kajiado", "brand": "Shell", "operator": "Shell", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5179571022}, "geometry": {"type": "Point", "coordinates": [36.799667, -1.835716]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5181243643}, "geometry": {"type": "Point", "coordinates": [37.440173, -1.180887]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5217418921}, "geometry": {"type": "Point", "coordinates": [36.827944, -1.280736]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5327749961}, "geometry": {"type": "Point", "coordinates": [36.828308, -1.171399]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5340449107}, "geometry": {"type": "Point", "coordinates": [36.801048, -1.262778]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5392739324}, "geometry": {"type": "Point", "coordinates": [35.296916, 0.540157]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 5403105422}, "geometry": {"type": "Point", "coordinates": [35.967056, 0.448948]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5496066065}, "geometry": {"type": "Point", "coordinates": [36.84313, -1.292007]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5496079228}, "geometry": {"type": "Point", "coordinates": [36.854441, -1.295157]}}, {"type": "Feature", "properties": {"name": "Shell Kasarani Petrol Station", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 5526332569}, "geometry": {"type": "Point", "coordinates": [36.895867, -1.218327]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5539579719}, "geometry": {"type": "Point", "coordinates": [36.856284, -1.30385]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5540791550}, "geometry": {"type": "Point", "coordinates": [36.751887, -1.195935]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5569591300}, "geometry": {"type": "Point", "coordinates": [36.842468, -1.3074]}}, {"type": "Feature", "properties": {"name": "Shell Banana", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5581701614}, "geometry": {"type": "Point", "coordinates": [36.759722, -1.175701]}}, {"type": "Feature", "properties": {"name": "Shell Kiserian", "brand": "Shell", "operator": "Vivo", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5588931919}, "geometry": {"type": "Point", "coordinates": [36.686175, -1.432004]}}, {"type": "Feature", "properties": {"name": "Mwingi Shell Petrol Station", "brand": "Shell", "operator": "Shell", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5768445294}, "geometry": {"type": "Point", "coordinates": [38.044514, -0.937425]}}, {"type": "Feature", "properties": {"name": "Mart Petrol Station", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5781632986}, "geometry": {"type": "Point", "coordinates": [35.746217, 0.494496]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 5887135685}, "geometry": {"type": "Point", "coordinates": [36.981924, -1.263474]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6054282205}, "geometry": {"type": "Point", "coordinates": [39.662713, -4.060892]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6054858991}, "geometry": {"type": "Point", "coordinates": [39.663984, -4.043209]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6054861952}, "geometry": {"type": "Point", "coordinates": [36.584131, -0.984791]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6054877097}, "geometry": {"type": "Point", "coordinates": [35.882185, -1.089833]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6054980226}, "geometry": {"type": "Point", "coordinates": [36.501316, -0.769528]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 6063644317}, "geometry": {"type": "Point", "coordinates": [36.776239, -1.057588]}}, {"type": "Feature", "properties": {"name": "Shell Filling station", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6072960948}, "geometry": {"type": "Point", "coordinates": [39.654747, -4.084926]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6086991186}, "geometry": {"type": "Point", "coordinates": [37.004306, -1.456045]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6105930796}, "geometry": {"type": "Point", "coordinates": [34.948265, -0.780234]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6106202680}, "geometry": {"type": "Point", "coordinates": [35.002629, 1.01741]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6140765579}, "geometry": {"type": "Point", "coordinates": [37.159777, -0.929519]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6144610331}, "geometry": {"type": "Point", "coordinates": [37.670579, -0.074245]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6147580921}, "geometry": {"type": "Point", "coordinates": [35.251383, 0.524964]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6149443773}, "geometry": {"type": "Point", "coordinates": [35.269825, 0.489345]}}, {"type": "Feature", "properties": {"name": "Shell Petrol Station", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 6149634448}, "geometry": {"type": "Point", "coordinates": [35.297389, 0.465501]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6198796724}, "geometry": {"type": "Point", "coordinates": [36.876, -1.248207]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6207691351}, "geometry": {"type": "Point", "coordinates": [37.066139, -1.043083]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6207707073}, "geometry": {"type": "Point", "coordinates": [37.071543, -1.042001]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6209964953}, "geometry": {"type": "Point", "coordinates": [37.071925, -1.037044]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 6212995383}, "geometry": {"type": "Point", "coordinates": [37.137857, -0.841126]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6213405879}, "geometry": {"type": "Point", "coordinates": [37.138349, -0.485965]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6216321668}, "geometry": {"type": "Point", "coordinates": [36.662815, -1.347761]}}, {"type": "Feature", "properties": {"name": "Shell Petrol Station", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 6218487553}, "geometry": {"type": "Point", "coordinates": [36.686915, -1.416823]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6218698870}, "geometry": {"type": "Point", "coordinates": [36.755199, -1.396852]}}, {"type": "Feature", "properties": {"name": "PETRO Shelly", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 6222293185}, "geometry": {"type": "Point", "coordinates": [39.667207, -4.085731]}}, {"type": "Feature", "properties": {"name": "Shell Maanzoni", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6226894926}, "geometry": {"type": "Point", "coordinates": [37.107005, -1.516527]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6229374240}, "geometry": {"type": "Point", "coordinates": [37.131763, -1.532784]}}, {"type": "Feature", "properties": {"name": "Shell Kitengela", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 6229505975}, "geometry": {"type": "Point", "coordinates": [36.954102, -1.50442]}}, {"type": "Feature", "properties": {"name": "shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6229624406}, "geometry": {"type": "Point", "coordinates": [37.198837, -1.735489]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6232739137}, "geometry": {"type": "Point", "coordinates": [37.477328, -2.081484]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6235829860}, "geometry": {"type": "Point", "coordinates": [39.547043, -3.973832]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6235830590}, "geometry": {"type": "Point", "coordinates": [39.60037, -4.007792]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6236062090}, "geometry": {"type": "Point", "coordinates": [34.557734, 0.580828]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6236068237}, "geometry": {"type": "Point", "coordinates": [38.012171, -1.365272]}}, {"type": "Feature", "properties": {"name": "Shell Filling Station", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 6241664256}, "geometry": {"type": "Point", "coordinates": [36.364412, 0.035]}}, {"type": "Feature", "properties": {"name": "Shell Chaka", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6244921195}, "geometry": {"type": "Point", "coordinates": [36.999992, -0.361651]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6246803075}, "geometry": {"type": "Point", "coordinates": [37.072986, 0.005805]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6251561800}, "geometry": {"type": "Point", "coordinates": [36.710164, -1.260591]}}, {"type": "Feature", "properties": {"name": "Shell service station Fedha", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6259798932}, "geometry": {"type": "Point", "coordinates": [36.895595, -1.316073]}}, {"type": "Feature", "properties": {"name": "Shell Service Station - Kayole", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6259810690}, "geometry": {"type": "Point", "coordinates": [36.90304, -1.2829]}}, {"type": "Feature", "properties": {"name": "Shell Mumias Road", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6259860371}, "geometry": {"type": "Point", "coordinates": [36.88066, -1.286405]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6263511612}, "geometry": {"type": "Point", "coordinates": [35.614012, 3.094471]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": "Shell Petrol Station", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6327543347}, "geometry": {"type": "Point", "coordinates": [35.293509, 0.509984]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6633204913}, "geometry": {"type": "Point", "coordinates": [34.8022, -0.144338]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6644488886}, "geometry": {"type": "Point", "coordinates": [36.426665, -0.779415]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6716512885}, "geometry": {"type": "Point", "coordinates": [39.87102, -3.578128]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6793044096}, "geometry": {"type": "Point", "coordinates": [40.117773, -3.214362]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6819692388}, "geometry": {"type": "Point", "coordinates": [36.911201, -1.273195]}}, {"type": "Feature", "properties": {"name": "Shell Petrol Station", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6851086245}, "geometry": {"type": "Point", "coordinates": [37.111221, -1.055007]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6860253187}, "geometry": {"type": "Point", "coordinates": [37.454875, -0.542158]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6882011852}, "geometry": {"type": "Point", "coordinates": [37.636552, 0.06024]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6895782975}, "geometry": {"type": "Point", "coordinates": [37.261577, -0.71496]}}, {"type": "Feature", "properties": {"name": "shell- Bonje", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6938700260}, "geometry": {"type": "Point", "coordinates": [39.562412, -3.991998]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6945529552}, "geometry": {"type": "Point", "coordinates": [34.130811, 0.453207]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 6969176798}, "geometry": {"type": "Point", "coordinates": [34.794978, -0.130428]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7166621203}, "geometry": {"type": "Point", "coordinates": [40.121388, -3.211576]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7166621204}, "geometry": {"type": "Point", "coordinates": [38.581827, -3.39087]}}, {"type": "Feature", "properties": {"name": "shell makupa service station", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7172031316}, "geometry": {"type": "Point", "coordinates": [39.656857, -4.040825]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7187879248}, "geometry": {"type": "Point", "coordinates": [36.15036, -0.322371]}}, {"type": "Feature", "properties": {"name": "shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7227297576}, "geometry": {"type": "Point", "coordinates": [34.682137, -0.074322]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7239126633}, "geometry": {"type": "Point", "coordinates": [34.756277, 0.28749]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7305927852}, "geometry": {"type": "Point", "coordinates": [36.706266, -1.323004]}}, {"type": "Feature", "properties": {"name": "Shell- Syokimau", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7507287888}, "geometry": {"type": "Point", "coordinates": [36.907769, -1.357374]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": "Shell", "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7643261185}, "geometry": {"type": "Point", "coordinates": [36.875751, -1.210901]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7872591802}, "geometry": {"type": "Point", "coordinates": [37.095865, -0.973363]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7893551877}, "geometry": {"type": "Point", "coordinates": [35.284074, -0.366585]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7934573084}, "geometry": {"type": "Point", "coordinates": [35.120238, 0.87809]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 7988261701}, "geometry": {"type": "Point", "coordinates": [35.882577, -1.089807]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8039934769}, "geometry": {"type": "Point", "coordinates": [37.455485, -0.541871]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8047307634}, "geometry": {"type": "Point", "coordinates": [38.007156, -1.358313]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8050570392}, "geometry": {"type": "Point", "coordinates": [39.53407, -3.92977]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 8182514303}, "geometry": {"type": "Point", "coordinates": [36.377656, -0.264808]}}, {"type": "Feature", "properties": {"name": "Shell Ruai", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8202067662}, "geometry": {"type": "Point", "coordinates": [37.016097, -1.276187]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8231893217}, "geometry": {"type": "Point", "coordinates": [36.91699, -1.170384]}}, {"type": "Feature", "properties": {"name": "Shell - Eastern By-pass - Ruiru", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8247882582}, "geometry": {"type": "Point", "coordinates": [36.964879, -1.166976]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8293614674}, "geometry": {"type": "Point", "coordinates": [36.962424, -1.281858]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8318718279}, "geometry": {"type": "Point", "coordinates": [36.690323, -1.280476]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8321307638}, "geometry": {"type": "Point", "coordinates": [36.634916, -1.281238]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8321307639}, "geometry": {"type": "Point", "coordinates": [36.609868, -1.267623]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8338714141}, "geometry": {"type": "Point", "coordinates": [36.989696, -1.234142]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8338714151}, "geometry": {"type": "Point", "coordinates": [37.315826, -1.267493]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8345317201}, "geometry": {"type": "Point", "coordinates": [36.879297, -1.256284]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8371880141}, "geometry": {"type": "Point", "coordinates": [36.958715, -1.425451]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 8483709617}, "geometry": {"type": "Point", "coordinates": [36.871819, -0.78364]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 8862700293}, "geometry": {"type": "Point", "coordinates": [37.104729, -1.28234]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 9004506167}, "geometry": {"type": "Point", "coordinates": [36.924224, -1.231358]}}, {"type": "Feature", "properties": {"name": "Shell Mirema", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 9014259343}, "geometry": {"type": "Point", "coordinates": [36.892432, -1.213808]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 9028867156}, "geometry": {"type": "Point", "coordinates": [37.25047, -1.459477]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 9048281880}, "geometry": {"type": "Point", "coordinates": [36.365863, 0.027305]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 9053460332}, "geometry": {"type": "Point", "coordinates": [35.843587, -0.20372]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 10080456017}, "geometry": {"type": "Point", "coordinates": [36.84025, -1.229246]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 10255650224}, "geometry": {"type": "Point", "coordinates": [39.744896, -3.936283]}}, {"type": "Feature", "properties": {"name": "Shell Petrol Station", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 10971302670}, "geometry": {"type": "Point", "coordinates": [36.740804, -1.286734]}}, {"type": "Feature", "properties": {"name": "Shell -Bombolulu", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 11500364389}, "geometry": {"type": "Point", "coordinates": [39.697377, -4.025633]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 11711795482}, "geometry": {"type": "Point", "coordinates": [36.720914, -1.313698]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 12163148139}, "geometry": {"type": "Point", "coordinates": [36.799912, -1.274671]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 12165032865}, "geometry": {"type": "Point", "coordinates": [36.781587, -1.307959]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 12489868997}, "geometry": {"type": "Point", "coordinates": [34.744859, 0.28095]}}, {"type": "Feature", "properties": {"name": "Shell Syokimau", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 12600151901}, "geometry": {"type": "Point", "coordinates": [36.927818, -1.378091]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 12886546509}, "geometry": {"type": "Point", "coordinates": [36.90678, -1.262862]}}, {"type": "Feature", "properties": {"name": "Shell Gas Station", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 13088820396}, "geometry": {"type": "Point", "coordinates": [36.427412, -0.779732]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 13446964574}, "geometry": {"type": "Point", "coordinates": [34.482215, -1.230649]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 13446964578}, "geometry": {"type": "Point", "coordinates": [34.53639, -0.900865]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 13447042942}, "geometry": {"type": "Point", "coordinates": [34.720706, 0.078482]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 13528448115}, "geometry": {"type": "Point", "coordinates": [35.163178, 0.600804]}}, {"type": "Feature", "properties": {"name": "shell", "brand": null, "operator": null, "brand_source": "name", "osm_type": "node", "osm_id": 13714210044}, "geometry": {"type": "Point", "coordinates": [34.801363, -0.143442]}}, {"type": "Feature", "properties": {"name": "shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "node", "osm_id": 13720608494}, "geometry": {"type": "Point", "coordinates": [34.727069, -0.077947]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 123365084}, "geometry": {"type": "Point", "coordinates": [36.824838, -1.282701]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 125107079}, "geometry": {"type": "Point", "coordinates": [36.82273, -1.2799]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 125336232}, "geometry": {"type": "Point", "coordinates": [36.811096, -1.289727]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 126936993}, "geometry": {"type": "Point", "coordinates": [36.838738, -1.287955]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 126995763}, "geometry": {"type": "Point", "coordinates": [36.83183, -1.272506]}}, {"type": "Feature", "properties": {"name": "Shell Service Station - Jogoo Road", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 129323643}, "geometry": {"type": "Point", "coordinates": [36.860244, -1.295715]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 133548150}, "geometry": {"type": "Point", "coordinates": [36.817225, -1.268949]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 144188726}, "geometry": {"type": "Point", "coordinates": [36.817766, -1.310807]}}, {"type": "Feature", "properties": {"name": "Shell- Lavington", "brand": "Shell", "operator": "Shell", "brand_source": "brand_tag", "osm_type": "way", "osm_id": 226322138}, "geometry": {"type": "Point", "coordinates": [36.769286, -1.280811]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 226714111}, "geometry": {"type": "Point", "coordinates": [36.708022, -1.322412]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 238857325}, "geometry": {"type": "Point", "coordinates": [36.802726, -1.263021]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 366568545}, "geometry": {"type": "Point", "coordinates": [36.828502, -1.30349]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 390104534}, "geometry": {"type": "Point", "coordinates": [34.76444, -0.09443]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 483211211}, "geometry": {"type": "Point", "coordinates": [36.09429, -0.282248]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 488459901}, "geometry": {"type": "Point", "coordinates": [36.075122, -0.285481]}}, {"type": "Feature", "properties": {"name": "Shell Kitengela ex-Engen", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 536796727}, "geometry": {"type": "Point", "coordinates": [36.954337, -1.491085]}}, {"type": "Feature", "properties": {"name": "Shell Voi", "brand": "Shell", "operator": "Shell", "brand_source": "brand_tag", "osm_type": "way", "osm_id": 593734920}, "geometry": {"type": "Point", "coordinates": [38.549126, -3.400372]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": null, "operator": null, "brand_source": "name", "osm_type": "way", "osm_id": 642076596}, "geometry": {"type": "Point", "coordinates": [36.566545, -0.865417]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 686179946}, "geometry": {"type": "Point", "coordinates": [36.834388, -1.275817]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 732602668}, "geometry": {"type": "Point", "coordinates": [37.452256, -0.536827]}}, {"type": "Feature", "properties": {"name": "Shell Petrol Station - Greenspan", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 977833647}, "geometry": {"type": "Point", "coordinates": [36.902407, -1.288893]}}, {"type": "Feature", "properties": {"name": "Shell petrol station (feroze)", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 1055608664}, "geometry": {"type": "Point", "coordinates": [36.906097, -1.26303]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 1069555494}, "geometry": {"type": "Point", "coordinates": [34.971231, -0.268103]}}, {"type": "Feature", "properties": {"name": "Shell Hurlingham", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 1088482284}, "geometry": {"type": "Point", "coordinates": [36.799606, -1.295405]}}, {"type": "Feature", "properties": {"name": "Shell Service Station - Embakassi", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 1107378445}, "geometry": {"type": "Point", "coordinates": [36.917619, -1.317926]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 1107729725}, "geometry": {"type": "Point", "coordinates": [36.683097, -1.328958]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 1110216588}, "geometry": {"type": "Point", "coordinates": [37.524927, -2.831336]}}, {"type": "Feature", "properties": {"name": "Shell Kahawa Sukari", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 1135425767}, "geometry": {"type": "Point", "coordinates": [36.931934, -1.188788]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 1222533725}, "geometry": {"type": "Point", "coordinates": [34.691528, -0.074421]}}, {"type": "Feature", "properties": {"name": "Shell Service Station - Likoni Road", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 1273152921}, "geometry": {"type": "Point", "coordinates": [36.856227, -1.303854]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 1290701573}, "geometry": {"type": "Point", "coordinates": [36.799548, -1.835509]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": null, "brand_source": "brand_tag", "osm_type": "way", "osm_id": 1413265354}, "geometry": {"type": "Point", "coordinates": [36.800975, -2.538055]}}, {"type": "Feature", "properties": {"name": "Shell Fuel Station - Tala", "brand": null, "operator": null, "brand_source": "name", "osm_type": "way", "osm_id": 1434009884}, "geometry": {"type": "Point", "coordinates": [37.315706, -1.26749]}}, {"type": "Feature", "properties": {"name": "Shell", "brand": "Shell", "operator": "Shell", "brand_source": "brand_tag", "osm_type": "way", "osm_id": 1497383075}, "geometry": {"type": "Point", "coordinates": [36.98704, -1.266132]}}]} \ No newline at end of file