mapwright 0.19.0__tar.gz → 0.21.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (126) hide show
  1. {mapwright-0.19.0 → mapwright-0.21.0}/CHANGELOG.md +38 -0
  2. {mapwright-0.19.0 → mapwright-0.21.0}/PKG-INFO +13 -3
  3. {mapwright-0.19.0 → mapwright-0.21.0}/README.md +12 -2
  4. mapwright-0.21.0/docs/gallery/grid-city.png +0 -0
  5. mapwright-0.21.0/docs/gallery/grid-city.svg +1 -0
  6. mapwright-0.21.0/docs/gallery/metropolis.png +0 -0
  7. mapwright-0.21.0/docs/gallery/metropolis.svg +1 -0
  8. mapwright-0.21.0/docs/gallery/shantytown.png +0 -0
  9. mapwright-0.21.0/docs/gallery/shantytown.svg +1 -0
  10. {mapwright-0.19.0 → mapwright-0.21.0}/examples/gallery.py +3 -0
  11. {mapwright-0.19.0 → mapwright-0.21.0}/pyproject.toml +1 -1
  12. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/__init__.py +1 -1
  13. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/_geometry.py +43 -0
  14. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/settlement.py +256 -33
  15. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_geometry.py +21 -0
  16. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_settlement.py +139 -2
  17. {mapwright-0.19.0 → mapwright-0.21.0}/.github/workflows/ci.yml +0 -0
  18. {mapwright-0.19.0 → mapwright-0.21.0}/.github/workflows/publish.yml +0 -0
  19. {mapwright-0.19.0 → mapwright-0.21.0}/.gitignore +0 -0
  20. {mapwright-0.19.0 → mapwright-0.21.0}/LICENSE +0 -0
  21. {mapwright-0.19.0 → mapwright-0.21.0}/NOTICE +0 -0
  22. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/age-old.png +0 -0
  23. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/age-old.svg +0 -0
  24. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/age-young.png +0 -0
  25. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/age-young.svg +0 -0
  26. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/archipelago.png +0 -0
  27. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/archipelago.svg +0 -0
  28. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/arctic.png +0 -0
  29. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/arctic.svg +0 -0
  30. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas.png +0 -0
  31. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/README.md +0 -0
  32. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/city_castle_1.png +0 -0
  33. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/city_large_1.png +0 -0
  34. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/city_town_1.png +0 -0
  35. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/city_village_1.png +0 -0
  36. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/decoration_compass_1.png +0 -0
  37. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/decoration_creature_1.png +0 -0
  38. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/decoration_ship_1.png +0 -0
  39. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/dune_1.png +0 -0
  40. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/hill_1.png +0 -0
  41. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/hill_2.png +0 -0
  42. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/manifest.json +0 -0
  43. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/mountain_mid_1.png +0 -0
  44. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/mountain_old_1.png +0 -0
  45. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/mountain_old_2.png +0 -0
  46. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/mountain_young_1.png +0 -0
  47. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/mountain_young_2.png +0 -0
  48. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/tree_cactus_1.png +0 -0
  49. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/tree_deciduous_1.png +0 -0
  50. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/tree_deciduous_2.png +0 -0
  51. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/tree_pine_1.png +0 -0
  52. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/atlas_pack/tree_pine_2.png +0 -0
  53. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/citadel.png +0 -0
  54. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/citadel.svg +0 -0
  55. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/continent.png +0 -0
  56. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/continent.svg +0 -0
  57. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/desert.png +0 -0
  58. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/desert.svg +0 -0
  59. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/dungeon.png +0 -0
  60. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/dungeon.svg +0 -0
  61. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/highlands.png +0 -0
  62. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/highlands.svg +0 -0
  63. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/hint.png +0 -0
  64. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/hint.svg +0 -0
  65. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/islands.png +0 -0
  66. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/islands.svg +0 -0
  67. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/pangaea.png +0 -0
  68. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/pangaea.svg +0 -0
  69. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/port.png +0 -0
  70. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/port.svg +0 -0
  71. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/regions.png +0 -0
  72. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/regions.svg +0 -0
  73. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/roads.png +0 -0
  74. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/roads.svg +0 -0
  75. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/template-atoll.png +0 -0
  76. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/template-atoll.svg +0 -0
  77. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/template-isthmus.png +0 -0
  78. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/template-isthmus.svg +0 -0
  79. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/theme-blueprint.png +0 -0
  80. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/theme-blueprint.svg +0 -0
  81. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/theme-citadel-neon.png +0 -0
  82. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/theme-citadel-neon.svg +0 -0
  83. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/theme-dune.png +0 -0
  84. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/theme-dune.svg +0 -0
  85. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/theme-dungeon-blueprint.png +0 -0
  86. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/theme-dungeon-blueprint.svg +0 -0
  87. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/theme-neon.png +0 -0
  88. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/theme-neon.svg +0 -0
  89. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/theme-parchment.png +0 -0
  90. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/theme-parchment.svg +0 -0
  91. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/town.png +0 -0
  92. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/town.svg +0 -0
  93. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/tropical.png +0 -0
  94. {mapwright-0.19.0 → mapwright-0.21.0}/docs/gallery/tropical.svg +0 -0
  95. {mapwright-0.19.0 → mapwright-0.21.0}/examples/benchmark.py +0 -0
  96. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/_graph.py +0 -0
  97. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/_serde.py +0 -0
  98. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/affordances.py +0 -0
  99. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/atlas_renderer.py +0 -0
  100. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/config.py +0 -0
  101. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/dungeon.py +0 -0
  102. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/dungeon_renderer.py +0 -0
  103. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/names.py +0 -0
  104. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/regions.py +0 -0
  105. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/rng.py +0 -0
  106. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/roads.py +0 -0
  107. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/settlement_renderer.py +0 -0
  108. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/svg_renderer.py +0 -0
  109. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/terrain.py +0 -0
  110. {mapwright-0.19.0 → mapwright-0.21.0}/src/mapwright/themes.py +0 -0
  111. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_affordances.py +0 -0
  112. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_api_contract.py +0 -0
  113. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_atlas_renderer.py +0 -0
  114. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_config.py +0 -0
  115. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_dungeon.py +0 -0
  116. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_dungeon_renderer.py +0 -0
  117. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_graph.py +0 -0
  118. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_names.py +0 -0
  119. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_properties.py +0 -0
  120. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_regions.py +0 -0
  121. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_rng.py +0 -0
  122. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_roads.py +0 -0
  123. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_serialize.py +0 -0
  124. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_svg_renderer.py +0 -0
  125. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_terrain.py +0 -0
  126. {mapwright-0.19.0 → mapwright-0.21.0}/tests/test_themes.py +0 -0
@@ -8,6 +8,44 @@ All notable changes to mapwright are documented here. The format follows
8
8
  `tests/test_api_contract.py`). While the version is `0.x`, minor versions may
9
9
  make breaking changes; these will always be noted here.
10
10
 
11
+ ## [0.21.0] — 2026-06-02
12
+
13
+ ### Added
14
+ - **Grid streets — the organic ↔ planned layout descriptor.** A new
15
+ `SettlementConfig.layout` field (`"organic"` default, or `"grid"`) chooses the
16
+ street pattern. In `"grid"` mode the town gets a geometric street grid aligned
17
+ to its long axis (PCA over the footprint): two families of parallel
18
+ thoroughfares clipped to the footprint, the central line of each marked
19
+ `"main"`, with gates where the mains pierce the perimeter (plus a harbour gate
20
+ when coastal). Building lots are also bisected along the grid axes, so blocks
21
+ come out rectangular and street-aligned. Walls splice grid gates (which land
22
+ mid-edge) into the wall ring as real gatehouse gaps. This is the *Layout &
23
+ Geometry* descriptor from the imaginative-realms taxonomy ("Hyper-Grid Rigid"),
24
+ generalising the `era`/`wealth` shanty↔skyscraper axis.
25
+ - New preset **`grid_city`**; gallery `grid-city` showcase.
26
+ - The default (`layout="organic"`) output is **byte-identical** to before — all
27
+ grid logic is gated behind the new mode.
28
+ - `layout` serialises via `to_dict`/`json_schema` (new enum-field support in
29
+ `SettlementConfig`, via an `_ENUM_SPEC`).
30
+ - New reusable geometry primitive `clip_line_to_convex` (Liang–Barsky line ↔
31
+ convex-polygon clipping) in the internal `_geometry` module.
32
+
33
+ ## [0.20.0] — 2026-06-02
34
+
35
+ ### Added
36
+ - **Settlement `era` + `wealth` — the shanty ↔ skyscraper axis.** Two new 0..1
37
+ `SettlementConfig` knobs (mapwright-original, extending the age/era/wealth idea
38
+ to towns):
39
+ - **`wealth`** scales plot *size* (poor = cramped tiny lots; rich = large
40
+ estates/blocks) and the ward-kind *mix* (poor = slum-heavy; rich = more
41
+ noble/temple wards).
42
+ - **`era`** sets block *regularity* (ancient = organic, jittered; modern =
43
+ near-grid rectangular blocks).
44
+ Both are neutral at `0.5`, so the default output is **byte-identical** (the
45
+ shaping factors are exact identities and the neutral ward bag equals the old
46
+ fixed mix). Two new presets — `shantytown` and `metropolis` — and a gallery
47
+ showcase of both. Purely additive; serialises via `to_dict`/`json_schema`.
48
+
11
49
  ## [0.19.0] — 2026-06-02
12
50
 
13
51
  ### Added
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mapwright
3
- Version: 0.19.0
3
+ Version: 0.21.0
4
4
  Summary: Domain-neutral procedural fantasy map & world generation: Voronoi terrain, hydraulic erosion, biomes, rivers, Markov place-names, and shaded-relief SVG.
5
5
  Project-URL: Homepage, https://github.com/sligara7/mapwright
6
6
  Project-URL: Repository, https://github.com/sligara7/mapwright
@@ -95,6 +95,11 @@ produced by [`examples/gallery.py`](examples/gallery.py):
95
95
  <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/citadel.png" alt="generated walled citadel"><br><sub><code>Settlement (citadel)</code></sub></td>
96
96
  </tr>
97
97
  <tr>
98
+ <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/shantytown.png" alt="poor, dense, irregular shantytown"><br><sub><code>wealth=0.08</code> (shantytown)</sub></td>
99
+ <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/metropolis.png" alt="rich, modern, grid-block metropolis"><br><sub><code>wealth=0.92, era=0.95</code> (metropolis)</sub></td>
100
+ <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/grid-city.png" alt="planned town with a geometric street grid"><br><sub><code>layout="grid"</code> (grid_city)</sub></td>
101
+ </tr>
102
+ <tr>
98
103
  <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/roads.png" alt="settlements linked by terrain-routed roads"><br><sub><code>RegionalRoadGenerator</code></sub></td>
99
104
  <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/regions.png" alt="land partitioned into named territories"><br><sub><code>RegionGenerator</code></sub></td>
100
105
  <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/template-isthmus.png" alt="isthmus heightmap template"><br><sub><code>template="isthmus"</code></sub></td>
@@ -220,7 +225,12 @@ citadel = SettlementGenerator(SeededRNG(3)).generate(90, 90, SettlementConfig.pr
220
225
  open("town.svg", "w").write(SettlementSVGRenderer().render(town))
221
226
  ```
222
227
 
223
- Settlement presets: `hamlet`, `village`, `town`, `city`, `port`, `citadel`.
228
+ Settlement presets: `hamlet`, `village`, `town`, `city`, `port`, `citadel`,
229
+ `shantytown`, `metropolis`, `grid_city`. The `wealth` (poor ⇄ rich) and `era`
230
+ (ancient ⇄ modern) knobs drive the shanty↔skyscraper axis — plot size, ward-kind
231
+ mix, and block regularity. The `layout` knob picks the street pattern: `"organic"`
232
+ (winding ward-to-ward roads, the default) or `"grid"` (a geometric street grid
233
+ aligned to the town's long axis, with grid-aligned lots).
224
234
 
225
235
  ## What's inside
226
236
 
@@ -238,7 +248,7 @@ Settlement presets: `hamlet`, `village`, `town`, `city`, `port`, `citadel`.
238
248
  | `RegionGenerator` | Partitions land into named factions/territories: spread capitals seed a flood fill over the land graph (sea divides them); each `Region` is Markov-named. |
239
249
  | `DungeonGenerator` | BSP-partitioned rooms + minimum-spanning-tree corridors → rooms, corridor cells, and a walkable grid (with `Dungeon.ascii()`). |
240
250
  | `DungeonSVGRenderer` | Renders a `Dungeon` to SVG: walls, carved floor, room outlines, optional tile grid and per-room labels. Takes a `theme=`. |
241
- | `SettlementGenerator` | Self-contained town layout: an organic footprint divided into named Voronoi **wards** (market, docks, …), each subdivided into building **lots**, a **street** network (MST over ward adjacency + main roads from gates to the market), an optional defensive **wall** (towers + gate gaps, opened at the harbour when coastal), and optional coastline. |
251
+ | `SettlementGenerator` | Self-contained town layout: an organic footprint divided into named Voronoi **wards** (market, docks, …), each subdivided into building **lots**, a **street** network (`layout="organic"` → MST over ward adjacency + gate-to-market roads; `layout="grid"` a geometric street grid + grid-aligned lots), an optional defensive **wall** (towers + gate gaps, opened at the harbour when coastal), and optional coastline. |
242
252
  | `SettlementSVGRenderer` | Renders a `Settlement` to SVG: sea, footprint, kind-coloured wards, building lots, streets, wall with towers/gatehouses, labels. Takes a `theme=`. |
243
253
 
244
254
  Everything is neutral: `RegionalTerrainGenerator` returns a `TerrainResult` of `TerrainCell`s
@@ -68,6 +68,11 @@ produced by [`examples/gallery.py`](examples/gallery.py):
68
68
  <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/citadel.png" alt="generated walled citadel"><br><sub><code>Settlement (citadel)</code></sub></td>
69
69
  </tr>
70
70
  <tr>
71
+ <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/shantytown.png" alt="poor, dense, irregular shantytown"><br><sub><code>wealth=0.08</code> (shantytown)</sub></td>
72
+ <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/metropolis.png" alt="rich, modern, grid-block metropolis"><br><sub><code>wealth=0.92, era=0.95</code> (metropolis)</sub></td>
73
+ <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/grid-city.png" alt="planned town with a geometric street grid"><br><sub><code>layout="grid"</code> (grid_city)</sub></td>
74
+ </tr>
75
+ <tr>
71
76
  <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/roads.png" alt="settlements linked by terrain-routed roads"><br><sub><code>RegionalRoadGenerator</code></sub></td>
72
77
  <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/regions.png" alt="land partitioned into named territories"><br><sub><code>RegionGenerator</code></sub></td>
73
78
  <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/template-isthmus.png" alt="isthmus heightmap template"><br><sub><code>template="isthmus"</code></sub></td>
@@ -193,7 +198,12 @@ citadel = SettlementGenerator(SeededRNG(3)).generate(90, 90, SettlementConfig.pr
193
198
  open("town.svg", "w").write(SettlementSVGRenderer().render(town))
194
199
  ```
195
200
 
196
- Settlement presets: `hamlet`, `village`, `town`, `city`, `port`, `citadel`.
201
+ Settlement presets: `hamlet`, `village`, `town`, `city`, `port`, `citadel`,
202
+ `shantytown`, `metropolis`, `grid_city`. The `wealth` (poor ⇄ rich) and `era`
203
+ (ancient ⇄ modern) knobs drive the shanty↔skyscraper axis — plot size, ward-kind
204
+ mix, and block regularity. The `layout` knob picks the street pattern: `"organic"`
205
+ (winding ward-to-ward roads, the default) or `"grid"` (a geometric street grid
206
+ aligned to the town's long axis, with grid-aligned lots).
197
207
 
198
208
  ## What's inside
199
209
 
@@ -211,7 +221,7 @@ Settlement presets: `hamlet`, `village`, `town`, `city`, `port`, `citadel`.
211
221
  | `RegionGenerator` | Partitions land into named factions/territories: spread capitals seed a flood fill over the land graph (sea divides them); each `Region` is Markov-named. |
212
222
  | `DungeonGenerator` | BSP-partitioned rooms + minimum-spanning-tree corridors → rooms, corridor cells, and a walkable grid (with `Dungeon.ascii()`). |
213
223
  | `DungeonSVGRenderer` | Renders a `Dungeon` to SVG: walls, carved floor, room outlines, optional tile grid and per-room labels. Takes a `theme=`. |
214
- | `SettlementGenerator` | Self-contained town layout: an organic footprint divided into named Voronoi **wards** (market, docks, …), each subdivided into building **lots**, a **street** network (MST over ward adjacency + main roads from gates to the market), an optional defensive **wall** (towers + gate gaps, opened at the harbour when coastal), and optional coastline. |
224
+ | `SettlementGenerator` | Self-contained town layout: an organic footprint divided into named Voronoi **wards** (market, docks, …), each subdivided into building **lots**, a **street** network (`layout="organic"` → MST over ward adjacency + gate-to-market roads; `layout="grid"` a geometric street grid + grid-aligned lots), an optional defensive **wall** (towers + gate gaps, opened at the harbour when coastal), and optional coastline. |
215
225
  | `SettlementSVGRenderer` | Renders a `Settlement` to SVG: sea, footprint, kind-coloured wards, building lots, streets, wall with towers/gatehouses, labels. Takes a `theme=`. |
216
226
 
217
227
  Everything is neutral: `RegionalTerrainGenerator` returns a `TerrainResult` of `TerrainCell`s
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="630" height="630" viewBox="0 0 630 630"><rect width="630" height="630" fill="#c9d2bb"/><polygon points="81.8,367.7 85.2,334.2 93.9,300.7 107.5,267.9 125.8,236.4 148.3,206.8 174.7,179.7 204.4,155.7 236.9,135.3 271.5,119.2 307.4,107.7 343.8,101.3 379.7,100.2 414.2,104.5 446.3,114.3 475.2,129.1 500.2,148.6 520.5,172.3 535.8,199.6 545.7,229.7 550.1,261.9 548.9,295.5 542.2,329.7 529.9,363.8 512.4,397.0 490.0,428.6 463.1,457.8 432.1,483.7 397.9,505.7 361.2,523.0 323.0,535.0 284.5,541.3 246.7,541.7 210.8,536.0 177.9,524.6 148.9,507.7 124.5,486.1 105.4,460.5 91.8,431.7 84.0,400.4" fill="#e6dcc0"/><g stroke="#4a4230" stroke-width="1" stroke-linejoin="round"><polygon points="137.2,221.4 148.3,206.8 174.7,179.7 195.1,163.2 204.9,173.1 217.7,215.1 196.3,253.2 192.7,254.4" fill="#d8cdb0"/><polygon points="319.2,444.5 349.3,451.3 361.7,488.1 300.7,496.8" fill="#c2b48f"/><polygon points="435.4,234.2 430.3,235.4 404.9,216.9 403.0,197.8 416.9,189.5 454.6,205.8" fill="#d8cdb0"/><polygon points="387.2,258.5 368.8,303.9 345.0,289.1 339.1,253.5 360.2,235.5 377.5,241.6" fill="#b9a98c"/><polygon points="495.4,144.9 500.2,148.6 520.5,172.3 535.8,199.6 540.4,213.5 494.2,223.6 466.9,200.2 468.2,187.2" fill="#c2b48f"/><polygon points="405.4,356.6 376.6,307.4 420.6,298.3 437.4,319.3 434.0,348.1" fill="#cdbf9e"/><polygon points="549.5,279.5 548.9,295.5 542.2,329.7 531.8,358.4 497.0,341.7 485.1,297.9 488.4,287.3" fill="#d8cdb0"/><polygon points="192.7,254.4 196.3,253.2 240.6,275.4 249.3,301.4 239.0,322.7 204.4,334.3 170.0,314.8 168.9,310.0" fill="#cdbf9e"/><polygon points="247.0,429.8 273.2,435.3 277.2,502.5 216.9,473.7" fill="#b9a98c"/><polygon points="249.3,301.4 240.6,275.4 268.1,244.8 297.0,250.4 298.4,298.9" fill="#c2b48f"/><polygon points="418.4,109.2 419.8,143.9 378.0,160.5 361.2,145.5 364.3,131.3" fill="#d8cdb0"/><polygon points="423.4,414.1 412.5,432.7 400.0,437.6 369.7,428.6 364.2,407.6 392.9,375.1" fill="#b3a684"/><polygon points="445.3,472.6 432.1,483.7 397.9,505.7 388.0,510.3 386.3,507.6 400.0,437.6 412.5,432.7" fill="#c2b48f"/><polygon points="298.4,298.9 297.0,250.4 305.3,244.9 339.1,253.5 345.0,289.1 300.5,300.5" fill="#dfd6c0"/><polygon points="349.3,451.3 319.2,444.5 302.2,422.7 304.1,415.6 334.0,395.0 364.2,407.6 369.7,428.6" fill="#c2b48f"/><polygon points="392.9,375.1 364.2,407.6 334.0,395.0 335.3,352.1 339.9,350.2 393.0,373.0" fill="#c2b48f"/><polygon points="468.2,187.2 466.9,200.2 454.6,205.8 416.9,189.5 428.1,160.2" fill="#dfd6c0"/><polygon points="204.9,476.7 185.3,527.1 177.9,524.6 148.9,507.7 124.5,486.1 111.9,469.3 178.5,449.3" fill="#cdbf9e"/><polygon points="310.1,213.6 305.3,244.9 297.0,250.4 268.1,244.8 256.6,218.1 274.3,191.1" fill="#cdbf9e"/><polygon points="425.2,280.8 415.4,262.1 430.3,235.4 435.4,234.2 476.1,267.0 476.2,267.5" fill="#d8cdb0"/><polygon points="284.0,541.3 246.7,541.7 210.8,536.0 185.3,527.1 204.9,476.7 216.9,473.7 277.2,502.5 284.0,510.5" fill="#dfd6c0"/><polygon points="273.2,435.3 247.0,429.8 230.9,399.3 272.9,365.0 273.8,365.1 304.1,415.6 302.2,422.7" fill="#b3a684"/><polygon points="489.1,139.9 495.4,144.9 468.2,187.2 428.1,160.2 426.6,151.9" fill="#cdbf9e"/><polygon points="504.6,408.1 490.0,428.6 468.9,451.5 444.9,408.0 459.5,391.3" fill="#b9a98c"/><polygon points="300.5,300.5 345.0,289.1 368.8,303.9 369.0,304.4 339.9,350.2 335.3,352.1 309.0,343.2" fill="#d9c08a"/><polygon points="376.6,307.4 405.4,356.6 393.0,373.0 339.9,350.2 369.0,304.4" fill="#cdbf9e"/><polygon points="368.8,303.9 387.2,258.5 415.4,262.1 425.2,280.8 420.6,298.3 376.6,307.4 369.0,304.4" fill="#d8cdb0"/><polygon points="387.2,258.5 377.5,241.6 404.9,216.9 430.3,235.4 415.4,262.1" fill="#cdbf9e"/><polygon points="105.5,272.8 107.5,267.9 125.8,236.4 137.2,221.4 192.7,254.4 168.9,310.0" fill="#d8cdb0"/><polygon points="361.2,145.5 378.0,160.5 380.7,185.9 352.0,205.8 334.3,198.1 324.8,161.6 328.6,155.2" fill="#cdbf9e"/><polygon points="195.1,163.2 204.4,155.7 236.9,135.3 265.4,122.0 274.6,170.2 273.0,173.2 204.9,173.1" fill="#c2b48f"/><polygon points="468.9,451.5 463.1,457.8 445.3,472.6 412.5,432.7 423.4,414.1 444.9,408.0" fill="#d8cdb0"/><polygon points="435.4,234.2 454.6,205.8 466.9,200.2 494.2,223.6 476.1,267.0" fill="#c2b48f"/><polygon points="388.0,510.3 361.2,523.0 323.0,535.0 284.5,541.3 284.0,541.3 284.0,510.5 300.7,496.8 361.7,488.1 386.3,507.6" fill="#c2b48f"/><polygon points="268.1,244.8 240.6,275.4 196.3,253.2 217.7,215.1 256.6,218.1" fill="#cdbf9e"/><polygon points="419.4,106.1 446.3,114.3 475.2,129.1 489.1,139.9 426.6,151.9 419.8,143.9 418.4,109.2" fill="#d8cdb0"/><polygon points="437.4,319.3 420.6,298.3 425.2,280.8 476.2,267.5 488.4,287.3 485.1,297.9" fill="#dfd6c0"/><polygon points="423.4,414.1 392.9,375.1 393.0,373.0 405.4,356.6 434.0,348.1 456.6,364.1 459.5,391.3 444.9,408.0" fill="#b3a684"/><polygon points="360.2,235.5 339.1,253.5 305.3,244.9 310.1,213.6 334.3,198.1 352.0,205.8" fill="#cdbf9e"/><polygon points="306.8,107.9 307.4,107.7 343.8,101.3 354.2,101.0 364.3,131.3 361.2,145.5 328.6,155.2" fill="#d8cdb0"/><polygon points="403.0,197.8 404.9,216.9 377.5,241.6 360.2,235.5 352.0,205.8 380.7,185.9" fill="#cdbf9e"/><polygon points="89.7,316.8 93.9,300.7 105.5,272.8 168.9,310.0 170.0,314.8 137.2,350.1" fill="#cdbf9e"/><polygon points="239.0,322.7 249.3,301.4 298.4,298.9 300.5,300.5 309.0,343.2 273.8,365.1 272.9,365.0" fill="#b3a684"/><polygon points="152.1,392.8 94.0,436.2 91.8,431.7 84.0,400.4 82.5,378.1 136.0,357.8" fill="#cdbf9e"/><polygon points="354.2,101.0 379.7,100.2 414.2,104.5 419.4,106.1 418.4,109.2 364.3,131.3" fill="#d8cdb0"/><polygon points="416.9,189.5 403.0,197.8 380.7,185.9 378.0,160.5 419.8,143.9 426.6,151.9 428.1,160.2" fill="#cdbf9e"/><polygon points="81.8,367.7 85.2,334.2 89.7,316.8 137.2,350.1 136.0,357.8 82.5,378.1" fill="#cdbf9e"/><polygon points="274.3,191.1 256.6,218.1 217.7,215.1 204.9,173.1 273.0,173.2" fill="#c2b48f"/><polygon points="265.4,122.0 271.5,119.2 306.8,107.9 328.6,155.2 324.8,161.6 274.6,170.2" fill="#d8cdb0"/><polygon points="309.0,343.2 335.3,352.1 334.0,395.0 304.1,415.6 273.8,365.1" fill="#cdbf9e"/><polygon points="178.5,449.3 111.9,469.3 105.4,460.5 94.0,436.2 152.1,392.8 179.9,404.4" fill="#c2b48f"/><polygon points="434.0,348.1 437.4,319.3 485.1,297.9 497.0,341.7 456.6,364.1" fill="#b9a98c"/><polygon points="361.7,488.1 349.3,451.3 369.7,428.6 400.0,437.6 386.3,507.6" fill="#d8cdb0"/><polygon points="170.0,314.8 204.4,334.3 204.0,391.3 179.9,404.4 152.1,392.8 136.0,357.8 137.2,350.1" fill="#b9a98c"/><polygon points="230.9,399.3 247.0,429.8 216.9,473.7 204.9,476.7 178.5,449.3 179.9,404.4 204.0,391.3" fill="#c2b48f"/><polygon points="531.8,358.4 529.9,363.8 512.4,397.0 504.6,408.1 459.5,391.3 456.6,364.1 497.0,341.7" fill="#c2b48f"/><polygon points="204.4,334.3 239.0,322.7 272.9,365.0 230.9,399.3 204.0,391.3" fill="#b9a98c"/><polygon points="277.2,502.5 273.2,435.3 302.2,422.7 319.2,444.5 300.7,496.8 284.0,510.5" fill="#b9a98c"/><polygon points="324.8,161.6 334.3,198.1 310.1,213.6 274.3,191.1 273.0,173.2 274.6,170.2" fill="#cdbf9e"/><polygon points="540.4,213.5 545.7,229.7 550.1,261.9 549.5,279.5 488.4,287.3 476.2,267.5 476.1,267.0 494.2,223.6" fill="#c2b48f"/></g><g fill="#7d6c52" stroke="#4a3e2e" stroke-width="0.5" stroke-linejoin="round"><polygon points="143.4,220.2 151.5,209.6 165.4,195.3 182.2,218.1 163.3,232.0"/><polygon points="187.1,224.9 198.6,240.5 193.5,249.7 193.2,249.8 171.1,236.7"/><polygon points="171.3,189.2 177.5,182.8 194.8,168.9 201.2,175.3 207.1,194.6 186.5,209.8"/><polygon points="209.7,203.2 213.2,214.6 203.2,232.5 191.5,216.6"/><polygon points="307.4,486.2 314.7,465.6 321.9,475.5"/><polygon points="331.9,489.3 308.2,492.7 325.2,480.2"/><polygon points="320.6,449.2 332.0,464.7 324.9,469.9 317.1,459.3"/><polygon points="327.4,449.0 347.2,453.5 347.3,453.8 336.6,461.6"/><polygon points="348.7,460.3 351.6,468.9 334.2,481.6 329.1,474.7"/><polygon points="354.2,474.8 357.9,485.7 338.5,488.5 337.5,487.1"/><polygon points="432.9,230.5 431.2,230.8 408.9,214.6 407.4,200.0 417.2,194.2 448.3,207.7"/><polygon points="348.0,281.4 343.6,255.2 349.4,250.2 363.8,269.7"/><polygon points="355.9,244.7 361.1,240.2 374.6,245.0 381.4,256.8 370.6,264.7"/><polygon points="378.2,269.6 366.8,297.7 352.3,288.7"/><polygon points="470.1,195.5 470.8,188.1 478.2,176.7 484.3,185.0"/><polygon points="492.9,197.3 479.6,207.1 472.4,200.9 487.4,189.8"/><polygon points="494.3,168.7 484.2,176.2 480.9,171.8 488.2,160.5"/><polygon points="496.0,148.7 498.3,150.5 506.2,159.7 498.2,165.5 491.3,156.2"/><polygon points="507.7,186.0 497.9,193.3 488.3,180.2 498.1,173.0"/><polygon points="509.6,164.1 518.1,174.0 520.0,177.4 513.0,182.6 502.9,169.0"/><polygon points="489.2,215.7 483.8,211.1 498.6,200.2 502.7,205.7"/><polygon points="511.6,217.3 494.9,221.0 492.9,219.3 506.0,209.7"/><polygon points="519.7,203.1 511.9,208.9 503.2,197.0 511.0,191.3"/><polygon points="523.0,182.3 530.4,195.4 524.2,200.0 515.3,187.9"/><polygon points="533.0,200.6 533.1,200.8 536.6,211.3 517.0,215.6 515.4,213.5"/><polygon points="386.1,318.4 380.8,309.3 399.7,305.4 401.1,307.3"/><polygon points="394.5,331.6 389.6,323.2 404.2,312.4 410.0,320.2"/><polygon points="406.0,304.4 419.4,301.6 425.4,309.2 415.1,316.7"/><polygon points="404.0,347.5 398.0,337.3 411.6,327.3 418.6,336.8"/><polygon points="406.6,353.7 406.3,353.2 422.8,341.0 427.6,347.4"/><polygon points="416.5,323.2 429.2,313.8 434.2,320.2 433.9,323.1 422.6,331.4"/><polygon points="434.1,329.3 432.1,345.8 424.9,336.0"/><polygon points="518.4,311.7 497.4,327.1 489.5,298.0 491.6,291.2 502.3,289.8"/><polygon points="545.1,284.3 544.8,292.2 525.2,306.7 511.9,288.6"/><polygon points="532.2,345.1 529.5,352.6 500.6,338.7 499.8,335.8 516.4,323.6"/><polygon points="542.9,304.0 538.1,328.5 535.6,335.5 523.1,318.6"/><polygon points="186.8,309.2 177.8,315.9 172.5,312.9 171.9,310.2 177.7,296.8"/><polygon points="182.2,293.7 180.0,290.7 186.5,275.5 193.6,285.2"/><polygon points="202.6,297.7 191.5,305.9 185.5,297.9 196.7,289.6"/><polygon points="195.0,256.9 196.1,256.6 208.6,262.9 192.8,274.5 189.4,269.9"/><polygon points="217.2,286.1 207.2,293.5 197.0,279.6 207.0,272.2"/><polygon points="214.9,265.9 233.1,275.0 222.7,282.6 211.9,268.0"/><polygon points="207.7,329.7 204.7,330.7 184.0,319.0 194.2,311.4"/><polygon points="204.8,315.7 198.7,307.4 208.7,300.0 214.8,308.3"/><polygon points="226.2,324.0 214.1,328.0 208.2,320.0 218.0,312.8"/><polygon points="230.8,299.5 220.8,306.9 213.4,296.9 223.4,289.5"/><polygon points="238.6,278.2 242.8,290.9 235.5,296.2 228.0,286.0"/><polygon points="239.1,316.2 237.0,320.5 231.8,322.2 223.9,311.6 231.5,306.0"/><polygon points="244.9,295.6 246.8,301.2 241.8,311.5 235.3,302.7"/><polygon points="249.9,462.3 231.4,475.9 223.1,472.0 239.5,448.1"/><polygon points="248.8,434.4 269.2,438.7 269.8,447.7 256.7,457.3 244.5,440.8"/><polygon points="268.6,494.0 239.5,480.1 251.7,471.1"/><polygon points="270.7,456.8 272.5,486.3 257.8,466.3"/><polygon points="249.0,292.3 243.6,276.1 246.6,272.7 256.8,286.5"/><polygon points="250.6,268.7 255.8,262.8 267.3,278.4 261.1,283.0"/><polygon points="251.8,297.8 270.7,283.9 279.9,296.4"/><polygon points="259.8,258.4 269.1,248.0 270.7,248.3 276.8,256.6 264.9,265.4"/><polygon points="280.3,261.0 285.5,268.1 273.4,277.1 268.2,270.0"/><polygon points="278.7,249.7 294.3,252.7 294.6,261.4 289.9,264.9"/><polygon points="295.0,290.9 295.1,295.9 288.0,296.2 277.2,281.6 284.3,276.4"/><polygon points="295.4,266.8 295.9,283.2 287.9,272.4"/><polygon points="402.1,146.4 378.8,155.7 365.9,144.0 368.0,134.4 387.4,126.4"/><polygon points="414.4,115.4 415.5,141.1 410.2,143.2 395.4,123.2"/><polygon points="370.0,421.7 366.4,408.1 367.9,406.4 376.0,417.3"/><polygon points="371.0,403.4 375.0,398.8 384.0,411.0 379.2,414.6"/><polygon points="377.8,395.3 384.3,387.9 389.4,394.8 381.6,400.5"/><polygon points="391.8,397.9 395.6,403.0 387.6,408.9 383.8,403.8"/><polygon points="387.0,384.8 392.9,378.2 398.1,384.9 390.9,390.2"/><polygon points="400.5,388.1 405.9,395.1 398.7,400.5 393.4,393.3"/><polygon points="384.6,430.8 371.4,426.9 371.2,425.9 379.2,420.1 386.2,429.6"/><polygon points="382.6,417.6 388.1,413.5 395.1,423.1 389.6,427.1"/><polygon points="403.5,434.1 399.9,435.5 389.4,432.4 397.7,426.2"/><polygon points="399.0,420.9 391.7,411.0 397.9,406.5 405.1,416.3"/><polygon points="401.7,403.8 408.5,398.8 415.9,408.3 408.9,413.4"/><polygon points="414.5,424.7 411.0,430.9 407.4,432.3 401.7,424.5 409.9,418.5"/><polygon points="421.5,414.2 417.1,421.7 412.7,415.6 418.9,411.0"/><polygon points="392.2,488.5 395.4,472.4 401.9,481.3"/><polygon points="410.0,494.1 396.3,502.9 390.0,505.9 392.0,495.2 404.2,486.3"/><polygon points="399.0,469.6 396.8,466.7 399.8,451.6 408.1,462.9"/><polygon points="401.0,445.0 402.1,439.3 411.8,435.6 415.7,440.4 403.9,449.0"/><polygon points="418.7,444.4 424.1,450.9 412.1,459.7 407.1,453.0"/><polygon points="424.2,484.6 415.5,490.2 403.4,473.8 411.7,467.6"/><polygon points="422.3,471.3 416.4,463.3 427.4,455.2 433.7,462.9"/><polygon points="441.8,472.3 430.6,481.7 429.9,482.1 425.3,475.7 437.3,466.9"/><polygon points="300.1,275.3 299.6,256.4 308.8,268.9"/><polygon points="301.2,292.7 300.9,281.4 311.5,273.6 317.0,281.1"/><polygon points="304.8,296.9 320.7,285.2 325.4,291.6"/><polygon points="301.3,250.5 305.7,247.5 318.8,250.8 307.6,259.1"/><polygon points="325.1,253.5 336.0,256.3 336.3,257.8 317.9,271.4 311.9,263.2"/><polygon points="339.5,287.4 330.8,289.7 321.3,276.8 328.1,271.8"/><polygon points="338.4,263.3 341.4,281.2 331.8,268.2"/><polygon points="317.0,436.2 305.9,422.0 307.1,417.7 312.7,413.8 324.9,430.3"/><polygon points="317.7,409.8 323.3,405.9 335.8,422.9 330.3,426.9"/><polygon points="335.9,446.0 320.5,442.5 319.5,441.3 327.9,435.1"/><polygon points="348.2,447.9 343.1,446.7 332.7,432.6 339.3,427.8 351.4,444.3"/><polygon points="328.0,402.5 333.1,399.0 345.5,415.9 340.6,419.6"/><polygon points="340.5,400.2 357.8,407.5 350.0,413.2"/><polygon points="361.3,433.4 355.6,439.7 344.2,424.2 350.9,419.2"/><polygon points="362.3,410.2 367.0,427.9 365.4,429.6 355.0,415.5"/><polygon points="336.7,369.2 337.1,354.0 344.2,363.6"/><polygon points="337.4,389.7 337.9,374.7 346.2,368.5 353.3,378.1"/><polygon points="345.1,356.0 369.1,366.3 358.5,374.2"/><polygon points="354.9,401.4 339.4,394.9 346.3,389.8"/><polygon points="371.1,394.6 363.3,403.4 351.6,387.6 360.9,380.7"/><polygon points="388.5,374.9 375.8,389.2 366.5,376.6 376.1,369.6"/><polygon points="425.8,190.7 420.0,188.2 424.9,175.3 432.6,185.7"/><polygon points="427.5,169.9 429.5,164.6 445.6,175.5 436.5,182.2"/><polygon points="451.2,201.4 431.4,192.8 440.2,186.4"/><polygon points="464.6,188.9 463.7,198.0 458.1,200.5 445.5,183.4 450.7,179.5"/><polygon points="126.0,483.2 116.8,470.9 128.2,467.4 135.0,476.6"/><polygon points="133.3,465.4 146.0,461.6 149.6,466.5 139.5,473.9"/><polygon points="139.5,495.7 130.0,487.3 139.9,480.0 147.3,490.0"/><polygon points="144.2,476.7 152.4,470.7 159.9,480.9 151.7,486.9"/><polygon points="152.3,460.6 162.8,457.5 172.6,470.7 164.3,476.8"/><polygon points="168.6,455.1 177.7,452.4 186.2,461.3 177.8,467.6"/><polygon points="158.5,510.1 150.5,505.4 143.8,499.5 152.1,493.4 162.3,507.3"/><polygon points="156.7,490.1 163.3,485.2 173.5,499.0 166.8,503.9"/><polygon points="185.8,516.6 183.3,522.9 179.3,521.5 164.7,513.1 176.8,504.3"/><polygon points="187.3,486.8 177.4,494.1 168.4,481.9 178.3,474.6"/><polygon points="201.1,477.0 192.5,483.3 183.1,470.7 190.1,465.5"/><polygon points="197.6,487.1 188.7,509.7 181.0,499.2"/><polygon points="265.0,230.1 260.0,218.4 265.8,209.5 275.4,222.5"/><polygon points="268.6,204.2 275.0,194.3 283.5,199.7 271.7,208.4"/><polygon points="287.8,203.0 295.4,207.8 280.2,219.1 275.2,212.3"/><polygon points="273.9,242.6 270.4,241.9 267.8,235.9 284.0,223.9 289.3,231.2"/><polygon points="300.3,245.0 296.5,247.6 281.1,244.7 293.4,235.6"/><polygon points="306.9,215.1 306.1,219.8 294.8,228.1 288.9,220.0 300.7,211.2"/><polygon points="306.1,226.1 303.7,241.7 297.1,232.7"/><polygon points="422.7,267.1 420.2,262.2 433.0,239.0 434.4,238.7 447.2,249.1"/><polygon points="427.3,275.9 426.7,274.6 454.0,254.5 467.5,265.4"/><polygon points="201.6,529.3 189.6,525.1 195.9,508.8 207.7,524.8"/><polygon points="198.0,501.6 204.5,485.1 211.9,495.1 199.8,504.1"/><polygon points="214.9,500.4 224.0,512.8 213.1,520.8 204.0,508.5"/><polygon points="207.3,479.2 216.6,476.9 228.6,482.6 216.4,491.6"/><polygon points="238.9,502.0 229.4,509.0 220.2,496.5 229.7,489.5"/><polygon points="234.7,484.9 252.1,493.2 243.9,499.2 233.9,485.6"/><polygon points="221.2,535.6 211.3,534.1 206.4,532.4 214.5,526.5"/><polygon points="227.3,535.3 219.2,524.3 229.3,516.9 237.4,527.9"/><polygon points="247.5,539.7 246.9,539.7 232.8,537.5 241.3,531.3"/><polygon points="238.5,519.8 233.6,513.2 245.8,504.2 250.6,510.8"/><polygon points="246.0,530.1 241.5,524.0 253.8,515.0 258.3,521.1"/><polygon points="249.5,501.0 257.1,495.4 265.0,499.2 254.1,507.2"/><polygon points="269.7,502.1 275.4,504.8 277.2,506.8 262.5,517.6 257.6,511.0"/><polygon points="269.8,538.5 252.7,538.7 249.5,534.3 260.7,526.1"/><polygon points="280.4,537.8 277.3,537.9 266.2,522.8 280.5,512.3"/><polygon points="236.3,406.1 232.9,399.7 237.2,396.2 241.6,402.2"/><polygon points="240.1,394.3 247.5,388.3 251.8,394.2 244.2,399.8"/><polygon points="243.7,418.8 238.6,409.1 244.4,404.8 250.9,413.6"/><polygon points="247.9,402.2 254.1,397.6 260.6,406.5 254.4,411.0"/><polygon points="250.2,385.8 253.6,383.0 260.3,392.0 256.7,394.7"/><polygon points="256.6,380.8 261.2,377.1 267.9,386.2 263.1,389.7"/><polygon points="270.1,389.9 274.6,396.0 264.1,403.6 259.7,397.5"/><polygon points="264.8,374.7 272.9,368.1 278.4,377.3 270.8,382.9"/><polygon points="280.9,381.0 285.3,388.3 278.3,393.5 273.2,386.6"/><polygon points="255.6,429.3 248.4,427.8 245.8,422.8 252.8,417.6 259.3,426.5"/><polygon points="255.6,414.9 258.7,412.7 265.8,422.4 262.8,424.7"/><polygon points="261.6,410.7 265.8,407.7 272.7,417.1 268.6,420.2"/><polygon points="270.2,433.2 259.5,430.9 265.4,426.6"/><polygon points="268.6,425.1 274.9,420.5 281.5,429.4 274.2,432.6"/><polygon points="268.6,405.4 275.7,400.2 279.4,405.3 272.3,410.5"/><polygon points="281.5,408.1 285.3,413.3 278.2,418.5 274.4,413.3"/><polygon points="278.8,398.2 287.5,391.7 290.7,396.9 282.3,403.0"/><polygon points="292.7,400.1 295.9,405.4 288.2,411.1 284.5,406.1"/><polygon points="294.5,423.7 285.5,427.6 280.9,421.4 288.6,415.7"/><polygon points="297.7,408.8 302.0,415.9 300.5,421.3 298.5,422.1 291.9,413.1"/><polygon points="445.2,168.4 430.6,158.5 429.8,154.1 437.8,152.5 448.0,166.4"/><polygon points="444.0,151.5 458.5,148.7 463.2,155.0 452.4,162.9"/><polygon points="468.6,181.8 467.4,183.5 449.9,171.7 457.2,166.3"/><polygon points="475.5,171.2 471.6,177.2 461.3,163.1 466.7,159.2"/><polygon points="481.7,143.6 468.4,153.4 463.7,147.1"/><polygon points="489.7,144.2 491.4,145.6 478.4,165.7 472.1,157.2"/><polygon points="455.9,420.6 449.3,408.5 458.9,397.4 468.9,411.0"/><polygon points="482.6,430.5 469.7,444.4 460.1,427.1 473.1,417.5"/><polygon points="498.1,410.1 488.2,424.0 470.3,399.7"/><polygon points="356.1,351.8 353.4,353.7 343.0,349.2 348.2,341.1"/><polygon points="368.1,341.8 359.7,348.0 351.7,337.2 357.8,327.7"/><polygon points="374.7,309.6 377.5,314.3 362.9,325.0 360.8,322.3 370.1,307.7"/><polygon points="380.1,319.5 385.5,328.8 373.0,338.1 366.6,329.4"/><polygon points="371.6,360.7 359.5,355.5 372.6,345.8 379.3,355.0"/><polygon points="391.6,370.2 376.1,363.5 383.0,358.5"/><polygon points="388.7,334.4 396.0,346.9 386.2,354.1 377.7,342.5"/><polygon points="399.5,351.3 402.5,356.5 394.7,366.9 388.9,359.0"/><polygon points="374.1,301.9 384.6,276.1 400.8,298.1 377.0,303.0"/><polygon points="388.3,267.0 389.9,263.1 412.7,266.0 420.7,281.3 417.2,294.7 409.8,296.2"/><polygon points="387.8,252.6 381.8,242.3 393.7,231.5 401.7,242.4"/><polygon points="393.1,256.4 405.9,247.0 414.3,258.4 413.9,259.1"/><polygon points="398.6,226.9 405.1,221.0 419.2,231.3 407.9,239.6"/><polygon points="424.7,234.6 426.8,236.1 417.3,253.2 411.0,244.7"/><polygon points="110.8,271.0 111.3,269.8 128.5,240.1 150.2,269.5 131.6,283.2"/><polygon points="133.7,233.0 138.3,226.9 176.9,249.9 156.9,264.5"/><polygon points="170.8,294.7 166.9,303.9 139.5,287.8 156.5,275.3"/><polygon points="184.7,254.5 187.4,256.1 174.7,285.8 163.3,270.3"/><polygon points="332.9,179.0 328.5,162.1 330.9,158.1 335.7,156.6 345.4,169.8"/><polygon points="336.2,193.5 334.2,186.0 349.5,174.7 353.8,180.5"/><polygon points="363.5,193.9 351.6,202.2 341.1,197.6 357.4,185.6"/><polygon points="360.6,148.2 361.4,148.9 345.8,160.4 341.1,154.0"/><polygon points="365.0,153.4 372.2,159.8 355.5,172.1 349.9,164.5"/><polygon points="376.1,185.5 368.7,190.6 358.9,177.3 366.1,172.0"/><polygon points="376.2,163.4 377.9,179.6 369.6,168.3"/><polygon points="199.2,163.4 206.0,157.9 208.1,156.6 217.1,168.8 214.9,170.4 206.0,170.4"/><polygon points="213.4,153.8 224.7,146.7 232.3,157.1 221.6,165.0"/><polygon points="236.2,161.3 243.1,170.7 223.5,170.6"/><polygon points="229.2,143.2 238.1,137.6 241.1,136.2 245.7,142.4 234.7,150.6"/><polygon points="248.8,146.4 253.2,152.4 242.0,160.7 237.5,154.7"/><polygon points="247.3,134.3 262.8,127.0 265.7,141.9 257.4,148.1"/><polygon points="264.2,170.4 249.5,170.4 245.4,164.7 254.9,157.7"/><polygon points="267.7,148.2 271.8,169.8 271.4,170.5 271.1,170.5 259.2,154.4"/><polygon points="426.8,443.4 417.6,432.3 426.2,417.7 442.8,412.9 450.1,426.2"/><polygon points="463.7,450.9 460.2,454.7 445.9,466.7 432.1,449.9 454.2,433.7"/><polygon points="440.1,233.5 450.1,218.6 459.9,231.9 448.5,240.3"/><polygon points="453.5,212.6 456.5,208.1 466.4,203.6 472.2,208.5 458.1,218.9"/><polygon points="476.6,212.2 481.7,216.6 465.3,228.7 461.4,223.4"/><polygon points="461.6,251.3 453.4,244.7 467.7,234.2 473.8,242.4"/><polygon points="480.3,250.3 475.1,262.8 465.7,255.3 477.6,246.6"/><polygon points="486.1,220.9 490.3,224.5 482.4,243.4 473.0,230.6"/><polygon points="286.2,533.7 286.2,516.7 294.3,527.7"/><polygon points="288.2,510.8 295.1,505.1 305.2,518.8 298.0,524.1"/><polygon points="315.5,533.1 290.3,537.2 308.6,523.8"/><polygon points="309.3,513.6 300.3,501.5 302.2,500.0 319.9,497.5 323.9,502.9"/><polygon points="316.6,524.6 312.5,519.0 328.1,507.6 332.2,513.2"/><polygon points="341.7,526.1 322.4,532.2 322.3,532.2 320.0,529.2 335.5,517.8"/><polygon points="338.2,511.3 327.1,496.2 339.0,494.5 346.8,505.0"/><polygon points="345.0,493.0 360.9,490.8 363.9,493.1 351.7,502.1"/><polygon points="362.9,518.6 360.0,520.0 347.6,523.9 342.1,516.4 354.5,507.2"/><polygon points="382.8,509.1 368.9,515.6 359.9,503.4 368.1,497.5"/><polygon points="203.8,244.1 212.3,229.1 216.5,234.8"/><polygon points="212.2,257.5 201.8,252.3 218.7,239.9 224.8,248.2"/><polygon points="241.2,270.1 239.9,271.6 218.5,260.8 228.8,253.2"/><polygon points="218.4,229.8 214.9,225.1 219.1,217.6 229.6,218.5 231.1,220.4"/><polygon points="230.1,244.4 222.4,233.9 233.8,225.4 241.6,236.0"/><polygon points="237.0,219.5 254.6,220.9 256.6,225.3 246.7,232.6"/><polygon points="253.3,256.1 245.5,264.9 234.2,249.6 243.5,242.8"/><polygon points="264.5,244.2 258.0,251.5 248.5,238.7 258.8,231.1"/><polygon points="422.5,111.3 444.8,118.0 445.2,118.2 423.5,134.3"/><polygon points="453.3,122.5 473.0,132.6 479.2,137.5 428.2,147.3 424.9,143.4"/><polygon points="428.6,304.2 423.4,297.7 426.5,286.0 435.9,298.9"/><polygon points="430.8,282.4 443.1,279.2 449.7,288.2 440.2,295.2"/><polygon points="438.1,316.1 431.9,308.3 440.7,301.8 448.0,311.7"/><polygon points="445.2,298.8 453.3,292.8 462.3,305.0 452.9,309.3"/><polygon points="449.6,277.7 474.7,271.1 475.4,272.3 456.1,286.5"/><polygon points="475.5,299.3 467.6,302.8 459.2,291.5 466.1,286.4"/><polygon points="478.8,277.2 485.3,287.7 482.8,295.9 480.6,296.8 470.6,283.2"/><polygon points="398.3,378.8 395.0,374.5 395.0,373.7 400.8,366.1 405.9,373.1"/><polygon points="403.6,362.8 406.8,358.6 410.7,357.4 416.4,365.1 409.2,370.4"/><polygon points="408.9,391.9 401.1,381.9 406.6,377.9 414.1,388.1"/><polygon points="409.6,375.2 419.1,368.1 421.8,371.8 412.3,378.9"/><polygon points="424.0,374.8 427.0,379.0 417.6,385.9 414.5,381.8"/><polygon points="415.4,356.1 433.6,350.7 434.7,351.5 420.0,362.4"/><polygon points="425.1,370.0 422.2,366.0 432.1,358.7 435.0,362.7"/><polygon points="440.0,369.4 430.0,376.8 427.3,373.1 437.3,365.7"/><polygon points="438.8,354.1 449.7,361.9 443.1,366.8 435.5,356.5"/><polygon points="417.5,403.6 411.1,395.3 415.7,391.9 421.9,400.3"/><polygon points="418.7,389.7 423.1,386.4 429.4,394.9 424.9,398.2"/><polygon points="424.1,412.1 419.7,406.4 425.0,402.5 430.7,410.2"/><polygon points="427.9,400.4 431.5,397.7 439.0,407.8 434.3,409.1"/><polygon points="426.9,384.4 434.4,378.9 440.9,387.7 433.4,393.2"/><polygon points="443.7,391.5 449.4,399.2 443.6,405.9 442.8,406.1 436.2,397.1"/><polygon points="438.0,376.0 444.5,371.2 450.9,379.9 444.4,384.7"/><polygon points="447.6,368.5 453.4,364.2 454.8,365.1 456.0,376.6 454.4,377.8"/><polygon points="456.3,381.4 457.2,390.6 452.6,395.9 446.9,388.3"/><polygon points="309.1,241.6 313.1,215.8 324.0,230.6"/><polygon points="338.6,249.9 338.3,250.2 315.8,244.5 328.0,235.5"/><polygon points="329.2,226.4 318.7,212.1 328.7,205.7 338.7,219.4"/><polygon points="333.3,201.9 334.5,201.1 349.8,207.7 350.8,211.4 344.0,216.4"/><polygon points="350.0,240.3 343.2,246.1 332.7,231.8 339.8,226.5"/><polygon points="357.2,234.5 354.5,236.9 344.2,222.9 352.3,216.9"/><polygon points="312.9,111.0 344.2,105.5 351.2,105.2 352.2,108.5 322.0,130.8"/><polygon points="355.1,116.9 360.0,131.6 357.7,142.2 330.9,150.1 325.6,138.6"/><polygon points="359.3,221.2 355.3,207.0 362.0,202.4 370.0,213.3"/><polygon points="382.9,231.9 376.7,237.6 363.1,232.8 361.6,227.4 373.3,218.8"/><polygon points="376.0,211.4 366.9,199.2 376.1,192.8 385.0,204.8"/><polygon points="380.0,189.1 380.8,188.5 396.8,197.1 389.7,202.3"/><polygon points="394.8,222.2 388.0,228.4 379.2,216.3 386.5,210.9"/><polygon points="400.6,200.3 402.2,215.8 398.9,218.8 390.7,207.6"/><polygon points="95.8,302.6 96.1,301.5 102.9,285.1 108.8,293.1"/><polygon points="92.5,315.7 94.0,310.0 97.8,307.2 106.4,318.9 101.8,322.3"/><polygon points="102.4,304.4 111.5,297.7 119.5,308.6 110.4,315.3"/><polygon points="104.9,280.0 106.5,276.0 119.2,283.4 111.5,289.0"/><polygon points="123.4,287.1 137.2,295.2 124.3,304.6 115.6,292.8"/><polygon points="118.0,333.4 106.4,325.2 115.7,318.4 123.7,329.2"/><polygon points="120.3,315.2 129.8,308.2 137.6,318.7 128.0,325.7"/><polygon points="139.7,343.6 136.8,346.7 122.5,336.6 130.4,330.9"/><polygon points="149.0,333.6 143.3,339.7 134.5,327.8 141.1,322.9"/><polygon points="143.3,298.6 155.7,305.9 142.7,315.4 134.9,304.8"/><polygon points="161.6,309.3 166.1,312.0 166.5,313.8 152.6,328.9 146.4,320.5"/><polygon points="241.1,322.4 246.7,310.7 251.2,316.7 241.9,323.5"/><polygon points="248.8,307.1 250.6,303.4 256.9,303.1 261.2,308.9 254.1,314.2"/><polygon points="246.7,329.5 244.1,326.3 253.9,319.1 256.3,322.4"/><polygon points="261.5,329.6 252.3,336.3 249.0,332.2 258.3,325.4"/><polygon points="263.7,312.6 270.8,322.2 264.6,326.8 257.4,317.2"/><polygon points="261.5,302.6 276.3,301.9 266.4,309.2"/><polygon points="279.3,305.0 284.5,312.0 274.5,319.3 269.4,312.3"/><polygon points="282.6,301.8 297.7,301.0 298.6,301.7 298.6,302.0 288.3,309.6"/><polygon points="263.3,350.0 254.7,339.3 258.1,336.7 266.3,347.8"/><polygon points="261.5,334.5 266.1,331.1 274.0,341.8 269.3,345.2"/><polygon points="269.4,328.6 279.3,321.3 282.7,325.9 272.8,333.2"/><polygon points="285.2,328.9 287.6,332.1 277.3,339.7 274.9,336.4"/><polygon points="268.8,356.7 265.7,352.9 275.8,345.5 278.7,349.4"/><polygon points="284.0,356.6 273.7,363.0 271.1,359.7 280.9,352.4"/><polygon points="281.8,347.1 278.9,343.2 289.7,335.3 292.5,339.1"/><polygon points="298.5,347.3 287.2,354.3 284.2,350.3 294.9,342.5"/><polygon points="286.4,324.4 282.4,318.9 290.0,313.3 294.0,318.8"/><polygon points="300.5,327.6 293.0,333.2 288.7,327.4 296.2,321.9"/><polygon points="299.5,306.5 303.1,324.3 293.3,311.1"/><polygon points="304.1,330.1 306.5,342.2 302.0,344.9 295.7,336.3"/><polygon points="87.2,402.7 86.5,400.0 85.4,382.3 95.7,396.4"/><polygon points="89.4,378.6 98.0,375.4 107.0,387.7 99.9,392.9"/><polygon points="105.4,423.6 95.3,431.1 95.0,430.5 89.4,408.4 92.5,406.1"/><polygon points="103.2,410.0 97.4,402.1 110.5,392.5 116.3,400.3"/><polygon points="124.1,410.4 110.6,420.5 106.3,414.7 119.9,404.7"/><polygon points="115.2,387.9 104.6,373.5 118.2,368.4 126.5,379.6"/><polygon points="123.7,365.4 134.6,361.2 139.2,371.2 132.0,376.6"/><polygon points="137.2,400.0 128.4,406.5 118.8,393.5 127.6,387.0"/><polygon points="148.4,391.8 142.2,396.5 132.4,383.2 141.4,376.6"/><polygon points="359.9,105.0 379.5,104.4 409.8,108.2 366.9,125.7"/><polygon points="383.5,180.3 381.6,162.8 391.2,159.0 398.6,169.1"/><polygon points="403.5,194.7 402.9,195.0 385.7,185.9 393.1,180.5"/><polygon points="413.6,188.3 407.7,191.8 397.3,177.7 402.8,173.6"/><polygon points="396.8,156.1 406.3,152.3 413.9,162.6 405.9,168.5"/><polygon points="411.0,150.0 419.1,146.7 424.4,152.9 424.8,155.2 418.3,160.0"/><polygon points="424.5,161.8 416.4,182.8 409.2,173.0"/><polygon points="85.8,356.9 88.1,334.7 88.1,334.6 97.9,348.0"/><polygon points="84.0,367.7 84.4,364.3 88.0,361.6 95.0,371.1 84.5,375.0"/><polygon points="92.5,359.2 101.4,352.6 110.2,364.6 99.5,368.6"/><polygon points="89.0,327.6 90.9,320.1 100.5,326.8 92.7,332.5"/><polygon points="104.0,330.3 115.0,338.0 103.8,346.2 96.3,336.0"/><polygon points="125.1,358.8 115.8,362.4 107.3,350.9 115.1,345.2"/><polygon points="120.0,340.9 134.6,351.2 133.9,356.1 130.6,357.4 119.0,341.6"/><polygon points="211.8,187.1 208.3,175.6 223.1,175.7 224.6,177.6"/><polygon points="218.1,208.1 213.1,192.1 215.5,190.3 224.9,203.1"/><polygon points="219.9,187.7 227.5,182.1 236.3,194.1 228.8,199.6"/><polygon points="235.9,214.4 219.3,213.1 219.3,212.8 229.3,205.4"/><polygon points="251.7,214.9 241.9,214.2 233.7,203.0 239.7,198.6"/><polygon points="241.0,189.8 231.4,176.7 258.8,176.7"/><polygon points="262.9,202.5 256.9,211.7 244.9,195.4 253.2,189.3"/><polygon points="271.3,190.3 266.8,197.2 258.0,185.3 270.3,176.3"/><polygon points="270.2,124.4 273.0,123.1 304.5,113.0 308.3,121.1 274.3,146.1"/><polygon points="296.7,162.8 277.5,166.1 275.4,155.0 285.5,147.6"/><polygon points="311.9,128.9 323.9,154.9 322.2,157.8 304.9,160.8 292.1,143.4"/><polygon points="284.0,375.9 278.2,366.2 292.1,357.5 298.1,365.5"/><polygon points="290.6,387.5 286.9,381.3 301.9,370.2 306.2,376.0"/><polygon points="297.3,398.5 293.7,392.5 309.6,380.7 313.7,386.4"/><polygon points="322.5,398.9 305.1,410.9 300.8,403.6 317.1,391.6"/><polygon points="303.2,362.5 296.9,354.0 307.8,347.1 313.6,354.9"/><polygon points="323.0,367.9 312.7,375.4 306.4,366.9 316.7,359.3"/><polygon points="315.6,348.4 332.4,354.1 332.2,361.0 327.5,364.6"/><polygon points="331.3,369.5 330.6,393.1 328.0,394.9 317.0,380.0"/><polygon points="106.5,455.0 98.2,437.3 105.0,432.2 116.4,447.7"/><polygon points="109.5,428.0 124.8,416.6 128.5,421.6 113.1,433.0"/><polygon points="131.7,426.4 136.7,433.2 121.8,444.2 116.8,437.4"/><polygon points="129.5,460.9 113.1,465.9 109.3,460.8 122.3,451.2"/><polygon points="132.4,455.0 127.0,447.7 140.3,437.9 145.7,445.2"/><polygon points="153.4,454.5 135.2,460.0 134.8,459.5 149.3,448.9"/><polygon points="135.3,420.9 129.8,413.4 144.8,402.2 150.4,409.7"/><polygon points="142.2,430.9 138.5,425.9 154.3,414.3 158.0,419.3"/><polygon points="150.2,398.4 152.6,396.7 174.9,406.0 162.5,415.1"/><polygon points="153.6,446.7 145.2,435.3 152.2,430.2 160.5,441.6"/><polygon points="156.1,427.1 161.8,422.9 170.4,434.6 164.7,438.8"/><polygon points="175.9,447.3 158.1,452.7 156.8,450.9 173.2,438.8 176.0,442.6"/><polygon points="166.2,420.1 176.9,412.2 176.2,433.7"/><polygon points="438.4,346.1 441.2,322.2 449.9,318.3 459.2,330.8"/><polygon points="464.1,337.5 473.4,350.1 456.8,359.2 445.5,351.2"/><polygon points="457.5,314.7 482.5,303.5 484.7,311.6 465.5,325.7"/><polygon points="486.9,320.1 492.2,339.6 480.7,346.0 470.5,332.2"/><polygon points="360.5,471.5 354.0,452.3 371.0,433.3 395.1,440.5 393.9,446.9"/><polygon points="365.2,485.5 363.3,479.9 391.5,459.1 383.5,500.0"/><polygon points="168.4,354.1 146.4,370.3 140.4,357.2 141.2,352.0 155.5,336.6"/><polygon points="170.8,320.1 195.5,334.1 175.1,349.1 161.3,330.3"/><polygon points="155.0,389.1 150.0,378.1 174.8,359.8 181.8,369.4"/><polygon points="197.1,390.2 179.6,399.7 163.8,393.1 186.8,376.2"/><polygon points="200.1,341.2 199.9,379.8 181.5,354.9"/><polygon points="181.8,423.4 182.3,405.9 184.1,404.9 192.1,415.8"/><polygon points="192.9,444.8 184.2,451.2 181.3,448.2 181.9,429.9 181.9,429.9"/><polygon points="205.5,435.1 197.5,441.0 186.9,426.7 194.9,420.8"/><polygon points="196.6,411.9 189.9,402.8 204.4,395.0 215.2,398.2"/><polygon points="221.4,423.0 210.7,430.8 200.8,417.4 211.5,409.5"/><polygon points="228.7,401.9 234.8,413.5 227.0,419.3 216.7,405.3 223.4,400.3"/><polygon points="197.4,465.2 187.7,455.2 195.1,449.8 203.3,460.9"/><polygon points="199.9,446.9 210.7,439.0 218.2,449.2 207.5,457.1"/><polygon points="224.1,457.5 214.9,470.9 205.9,473.2 201.9,469.0 221.8,454.3"/><polygon points="233.5,443.8 227.9,451.9 215.8,435.4 223.2,429.9"/><polygon points="237.9,418.8 243.5,429.6 237.3,438.6 228.0,426.1"/><polygon points="460.7,380.0 459.1,365.4 463.0,363.3 470.2,373.0"/><polygon points="469.6,392.1 462.0,389.3 461.6,385.7 473.0,377.4 478.8,385.4"/><polygon points="467.6,361.0 479.2,354.6 484.5,361.7 473.9,369.5"/><polygon points="487.6,366.1 493.7,374.4 483.3,382.1 477.2,373.8"/><polygon points="492.1,400.9 474.9,394.6 483.0,388.6"/><polygon points="494.0,395.0 487.3,385.9 497.0,378.8 503.7,387.9"/><polygon points="510.3,396.1 503.7,405.3 500.0,403.9 496.6,399.4 507.0,391.7"/><polygon points="497.9,369.6 485.1,352.3 493.9,347.4 505.9,363.7"/><polygon points="500.4,346.1 519.2,355.1 511.3,360.9"/><polygon points="519.0,377.5 512.5,389.8 501.8,375.2 511.8,367.8"/><polygon points="528.9,359.6 527.7,362.8 522.5,372.7 515.8,363.7 524.3,357.4"/><polygon points="207.8,376.9 207.9,348.4 221.5,366.8"/><polygon points="237.1,388.8 230.0,394.6 208.2,388.1 208.3,386.3 225.7,373.4"/><polygon points="209.4,337.1 237.5,327.6 244.6,336.4 221.5,353.5"/><polygon points="250.9,377.7 243.6,383.7 226.3,360.2 233.9,354.6"/><polygon points="249.9,343.0 267.1,364.4 257.3,372.4 240.6,349.8"/><polygon points="278.3,468.6 276.9,444.0 289.1,460.6"/><polygon points="280.8,501.1 279.3,476.3 279.6,476.1 294.9,496.8 284.4,505.3"/><polygon points="285.2,471.7 292.8,466.1 303.0,480.0 299.2,490.8"/><polygon points="280.3,436.6 300.9,427.6 307.2,435.7 289.3,448.9"/><polygon points="312.1,442.0 314.7,445.2 305.6,471.0 294.1,455.3"/><polygon points="276.7,186.0 275.8,173.8 276.4,172.7 287.7,170.8 291.1,175.4"/><polygon points="286.8,195.6 279.4,190.9 294.3,179.9 299.1,186.5"/><polygon points="314.1,207.3 310.1,209.9 292.5,198.8 302.4,191.5"/><polygon points="314.9,177.8 305.4,184.8 294.6,170.1 307.6,167.8"/><polygon points="323.3,164.1 325.2,171.5 319.9,175.5 312.8,165.9"/><polygon points="326.2,199.9 319.4,204.2 308.8,189.9 315.3,185.1"/><polygon points="326.2,176.5 331.5,197.0 331.0,197.3 319.4,181.5"/><polygon points="484.1,274.4 479.5,266.9 485.4,252.8 495.3,266.2"/><polygon points="487.4,246.1 494.1,230.0 500.3,238.4 488.2,247.3"/><polygon points="502.9,243.4 511.1,254.5 500.4,262.4 492.2,251.2"/><polygon points="506.0,282.3 489.8,284.4 487.0,279.7 498.1,271.5"/><polygon points="508.1,275.6 502.6,268.2 515.0,259.1 520.4,266.5"/><polygon points="530.3,279.4 512.2,281.7 511.0,280.0 523.8,270.6"/><polygon points="505.0,235.7 497.7,225.9 517.8,221.5 520.1,224.6"/><polygon points="529.1,237.1 514.2,248.1 508.7,240.6 523.6,229.6"/><polygon points="538.4,217.1 541.9,227.8 534.2,233.5 524.3,220.1"/><polygon points="536.1,254.8 525.1,262.9 517.8,253.1 528.8,245.0"/><polygon points="543.6,233.6 545.6,248.3 540.9,251.8 533.2,241.3"/><polygon points="546.7,275.6 546.6,276.9 536.2,278.2 528.6,267.8 536.6,261.9"/><polygon points="546.9,253.1 548.1,262.0 547.9,268.8 540.0,258.2"/></g><g fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M118.4,249.1 L311.4,107.0" stroke="#6c604a" stroke-width="3.4"/><path d="M83.9,347.1 L413.3,104.4" stroke="#6c604a" stroke-width="3.4"/><path d="M88.1,416.6 L476.8,130.3" stroke="#6c604a" stroke-width="3.4"/><path d="M113.0,470.8 L519.6,171.3" stroke="#6c604a" stroke-width="4.8"/><path d="M155.8,511.8 L544.4,225.6" stroke="#6c604a" stroke-width="3.4"/><path d="M219.6,537.4 L549.0,294.8" stroke="#6c604a" stroke-width="3.4"/><path d="M320.9,535.4 L514.8,392.5" stroke="#6c604a" stroke-width="3.4"/><path d="M84.0,400.0 L174.1,522.3" stroke="#6c604a" stroke-width="3.4"/><path d="M91.1,311.2 L260.8,541.5" stroke="#6c604a" stroke-width="3.4"/><path d="M118.2,249.5 L327.5,533.6" stroke="#6c604a" stroke-width="3.4"/><path d="M154.6,200.4 L384.2,512.1" stroke="#6c604a" stroke-width="3.4"/><path d="M198.0,160.8 L434.4,481.8" stroke="#6c604a" stroke-width="4.8"/><path d="M248.0,130.1 L477.7,442.0" stroke="#6c604a" stroke-width="3.4"/><path d="M304.7,108.6 L514.4,393.3" stroke="#6c604a" stroke-width="3.4"/><path d="M371.3,100.4 L541.5,331.5" stroke="#6c604a" stroke-width="3.4"/><path d="M458.7,120.6 L547.3,240.9" stroke="#6c604a" stroke-width="3.4"/><path d="M118.4,249.1 L311.4,107.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M83.9,347.1 L413.3,104.4" stroke="#e4d9bc" stroke-width="1.8"/><path d="M88.1,416.6 L476.8,130.3" stroke="#e4d9bc" stroke-width="1.8"/><path d="M113.0,470.8 L519.6,171.3" stroke="#e4d9bc" stroke-width="3.2"/><path d="M155.8,511.8 L544.4,225.6" stroke="#e4d9bc" stroke-width="1.8"/><path d="M219.6,537.4 L549.0,294.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M320.9,535.4 L514.8,392.5" stroke="#e4d9bc" stroke-width="1.8"/><path d="M84.0,400.0 L174.1,522.3" stroke="#e4d9bc" stroke-width="1.8"/><path d="M91.1,311.2 L260.8,541.5" stroke="#e4d9bc" stroke-width="1.8"/><path d="M118.2,249.5 L327.5,533.6" stroke="#e4d9bc" stroke-width="1.8"/><path d="M154.6,200.4 L384.2,512.1" stroke="#e4d9bc" stroke-width="1.8"/><path d="M198.0,160.8 L434.4,481.8" stroke="#e4d9bc" stroke-width="3.2"/><path d="M248.0,130.1 L477.7,442.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M304.7,108.6 L514.4,393.3" stroke="#e4d9bc" stroke-width="1.8"/><path d="M371.3,100.4 L541.5,331.5" stroke="#e4d9bc" stroke-width="1.8"/><path d="M458.7,120.6 L547.3,240.9" stroke="#e4d9bc" stroke-width="1.8"/></g><polygon points="81.8,367.7 85.2,334.2 93.9,300.7 107.5,267.9 125.8,236.4 148.3,206.8 174.7,179.7 204.4,155.7 236.9,135.3 271.5,119.2 307.4,107.7 343.8,101.3 379.7,100.2 414.2,104.5 446.3,114.3 475.2,129.1 500.2,148.6 520.5,172.3 535.8,199.6 545.7,229.7 550.1,261.9 548.9,295.5 542.2,329.7 529.9,363.8 512.4,397.0 490.0,428.6 463.1,457.8 432.1,483.7 397.9,505.7 361.2,523.0 323.0,535.0 284.5,541.3 246.7,541.7 210.8,536.0 177.9,524.6 148.9,507.7 124.5,486.1 105.4,460.5 91.8,431.7 84.0,400.4" fill="none" stroke="#3c3628" stroke-width="1.5"/><g font-family="Georgia, serif" font-size="8" text-anchor="middle"><text x="183.4" y="214.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="331.3" y="475.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="426.3" y="214.2" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="362.4" y="270.1" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Garrison</text><text x="501.5" y="193.4" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="411.0" y="328.5" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="518.8" y="317.1" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="209.3" y="299.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="253.2" y="467.4" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Garrison</text><text x="272.6" y="278.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="392.9" y="139.4" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="393.0" y="413.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Slums</text><text x="411.9" y="474.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="318.4" y="275.5" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Temple</text><text x="337.3" y="426.5" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="357.9" y="382.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="442.5" y="188.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Temple</text><text x="164.5" y="487.5" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="284.0" y="226.2" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="440.6" y="262.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="235.7" y="515.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Temple</text><text x="267.9" y="407.9" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Slums</text><text x="462.3" y="163.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="472.3" y="420.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Garrison</text><text x="332.1" y="321.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Market</text><text x="374.2" y="344.9" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="398.1" y="286.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="404.1" y="244.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="150.3" y="267.9" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="352.9" y="177.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="241.4" y="157.5" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="441.0" y="441.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="466.5" y="234.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="329.2" y="516.2" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="233.7" y="245.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="444.5" y="134.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="453.8" y="295.1" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Temple</text><text x="428.8" y="382.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Slums</text><text x="332.6" y="230.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="338.2" y="128.9" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="378.6" y="216.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="126.9" y="315.1" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="276.1" y="330.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Slums</text><text x="113.7" y="396.4" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="381.4" y="115.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="403.4" y="173.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="103.7" y="352.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="240.6" y="196.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="295.2" y="143.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="309.1" y="379.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="141.5" y="435.5" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="465.1" y="335.2" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Garrison</text><text x="375.8" y="466.1" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="174.0" y="364.1" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Garrison</text><text x="209.2" y="434.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="493.0" y="376.9" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="231.8" y="364.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Garrison</text><text x="293.1" y="465.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Garrison</text><text x="304.8" y="188.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="515.9" y="256.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text></g><text x="315.0" y="20" text-anchor="middle" font-family="Georgia, serif" font-size="16" font-weight="bold" stroke="#f7f3ea" stroke-width="3" paint-order="stroke" fill="#23211c">Pelmoorhill</text></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="630" height="630" viewBox="0 0 630 630"><rect width="630" height="630" fill="#c9d2bb"/><polygon points="91.0,357.2 94.9,318.9 104.2,280.9 118.4,244.2 137.1,209.5 159.8,177.5 186.1,149.0 215.3,124.5 246.7,104.5 279.9,89.6 313.9,80.1 348.0,76.3 381.3,78.5 413.0,86.6 442.3,100.4 468.2,119.7 490.3,143.9 507.8,172.2 520.5,204.0 528.1,238.3 530.4,274.4 527.7,311.2 519.9,348.1 507.3,384.3 490.3,419.0 469.0,451.4 443.9,481.0 415.5,507.0 384.3,528.7 350.9,545.5 316.2,556.7 280.9,562.0 246.1,560.9 212.7,553.4 181.8,539.5 154.3,519.7 131.1,494.5 112.8,464.7 99.9,431.2 92.6,395.0" fill="#e6dcc0"/><g stroke="#4a4230" stroke-width="1" stroke-linejoin="round"><polygon points="443.8,256.3 438.2,238.4 459.1,194.5 493.3,198.5 490.5,256.7 463.8,267.8" fill="#d8cdb0"/><polygon points="423.2,173.9 389.2,212.6 384.7,209.3 369.3,162.0 410.8,152.7" fill="#cdbf9e"/><polygon points="92.4,343.3 94.9,318.9 104.2,280.9 110.6,264.2 157.6,294.7 149.1,320.2 97.5,344.1" fill="#c2b48f"/><polygon points="462.0,459.8 443.9,481.0 415.5,507.0 395.0,521.3 388.4,451.1 436.9,447.7" fill="#c2b48f"/><polygon points="163.6,457.8 154.9,429.0 189.0,425.4 199.0,457.9 193.8,465.1" fill="#dfd6c0"/><polygon points="227.5,556.7 212.7,553.4 181.8,539.5 164.3,526.9 172.7,505.2 196.7,487.6 239.6,509.1" fill="#dfd6c0"/><polygon points="120.8,477.7 112.8,464.7 109.9,457.2 149.2,424.7 154.9,429.0 163.6,457.8 149.6,474.3" fill="#cdbf9e"/><polygon points="459.1,194.5 438.2,238.4 389.7,214.2 389.2,212.6 423.2,173.9 448.6,180.3" fill="#d8cdb0"/><polygon points="473.9,125.9 490.3,143.9 507.8,172.2 514.0,187.8 493.3,198.5 459.1,194.5 448.6,180.3" fill="#cdbf9e"/><polygon points="140.4,204.8 159.8,177.5 186.1,149.0 191.9,144.1 222.0,176.0 223.1,202.0 196.1,232.1" fill="#d8cdb0"/><polygon points="281.0,148.6 296.0,190.6 267.3,218.2 223.1,202.0 222.0,176.0" fill="#d8cdb0"/><polygon points="383.8,447.6 349.9,403.4 349.9,393.3 366.7,378.6 401.7,381.7" fill="#cdbf9e"/><polygon points="200.4,410.6 174.3,382.4 172.6,366.8 210.5,350.9 227.5,397.9 214.6,409.1" fill="#c2b48f"/><polygon points="189.0,425.4 154.9,429.0 149.2,424.7 148.3,421.5 174.3,382.4 200.4,410.6" fill="#dfd6c0"/><polygon points="164.3,526.9 154.3,519.7 131.1,494.5 120.8,477.7 149.6,474.3 172.7,505.2" fill="#cdbf9e"/><polygon points="462.5,381.7 423.2,384.4 411.2,377.6 415.1,330.6 432.5,327.0 473.8,349.9" fill="#dfd6c0"/><polygon points="298.6,338.1 257.8,298.6 262.8,272.7 273.2,263.7 309.1,265.7 327.0,326.2 309.7,337.9" fill="#d9c08a"/><polygon points="214.6,409.1 227.5,397.9 255.7,399.8 259.0,446.3 245.7,454.6 227.7,448.4" fill="#d8cdb0"/><polygon points="345.4,130.7 354.1,153.9 324.2,200.9 296.0,190.6 281.0,148.6 282.0,144.7" fill="#cdbf9e"/><polygon points="384.7,209.3 389.2,212.6 389.7,214.2 368.6,262.3 327.8,252.5 326.0,203.4" fill="#b9a98c"/><polygon points="411.6,327.3 360.6,319.3 369.6,263.9 411.1,276.3" fill="#b9a98c"/><polygon points="413.6,131.8 410.8,152.7 369.3,162.0 354.1,153.9 345.4,130.7 355.0,106.7" fill="#c2b48f"/><polygon points="346.5,461.9 312.2,446.7 349.9,403.4 383.8,447.6 383.9,448.3" fill="#cdbf9e"/><polygon points="268.3,364.7 220.4,336.0 220.7,328.8 257.8,298.6 298.6,338.1" fill="#cdbf9e"/><polygon points="240.8,508.1 245.7,454.6 259.0,446.3 300.0,454.2 292.8,503.5" fill="#cdbf9e"/><polygon points="149.1,320.2 157.6,294.7 178.9,288.8 220.7,328.8 220.4,336.0 210.5,350.9 172.6,366.8 166.1,363.4" fill="#d8cdb0"/><polygon points="514.0,187.8 520.5,204.0 528.1,238.3 529.8,265.3 490.5,256.7 493.3,198.5" fill="#cdbf9e"/><polygon points="389.7,214.2 438.2,238.4 443.8,256.3 411.1,276.3 369.6,263.9 368.6,262.3" fill="#cdbf9e"/><polygon points="345.3,547.3 338.1,549.6 292.8,503.5 300.0,454.2 310.4,446.7 312.2,446.7 346.5,461.9" fill="#c2b48f"/><polygon points="388.4,451.1 395.0,521.3 384.3,528.7 350.9,545.5 345.3,547.3 346.5,461.9 383.9,448.3" fill="#d8cdb0"/><polygon points="110.6,264.2 118.4,244.2 137.1,209.5 140.4,204.8 196.1,232.1 199.6,251.3 178.9,288.8 157.6,294.7" fill="#d8cdb0"/><polygon points="255.7,399.8 227.5,397.9 210.5,350.9 220.4,336.0 268.3,364.7 267.1,390.7" fill="#cdbf9e"/><polygon points="309.1,265.7 273.2,263.7 267.3,218.2 296.0,190.6 324.2,200.9 326.0,203.4 327.8,252.5" fill="#cdbf9e"/><polygon points="444.6,102.2 468.2,119.7 473.9,125.9 448.6,180.3 423.2,173.9 410.8,152.7 413.6,131.8" fill="#cdbf9e"/><polygon points="109.9,457.2 99.9,431.2 95.2,408.0 123.8,400.6 148.3,421.5 149.2,424.7" fill="#cdbf9e"/><polygon points="239.6,509.1 196.7,487.6 193.8,465.1 199.0,457.9 227.7,448.4 245.7,454.6 240.8,508.1" fill="#c2b48f"/><polygon points="97.5,344.1 149.1,320.2 166.1,363.4 131.1,373.9" fill="#d8cdb0"/><polygon points="196.1,232.1 223.1,202.0 267.3,218.2 273.2,263.7 262.8,272.7 199.6,251.3" fill="#cdbf9e"/><polygon points="369.3,162.0 384.7,209.3 326.0,203.4 324.2,200.9 354.1,153.9" fill="#c2b48f"/><polygon points="191.9,144.1 215.3,124.5 246.7,104.5 262.1,97.6 282.0,144.7 281.0,148.6 222.0,176.0" fill="#cdbf9e"/><polygon points="166.1,363.4 172.6,366.8 174.3,382.4 148.3,421.5 123.8,400.6 131.1,373.9" fill="#cdbf9e"/><polygon points="338.1,549.6 316.2,556.7 280.9,562.0 246.1,560.9 227.5,556.7 239.6,509.1 240.8,508.1 292.8,503.5" fill="#d8cdb0"/><polygon points="415.1,330.6 411.2,377.6 401.7,381.7 366.7,378.6 349.0,326.8 360.6,319.3 411.6,327.3" fill="#d8cdb0"/><polygon points="491.8,415.9 490.3,419.0 469.0,451.4 462.0,459.8 436.9,447.7 423.2,384.4 462.5,381.7" fill="#cdbf9e"/><polygon points="366.7,378.6 349.9,393.3 320.3,383.6 309.7,337.9 327.0,326.2 349.0,326.8" fill="#cdbf9e"/><polygon points="327.0,326.2 309.1,265.7 327.8,252.5 368.6,262.3 369.6,263.9 360.6,319.3 349.0,326.8" fill="#d8cdb0"/><polygon points="199.0,457.9 189.0,425.4 200.4,410.6 214.6,409.1 227.7,448.4" fill="#dfd6c0"/><polygon points="443.8,256.3 463.8,267.8 465.3,289.5 432.5,327.0 415.1,330.6 411.6,327.3 411.1,276.3" fill="#d8cdb0"/><polygon points="259.0,446.3 255.7,399.8 267.1,390.7 297.6,402.1 310.4,446.7 300.0,454.2" fill="#cdbf9e"/><polygon points="436.9,447.7 388.4,451.1 383.9,448.3 383.8,447.6 401.7,381.7 411.2,377.6 423.2,384.4" fill="#dfd6c0"/><polygon points="149.6,474.3 163.6,457.8 193.8,465.1 196.7,487.6 172.7,505.2" fill="#c2b48f"/><polygon points="91.0,357.2 92.4,343.3 97.5,344.1 131.1,373.9 123.8,400.6 95.2,408.0 92.6,395.0" fill="#c2b48f"/><polygon points="349.9,393.3 349.9,403.4 312.2,446.7 310.4,446.7 297.6,402.1 320.3,383.6" fill="#cdbf9e"/><polygon points="352.9,76.6 381.3,78.5 413.0,86.6 442.3,100.4 444.6,102.2 413.6,131.8 355.0,106.7" fill="#c2b48f"/><polygon points="522.9,333.8 519.9,348.1 507.3,384.3 491.8,415.9 462.5,381.7 473.8,349.9 504.8,332.4" fill="#d8cdb0"/><polygon points="262.1,97.6 279.9,89.6 313.9,80.1 348.0,76.3 352.9,76.6 355.0,106.7 345.4,130.7 282.0,144.7" fill="#c2b48f"/><polygon points="504.8,332.4 473.8,349.9 432.5,327.0 465.3,289.5" fill="#dfd6c0"/><polygon points="297.6,402.1 267.1,390.7 268.3,364.7 298.6,338.1 309.7,337.9 320.3,383.6" fill="#c2b48f"/><polygon points="262.8,272.7 257.8,298.6 220.7,328.8 178.9,288.8 199.6,251.3" fill="#dfd6c0"/><polygon points="529.8,265.3 530.4,274.4 527.7,311.2 522.9,333.8 504.8,332.4 465.3,289.5 463.8,267.8 490.5,256.7" fill="#cdbf9e"/></g><g fill="#7d6c52" stroke="#4a3e2e" stroke-width="0.5" stroke-linejoin="round"><polygon points="449.2,225.0 461.6,199.0 489.0,202.2 487.7,226.9"/><polygon points="447.3,253.5 442.7,238.7 445.3,233.2 487.3,235.2 486.4,253.9 464.1,263.1"/><polygon points="413.4,180.6 408.0,186.9 394.9,175.5 400.4,169.2"/><polygon points="419.8,173.6 417.3,176.5 404.0,164.9 410.4,157.5"/><polygon points="390.6,171.6 380.3,162.6 402.8,157.6"/><polygon points="402.9,191.3 388.7,207.6 387.9,207.0 382.0,189.1 395.4,184.8"/><polygon points="379.1,183.1 373.0,164.1 373.2,164.1 390.7,179.4"/><polygon points="146.2,318.5 132.2,325.0 128.5,317.0 142.5,310.5"/><polygon points="126.3,311.7 121.8,302.0 135.4,295.7 139.9,305.4"/><polygon points="146.0,290.6 154.1,295.9 149.1,311.2 140.7,293.1"/><polygon points="109.5,275.5 112.1,268.9 124.8,277.1 116.3,290.1"/><polygon points="129.8,280.1 140.3,286.9 119.2,296.7 119.1,296.6"/><polygon points="101.0,307.0 106.6,283.8 114.5,300.7"/><polygon points="106.6,311.8 116.7,307.2 125.9,326.9 115.8,331.5"/><polygon points="96.1,340.5 98.2,319.5 99.4,314.8 100.1,314.5 109.5,334.9 97.0,340.6"/><polygon points="412.5,506.2 397.0,517.1 396.1,507.8"/><polygon points="396.6,502.0 395.6,490.8 413.5,489.1 414.6,500.3"/><polygon points="434.6,486.2 420.4,499.2 419.3,487.7"/><polygon points="450.1,468.6 441.6,478.7 440.3,479.9 428.7,481.0 427.7,470.7"/><polygon points="455.9,461.0 427.5,463.7 426.4,452.2 436.2,451.5"/><polygon points="406.0,483.5 394.5,484.6 393.3,471.9 404.8,470.8"/><polygon points="422.7,482.0 411.6,483.1 410.4,470.2 421.4,469.2"/><polygon points="392.8,466.1 391.6,453.8 404.5,452.9 405.4,464.9"/><polygon points="410.1,452.2 420.0,451.5 421.1,463.7 410.9,464.7"/><polygon points="166.5,454.7 159.8,432.2 171.3,431.0 174.0,456.5"/><polygon points="193.0,448.4 195.8,457.4 192.6,461.8 181.0,459.0 180.0,449.8"/><polygon points="177.8,429.5 186.9,428.6 191.3,442.7 179.4,443.9"/><polygon points="210.0,498.1 220.8,503.5 212.4,520.3 204.9,518.4"/><polygon points="226.8,506.3 235.8,510.9 232.1,525.4 218.9,522.1"/><polygon points="193.8,494.1 197.0,491.8 203.6,495.1 198.2,516.5 188.7,514.1"/><polygon points="173.0,511.2 174.7,506.8 186.5,498.1 182.6,513.6"/><polygon points="175.4,531.8 167.3,526.0 171.2,515.9 179.0,517.8"/><polygon points="189.8,539.7 183.4,536.8 180.5,534.7 184.3,519.8 194.2,522.3"/><polygon points="207.5,547.1 196.2,542.0 200.6,524.5 212.5,527.6"/><polygon points="224.8,552.4 214.3,550.0 219.6,529.3 230.0,532.0"/><polygon points="120.5,469.9 116.2,463.0 114.4,458.3 128.6,446.7 136.7,456.5"/><polygon points="126.1,474.1 141.7,461.2 149.1,470.2 148.1,471.5"/><polygon points="157.5,447.2 160.5,457.1 153.0,465.9 145.7,457.0"/><polygon points="134.2,441.8 149.3,429.3 151.8,431.2 154.8,441.1 142.2,451.5"/><polygon points="454.2,194.9 436.2,232.7 419.9,224.6 440.8,182.6 446.1,184.0"/><polygon points="412.3,220.8 395.2,212.2 424.6,178.6 432.5,180.5"/><polygon points="458.5,187.7 452.7,179.9 461.9,160.0 469.7,163.6"/><polygon points="473.5,192.5 464.7,191.4 476.2,166.8 483.8,170.3"/><polygon points="499.0,192.7 492.9,195.8 479.6,194.3 483.6,185.6"/><polygon points="507.8,181.0 509.9,186.3 504.7,189.0 486.7,180.6 490.3,172.9"/><polygon points="493.0,153.7 504.9,173.0 487.8,165.0"/><polygon points="486.7,152.5 482.3,161.9 464.7,153.7 469.0,144.3"/><polygon points="474.6,130.5 488.2,145.4 489.3,147.2 470.8,138.6"/><polygon points="208.1,167.3 217.9,177.7 218.9,200.5 195.1,226.9 182.1,220.5"/><polygon points="169.8,172.9 189.0,152.1 191.6,149.9 201.9,160.8 190.9,183.3"/><polygon points="146.7,203.2 163.1,180.2 163.9,179.4 187.2,190.8 174.5,216.8"/><polygon points="263.9,212.4 227.2,199.1 226.3,178.6 244.3,170.3"/><polygon points="287.5,179.3 291.1,189.5 271.3,208.5 263.0,190.6"/><polygon points="278.6,154.4 284.6,171.4 259.5,183.0 252.0,166.7"/><polygon points="378.5,382.4 398.1,384.2 395.9,392.2 377.2,387.1"/><polygon points="393.9,397.9 391.3,407.6 373.4,402.7 376.1,393.1"/><polygon points="353.2,397.1 353.2,394.8 367.9,382.0 372.2,382.4 367.1,400.9"/><polygon points="382.1,439.1 369.7,422.9 383.0,412.7 388.9,414.3"/><polygon points="364.8,418.1 353.8,403.7 375.8,409.7"/><polygon points="181.9,385.6 177.6,380.9 176.3,369.0 186.0,364.9 193.0,381.6"/><polygon points="191.6,361.9 208.8,354.7 211.6,362.5 194.5,368.7"/><polygon points="213.7,367.7 216.0,374.1 199.1,380.2 196.5,373.9"/><polygon points="201.6,407.3 186.5,391.0 198.0,386.8 205.2,406.9"/><polygon points="204.8,385.1 217.2,380.6 223.0,396.7 213.0,405.5 212.2,405.5"/><polygon points="165.7,424.5 155.9,425.6 152.2,422.7 152.0,422.0 161.5,407.7 172.2,414.7"/><polygon points="187.7,423.5 171.7,425.2 177.4,416.6"/><polygon points="164.8,402.2 174.7,387.3 182.6,395.8 171.1,406.4"/><polygon points="186.7,400.4 196.2,410.8 190.1,418.8 176.5,409.8"/><polygon points="139.8,499.4 133.5,492.7 125.8,480.1 137.8,478.7 140.2,499.1"/><polygon points="143.5,477.8 148.3,477.2 156.1,487.6 145.5,495.4"/><polygon points="162.9,522.2 156.4,517.4 143.9,503.9 149.4,499.8 164.0,519.3"/><polygon points="154.0,496.1 159.3,492.1 169.5,505.7 166.6,513.0"/><polygon points="421.2,332.3 432.0,330.1 444.3,336.9 440.8,343.2"/><polygon points="417.0,346.0 417.8,337.3 437.6,348.3 433.7,355.3"/><polygon points="420.3,378.7 414.9,375.6 416.8,353.6 430.1,361.0"/><polygon points="460.5,379.1 447.5,380.0 446.6,366.5 462.0,375.0"/><polygon points="441.6,380.0 426.6,381.0 437.3,361.8 440.5,363.6"/><polygon points="465.3,348.5 470.2,351.3 463.7,369.6 456.0,365.3"/><polygon points="440.7,356.2 449.5,340.4 459.5,345.9 450.7,361.8"/><polygon points="219.5,410.5 228.9,402.2 251.8,403.8 253.0,421.3 223.8,423.4"/><polygon points="253.6,429.7 254.6,444.0 245.2,450.0 231.0,445.1 226.5,431.6"/><polygon points="287.0,155.4 284.6,148.5 284.8,147.6 308.5,142.4 310.2,150.3"/><polygon points="292.1,169.9 289.3,161.9 311.8,156.9 313.6,165.1"/><polygon points="298.4,186.9 294.7,176.4 314.9,171.9 317.3,182.7"/><polygon points="321.9,197.6 304.9,191.5 319.8,188.2"/><polygon points="342.2,165.6 326.5,190.1 322.0,170.0"/><polygon points="332.0,160.0 320.4,162.5 315.7,141.2 327.3,138.6"/><polygon points="343.1,134.9 350.1,153.4 348.1,156.7 339.4,158.6 334.5,136.8"/><polygon points="330.9,224.4 330.3,208.1 351.1,210.2 349.5,226.3"/><polygon points="347.0,253.0 331.7,249.3 331.1,232.7 348.8,234.5"/><polygon points="383.1,213.4 384.9,214.7 376.5,233.7 358.0,225.6 359.5,211.0"/><polygon points="373.4,241.3 366.3,257.7 354.8,254.9 356.9,234.1"/><polygon points="407.8,322.9 392.3,320.5 395.0,303.0 407.7,305.1"/><polygon points="384.5,318.8 365.4,315.8 368.1,299.1 387.1,302.2"/><polygon points="396.0,275.7 407.4,279.1 407.6,297.4 392.8,295.0"/><polygon points="369.5,290.8 373.0,269.3 388.2,273.9 385.0,293.3"/><polygon points="350.2,127.1 356.8,110.9 366.1,114.9 359.2,131.0"/><polygon points="372.0,117.6 382.5,122.1 375.8,137.8 365.3,133.3"/><polygon points="367.2,156.7 357.1,151.3 351.0,134.9 372.6,144.2"/><polygon points="394.7,153.5 373.7,158.2 378.6,146.7"/><polygon points="391.9,145.7 381.6,141.3 388.6,124.7 398.9,129.1"/><polygon points="410.4,133.6 408.2,150.3 403.9,151.2 397.5,148.5 404.9,131.3"/><polygon points="334.0,452.3 318.3,445.4 329.7,432.3 342.1,443.1"/><polygon points="346.6,459.1 339.3,455.9 347.6,446.4 357.5,455.1"/><polygon points="333.9,426.7 340.6,419.1 355.4,432.1 347.2,438.3"/><polygon points="344.4,414.2 349.8,408.0 363.7,426.2 360.7,428.5"/><polygon points="367.1,432.0 378.1,446.4 363.4,451.7 353.1,442.7"/><polygon points="228.8,337.4 223.6,334.3 223.7,330.3 237.4,319.2 242.9,325.9"/><polygon points="243.5,346.5 234.0,340.8 246.8,330.4 252.4,337.3"/><polygon points="267.3,312.2 271.9,316.7 256.4,332.7 250.7,325.7"/><polygon points="242.1,315.3 257.7,302.6 263.0,307.7 246.7,321.0"/><polygon points="257.6,354.7 248.8,349.5 261.0,337.0 268.1,343.9"/><polygon points="268.0,361.7 262.0,358.0 272.4,347.3 278.1,352.8"/><polygon points="265.2,332.6 276.5,320.9 283.8,327.9 272.4,339.6"/><polygon points="288.1,331.8 294.5,338.0 281.8,349.1 276.5,343.9"/><polygon points="244.2,504.7 245.1,495.2 266.3,497.2 265.8,502.8"/><polygon points="246.1,488.7 247.0,478.5 267.5,480.4 266.5,490.6"/><polygon points="291.1,496.7 290.5,501.1 271.6,502.7 272.3,494.9"/><polygon points="274.0,480.6 292.8,482.3 291.6,490.9 273.2,489.3"/><polygon points="274.1,452.5 283.1,454.2 279.1,474.7 272.1,474.1"/><polygon points="289.3,455.2 296.5,456.6 293.7,476.2 285.4,475.4"/><polygon points="248.2,457.0 248.3,456.2 259.5,449.2 268.3,450.8 267.6,458.7"/><polygon points="247.3,471.9 248.1,462.8 266.6,464.5 265.8,473.6"/><polygon points="153.6,320.1 160.8,298.2 177.7,293.5 194.8,309.8 162.7,343.3"/><polygon points="193.4,353.5 172.8,362.1 169.4,360.4 166.1,351.9 178.4,339.1"/><polygon points="200.9,315.6 216.5,330.5 216.3,334.6 207.7,347.5 201.9,349.9 184.2,333.0"/><polygon points="522.2,229.3 524.3,238.9 525.7,260.5 514.0,258.0 520.3,229.2"/><polygon points="494.6,235.3 495.0,227.3 513.5,228.2 511.1,238.9"/><polygon points="507.1,257.1 493.8,254.2 494.4,241.7 509.7,245.0"/><polygon points="512.3,192.7 517.2,205.0 521.0,222.1 510.9,221.6"/><polygon points="504.1,221.2 495.7,220.8 496.7,200.6 505.3,196.2"/><polygon points="383.0,264.4 372.7,261.4 380.4,243.8 390.2,248.1"/><polygon points="404.4,253.9 396.9,269.0 388.9,266.6 396.1,250.3"/><polygon points="391.4,219.0 401.4,224.0 392.6,241.7 383.3,237.6"/><polygon points="407.6,226.7 415.7,230.8 406.9,248.3 398.6,244.6"/><polygon points="427.6,262.0 410.6,272.4 403.5,270.3 411.6,254.1"/><polygon points="435.9,240.2 436.0,240.2 440.7,255.2 434.8,258.8 428.3,255.5"/><polygon points="421.4,233.4 430.6,238.1 423.4,252.5 414.2,247.9"/><polygon points="342.6,477.3 342.4,491.4 324.9,491.1 325.1,477.0"/><polygon points="325.0,456.0 343.2,464.0 343.1,470.3 324.8,470.0"/><polygon points="301.7,466.4 303.2,456.1 311.5,450.2 318.3,453.2 318.1,466.6"/><polygon points="310.3,472.9 318.5,473.1 318.2,491.7 310.1,491.6"/><polygon points="297.2,491.7 300.0,472.5 304.7,472.5 304.4,491.8"/><polygon points="325.5,523.2 342.7,506.3 342.5,523.5"/><polygon points="342.0,544.9 339.0,545.9 323.0,529.6 342.2,529.9"/><polygon points="316.5,523.2 306.1,512.7 318.9,500.1 318.6,521.2"/><polygon points="301.8,508.8 295.7,502.6 296.5,497.1 313.5,497.3"/><polygon points="325.2,497.9 342.1,498.2 324.9,515.0"/><polygon points="389.5,506.9 390.6,519.2 382.2,525.1 349.5,541.5 350.1,506.3"/><polygon points="384.4,453.6 386.3,473.2 350.5,476.6 350.7,464.8 383.4,452.9"/><polygon points="387.1,481.6 388.7,498.5 350.2,497.9 350.4,485.0"/><polygon points="129.9,231.7 140.7,211.7 141.8,210.2 169.5,223.7 158.7,245.8"/><polygon points="115.8,262.6 122.2,245.9 125.9,239.1 155.0,253.3 142.1,279.7"/><polygon points="183.3,272.1 176.1,285.2 158.3,290.2 149.2,284.3 160.6,261.0"/><polygon points="177.0,227.4 192.4,234.9 195.2,250.6 187.4,264.8 164.3,253.5"/><polygon points="215.4,355.6 213.9,351.3 221.4,340.1 230.2,345.4 221.8,359.4"/><polygon points="235.5,348.9 246.4,355.5 238.3,369.0 227.4,362.4"/><polygon points="227.2,387.8 218.9,364.9 235.1,374.6"/><polygon points="254.6,396.3 230.9,394.7 238.2,382.3 257.6,393.9"/><polygon points="265.5,368.1 264.5,389.4 263.4,390.2 255.2,385.3"/><polygon points="241.7,376.4 252.2,359.0 260.7,364.1 250.3,381.5"/><polygon points="322.7,215.6 323.1,226.3 301.4,227.0 301.0,216.4"/><polygon points="300.1,195.8 322.0,203.8 322.5,204.6 322.7,208.5 300.6,209.3"/><polygon points="281.6,207.6 294.3,195.4 294.7,207.1"/><polygon points="285.1,212.7 294.4,212.3 294.9,228.1 285.7,228.4"/><polygon points="271.5,229.1 270.2,219.2 276.8,212.8 279.6,212.7 280.1,228.8"/><polygon points="274.7,246.6 273.2,235.4 294.6,234.6 295.0,245.9"/><polygon points="296.1,261.8 276.0,260.7 275.1,253.4 295.7,252.6"/><polygon points="308.1,262.3 302.5,262.0 302.1,250.2 324.3,249.4 324.4,250.8"/><polygon points="302.0,243.4 301.7,234.2 323.6,233.4 323.9,242.6"/><polygon points="464.8,137.1 460.1,147.0 441.9,138.5 446.5,128.6"/><polygon points="453.5,112.7 466.1,122.1 470.1,126.5 467.9,131.1 449.0,122.3"/><polygon points="438.5,130.7 435.8,136.5 420.3,129.3 429.2,120.8"/><polygon points="444.9,105.9 448.7,108.7 441.1,125.2 433.2,117.0"/><polygon points="415.3,144.5 416.6,134.4 436.0,143.4 431.9,152.2"/><polygon points="424.2,170.1 413.8,152.2 414.0,150.7 429.8,158.1"/><polygon points="450.6,168.3 446.8,176.5 429.9,172.2 435.1,161.1"/><polygon points="457.7,153.3 453.3,162.6 437.7,155.3 442.0,146.0"/><polygon points="132.3,412.8 144.8,423.4 131.6,434.4 121.2,421.9"/><polygon points="108.2,407.6 123.0,403.7 127.9,407.8 116.3,417.4"/><polygon points="102.2,428.7 98.5,410.1 102.2,409.1 111.8,420.7"/><polygon points="111.6,450.9 105.3,434.7 115.2,426.5 125.7,439.2"/><polygon points="241.2,470.2 240.4,479.2 222.4,477.6 223.2,468.6"/><polygon points="224.7,452.6 227.6,451.6 242.4,456.7 241.7,464.1 223.8,462.4"/><polygon points="199.5,461.7 200.6,460.1 218.9,454.0 218.1,463.4"/><polygon points="198.2,475.4 197.1,467.1 217.1,468.9 216.3,477.0"/><polygon points="237.5,504.0 220.5,495.5 226.0,484.6 239.2,485.8"/><polygon points="214.4,493.2 199.3,485.7 198.8,481.4 219.4,483.3"/><polygon points="105.1,345.2 123.3,336.8 137.6,367.6 132.1,369.2"/><polygon points="130.9,333.3 146.8,325.9 160.5,360.6 145.7,365.1"/><polygon points="267.5,247.1 269.5,262.3 262.0,268.7 254.5,266.2 261.7,245.1"/><polygon points="247.7,263.5 236.1,259.6 243.0,239.2 254.6,243.1"/><polygon points="265.3,220.7 267.9,241.0 259.4,238.1"/><polygon points="250.4,215.4 260.0,218.9 254.3,235.6 244.7,232.3"/><polygon points="232.2,209.4 243.6,213.5 237.0,233.1 225.5,229.3"/><polygon points="207.7,223.9 224.1,205.7 225.9,206.4 218.7,227.7"/><polygon points="199.6,233.1 203.1,229.1 213.6,232.7 207.6,250.6 202.4,248.9"/><polygon points="220.1,235.5 234.5,240.4 228.8,257.1 214.5,252.3"/><polygon points="367.0,164.0 372.3,180.5 362.1,183.8 364.2,162.5"/><polygon points="373.5,186.9 379.5,205.2 361.0,203.3 362.2,190.5"/><polygon points="354.1,203.1 343.8,202.0 345.8,182.6 355.6,188.8"/><polygon points="337.9,201.9 327.5,200.8 327.5,200.8 339.9,181.3"/><polygon points="344.8,174.4 355.2,158.1 358.5,159.8 356.3,181.7"/><polygon points="247.7,108.3 248.5,107.8 260.2,102.5 267.1,118.9 254.4,124.2"/><polygon points="228.2,120.5 241.5,112.1 247.8,127.1 233.9,133.0"/><polygon points="256.9,155.6 246.9,160.2 237.3,139.6 248.2,135.0"/><polygon points="275.5,137.3 278.7,145.0 278.3,146.5 263.5,153.4 259.5,144.0"/><polygon points="270.4,124.6 273.4,131.7 257.0,138.6 254.0,131.5"/><polygon points="210.6,133.3 217.5,127.6 222.0,124.7 230.3,142.5 217.6,148.4"/><polygon points="196.1,144.3 205.0,136.8 212.0,152.0 206.0,154.9"/><polygon points="227.4,170.3 222.7,172.5 210.2,159.2 220.2,154.6"/><polygon points="233.8,148.4 241.0,163.9 232.7,167.7 225.5,152.2"/><polygon points="165.7,367.3 169.2,369.1 170.5,381.5 163.6,391.9 153.1,385.0 164.7,367.6"/><polygon points="147.3,382.3 136.4,375.1 156.1,369.1"/><polygon points="133.0,404.0 127.6,399.4 132.9,380.0 144.0,387.4"/><polygon points="159.5,398.0 147.6,415.9 138.6,408.4 149.8,391.6"/><polygon points="251.2,511.4 291.2,507.9 298.3,515.1 276.1,536.8"/><polygon points="255.6,557.0 246.6,556.7 232.6,553.6 242.6,514.6 270.1,542.7"/><polygon points="294.0,556.3 280.7,558.3 266.0,557.8 281.0,543.1"/><polygon points="330.3,547.7 315.2,552.6 303.3,554.4 287.0,537.9 304.1,521.1"/><polygon points="409.7,344.5 407.2,374.7 401.0,377.4 369.8,374.6 364.8,360.0"/><polygon points="410.8,332.3 410.5,335.4 362.1,352.0 354.0,328.6 361.5,323.7 409.7,331.3"/><polygon points="438.5,437.3 436.0,425.8 456.4,421.3 458.9,432.9"/><polygon points="463.5,452.7 461.1,455.5 439.9,445.4 439.6,444.4 460.7,439.8"/><polygon points="488.0,416.4 487.5,417.4 479.9,429.0 464.5,419.0 486.2,414.3"/><polygon points="476.9,434.2 468.6,446.9 464.1,425.8"/><polygon points="457.2,384.7 461.4,384.4 469.7,394.1 460.9,401.7"/><polygon points="473.0,398.5 481.9,409.0 463.7,412.9 462.5,407.5"/><polygon points="433.7,419.5 430.7,405.4 440.8,403.2 443.8,417.3"/><polygon points="446.3,401.9 455.1,400.0 458.2,414.3 449.4,416.2"/><polygon points="430.0,398.9 427.6,387.8 451.2,386.2 452.9,393.9"/><polygon points="350.5,340.3 353.6,349.4 338.6,354.6 335.5,345.5"/><polygon points="329.8,329.2 346.9,329.6 348.7,334.8 333.5,340.1"/><polygon points="314.1,345.2 312.6,339.0 324.6,330.9 327.9,340.4"/><polygon points="318.3,361.4 315.8,350.5 329.3,345.9 332.9,356.4"/><polygon points="339.1,385.9 323.4,380.7 320.4,367.8 331.6,364.0"/><polygon points="363.2,377.6 349.2,389.8 347.4,389.2 343.9,379.2 361.6,373.1"/><polygon points="342.2,372.9 338.3,361.5 355.2,355.6 359.1,367.1"/><polygon points="330.1,322.1 322.6,296.4 361.9,284.8 356.8,316.8 347.8,322.6"/><polygon points="320.2,288.4 314.0,267.4 328.6,257.0 365.0,265.8 363.4,275.6"/><polygon points="195.0,432.1 193.2,426.2 202.4,414.2 212.0,413.2 215.9,425.1"/><polygon points="210.1,434.1 218.9,431.2 224.0,446.5 215.2,449.4"/><polygon points="200.9,454.2 196.1,438.7 204.6,435.9 209.7,451.3"/><polygon points="455.7,294.1 430.3,323.2 416.4,326.0 415.8,325.5 415.5,294.6"/><polygon points="443.8,261.2 459.7,270.3 460.8,285.7 415.4,286.2 415.3,278.6"/><polygon points="261.3,434.1 260.7,424.4 279.1,423.1 279.8,432.8"/><polygon points="261.6,443.9 261.3,440.1 280.7,438.7 281.3,447.7"/><polygon points="304.6,438.3 306.7,445.4 299.3,450.7 287.4,448.4 286.8,439.5"/><polygon points="285.4,422.6 300.0,421.5 303.0,432.1 286.2,433.2"/><polygon points="280.9,399.5 294.9,404.7 297.9,415.2 282.1,416.3"/><polygon points="260.8,417.3 259.7,401.6 267.8,395.1 273.4,397.2 274.8,416.4"/><polygon points="432.9,444.7 412.6,446.1 411.9,436.8 430.9,435.5"/><polygon points="411.3,430.5 410.5,418.5 428.5,423.4 429.7,429.2"/><polygon points="406.3,446.8 389.2,447.9 387.2,446.7 390.3,435.6 405.8,439.8"/><polygon points="391.9,429.6 396.0,414.6 404.1,416.9 405.3,433.2"/><polygon points="422.0,393.0 427.1,416.8 416.3,413.8"/><polygon points="401.9,392.0 404.2,383.8 411.0,380.9 418.0,384.8 415.1,395.6"/><polygon points="397.4,408.7 400.4,397.7 413.6,401.3 410.6,412.3"/><polygon points="184.6,492.4 173.3,500.6 165.0,489.5 176.2,481.1"/><polygon points="191.5,469.2 193.7,486.3 189.8,489.1 180.8,477.1"/><polygon points="169.6,461.7 187.2,465.9 178.0,472.8"/><polygon points="153.8,474.4 163.5,463.0 172.8,475.4 161.1,484.1"/><polygon points="94.3,357.3 95.4,347.1 96.1,347.2 112.1,361.5 105.3,369.2 94.4,359.5"/><polygon points="102.4,374.1 94.3,383.2 93.6,366.2"/><polygon points="117.9,398.4 98.0,403.5 96.2,394.6 96.1,390.1 101.6,383.9"/><polygon points="117.1,366.7 126.7,375.2 122.1,392.0 106.7,378.4"/><polygon points="346.1,396.1 346.1,402.0 332.5,417.6 324.0,410.2 338.5,393.6"/><polygon points="318.2,405.8 308.7,397.5 321.0,387.4 331.3,390.7"/><polygon points="328.4,423.3 312.3,441.8 308.3,427.8 327.3,422.4"/><polygon points="306.6,421.6 301.4,403.3 303.4,401.7 321.3,417.3"/><polygon points="425.6,96.5 438.8,102.8 424.6,116.3 415.2,106.4"/><polygon points="401.4,86.7 412.0,89.4 419.7,93.0 410.2,102.1 399.6,90.9"/><polygon points="393.7,119.7 388.5,117.5 397.1,97.4 406.6,107.4"/><polygon points="420.2,121.3 412.9,128.1 399.9,122.5 411.1,111.8"/><polygon points="357.9,80.8 380.7,82.3 394.3,85.8 390.5,94.8"/><polygon points="363.1,107.0 357.8,104.7 356.6,87.7 369.1,93.0"/><polygon points="388.0,101.7 382.4,114.7 369.1,109.0 374.7,96.0"/><polygon points="509.0,366.7 503.5,382.7 490.8,408.4 477.9,393.3"/><polygon points="517.8,337.6 515.8,347.0 514.5,351.0 502.4,361.3 489.3,346.0 505.7,336.7"/><polygon points="496.0,366.7 472.4,386.9 467.3,380.9 477.2,352.8 481.9,350.2"/><polygon points="336.2,129.6 317.7,133.7 315.9,125.9 334.4,121.8"/><polygon points="314.6,120.1 312.9,112.7 331.6,108.6 333.2,116.0"/><polygon points="351.7,104.5 351.8,106.2 343.1,127.9 342.2,128.1 337.7,107.6"/><polygon points="350.9,89.4 351.5,98.2 335.4,101.8 333.5,93.3"/><polygon points="330.5,80.9 348.0,79.0 350.4,79.2 350.7,83.7 332.0,87.8"/><polygon points="327.7,94.6 329.6,103.0 311.7,106.9 309.9,98.5"/><polygon points="306.8,85.1 314.4,82.9 325.0,81.8 326.5,88.8 308.5,92.8"/><polygon points="288.2,91.2 300.5,87.8 305.0,108.1 292.5,110.9"/><polygon points="266.9,99.5 280.8,93.2 285.1,112.6 273.5,115.2"/><polygon points="291.1,139.3 283.9,140.9 275.9,121.9 286.7,119.5"/><polygon points="306.7,115.5 310.9,134.4 297.9,137.3 293.7,118.4"/><polygon points="453.0,334.2 438.3,326.0 449.0,313.8 462.4,325.5"/><polygon points="452.8,308.2 465.4,293.9 471.6,300.7 458.2,312.9"/><polygon points="475.6,304.7 480.5,310.1 467.9,321.7 462.4,316.9"/><polygon points="481.7,341.7 473.7,346.1 459.1,338.0 469.5,328.5"/><polygon points="498.8,331.4 487.7,337.7 475.0,324.0 484.2,315.6"/><polygon points="288.8,350.4 299.7,340.8 307.5,340.7 309.1,347.4 289.2,352.0"/><polygon points="310.0,353.3 312.1,362.3 293.1,366.7 291.0,357.7"/><polygon points="271.0,372.1 271.2,366.1 284.0,354.9 287.1,368.3"/><polygon points="291.0,395.6 271.1,388.1 271.5,378.9 286.4,375.5"/><polygon points="298.3,398.1 296.0,388.4 315.8,383.8"/><polygon points="295.3,382.4 293.2,373.4 313.4,368.7 315.5,377.7"/><polygon points="215.2,259.7 227.7,263.9 223.9,275.0 211.4,270.8"/><polygon points="222.4,280.4 219.4,289.2 206.4,284.8 209.4,276.0"/><polygon points="189.3,277.8 201.4,255.9 208.5,258.3 200.6,281.7"/><polygon points="210.3,314.1 198.9,303.2 209.4,292.2 216.8,294.7"/><polygon points="194.0,299.1 182.6,288.2 185.2,283.6 203.0,289.6"/><polygon points="248.0,302.7 238.0,310.9 225.1,295.0"/><polygon points="232.8,314.6 220.9,324.3 215.7,319.3 221.8,301.1"/><polygon points="258.9,274.9 254.7,296.8 253.4,297.8 245.1,295.0 252.6,272.8"/><polygon points="239.1,293.7 225.2,289.0 228.2,280.2 242.1,284.9"/><polygon points="230.0,275.0 233.2,265.6 246.9,270.3 243.8,279.6"/><polygon points="523.8,312.3 520.1,330.0 506.4,328.9 503.5,325.7 521.1,309.4"/><polygon points="498.7,299.2 506.1,292.3 517.1,304.1 509.6,311.0"/><polygon points="498.6,321.3 487.5,309.3 494.2,303.1 505.3,315.1"/><polygon points="526.7,274.2 526.8,274.4 524.6,302.5 511.5,288.2"/><polygon points="501.1,278.7 485.9,262.1 490.8,260.1 504.5,263.1"/><polygon points="524.4,267.2 506.4,283.8 510.6,264.3"/><polygon points="469.8,288.8 468.9,287.9 467.7,270.2 479.4,265.4 486.7,273.3"/><polygon points="501.7,288.3 494.3,295.1 484.4,284.4 491.8,277.5"/><polygon points="490.2,299.0 483.5,305.2 473.5,294.3 480.2,288.1"/></g><g fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M468.3,230.9 L491.9,227.6 L509.3,229.8" stroke="#6c604a" stroke-width="3.4"/><path d="M468.3,230.9 L448.6,216.4 L427.4,204.7" stroke="#6c604a" stroke-width="3.4"/><path d="M427.4,204.7 L406.2,193.3 L395.3,178.0" stroke="#6c604a" stroke-width="3.4"/><path d="M395.3,178.0 L377.0,185.7 L356.3,186.6" stroke="#6c604a" stroke-width="3.4"/><path d="M356.3,186.6 L355.3,206.4 L354.3,230.4" stroke="#6c604a" stroke-width="3.4"/><path d="M395.3,178.0 L390.1,157.4 L377.1,137.0" stroke="#6c604a" stroke-width="3.4"/><path d="M377.1,137.0 L384.3,119.2 L394.7,101.7" stroke="#6c604a" stroke-width="3.4"/><path d="M356.3,186.6 L339.1,177.4 L317.9,162.8" stroke="#6c604a" stroke-width="3.4"/><path d="M427.4,204.7 L414.0,226.3 L405.2,248.3" stroke="#6c604a" stroke-width="3.4"/><path d="M405.2,248.3 L390.3,270.1 L387.7,297.5" stroke="#6c604a" stroke-width="3.4"/><path d="M387.7,297.5 L411.4,301.8 L435.3,292.0" stroke="#6c604a" stroke-width="3.4"/><path d="M435.3,292.0 L448.9,308.2 L468.5,323.0" stroke="#6c604a" stroke-width="3.4"/><path d="M468.5,323.0 L485.0,310.9 L500.9,291.2" stroke="#6c604a" stroke-width="3.4"/><path d="M468.5,323.0 L453.1,338.5 L439.0,357.9" stroke="#6c604a" stroke-width="3.4"/><path d="M387.7,297.5 L365.1,291.6 L340.5,288.2" stroke="#6c604a" stroke-width="3.4"/><path d="M340.5,288.2 L318.0,296.0 L293.0,298.6" stroke="#6c604a" stroke-width="3.4"/><path d="M293.0,298.6 L278.2,318.3 L259.1,332.8" stroke="#6c604a" stroke-width="3.4"/><path d="M259.1,332.8 L244.4,350.3 L239.8,371.1" stroke="#6c604a" stroke-width="3.4"/><path d="M239.8,371.1 L219.0,374.4 L200.8,381.8" stroke="#6c604a" stroke-width="3.4"/><path d="M200.8,381.8 L187.3,396.5 L174.3,410.5" stroke="#6c604a" stroke-width="3.4"/><path d="M174.3,410.5 L161.3,401.9 L149.2,389.3" stroke="#6c604a" stroke-width="3.4"/><path d="M174.3,410.5 L171.9,427.2 L177.9,444.4" stroke="#6c604a" stroke-width="3.4"/><path d="M177.9,444.4 L194.0,441.6 L207.5,433.5" stroke="#6c604a" stroke-width="3.4"/><path d="M207.5,433.5 L221.1,428.7 L239.1,424.3" stroke="#6c604a" stroke-width="3.4"/><path d="M177.9,444.4 L178.7,461.4 L174.7,479.0" stroke="#6c604a" stroke-width="3.4"/><path d="M174.7,479.0 L161.1,489.7 L149.5,496.8" stroke="#6c604a" stroke-width="3.4"/><path d="M177.9,444.4 L159.2,443.4 L138.7,454.8" stroke="#6c604a" stroke-width="3.4"/><path d="M138.7,454.8 L129.6,440.9 L119.1,425.0" stroke="#6c604a" stroke-width="3.4"/><path d="M239.1,424.3 L257.4,423.1 L280.8,424.2" stroke="#6c604a" stroke-width="3.4"/><path d="M149.2,389.3 L148.6,368.6 L135.5,348.8" stroke="#6c604a" stroke-width="3.4"/><path d="M135.5,348.8 L114.3,359.0 L107.6,378.3" stroke="#6c604a" stroke-width="3.4"/><path d="M280.8,424.2 L304.0,424.4 L322.0,410.1" stroke="#6c604a" stroke-width="3.4"/><path d="M322.0,410.1 L331.1,425.1 L348.5,437.6" stroke="#6c604a" stroke-width="3.4"/><path d="M348.5,437.6 L366.9,425.5 L376.3,405.0" stroke="#6c604a" stroke-width="3.4"/><path d="M376.3,405.0 L392.7,414.7 L410.8,420.1" stroke="#6c604a" stroke-width="3.4"/><path d="M207.5,433.5 L213.4,453.1 L222.1,475.7" stroke="#6c604a" stroke-width="3.4"/><path d="M410.8,420.1 L430.0,416.1 L455.4,417.1" stroke="#6c604a" stroke-width="3.4"/><path d="M135.5,348.8 L123.3,332.1 L121.6,305.7" stroke="#6c604a" stroke-width="3.4"/><path d="M222.1,475.7 L243.2,481.3 L269.4,477.8" stroke="#6c604a" stroke-width="3.4"/><path d="M322.0,410.1 L309.0,392.8 L294.0,371.6" stroke="#6c604a" stroke-width="3.4"/><path d="M294.0,371.6 L315.0,360.7 L337.6,358.9" stroke="#6c604a" stroke-width="3.4"/><path d="M337.6,358.9 L357.9,352.7 L384.5,349.7" stroke="#6c604a" stroke-width="3.4"/><path d="M222.1,475.7 L218.1,498.3 L204.0,521.8" stroke="#6c604a" stroke-width="3.4"/><path d="M135.5,348.8 L157.6,341.8 L182.0,328.1" stroke="#6c604a" stroke-width="3.4"/><path d="M468.5,323.0 L489.3,341.2 L492.5,369.0" stroke="#6c604a" stroke-width="3.4"/><path d="M317.9,162.8 L313.7,137.7 L311.8,108.8" stroke="#6c604a" stroke-width="3.4"/><path d="M354.3,230.4 L326.9,228.0 L298.8,230.7" stroke="#6c604a" stroke-width="3.4"/><path d="M269.4,477.8 L296.4,478.9 L323.0,493.6" stroke="#6c604a" stroke-width="3.4"/><path d="M323.0,493.6 L345.9,504.6 L368.4,496.5" stroke="#6c604a" stroke-width="3.4"/><path d="M368.4,496.5 L391.7,486.2 L417.6,475.8" stroke="#6c604a" stroke-width="3.4"/><path d="M182.0,328.1 L199.8,308.8 L221.0,287.6" stroke="#6c604a" stroke-width="3.4"/><path d="M221.0,287.6 L231.2,262.0 L237.2,237.8" stroke="#6c604a" stroke-width="3.4"/><path d="M237.2,237.8 L245.2,210.1 L259.6,185.3" stroke="#6c604a" stroke-width="3.4"/><path d="M259.6,185.3 L251.5,162.3 L239.9,138.8" stroke="#6c604a" stroke-width="3.4"/><path d="M395.3,178.0 L417.0,163.3 L440.8,141.9" stroke="#6c604a" stroke-width="3.4"/><path d="M440.8,141.9 L461.2,153.1 L480.1,170.0" stroke="#6c604a" stroke-width="3.4"/><path d="M269.4,477.8 L266.8,505.8 L276.6,535.5" stroke="#6c604a" stroke-width="3.4"/><path d="M121.6,305.7 L134.1,279.5 L156.4,251.5" stroke="#6c604a" stroke-width="3.4"/><path d="M156.4,251.5 L168.3,218.5 L187.4,191.0" stroke="#6c604a" stroke-width="3.4"/><path d="M468.3,230.9 L477.1,262.3 L500.9,291.2" stroke="#6c604a" stroke-width="3.4"/><path d="M395.3,178.0 L387.0,211.0 L354.3,230.4" stroke="#6c604a" stroke-width="3.4"/><path d="M138.7,454.8 L156.6,466.0 L174.7,479.0" stroke="#6c604a" stroke-width="3.4"/><path d="M427.4,204.7 L453.8,187.4 L480.1,170.0" stroke="#6c604a" stroke-width="3.4"/><path d="M427.4,204.7 L389.5,213.4 L354.3,230.4" stroke="#6c604a" stroke-width="3.4"/><path d="M187.4,191.0 L209.6,217.1 L237.2,237.8" stroke="#6c604a" stroke-width="3.4"/><path d="M293.0,298.6 L268.0,268.2 L237.2,237.8" stroke="#6c604a" stroke-width="3.4"/><path d="M239.1,424.3 L252.3,450.4 L269.4,477.8" stroke="#6c604a" stroke-width="3.4"/><path d="M317.9,162.8 L349.8,142.3 L377.1,137.0" stroke="#6c604a" stroke-width="3.4"/><path d="M259.1,332.8 L220.6,332.4 L182.0,328.1" stroke="#6c604a" stroke-width="3.4"/><path d="M182.0,328.1 L168.2,291.7 L156.4,251.5" stroke="#6c604a" stroke-width="3.4"/><path d="M323.0,493.6 L311.3,446.7 L322.0,410.1" stroke="#6c604a" stroke-width="3.4"/><path d="M384.5,349.7 L413.4,329.0 L435.3,292.0" stroke="#6c604a" stroke-width="3.4"/><path d="M293.0,298.6 L94.9,318.9" stroke="#6c604a" stroke-width="4.8"/><path d="M293.0,298.6 L442.3,100.4" stroke="#6c604a" stroke-width="4.8"/><path d="M293.0,298.6 L415.5,507.0" stroke="#6c604a" stroke-width="4.8"/><path d="M468.3,230.9 L491.9,227.6 L509.3,229.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M468.3,230.9 L448.6,216.4 L427.4,204.7" stroke="#e4d9bc" stroke-width="1.8"/><path d="M427.4,204.7 L406.2,193.3 L395.3,178.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M395.3,178.0 L377.0,185.7 L356.3,186.6" stroke="#e4d9bc" stroke-width="1.8"/><path d="M356.3,186.6 L355.3,206.4 L354.3,230.4" stroke="#e4d9bc" stroke-width="1.8"/><path d="M395.3,178.0 L390.1,157.4 L377.1,137.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M377.1,137.0 L384.3,119.2 L394.7,101.7" stroke="#e4d9bc" stroke-width="1.8"/><path d="M356.3,186.6 L339.1,177.4 L317.9,162.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M427.4,204.7 L414.0,226.3 L405.2,248.3" stroke="#e4d9bc" stroke-width="1.8"/><path d="M405.2,248.3 L390.3,270.1 L387.7,297.5" stroke="#e4d9bc" stroke-width="1.8"/><path d="M387.7,297.5 L411.4,301.8 L435.3,292.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M435.3,292.0 L448.9,308.2 L468.5,323.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M468.5,323.0 L485.0,310.9 L500.9,291.2" stroke="#e4d9bc" stroke-width="1.8"/><path d="M468.5,323.0 L453.1,338.5 L439.0,357.9" stroke="#e4d9bc" stroke-width="1.8"/><path d="M387.7,297.5 L365.1,291.6 L340.5,288.2" stroke="#e4d9bc" stroke-width="1.8"/><path d="M340.5,288.2 L318.0,296.0 L293.0,298.6" stroke="#e4d9bc" stroke-width="1.8"/><path d="M293.0,298.6 L278.2,318.3 L259.1,332.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M259.1,332.8 L244.4,350.3 L239.8,371.1" stroke="#e4d9bc" stroke-width="1.8"/><path d="M239.8,371.1 L219.0,374.4 L200.8,381.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M200.8,381.8 L187.3,396.5 L174.3,410.5" stroke="#e4d9bc" stroke-width="1.8"/><path d="M174.3,410.5 L161.3,401.9 L149.2,389.3" stroke="#e4d9bc" stroke-width="1.8"/><path d="M174.3,410.5 L171.9,427.2 L177.9,444.4" stroke="#e4d9bc" stroke-width="1.8"/><path d="M177.9,444.4 L194.0,441.6 L207.5,433.5" stroke="#e4d9bc" stroke-width="1.8"/><path d="M207.5,433.5 L221.1,428.7 L239.1,424.3" stroke="#e4d9bc" stroke-width="1.8"/><path d="M177.9,444.4 L178.7,461.4 L174.7,479.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M174.7,479.0 L161.1,489.7 L149.5,496.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M177.9,444.4 L159.2,443.4 L138.7,454.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M138.7,454.8 L129.6,440.9 L119.1,425.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M239.1,424.3 L257.4,423.1 L280.8,424.2" stroke="#e4d9bc" stroke-width="1.8"/><path d="M149.2,389.3 L148.6,368.6 L135.5,348.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M135.5,348.8 L114.3,359.0 L107.6,378.3" stroke="#e4d9bc" stroke-width="1.8"/><path d="M280.8,424.2 L304.0,424.4 L322.0,410.1" stroke="#e4d9bc" stroke-width="1.8"/><path d="M322.0,410.1 L331.1,425.1 L348.5,437.6" stroke="#e4d9bc" stroke-width="1.8"/><path d="M348.5,437.6 L366.9,425.5 L376.3,405.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M376.3,405.0 L392.7,414.7 L410.8,420.1" stroke="#e4d9bc" stroke-width="1.8"/><path d="M207.5,433.5 L213.4,453.1 L222.1,475.7" stroke="#e4d9bc" stroke-width="1.8"/><path d="M410.8,420.1 L430.0,416.1 L455.4,417.1" stroke="#e4d9bc" stroke-width="1.8"/><path d="M135.5,348.8 L123.3,332.1 L121.6,305.7" stroke="#e4d9bc" stroke-width="1.8"/><path d="M222.1,475.7 L243.2,481.3 L269.4,477.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M322.0,410.1 L309.0,392.8 L294.0,371.6" stroke="#e4d9bc" stroke-width="1.8"/><path d="M294.0,371.6 L315.0,360.7 L337.6,358.9" stroke="#e4d9bc" stroke-width="1.8"/><path d="M337.6,358.9 L357.9,352.7 L384.5,349.7" stroke="#e4d9bc" stroke-width="1.8"/><path d="M222.1,475.7 L218.1,498.3 L204.0,521.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M135.5,348.8 L157.6,341.8 L182.0,328.1" stroke="#e4d9bc" stroke-width="1.8"/><path d="M468.5,323.0 L489.3,341.2 L492.5,369.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M317.9,162.8 L313.7,137.7 L311.8,108.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M354.3,230.4 L326.9,228.0 L298.8,230.7" stroke="#e4d9bc" stroke-width="1.8"/><path d="M269.4,477.8 L296.4,478.9 L323.0,493.6" stroke="#e4d9bc" stroke-width="1.8"/><path d="M323.0,493.6 L345.9,504.6 L368.4,496.5" stroke="#e4d9bc" stroke-width="1.8"/><path d="M368.4,496.5 L391.7,486.2 L417.6,475.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M182.0,328.1 L199.8,308.8 L221.0,287.6" stroke="#e4d9bc" stroke-width="1.8"/><path d="M221.0,287.6 L231.2,262.0 L237.2,237.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M237.2,237.8 L245.2,210.1 L259.6,185.3" stroke="#e4d9bc" stroke-width="1.8"/><path d="M259.6,185.3 L251.5,162.3 L239.9,138.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M395.3,178.0 L417.0,163.3 L440.8,141.9" stroke="#e4d9bc" stroke-width="1.8"/><path d="M440.8,141.9 L461.2,153.1 L480.1,170.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M269.4,477.8 L266.8,505.8 L276.6,535.5" stroke="#e4d9bc" stroke-width="1.8"/><path d="M121.6,305.7 L134.1,279.5 L156.4,251.5" stroke="#e4d9bc" stroke-width="1.8"/><path d="M156.4,251.5 L168.3,218.5 L187.4,191.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M468.3,230.9 L477.1,262.3 L500.9,291.2" stroke="#e4d9bc" stroke-width="1.8"/><path d="M395.3,178.0 L387.0,211.0 L354.3,230.4" stroke="#e4d9bc" stroke-width="1.8"/><path d="M138.7,454.8 L156.6,466.0 L174.7,479.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M427.4,204.7 L453.8,187.4 L480.1,170.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M427.4,204.7 L389.5,213.4 L354.3,230.4" stroke="#e4d9bc" stroke-width="1.8"/><path d="M187.4,191.0 L209.6,217.1 L237.2,237.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M293.0,298.6 L268.0,268.2 L237.2,237.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M239.1,424.3 L252.3,450.4 L269.4,477.8" stroke="#e4d9bc" stroke-width="1.8"/><path d="M317.9,162.8 L349.8,142.3 L377.1,137.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M259.1,332.8 L220.6,332.4 L182.0,328.1" stroke="#e4d9bc" stroke-width="1.8"/><path d="M182.0,328.1 L168.2,291.7 L156.4,251.5" stroke="#e4d9bc" stroke-width="1.8"/><path d="M323.0,493.6 L311.3,446.7 L322.0,410.1" stroke="#e4d9bc" stroke-width="1.8"/><path d="M384.5,349.7 L413.4,329.0 L435.3,292.0" stroke="#e4d9bc" stroke-width="1.8"/><path d="M293.0,298.6 L94.9,318.9" stroke="#e4d9bc" stroke-width="3.2"/><path d="M293.0,298.6 L442.3,100.4" stroke="#e4d9bc" stroke-width="3.2"/><path d="M293.0,298.6 L415.5,507.0" stroke="#e4d9bc" stroke-width="3.2"/></g><polygon points="91.0,357.2 94.9,318.9 104.2,280.9 118.4,244.2 137.1,209.5 159.8,177.5 186.1,149.0 215.3,124.5 246.7,104.5 279.9,89.6 313.9,80.1 348.0,76.3 381.3,78.5 413.0,86.6 442.3,100.4 468.2,119.7 490.3,143.9 507.8,172.2 520.5,204.0 528.1,238.3 530.4,274.4 527.7,311.2 519.9,348.1 507.3,384.3 490.3,419.0 469.0,451.4 443.9,481.0 415.5,507.0 384.3,528.7 350.9,545.5 316.2,556.7 280.9,562.0 246.1,560.9 212.7,553.4 181.8,539.5 154.3,519.7 131.1,494.5 112.8,464.7 99.9,431.2 92.6,395.0" fill="none" stroke="#3c3628" stroke-width="1.5"/><g font-family="Georgia, serif" font-size="8" text-anchor="middle"><text x="468.3" y="233.9" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="395.3" y="181.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="121.6" y="308.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="417.6" y="478.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="177.9" y="447.4" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Temple</text><text x="204.0" y="524.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Temple</text><text x="138.7" y="457.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="427.4" y="207.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="480.1" y="173.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="187.4" y="194.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="259.6" y="188.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="376.3" y="408.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="200.8" y="384.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="174.3" y="413.5" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Temple</text><text x="149.5" y="499.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="439.0" y="360.9" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Temple</text><text x="293.0" y="301.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Market</text><text x="239.1" y="427.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="317.9" y="165.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="354.3" y="233.4" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Garrison</text><text x="387.7" y="300.5" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Garrison</text><text x="377.1" y="140.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="348.5" y="440.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="259.1" y="335.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="269.4" y="480.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="182.0" y="331.1" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="509.3" y="232.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="405.2" y="251.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="323.0" y="496.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="368.4" y="499.5" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="156.4" y="254.5" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="239.8" y="374.1" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="298.8" y="233.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="440.8" y="144.9" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="119.1" y="428.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="222.1" y="478.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="135.5" y="351.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="237.2" y="240.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="356.3" y="189.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="239.9" y="141.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="149.2" y="392.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="276.6" y="538.5" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="384.5" y="352.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="455.4" y="420.1" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="337.6" y="361.9" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="340.5" y="291.2" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="207.5" y="436.5" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Temple</text><text x="435.3" y="295.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="280.8" y="427.2" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="410.8" y="423.1" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Temple</text><text x="174.7" y="482.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="107.6" y="381.3" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="322.0" y="413.1" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text><text x="394.7" y="104.7" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="492.5" y="372.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Noble</text><text x="311.8" y="111.8" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="468.5" y="326.0" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Temple</text><text x="294.0" y="374.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Craftsmen</text><text x="221.0" y="290.6" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Temple</text><text x="500.9" y="294.2" stroke="#f7f3ea" stroke-width="2.5" paint-order="stroke" fill="#23211c">Residential</text></g><text x="315.0" y="20" text-anchor="middle" font-family="Georgia, serif" font-size="16" font-weight="bold" stroke="#f7f3ea" stroke-width="3" paint-order="stroke" fill="#23211c">Ironhollowaymarch</text></svg>