-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathni_towns_tsp.html
2293 lines (1504 loc) · 174 KB
/
ni_towns_tsp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_1a0bb0e2cd4e90690b6f77b4cf6f68b9 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-minimap/3.6.1/Control.MiniMap.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet-minimap/3.6.1/Control.MiniMap.css"/>
</head>
<body>
<div class="folium-map" id="map_1a0bb0e2cd4e90690b6f77b4cf6f68b9" ></div>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>NI TSP</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer"/>
<link rel="stylesheet" href="src/ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$(function() {
$("#ui-container, #title-container, #project-container").draggable({
start: function(event, ui) {
$(this).css({
right: "auto",
top: "auto",
bottom: "auto"
});
}
});
});
</script>
</head>
<body>
<div class="ui-container" id="title-container">
<div class="map-title">
<p>Northern Ireland Travelling Salesman Problem</p>
</div>
</div>
<div id="ui-container" class="ui-container">
<div class="index-container">
<div class='legend-scale'>
<table style="width: auto; font-size: 12px; line-height: 1.2;">
<thead>
<tr>
<th>Stop</th>
<th>From</th>
<th>To</th>
<th>Distance<br>(miles)</th>
<th>Cumulative<br>Distance<br>(miles)</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Belfast</td>
<td>Castlereagh</td>
<td>3.50</td>
<td>3.50</td>
</tr>
<tr>
<td>2</td>
<td>Castlereagh</td>
<td>Carryduff</td>
<td>5.05</td>
<td>8.55</td>
</tr>
<tr>
<td>3</td>
<td>Carryduff</td>
<td>Comber</td>
<td>6.78</td>
<td>15.33</td>
</tr>
<tr>
<td>4</td>
<td>Comber</td>
<td>Newtownards</td>
<td>4.23</td>
<td>19.56</td>
</tr>
<tr>
<td>5</td>
<td>Newtownards</td>
<td>Donaghadee</td>
<td>8.08</td>
<td>27.63</td>
</tr>
<tr>
<td>6</td>
<td>Donaghadee</td>
<td>Bangor</td>
<td>5.82</td>
<td>33.45</td>
</tr>
<tr>
<td>7</td>
<td>Bangor</td>
<td>Holywood</td>
<td>7.39</td>
<td>40.84</td>
</tr>
<tr>
<td>8</td>
<td>Holywood</td>
<td>Newtownabbey</td>
<td>10.52</td>
<td>51.36</td>
</tr>
<tr>
<td>9</td>
<td>Newtownabbey</td>
<td>Greenisland</td>
<td>3.45</td>
<td>54.81</td>
</tr>
<tr>
<td>10</td>
<td>Greenisland</td>
<td>Carrickfergus</td>
<td>3.43</td>
<td>58.24</td>
</tr>
<tr>
<td>11</td>
<td>Carrickfergus</td>
<td>Larne</td>
<td>10.81</td>
<td>69.05</td>
</tr>
<tr>
<td>12</td>
<td>Larne</td>
<td>Ballyclare</td>
<td>10.81</td>
<td>79.86</td>
</tr>
<tr>
<td>13</td>
<td>Ballyclare</td>
<td>Crumlin</td>
<td>14.45</td>
<td>94.31</td>
</tr>
<tr>
<td>14</td>
<td>Crumlin</td>
<td>Antrim</td>
<td>8.68</td>
<td>102.99</td>
</tr>
<tr>
<td>15</td>
<td>Antrim</td>
<td>Randalstown</td>
<td>5.24</td>
<td>108.23</td>
</tr>
<tr>
<td>16</td>
<td>Randalstown</td>
<td>Ballymena</td>
<td>9.71</td>
<td>117.94</td>
</tr>
<tr>
<td>17</td>
<td>Ballymena</td>
<td>Ballymoney</td>
<td>18.35</td>
<td>136.29</td>
</tr>
<tr>
<td>18</td>
<td>Ballymoney</td>
<td>Ballycastle</td>
<td>15.35</td>
<td>151.64</td>
</tr>
<tr>
<td>19</td>
<td>Ballycastle</td>
<td>Portrush</td>
<td>17.88</td>
<td>169.52</td>
</tr>
<tr>
<td>20</td>
<td>Portrush</td>
<td>Portstewart</td>
<td>4.05</td>
<td>173.57</td>
</tr>
<tr>
<td>21</td>
<td>Portstewart</td>
<td>Coleraine</td>
<td>4.29</td>
<td>177.86</td>
</tr>
<tr>
<td>22</td>
<td>Coleraine</td>
<td>Limavady</td>
<td>14.54</td>
<td>192.40</td>
</tr>
<tr>
<td>23</td>
<td>Limavady</td>
<td>Londonderry</td>
<td>17.75</td>
<td>210.15</td>
</tr>
<tr>
<td>24</td>
<td>Londonderry</td>
<td>Strabane</td>
<td>14.70</td>
<td>224.85</td>
</tr>
<tr>
<td>25</td>
<td>Strabane</td>
<td>Enniskillen</td>
<td>37.67</td>
<td>262.52</td>
</tr>
<tr>
<td>26</td>
<td>Enniskillen</td>
<td>Omagh</td>
<td>24.63</td>
<td>287.15</td>
</tr>
<tr>
<td>27</td>
<td>Omagh</td>
<td>Cookstown</td>
<td>24.18</td>
<td>311.33</td>
</tr>
<tr>
<td>28</td>
<td>Cookstown</td>
<td>Magherafelt</td>
<td>9.93</td>
<td>321.26</td>
</tr>
<tr>
<td>29</td>
<td>Magherafelt</td>
<td>Coalisland</td>
<td>17.00</td>
<td>338.26</td>
</tr>
<tr>
<td>30</td>
<td>Coalisland</td>
<td>Dungannon</td>
<td>4.29</td>
<td>342.55</td>
</tr>
<tr>
<td>31</td>
<td>Dungannon</td>
<td>Armagh</td>
<td>16.11</td>
<td>358.66</td>
</tr>
<tr>
<td>32</td>
<td>Armagh</td>
<td>Portadown</td>
<td>14.98</td>
<td>373.64</td>
</tr>
<tr>
<td>33</td>
<td>Portadown</td>
<td>Craigavon</td>
<td>2.59</td>
<td>376.23</td>
</tr>
<tr>
<td>34</td>
<td>Craigavon</td>
<td>Lurgan</td>
<td>3.10</td>
<td>379.33</td>
</tr>
<tr>
<td>35</td>
<td>Lurgan</td>
<td>Dromore (County Down)</td>
<td>8.75</td>
<td>388.08</td>
</tr>
<tr>
<td>36</td>
<td>Dromore (County Down)</td>
<td>Banbridge</td>
<td>7.30</td>
<td>395.39</td>
</tr>
<tr>
<td>37</td>
<td>Banbridge</td>
<td>Newry</td>
<td>13.38</td>
<td>408.77</td>
</tr>
<tr>
<td>38</td>
<td>Newry</td>
<td>Warrenpoint</td>
<td>6.75</td>
<td>415.52</td>
</tr>
<tr>
<td>39</td>
<td>Warrenpoint</td>
<td>Kilkeel</td>
<td>11.65</td>
<td>427.16</td>
</tr>
<tr>
<td>40</td>
<td>Kilkeel</td>
<td>Newcastle</td>
<td>13.09</td>
<td>440.26</td>
</tr>
<tr>
<td>41</td>
<td>Newcastle</td>
<td>Downpatrick</td>
<td>12.44</td>
<td>452.70</td>
</tr>
<tr>
<td>42</td>
<td>Downpatrick</td>
<td>Ballynahinch</td>
<td>9.64</td>
<td>462.33</td>
</tr>
<tr>
<td>43</td>
<td>Ballynahinch</td>
<td>Lisburn</td>
<td>10.91</td>
<td>473.25</td>
</tr>
<tr>
<td>44</td>
<td>Lisburn</td>
<td>Belfast</td>
<td>8.50</td>
<td>481.75</td>
</tr>
</tbody>
</table>
<div class="leaflet-control-layers-separator"></div>
<p style="font-weight: bold; text-decoration: underline double;">Total Distance: 481.75 miles</p>
</div>
</div>
</div>
</body>
</html>
</body>
<script>
var map_1a0bb0e2cd4e90690b6f77b4cf6f68b9 = L.map(
"map_1a0bb0e2cd4e90690b6f77b4cf6f68b9",
{
center: [54.62936818181818, -6.304368181818182],
crs: L.CRS.EPSG3857,
...{
"zoom": 9,
"zoomControl": false,
"preferCanvas": false,
}
}
);
var tile_layer_616a5f13ae6e434b8e943e3035fce4ad = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{
"minZoom": 0,
"maxZoom": 19,
"maxNativeZoom": 19,
"noWrap": false,
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors",
"subdomains": "abc",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_616a5f13ae6e434b8e943e3035fce4ad.addTo(map_1a0bb0e2cd4e90690b6f77b4cf6f68b9);
var tile_layer_fcc20388269af361a410d8fa24b66c9b = L.tileLayer(
"https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"https://carto.com/attributions\"\u003eCARTO\u003c/a\u003e", "detect_retina": false, "max_native_zoom": 20, "max_zoom": 20, "min_zoom": 0, "no_wrap": false, "opacity": 1, "subdomains": "abcd", "tms": false}
);
var mini_map_831154c1ec327df2714490b94d9c7897 = new L.Control.MiniMap(
tile_layer_fcc20388269af361a410d8fa24b66c9b,
{
"position": "bottomright",
"width": 140,
"height": 100,
"collapsedWidth": 25,
"collapsedHeight": 25,
"zoomLevelOffset": -5,
"centerFixed": false,
"zoomAnimation": false,
"toggleDisplay": true,
"autoToggleDisplay": false,
"minimized": false,
}
);
map_1a0bb0e2cd4e90690b6f77b4cf6f68b9.addControl(mini_map_831154c1ec327df2714490b94d9c7897);
var feature_group_8cf0b5ebfff99aa2505c1404fb524875 = L.featureGroup(
{
}
);
var poly_line_d701b3985b69b301cf415b7db6f89e32 = L.polyline(
[[54.5960145, -5.9299934], [54.5959442, -5.9313947], [54.5954138, -5.9313328], [54.5949643, -5.9312751], [54.5941103, -5.9311922], [54.5936894, -5.9311505], [54.5935046, -5.9312045], [54.593083, -5.9304068], [54.5929206, -5.9296046], [54.5927232, -5.9286231], [54.5926303, -5.928163], [54.5924621, -5.927329], [54.5924105, -5.9270733], [54.5923049, -5.9265782], [54.5922053, -5.9261366], [54.5921079, -5.9257853], [54.5918364, -5.9258643], [54.5911209, -5.925558], [54.5904256, -5.9252595], [54.5894558, -5.9248113], [54.5881427, -5.9241975], [54.5879693, -5.924113], [54.5874038, -5.9238483], [54.5873343, -5.9238144], [54.5864835, -5.9234313], [54.5859609, -5.9232152], [54.5855238, -5.9230313], [54.5854693, -5.9230027], [54.5851709, -5.9228666], [54.5849173, -5.9227567], [54.5848196, -5.9227196], [54.5844582, -5.922565], [54.5840975, -5.9224161], [54.5839585, -5.9223553], [54.5836215, -5.922227], [54.5833816, -5.922134], [54.5824391, -5.9217398], [54.5820363, -5.9215657], [54.5814084, -5.9212702], [54.5806243, -5.9208025], [54.5798687, -5.9202492], [54.5798056, -5.9202086], [54.5797752, -5.9160377], [54.5797027, -5.9125202], [54.580152, -5.9124272], [54.5815319, -5.9121414], [54.5820441, -5.9120354], [54.5817409, -5.9093912], [54.5823187, -5.9091674], [54.5831652, -5.9088148], [54.5825003, -5.9049048], [54.5820164, -5.9021747], [54.5821233, -5.9008048], [54.5813977, -5.9005389], [54.580727, -5.9002935], [54.5799713, -5.9000093], [54.5803351, -5.8974258], [54.5795545, -5.8971515], [54.579043, -5.8969611], [54.578994, -5.8966722], [54.5788413, -5.8966027], [54.5787176, -5.8968179], [54.577266, -5.8963329], [54.5773424, -5.8953676], [54.5774872, -5.8934966], [54.5775525, -5.8926572], [54.5772893, -5.88849], [54.5768339, -5.8883917], [54.577053, -5.8860866], [54.5765712, -5.8831909], [54.5763846, -5.8831361], [54.5764546, -5.8823177]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_8136da0059845497e87c58bda411937c = L.polyline(
[[54.5764546, -5.8823177], [54.5763846, -5.8831361], [54.5756954, -5.8829414], [54.5749389, -5.8826499], [54.5746273, -5.8832877], [54.5741714, -5.8825575], [54.5739332, -5.8830125], [54.5729589, -5.8846981], [54.5733695, -5.8853689], [54.5721546, -5.8875624], [54.5716712, -5.8868587], [54.571315, -5.8875885], [54.5717547, -5.8883231], [54.5712583, -5.8893327], [54.5711302, -5.8903364], [54.5708455, -5.8935414], [54.5708078, -5.8939584], [54.570628, -5.8938803], [54.5699648, -5.8935879], [54.56976, -5.8934867], [54.5695682, -5.8933823], [54.5694348, -5.8933044], [54.5690969, -5.8944961], [54.5688358, -5.8953388], [54.5666374, -5.9018432], [54.5642234, -5.905854], [54.5640022, -5.9061965], [54.56172, -5.9090415], [54.5605519, -5.9093901], [54.5601219, -5.9094733], [54.5590631, -5.9092511], [54.558033, -5.9090176], [54.5578918, -5.9089589], [54.5571882, -5.9085517], [54.5558674, -5.9077055], [54.5556744, -5.9076371], [54.5550075, -5.9078301], [54.5543654, -5.9084035], [54.5527658, -5.9091923], [54.5519849, -5.9089175], [54.5512522, -5.9083323], [54.5493905, -5.9067202], [54.5491692, -5.9065323], [54.5486305, -5.906079], [54.5475479, -5.9052326], [54.5471612, -5.9048962], [54.5470926, -5.9048348], [54.5468115, -5.9045976], [54.5466172, -5.9044425], [54.5449284, -5.9030768], [54.5448408, -5.9030004], [54.543511, -5.9022817], [54.5406963, -5.9009686], [54.5403957, -5.9007734], [54.5402132, -5.9006082], [54.5397328, -5.9000571], [54.5359968, -5.8967928], [54.5326734, -5.8958859], [54.5319441, -5.8957067], [54.5299616, -5.8955287], [54.5282667, -5.8933114], [54.5277394, -5.8924907], [54.5254587, -5.8904799], [54.5251412, -5.8902553], [54.524822, -5.8900116], [54.5228195, -5.8883457], [54.520542, -5.8873972], [54.5193616, -5.8876007], [54.518744, -5.8872212], [54.5186919, -5.8871771], [54.5186553, -5.8871463], [54.5182877, -5.8872561]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_05d179294370c35ebff13f851dae92c9 = L.polyline(
[[54.5182877, -5.8872561], [54.5182464, -5.8873837], [54.5183097, -5.88778], [54.5183467, -5.8878269], [54.5186185, -5.887947], [54.5187494, -5.8878976], [54.518744, -5.8872212], [54.5186919, -5.8871771], [54.5186553, -5.8871463], [54.5181823, -5.8865797], [54.5174664, -5.8855868], [54.5160271, -5.8832364], [54.5158772, -5.8829824], [54.5188129, -5.870221], [54.5195216, -5.8624702], [54.5200825, -5.8568348], [54.5201193, -5.8520397], [54.5272559, -5.8309859], [54.5277939, -5.8298309], [54.5287136, -5.8278804], [54.5293356, -5.8264221], [54.5307848, -5.8242824], [54.5327611, -5.8223906], [54.5320731, -5.8216429], [54.5333975, -5.8197761], [54.536738, -5.8095659], [54.536805, -5.8023315], [54.5366461, -5.7863557], [54.5375221, -5.7760323], [54.5374114, -5.7710823], [54.5433818, -5.7634897], [54.5452859, -5.7593383], [54.5456474, -5.758539], [54.5465041, -5.7567308], [54.547161, -5.7553197], [54.547966, -5.7524795], [54.5482405, -5.7518842], [54.5490461, -5.7496813], [54.5495997, -5.7482058], [54.549882, -5.7474948], [54.5504252, -5.7457239], [54.5504453, -5.7456431], [54.5499489, -5.7452834]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_5d9478922f4b902a4365b9108b946ab0 = L.polyline(
[[54.5499489, -5.7452834], [54.5501914, -5.74471], [54.5506062, -5.7449887], [54.5508673, -5.7440044], [54.5510908, -5.7429739], [54.551364, -5.741737], [54.5514727, -5.7413839], [54.5515346, -5.7411197], [54.551965, -5.7392646], [54.5521327, -5.7385838], [54.552341, -5.7377177], [54.5524919, -5.736791], [54.5524845, -5.7349541], [54.5521615, -5.7317619], [54.5519143, -5.7309353], [54.5513782, -5.7298825], [54.5514277, -5.7296836], [54.555303, -5.7217212], [54.5556505, -5.7209266], [54.5599301, -5.707633], [54.5674139, -5.7010011], [54.575324, -5.6982757], [54.5783644, -5.6981139], [54.5825381, -5.6977636], [54.5839321, -5.6977622], [54.5842819, -5.6979098], [54.5842952, -5.6980303], [54.5844503, -5.6982711], [54.5846572, -5.6981767], [54.5852464, -5.6978988], [54.585458, -5.6979086], [54.5872752, -5.6980934], [54.5876442, -5.6980927], [54.5885358, -5.6978295], [54.5896809, -5.6974354], [54.5899855, -5.6973264], [54.5900837, -5.6972926], [54.5915536, -5.6967562], [54.5923542, -5.69646], [54.593016, -5.6962603]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_b3e1b17c88e50de0b26eef38cd8e4848 = L.polyline(
[[54.593016, -5.6962603], [54.5923542, -5.69646], [54.5915536, -5.6967562], [54.5912955, -5.6936553], [54.5914407, -5.6934006], [54.5920587, -5.6929242], [54.5922901, -5.6928612], [54.5922537, -5.6927972], [54.5919943, -5.6908381], [54.5918797, -5.6897068], [54.5926466, -5.6891518], [54.5926517, -5.6887707], [54.5924719, -5.6877067], [54.5928128, -5.6875173], [54.5928564, -5.6861325], [54.5928978, -5.6856895], [54.5929391, -5.6852576], [54.5931883, -5.6836115], [54.5933263, -5.6829714], [54.593392, -5.6827214], [54.5934792, -5.6824042], [54.5936024, -5.6819525], [54.5936508, -5.6817855], [54.5938777, -5.6810174], [54.594923, -5.6784019], [54.5949864, -5.6780029], [54.5950211, -5.6772878], [54.5950218, -5.6771552], [54.5949897, -5.6763863], [54.5960515, -5.6750036], [54.596024, -5.6744601], [54.5958666, -5.6724904], [54.5956836, -5.671201], [54.5953263, -5.6693181], [54.5948756, -5.6654429], [54.5948565, -5.6648089], [54.5948893, -5.6628052], [54.5950046, -5.6603485], [54.5950968, -5.6596571], [54.5952421, -5.6588552], [54.5955133, -5.6574763], [54.5984749, -5.6468664], [54.6017348, -5.634709], [54.6041568, -5.6260514], [54.6080191, -5.6061617], [54.6081073, -5.60572], [54.6099092, -5.600814], [54.6114471, -5.5960178], [54.6119786, -5.594649], [54.6142033, -5.5898494], [54.6173162, -5.5830238], [54.622196, -5.5706445], [54.6262668, -5.558858], [54.62628, -5.5588239], [54.6332976, -5.5440976], [54.6335458, -5.5439469], [54.6344948, -5.5429715], [54.6365521, -5.5396983], [54.6366786, -5.5392733], [54.6388693, -5.536984], [54.6405628, -5.5347301], [54.6407781, -5.5349526], [54.6415684, -5.536012], [54.6417012, -5.5362671], [54.6421319, -5.5369824], [54.6424567, -5.5374731]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_e870c1d98d714180e38e7f353d041a54 = L.polyline(
[[54.6424567, -5.5374731], [54.6425879, -5.5377869], [54.6430119, -5.5394552], [54.6438847, -5.5429384], [54.6440446, -5.5439938], [54.6441952, -5.5449815], [54.6442365, -5.5453832], [54.6444677, -5.5479921], [54.6444728, -5.5485707], [54.6447026, -5.5496526], [54.6451911, -5.5522113], [54.6460285, -5.5569346], [54.6462436, -5.5586682], [54.6473705, -5.5630683], [54.6512227, -5.5814601], [54.6514923, -5.5860084], [54.6515983, -5.6060337], [54.651641, -5.6062204], [54.6536892, -5.6144039], [54.6568186, -5.6271484], [54.6570393, -5.6282549], [54.6574932, -5.6306461], [54.6577484, -5.6319715], [54.6577792, -5.6321406], [54.6578379, -5.6324494], [54.6577441, -5.6330239], [54.6577126, -5.6331548], [54.657897, -5.6337562], [54.6579383, -5.633776], [54.6581681, -5.63416], [54.6582433, -5.6345487], [54.6584154, -5.6354203], [54.6585276, -5.6359983], [54.6586209, -5.6364921], [54.6592794, -5.6398076], [54.6593612, -5.640225], [54.6596149, -5.6415314], [54.659677, -5.6418486], [54.6600229, -5.6436364], [54.6601888, -5.6444711], [54.6604275, -5.6458084], [54.660575, -5.6466712], [54.6608495, -5.6482492], [54.6612626, -5.6504621], [54.6613116, -5.6506899], [54.6614227, -5.6512313], [54.6614924, -5.651576], [54.6616788, -5.6525092], [54.661769, -5.6529729], [54.6622452, -5.6554516], [54.6622771, -5.6556215], [54.66243, -5.6564453], [54.662665, -5.6577354], [54.6627636, -5.6582722], [54.6629337, -5.6591836], [54.6628978, -5.6593034], [54.6629673, -5.6593624], [54.663299, -5.6611408], [54.6633207, -5.6616304], [54.6633771, -5.6630012], [54.6633989, -5.6635505], [54.6634464, -5.6642443], [54.6647406, -5.6645592], [54.6648361, -5.6646135], [54.664719, -5.6657173], [54.6645771, -5.6675278], [54.6640934, -5.6674446], [54.663676, -5.6673509], [54.6630094, -5.668035]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_205cc6f55d91a6b2cee96a774019270e = L.polyline(
[[54.6630094, -5.668035], [54.6630194, -5.6683854], [54.6625234, -5.6713798], [54.6618656, -5.6727813], [54.6610816, -5.674484], [54.6609155, -5.6745273], [54.6607838, -5.674903], [54.6606938, -5.6767932], [54.6606734, -5.6773555], [54.6606507, -5.6779784], [54.6606065, -5.6791954], [54.6605643, -5.6806151], [54.6605333, -5.6868255], [54.6604164, -5.6870142], [54.6603901, -5.6870243], [54.6603212, -5.6871311], [54.6603391, -5.6874393], [54.6603539, -5.6874786], [54.6603653, -5.6882588], [54.6602615, -5.6885798], [54.6601459, -5.6904637], [54.6601741, -5.6910206], [54.6602266, -5.6925393], [54.660094, -5.6945783], [54.6601157, -5.6949761], [54.6602404, -5.6962391], [54.6602661, -5.6965379], [54.6603308, -5.6974596], [54.6603654, -5.6979721], [54.6604042, -5.6985032], [54.660464, -5.6990844], [54.6606219, -5.6999871], [54.6606881, -5.7029454], [54.6606678, -5.7032441], [54.6605943, -5.7060873], [54.6605155, -5.7085979], [54.6605806, -5.7093186], [54.6606826, -5.7105106], [54.6607483, -5.713174], [54.6607696, -5.7135827], [54.6607764, -5.7137127], [54.6607847, -5.7138723], [54.659618, -5.7226871], [54.6587477, -5.7257772], [54.6583623, -5.7274976], [54.6587568, -5.72931], [54.6583709, -5.7335676], [54.6583249, -5.7379116], [54.657952, -5.7386976], [54.6578215, -5.7400321], [54.6578093, -5.7404004], [54.6554904, -5.7549134], [54.6552735, -5.7551161], [54.6554109, -5.7555183], [54.6559204, -5.7569645], [54.6566515, -5.7632589], [54.6566897, -5.7641424], [54.6567054, -5.7645444], [54.6574926, -5.77028], [54.6581628, -5.7722243], [54.6576737, -5.7748888], [54.6576991, -5.7753696], [54.6576917, -5.7777605], [54.6572986, -5.7801351], [54.6563731, -5.7846221], [54.6560502, -5.7862815], [54.6548701, -5.7907084], [54.6541733, -5.7926011], [54.6541119, -5.7927472], [54.6540001, -5.7930065], [54.6527392, -5.7965026], [54.652535, -5.7971611], [54.6524203, -5.7975727], [54.6520821, -5.7991525], [54.6519623, -5.7997798], [54.6503884, -5.8050595], [54.6481231, -5.8100104], [54.6476059, -5.8114374], [54.6474362, -5.8121828], [54.6470668, -5.813572], [54.6464545, -5.8151153], [54.6464206, -5.8151776], [54.6448627, -5.8182869], [54.6444735, -5.8245837], [54.6446317, -5.8264537], [54.6444506, -5.8265726], [54.6439614, -5.8279786], [54.6437883, -5.8284684], [54.6428062, -5.8314063], [54.642901, -5.8316924], [54.642802, -5.8330142], [54.6419018, -5.8342897], [54.6404667, -5.8363875]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_10d8b076cc37fe6dacadca0c9a727e59 = L.polyline(
[[54.6404667, -5.8363875], [54.6402645, -5.8366755], [54.6390131, -5.8384778], [54.6379342, -5.8393729], [54.6355172, -5.842275], [54.6349674, -5.8435917], [54.6325161, -5.8463642], [54.6321877, -5.8465773], [54.6305592, -5.8479966], [54.6256661, -5.8542016], [54.6245482, -5.8556937], [54.6196248, -5.8602461], [54.619084, -5.8606487], [54.618209, -5.8618242], [54.6179607, -5.8621995], [54.6147021, -5.868724], [54.6121566, -5.872287], [54.6028268, -5.8978233], [54.6028177, -5.9004958], [54.6020856, -5.9184036], [54.6037468, -5.9226852], [54.608868, -5.9228509], [54.6255263, -5.9197578], [54.6336079, -5.9195875], [54.6426401, -5.917525], [54.644968, -5.9167505], [54.646866, -5.9183911], [54.6481375, -5.9196183], [54.6486752, -5.9195416], [54.6494915, -5.9190968], [54.6497696, -5.9188615], [54.6502665, -5.9185776], [54.6516684, -5.9175969], [54.6532478, -5.9144937], [54.6542322, -5.9129658], [54.6545009, -5.9126453], [54.6546274, -5.9124723], [54.6546978, -5.9123661], [54.6550246, -5.9117634], [54.6554843, -5.9111157], [54.65678, -5.9096376], [54.6573645, -5.9094193], [54.6576199, -5.9093324], [54.6579276, -5.9092136], [54.6585254, -5.9089083], [54.6600094, -5.9083092], [54.6602053, -5.9082407], [54.6607782, -5.9086237], [54.6611229, -5.9088249], [54.6616064, -5.9091878], [54.6619725, -5.9094388], [54.6620281, -5.9094741], [54.6637845, -5.9108832], [54.6642909, -5.9112884], [54.6655398, -5.9122174], [54.6658366, -5.9123229], [54.6668622, -5.9125441], [54.6683374, -5.9128073], [54.6684718, -5.9128211], [54.669552, -5.9130114], [54.6696372, -5.913025], [54.6702222, -5.9131289], [54.6717807, -5.9133331], [54.6720245, -5.9133652], [54.6729112, -5.9134326], [54.6732264, -5.9136633], [54.6732675, -5.9137588], [54.6733952, -5.9137482], [54.6734059, -5.9137269], [54.6735781, -5.9137246], [54.6736388, -5.9137238], [54.6740708, -5.9139356], [54.6755184, -5.9148505], [54.6758875, -5.9150912], [54.6780046, -5.916438], [54.6785641, -5.916781], [54.679798, -5.9213291]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_c89f5845494f7ff938ba34de68316d20 = L.polyline(
[[54.679798, -5.9213291], [54.6785641, -5.916781], [54.6791313, -5.9171416], [54.6794196, -5.9173295], [54.6799352, -5.9176552], [54.6815898, -5.9186933], [54.6823568, -5.9191744], [54.6828053, -5.9194652], [54.6834376, -5.9198949], [54.6840798, -5.9197277], [54.6846405, -5.9196019], [54.6886117, -5.9177961], [54.6890068, -5.9176477], [54.6896438, -5.9176246], [54.6898369, -5.9176395], [54.691153, -5.9177136], [54.6919071, -5.9177275], [54.6937095, -5.9177104], [54.6941953, -5.9176929], [54.694494, -5.917693], [54.6964486, -5.9176585], [54.6963484, -5.9153496], [54.696295, -5.9138019], [54.6966357, -5.9093781], [54.6973389, -5.905202], [54.7007533, -5.8891393], [54.7008111, -5.8882982], [54.7017768, -5.8819806], [54.7022904, -5.8797321], [54.7028303, -5.8775829], [54.7028636, -5.8774495], [54.7030654, -5.8766425], [54.7020654, -5.8753672], [54.7020284, -5.8753165], [54.7011441, -5.8741763], [54.7007163, -5.87358], [54.7006919, -5.8734595]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_cef0efb70836e054d7cf75c0f8aeb1a4 = L.polyline(
[[54.7006919, -5.8734595], [54.7007163, -5.87358], [54.7011441, -5.8741763], [54.7020284, -5.8753165], [54.7020654, -5.8753672], [54.7030654, -5.8766425], [54.7040433, -5.8729193], [54.7058939, -5.8686763], [54.7068432, -5.8658644], [54.7109097, -5.8513864], [54.710436, -5.8506104], [54.7058499, -5.8420224], [54.705464, -5.8415713], [54.7052658, -5.8412516], [54.707874, -5.8337325], [54.7081486, -5.8329018], [54.7098375, -5.8275956], [54.7112488, -5.8230106], [54.7115547, -5.8214909], [54.712111, -5.8186727], [54.7124961, -5.8161154], [54.7127114, -5.8143367], [54.7127459, -5.8140608], [54.7130003, -5.8121497], [54.7130407, -5.8118948], [54.7132858, -5.8104219], [54.7134139, -5.810168], [54.7134532, -5.8101393], [54.7135171, -5.809903], [54.7134882, -5.8097873], [54.7134669, -5.8094822], [54.7136358, -5.8086004], [54.7138557, -5.8076679]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_69dc16830461e770855cedc5991fe525 = L.polyline(
[[54.7138557, -5.8076679], [54.7136358, -5.8086004], [54.7134669, -5.8094822], [54.7133546, -5.8097024], [54.7132877, -5.8097607], [54.7132496, -5.8100091], [54.7132673, -5.8100717], [54.7134139, -5.810168], [54.7134532, -5.8101393], [54.7136543, -5.8101542], [54.7139114, -5.8102718], [54.7144931, -5.8102259], [54.7146135, -5.8102107], [54.7153758, -5.8100572], [54.7156385, -5.8100117], [54.7159557, -5.8098993], [54.7161822, -5.809578], [54.7163845, -5.809017], [54.716588, -5.8084563], [54.7188688, -5.8073598], [54.7197626, -5.8074729], [54.7197849, -5.8074771], [54.7207646, -5.8077282], [54.7208838, -5.8077587], [54.7213887, -5.8079249], [54.7219228, -5.8081709], [54.7222296, -5.8083124], [54.7230475, -5.8086503], [54.7253505, -5.8094454], [54.7257916, -5.8096756], [54.7265938, -5.8101328], [54.7280997, -5.8109318], [54.7299243, -5.8116462], [54.7313881, -5.8120605], [54.7321447, -5.8124233], [54.7322632, -5.8124537], [54.7335317, -5.8127995], [54.7337985, -5.812871], [54.7349989, -5.8132562], [54.7350926, -5.8125564], [54.7486456, -5.8160032], [54.7560597, -5.8159027], [54.7661602, -5.8226174], [54.7764924, -5.8194109], [54.7769294, -5.819667], [54.7790524, -5.8203057], [54.7945201, -5.8266213], [54.7986705, -5.8308126], [54.7991064, -5.8306224], [54.8000616, -5.8305843], [54.8013039, -5.8306714], [54.8053092, -5.8317836], [54.8058944, -5.8311287], [54.8121429, -5.8310316], [54.8132906, -5.8312007], [54.8259098, -5.8258186], [54.8261833, -5.8254714], [54.8447109, -5.8231123], [54.8451809, -5.8238444], [54.8460881, -5.8250658], [54.8470668, -5.8255028], [54.847836, -5.825989], [54.8487851, -5.8266767], [54.8489984, -5.8266585], [54.8490515, -5.8254029], [54.8498098, -5.8237292], [54.8498307, -5.822981], [54.8497788, -5.8229886], [54.8489881, -5.8207306], [54.8489407, -5.8206232], [54.848863, -5.8204744], [54.8500276, -5.8163176], [54.8500545, -5.8163126], [54.8502811, -5.8161603], [54.8502936, -5.8161443], [54.8505146, -5.8160952], [54.8508059, -5.8161613], [54.8516185, -5.8163047], [54.8514863, -5.8194852]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_74884360ebd15867bcc4cb9aff6a7a04 = L.polyline(
[[54.8514863, -5.8194852], [54.8513869, -5.8216549], [54.8512059, -5.8230255], [54.8517885, -5.8233589], [54.8518934, -5.8234133], [54.8516413, -5.8248045], [54.8516171, -5.8249296], [54.8514049, -5.825781], [54.851209, -5.8262421], [54.8510268, -5.8263745], [54.8508416, -5.8266486], [54.8508029, -5.8269273], [54.8490331, -5.8385433], [54.848832, -5.8390555], [54.8485507, -5.8397427], [54.8474887, -5.8422649], [54.8467268, -5.8440349], [54.8383505, -5.8594161], [54.8379738, -5.8596018], [54.8379535, -5.8599334], [54.8325432, -5.8724358], [54.8323023, -5.8725049], [54.8320984, -5.872979], [54.8321203, -5.8733671], [54.8220049, -5.8915399], [54.8217131, -5.8918245], [54.8180299, -5.895382], [54.8144272, -5.8993214], [54.8095604, -5.9079383], [54.8043943, -5.9177767], [54.803157, -5.9197117], [54.7883508, -5.9390011], [54.7866865, -5.939391], [54.7865959, -5.939335], [54.7864343, -5.9395091], [54.7864246, -5.9396872], [54.7863052, -5.9401052], [54.7730898, -5.9525821], [54.7729175, -5.9527686], [54.7729058, -5.9527813], [54.7727849, -5.9529121], [54.7720903, -5.9536507], [54.7713442, -5.9546269], [54.7690391, -5.9589272], [54.7687544, -5.9589392], [54.7687443, -5.9589237], [54.7685333, -5.9587853], [54.7683604, -5.9589254], [54.7683132, -5.9594284], [54.7683569, -5.9595441], [54.7684101, -5.9600882], [54.7671617, -5.9635867], [54.766838, -5.9637646], [54.7667764, -5.9637356], [54.7665691, -5.9640779], [54.7665737, -5.9641141], [54.7664487, -5.9645457], [54.7584162, -5.9761622], [54.7549376, -5.9815995], [54.7545625, -5.9835823], [54.7544332, -5.9840805], [54.7542974, -5.9845522], [54.7540178, -5.9854953], [54.7532057, -5.988105], [54.7532766, -5.9896194], [54.7533269, -5.9903543], [54.7526937, -5.9919263], [54.7523574, -5.9925135], [54.7508227, -5.9949007], [54.7501815, -5.9959055], [54.7500531, -5.9965269], [54.7505105, -5.9972279], [54.751003, -5.9982585], [54.7520862, -6.0005765], [54.7520896, -6.0007891], [54.7519602, -6.0011379], [54.7521464, -6.001418], [54.7526278, -6.002101], [54.752749, -6.0020535], [54.7528692, -6.0017221], [54.7528297, -6.0014356], [54.7525932, -6.0012041]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_0949d0b88b5adc405edecad88f87b9d9 = L.polyline(
[[54.7525932, -6.0012041], [54.7522353, -6.000769], [54.7520862, -6.0005765], [54.751003, -5.9982585], [54.7505105, -5.9972279], [54.7500531, -5.9965269], [54.7499147, -5.9967341], [54.7496088, -5.9968288], [54.7489305, -5.9987382], [54.7476841, -5.9997258], [54.7473033, -6.0001445], [54.7465063, -6.0017403], [54.7446791, -6.0043568], [54.7436746, -6.0053369], [54.743388, -6.0051277], [54.7433251, -6.0053252], [54.7431355, -6.00592], [54.7394801, -6.0150474], [54.7392834, -6.0153822], [54.7392569, -6.0153911], [54.7391496, -6.0156093], [54.7391486, -6.0156492], [54.7390053, -6.0160506], [54.7343926, -6.022948], [54.7294037, -6.0333966], [54.7292228, -6.033698], [54.7292067, -6.0337107], [54.7291186, -6.0339989], [54.7291205, -6.0340215], [54.7289718, -6.0347003], [54.7163814, -6.0562317], [54.7138332, -6.0597402], [54.7128074, -6.0614983], [54.7120826, -6.06285], [54.7106359, -6.0660627], [54.7104014, -6.0666488], [54.7094898, -6.0698033], [54.7091531, -6.0709561], [54.7090533, -6.0713643], [54.7089902, -6.0716493], [54.7086604, -6.0731766], [54.7084216, -6.0743023], [54.7065389, -6.0835689], [54.7061604, -6.0854065], [54.7056697, -6.0864923], [54.705438, -6.0864825], [54.7051561, -6.0870239], [54.7051739, -6.0877694], [54.7050368, -6.088905], [54.7049715, -6.089217], [54.7039785, -6.0934032], [54.7038222, -6.0938956], [54.7033118, -6.095566], [54.7020365, -6.0995596], [54.7015582, -6.1012714], [54.7007286, -6.1040953], [54.6997964, -6.10662], [54.6997056, -6.1068867], [54.6995266, -6.1074171], [54.6993938, -6.1078446], [54.6987496, -6.1090776], [54.6983361, -6.1096238], [54.6955736, -6.1156936], [54.6954266, -6.1159836], [54.6926575, -6.121784], [54.6899612, -6.1282476], [54.6871408, -6.1359635], [54.6858355, -6.1396067], [54.6776697, -6.1617149], [54.6764312, -6.1644931], [54.6749039, -6.1676381], [54.6700046, -6.1787344], [54.6697691, -6.1792149], [54.6697294, -6.1792273], [54.6693258, -6.1790682], [54.6655964, -6.1777334], [54.6656149, -6.1785424], [54.6636887, -6.1815729], [54.6622745, -6.1844309], [54.6612602, -6.186854], [54.6613158, -6.1869447], [54.6615247, -6.1877828], [54.6575611, -6.1960824], [54.6548961, -6.2025904], [54.631996, -6.1916642], [54.6317491, -6.192878], [54.6282332, -6.2013365], [54.6281456, -6.2015682], [54.6226064, -6.2002471], [54.6224951, -6.2047338], [54.6224669, -6.2060918], [54.6220777, -6.2083197], [54.6212913, -6.2106155], [54.6205927, -6.2111613]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_ed2deb43b7195b8abeeba57077052344 = L.polyline(
[[54.6205927, -6.2111613], [54.6200539, -6.2111497], [54.620346, -6.213537], [54.620482, -6.2151857], [54.6227237, -6.2135188], [54.623406, -6.2124936], [54.6235648, -6.2122626], [54.6237408, -6.2120061], [54.6239502, -6.2117023], [54.6254507, -6.2145022], [54.6287883, -6.2207392], [54.6332886, -6.2202368], [54.6388031, -6.2333305], [54.6446448, -6.2430746], [54.6446824, -6.2431363], [54.6523262, -6.2566498], [54.6614856, -6.2637744], [54.6620691, -6.2607124], [54.6695278, -6.2511095], [54.6763584, -6.2338143], [54.6802088, -6.2236347], [54.6843894, -6.223337], [54.6887799, -6.2247016], [54.700583, -6.2228012], [54.7013043, -6.2226212], [54.7019982, -6.2226655], [54.7029542, -6.2229473], [54.7050497, -6.2227371], [54.7052206, -6.222718], [54.7053525, -6.2226997], [54.7058917, -6.2226428], [54.7071206, -6.2218229], [54.7085524, -6.2206331], [54.7087507, -6.2204055], [54.7090233, -6.2202689], [54.7090975, -6.2202086], [54.7092942, -6.2200156], [54.7098692, -6.2196148], [54.7123067, -6.2202276], [54.7134264, -6.2197399], [54.7145816, -6.2192744]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_2a50c51589bf699b72f79bbba3dff73b = L.polyline(
[[54.7145816, -6.2192744], [54.7142125, -6.2179597], [54.7150032, -6.2172263], [54.7155463, -6.2165229], [54.7168244, -6.2209162], [54.7168526, -6.2210973], [54.7176882, -6.2209669], [54.7186738, -6.220813], [54.7196711, -6.2211212], [54.7198114, -6.2216048], [54.7200181, -6.222739], [54.7205659, -6.2247436], [54.7207521, -6.2254235], [54.7213427, -6.227736], [54.7215217, -6.2287499], [54.7217296, -6.2323869], [54.7218712, -6.2340792], [54.7218065, -6.2361533], [54.7218262, -6.2373604], [54.7310686, -6.2619204], [54.7328384, -6.2664772], [54.7329775, -6.2668483], [54.7331028, -6.2671819], [54.7332614, -6.2676038], [54.733377, -6.2679108], [54.7335447, -6.2683568], [54.7346343, -6.2714662], [54.7413254, -6.2946583], [54.7418075, -6.296163], [54.7421944, -6.297007], [54.743526, -6.2978427], [54.7437714, -6.2977615], [54.7444143, -6.2983366], [54.7447436, -6.3036452], [54.7447442, -6.304021], [54.7456879, -6.3081802], [54.7462974, -6.3103294], [54.7472146, -6.3129298], [54.7489331, -6.3155001], [54.7491201, -6.3165963], [54.7498113, -6.3193446], [54.749993, -6.3201008]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_3a9b625a5c8933bf0c4ba75fc0422efa = L.polyline(
[[54.749993, -6.3201008], [54.7500456, -6.3202932], [54.7504864, -6.3226128], [54.7510404, -6.3240405], [54.7512335, -6.324213], [54.7515521, -6.3244284], [54.752358, -6.3250048], [54.7528341, -6.3254001], [54.7540067, -6.3250844], [54.7548261, -6.3253003], [54.7568455, -6.3262555], [54.7573969, -6.326581], [54.7583344, -6.3274018], [54.7649605, -6.3367031], [54.7649944, -6.3367495], [54.7841523, -6.3230731], [54.7870345, -6.3216802], [54.8168495, -6.3245605], [54.8171169, -6.3240594], [54.831826, -6.3073268], [54.8368043, -6.298565], [54.8421658, -6.2982645], [54.8437641, -6.2964907], [54.8439203, -6.2957063], [54.8439508, -6.2956281], [54.844297, -6.2954047], [54.8443644, -6.2954328], [54.8444612, -6.2952855], [54.8444421, -6.2951218], [54.8445321, -6.2942149], [54.8451681, -6.2934368], [54.8518783, -6.2827525], [54.852105, -6.281437], [54.8521372, -6.2807411], [54.8524354, -6.2799335], [54.8529065, -6.2791298], [54.8534653, -6.2782438], [54.8536177, -6.2781462], [54.8544845, -6.2778682], [54.8550767, -6.277235], [54.8556206, -6.2763387], [54.8582559, -6.2770917], [54.8598201, -6.2775609], [54.8601172, -6.2776511], [54.8607942, -6.2778464], [54.861154, -6.2779745], [54.861526, -6.2781619], [54.8617712, -6.2784894], [54.8619216, -6.2785347], [54.8624262, -6.278482], [54.8626926, -6.2783917], [54.8629427, -6.2778016], [54.8632461, -6.2775775], [54.8636034, -6.2779917], [54.8646076, -6.2792046], [54.8649713, -6.2797765], [54.8652784, -6.2802178], [54.8653514, -6.2800832], [54.8656812, -6.2794755], [54.8655099, -6.2789935], [54.8652856, -6.2782307], [54.8673181, -6.2785286], [54.8663791, -6.2770854]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_5aaca46b5d2d5480208b287f3c732887 = L.polyline(
[[54.8663791, -6.2770854], [54.8673181, -6.2785286], [54.8677014, -6.2785535], [54.867569, -6.2800819], [54.8675678, -6.2808697], [54.8674638, -6.2810482], [54.8674945, -6.2812391], [54.8676692, -6.2812661], [54.8696307, -6.2818529], [54.8698351, -6.2817985], [54.8700066, -6.2816551], [54.8706433, -6.282324], [54.8721503, -6.2838913], [54.8729002, -6.2847928], [54.8731869, -6.2852406], [54.8731901, -6.2852456], [54.8741481, -6.2869892], [54.8742503, -6.2871869], [54.8744944, -6.2877412], [54.8750955, -6.2894065], [54.8752518, -6.2898749], [54.8754912, -6.2906852], [54.8757836, -6.2916805], [54.8759091, -6.2921146], [54.875942, -6.2922265], [54.8762905, -6.2934081], [54.876549, -6.294151], [54.8769938, -6.2954087], [54.8779476, -6.2971152], [54.8783665, -6.2976674], [54.8784408, -6.2980677], [54.8784518, -6.2982215], [54.8784456, -6.2987088], [54.8781001, -6.3007197], [54.8789926, -6.3019217], [54.8798206, -6.3029222], [54.8926135, -6.3200442], [54.8982725, -6.3247325], [54.8995937, -6.3257268], [54.9023544, -6.3275249], [54.9175592, -6.3449898], [54.9341499, -6.360889], [54.9347552, -6.3630933], [54.95317, -6.3567452], [54.9533639, -6.3568406], [54.9580234, -6.3610751], [54.9758341, -6.3722416], [54.9889899, -6.3826367], [55.0033145, -6.400946], [55.0063842, -6.4048864], [55.0068901, -6.4055347], [55.0081674, -6.4072169], [55.0102021, -6.409917], [55.011096, -6.4111177], [55.0205244, -6.423243], [55.0354796, -6.4550123], [55.0485666, -6.4717543], [55.052376, -6.4766227], [55.062765, -6.4929342], [55.0638006, -6.4947145], [55.0643737, -6.4956911], [55.0649684, -6.4967886], [55.0652312, -6.4972784], [55.0658097, -6.4983658], [55.0660986, -6.4988997], [55.0664237, -6.4994901], [55.0668523, -6.5002685], [55.0670452, -6.5005954], [55.0681032, -6.501853], [55.0686847, -6.5020664], [55.0701864, -6.5024371], [55.0702971, -6.5025504], [55.0704674, -6.5045411], [55.0705548, -6.5072111], [55.0706007, -6.509501], [55.0705212, -6.5097016], [55.0706331, -6.5098056], [55.0706832, -6.5109082], [55.0707284, -6.511923], [55.0708017, -6.5133225], [55.0707048, -6.5152413], [55.0714261, -6.515979], [55.0716521, -6.5162228], [55.0716417, -6.5166023], [55.0709207, -6.5175925], [55.0708866, -6.5175768], [55.0704485, -6.5173032], [55.0703969, -6.517269], [55.0703115, -6.5172053]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_cae94ecae072124fe36dde476b0fb34d = L.polyline(
[[55.0703115, -6.5172053], [55.0706661, -6.515282], [55.0707048, -6.5152413], [55.0708017, -6.5133225], [55.0707284, -6.511923], [55.0706832, -6.5109082], [55.0706331, -6.5098056], [55.070696, -6.5096578], [55.0713116, -6.5089913], [55.0715387, -6.5086562], [55.0723544, -6.5074666], [55.0741981, -6.5050333], [55.0754446, -6.503861], [55.0759056, -6.5034942], [55.0764579, -6.503104], [55.0772162, -6.5026121], [55.0773904, -6.5025611], [55.0777179, -6.5025161], [55.0794294, -6.5028411], [55.0792769, -6.5023327], [55.0956663, -6.4863152], [55.0988118, -6.4781017], [55.1029715, -6.4652534], [55.1031208, -6.463673], [55.1021335, -6.4413674], [55.1027952, -6.4369726], [55.1071834, -6.4214014], [55.1077954, -6.4204236], [55.1081503, -6.4199636], [55.108525, -6.4195862], [55.1140619, -6.4169205], [55.1141885, -6.4167812], [55.1197633, -6.4106853], [55.1197292, -6.4101008], [55.1314795, -6.3750648], [55.1342759, -6.3676737], [55.1363974, -6.3446227], [55.1428776, -6.3213975], [55.143833, -6.3179467], [55.1474913, -6.3108261], [55.1472291, -6.3101948], [55.1535548, -6.2994631], [55.1647236, -6.2943006], [55.1651439, -6.2938562], [55.1795734, -6.2745197], [55.1944462, -6.2630313], [55.1956817, -6.2625145], [55.1957108, -6.2625014], [55.1967226, -6.2620466], [55.1973985, -6.2577345], [55.1995005, -6.2538439], [55.2001669, -6.2541126], [55.2004863, -6.2516118], [55.2006675, -6.2505895], [55.2005707, -6.250471]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_80429698d632ce581d568bc19a678cf4 = L.polyline(
[[55.2005707, -6.250471], [55.2006675, -6.2505895], [55.2004863, -6.2516118], [55.2001669, -6.2541126], [55.1995005, -6.2538439], [55.1973985, -6.2577345], [55.1967226, -6.2620466], [55.1967672, -6.2623209], [55.1966614, -6.2625519], [55.1966228, -6.263999], [55.1966231, -6.266439], [55.1966161, -6.267823], [55.1965725, -6.2705509], [55.1965313, -6.2705485], [55.2027975, -6.2907633], [55.2017102, -6.3023677], [55.2055214, -6.3341681], [55.2058204, -6.3366728], [55.2044319, -6.3469679], [55.1987714, -6.3652262], [55.1985487, -6.3658454], [55.1966246, -6.3721771], [55.1986758, -6.3885114], [55.1987921, -6.3901496], [55.1987965, -6.390211], [55.1993433, -6.3980835], [55.1990789, -6.4059863], [55.1986502, -6.4222264], [55.1995602, -6.4431211], [55.200084, -6.4524448], [55.2011159, -6.47121], [55.2020931, -6.4891462], [55.2013942, -6.5046784], [55.2004819, -6.5127115], [55.2001141, -6.5203118], [55.2000331, -6.5213701], [55.2002233, -6.5214177], [55.2010851, -6.5216404], [55.2015226, -6.5217535], [55.2032059, -6.5223903], [55.2037201, -6.5229819], [55.2034879, -6.525128], [55.2034793, -6.5253186], [55.2034273, -6.5259432], [55.2058638, -6.5277968], [55.205967, -6.528835], [55.2134064, -6.5630894], [55.2126236, -6.5718922], [55.2118982, -6.5754955], [55.2111996, -6.575952], [55.2087544, -6.5788554], [55.2047173, -6.6084463], [55.2034659, -6.6115274], [55.2002101, -6.640717], [55.2005479, -6.6425434], [55.2006386, -6.6429779], [55.2008787, -6.6441835], [55.2008154, -6.6443541], [55.2009292, -6.6444129], [55.2017765, -6.6463066], [55.202836, -6.6481433], [55.204382, -6.6502151], [55.2055078, -6.6519644], [55.2054754, -6.6523525], [55.2043815, -6.6526491], [55.2044256, -6.6530219], [55.2079813, -6.6575562], [55.2081127, -6.6556767], [55.2064499, -6.6544379]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_ffa419dcb0a46e6a108fbcbf06fc83a3 = L.polyline(
[[55.2064499, -6.6544379], [55.2043815, -6.6526491], [55.2040766, -6.6525139], [55.2035898, -6.6518445], [55.2030427, -6.6511402], [55.2023815, -6.6502402], [55.201715, -6.6500255], [55.2016158, -6.6503521], [55.2016842, -6.6507139], [55.2009702, -6.6535556], [55.1994005, -6.6539517], [55.1993349, -6.6538368], [55.1992765, -6.6539255], [55.1989488, -6.6541176], [55.198866, -6.654237], [55.1989266, -6.6543349], [55.1981078, -6.6562504], [55.1977259, -6.6566032], [55.1969132, -6.6571062], [55.1968073, -6.6591016], [55.196945, -6.6600536], [55.1975761, -6.6639792], [55.197886, -6.6649586], [55.1980651, -6.6655122], [55.1969928, -6.6760316], [55.196708, -6.6770744], [55.1965147, -6.6780334], [55.1942471, -6.6936643], [55.1935447, -6.6957644], [55.1928833, -6.6977588], [55.1926128, -6.6985697], [55.1917193, -6.7016272], [55.1916794, -6.7020588], [55.1897723, -6.7073799], [55.1888557, -6.7085121], [55.1885687, -6.7087205], [55.1877431, -6.7093479], [55.1870739, -6.7097894], [55.1861999, -6.7103331], [55.1863749, -6.7112776], [55.1865424, -6.7121817], [55.1849028, -6.7132622], [55.1844676, -6.7135491], [55.1842031, -6.7137234], [55.1836156, -6.7145609], [55.1835406, -6.7147649], [55.1826331, -6.717569], [55.1821262, -6.717799], [55.1830342, -6.7183748]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_33605f7414a87827d151c014eada2e8b = L.polyline(
[[55.1830342, -6.7183748], [55.1821262, -6.717799], [55.1816079, -6.717361], [55.18087, -6.7167418], [55.1802223, -6.7161911], [55.1794235, -6.7156781], [55.1788456, -6.7154543], [55.1783957, -6.7152891], [55.1767004, -6.7147041], [55.1748577, -6.7141353], [55.1749144, -6.7137891], [55.1746182, -6.7137375], [55.1739014, -6.7132684], [55.1720734, -6.7115309], [55.1700331, -6.7095283], [55.169718, -6.7091754], [55.1685315, -6.7077333], [55.1679962, -6.7070915], [55.1673421, -6.7062675], [55.1671111, -6.7059272], [55.1659254, -6.7039923], [55.1649085, -6.7017278], [55.1549513, -6.6881926], [55.1540854, -6.6872312], [55.1523487, -6.6852701], [55.1503179, -6.6827718], [55.1472299, -6.6773684], [55.143912, -6.6722785], [55.1428175, -6.6713509], [55.1424484, -6.6709027], [55.1416943, -6.6699924], [55.1414047, -6.6695247], [55.1406487, -6.6674837], [55.140516, -6.6667064], [55.1398489, -6.6665284], [55.1381255, -6.6669413], [55.137706, -6.6672332], [55.1375105, -6.6674288], [55.1359304, -6.6689643], [55.1355102, -6.6693573], [55.134384, -6.6704562], [55.1341899, -6.6701307], [55.1343276, -6.6672647], [55.1334029, -6.667123], [55.133239, -6.6700616], [55.1330152, -6.6702408], [55.1327369, -6.6715577], [55.1323645, -6.671444]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_0e3365e0b5f7be1bc820cbce77a06d4a = L.polyline(
[[55.1323645, -6.671444], [55.1327369, -6.6715577], [55.1328565, -6.67187], [55.1330784, -6.671656], [55.1333557, -6.671473], [55.134115, -6.6706934], [55.1341899, -6.6701307], [55.1343276, -6.6672647], [55.1334029, -6.667123], [55.1321961, -6.6669156], [55.1299773, -6.6676989], [55.1295076, -6.6679182], [55.1291509, -6.6680813], [55.1290962, -6.6681101], [55.1284548, -6.6683935], [55.1285068, -6.6696776], [55.1284245, -6.6703389], [55.1286839, -6.670593], [55.129194, -6.6709641], [55.129542, -6.6735396], [55.1314368, -6.6737454], [55.1316786, -6.6739637], [55.1318181, -6.6756634], [55.1317044, -6.6759326], [55.1314429, -6.6759971], [55.1313761, -6.6762713], [55.1314459, -6.6768706], [55.1315726, -6.6771673], [55.1319456, -6.6771633], [55.1321182, -6.6804859], [55.1340932, -6.6823222], [55.1341578, -6.684534], [55.1342694, -6.6873266], [55.1344156, -6.6905323], [55.1342313, -6.6907451], [55.1343482, -6.6910327], [55.1302491, -6.7092521], [55.124524, -6.7276425], [55.1216829, -6.7369753], [55.1215438, -6.737454], [55.1185616, -6.7471858], [55.117389, -6.751096], [55.1130122, -6.7640003], [55.1106116, -6.7712652], [55.1049638, -6.7984024], [55.104202, -6.8059098], [55.1021453, -6.8254671], [55.1013428, -6.8323595], [55.0913912, -6.8635084], [55.0890024, -6.8722703], [55.0795689, -6.8978267], [55.0781705, -6.9065012], [55.0692644, -6.9257632], [55.0656768, -6.9311726], [55.065417, -6.9312153], [55.0653287, -6.9311376], [55.0652012, -6.931248], [55.0651845, -6.9313173], [55.0650329, -6.9317558], [55.0604027, -6.9390808], [55.0600871, -6.9392277], [55.0599002, -6.9392031], [55.0597099, -6.939528], [55.0596981, -6.9396642], [55.0595926, -6.9403453], [55.0567257, -6.9484738], [55.0562248, -6.948755], [55.0546631, -6.9483118], [55.0545846, -6.948289], [55.0539788, -6.9479997], [55.0539373, -6.9474557], [55.0538994, -6.9472298], [55.053838, -6.9474521], [55.0537178, -6.9477418], [55.0533218, -6.9486757], [55.0532253, -6.948894], [55.0528507, -6.9496682], [55.0527514, -6.9496519], [55.0505789, -6.9475395], [55.0504229, -6.9476878], [55.0494179, -6.9496862], [55.0500465, -6.9518252]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_77f5387d80763d076fc49a967965a230 = L.polyline(
[[55.0500465, -6.9518252], [55.0498389, -6.952439], [55.049705, -6.9528059], [55.0494045, -6.9536628], [55.0491496, -6.9545999], [55.0496006, -6.9593109], [55.0493596, -6.9598798], [55.0509697, -6.973325], [55.0512241, -6.973645], [55.0511124, -6.9747959], [55.0510749, -6.9754983], [55.050599, -6.9846895], [55.0496459, -6.9889047], [55.0492604, -6.9904622], [55.0489133, -6.991864], [55.0470581, -6.9993479], [55.0452329, -7.0062242], [55.0446866, -7.0100089], [55.0444493, -7.0133098], [55.0445969, -7.0169396], [55.0445927, -7.019032], [55.0445286, -7.0199564], [55.0441186, -7.0216697], [55.0440897, -7.0217958], [55.0432568, -7.0257721], [55.0429804, -7.0298805], [55.0429662, -7.0325554], [55.0429559, -7.0346246], [55.0429491, -7.0352446], [55.0429336, -7.0382971], [55.0429272, -7.0403295], [55.0428983, -7.0442353], [55.042695, -7.0613601], [55.0426896, -7.0618803], [55.0418605, -7.0718858], [55.0414248, -7.0739379], [55.0380276, -7.0840346], [55.0363357, -7.0928577], [55.0362169, -7.0938422], [55.0361675, -7.0942304], [55.0361013, -7.0947031], [55.0350733, -7.0999684], [55.0343015, -7.1048373], [55.0331801, -7.112172], [55.0331113, -7.1125936], [55.0321697, -7.1190704], [55.032126, -7.1197417], [55.0322693, -7.1217861], [55.0319713, -7.1246335], [55.0319504, -7.1252811], [55.032038, -7.1323057], [55.0315368, -7.1515369], [55.0300533, -7.158718], [55.0280639, -7.1713462], [55.0276116, -7.1733259], [55.0272641, -7.1749347], [55.0271358, -7.1757427], [55.0269004, -7.1774826], [55.0268325, -7.1780499], [55.0266562, -7.1791858], [55.0264263, -7.1804218], [55.0262857, -7.1828501], [55.0259168, -7.184831], [55.0256833, -7.1859973], [55.0256319, -7.1862544], [55.0253697, -7.187993], [55.022162, -7.209026], [55.020269, -7.2256657], [55.0204647, -7.2319085], [55.0207338, -7.2417121], [55.0194793, -7.25364], [55.0191182, -7.2564226], [55.0192072, -7.2567589], [55.0195919, -7.2564397], [55.0200898, -7.2563556], [55.0204335, -7.2569206], [55.0196908, -7.2579045], [55.0171418, -7.26233], [55.0150852, -7.2656685], [55.0119067, -7.2723262], [55.0116592, -7.2724734], [55.0088271, -7.2765295], [55.0086439, -7.2766379], [55.0084328, -7.2771667], [55.0084286, -7.2775176], [55.0068223, -7.2819629], [55.0056538, -7.2857908], [55.0056329, -7.2858642], [55.0052522, -7.2871236], [55.0051998, -7.2873005], [55.0049162, -7.28841], [55.0046005, -7.2899197], [55.0044857, -7.2908095], [55.0043388, -7.2925767], [55.0042295, -7.2937866], [55.0041286, -7.2949979], [55.0036887, -7.2963696], [55.0034847, -7.2969064], [55.003038, -7.298049], [55.0026656, -7.29901], [55.0026233, -7.2991126], [55.0022256, -7.3000956], [55.0021755, -7.3002157], [55.0016947, -7.3014145], [55.0016006, -7.3016437], [55.0011877, -7.3027435], [55.0008661, -7.3035736], [55.0007907, -7.3037608], [55.0004092, -7.3045517], [55.000173, -7.305058], [55.0001457, -7.305116], [54.9999521, -7.3055466], [54.9996497, -7.3063693], [54.9995978, -7.3065146], [54.9988176, -7.3081481], [54.9979977, -7.3090103], [54.9968464, -7.3099087], [54.9967444, -7.3099863], [54.9964337, -7.3101292], [54.9961612, -7.3101456], [54.9960299, -7.3101536], [54.9950272, -7.3102318], [54.9935041, -7.3103434], [54.9933533, -7.3106251], [54.9924093, -7.3121204], [54.9921225, -7.3123763], [54.9909878, -7.3136738], [54.9905168, -7.3141721], [54.9892819, -7.3155965], [54.9893544, -7.3157274], [54.9895046, -7.3159647], [54.9915695, -7.3200923], [54.9916352, -7.3203814], [54.9916913, -7.3205439], [54.9918268, -7.3205266], [54.991858, -7.3204513], [54.9919798, -7.32031], [54.9922475, -7.3199164], [54.9925729, -7.3195719], [54.9936064, -7.3197036], [54.994459, -7.3199408], [54.9944846, -7.3199471], [54.9945192, -7.3199631], [54.9945494, -7.3198201], [54.9952721, -7.3189903], [54.995874, -7.3181048], [54.9959789, -7.3180209], [54.9972234, -7.3192966], [54.9973684, -7.3193264], [54.9977455, -7.3186351], [54.9980387, -7.3186635], [54.998462, -7.3193961], [54.9986409, -7.3200199], [54.9989966, -7.3205259], [54.9993405, -7.3217153], [54.9992899, -7.3218753], [54.9988582, -7.3217894], [54.9977592, -7.322842]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_61abb92cbfb6f29a7e7a7cdde18d492a = L.polyline(
[[54.9977592, -7.322842], [54.9982816, -7.3237233], [54.9982799, -7.3238931], [54.9972865, -7.3249718], [54.9970049, -7.3252644], [54.9967917, -7.3255271], [54.996752, -7.3255455], [54.9962486, -7.3260873], [54.9957327, -7.3265426], [54.9955814, -7.3262894], [54.9955724, -7.3261427], [54.9961715, -7.3232514], [54.9954777, -7.324298], [54.9948684, -7.3231145], [54.9943426, -7.3220993], [54.9939811, -7.3216211], [54.9937194, -7.321237], [54.9936144, -7.3210932], [54.9933814, -7.3207475], [54.9932461, -7.3205507], [54.9936064, -7.3197036], [54.9925729, -7.3195719], [54.9922475, -7.3199164], [54.9919798, -7.32031], [54.9918559, -7.3202781], [54.9918516, -7.3202615], [54.991763, -7.3201674], [54.9917181, -7.320174], [54.9915695, -7.3200923], [54.9895046, -7.3159647], [54.9893544, -7.3157274], [54.9892819, -7.3155965], [54.9891537, -7.315988], [54.9890816, -7.3161787], [54.9884593, -7.3176357], [54.9846038, -7.3273183], [54.9841742, -7.3289764], [54.9839145, -7.3306962], [54.9804781, -7.3429453], [54.9784669, -7.3472413], [54.9770527, -7.3490654], [54.9747689, -7.3506482], [54.9668108, -7.354677], [54.963562, -7.3556008], [54.9605572, -7.3570094], [54.9601975, -7.3572793], [54.9597336, -7.3576783], [54.9590891, -7.358886], [54.9585141, -7.3598205], [54.9576216, -7.3611966], [54.9570012, -7.3621611], [54.9568335, -7.3624383], [54.9566274, -7.3627788], [54.9476405, -7.3745529], [54.9420062, -7.3816687], [54.939866, -7.3856419], [54.9397882, -7.3857888], [54.9391999, -7.3868463], [54.9299713, -7.4023084], [54.9295113, -7.4028999], [54.9265749, -7.4074732], [54.9219751, -7.4151604], [54.9209492, -7.4164638], [54.9154421, -7.4197435], [54.9150948, -7.4198197], [54.9140036, -7.4200409], [54.9091713, -7.4210028], [54.9044603, -7.4210842], [54.8993052, -7.4216922], [54.8985833, -7.4218325], [54.8930044, -7.4199703], [54.8906368, -7.4191088], [54.8905137, -7.419063], [54.8836439, -7.4180311], [54.8806372, -7.4198015], [54.8803086, -7.4200708], [54.8752024, -7.4221694], [54.864927, -7.4234634], [54.8622336, -7.4253648], [54.8605817, -7.4279054], [54.8594097, -7.4292885], [54.8584068, -7.4298641], [54.8581843, -7.4299591], [54.8575382, -7.4304009], [54.8571297, -7.4307421], [54.8423277, -7.4509391], [54.8411849, -7.4528975], [54.8404828, -7.4534487], [54.838132, -7.4564221], [54.8374967, -7.4569837], [54.8371461, -7.4571479], [54.8362808, -7.4577451], [54.8348562, -7.4587854], [54.8323827, -7.4614041], [54.8312132, -7.4623611], [54.8302326, -7.4629289], [54.8299378, -7.4630701], [54.8290679, -7.4632503], [54.8285247, -7.4632342], [54.828423, -7.4632309], [54.8273546, -7.4632182], [54.8263283, -7.4629751], [54.8262008, -7.4629115]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_7fff521d0d152955acdfd0fb5eabae70 = L.polyline(
[[54.8262008, -7.4629115], [54.8253045, -7.4624688], [54.8250043, -7.4621481], [54.8239763, -7.4606031], [54.8237151, -7.4600896], [54.8231214, -7.4589356], [54.8223089, -7.4571772], [54.8212641, -7.455923], [54.8200988, -7.4552603], [54.8141774, -7.4545144], [54.8078193, -7.4592647], [54.7902528, -7.4611942], [54.7854443, -7.4599115], [54.7802251, -7.459242], [54.7787497, -7.4594475], [54.7640434, -7.4537403], [54.7638118, -7.4537736], [54.76239, -7.4556501], [54.7612146, -7.4556971], [54.7609812, -7.4557783], [54.760006, -7.457044], [54.7598443, -7.457293], [54.759765, -7.4574018], [54.7595114, -7.4577499], [54.7592979, -7.4580295], [54.7585686, -7.4589737], [54.758154, -7.4595265], [54.7536147, -7.4572682], [54.7529731, -7.4569707], [54.7357632, -7.4580484], [54.7340119, -7.458703], [54.7337959, -7.4589294], [54.7329967, -7.4586152], [54.7271428, -7.4633549], [54.7169481, -7.47127], [54.7060079, -7.4747514], [54.6959864, -7.4772859], [54.6907857, -7.4810725], [54.6907169, -7.4811184], [54.6722027, -7.4823651], [54.6717769, -7.4825268], [54.6698931, -7.4836327], [54.6690589, -7.4841313], [54.6687415, -7.4843143], [54.6482057, -7.4972267], [54.6475267, -7.4979119], [54.6440834, -7.4990931], [54.6381803, -7.493819], [54.6282704, -7.4944315], [54.6268314, -7.4957716], [54.6219129, -7.4924669], [54.6165284, -7.4912017], [54.6163158, -7.4908995], [54.6152034, -7.4888808], [54.6140581, -7.4892296], [54.6106738, -7.4892448], [54.6066921, -7.4873709], [54.6063729, -7.4869852], [54.6029668, -7.4908928], [54.6008811, -7.4923489], [54.6003478, -7.4927448], [54.5994154, -7.4933843], [54.5977795, -7.4946379], [54.5899724, -7.4935997], [54.5896402, -7.4936967], [54.5707118, -7.4872801], [54.5643211, -7.4855332], [54.5537227, -7.4880893], [54.5460987, -7.4902795], [54.5461078, -7.4901659], [54.5429763, -7.4911042], [54.5429511, -7.4911113], [54.5384126, -7.4924773], [54.5337983, -7.4942452], [54.5318137, -7.4948413], [54.5294181, -7.4955517], [54.5278589, -7.4960852], [54.5177346, -7.5006119], [54.5045577, -7.5042015], [54.5045105, -7.5040453], [54.4972555, -7.5043006], [54.4925441, -7.5069744], [54.4924665, -7.5070539], [54.4821707, -7.5171768], [54.4708232, -7.5324583], [54.4689404, -7.5343178], [54.4642653, -7.5371001], [54.4614399, -7.5369507], [54.460363, -7.5360343], [54.4594058, -7.5355697], [54.4546047, -7.535297], [54.4519751, -7.5365059], [54.4426341, -7.5433285], [54.4419786, -7.5424977], [54.4417843, -7.542357], [54.4343607, -7.5517975], [54.4333954, -7.5533658], [54.4312956, -7.5677959], [54.4307417, -7.5712924], [54.4244317, -7.5924238], [54.4237975, -7.5936852], [54.4232484, -7.5941556], [54.4201041, -7.5950029], [54.4197631, -7.5947828], [54.418986, -7.5948258], [54.4172322, -7.593243], [54.4149104, -7.5943421], [54.4095732, -7.5988773], [54.3870813, -7.6106959], [54.3692914, -7.6328477], [54.3672907, -7.6339051], [54.3669216, -7.6340712], [54.3664027, -7.6343627], [54.3616069, -7.6353969], [54.3604699, -7.6354393], [54.3602801, -7.6348407], [54.3569752, -7.6361968], [54.3557332, -7.6365334], [54.3549414, -7.6368319], [54.3533565, -7.6366206], [54.3525582, -7.6365663], [54.3502756, -7.6392117], [54.3501199, -7.6393393], [54.3479689, -7.6399685], [54.3478081, -7.6399779], [54.3477712, -7.6399526], [54.3476796, -7.6400197], [54.3476672, -7.6400644], [54.3475454, -7.6402834], [54.3470103, -7.6408657], [54.3472807, -7.6418768], [54.347639, -7.6434802], [54.3475936, -7.6436912], [54.3471237, -7.6439003], [54.3468186, -7.6440548], [54.3464868, -7.6439324], [54.3461783, -7.6428623], [54.345428, -7.641583], [54.3448846, -7.6409472], [54.3451223, -7.6403098], [54.3446283, -7.6396995]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_cd1a188b7ff113f2d9cf5aac3331e8d5 = L.polyline(
[[54.3446283, -7.6396995], [54.3451223, -7.6403098], [54.3448846, -7.6409472], [54.34413, -7.6399828], [54.3440798, -7.6398934], [54.3440234, -7.6396941], [54.3438142, -7.6392787], [54.3437345, -7.6390546], [54.3434879, -7.6374415], [54.3434497, -7.6330872], [54.3434701, -7.6328629], [54.3434883, -7.6327186], [54.3435611, -7.6323199], [54.3436471, -7.6320297], [54.3436943, -7.6319185], [54.3437508, -7.6318709], [54.3439016, -7.6316736], [54.3439759, -7.6315987], [54.3441019, -7.6314619], [54.3442743, -7.6311555], [54.3449094, -7.6304714], [54.3449942, -7.6304154], [54.3458926, -7.6300626], [54.3472627, -7.6296613], [54.3486554, -7.6285898], [54.3518921, -7.625016], [54.3512997, -7.6228698], [54.3517746, -7.6225328], [54.3529556, -7.6210814], [54.3532817, -7.618623], [54.3533824, -7.6182021], [54.353766, -7.6180653], [54.3539812, -7.6181903], [54.3540559, -7.6183644], [54.3542458, -7.6183517], [54.354317, -7.6181291], [54.3542604, -7.6178931], [54.3557227, -7.6144272], [54.3561175, -7.6137842], [54.3566743, -7.6131692], [54.3572145, -7.6128166], [54.3575398, -7.6125804], [54.3580032, -7.6122402], [54.3583493, -7.6119588], [54.3592369, -7.6112479], [54.359582, -7.6109382], [54.3598761, -7.6105902], [54.3658637, -7.6016892], [54.3688178, -7.6009067], [54.3737472, -7.5943142], [54.3793353, -7.5874475], [54.3800348, -7.5854591], [54.3805315, -7.581862], [54.3851888, -7.569949], [54.3971192, -7.563971], [54.3994215, -7.5597497], [54.402204, -7.5553113], [54.4072816, -7.5492295], [54.4170441, -7.5399892], [54.4176788, -7.5386017], [54.4181219, -7.5353797], [54.4224602, -7.5172038], [54.4223391, -7.5166716], [54.4267769, -7.5062317], [54.4278834, -7.4977414], [54.4372476, -7.4979715], [54.4455107, -7.4880956], [54.4499673, -7.4906386], [54.4509478, -7.4887103], [54.4513712, -7.4879199], [54.4522363, -7.4862367], [54.4527974, -7.4857603], [54.4640385, -7.4788696], [54.4706348, -7.4712516], [54.4847342, -7.4719379], [54.4989228, -7.4594057], [54.5021486, -7.4561036], [54.5022948, -7.4559715], [54.5114079, -7.4584674], [54.5118301, -7.4587474], [54.5123513, -7.4579974], [54.51248, -7.4580464], [54.5124894, -7.4578877], [54.5138628, -7.4576464], [54.5158184, -7.4527403], [54.5167916, -7.4516166], [54.5185001, -7.4502155], [54.5195408, -7.4490525], [54.520529, -7.4472472], [54.5232301, -7.4404932], [54.5289038, -7.4306661], [54.5289442, -7.430603], [54.5334573, -7.4236129], [54.5338258, -7.4230533], [54.539058, -7.4165307], [54.5414143, -7.4145468], [54.5427428, -7.4134937], [54.5437484, -7.4120314], [54.5452925, -7.4073404], [54.546884, -7.4012331], [54.5471012, -7.3990532], [54.5478304, -7.3963939], [54.5513096, -7.3882681], [54.5532652, -7.3829621], [54.5573058, -7.3737402], [54.5585898, -7.371348], [54.5744264, -7.3527733], [54.5758241, -7.3508685], [54.5784999, -7.3462388], [54.5785804, -7.34608], [54.5795248, -7.3442691], [54.5822276, -7.3389794], [54.5857798, -7.331766], [54.5859039, -7.3314373], [54.5895473, -7.3220051], [54.5896423, -7.3216891], [54.5902281, -7.3197587], [54.5930783, -7.3130198], [54.5935351, -7.3125059], [54.5978443, -7.308928], [54.5980952, -7.3087323], [54.5981595, -7.3086789], [54.5990165, -7.3076409], [54.5991681, -7.3073638], [54.5993, -7.3071099], [54.5997653, -7.3062965], [54.6005161, -7.3053627], [54.600027, -7.3036521]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_31ccf41d7842fefe0e54f933c9c1b9be = L.polyline(
[[54.600027, -7.3036521], [54.600049, -7.3020454], [54.6021586, -7.3016104], [54.6003218, -7.2984125], [54.6005457, -7.2962879], [54.600816, -7.2942562], [54.6015348, -7.2895845], [54.6016283, -7.2893388], [54.6015248, -7.2892378], [54.6001727, -7.2843491], [54.5994727, -7.2826575], [54.5991029, -7.2820625], [54.5984508, -7.280693], [54.5984249, -7.2805266], [54.5983427, -7.2799971], [54.5981749, -7.2788819], [54.5981312, -7.2785965], [54.5978443, -7.276806], [54.5977419, -7.2763742], [54.5974715, -7.2754201], [54.5962547, -7.2725247], [54.5951426, -7.2696632], [54.5950973, -7.2691826], [54.5951382, -7.2686771], [54.5951842, -7.2686184], [54.595184, -7.2684353], [54.5951408, -7.2683787], [54.5949175, -7.2676935], [54.5948879, -7.261353], [54.5947055, -7.2538438], [54.5947516, -7.2456559], [54.5947421, -7.2452768], [54.5960636, -7.2248729], [54.5975304, -7.2028962], [54.5976173, -7.1985262], [54.6014235, -7.181256], [54.6024054, -7.1798438], [54.6037806, -7.16904], [54.6028446, -7.1669472], [54.6042936, -7.1580985], [54.6068173, -7.1339193], [54.6084492, -7.1258345], [54.6110351, -7.1122727], [54.6133337, -7.0892776], [54.6135509, -7.0878381], [54.6162652, -7.0735425], [54.6168535, -7.0585634], [54.6168638, -7.0584951], [54.6195718, -7.0423837], [54.6200944, -7.0397666], [54.62675, -7.0011219], [54.6267954, -7.0009215], [54.629801, -6.9890785], [54.6334666, -6.9717176], [54.6357617, -6.9576086], [54.6419374, -6.9290765], [54.6418104, -6.928955], [54.642506, -6.9249417], [54.6435053, -6.9172167], [54.6443396, -6.9015409], [54.6470608, -6.8865996], [54.6474172, -6.8850702], [54.6487961, -6.8792045], [54.6491258, -6.8779438], [54.6505188, -6.8726128], [54.6499571, -6.8706157], [54.6468739, -6.8588508], [54.6466482, -6.8568793], [54.6470773, -6.8487101], [54.6474633, -6.8469275], [54.648438, -6.8421105], [54.6486273, -6.8395768], [54.6453559, -6.8216608], [54.6461711, -6.8116649], [54.6494724, -6.8055913], [54.6503924, -6.794805], [54.6458691, -6.780708], [54.6437305, -6.7612226], [54.6437651, -6.7605909], [54.643797, -6.7598836], [54.6438823, -6.7583228], [54.6440012, -6.7558004], [54.6440506, -6.7545696], [54.6441525, -6.7525473], [54.6442819, -6.7499643], [54.6445283, -6.7447575], [54.6438606, -6.7446654], [54.6439068, -6.7434362]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_224ecdc09fbe10be4ba1e2e3ee6bb30b = L.polyline(
[[54.6439068, -6.7434362], [54.6438606, -6.7446654], [54.6445283, -6.7447575], [54.6458883, -6.7450045], [54.6468651, -6.7451426], [54.6484188, -6.7453781], [54.6495798, -6.7455877], [54.6497559, -6.7456195], [54.6510927, -6.7457637], [54.6516284, -6.7458453], [54.6527218, -6.7429451], [54.6529822, -6.7422414], [54.6539165, -6.7363221], [54.6542247, -6.7350941], [54.6543623, -6.7347784], [54.656668, -6.7313418], [54.6577343, -6.7304148], [54.6595873, -6.728283], [54.66117, -6.7259293], [54.6637333, -6.7210519], [54.6651397, -6.7183425], [54.6665111, -6.7157169], [54.6699885, -6.7086366], [54.6796774, -6.6916167], [54.6803124, -6.6905075], [54.6820223, -6.6873801], [54.6900252, -6.6745301], [54.6903423, -6.6736704], [54.6907947, -6.6713978], [54.6911587, -6.669904], [54.6915066, -6.6701095], [54.6921639, -6.6702897], [54.6934449, -6.6685343], [54.6943478, -6.666755], [54.6951617, -6.6658198], [54.6956695, -6.6654683], [54.696351, -6.6649979], [54.6969374, -6.6645833], [54.6982252, -6.6636834], [54.7141761, -6.650441], [54.7155438, -6.6493863], [54.7201002, -6.644497], [54.7298763, -6.6338499], [54.7378813, -6.6252366], [54.7395499, -6.6233877], [54.7398353, -6.6231824], [54.7398753, -6.6232166], [54.7400664, -6.623149], [54.7400827, -6.6231195], [54.7404053, -6.6227914], [54.7448267, -6.6189882], [54.7463477, -6.6178894], [54.7467839, -6.6175394], [54.7485379, -6.6159071], [54.7487098, -6.615701], [54.7502253, -6.6138699], [54.7503869, -6.6136834], [54.7515856, -6.6123388], [54.7540332, -6.6096686], [54.7542282, -6.6094622], [54.7550587, -6.6085209], [54.7552376, -6.6084158], [54.7553949, -6.6081916], [54.7554195, -6.6081833], [54.7554822, -6.6081021], [54.7554891, -6.6078974], [54.755443, -6.6078134], [54.7554178, -6.6077948], [54.7550093, -6.6072688]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_339b6445d54dfbf547dda763c7bbbafd = L.polyline(
[[54.7550093, -6.6072688], [54.7552681, -6.607972], [54.7553049, -6.6081379], [54.7550587, -6.6085209], [54.7542282, -6.6094622], [54.7540332, -6.6096686], [54.7515856, -6.6123388], [54.7503869, -6.6136834], [54.7502253, -6.6138699], [54.7487098, -6.615701], [54.7485379, -6.6159071], [54.7467839, -6.6175394], [54.7463477, -6.6178894], [54.7448267, -6.6189882], [54.7404053, -6.6227914], [54.7401167, -6.6228003], [54.740096, -6.6227281], [54.7398972, -6.6225891], [54.7397497, -6.6228969], [54.7395499, -6.6233877], [54.7378813, -6.6252366], [54.7298763, -6.6338499], [54.7201002, -6.644497], [54.7155438, -6.6493863], [54.7141761, -6.650441], [54.6982252, -6.6636834], [54.6969374, -6.6645833], [54.696351, -6.6649979], [54.6956695, -6.6654683], [54.6951617, -6.6658198], [54.6943478, -6.666755], [54.6934449, -6.6685343], [54.6921639, -6.6702897], [54.6915066, -6.6701095], [54.6911587, -6.669904], [54.6907947, -6.6713978], [54.6899367, -6.6714694], [54.6892821, -6.6715575], [54.6889579, -6.6715862], [54.6831396, -6.6725372], [54.6608872, -6.6657325], [54.6603332, -6.6658977], [54.6583823, -6.6662815], [54.6526936, -6.6644948], [54.6516601, -6.6635127], [54.6509856, -6.6630571], [54.6470846, -6.6598691], [54.646471, -6.6591121], [54.6447469, -6.6599841], [54.6418312, -6.6610787], [54.6371615, -6.6621014], [54.635029, -6.6623065], [54.6278675, -6.6576574], [54.627152, -6.6551557], [54.6219539, -6.6566002], [54.6161333, -6.6577403], [54.6116685, -6.6573056], [54.6106787, -6.6582052], [54.6010092, -6.6599647], [54.6008554, -6.6599576], [54.5988389, -6.6608955], [54.5975566, -6.661275], [54.5937851, -6.6625322], [54.584018, -6.6724825], [54.5807688, -6.6739813], [54.5792158, -6.6752989], [54.5789995, -6.6755426], [54.5772917, -6.6761915], [54.5761073, -6.676755], [54.5760526, -6.6767886], [54.5745979, -6.67765], [54.5734291, -6.6789087], [54.5729339, -6.6796121], [54.5673104, -6.6767771], [54.5630467, -6.6768866], [54.556157, -6.6815697], [54.5561641, -6.6817075], [54.5559214, -6.6857382], [54.5504271, -6.6935195], [54.5503612, -6.6935944], [54.5488803, -6.6946562], [54.5479545, -6.6958226], [54.547736, -6.6961204], [54.5470135, -6.6971453], [54.5452854, -6.6998237], [54.5447601, -6.7006313], [54.5417059, -6.6997437], [54.5414919, -6.6997608], [54.540427, -6.6996881], [54.5399699, -6.6998048], [54.5398926, -6.7020804], [54.5388383, -6.7006331]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_6c8d723cc4eebe1534872f3b08da9fdb = L.polyline(
[[54.5388383, -6.7006331], [54.5398926, -6.7020804], [54.5399487, -6.702343], [54.539731, -6.7033223], [54.5373035, -6.7045907], [54.535981, -6.7042852], [54.5317067, -6.7090525], [54.531433, -6.7110102], [54.5308525, -6.7211317], [54.5307419, -6.7235907], [54.5302149, -6.7271524], [54.5299965, -6.728178], [54.529681, -6.7300462], [54.529634, -6.7302812], [54.5280854, -6.7315667], [54.520026, -6.7444396], [54.5183636, -6.7463617], [54.5139137, -6.7509525], [54.5122151, -6.7533961], [54.5121167, -6.753564], [54.5113503, -6.7547484], [54.5099592, -6.7566236], [54.5092399, -6.7579223], [54.5085104, -6.7600488], [54.5072201, -6.7616889], [54.5055855, -6.7626758], [54.5047554, -6.7631078], [54.5050867, -6.7643291], [54.5033089, -6.7659262], [54.5034476, -6.7677539], [54.5041419, -6.7697571]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_b0ea52ecec504e588f2ce5b6670b5f66 = L.polyline(
[[54.5041419, -6.7697571], [54.5033643, -6.7709619], [54.5026279, -6.7721781], [54.5017064, -6.7700237], [54.5015651, -6.7688695], [54.4999536, -6.7720053], [54.4995504, -6.7725742], [54.4991253, -6.7729672], [54.4984102, -6.7731522], [54.4965943, -6.7733209], [54.4942969, -6.7739336], [54.4908176, -6.7753691], [54.489776, -6.77522], [54.4891857, -6.7748878], [54.488786, -6.7746431], [54.4846067, -6.776459], [54.4821562, -6.7764941], [54.4821133, -6.7764793], [54.4808094, -6.7757777], [54.4805497, -6.7754284], [54.4784484, -6.7756091], [54.478075, -6.7757769], [54.4766365, -6.776577], [54.4740717, -6.7778728], [54.4737805, -6.7780083], [54.4649563, -6.7883323], [54.4615572, -6.7901551], [54.458163, -6.7949918], [54.4557506, -6.7947036], [54.4515643, -6.7942204], [54.4509963, -6.7943017], [54.4504273, -6.7943011], [54.4488749, -6.7954885], [54.4433837, -6.7950094], [54.4431563, -6.794966], [54.4307826, -6.7949968], [54.4261245, -6.7955449], [54.4237541, -6.7928721], [54.42172, -6.7910823], [54.4096035, -6.7877347], [54.4041779, -6.7843001], [54.3958739, -6.7776336], [54.3865933, -6.7714424], [54.375847, -6.7595975], [54.3725179, -6.7555041], [54.3693358, -6.7446029], [54.3619556, -6.7449811], [54.3604952, -6.7425215], [54.3611016, -6.7356604], [54.358701, -6.7286598], [54.3487913, -6.7297201], [54.344411, -6.7173977], [54.3438311, -6.7165777], [54.3438331, -6.711134], [54.3418617, -6.7097988], [54.341863, -6.7097496], [54.3182932, -6.7133109], [54.313906, -6.720669]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_c9d6ef5378a21e73895137c62d710df5 = L.polyline(
[[54.313906, -6.720669], [54.3182932, -6.7133109], [54.3190825, -6.7112432], [54.3194682, -6.7102707], [54.3291036, -6.6903571], [54.3305663, -6.6880567], [54.3337341, -6.68366], [54.3365799, -6.6741177], [54.3376685, -6.6694615], [54.3383306, -6.6663579], [54.3386367, -6.6644709], [54.3388383, -6.6633527], [54.339049, -6.662192], [54.33958, -6.6603726], [54.3434626, -6.6583167], [54.3435423, -6.6582574], [54.3437016, -6.6581405], [54.3445939, -6.6572727], [54.3454645, -6.6570084], [54.3456418, -6.6556228], [54.3460358, -6.6544443], [54.3465402, -6.6541308], [54.3473643, -6.6535547], [54.348803, -6.6534555], [54.3494577, -6.6545101], [54.3502762, -6.6527758], [54.3504317, -6.6523933], [54.3505914, -6.6521511], [54.3523346, -6.6447431], [54.353169, -6.6399538], [54.3533014, -6.6394837], [54.3533458, -6.6394608], [54.3533816, -6.6392568], [54.3533712, -6.6392277], [54.3534432, -6.6387765], [54.3545355, -6.6356978], [54.355168, -6.6340858], [54.3552858, -6.6338789], [54.3556056, -6.6331056], [54.3567078, -6.6306131], [54.3576511, -6.6285659], [54.3578291, -6.628534], [54.3578166, -6.6282188], [54.3583861, -6.6271028], [54.3606244, -6.6052608], [54.3653926, -6.5954195], [54.365578, -6.595037], [54.3728788, -6.5842756], [54.3736, -6.581777], [54.3758484, -6.5767865], [54.3755129, -6.5704785], [54.376171, -6.566358], [54.3774895, -6.563168], [54.3807074, -6.5530997], [54.3870548, -6.5390625], [54.3873326, -6.5388686], [54.3871794, -6.5383885], [54.3897235, -6.5257032], [54.3910219, -6.5200691], [54.3924452, -6.5142199], [54.3947399, -6.5045245], [54.3973356, -6.4910432], [54.3975924, -6.4899645], [54.4008484, -6.4812922], [54.4019348, -6.4784811], [54.4029428, -6.4751038], [54.4031203, -6.4743816], [54.4088829, -6.4618366], [54.4090382, -6.4615896], [54.4093663, -6.4614629], [54.4093292, -6.4610683], [54.4098717, -6.4600749], [54.4099766, -6.4598976], [54.4105833, -6.4587682], [54.4109791, -6.4580433], [54.411734, -6.4566083], [54.4122512, -6.4557378], [54.4131636, -6.4544142], [54.4134575, -6.4539816], [54.4137715, -6.4535267], [54.4150299, -6.4517104], [54.4160317, -6.4505389], [54.416576, -6.4498066], [54.4168853, -6.449387], [54.4170159, -6.4492245], [54.4173593, -6.4487928], [54.4175046, -6.4486178], [54.4179206, -6.4482054], [54.4195998, -6.4466005], [54.4196854, -6.4465423], [54.4204616, -6.4462098], [54.4210878, -6.4460118], [54.4215835, -6.4458692], [54.4222495, -6.4447645], [54.4224347, -6.4444339], [54.422512, -6.4442603], [54.4226941, -6.4438741], [54.422843, -6.4435142], [54.4237059, -6.4420681], [54.423995, -6.4419196], [54.4242785, -6.4418443], [54.4246438, -6.4423745], [54.4249336, -6.4435383], [54.4250664, -6.4437051], [54.4251495, -6.4442906]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_af014f5b6354be83389151250c5f3736 = L.polyline(
[[54.4251495, -6.4442906], [54.425348, -6.4439345], [54.4253795, -6.4438783], [54.4256806, -6.4433421], [54.4292957, -6.4374919], [54.4295031, -6.4371965], [54.4345514, -6.4298871], [54.4429175, -6.4172364], [54.443545, -6.4162493], [54.4438277, -6.4157282], [54.4496881, -6.4041906], [54.4498671, -6.4038898], [54.4505781, -6.4022209], [54.4508684, -6.4013498], [54.4498044, -6.3928764]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_8bc9b1085b55508c53eebce5df3af980 = L.polyline(
[[54.4498044, -6.3928764], [54.4496269, -6.3924408], [54.4493932, -6.3921241], [54.4477542, -6.3900898], [54.447269, -6.3883952], [54.4474908, -6.3878958], [54.447571, -6.3872371], [54.447535, -6.3870527], [54.4502989, -6.38027], [54.4506896, -6.3792635], [54.4544035, -6.3714177], [54.4547669, -6.3704597], [54.4561558, -6.3628798], [54.4563523, -6.3628674], [54.4565312, -6.3625022], [54.4565283, -6.3622723], [54.4565521, -6.3615285], [54.4568472, -6.3607146], [54.457754, -6.357532], [54.4580491, -6.3564851], [54.4581495, -6.3561444], [54.4610576, -6.3458682], [54.4614905, -6.3444085], [54.4616204, -6.3440956], [54.4617455, -6.3437151], [54.4618271, -6.3434292], [54.4619687, -6.3428109], [54.4619824, -6.3427595], [54.4622308, -6.3412229], [54.4625209, -6.3391904], [54.4625647, -6.3388864], [54.4626157, -6.3385418], [54.46283, -6.3371159], [54.4628717, -6.3368752], [54.4630377, -6.3360583], [54.4631331, -6.3355833], [54.4634725, -6.3353142], [54.4637408, -6.3351422], [54.4639763, -6.334647], [54.4637189, -6.3342966], [54.4635852, -6.334117], [54.4634142, -6.3339191], [54.4622775, -6.3321532], [54.4616699, -6.3308478], [54.4615416, -6.3305694], [54.461027, -6.3295026], [54.4609521, -6.3296079]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_83fadfe33b4e300ac591e0e18c39334a = L.polyline(
[[54.4609521, -6.3296079], [54.461027, -6.3295026], [54.4606287, -6.3287383], [54.4602461, -6.3280838], [54.4598875, -6.3272955], [54.4597301, -6.3266353], [54.4596727, -6.3263262], [54.4592759, -6.3248522], [54.4585375, -6.3236306], [54.4582351, -6.3231018], [54.4581783, -6.3229531], [54.4581536, -6.3228479], [54.4581444, -6.3227361], [54.45864, -6.3196628], [54.4589528, -6.316668], [54.4589609, -6.3164892], [54.4589949, -6.3148233], [54.4589917, -6.314486], [54.4589579, -6.3126982], [54.4589062, -6.3117295], [54.4588122, -6.3107145], [54.4587442, -6.308978], [54.4587234, -6.3074941], [54.4588539, -6.3061228], [54.4542918, -6.2862164], [54.4449541, -6.2806965], [54.4436095, -6.2787715], [54.4434328, -6.2677234], [54.4431199, -6.267006], [54.4285646, -6.2349812], [54.428347, -6.2335702], [54.4280808, -6.2323007], [54.4249461, -6.2248807], [54.4236711, -6.2223355], [54.4222811, -6.2147292], [54.4212924, -6.2057085], [54.4192907, -6.1882641], [54.4185882, -6.1845702], [54.4173581, -6.1739542], [54.4164032, -6.1706643], [54.4164479, -6.1678233], [54.4160926, -6.1665664], [54.4151988, -6.1630527], [54.4149059, -6.1617707], [54.4143948, -6.1593872], [54.4148803, -6.1524706], [54.4147584, -6.1512167], [54.414368, -6.1495559], [54.4145723, -6.1495498], [54.4153859, -6.1493792]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_dbcc4b13adfd8d30ddfabe4a086dcdf5 = L.polyline(
[[54.4153859, -6.1493792], [54.4145723, -6.1495498], [54.414368, -6.1495559], [54.4134834, -6.1499489], [54.4135064, -6.1500241], [54.4133702, -6.1501589], [54.4130679, -6.1503919], [54.4127069, -6.1504644], [54.4109955, -6.1529573], [54.4107656, -6.1533286], [54.4104522, -6.1538723], [54.4099165, -6.1547473], [54.4095039, -6.1553638], [54.4074648, -6.1588936], [54.407311, -6.1599906], [54.4071413, -6.1627953], [54.4067644, -6.1630591], [54.4063851, -6.1635311], [54.4061756, -6.1639392], [54.4058194, -6.1649544], [54.405756, -6.1679359], [54.3993482, -6.1869333], [54.3974828, -6.1919022], [54.3939888, -6.1983509], [54.3825325, -6.205352], [54.3813827, -6.2088875], [54.3813413, -6.2090325], [54.3758136, -6.2247003], [54.3668733, -6.2411131], [54.3658233, -6.2449933], [54.3655635, -6.2456641], [54.3613202, -6.2565481], [54.3605134, -6.2577815], [54.3601383, -6.2582087], [54.3560941, -6.261856], [54.3553503, -6.2625976], [54.3550052, -6.2628828], [54.3543934, -6.2636727], [54.3540246, -6.2642068], [54.3531507, -6.2650339], [54.3527363, -6.2651725], [54.3522766, -6.2661553], [54.352057, -6.2664065], [54.3518474, -6.266625], [54.3514838, -6.2669978], [54.3513081, -6.2671601], [54.3512377, -6.2674331], [54.3512264, -6.2678825], [54.3509769, -6.2684724], [54.3512882, -6.2694943], [54.3519698, -6.2719202], [54.3518599, -6.2720659], [54.3514168, -6.2712576]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_81c8da4fcc506de74cacfc56d87b1a44 = L.polyline(
[[54.3514168, -6.2712576], [54.3518599, -6.2720659], [54.3519698, -6.2719202], [54.3512882, -6.2694943], [54.3509769, -6.2684724], [54.3509512, -6.2685011], [54.3498373, -6.2692289], [54.3487428, -6.2699455], [54.3480093, -6.2705192], [54.3468369, -6.2713339], [54.346662, -6.271456], [54.3461766, -6.2718457], [54.3461481, -6.2718291], [54.3460663, -6.2718783], [54.3460342, -6.272073], [54.3442391, -6.2733323], [54.343903, -6.2741601], [54.3432327, -6.2751733], [54.3416974, -6.2775993], [54.3408073, -6.2787372], [54.3401689, -6.2795671], [54.3393256, -6.2806258], [54.338519, -6.2817022], [54.3373463, -6.2832121], [54.3360417, -6.2847878], [54.3352151, -6.2858709], [54.3315112, -6.2921259], [54.3273, -6.2972967], [54.3267066, -6.2950696], [54.3266299, -6.2948398], [54.3262526, -6.2952127], [54.3222712, -6.297541], [54.3194035, -6.2991298], [54.3118972, -6.2990971], [54.3112789, -6.2989087], [54.3057649, -6.2970226], [54.29971, -6.2971301], [54.2914416, -6.2994253], [54.2905713, -6.2998118], [54.2793688, -6.3055281], [54.2785756, -6.3059154], [54.2720019, -6.3094046], [54.26885, -6.3114396], [54.2628058, -6.3152477], [54.2606572, -6.316379], [54.2545056, -6.3190019], [54.2495551, -6.3211473], [54.249018, -6.3213506], [54.2387674, -6.3214665], [54.2382332, -6.3217223], [54.2180562, -6.3250797], [54.2160036, -6.3291201], [54.2158442, -6.3289943], [54.2156667, -6.3291241], [54.2122538, -6.3295944], [54.2099378, -6.327731], [54.2054069, -6.3282052], [54.2022429, -6.3299232], [54.1989062, -6.3311648], [54.1955336, -6.3321708], [54.1946883, -6.3320929], [54.1941921, -6.3322225], [54.1922839, -6.332736], [54.1912508, -6.3329344], [54.1866165, -6.3334506], [54.1856247, -6.3333757], [54.1836628, -6.3323982], [54.1834857, -6.3324322], [54.1815699, -6.3330414], [54.1806356, -6.3336853], [54.179737, -6.3341258], [54.1796306, -6.3341398], [54.1791311, -6.3341956], [54.1790957, -6.3341831], [54.1790451, -6.3342711], [54.1787958, -6.334634], [54.1780438, -6.3356406], [54.1778974, -6.3357351], [54.1776936, -6.3360682], [54.177662, -6.3361176], [54.1773892, -6.3371211], [54.1777182, -6.337384]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_573d0d863b57f90e277f9fc5c67b02a5 = L.polyline(
[[54.1777182, -6.337384], [54.1779795, -6.3367784], [54.1779317, -6.3366829], [54.177662, -6.3361176], [54.1776301, -6.3360542], [54.1774397, -6.3358701], [54.1773916, -6.3358781], [54.1772545, -6.3359548], [54.1763224, -6.3362999], [54.1761225, -6.3363159], [54.1754058, -6.3361205], [54.1743603, -6.336185], [54.1722207, -6.3357662], [54.1721031, -6.3357435], [54.1720047, -6.3356755], [54.171813, -6.3355886], [54.1715985, -6.3355438], [54.1711544, -6.3353778], [54.170103, -6.3346607], [54.1693652, -6.3337739], [54.1683716, -6.3331356], [54.1669687, -6.3321426], [54.1667432, -6.331812], [54.1635279, -6.3293142], [54.1622505, -6.3280308], [54.1620888, -6.3282634], [54.1615205, -6.3277531], [54.1613291, -6.3275913], [54.1609759, -6.3273198], [54.1594114, -6.3260805], [54.1592991, -6.3259923], [54.1587433, -6.325537], [54.1585328, -6.3253788], [54.1583609, -6.3252379], [54.1580026, -6.3249566], [54.1579326, -6.3249059], [54.1575005, -6.3245539], [54.1574224, -6.3244954], [54.1570624, -6.3242084], [54.155245, -6.3224129], [54.1550035, -6.3221418], [54.1539791, -6.3210125], [54.1535773, -6.3205674], [54.1497104, -6.3140984], [54.1490398, -6.3128276], [54.1489901, -6.3127247], [54.1460059, -6.306442], [54.1375974, -6.2955376], [54.1311509, -6.2854383], [54.1292379, -6.2824885], [54.1200777, -6.2689107], [54.1145023, -6.2621362], [54.1132062, -6.2606386], [54.1128232, -6.260196], [54.1121685, -6.2593436], [54.1115258, -6.258209], [54.1107465, -6.257231], [54.1105034, -6.2569991], [54.110121, -6.2566343], [54.1099421, -6.2564636], [54.1086749, -6.2549423], [54.1078418, -6.2539144], [54.1060683, -6.2523925], [54.1052704, -6.2520938], [54.1042581, -6.252047], [54.1038691, -6.2522514], [54.1030353, -6.2527917], [54.1027556, -6.2529745], [54.1024576, -6.2531573], [54.1022928, -6.2532614], [54.1019159, -6.2535061], [54.1012439, -6.2544038], [54.1009754, -6.2538615], [54.100757, -6.2533535], [54.1003783, -6.2525276], [54.0998012, -6.2512433]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_10cfe3cd2b7acd27261ec47125c818ad = L.polyline(
[[54.0998012, -6.2512433], [54.0997674, -6.2511641], [54.1001384, -6.2506349], [54.1002787, -6.2504353], [54.1010477, -6.2493979], [54.1009203, -6.248655], [54.1007753, -6.2477012], [54.1007458, -6.2475092], [54.1004992, -6.2452511], [54.1005804, -6.2429597], [54.1006177, -6.241429], [54.1006444, -6.2413065], [54.101042, -6.2377193], [54.1011931, -6.2367581], [54.101386, -6.2351447], [54.1015347, -6.2314315], [54.1015179, -6.2311831], [54.1011687, -6.2238576], [54.1002557, -6.2140972], [54.10011, -6.2031571], [54.1002917, -6.2024673], [54.1003556, -6.2022232], [54.1006262, -6.2011893], [54.100723, -6.2008117], [54.0991861, -6.1998727], [54.0984296, -6.1993403], [54.0975454, -6.1978748], [54.0971503, -6.1971409], [54.0956043, -6.1932566], [54.0950187, -6.192202], [54.0947315, -6.1917338], [54.0802548, -6.1839639], [54.070582, -6.1464866], [54.0682801, -6.1125082], [54.0681314, -6.1050913], [54.0675901, -6.1007087], [54.0714242, -6.0920856], [54.0733588, -6.0831064], [54.0727176, -6.078201], [54.0718286, -6.0673381], [54.0716875, -6.0660796], [54.0715024, -6.0644817], [54.0716624, -6.055993], [54.0700401, -6.0439595], [54.0698443, -6.0418564], [54.0677656, -6.0349863], [54.0675226, -6.0336846], [54.0672418, -6.0288984], [54.0672237, -6.0287002], [54.0670407, -6.0255806], [54.0671066, -6.0242634], [54.0672048, -6.0218449], [54.0657865, -6.0114059], [54.0654587, -6.0108981], [54.0653014, -6.0106147], [54.0645829, -6.0094409], [54.0630563, -6.0068602], [54.06316, -6.0063719], [54.0632009, -6.0062144], [54.0628895, -6.0057841]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_a0871ac05874ae23649bb4bd2cb541a6 = L.polyline(
[[54.0628895, -6.0057841], [54.0632009, -6.0062144], [54.0633725, -6.0043128], [54.0638786, -6.0032317], [54.0646781, -6.0016656], [54.0654781, -6.0001479], [54.065758, -5.999608], [54.0667411, -5.9984553], [54.0685059, -5.9939145], [54.0691168, -5.9904814], [54.069152, -5.9903498], [54.0702556, -5.9870199], [54.0706817, -5.9857991], [54.0710818, -5.9846461], [54.0720641, -5.9821313], [54.0729145, -5.9800759], [54.073318, -5.9788577], [54.0744575, -5.9722942], [54.0751924, -5.9668636], [54.0759948, -5.9620177], [54.0762246, -5.9613958], [54.0781297, -5.9573155], [54.079411, -5.954716], [54.0811618, -5.9498533], [54.0812742, -5.9494845], [54.0815618, -5.9484581], [54.0818715, -5.9470921], [54.0820876, -5.9462503], [54.0886916, -5.9302258], [54.0957922, -5.9182764], [54.1005053, -5.9110173], [54.101125, -5.9100558], [54.102551, -5.9078679], [54.1028899, -5.9073545], [54.1055628, -5.9034128], [54.1065651, -5.9023444], [54.1082055, -5.900574], [54.1083472, -5.9004549], [54.110374, -5.8995207], [54.1111278, -5.8996362], [54.1113771, -5.899691], [54.1120718, -5.8998097], [54.1122105, -5.8998294], [54.1136182, -5.9000563], [54.119073, -5.8984547], [54.1204742, -5.8982525], [54.123256, -5.8967932], [54.1292976, -5.8970364], [54.1304409, -5.8963804], [54.1345914, -5.8941091], [54.14252, -5.8897137], [54.1433604, -5.8893575], [54.1447573, -5.8884506], [54.1482369, -5.8863773], [54.1517392, -5.8843942], [54.1549137, -5.8815954], [54.1930467, -5.8812323], [54.1956476, -5.8841475], [54.1962871, -5.8849726], [54.197472, -5.8867965], [54.1999603, -5.8897222], [54.2012051, -5.8912535], [54.2031897, -5.8916921], [54.2044261, -5.8925542], [54.2058946, -5.8929985], [54.2065382, -5.8931661], [54.2068911, -5.8935237], [54.2075027, -5.8941447], [54.2081152, -5.89471], [54.2083953, -5.8946923], [54.2085801, -5.8943246], [54.2097014, -5.8938954], [54.2124693, -5.8926934], [54.213172, -5.8925069], [54.2129826, -5.8913265], [54.2118129, -5.8906468], [54.211657, -5.8898091]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_b841903b7863f3290793371618b843e9 = L.polyline(
[[54.211657, -5.8898091], [54.2118129, -5.8906468], [54.2122626, -5.8904285], [54.2135525, -5.889754], [54.2140969, -5.8894892], [54.2143093, -5.8913225], [54.2144398, -5.8915521], [54.2146273, -5.8912696], [54.2159613, -5.889825], [54.2161287, -5.8898959], [54.2164678, -5.8900814], [54.2167543, -5.8897383], [54.2167741, -5.889527], [54.2170136, -5.8888759], [54.2187101, -5.887778], [54.2190606, -5.8875546], [54.2191932, -5.8874588], [54.2196219, -5.8871833], [54.2205926, -5.8865583], [54.2206937, -5.8864948], [54.2211981, -5.8861595], [54.2214001, -5.8860063], [54.2222444, -5.8852303], [54.2232736, -5.8842379], [54.2240338, -5.8833178], [54.2241494, -5.8831543], [54.2243197, -5.8829133], [54.2299655, -5.8735917], [54.2371749, -5.8604617], [54.237399, -5.8603316], [54.2531671, -5.8527737], [54.2540854, -5.8508848], [54.2541574, -5.8507633], [54.2552203, -5.8493929], [54.2570617, -5.8457414], [54.2572317, -5.8452871], [54.2582819, -5.8424481], [54.2584651, -5.8420831], [54.2605484, -5.840633], [54.2661214, -5.8368422], [54.2693343, -5.8344973], [54.2747199, -5.8356586], [54.2756961, -5.8367259], [54.2775445, -5.8372231], [54.2856684, -5.8237705], [54.2862588, -5.8129763], [54.2994061, -5.8037847], [54.3012531, -5.7951774], [54.30186, -5.7908999], [54.3023519, -5.7801838], [54.3020317, -5.7782357], [54.3057939, -5.7631025], [54.3079786, -5.7480656], [54.3097905, -5.7450408], [54.3223409, -5.721567], [54.3250954, -5.7195669], [54.3270445, -5.7178279], [54.3273656, -5.7174385]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_800bf339e084502b79678aa481686f4b = L.polyline(
[[54.3273656, -5.7174385], [54.3286183, -5.7155466], [54.3288943, -5.7158968], [54.3307702, -5.7153748], [54.330907, -5.7153965], [54.331133, -5.7154274], [54.3322282, -5.7156837], [54.333175, -5.7162192], [54.3340132, -5.7166845], [54.3343094, -5.7169445], [54.3343315, -5.7169756], [54.3344439, -5.7174752], [54.3418869, -5.7303654], [54.3423324, -5.7308777], [54.3447458, -5.7330799], [54.3525079, -5.7380899], [54.3537037, -5.7387346], [54.3539211, -5.7389843], [54.3539562, -5.7393012], [54.3564783, -5.7434712], [54.3565135, -5.7436028], [54.3621293, -5.7675313], [54.3625649, -5.7689308], [54.3637516, -5.7729127], [54.3640028, -5.7737607], [54.3655408, -5.778952], [54.3656242, -5.7792333], [54.3685242, -5.7898222], [54.3696639, -5.7922565], [54.3705664, -5.7941893], [54.3775087, -5.8090096], [54.3862598, -5.825229], [54.3868368, -5.8266957], [54.3959881, -5.8526487], [54.4040748, -5.8813684], [54.4038467, -5.8859722], [54.4038038, -5.8863997], [54.4037687, -5.8867764], [54.4036352, -5.8879757], [54.4036039, -5.8882389], [54.403562, -5.8890657], [54.4033204, -5.8896389], [54.4029852, -5.8928739], [54.4028458, -5.8933777], [54.4027063, -5.893823], [54.4022751, -5.8950668], [54.4020937, -5.8955974]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_72d281d7a6e7adb89fdffc0dc5c6096a = L.polyline(
[[54.4020937, -5.8955974], [54.4019239, -5.8961011], [54.401676, -5.8971604], [54.4018664, -5.8974932], [54.4025886, -5.897595], [54.4030295, -5.8979013], [54.4036928, -5.8988009], [54.4052311, -5.9011205], [54.4061536, -5.9028739], [54.4066544, -5.9040242], [54.4072198, -5.9053421], [54.4077877, -5.9051545], [54.4101194, -5.9044234], [54.4112928, -5.9040671], [54.4116686, -5.903941], [54.4122107, -5.9038526], [54.430075, -5.9292911], [54.4302754, -5.9295412], [54.4342234, -5.9336172], [54.4448678, -5.9468135], [54.4516385, -5.9545628], [54.4553369, -5.9572628], [54.4578944, -5.9590475], [54.4646796, -5.9633638], [54.4824044, -5.9866839], [54.4856308, -5.9925673], [54.4875552, -5.9953987], [54.4888437, -5.9971944], [54.4903425, -5.9992911], [54.4924679, -6.0029375], [54.501739, -6.0142753], [54.5028163, -6.0191099], [54.5031466, -6.0205399], [54.5035785, -6.0218852], [54.5037114, -6.0222933], [54.50496, -6.0271696], [54.5048141, -6.027595], [54.5051535, -6.0279323], [54.5053354, -6.0281985], [54.5053386, -6.028351], [54.505739, -6.029441], [54.5060096, -6.0295049], [54.5063888, -6.0296189], [54.506627, -6.0299307], [54.5070154, -6.0304368], [54.5075868, -6.031226], [54.5080986, -6.0319417], [54.5084416, -6.0326143], [54.5089079, -6.034047], [54.509009, -6.0344812], [54.5094863, -6.0365923], [54.5096513, -6.0371558], [54.5097105, -6.0373182], [54.5099895, -6.038434], [54.5101668, -6.0395826], [54.5100297, -6.0398653], [54.5097423, -6.0404835], [54.5098116, -6.0408092], [54.5099153, -6.0408798], [54.5100736, -6.0414286], [54.5100147, -6.0430408], [54.5101328, -6.0445996], [54.5101433, -6.0451798], [54.5098999, -6.0463244], [54.5098392, -6.0465905], [54.5096498, -6.0474794], [54.5097069, -6.048005], [54.5100008, -6.0481626], [54.5110039, -6.0486917], [54.5112438, -6.0486634], [54.5123812, -6.0484483], [54.5116795, -6.0459538]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
var poly_line_a570e1e5e6ed99e3943ec7c1cedf40e6 = L.polyline(
[[54.5116795, -6.0459538], [54.5123812, -6.0484483], [54.5124883, -6.0485273], [54.512732, -6.0483408], [54.513252, -6.0458614], [54.5134978, -6.0444858], [54.512748, -6.0438613], [54.5133137, -6.0421291], [54.513686, -6.0412038], [54.5147823, -6.0365555], [54.5163387, -6.0363124], [54.5167876, -6.0363562], [54.5172695, -6.0366726], [54.5178362, -6.0368612], [54.518392, -6.0369562], [54.5189558, -6.0370962], [54.5196013, -6.0373961], [54.5210847, -6.0376429], [54.5225863, -6.0356294], [54.5229302, -6.0353027], [54.5243043, -6.0338748], [54.5244205, -6.0337521], [54.5255082, -6.0326736], [54.5255945, -6.0325769], [54.5260438, -6.0320993], [54.527299, -6.0313654], [54.5272517, -6.0308668], [54.5276088, -6.0308149], [54.5277962, -6.0307877], [54.528606, -6.0304271], [54.5295472, -6.0299843], [54.530641, -6.029539], [54.5319928, -6.0294815], [54.5325435, -6.029715], [54.5341592, -6.029575], [54.5346764, -6.0292996], [54.5347651, -6.0292416], [54.534841, -6.028958], [54.5348199, -6.0288346], [54.534862, -6.0284224], [54.5353611, -6.0276196], [54.5368125, -6.0261002], [54.5373602, -6.0255432], [54.538466, -6.0240501], [54.5404567, -6.0211893], [54.5406271, -6.0209479], [54.5408258, -6.0206524], [54.540955, -6.020456], [54.5410126, -6.0203669], [54.5411054, -6.0202301], [54.5414785, -6.019605], [54.5416282, -6.0193494], [54.5426372, -6.0165899], [54.5431497, -6.0155811], [54.5440264, -6.0144235], [54.5447665, -6.012758], [54.5459727, -6.0109095], [54.5472032, -6.0105742], [54.5477661, -6.0103148], [54.549063, -6.0088681], [54.5496959, -6.0077884], [54.5506059, -6.005437], [54.550627, -6.0053651], [54.5510344, -6.0040154], [54.5513508, -6.0027938], [54.5513906, -6.0026475], [54.5520331, -6.0010798], [54.5525341, -6.0002765], [54.5529019, -5.999731], [54.5531151, -5.9994623], [54.5539829, -5.99843], [54.5550318, -5.994339], [54.5554192, -5.9931991], [54.5554651, -5.993095], [54.5556375, -5.9927503], [54.5559902, -5.9922677], [54.5578909, -5.9904869], [54.5579539, -5.9904051], [54.558619, -5.989492], [54.5589686, -5.9889761], [54.5592736, -5.9885124], [54.5595113, -5.9881313], [54.5595574, -5.988057], [54.5599239, -5.987465], [54.5601556, -5.9870694], [54.560565, -5.9863548], [54.5612169, -5.9851822], [54.5618042, -5.9840381], [54.5620856, -5.9834673], [54.5630939, -5.9812409], [54.5633232, -5.9807696], [54.5634545, -5.9804674], [54.5636697, -5.9799562], [54.5640372, -5.9790688], [54.564096, -5.9789207], [54.5645965, -5.97766], [54.5648823, -5.9769067], [54.5653169, -5.9757397], [54.5653697, -5.9755932], [54.5656978, -5.9746963], [54.5664293, -5.9725639], [54.5668387, -5.9712489], [54.5670483, -5.9706006], [54.5674709, -5.9695285], [54.5679203, -5.9688754], [54.5680891, -5.9684376], [54.5681962, -5.9680291], [54.5682631, -5.967794], [54.5683948, -5.967524], [54.5687236, -5.9668088], [54.5689113, -5.9664697], [54.5689909, -5.9663159], [54.569251, -5.9658865], [54.5695605, -5.9651284], [54.5702763, -5.9637679], [54.5706719, -5.9630665], [54.5713523, -5.9618485], [54.5720363, -5.9606773], [54.5724673, -5.9599654], [54.5725929, -5.9597646], [54.5727543, -5.9594893], [54.572893, -5.9592632], [54.5729997, -5.9591015], [54.5731907, -5.9587845], [54.5736628, -5.958018], [54.5741576, -5.95725], [54.5742344, -5.9571395], [54.5745037, -5.9567239], [54.5746274, -5.9565361], [54.5751435, -5.9557796], [54.5757517, -5.9549545], [54.5765342, -5.9539224], [54.5768126, -5.9535682], [54.5770853, -5.953218], [54.5773968, -5.9528298], [54.5777964, -5.952351], [54.5783133, -5.9517567], [54.5787094, -5.9513186], [54.5790966, -5.9508542], [54.5795691, -5.9502991], [54.5798883, -5.9499082], [54.5799584, -5.949818], [54.5805061, -5.9490838], [54.5807036, -5.9488197], [54.5809216, -5.9485282], [54.5809836, -5.9484456], [54.5817849, -5.9473787], [54.5821102, -5.9468931], [54.5824886, -5.9463566], [54.5828183, -5.9458556], [54.5829287, -5.9456616], [54.5833486, -5.9447209], [54.5837296, -5.943858], [54.5839697, -5.9433864], [54.5844851, -5.9424366], [54.5847032, -5.9420493], [54.5847412, -5.9419896], [54.585399, -5.9410843], [54.5856166, -5.9408066], [54.5858532, -5.9405066], [54.5861425, -5.9401272], [54.5865655, -5.939542], [54.5870861, -5.938665], [54.587556, -5.937629], [54.5880541, -5.9362093], [54.5880588, -5.9361947], [54.5881664, -5.935845], [54.5883559, -5.9351555], [54.5892128, -5.9344841], [54.5894857, -5.9343468], [54.5897178, -5.9342425], [54.5902547, -5.9341746], [54.590595, -5.9341485], [54.5918517, -5.9341493], [54.5918921, -5.9341509], [54.5924709, -5.9341573], [54.5924939, -5.9341588], [54.5927861, -5.9341837], [54.5930071, -5.9338172], [54.5929237, -5.9334], [54.5928411, -5.9329437], [54.5927103, -5.932181], [54.592802, -5.9317432], [54.5932627, -5.9313919], [54.5935046, -5.9312045], [54.5936894, -5.9311505], [54.5941374, -5.9301589], [54.5941496, -5.9297365], [54.5950241, -5.9298463], [54.595464, -5.9299015], [54.5960145, -5.9299934]],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.5, "smoothFactor": 1.0, "stroke": true, "weight": 2}
).addTo(feature_group_8cf0b5ebfff99aa2505c1404fb524875);
feature_group_8cf0b5ebfff99aa2505c1404fb524875.addTo(map_1a0bb0e2cd4e90690b6f77b4cf6f68b9);
var feature_group_99b8da1ff7295bad79f0c174c07456c2 = L.featureGroup(
{
}
);
var circle_marker_349d6c7f08b4f594442969dd5e1f60d8 = L.circleMarker(
[54.5964, -5.9302],
{"bubblingMouseEvents": true, "color": "white", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(feature_group_99b8da1ff7295bad79f0c174c07456c2);
var popup_dab310b327dc8c18e0ca0e1f98897e13 = L.popup({
"maxWidth": 200,
});
var html_79fcf1fb41e77a16348214c0ebb78d6b = $(`<div id="html_79fcf1fb41e77a16348214c0ebb78d6b" style="width: 100.0%; height: 100.0%;"><strong>0: Belfast</strong></div>`)[0];
popup_dab310b327dc8c18e0ca0e1f98897e13.setContent(html_79fcf1fb41e77a16348214c0ebb78d6b);
circle_marker_349d6c7f08b4f594442969dd5e1f60d8.bindPopup(popup_dab310b327dc8c18e0ca0e1f98897e13)
;
circle_marker_349d6c7f08b4f594442969dd5e1f60d8.bindTooltip(
`<div>
<strong>0: Belfast</strong>
</div>`,
{
"sticky": true,
}
);
var circle_marker_48744ebb11f295cd06032eec711ba5b2 = L.circleMarker(
[54.5763, -5.8812],
{"bubblingMouseEvents": true, "color": "white", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(feature_group_99b8da1ff7295bad79f0c174c07456c2);
var popup_8ca30f5e2fafa5a3b7b8b799df2066ce = L.popup({
"maxWidth": 200,
});
var html_a43609e8279fd1a057e0f2b5b6861959 = $(`<div id="html_a43609e8279fd1a057e0f2b5b6861959" style="width: 100.0%; height: 100.0%;"><strong>1: Castlereagh</strong></div>`)[0];
popup_8ca30f5e2fafa5a3b7b8b799df2066ce.setContent(html_a43609e8279fd1a057e0f2b5b6861959);
circle_marker_48744ebb11f295cd06032eec711ba5b2.bindPopup(popup_8ca30f5e2fafa5a3b7b8b799df2066ce)
;
circle_marker_48744ebb11f295cd06032eec711ba5b2.bindTooltip(
`<div>
<strong>1: Castlereagh</strong>
</div>`,
{
"sticky": true,
}
);
var circle_marker_82a686811f0ca09715c09498858e7f44 = L.circleMarker(
[54.5185, -5.8875],
{"bubblingMouseEvents": true, "color": "white", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(feature_group_99b8da1ff7295bad79f0c174c07456c2);
var popup_bda5424f2d9a52bd6593e6c9cbe658a4 = L.popup({
"maxWidth": 200,
});
var html_e7cace06d735b465dc7d76b3368e9dce = $(`<div id="html_e7cace06d735b465dc7d76b3368e9dce" style="width: 100.0%; height: 100.0%;"><strong>2: Carryduff</strong></div>`)[0];
popup_bda5424f2d9a52bd6593e6c9cbe658a4.setContent(html_e7cace06d735b465dc7d76b3368e9dce);
circle_marker_82a686811f0ca09715c09498858e7f44.bindPopup(popup_bda5424f2d9a52bd6593e6c9cbe658a4)
;
circle_marker_82a686811f0ca09715c09498858e7f44.bindTooltip(
`<div>
<strong>2: Carryduff</strong>
</div>`,
{
"sticky": true,
}
);
var circle_marker_74be53b821150925daeff0295ad39520 = L.circleMarker(
[54.5498, -5.7454],
{"bubblingMouseEvents": true, "color": "white", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(feature_group_99b8da1ff7295bad79f0c174c07456c2);
var popup_2c1879c9c399cb154db1fe645d49a909 = L.popup({
"maxWidth": 200,
});
var html_77727c1f535b2973c8dae1429a5e3a46 = $(`<div id="html_77727c1f535b2973c8dae1429a5e3a46" style="width: 100.0%; height: 100.0%;"><strong>3: Comber</strong></div>`)[0];
popup_2c1879c9c399cb154db1fe645d49a909.setContent(html_77727c1f535b2973c8dae1429a5e3a46);
circle_marker_74be53b821150925daeff0295ad39520.bindPopup(popup_2c1879c9c399cb154db1fe645d49a909)
;
circle_marker_74be53b821150925daeff0295ad39520.bindTooltip(
`<div>
<strong>3: Comber</strong>
</div>`,
{
"sticky": true,
}
);
var circle_marker_6f91545c8ce754df71416ac88d9de53d = L.circleMarker(
[54.5934, -5.6961],
{"bubblingMouseEvents": true, "color": "white", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(feature_group_99b8da1ff7295bad79f0c174c07456c2);
var popup_ee4b7d07977825da05a91399d0d7dde1 = L.popup({
"maxWidth": 200,
});
var html_68078fdc1d45803d23de6858577ee6df = $(`<div id="html_68078fdc1d45803d23de6858577ee6df" style="width: 100.0%; height: 100.0%;"><strong>4: Newtownards</strong></div>`)[0];
popup_ee4b7d07977825da05a91399d0d7dde1.setContent(html_68078fdc1d45803d23de6858577ee6df);
circle_marker_6f91545c8ce754df71416ac88d9de53d.bindPopup(popup_ee4b7d07977825da05a91399d0d7dde1)
;
circle_marker_6f91545c8ce754df71416ac88d9de53d.bindTooltip(
`<div>
<strong>4: Newtownards</strong>
</div>`,
{
"sticky": true,
}
);
var circle_marker_d80935a37bf4c2e3850462ec65609f17 = L.circleMarker(
[54.6425, -5.5376],
{"bubblingMouseEvents": true, "color": "white", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(feature_group_99b8da1ff7295bad79f0c174c07456c2);
var popup_4dd7da30ef6e89a0ced72164008757b5 = L.popup({
"maxWidth": 200,
});
var html_1ed643d6dbbd1fd24a8b105bb3a2f38f = $(`<div id="html_1ed643d6dbbd1fd24a8b105bb3a2f38f" style="width: 100.0%; height: 100.0%;"><strong>5: Donaghadee</strong></div>`)[0];
popup_4dd7da30ef6e89a0ced72164008757b5.setContent(html_1ed643d6dbbd1fd24a8b105bb3a2f38f);
circle_marker_d80935a37bf4c2e3850462ec65609f17.bindPopup(popup_4dd7da30ef6e89a0ced72164008757b5)
;
circle_marker_d80935a37bf4c2e3850462ec65609f17.bindTooltip(
`<div>
<strong>5: Donaghadee</strong>
</div>`,
{
"sticky": true,
}
);
var circle_marker_dc181777793fbac6bd0a10575899c7fa = L.circleMarker(
[54.6626, -5.6679],
{"bubblingMouseEvents": true, "color": "white", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(feature_group_99b8da1ff7295bad79f0c174c07456c2);