-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
3410 lines (3057 loc) · 463 KB
/
index.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="ISO-8859-1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Information Visualization - Project 4 - Subway History</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css">
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/style.css" media="screen" type="text/css" />
<link rel="stylesheet" href="css/info-holder.css" media="screen" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Raleway|Muli|Cinzel+Decorative' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Orbitron' rel='stylesheet' type='text/css'>
<script src="http://d3js.org/d3.v3.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.3/jquery.mobile.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.3/jquery.mobile.min.js"></script>
<script type="text/javascript" src = "js/playAndPause.js"></script>
<!--script type="text/javascript" src = "js/updateColors.js"></script>-->
<script type="text/javascript" src = "js/geoToXY.js"></script>
<script type="text/javascript" src = "js/shiftLine.js"></script>
<script type="text/javascript" src = "js/stationInfoHolder.js"></script>
<script type="text/javascript" src = "js/populateInfo.js"></script>
<script type="text/javascript" src = "js/getStationInfo.js"></script>
<script type="text/javascript" src = "js/convertSymbols.js"></script>
<script type="text/javascript" src = "js/stationInformation.js"></script>
<script type="text/javascript" src = "js/changeStations.js"></script>
<script type="text/javascript" src = "js/addStation.js"></script>
<script type="text/javascript" src = "js/removeStation.js"></script>
<script type="text/javascript" src = "js/findStation.js"></script>
<script type="text/javascript" src = "js/connectionInformation.js"></script>
<script type="text/javascript" src = "js/changeConnections.js"></script>
<script type="text/javascript" src = "js/addConnection.js"></script>
<script type="text/javascript" src = "js/removeConnection.js"></script>
<script type="text/javascript" src = "js/shiftLine.js"></script>
<script type="text/javascript" src = "js/populationDensity.js"></script>
<script type="text/javascript" src = "js/zoom.js"></script>
<script type="text/javascript" src = "js/addZoomLayer.js"></script>
<script type="text/javascript" src = "js/addText.js"></script>
<script type="text/javascript" src = "js/dataPreparation.js"></script>
<script type="text/javascript" src="js/populationPeopleChange.js"></script>
<script type="text/javascript" src="js/fillMap.js"></script>
<script type="text/javascript" src="js/changeLegend.js"></script>
<script type="text/javascript" src = "js/legendSVG.js"></script>
</head>
<body align="middle">
<div class="row" id="container">
<div class="col-sm-12 col-md-9">
<div id="visual" class="row">
<!-- <image id="img9" x="0" y="0" src='Stockholm.svg'></image> -->
<svg id="map" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
<rect width="100%" height="100%" style="fill:#CFCFC4;"></rect>
<g id="outer">
<g id="geoMap">
<g id="svg2424_1_" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:svg="http://www.w3.org/2000/svg" xmlns:dc="http://purl.org/dc/elements/1.1/" sodipodi:version="0.32" inkscape:output_extension="org.inkscape.output.svg.inkscape" inkscape:version="0.48.2 r9819" sodipodi:docname="Stockholm_karta2_map.svg">
<sodipodi:namedview bordercolor="#666666" guidetolerance="10.0" gridtolerance="10.0" objecttolerance="10.0" borderopacity="1.0" inkscape:cx="1531.702" fit-margin-left="0" showgrid="false" fit-margin-top="0" inkscape:cy="1171.6939" id="base" inkscape:zoom="0.25455844" pagecolor="#ffffff" inkscape:pageopacity="0.0" inkscape:window-height="1238" inkscape:pageshadow="2" inkscape:window-width="1465" inkscape:window-maximized="0" inkscape:window-x="99" inkscape:window-y="28" inkscape:current-layer="layer1" fit-margin-right="0" fit-margin-bottom="0">
</sodipodi:namedview>
<g id="layer_islands" transform="translate(191,-10.1115)" inkscape:label="Islands" inkscape:groupmode="layer" sodipodi:insensitive="true">
<path id="path_island_restaurangholmen" inkscape:label="Restaurangholmen" sodipodi:nodetypes="ccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M598.828,354.532l0.246,0.305l0.267,0.487l0.842,0.671l0.477,0.385l0.162,0.772l-0.123,0.447l-0.681-0.082l-0.678-0.204
l-0.408-0.224l-0.124-0.43l-0.268-0.445l0.063-0.568l0.389-0.163l-0.242-0.405l-0.188-0.406L598.828,354.532z"/>
<path id="path_island_korsholmen" inkscape:label="Korsholmen" inkscape:connector-curvature="0" fill="#878770" d="
M607.811,359.778l0.41-0.243l0.229,0.386l0.288,0.39l0.569-0.104l0.164-0.104l-0.164-0.631l-0.185-0.729v-0.978l-0.572-0.633
l-0.619,0.021l-0.142,0.185l0.245,0.326l0.063,0.282l-0.327,0.185l-0.124,0.186l0.021,0.833l-0.126,0.163L607.811,359.778z"/>
<path id="path_island_furuholmen2" inkscape:label="Furuholmen" inkscape:connector-curvature="0" fill="#878770" d="
M601.287,364.634l-0.104,0.979l0.493,0.265l0.146-0.265l-0.08-0.528l-0.205-0.566L601.287,364.634z"/>
<path fill="#878770" d="M612.407,340.678"/>
<path id="path_island_reimersholme" inkscape:label="Reimersholme" inkscape:connector-curvature="0" fill="#878770" d="
M440.636,308l0.123,0.792l-0.226,0.956l-0.656,0.712l-1.928,0.081l-1.704-0.142l-1.046-0.63l-0.368-0.692l0.204-0.487l1.252-0.102
l0.553-0.366l0.842-0.549h1.128l1.498,0.264L440.636,308z"/>
<path id="path_island_langholmen" inkscape:label="LÃ¥ngholmen" inkscape:connector-curvature="0" fill="#878770" d="
M442.771,307.737l1.52-0.366l0.677-0.487l1.271-0.163l1.601-0.264l0.186-0.529l-0.451-0.444l-0.287-0.203l0.043-0.366
l-1.108-0.265l-1.888-0.122l-2.398-0.163l-1.396,0.102l-0.409,0.266l-0.063,0.55l-0.392,0.525l-0.595-0.565l-0.924,0.02
l-0.558-0.082l-0.471-0.63l-1.334,0.387l-0.226,0.995l-0.68,0.389l0.146,0.671l0.493,0.264l0.859-0.021l2.194-0.365l1.579,0.427
l1.047,0.366L442.771,307.737z"/>
<path id="path_island_lindholmen" inkscape:label="Lindholmen" inkscape:connector-curvature="0" fill="#878770" d="
M414.646,314.099l1.479,0.041l0.637,0.101l0.146,0.467l-0.165,0.164l-1.048-0.122l-0.229,0.267l-0.717-0.528L414.646,314.099z"/>
<path id="path_island_rotholmen" inkscape:label="Rotholmen" inkscape:connector-curvature="0" fill="#878770" d="
M412.944,315.542l0.695,0.041l0.311-0.102l0.288,0.163l-0.021,0.366l-0.718,0.081l-0.432-0.04l-0.368-0.407L412.944,315.542z"/>
<path id="path_island_storaessingen" inkscape:label="Stora Essingen" inkscape:connector-curvature="0" fill="#878770" d="
M420.842,300.317l1.066-0.508l2.354,2.175l1.149,2.175l0.532,1.505l-0.492,1.604l-0.759,0.363l-2.708,1.893l-2.298,0.204
l-1.13,0.688l-1.334-0.061l-0.247-0.938l-0.924-0.834l-0.528-1.301l0.922-1.464l0.329-0.447l1.252-0.508l0.511-0.488l0.657-0.671
l0.348-0.102l0.328-0.307c0,0-0.227-0.265-0.227-0.364c0-0.104,0.041-0.284,0.041-0.284l0.368-0.366l-0.287-0.264l-0.02-0.712
l0.676-0.365L420.842,300.317z"/>
<path id="path_island_lillaessingen" inkscape:label="Lilla Essingen" sodipodi:nodetypes="ccccccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M429.355,300.48l-2.152,1.26l0.042,1.159l0.288,0.305l0.923-0.183l0.37,0.426l0.082,0.488l0.165,0.304l0.652,0.104l0.518-0.364
l0.206,0.364h0.529l0.146-0.364l0.514-0.104l0.435-0.386l-0.063-0.285h0.657v-0.771l0.493-0.227l-0.658-0.63l-1.146-0.427
l-0.779-0.345L429.355,300.48z"/>
<path id="path_island_kungsholmen" inkscape:label="Kungsholmen" inkscape:connector-curvature="0" fill="#878770" d="
M424.678,290.009l0.287,0.997l0.188,2.178l1.128,0.976l-0.188,0.366l-1.25,0.204l0.042,0.485l-0.53,1.223l1.905,1.383l1.743,0.976
l0.8,0.366l1.538,0.406l0.944,0.752l0.982,0.771l1.334,0.754l1.146-0.063l1.046,0.366l1.991,0.061l0.43-0.548l0.517-0.143
l0.104,0.525l0.288-0.061l0.41,0.508l0.349-0.061l0.205-0.874l-0.575-0.488l0.022-0.122l1.104-0.183l0.475-0.082l1.105-1.585
l0.205-0.366l0.86,0.102l1.908,0.186l1.562,0.525l1.782,0.529l1.006,0.528l0.923,0.041l0.37-0.227l1.947,0.163l1.438-0.163
l1.415-0.223l1.046-0.367l1.148-0.122l-0.557-1.28l-0.943-0.689l-1.865-2.541l-0.964-2.074l-0.884-0.975l-1.537-1.061
l-3.139-1.057l-3.979-1.24l-4.369-1.563l-1.602,0.082l-1.291-0.43l-0.574-0.468l-2.359-0.813l-2.75,0.041l-1.906,1.26
l-1.129,1.464l-1.212,1.037l-1.045,0.508L424.678,290.009z"/>
<path id="path_island_stadsholmen" inkscape:label="Stadsholmen (Gamla stan)" inkscape:connector-curvature="0" fill="#878770" d="
M466.646,305.256l-0.229,0.389l0.922,0.566l0.903-1.077l0.697-3.415l-0.763-1.625l-0.471-0.364l-0.718-0.956l-2.585,1.504
l-0.778-0.346l-1.313,0.363l-0.285,0.326l1.271,1.87l0.063,1.037l1.313,1.158l1.066-0.063L466.646,305.256z"/>
<path id="path_island_riddarholmen" inkscape:label="Riddarholmen" inkscape:connector-curvature="0" fill="#878770" d="
M461.456,300.418l1.581,2.135v0.772l-0.965,0.285l-1.579-0.671l-0.288-0.366l-0.247-1.748l0.944-0.386L461.456,300.418z"/>
<path id="path_island_stromsborg" inkscape:label="Strömsborg" inkscape:connector-curvature="0" fill="#878770" d="
M461.374,299.525l-0.229,0.223l-0.226-0.244l0.309-0.183L461.374,299.525z"/>
<path id="path_island_helgeandsholmen" inkscape:label="Helgeandsholmen" inkscape:connector-curvature="0" fill="#878770" d="
M465.846,298.853l-1.578,1.017l-0.472-0.082l-0.493-0.486l0.246-0.324l0.719-0.406l0.82-0.488l0.493,0.041l0.267,0.285v0.446
L465.846,298.853L465.846,298.853z"/>
<path id="path_island_kungshatt" inkscape:label="Kungshatt" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccsccccccccccccccccczzsccscc" inkscape:connector-curvature="0" fill="#878770" d="
M363.059,339.57l0.614-0.61l0.411-0.771l0.431-0.712l0.021-0.854l0.328-0.226l0.348,0.185l0.411-0.403l-0.328-0.61l0.636-0.914
l0.534,0.021l0.389-0.484l0.681-0.021l0.165,0.347l0.799-0.266l1.087,0.104l1.088-0.896l0.717-0.203l0.409-0.508l0.575,0.041
l0.534-0.875l1.168-0.388l0.248-2.013l0.922-0.511l-0.145-0.954l0.228-0.347l-2.419-2.623l-0.166-0.387l0.411-0.712l-0.206-0.202
h-0.78l-0.512,0.467l-0.247-0.122l-0.205-0.63c0,0-0.45,0.225-0.554,0.244c-0.104,0.021-1.086,0.021-1.086,0.021l-1.007-1.481
l-0.925-0.082l-0.349,0.347l0.411,0.608l0.042,0.488l-0.615,0.281l-0.759-0.223l-0.314,0.191l-0.219,0.136l-0.228,0.141
l-0.698,0.081l-0.391,0.204l-0.122,0.345l-0.247,0.488l-0.78,0.264l-0.471,0.122c-0.28,0.563-3.407,3.274-3.569,4.024
c-0.164,0.75,1.61,0.527,1.884,0.979c0.276,0.454,0.235,0.801-0.002,1.063c-0.477,0.529-2.136,0.25-2.136,0.25l-1.891,2.361
c0,0-1.645,2.334-1.232,3.502c0.438,1.242,3.196,3.015,3.196,3.015C360.069,341.228,361.73,341.2,363.059,339.57z"/>
<path id="path_island_flasket" inkscape:label="Fläsket" inkscape:connector-curvature="0" fill="#878770" d="
M389.807,323.57l0.021,0.631l-0.353,0.305l-1.169-0.061l-0.061-0.307l0.512-0.366l0.473-0.161L389.807,323.57z"/>
<path id="path_island_fagelon" inkscape:label="Fågelön" inkscape:connector-curvature="0" fill="#878770" d="
M392.166,318.226c0.144,0.081,0.554,0.403,0.554,0.403l-0.124,1.771l-0.799,0.145l-1.435-0.122l-0.764,0.406l-1.394,0.365
l-0.884,0.648l0.062,0.429l0.063,0.163l-1.026,1.158l-0.759-0.429l-0.656,0.589l-0.104,0.366l-0.245,0.204l-1.088,1.422
l-0.679-0.021l-0.735-0.471l-0.41-0.041l-0.531-0.508l-0.639,0.486l-1.478,0.185l-0.965-0.508l-0.983-1.403l-0.247-1.585
l-0.654-0.183l-0.104-0.569l-0.389-0.526l0.531-0.914l1.024-0.938l0.596-0.59l0.818-0.225l0.575-0.711l1.723-0.081l0.575,0.896
l3.343-0.041l0.246,0.186l1.146-0.063l0.433-0.447l1.229-0.02l0.533,0.426l0.637-0.325l2.176,0.896L392.166,318.226z"/>
<path id="path_island_unknown0" inkscape:label="(Unknown)" inkscape:connector-curvature="0" fill="#878770" d="M394.483,315.827
l0.286,0.081l-0.104,0.285l-0.269-0.186L394.483,315.827z"/>
<path id="path_island_bjornholmen" inkscape:label="Björnholmen" inkscape:connector-curvature="0" fill="#878770" d="
M394.503,316.316l0.698-0.021l0.411,0.204l0.554-0.185l0.574,0.347l0.572,0.082l0.408,0.67l0.063,0.649l-0.82,0.203l-0.246,0.445
l-0.759,0.104l-0.431,0.429l-1.354,0.082l-1.21-0.938l-1.188-1.018l0.226-0.348l1.457-0.204l0.984-0.104L394.503,316.316z"/>
<path id="path_island_tallholmen" inkscape:label="Tallholmen" inkscape:connector-curvature="0" fill="#878770" d="
M394.402,315.563l0.326-0.407l0.325-0.021l-0.041-0.345l-0.368-0.325l-0.778-0.082l-0.369,0.349l0.103,0.445
c0,0,0.452-0.102,0.476-0.021c0.021,0.082,0.042,0.427,0.042,0.427L394.402,315.563z"/>
<path id="path_island_granholmen2" inkscape:label="Granholmen" inkscape:connector-curvature="0" fill="#878770" d="
M391.653,314.526l-0.492,0.346l-0.229,0.345l-0.39-0.122l-0.184-0.223l0.082-0.386l0.49-0.146l0.328-0.283L391.653,314.526z"/>
<path id="path_island_krankholmen" inkscape:label="Krankholmen" inkscape:connector-curvature="0" fill="#878770" d="
M387.141,313.104l0.287,0.525l0.515,0.145l0.146,0.406l0.369,0.364l0.083,0.57l-0.083,0.406l-0.738,0.427l-0.553,0.692
l-0.534-0.021l-0.327-0.266l-0.82-0.307l-0.637-0.306l0.083-0.408h0.882l0.123-0.525l-0.451-0.57l0.021-0.365l0.883-0.346
l0.351-0.266L387.141,313.104z"/>
<path id="path_island_skraddarholmen" inkscape:label="Skräddarholmen" sodipodi:nodetypes="cccssccccccccscccccscc" inkscape:connector-curvature="0" fill="#878770" d="
M374.998,317.88l0.245,0.406l-0.081,0.771c0,0-0.229,0.282-0.229,0.389c0,0.102,0,0.711-0.082,0.832
c-0.083,0.121-0.612,0.854-0.612,0.854l-0.435-0.2l-0.144-0.015l-0.369-0.026l-0.37-0.349l-0.31-0.163l-0.391-0.265l-0.205-0.243
c0,0-0.719,0.104-0.677,0.021s0.083-0.244,0.083-0.244l0.391-0.267l-0.146-0.387l0.473-0.284l0.513-0.203
c0,0,0.063-0.322,0.145-0.322s1.438-0.146,1.438-0.146L374.998,317.88z"/>
<path id="path_island_koffsan" inkscape:label="Koffsan" inkscape:connector-curvature="0" fill="#878770" d="M370.834,316.194
l0.636,0.388l0.021,0.386l-0.247,0.021l-0.615-0.427L370.834,316.194z"/>
<path id="path_island_morgongavan" inkscape:label="Morgongåvan" inkscape:connector-curvature="0" fill="#878770" d="
M373.889,314.14l0.493-0.041l-0.143,0.346l-0.411-0.081L373.889,314.14z"/>
<path id="path_island_hundholmen" inkscape:label="Hundholmen" sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M366.135,310.928l0.392,0.201l0.063,0.691l0.123,0.305l-0.309,0.163l-0.516-0.366l-0.062-0.264l0.041-0.427L366.135,310.928z"/>
<path inkscape:label="Lovön" sodipodi:nodetypes="ccccccccccccccccsccccccccccccccsscssccsccsscsscccsszzccc" inkscape:connector-curvature="0" fill="#878770" d="
M322.294,338.693"/>
<path inkscape:label="Lovön" sodipodi:nodetypes="ccccccccccccccccsccccccccccccccsscssccsccsscsscccsszzccc" inkscape:connector-curvature="0" fill="#878770" d="
M322.341,317.351"/>
<path inkscape:label="Lovön" sodipodi:nodetypes="ccccccccccccccccsccccccccccccccsscssccsccsscsscccsszzccc" inkscape:connector-curvature="0" fill="#878770" d="
M322.341,273.703"/>
<path id="path_island_karson" inkscape:label="Kärsön" inkscape:connector-curvature="0" fill="#878770" d="
M367.899,294.443l0.144,0.345l0.37,0.021l0.247,0.508l0.431,0.387l0.475-0.366l0.982,0.65l0.311,0.854l0.391,0.186l0.104,0.854
l2.112,0.67l0.861,0.732l0.144,1.301l5.333,2.784l0.82-0.021c0,0,0.779,0.649,0.862,0.73c0.083,0.082,0.245,0.671,0.245,0.671
l0.776,0.366l0.759,0.915h0.532l0.271-0.325l0.611,0.021l2.257,2.257l0.532-0.268l0.639,0.55h0.595l0.636-0.347l0.821,0.813
l0.267,0.833l-0.553,1.097l-1.047,0.203l-0.885,0.427l-0.654,0.325l-1.107,0.528l-0.308-0.186l-0.451,0.39l-0.902,0.264
l-0.615,0.162l-0.204-0.203l-0.859,0.529l-0.801,0.041l-0.697,0.345l-0.617-0.122l-1.271,0.671c0,0-0.268-0.651-0.246-0.549
c0.021,0.101-1.886,0.751-1.886,0.751s-1.252-0.67-1.334-0.67s-0.639,0.041-0.639,0.041l-1.005-0.731l-1.313-0.345l-0.573-0.366
l-0.986,0.063l-0.57,0.183l-0.762,1.017l-1.271-0.142c0,0-0.903-0.712-0.965-0.813c-0.063-0.101-0.229-0.935-0.229-0.935
l-0.677-0.57l0.371-0.771l0.759-0.487l0.311,0.386l0.49,0.041c0,0,0.205,0.326,0.287,0.366c0.083,0.041,0.492,0.122,0.492,0.122
s0.165,0.225,0.269,0.185c0.104-0.041,0.474-0.469,0.474-0.469l-0.33-0.468l-0.228-0.488L369.32,309l-0.408-0.854l0.595-2.906
l-0.063-0.631l0.409-0.488l0.288-1.402l-0.697-0.771l-0.021-1.28l0.434-0.854l0.041-0.509l-0.738-0.633l0.164-0.485l-1.619-1.564
l-0.554-0.977l0.309-0.752L367.899,294.443z"/>
<path id="path_island_tranholmen" inkscape:label="Tranholmen" inkscape:connector-curvature="0" fill="#878770" d="
M469.929,247.217c0.083-0.041,1.107-0.444,1.107-0.444l0.061-0.227l1.603-0.444l0.452-0.082l0.165-0.979l0.448-0.486l0.845,0.062
l0.489,0.487v1.159l0.598,0.607l0.841,0.225l1.104,0.041c0,0,0.123,0.447,0.123,0.527c0,0.082,0.575-0.081,0.575-0.081
l0.963-0.366l1.171,0.732l1.024,0.649l-0.553,1.117l-0.884,0.632l-2.381-0.896l-1.065,0.57l-1.209,0.081l-0.433,0.244
l-2.439-1.281l-0.943-0.507l-0.574-0.162l-0.652-0.771L469.929,247.217z"/>
<path id="path_island_samso" inkscape:label="Samsö" inkscape:connector-curvature="0" fill="#878770" d="
M479.343,227.46c0,0-0.266,0.268-0.205,0.345c0.063,0.082,0.271,0.511,0.271,0.511l0.349,0.062l0.104-0.406l-0.492-0.607
L479.343,227.46z"/>
<path id="path_island_bockholmen" inkscape:label="Bockholmen" inkscape:connector-curvature="0" fill="#878770" d="
M454.77,244.78l0.779,0.224l0.369,0.406l0.513,0.346l0.104,0.447l-0.229,0.163l-0.165,0.488l-0.307,0.061l-0.616-0.305
l-0.308-0.284l-0.063-0.387l-0.287-0.447l-0.043-0.406L454.77,244.78z"/>
<path id="path_island_storaskraggen" inkscape:label="Stora Skraggen" inkscape:connector-curvature="0" fill="#878770" d="
M487.239,214.105l0.351,0.59l-0.289,0.284c0,0-0.144,0.204-0.081,0.284c0.063,0.081,0.532,0.364,0.532,0.364l0.188,0.47
c0,0,0.556-0.187,0.761-0.123c0.203,0.061,0.613,0.283,0.635,0.363c0.021,0.082,0.021,0.187,0.123,0.204
c0.104,0.021,0.717,0.063,0.717,0.063l0.369,0.223l0.392,0.041l-0.612-0.629c0,0,0.041-0.204,0.103-0.326
c0.063-0.122,0.205-0.67,0.205-0.67l-0.368-0.305l-0.452,0.202c0,0-0.164-0.308-0.243-0.325c-0.084-0.021-0.433-0.365-0.433-0.365
l-0.431-0.204c0,0-0.353-0.183-0.313-0.264c0.042-0.082,0.083-0.265,0.083-0.265l-0.554-0.203c0,0-0.063,0.366-0.145,0.386
C487.69,213.921,487.281,214.105,487.239,214.105z"/>
<path id="path_island_lillaskraggen" inkscape:label="Lilla Skraggen" inkscape:connector-curvature="0" fill="#878770" d="
M491.322,214.368l0.449,1.139l0.285,0.104l0.271-0.203c0,0,0.04-0.265-0.042-0.345c-0.083-0.082-0.394-0.672-0.394-0.672
s-0.241-0.267-0.325-0.203C491.485,214.246,491.261,214.368,491.322,214.368z"/>
<path id="path_island_limpholmarnan" inkscape:label="Limpholmarna (north)" inkscape:connector-curvature="0" fill="#878770" d="
M488.472,219.675l0.517,0.348v0.854l-0.477-0.346l-0.102-0.345L488.472,219.675z"/>
<path id="path_island_limpholmarnas" inkscape:label="Limpholmarna (south)" inkscape:connector-curvature="0" fill="#878770" d="
M488.942,221.139l0.858,0.508l-0.02,0.975v0.386l-0.68-0.566c0,0-0.45-0.47-0.409-0.549
C488.738,221.809,488.962,221.158,488.942,221.139z"/>
<path id="path_island_stromso" inkscape:label="Strömsö" inkscape:connector-curvature="0" fill="#878770" d="
M483.733,230.001l-0.329,0.325l-0.368,0.366c0,0,0.123,0.365,0.205,0.386s0.532-0.101,0.532-0.101L484,231.2l0.452-0.203
l-0.082-0.427L483.733,230.001z"/>
<path id="path_island_bergholmen" inkscape:label="Bergholmen" sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M481.824,231.852l-0.515-0.104l-0.267,0.488l0.677-0.122l0.371,0.02l0.492,0.021l0.308-0.548l0.021-0.509L481.824,231.852z"/>
<path id="path_island_fogdholmen" inkscape:label="Fogdholmen" inkscape:connector-curvature="0" fill="#878770" d="
M480.861,232.542l0.144,0.407l-0.431,0.061l-0.063-0.305l0.165-0.183L480.861,232.542z"/>
<path id="path_island_lidingon" inkscape:label="Lidingön" sodipodi:nodetypes="cccscccccccsscccccccsccccccccccccccccccssscccccsccccccccccscsccccccccsccccccscscccsccccsssscscsccsccscsscsssssssccssccccccscccccssccsccccccscccccccccsccccccccccccccccccccscccscccccccccccscccccccccccsccccccccccccccccccscscsccscccssccscscccccccscccscsccssccccccsccccsssccccscssscccccccccccccccccsccccsccccscccscscccccccssccccssccccssscsssscccscscsccccccccccscssscccscsccscccsccccccccccccccsscccsssssccccccccscccccsccccccccccccccscsccsccsccccccsccssccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M480.717,233.538v1.301l0.493,0.243c0,0,0.328,0.285,0.389,0.203c0.063-0.081,0.435-0.304,0.435-0.304l0.556,0.203l-0.165,0.647
l-0.779,0.794l-0.965,0.588l-1.128,0.041l-0.431,0.488c0,0-0.083,0.569-0.083,0.792c0,0.225-0.228,0.468-0.205,0.631
c0.021,0.162,0.083,0.69,0.083,0.69l-0.31,0.566l0.062,0.65l0.123,0.427l0.349,0.406l0.188,0.509l0.799,0.081
c0,0,0.104,0.427,0,0.488c-0.103,0.061-0.575,0.204-0.575,0.204l0.639,0.386l1.618,0.306l0.657,0.326l-0.227,0.854l0.39,1.017
l1.026,0.366l0.98,0.752l1.271,0.854l0.144,0.511l2.318,1.237l-0.434,0.569l0.287,1.118l1.024,0.143l0.371,0.59l-0.354,0.854
l0.944,1.606l1.865,0.404c0,0,0.536,0.43,0.573,0.569c0.041,0.143-0.084,0.689-0.146,0.771s-0.327,0.593-0.512,0.634
c-0.188,0.041-1.067-0.041-1.067-0.041l-1.104-0.063l0.104,0.691l0.244,0.976l-0.45,1.423c0,0-0.186,0.979-0.164,1.078
c0.021,0.104,0.164,0.938,0.164,0.938l0.965,0.832l0.902,0.813l0.082,1.036l-0.269,1.037l0.613,1.342l1.538,0.996l1.231,0.59
l0.121,0.671l0.883,1.504c0,0,0.945,0.938,0.982,1.036c0.038,0.104,1.619,1.02,1.619,1.02s0.843,1.481,0.965,1.563
c0.125,0.082,0.736,1.281,0.736,1.281l1.645,1.442l0.775,1.198l1.438,1.771l1.247,0.935l1.008,0.366l1.457,1.484l1.063,0.63
c0,0,0.454-0.063,0.534,0c0.085,0.061,0.615,0.427,0.615,0.427h0.29l1.127-0.711l1.518,0.183l2.463,0.528l1.209,1.261
c0,0-0.245,0.325-0.186,0.406c0.063,0.082,0.491,0.346,0.491,0.346s0.534,0.488,0.534,0.63c0,0.145-0.33,0.673-0.33,0.673
l0.228,0.689l0.942,0.265c0,0,0.288-0.241,0.408-0.201c0.125,0.041,1.048,0.363,1.048,0.363h1.046l0.104-0.549l0.435-0.325
c0,0,0.594-0.224,0.692-0.224c0.104,0,0.723,0.102,0.822,0.143c0.104,0.041,0.428,0.348,0.449,0.429
c0.02,0.081,0.205,0.526,0.288,0.566c0.079,0.041,0.759,0.021,0.759,0.021s0.264-0.162,0.409-0.162c0.143,0,1.066,0,1.066,0
s0.571-0.122,0.692-0.162c0.126-0.041,0.558-0.407,0.558-0.407l0.433-0.364c0,0,1.149,0.143,1.271,0.163
c0.123,0.021,1.024,0.184,1.024,0.184l0.612,0.204c0,0-0.391-0.325-0.391-0.429c0-0.103,0.187-0.387,0.187-0.387
s0.45-0.081,0.637-0.041c0.185,0.041,0.738,0.145,0.983,0.244c0.248,0.104,1.146,0.65,1.146,0.65s1.293,0.324,1.479,0.365
c0.185,0.041,1.13,0.242,1.229,0.282c0.104,0.041,1.229,0.244,1.354,0.285c0.121,0.041,1.21,0.203,1.521,0.264
c0.307,0.063,0.737-0.305,0.96-0.426c0.23-0.123,0.7-0.854,0.781-0.956c0.08-0.102-0.146-0.366-0.021-0.468
c0.122-0.103,1.149-1.321,1.149-1.321l0.101-0.405c0,0-0.718-0.161-0.676-0.266c0.043-0.102,0.146-0.895,0.27-0.875
c0.123,0.021,0.721,0.227,0.721,0.227l0.733-0.162l0.474-0.43l0.311-0.224l0.08-0.548l0.641,0.163c0,0,1.188,0.264,1.271,0.223
c0.083-0.04,0.736-0.04,0.736-0.04l0.536-0.324l0.324-0.388l-0.449-0.387l0.35-0.284c0,0,0.596-0.081,0.679-0.162
c0.08-0.082-0.041-0.59,0.063-0.567c0.104,0.021,0.554,0.485,0.554,0.485l0.612-0.04c0,0,1.603-1.116,1.52-1.261
c-0.08-0.143-0.759-0.833-0.759-0.833l-0.986-0.021l0.29-0.324l1.454-1.646l1.109,0.122l0.655,0.226c0,0,0.123,0.486,0.283,0.486
c0.166,0,1.538-1.139,1.538-1.139l0.737-1.138l0.188-1.036l-0.31-0.73l0.207-0.204l-0.905-0.729l0.166-0.365l0.862,0.224
l0.039-0.688c0,0-0.881-0.144-0.697-0.306c0.188-0.161,1.212-1.83,1.212-1.83l-0.652-0.589l-0.573-1.036l-0.394-2.072
l-1.252-1.424l-1.619,0.183l-0.761-0.528l0.104-1.237l-2.607-0.47l-1.619-0.566l-1.415,0.102l-0.513,0.325l-1.229-0.325
l-1.108,0.67l-1.619-0.525l-0.962,0.04l-0.472,0.894l0.366,0.833l0.021,0.406l-1.783,0.528c0,0-1.764-0.225-1.947-0.225
c-0.187,0-1.106-0.204-1.106-0.204l0.246-0.629l0.349-0.59c0,0,0.862,0.264,1.047,0.183c0.187-0.081,0.941-0.711,0.941-0.711
l0.433,0.349l0.843,0.183l0.325-0.122l0.493-0.691l-0.718-0.159l-0.435-0.43l-0.448,0.47l-0.532-0.204l-0.883-0.47l-1.19-0.264
c0,0-0.104,0.366-0.187,0.407c-0.08,0.041-2.193-0.57-2.193-0.57l-0.777,0.146l-0.925,0.549l-1.271-0.122l-2.197-0.104
l-1.271-0.688l-2.026-0.896l-2.177-0.485l-1.416-0.488l-1.806-1.261l-0.759-0.244c0,0-0.04-0.406-0.188-0.427
c-0.143-0.021-1.128-0.284-1.128-0.284l-0.732-0.448l-0.534,0.284l0.188,0.711l-0.409,0.063l-0.884-0.51l-0.943-0.324l-0.72-0.346
l-0.448-0.204l0.245-0.386l0.923-0.122l0.433-0.244l0.473-0.548l0.76-0.082l1.063,0.104l1.415,0.566l1.868,1.02l2.092,0.874
c0,0,0.738,0.244,0.862,0.284c0.122,0.041,0.859,0.486,0.859,0.486s1.334,0.308,1.437,0.326c0.104,0.021,1.008,0.365,1.008,0.365
s0.736-0.122,0.84-0.122s1.048,0.264,1.048,0.264l1.104,0.226c0,0,0.476,0.387,0.658,0.387c0.185,0,0.534-0.041,0.534-0.041
l0.143,0.549l0.759,0.813c0,0,0.311,0.446,0.477,0.446c0.16,0,0.53-0.102,0.552-0.183s0.146-0.711,0.146-0.711l1.064-0.104
c0,0,0.081-0.444,0.164-0.509c0.08-0.06,0.555-0.427,0.555-0.427s-0.084-0.387-0.166-0.387c-0.077,0-1.127,0.103-1.127,0.103
l-0.817-0.59l0.038-0.508l-0.775-0.366l-0.475-0.65l0.882-0.406l1.333-0.265c0,0,0.9-0.346,0.984-0.407
c0.08-0.061,1.045-0.427,1.045-0.427l0.696,0.792l1.005,0.244c0,0-0.226,0.508-0.284,0.63c-0.062,0.122-0.49,0.549-0.49,0.549
s-0.862,0.468-0.927,0.55c-0.063,0.081-0.595,0.487-0.595,0.487l0.267,0.63c0,0,0.656,0.528,0.736,0.488
c0.084-0.041-0.062-0.549,0.021-0.549c0.08,0,0.616,0.021,0.616,0.021l0.897,0.509l1.479-0.143l0.798-0.527l0.515-0.388
l0.983,0.488c0,0-0.063,0.284,0.021,0.427c0.084,0.143,1.744,0.225,1.744,0.225l0.904,0.063l0.676-0.508l0.41-0.61
c0,0-1.828-0.305-1.745-0.346s0.884-0.591,0.966-0.591c0.079,0,1.25,0.121,1.332,0.121s0.78-0.445,0.78-0.445l0.202-0.387
l1.661-0.365l1.25,0.671c0,0,0.353-0.021,0.515,0.062c0.164,0.081,0.31,0.711,0.31,0.711s0.452,0.43,0.533,0.469
c0.082,0.041,0.656,0.283,0.695,0.363c0.041,0.081,0.229,0.592,0.271,0.713c0.039,0.121,0.449,0.59,0.449,0.59l1.291-0.103
l1.334,0.528l2.258,0.061c0,0,1.375-0.081,1.64,0.041l3.16,0.631l1.313,0.551l0.902-0.712l1.147-0.041l0.819,0.527l1.66,0.365
l1.106-0.04l0.203,0.122l0.369-0.567l0.021-0.956l-1.229-0.486l-0.021-0.896c0,0-0.53-0.67-0.448-0.729
c0.08-0.063,0.406-0.146,0.406-0.146l0.124-0.283l0.761-0.469l0.203-0.589c0,0-0.41-0.793-0.367-0.956
c0.041-0.162,0.021-1.26,0.021-1.26l0.636-0.938l0.188-0.711l-0.818-0.264c0,0-0.597-1.586-0.679-1.667
c-0.082-0.082-0.612-0.671-0.612-0.671l-0.738-1.239l-0.449,0.427c0,0-0.476-0.225-0.476-0.142c0,0.081,0.063,0.467,0.063,0.467
s0.31,0.186,0.269,0.265c-0.044,0.08-0.245,0.365-0.245,0.365l-1.497-0.284l-0.639-0.913l-2.255-1.426l-1.438,0.672l-3.651-1.441
l-0.635,0.305c0,0,0.122,0.265,0.063,0.347c-0.063,0.081-0.434,0.365-0.555,0.266c-0.125-0.104-0.982-0.589-0.982-0.589
l-2.997-0.203l-1.7,0.265l-2.521-0.607c0,0-0.639-0.794-0.639-1.019c0-0.224,0.351-1.361,0.188-1.361
c-0.166,0-1.147-0.549-1.147-0.549l-0.843,0.185l-0.613-0.55l-0.393,0.365c0,0-0.326-0.082-0.367,0
c-0.042,0.081,0,0.406-0.146,0.427c-0.146,0.021-0.513,0.104-0.572,0.021c-0.063-0.081-0.207-0.487-0.207-0.487
s-0.798-0.509-0.881-0.486c-0.081,0.021-0.901,0.102-1.005,0.061c-0.104-0.041-0.738-0.345-0.844-0.345
c-0.104,0-1.044-0.386-1.149-0.366c-0.102,0.021-0.611,0.467-0.611,0.467l0.122,0.65l0.821,0.528c0,0,0.718,0.347,0.963,0.486
c0.247,0.146,0.882,0.509,0.882,0.509s-0.063,0.324-0.039,0.429c0.021,0.101,0.431,0.446,0.431,0.446s-0.203,0.225-0.594,0.307
c-0.392,0.081-0.616,0.081-0.616,0.081l-0.529-0.348l-0.862,0.082l-1.065-0.204l-1.229,0.063l-0.371,0.062l-0.904,0.243
l-0.51-0.323l-0.516,0.242l-0.516-0.345c0,0-0.532,0.162-0.655,0.162s-0.49-0.244-0.49-0.244s-0.489,0.306-0.575,0.226
c-0.08-0.082-0.53-0.488-0.53-0.568c0-0.082,0.246-0.266,0.287-0.366c0.041-0.103,0.227-0.568,0.227-0.568l0.475-0.185
l0.431-0.407c0,0,0.518-0.161,0.656-0.223c0.146-0.063,0.654-0.428,0.654-0.428s0.37-0.956,0.778-0.978
c0.411-0.02,0.901,0.063,0.901,0.063l-0.901-1.361c0,0-0.653-0.528-0.736-0.568c-0.081-0.041-0.986-0.753-0.986-0.753
l-0.653,0.366l-0.352,0.184c0,0-1.168-1.058-1.271-1.058c-0.103,0-1.684-0.183-1.684-0.183l-0.595,0.364l0.491,0.365l-0.596,0.488
l-1.048,0.487l-0.801-0.063l-0.49-0.528l-0.555-0.428l-0.717-0.915l-1.253-0.955l-1.214-0.021l-0.227-0.284l-1.211,0.244
l-0.063,0.406c0,0,0.392,0.486,0.392,0.589c0,0.102,0.188,0.671,0.188,0.771c0,0.104,0.329,0.551,0.329,0.551l-0.063,0.567
l-0.516,0.365c0,0-0.269,0.345-0.244,0.448c0.021,0.101,0.555,0.467,0.599,0.548c0.039,0.082,0.161,0.406,0.161,0.509
c0,0.102,0.188,0.345,0.245,0.508c0.063,0.162,1.024,0.366,1.065,0.447c0.044,0.081,0.804,0.63,0.804,0.63l-0.271,0.629
l-0.695,0.063l-0.555-0.145l-1.089-0.082l-0.245-0.365l-0.966-0.122l-1.438-0.242c0,0-1.147-0.227-1.147-0.308
c0-0.082,0.021-0.955,0.021-0.955l-0.409-0.284l-0.843,0.162l-0.489-0.527l-0.738-0.711c0,0-0.41-0.227-0.327-0.349
c0.081-0.12,0.394-0.853,0.394-0.853l-0.495-0.569l-0.572-0.346l-0.801-0.488l-1.129-0.082l-0.61-0.386l-0.457-0.487l-0.837-0.347
l0.677-0.813l-0.302-0.372l-0.191-0.646l-1.126,0.063l-0.555-1.524l-0.556-0.63c0,0-0.595-0.752-0.775-0.771
c-0.185-0.021-1.15,0.161-1.15,0.161s-0.678-0.323-0.801-0.427c-0.122-0.101-0.433-0.406-0.433-0.406l-1.088-0.549
c0,0-0.775-0.448-0.923-0.448c-0.146,0-0.611,0.063-0.611,0.063l0.02,0.387c0,0-0.449,0.186-0.613,0.122
c-0.161-0.061-0.901-0.223-0.901-0.223l-1.354-0.285l-1.17-0.162l-1.172-0.123l-0.982,0.114l-1.229,0.04
c0,0-0.392-0.284-0.392-0.467c0-0.186-0.266-0.51-0.266-0.51l-1.314,0.51c0,0,0.311,0.589,0.41,0.67
c0.104,0.082,0.597,0.648,0.533,0.771c-0.063,0.121-0.718,0.325-0.718,0.325l-0.655-0.568l-0.596,0.121h-0.615l-0.574,0.162
l-0.698-0.525l-0.571-0.813l-0.269-0.367l-1.457,0.082l-0.042-0.345l-0.775-0.042l-0.681,0.387l-0.636,0.528l-0.574,0.386
l-0.554,0.347l-0.597,0.388l-0.472,0.305l-0.696-0.507L480.717,233.538z"/>
<path id="path_island_unknown2" inkscape:label="(Unknown)" inkscape:connector-curvature="0" fill="#878770" d="M392.27,311.538
l0.45,0.122l-0.37,0.244L392.27,311.538z"/>
<path id="path_island_sumpholmen" inkscape:label="Sumpholmen" inkscape:connector-curvature="0" fill="#878770" d="
M595.669,340.627l0.512,0.104l0.576,0.348l0.451,0.445l0.244,0.063l0.245,0.569l0.329,0.201l0.021,0.226l-0.328,0.203
l-0.695-0.122l-0.268,0.346l-0.329-0.061l0.041-0.285l-0.349,0.041l-0.227-0.529l-0.166-0.566l0.476-0.021l-0.044-0.264
l-0.514-0.47L595.669,340.627z"/>
<path id="path_island_bergholmen2" inkscape:label="Bergholmen" inkscape:connector-curvature="0" fill="#878770" d="
M600.979,312.229l-0.156,0.223l-0.699,0.55l-0.288,0.65l-0.511-0.021l-0.721-0.566v-0.431l-0.489-0.444l0.021-0.308l0.639,0.104
l0.556-0.629l0.759-0.227l0.348,0.041l0.246-0.081v-0.2l0.368,0.041l0.518,0.525l-0.162,0.163l-0.395-0.284l-0.247,0.267
l0.247,0.386L600.979,312.229z"/>
<path inkscape:label="Värmdön" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccsccc" inkscape:connector-curvature="0" fill="#878770" d="
M612.419,269.561"/>
<path id="path_island_getholmen" inkscape:label="Getholmen" inkscape:connector-curvature="0" fill="#878770" d="
M603.012,271.206l-0.531-0.915l0.082-0.525l0.68-0.511l-0.805-0.648l-1.089-0.021l-0.267,0.569l0.125,0.387l0.678,0.69
l0.449,1.017L603.012,271.206z"/>
<path id="path_island_tegelon" inkscape:label="Tegelön" sodipodi:nodetypes="ccccccccccccccscccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M600.655,267.975l1.127-0.528l-0.438-0.427l0.021-0.407l0.734,0.305l0.558,0.082l0.573,0.186l0.72-0.186l0.8,0.021l0.27,0.322
v0.366l0.884,0.691l0.61-0.203l0.638,0.385c0,0,0.924,0.509,1.025,0.569c0.104,0.062,1.107-0.306,1.107-0.306l0.184-0.469
l0.804-0.509l-0.448-0.63l0.079-0.896l-1.313-1.302l-0.696-0.021l-0.471-0.589l-0.881-0.61l-0.104-0.285l-0.843-0.345
l-0.761,0.366l-1.021-0.448l-0.517,0.163l-0.268,0.468l-1.377,0.792l-1.105-0.568l0.736-0.306l-0.881-0.813l-0.943,0.264
l-0.532,0.224l-0.596,0.063l0.246,0.59l-0.677,0.549l-0.738-1.017l-1.028,0.203l0.561,0.606l0.122,0.35l1.063,0.362l1.889-0.163
l-0.063,0.651l0.452,0.711l-0.083,0.185l-0.558,0.021l0.31,0.467l0.187,0.041l0.394,0.997L600.655,267.975z"/>
<path id="path_island_tisdan" inkscape:label="Tisdan" inkscape:connector-curvature="0" fill="#878770" d="M611.813,265.15
l-0.104,0.447l-0.595-0.104l-0.532-0.225l-0.229-0.365l-0.45-0.671l0.082-0.346l0.636-0.063l0.473,0.183l0.104,0.39
L611.813,265.15z"/>
<path id="path_island_fredan" inkscape:label="Fredan" inkscape:connector-curvature="0" fill="#878770" d="M605.432,260.961
l0.147,0.711l-0.246,0.163l-0.391,0.041l-0.396-0.163l-0.595-0.305l-0.081-0.549l0.514-0.104l0.639-0.081L605.432,260.961z"/>
<path id="path_island_furuholmen" inkscape:label="Furuholmen" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M612.407,256.244l-0.083-0.65l-0.697-0.386l-0.104-0.935l0.819,0.122l0.072,0.223L612.407,256.244z"/>
<path id="path_island_edlunda" inkscape:label="Edlunda" inkscape:connector-curvature="0" fill="#878770" d="M606.745,253.766
l0.556,0.647l-0.228,0.345l-0.559,0.203l-0.678-0.386h-0.717l-1.313-0.244l-1.255-0.711l-2.521-0.976l-0.063-0.285l-2.852-0.63
l-0.575-0.875l0.329-0.388l1.396,0.243l0.435-0.405l0.678,0.486l0.883,0.348l0.716-0.267l2.422,0.854l0.27,0.566l0.393,0.063
l0.244-0.366l0.473,0.305l0.269,0.021l0.392,0.285h0.475l0.368-0.671l1.025,0.103l0.39,0.447l1.21-0.063l0.513,0.569l-0.243,0.325
l-0.021,0.752l-0.987,0.021l-0.733,0.162L606.745,253.766z"/>
<path id="path_island_granholmen" inkscape:label="Granholmen" inkscape:connector-curvature="0" fill="#878770" d="
M596.138,250.838l0.065-0.688l0.451,0.02l-0.105-0.606l-0.391-0.406l-1.354-0.186l-0.964-0.445l-0.083,0.244
c0,0-0.083,0.444-0.145,0.525c-0.063,0.081-0.146,0.187-0.146,0.187l-1.374-0.308l-0.821-1.057l-1.478-0.123l-0.164,0.183
l-0.739,0.163l-0.035,0.308c0,0,0.569-0.285,0.569-0.146c0,0.146,0.327,0.325,0.327,0.325l0.395-0.243l0.613,0.389l0.201,0.895
l0.615,0.041l0.517-0.265l0.203,0.021l0.021,0.428l0.451,0.388l0.76-0.163l0.552,0.264l1.065,0.122L596.138,250.838z"/>
<path id="path_island_storahoggarn" inkscape:label="Stora Höggarn" inkscape:connector-curvature="0" fill="#878770" d="
M584.922,258.134l0.448,0.407h0.842c0,0,0.244-0.526,0.327-0.508s0.574,0.204,0.574,0.204l0.267-0.326l-0.409-0.59l-0.349-0.244
l0.082-0.549l-0.021-0.386l0.943-0.267l0.862,0.146l-0.083-0.349l-0.882-0.752h-0.93l-0.922-0.935l-1.086,0.387l-0.922,0.203
l-0.313,0.915l-0.407,0.407l0.53,0.606c0,0,1.026,0.063,1.089,0.146c0.063,0.082,0.927,0.325,0.927,0.427s0.103,0.448,0.103,0.448
l-0.554,0.304L584.922,258.134z"/>
<path id="path_island_lillahoggarn" inkscape:label="Lilla Höggarn" inkscape:connector-curvature="0" fill="#878770" d="
M578.377,258.5l0.043,1.241l-0.372,0.223l-0.267-0.223l-0.478-0.346l0.246-0.267l0.229-0.363L578.377,258.5z"/>
<path id="path_island_duvholmen" inkscape:label="Duvholmen" inkscape:connector-curvature="0" fill="#878770" d="M572.017,254.7
l0.478,0.325l-0.063,1.098l-1.087-0.711l-0.53-0.061c0,0-0.063-0.407-0.063-0.488s-0.227-0.568-0.227-0.568h0.597l0.244,0.511
l0.37,0.183L572.017,254.7z"/>
<path id="path_island_angsholmen" inkscape:label="Ängsholmen" inkscape:connector-curvature="0" fill="#878770" d="
M521.495,295.439c0,0,0.124,0.566,0.021,0.63c-0.104,0.061-0.328,0.244-0.328,0.244l-0.61,0.061l-0.329,0.427
c0,0,0.43,0.65,0.348,0.691c-0.083,0.041-0.391,0.244-0.391,0.244l-0.432-0.589l-1.229,0.305l-0.517-0.61l0.188-0.305l0.922,0.041
l1.005-0.752l0.616,0.04l0.351-0.528L521.495,295.439z"/>
<path id="path_island_libertas" inkscape:label="Libertas" inkscape:connector-curvature="0" fill="#878770" d="M524.264,295.255
l-0.306,0.389c0,0,0.123,0.404,0.04,0.427c-0.081,0.021-0.313,0.102-0.313,0.102l-0.568-0.467l0.428-0.285L524.264,295.255z"/>
<path id="path_island_storafjaderholmen" inkscape:label="Stora Fjäderholmen" inkscape:connector-curvature="0" fill="#878770" d="
M523.774,297.837l0.388,1.101l-0.473,0.06l-0.452-0.325l-0.143,0.671l1.003-0.021l-0.021,0.386l-0.368,0.227l0.448,0.508
l0.637,0.345l-0.243,0.325l-0.68-0.122l-0.516-0.792l-0.981-0.122l-0.122,0.305l0.308,0.146l-0.819,0.549l-0.146-0.691
l-0.776-0.444l-0.352-0.308l0.186-0.59l1.252,0.081l0.104-0.244l0.8-0.528l0.244,0.104l0.393-0.468L523.774,297.837z"/>
<path id="path_island_sverigesholme" inkscape:label="Sveriges holme" inkscape:connector-curvature="0" fill="#878770" d="
M543.381,291.921l0.516,0.487l-0.285,0.265l-0.558-0.183l-0.185-0.447L543.381,291.921z"/>
<path id="path_island_danmarksholme" inkscape:label="Danmarks holme" inkscape:connector-curvature="0" fill="#878770" d="
M548.592,288.912l0.394,0.346v0.366c0,0-0.433,0.203-0.516,0.203c-0.08,0-0.409-0.163-0.409-0.163l-0.12-0.386l0.079-0.305
L548.592,288.912z"/>
<path id="path_island_djurgardson" inkscape:label="Djurgårdsön" inkscape:connector-curvature="0" fill="#878770" d="
M474.995,297.39l0.883-0.833l0.759-0.47l0.576,0.021l0.162-0.488l1.005-0.102l0.313,0.549l1.087,0.081l0.635,1.342l1.005-0.061
l0.288,0.549l0.307-0.428l0.247-0.388l1.169,0.325l0.311-0.366l1.333,0.145l1.005,0.386l0.227-0.305l0.33-0.163h0.654
l-0.165-0.528l2.521-0.163l0.104,0.284c0,0,1.847,0.123,1.929,0.123s0.352-0.308,0.352-0.308l1.765,0.552l1.948-0.488l1.415-0.063
l3.979,2.317l2.502,0.589l0.965,0.366l3.55,1.158l0.286,1.545l-0.327,0.082v0.567l0.245,0.202l-0.187,0.367l-0.368,0.163
l-0.021,0.304l1.496-0.224l0.394,0.387l1.375,0.145l0.92,0.366l-0.02,0.282l-0.453,0.488l0.104,0.589l-0.941,0.508l-1.973,0.245
l-0.554-0.468l-1.208-0.467l-0.779-1.158l-0.408,0.041l-0.229,0.792l-0.555,0.264l-0.717-0.549l-0.987,0.163l-0.943-0.224
l-1.477-0.202l-0.516,0.06l-0.638,0.366l-0.35-0.264l0.146-0.63l-2.318,0.08l-1.064,0.122l-1.065,0.184l-0.943,0.59l0.082,0.427
l0.248,0.771l-0.862,0.408l-1.188,0.061l-1.171,0.162l-0.884,0.285l-0.965,0.04h-0.473l-0.433,0.305L488,307.995l-0.205-0.608
l0.717-0.874l0.476,0.062l-0.146-0.63l-0.37-0.225l-0.164-0.429l0.369-0.224l-0.266-0.184l-1.046,0.225l-0.883,0.103l-0.104-0.244
h-1.21l-0.246,0.365l-0.534-0.345l-0.612,0.427l-0.777-0.387l-0.534,0.143l-0.841-0.183c0,0-0.616,0.102-0.718,0.061
c-0.104-0.041-0.451-0.243-0.451-0.243l-1.088,0.121l-0.532-0.201l-0.228,0.063l0.082-0.407c0,0-0.368-0.525-0.287-0.525
c0.083,0,0.449-0.122,0.449-0.122l-0.431-0.65l-0.553-0.955l0.49-0.854l0.473,0.04v-0.448l-0.229-0.427l-0.528,0.063l-0.436-0.528
l-0.612-0.305l-0.737-0.122c0,0-0.271-0.833-0.271-0.935c0-0.104-0.041-1.037-0.041-1.037l-0.858,0.061L474.995,297.39z"/>
<path id="path_island_beckholmen" inkscape:label="Beckholmen" inkscape:connector-curvature="0" fill="#878770" d="
M482.112,305.562l0.57,0.345l0.021,0.488l-0.083,0.671l-0.45,0.711l-0.432-0.082l0.57-0.772l-0.201-0.163l-0.739,0.651
l-0.312,0.203l-0.365-0.122l1.146-1.383l-0.349-0.104l-1.046,1.304l-0.411-0.162l-0.164-0.349l0.904-0.729l0.53-0.346
L482.112,305.562z"/>
<path id="path_island_kastellholmen" inkscape:label="Kastellholmen" inkscape:connector-curvature="0" fill="#878770" d="
M475.179,303.651l0.841-0.122l0.657,0.671l0.368,0.589l-0.205,0.488l-0.759,0.406l-0.411-0.081l-0.778-0.896L475.179,303.651z"/>
<path id="path_island_skeppsholmen" inkscape:label="Skeppsholmen" inkscape:connector-curvature="0" fill="#878770" d="
M471.836,298.792l0.759,0.203l0.206,0.387l1.62,1.199l1.045,0.67l0.288,0.186l-0.102,0.895l-0.616,0.979l-0.943-0.082
l-1.928,0.284l-1.273-1.361l0.229-0.874l-0.862-1.382l0.288-0.308l0.533,0.308l0.349-0.916L471.836,298.792z"/>
<path id="path_island_ason" inkscape:label="Åsön (Södermalm)" sodipodi:nodetypes="ccccccccccccccccccccccccccccsccccccccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M466.215,305.784l1.046,0.61l-0.247,0.548l3.078,1.22l2.503,0.914l0.534,0.285l2.091,0.122l2.564,0.688l3.282,1.626l4.431,0.145
l0.123,0.526l0.206,0.471l-0.821,0.688l-1.785,1.321l-0.964,0.671l-0.84,4.126l-5.703,2.704l-5.021,2.479l0.122,0.691
l-2.709,0.326l0.082-0.732l-0.392-0.711l-0.858,0.063l-0.125,0.688l-1.948-0.162l-0.246-0.63h-0.883l-0.041-0.264
c0,0,0.39-0.104,0.349-0.186s-0.165-0.407-0.165-0.407l-1.682,0.104l-0.862-0.326l-0.944-0.119l-1.599-1.361l-1.949-0.527
l-1.579-0.833l-2.666-1.019l-2.051-1.238l-2.667-1.83l-2.314-1.809l-1.989-1.507l-1.354-0.936l-1.211-1.24l-0.185-1.179
l0.226-1.22l2.729-0.569l3.016-0.854l3.364-0.754l3.564-0.405l4.985-0.122l5.805,0.102l0.557,0.122l0.144-0.447L466.215,305.784z"
/>
<path id="path_island_arstaholmar" inkscape:label="Ã…rsta holmar" inkscape:connector-curvature="0" fill="#878770" d="
M453.559,320.238l0.288,0.994l-1.293,0.021l-0.636,0.487l0.616,0.59l-0.821,0.244l-0.307-0.366l-0.885-0.326l-0.104-0.935
l-0.392-0.145l-0.654,0.729l-0.719-0.123v-0.306l-0.761-0.146v-0.363l1.106-0.712l1.581,0.04l0.02,0.631l0.476,0.163l0.653-0.592
l1.17-0.162L453.559,320.238z"/>
<path id="path_island_fisksatraholmen" inkscape:label="Fisksätraholmen" inkscape:connector-curvature="0" fill="#878770" d="
M565.186,332.759l1.068,0.041l0.245,0.204l0.902,0.04l0.447,0.448l-0.038,0.608l-1.602-0.082h-0.572l-0.29-0.608l-0.368-0.406
L565.186,332.759z"/>
<path id="path_island_martensholme" inkscape:label="MÃ¥rtens holme" inkscape:connector-curvature="0" fill="#878770" d="
M554.686,331.865l0.86-0.122l0.372,0.404l-0.904,0.163L554.686,331.865z"/>
<path id="path_island_kaninholmen" inkscape:label="Kaninholmen" inkscape:connector-curvature="0" fill="#878770" d="
M432.842,224.432l-0.327,1.382l0.311,0.63l0.513,0.163l0.186,0.833l0.269,0.02l0.103-0.525l0.615-0.711l-0.041-0.285l-0.656,0.021
l-0.144-0.224l0.228-0.938L432.842,224.432z"/>
<path id="path_island_tistelholmen" inkscape:label="Tistelholmen" inkscape:connector-curvature="0" fill="#878770" d="
M497.827,227.644l0.47,0.063l0.063,0.285l0.763,0.61l-0.124,0.404l-0.451,0.307l-0.574-0.528l-0.514-0.447L497.827,227.644z"/>
<path id="path_island_aggholmen" inkscape:label="Äggholmen" inkscape:connector-curvature="0" fill="#878770" d="
M499.138,226.545l-0.124,0.512l-0.528-0.366l-0.125-0.284l-0.596-0.447l0.532-0.346l0.514,0.203l0.188,0.163l0.595,0.061
l0.164,0.508l-0.246,0.082L499.138,226.545z"/>
<path id="path_island_storholmen" inkscape:label="Storholmen" inkscape:connector-curvature="0" fill="#878770" d="
M501.209,222.744l1.086,0.021l0.396-0.227l0.308,0.163l0.635-0.061l0.765-0.204l1.209,0.976l-0.163,0.203l-0.56,0.041l-0.41,0.671
l0.656,0.345l1.19-0.142l1.271,1.138l-0.8,1.037l0.146,0.428l0.816,1.036l-0.184,0.711l0.285,0.854l-0.327-0.021l-0.37-0.63
l-0.285,0.186l-0.354-0.063l-0.734-0.793l-0.519-0.081l-0.184,0.308l-0.615-0.122l-0.078,0.362l-0.146,0.326l-0.554-0.162v0.752
l0.533,0.731l-0.436,0.264l-0.779,0.021l-0.718-0.021l-0.327-0.305l0.369-0.244l-0.881-0.976l-0.473-0.511l-0.615,0.021
l-0.449-0.488l-0.29-0.223h-0.409l-0.226-0.306l0.124-0.266l0.613,0.284l0.514-0.225l0.389,0.123l0.329-0.366l1.229,1.199
l0.576-0.244l0.447,0.427c0,0,0.163-0.244,0.287-0.244c0.123,0,0.531,0.104,0.49,0.021c-0.039-0.081-0.326-0.609-0.326-0.609
s-0.532,0.061-0.532-0.041s-0.246-0.731-0.246-0.731l-0.678-0.081l-0.656-1.343l0.021-0.364l0.964-0.121l0.021-0.203l0.78-0.285
l-0.617-0.285l-0.554-0.345l-0.43-0.428l-0.515-0.568L501.209,222.744z"/>
<path id="path_island_bastuholmen" inkscape:label="Bastuholmen" inkscape:connector-curvature="0" fill="#878770" d="
M510.688,229.352l0.451-0.349l0.491,0.186l0.203,0.263l-0.203,0.347l-0.432,0.041l-0.492-0.204L510.688,229.352z"/>
<path id="path_island_lansman" inkscape:label="Länsman" inkscape:connector-curvature="0" fill="#878770" d="
M508.267,234.515l0.556,0.468l-0.038,0.244l0.718,0.688v0.528l0.122,0.284l-0.532,0.143l-0.083-0.607l-0.532-0.43l-0.083-0.467
l-0.243-0.448l-0.161-0.183L508.267,234.515z"/>
<path id="path_island_blomskar" inkscape:label="Blomskär" inkscape:connector-curvature="0" fill="#878770" d="
M504.778,217.012l-0.448-0.813l-0.575-0.427l-0.474-0.227l-0.351,0.021l-0.311,0.162v0.283l0.205,0.347l0.576,0.244l0.593,0.081
l0.412,0.183L504.778,217.012z"/>
<path id="path_island_vaxon" inkscape:label="Vaxön" sodipodi:nodetypes="cccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M591.321,214.613l-0.495,0.426l0.412,0.508l0.485,0.245l0.396,0.896l0.736,0.183l0.104,0.488l0.083,0.486l0.839,0.649l0.655,0.792
l0.615,0.326l-0.451,0.345l0.083,0.347l0.636,0.039l0.638,0.349h0.924l0.612,0.325l0.371-0.08l0.595-0.65l0.369,0.956l0.801,0.711
l1.354,0.204l0.657,0.427c0,0,0.718,0.264,0.801,0.284c0.081,0.021,0.84-0.04,0.84-0.04l1.232,0.528l1.022,0.264h1.045
l1.024,0.183l0.883,0.146l0.369,0.509h2.711l0.757,0.406l-0.005-8.173l-0.979-0.551l-1.454,0.227l-0.063,0.407l-1.333,0.589
l-0.759-0.163l-0.53-0.366l-0.412-0.041l-0.308-0.325l-1.293-0.02l-0.163,0.183l0.351,0.61l-0.203,0.223l-0.639-0.142
l-0.556-0.122l-0.737-0.021l0.021-0.792l0.226-0.689l0.329-0.854l-0.512-0.284l-0.724,0.063l-0.471,0.082l-0.146-0.488
l-0.326,0.041l0.102,0.549l-0.141,1.159l-0.27,0.345l-0.738-0.324l-0.844-0.202l-0.882,0.062l-0.432,0.103l0.104,0.712
l-1.229-0.081l-0.985,0.04l-0.164,0.265l-0.532-0.225l-0.204-0.307h-0.736l-0.311-0.486l-1.535-0.163l-0.246-0.445l-0.246-0.429
l-0.432-0.121l-0.412-0.244L591.321,214.613z"/>
<path id="path_island_jungfruholmen" inkscape:label="Jungfruholmen" inkscape:connector-curvature="0" fill="#878770" d="
M609.74,241.262l0.246-0.283l0.43,0.082l0.269-0.123l0.534,0.468l-0.72,0.061c0,0-0.122,0.488-0.205,0.447
c-0.083-0.04-0.515-0.183-0.515-0.183L609.74,241.262z"/>
<path id="path_island_boholmen" inkscape:label="Boholmen" inkscape:connector-curvature="0" fill="#878770" d="M518.028,258.096
l1.333,0.629v-0.772l-0.517-0.264l-0.734,0.082L518.028,258.096z"/>
<path inkscape:label="Kungshatt" sodipodi:nodetypes="czcszssssssssscsssssssc" inkscape:connector-curvature="0" fill="#878770" d="
M322.294,338.693c1.463,0.605,6.134,0.796,8.903,1.854c5.15-0.848,12.482,1.154,13.372,0.902c1.575-0.448,4.937-4.017,4.428-7.476
c-0.161-1.095-1.876-1.887-1.726-2.839c0.15-0.949,0.936-1.487,1.888-1.615c0.951-0.128,2.951,1.392,2.951,1.392l3.938-3.407
c2.333-1.484,4.39-2.705,6.746-4.146l1.025-0.467l0.528-0.804l-0.021-0.603l0.309-0.27l0.146-0.486l0.472-0.623l0.964-0.226
l0.472-0.398l-0.246-0.511l-0.859,0.242l-0.27,0.401l-1.658,0.422l-1.396-0.155l0.021-4.628l0.817-0.82
c0,0,0.368-2.647,0.021-2.448c-0.351,0.2,0.39-1.18,0.39-1.18l-0.267-0.778l1.046-1.113l1.005-1.58l-0.247-1.045l1.521-0.912
l0.555-0.443l0.308-1.69l0.246-0.4l-0.554-1.579l-0.964-0.956l-0.452-0.38l-0.697-1.712l-0.9,0.155c0,0-0.429,0.156-0.64,0.11
c-0.219-0.046-0.442-0.405-0.554-0.378c-2.729,0.692-3.805-1.896-7.22-5.588c-0.116-0.552,0.673-0.923,0.643-1.481
c-0.034-0.63-0.284-1.486-0.917-1.563c-0.768-0.096-1.041,1.857-1.736,1.524c-2.447-4.035-9.271-8.639-15.933-13.76
c-1.844-0.629-3.921,0.646-5.84,0.308c-2.739-0.484-9.181-3.803-9.181-3.803c-0.315,0.021-1.324,0.438-1.324,0.438l-0.483,0.584
c0,0-0.042,1.104-0.021,1.166c0.021,0.063,0.817,0.668,0.967,0.854c0.146,0.188,0.504,1.938,0.504,1.938l0.673,4.834
c0,0,0.841-0.334-1.177,0.5c-2.021,0.831-4.877,1.666-5.886,2.166c-1.012,0.5-2.691,1-3.027,1.834
c-0.336,0.831-0.841,1.666-1.009,2.831c-0.168,1.166,1.514,2.669,2.018,3.5c0.504,0.834,1.01,1.169,1.686,2
c0.673,0.834,2.354,2,2.688,2.669c0.336,0.666,0.336,1.666,0.336,2.166s-0.168,1.168-1.009,1.5c-0.84,0.334-3.026-0.332,0,1.834
s2.354,0.166,3.026,2.166c0.674,2,1.179,2.168,0.674,3.834c-0.504,1.666-0.84,1-0.504,2.831c0.336,1.834,2.061,1.294,2.061,1.294
l0.504,1.75l-0.757,0.903c0,0,5.104,4.813,7.888,6.747c3.532,2.453,13.473,4.682,11.396,6.082
c-1.982,1.335-5.761,2.809-8.875,3.396c-4.593-1.151-7.272,2.021-8.958-0.428c-0.429-0.616,0.902-1.4,0.724-2.132
c-0.218-0.882-1.603-2.24-2.448-1.89l-1.105-2.063c-0.631-0.25-2.271-0.125-2.271-0.125s-1.64-0.25-3.655-0.75
c-2.021-0.5-3.279-0.625-4.163-0.625c-0.883,0-2.9,0.75-3.657,0.875s-0.757,1-0.884,1.75c-0.126,0.75,0.758,1.375,0.758,1.375
s1.766,1,2.396,1.375c0.632,0.375,2.396,1,2.396,1l4.541,1.875l3.151,3l-5.425-1.75c0,0-1.009-0.5-4.54-1.5
c-3.53-1-1.515,0-2.019,1.5s-3.027,3.5-3.027,3.5s-2.521,0.5-5.045,0c-2.521-0.5-2.018,0-2.018,0l-2.021-1l-4.541,1.5
c0,0,1.013,1.5,2.021,6s-4.036,0.5-4.036,0.5s-1.514-2.5-4.036-7c-2.521-4.5-3.026-5-4.037-8.5c-1.009-3.5-3.532-0.5-10.09-3
c-6.56-2.5-3.026-2-6.56-6c-3.534-4-2.521-2-5.552-4.5c-3.027-2.5-1.515-1.5-4.541-5.5c-3.024-4-3.53-0.5-3.53-0.5
s-2.522,0-11.604-0.5s-2.521-0.5-4.541-3c-2.02-2.5-2.018-4.5-2.018-4.5s1.514-1,4.541-4.5c3.023-3.5,1.009-2-1.011-4.5
s-3.53-2.5-3.53-2.5l-2.021-2c0,0,0.505-2.5-1.009-7.5c0,0-4.541-3-6.56-5c-2.021-2,1.514-1,3.024-1c1.517,0,1.517-4.5,1.517-4.5
s-1.012-3.5-3.531-9c-2.522-5.5-1.01-2.5-2.021-5c-1.009-2.5-2.521-2.5-3.529-4c-1.012-1.5-2.021-4-3.026-7s-0.504-4-1.009-6.5
s-2.523-3.5-3.532-5s-2.019-4.5-2.521-8.5c-0.508-4-0.508-2.5-0.508-5.5s-1.514-3.5-4.541-6c-3.025-2.5-1.514-3-2.521-6.5
c-1.007-3.5-2.522-5-2.522-5l-4.541-6.5c0,0-3.531-6.5-4.541-9c-1.009-2.5-3.025-5-6.054-4c0,0,1.009,4,3.532,8
c2.521,4,1.009,3,1.009,3s-4.036-1.5-8.577-0.5s0.504,4,0.504,4l-3.531-1.5l-6.055,2c0,0-2.018,1.5-4.037,5
c-2.018,3.5-1.009,3.5-1.009,3.5s-1.514-2-3.532-2.5s-4.541,3.5-4.035,5.5c0.505,2,2.019,2.5,5.551,7c3.531,4.5-1.01,2.5-1.01,4.5
s2.019,3,3.531,4c1.516,1,1.516,3,3.532,5c2.019,2,1.009,2,1.009,2l6.309,4.5c0,0,2.018,3,2.521,4.75s3.027,2.75,4.541,3
c1.515,0.25,0.252-0.75,0.252-1.5s1.261-2.75,1.261-2.75s2.523,1.75,3.28,2.5c0.756,0.75,1.767,4.5,1.767,8.25s0,1.75,0.758,5.75
c0.757,4,1.514,1.75,2.271,2.25c0.759,0.5,2.522,3.5,3.279,5.5s3.279,2.75,6.811,5c3.532,2.25,1.768,1,4.289,2.25
c2.523,1.25,3.532,3.25,4.036,4s-2.521,1-2.521,1s0.504,2,0.504,2.75s-1.516,0.5-3.532,1.25c-2.017,0.75,0,1.75,1.766,3.5
c1.77,1.75,1.518,1.25,3.027,3c1.514,1.75,3.532,2,3.532,2l2.771,2.5c0,0,3.532-2,5.806,0.25c2.27,2.25,0.757,3,0.757,3
s-6.309,2.25-9.334,4.5c-3.027,2.25-1.009,5.75-1.009,10.25s0.252,4.75,1.009,8s3.532,4.5,5.298,6s2.27,1,3.279,2.5
c1.009,1.5,1.514,3.25,2.271,4s2.271,2.5,2.522,3.25s2.018,1.75,3.528,2.75c1.518,1,4.796,1.75,6.311,2.5
c1.514,0.75,2.771,1.5,5.802,2.75s4.288,1.75,5.297,2c1.01,0.25,4.289,2.75,6.057,4c1.767,1.25-1.012,2-1.769,2
s-3.278-0.5-3.278-0.5s-3.529-1.75-6.056-3.5c-2.521-1.75-3.278-2.25-5.297-4s-5.55-1.75-7.315-2
c-1.767-0.25-2.019,1.25-2.019,1.25s-0.252,0.75-0.504,1.5s0.504,1.75,0.504,1.75s2.019,1,3.532,1.75
c1.513,0.75,3.783,1.5,4.793,1.75c1.009,0.25-0.504,1-1.01,1.75c-0.507,0.75,0,0.75,0.758,2c0.757,1.25,1.766,1,1.766,1
s1.514,1.75,3.784,3.5c2.27,1.75,3.278,1.25,3.278,1.25h2.019h3.784l5.55,0.25l4.289,0.75c0,0,1.261,1.25,2.774,2
c1.513,0.75,3.782,0.75,4.541,0.75c0.758,0,0.758-1.25,0.505-2s-1.01-2.5-1.01-2.5l-0.38-2.75c0,0,1.138,0.625,2.9,1.625
c1.768,1,2.648,1.5,4.036,1.625c1.389,0.125,0.631,0,1.009,0s0.757,0.375,1.136,0.5c0.378,0.125,2.271,1.375,4.162,2.125
c1.895,0.75,1.642,0.75,2.396,1.25s3.53,1,4.667,1c1.135,0,1.514-0.5,2.018-0.875c0.506-0.375,1.262-1.375,2.146-2.5
c0.883-1.125,1.387-0.125,1.387-0.125l1.956,2.063c0,0,1.009,0.75,1.893,1.625c0.886,0.875,1.323,1,2.586,2
c1.264,1,0.886,1.625,1.264,2.125s0.378,1.688,0.188,3.375c-0.188,1.688,0.631,0.063,2.332-0.125
c1.704-0.188,1.199-0.625,2.021-1.688c0.816-1.063,0.631-1.5,1.07-2.125c0.44-0.625,0.634-0.438,1.39-1
c0.757-0.563,0.188-0.75,0.883-1.313c0.689-0.563,2.207-0.125,2.396-0.125c0.189,0,2.774,0,3.091,0
c0.315,0,4.666,1.813,4.666,1.813l2.146,0.5l0.713,2.448c2.708-0.512,7.587-1.257,8.84-1.303c1.472-0.053,3.587,2.125,5.152,2.015
c1.563-0.108,0.679-0.244,1.771-1.877c1.096-1.635,2.646-1.582,3.204-3.179c2.376-6.767,2.191-7.896,4.571-8.9
c1.221-0.516,1.935-1.931,1.801-3.146c-0.211-1.925-2.134-0.002-2.594-0.793c-0.461-0.792,1.397-1.57,0.593-3.354
c-0.376-0.836-1.118-0.214-1.409-0.781c-0.479-0.938-1.7-1.924-1.834-1.854c-1.926,1.01-1.688-0.729-3.211-0.652
c-1.521,0.074-1.813,0.917-1.987,1.495c-0.186,0.383-0.979,1.522-0.931,1.81c0.448,2.598,4.675,5.818,5.642,5.467
c0.831-0.309-0.801,1.634-0.898,1.636c-2.019,0.026-1.732-0.214-1.841-0.279c-0.104-0.065-1.905-3.277-3.203-4.023
c-0.175-0.104,0.053-2.77-1.013-3.786c-0.209-0.201-0.396-0.485-0.646-0.773c-0.25-0.289-0.538-0.604-0.876-0.944l0,0
c-5.313-3.375-11.47-5.434-11.19-4.979"/>
<path inkscape:label="Kungshatt" sodipodi:nodetypes="czcszssssssssscsssssssc" inkscape:connector-curvature="0" fill="#878770" d="
M322.311,339.782"/>
<path id="path7856" inkscape:label="Kungshatt" sodipodi:nodetypes="csccc" inkscape:connector-curvature="0" fill="#878770" d="
M343.067,371.512c1.12-1.854,1.518-2.28-0.229-2.727c-1.475-0.375-5.097,1.582-5.273,2.16c-0.069,0.59,0.278,1.936,2.429,1.49
C341.415,372.139,342.27,372.066,343.067,371.512L343.067,371.512z"/>
<path id="path7858" inkscape:label="Kungshatt" sodipodi:nodetypes="csccc" inkscape:connector-curvature="0" fill="#878770" d="
M351.271,355.248c1.122-1.853,1.253-3.104-0.491-3.544c-1.479-0.375-2.329,1.229-2.509,1.803c-0.067,0.593-0.425,2.14,1.238,2.329
C350.933,355.535,350.473,355.803,351.271,355.248L351.271,355.248z"/>
<path inkscape:label="Kungshatt" sodipodi:nodetypes="ccsccsccscccc" inkscape:connector-curvature="0" fill="#878770" d="
M322.319,376.396"/>
<path fill="#878770" d="M613.12,309.584l0.692-0.75l0.728-0.438l0.631-0.094c0,0,0,0,0.378,0.125c0.379,0.125,1.01,1,1.01,1
s-0.631,0.625-1.136,1c-0.504,0.375-1.387,0.875-1.766,1.5s1.64,1.75,2.019,1.875c0.378,0.125,1.262,0.75,1.262,0.75l1.265,0.625
c0,0,1.514,1.125,1.64,1.875s-1.136,0.625-1.64,0.375c-0.506-0.25-1.896-0.25-2.522,0c-0.631,0.25-0.631,0.75-0.631,1.25
s0.126,1.75,0,2.375s-0.253,1.75-0.126,2.5c0.126,0.75,0.504,1,0.63,1.75c0.127,0.75-0.504,1.625-1.009,2.125
c-0.504,0.5,0,1.125,0.757,2.5c0.758,1.375,1.01,1.625,1.264,2c0.252,0.375,0,1.5,0,1.5s0.378,1.125,1.516,0.5
c1.135-0.625,2.271,0.875,2.646,1.125s2.646,1.875,3.151,2.25s1.515,1,2.521,1.25s1.768,0,1.768,0s3.278,0,4.667-0.125
s3.151,0,3.656,0c0.504,0,2.02,1.25,2.02,1.25l-0.504,0.375c0,0-3.531,0.625-4.919,0.75c-1.39,0.125-3.28,0.5-3.91,0.375
c-0.631-0.125-1.262-0.5-1.262-0.5s-6.057-1.625-7.44-2.125c-1.389-0.5-1.642-1-2.021-1.125c-0.378-0.125-2.521,0.25-2.521,0.25
l-3.139,1.547l-0.553,0.903l-0.44,0.188l-0.604,0.636l-1.984,0.446l-0.37,0.955l0.039,0.792l-0.119,0.509l-0.125,0.488
l0.229,0.162l-0.123,0.567l0.391,0.427l-0.146,0.389l-0.639,0.307l-0.122,0.264l0.35,0.448l-0.082,0.589l-1.538-0.185
l-0.798,0.407l-0.021,0.443l-0.68,0.285l1.907,2.744l0.533,0.041l0.021,0.345l0.616,0.487h0.245l1.23,1.383l0.757,0.082
l0.845,1.422l0.474,0.063c0.104-0.017,4.437-1.267,4.437-1.267l2.354,4l2.354,0.333l3.025,1.333l1.684-1.333l4.037-1.667
l1.682,0.667l2.02,2.667l2.691-0.667c0,0,2.018-1,3.025-1c1.009,0,2.688-2.333,2.688-2.333c2.021,1.667,2.688,1.334,1.347,3.667
c-1.347,2.333-1.685,2.667-1.685,4s1.349,4.333,1.349,4.333l4.707-0.667c0,0,0.674,3,1.01,4c0.338,1-4.035-4.667,2.69,3
s7.396,8.333,7.396,9.333s0,3.667,0,3.667l2.354,4.333h2.354c0,0,1.686-1,3.026,1c1.342,2-2.02-1.333,1.347,2
c3.363,3.333,2.69,5,3.362,3.333c0.674-1.667,2.354-5.667,2.354-5.667c3.698,2.667,2.354,1.333,5.046,5
c2.688,3.667-1.01,1.667,2.688,3.667c3.699,2,4.709,1.333,5.047,3s1.349,4.333,2.021,6s-1.01,1.333,0.672,3
c1.683,1.667,0.337,1.334,4.373,4.667s2.354,3.666,4.036,3.333s4.036,1.667,3.699-1.333c-0.338-3-0.338-3-0.338-3l5.384,4.333
c0,0-2.021-1,2.354,1s1.011,6,4.373,2c3.363-4,4.708-4.333,5.381-6s1.351-4.333,2.691-4.667s4.035-2,6.391-0.333
c2.354,1.667,2.689,3,4.036,2.667c1.346-0.333,3.027-1.667,3.027-1.667l2.354,1h3.027l2.354-0.667c0,0,0.002,0.333,1.686-0.667
c1.682-1,3.023-2.667,3.023-2.667v-3l-1.346-3.333c0,0-0.336-1.333-1.346-2s-2.019-1.667-2.354-2.667c-0.338-1,2.688,1-0.339-1
c-3.022-2-4.708-3.667-4.708-3.667c-4.035,0.333-7.063,0.333-8.744,1.333c-1.683,1-2.688,4-2.688,4s0.674,2,1.346,3.667
c0.673,1.667,1.347,4.333,1.347,4.333s-4.372,0.667-5.383-0.333c-1.009-1-2.688-4.333-2.688-4.333s-2.021,0.666-3.363-1.667
c-1.348-2.333,0.335-2.333-0.337-5.333c-0.673-3-1.35-2.333-2.021-6c-0.673-3.667-0.338-5.667-3.024-8.667
c-2.689-3-4.036-5.333-4.036-6.333s1.347-2,3.364,1c2.019,3,2.688,3.666,3.696,6.333c1.01,2.667,2.354,4,3.699,7
c1.346,3,3.363,9.667,3.363,9.667l1.346,3.333c1.01-4.333,1.01-6.333,1.685-7.333c0.674-1,2.354-3.334,3.697-3.667
c1.345-0.333,3.363-1,6.059-0.333c2.688,0.667,7.063,2.333,8.069,4c1.008,1.667-0.337,2,1.011,1.667
c1.346-0.333,6.728,0.333,4.37-2c-2.354-2.333-4.706-2.667-3.36-4s-1.685-2.667,3.36-3.333c5.048-0.666,6.729-2,7.399-1
s1.685,2.667,4.036,1.667c2.354-1,9.081-0.667,6.729-2.667c-2.354-2-2.354-4.333-3.361-4.333c-1.012,0-6.395,1.333-7.399,2
s-2.354,0.333-3.7-1.667c-1.345-2-2.688-5.333-3.697-5.333c-1.012,0-5.045,1.333-7.063,1.333c-2.018,0-1.681-0.667-1.345-2
s0.336-3-1.009-3.667c-1.35-0.667-3.026-1.667-4.373-2c-1.349-0.333-2.021,0.333-4.036-1.333c-2.021-1.666-0.337-3-3.7-5.333
c-3.362-2.333-2.354-2.667-6.054-3s-8.746-1-8.746-1s-5.045-2-3.363-2c1.685,0,3.7,0,3.7,0s-0.673-2-3.7-4.333
c-3.024-2.333-4.709-4.333-4.709-4.333s-0.335-2-2.688-3.667c-2.354-1.667,1.684-1-2.354-1.667s-7.734-0.334-8.745-1.667
c-1.009-1.333-2.354-4.333-6.392-4.667c-4.036-0.334-5.38-0.333-7.735-0.333c-2.354,0-6.391-0.333-6.391-0.333l-2.021-3.998
c0,0,1.349-2.333-0.673-2.333c-2.019,0-3.361-1.667-4.036,0.667c-0.673,2.334,1.349,1-0.673,2.333
c-2.019,1.333-5.046,0.333-5.046,0.333s-2.688-0.667-0.673-2.667c2.02-2,7.063-4,7.398-5c0.337-1,1.685-2.333,1.011-4.333
s-6.056,1-0.674-2c5.383-3,10.092-4.667,10.092-4.667s5.382-2,4.709,0.667l1.526-5.309c0.338,3-1.532-1.031-2.539-2.031
s-1.685-2.333-2.689-5.333c-1.008-3-2.02-1.667-4.036-0.667c-2.019,1-1.683,3.333-1.683,3.333s-2.689-1.333-5.383-4.333
c-2.692-3-1.683,0-5.382,1.333c-3.698,1.333-5.046,0-8.071-2s0-0.667,11.102-0.667s6.393,0,7.398-0.333s0.336-1,1.346-2.667
c1.009-1.667,0.673,0.333,2.354,1c1.682,0.667,1.346,0,3.698-1.667c2.354-1.667-0.338-2-2.021-7.333
c-1.684-5.333-0.672-1.667-2.354-3.667c-1.684-2-6.392-2.667-7.397-3.667s-4.036-1.333-9.42-3.333
c-5.383-2-5.718-2.667-5.718-2.667s10.427,1.667,10.765,0.333c0.336-1.334-2.021-1.333-2.021-1.333s-5.047-5-8.071-8.333
c-3.025-3.333-5.718-0.667-8.408-0.667c-2.689,0-0.674,1.333-0.674,2.333s7.735,5.667,5.721,5c-2.021-0.667-0.676,0-4.373,0
c0,0-4.036-2.333-6.055-4c-2.021-1.667-5.72-0.667-5.72-0.667s1.009,2,1.685,6c0,0-4.037-4.333-6.057-6
c-2.021-1.667-1.011-2.333-2.689-3.667c-1.682-1.334-5.045-3-6.057-3.333c-1.011-0.333-3.361,0.333-4.371,0.667
c-1.011,0.334,0,1.333,0,1.333l3.698,3.667l-3.362,1.573l-0.728,0.969l-0.84,0.052l-0.861,0.184l-0.679,0.407l-0.021,0.647
l-0.759,0.122l-0.327-0.204l-0.558,0.123l-0.368-0.143l0.063-0.528h-0.325l-0.145,0.346l-0.491-0.061l-0.205,0.325l-1.148-0.508
l-0.611,0.223l-0.248,0.671l-0.473,0.325l0.146,0.65l1.496,0.648l1.104,0.955l0.021,0.227l-0.283,0.12l-1.108-0.711l-0.452,0.021
l-0.514,0.345l-0.448-0.203l-0.412-0.427l-0.347-0.285l-0.455,0.468l-0.143,0.672l-0.409,0.225l0.595,1.098l0.349,0.732
l0.063,0.813l0.531,0.672l0.718,0.649l0.063,0.956l0.9,1.564l-0.531,0.144l-0.145,0.264l-1.089-1.382l-1.373-0.915l-0.063-0.609
l0.187-0.428l-0.328-0.184l0.308-0.69l-0.676-0.833v-0.997l-0.615-0.549l0.271-0.345l-0.41-0.267l-0.104,0.324l-1.044-0.508
l-0.41-0.63v-0.896l-0.57-0.566l0.104-0.631l-0.369-0.69l-0.186-0.244l0.613-0.447l-0.269-0.242l-0.146-0.67l-0.12-0.123
l-0.369,0.346l-0.595-0.346l0.082-0.226l0.678,0.041l-0.903-0.607l0.491-0.349l-1.291-1.035l-0.883,0.185l0.307,0.387
l-0.595,0.104l-0.614-0.569l-0.939,0.264l-0.56-0.508l-0.839-0.041l-0.329-0.386l0.329-0.183l0.432,0.08l1.602-0.365l0.04-0.67
l-2.274-0.792l-0.349,0.101l-0.493,0.447l-2.071,0.162l-0.532,1.279l-1.373,0.121l-0.737,0.813l0.98,0.854l0.412,0.081
l0.021,0.367l0.512,0.446l-0.531,0.123l-0.021,0.386l0.368,0.366l-0.146,0.446l-0.433,0.121l-0.923-0.55l-0.494,0.204
l-0.324-0.123l-0.287-0.305l0.31-0.488l-0.434-0.386l-0.021-0.325l-0.966-1.017l-0.489-0.121c0,0-0.393,0-0.656,0.081
c-0.269,0.081-0.884,0.507-0.884,0.507l-0.531,0.104l-0.433-0.608l-2.38,0.629l-2.111,0.225l-3.241,2.258l-1.127,0.103
l-0.104,0.365l-0.555,0.305l-0.884,0.225l-0.573,0.446l-0.513,0.752l-0.229,0.711l0.104,0.489l-1.456,0.729l-0.391,0.875
l1.562-0.225l1.104-0.366l1.62,0.204l0.738-0.467l1.046,0.874l-0.803,0.346l-0.268,0.65l-0.369-0.386l-0.859,0.484l-0.492-0.081
l-0.886,0.528l-0.816,0.57l-1.947,0.813l1.209,1.182l2.072,0.08l-0.449,0.896l0.063,0.468l0.575,0.308l0.019,0.404l-0.284,0.203
l-1.252-0.752l-0.923,0.244l-1.006-0.061l-0.759-0.471c0,0-0.311-0.264-0.41-0.243c-0.104,0.021-0.719,0.162-0.758,0.08
c-0.042-0.08-0.617-1.098-0.617-1.098l-0.267,0.021l-0.616-0.631l-0.716,0.161l-0.126,0.529l0.681,0.61l-0.126,0.264l-0.84-0.081
l-0.922-0.082l-0.371,0.204l-0.515,0.203l-0.839-0.266l0.063-0.306l0.409-0.508l0.081-0.569l-0.31-0.242l-0.84,0.242l-1.05,0.082
l-1.169,1.062l-1.125,1.016l-1.295,1.159l-0.514,0.122l-0.144,0.426l-2.668,2.481l-0.962,0.508l-0.434,0.648l-1.089,0.792
l0.122,0.754l-0.53,1.018l0.163,0.488l-0.599,0.607l-0.078,0.508l0.364,0.593l0.576,0.061l-0.044,0.223l-0.531,0.082l0.021,0.569
l0.696,1.037l-0.326,0.447l-0.572,0.323l-0.451-0.404l0.229-0.569l-0.614-0.122l-0.354,0.346l-0.186,0.55l-0.226,0.896
l-0.188,0.63l-0.841,0.731l0.037,0.345l0.495,0.468l-0.042,0.529l-0.271,0.081l-0.163,0.549l-0.245,0.488l-0.326,0.224
l0.186,0.854l0.695,0.729l-0.021,0.772l-0.312,0.813l0.146,1.141l0.821,0.977l0.205,0.508l0.349,0.325l0.288,1.22l0.391,0.307
l0.146,1.035l0.777,0.691l0.021,0.284l-0.492,0.082v1.058l0.761,0.487l-0.311,1.118l0.27,0.589l-1.617,2.274l-0.043,2.033
l0.351,0.508l-0.288,0.61l0.271,0.688l-0.202,0.389l0.308,0.895l-0.269,0.104l-0.313,0.874l0.146,0.484l-0.615,0.471l-0.286-0.063
l-0.104,0.366l-0.681,0.407l0.204,0.549l0.697-0.204l0.247,0.549l0.368-0.061l0.121,0.606l-0.516,0.447l0.271,0.63l0.391,0.712
l0.86,0.268l0.144,0.549l0.271,0.122v0.427l0.554,0.266l0.146,0.43l-0.146,0.203l0.678,0.201l0.394,0.649l-0.777,0.874
l0.325,0.367l-0.081,0.223l-0.229,0.349c0,0,0.681,0.591,0.737,0.672c0.059,0.08,1.191,0,1.191,0l0.159,0.162l0.063,0.184h0.205
l0.083-0.225l0.774,0.161l0.104,0.186l1.434-0.244l0.312,0.244l0.74-0.063l0.021-0.322l0.474-0.367l0.39-0.021l0.126-0.144
l0.513,0.063v0.121l0.409,0.268h1.128l0.308,0.183l0.639-0.145l0.449,0.389l0.27,0.163l0.845-0.041l0.572,0.081l-0.146,0.203
l-0.353,0.103l0.206,0.429l0.269,0.266l0.612,0.122l0.104-0.227l-0.164-0.203l0.063-0.185l0.534,0.325l0.412,0.144l0.369,0.202
l0.881,0.041l0.678-0.121l-0.41-0.793l0.021-0.386l0.267-0.163l0.985-0.468l0.369,0.386l-0.146,0.875l1.105,0.346v-0.607
l0.802-0.671l1.064-0.487l-0.083-0.227l0.887,0.349l0.733-0.267l0.271,0.388l1.126,0.121l0.164,0.203l-0.369,0.729l0.555,0.59
l2.173-0.184l0.271,0.143l0.759-0.202l0.367,0.268l0.369,0.021l0.184,0.47l0.328-0.405l-0.286-0.309l-0.203-0.712l0.531,0.487
l0.041-0.752l0.164-0.771l0.717-1.058l1.685-1.179l0.762,0.021l0.184-0.347l2.276-0.979l0.228-0.306h0.557v-0.771l1.025-0.731
l0.205-0.305l-0.25-0.244l0.188-0.104l0.327,0.146l0.737-0.771l0.677-0.729h-0.734l0.04-0.325l0.369-0.305l1.724-0.61l0.922-0.366
l0.166-0.386l0.162-0.67l0.883-1.464l0.613-0.61l1.067-0.405l-0.737-0.854l0.146-0.67l1.313-1.646l0.859-0.123l0.104-0.509
l-0.33-0.142c0,0,0.188-0.284,0.288-0.244c0.102,0.041,0.186,0.163,0.186,0.163l2.03-4.106l0.451-1.625l0.717-0.59l0.188-0.63
l0.435-0.366l0.039-0.426l-1.168-0.609l0.021-0.711l0.678-0.082l0.615-0.55l-0.489-0.346l0.04-0.226l0.283-0.121l-0.571-0.813
l-0.104-0.731l-0.267-0.485l-0.575-0.428l-0.572,0.041l-0.324-1.587l-1.051,0.043l-0.226-1.038l-1.291-1.564l-1.229-0.508
l-1.231-1.525l-0.207-0.608l0.966,0.428l0.329,0.608l1.454,0.348l0.35,0.386l0.411,0.122l0.612-0.306l0.695,0.549l0.271,1.158
l-0.083,1.278l0.862-0.162l1.782,1.646l0.043,0.689l0.432,0.063l0.021-0.447l0.351,0.307l0.229,0.021l0.389-0.285l0.683,0.529
c0,0,0.512,1.057,0.553,1.138c0.038,0.081,1.148,1.934,1.148,1.934l1.599,0.955l1.05,0.021l0.761,0.549l0.041,0.469l0.448-0.145
l0.269,0.568l1.561,0.103l0.125-0.386l0.776,0.305l0.389,0.186l-0.368,0.144l-0.35,0.144l-0.204,0.224l-0.31,0.325l-0.162,0.671
l0.676,1.077l1.086,1.36l0.844,0.244l-0.041-0.567c0,0,0.575,0.386,0.656,0.345c0.08-0.039,0.146-0.508,0.146-0.508l1.26-0.101
l0.033-0.002"/>
<path fill="#878770" d="M311.105,320.553l2.021-5.334c0,0,1.345-6-0.673-7.332c-2.021-1.334-4.709-3.334-4.709-3.334
s-3.363-3.332-4.709-5.332s-4.036-4-4.036-6.668c0-2.666,3.362-4.666,4.709-10c1.346-5.332,1.345-7.332,1.345-10
c0-2.666-1.346-8-0.673-12s2.691-4-1.345-9.332c-4.036-5.334-2.021-4-6.729-9.334c-4.709-5.332-6.728-6.666-8.745-8
c-2.019-1.332,0.675-2.666-5.382-4c-6.054-1.332-9.417-2.666-9.417-2.666s-4.037-4-4.037-2s6.059,15.332,6.059,15.332l0.673,2.668
c0,0-3.363,0.666-6.055-2.668c-2.69-3.332-5.384-7.332-5.384-7.332l-1.345-6.668c0,0,2.021,0.668-4.036-6.666
c-6.054-7.334-10.09-4.668-6.054-7.334s15.472,6,15.472,6s4.709,2,8.746,3.334c4.036,1.332,6.729,2,6.729-1.334
c0-3.332,6.054-4-2.021-9.332c-8.071-5.334-10.091-10.668-12.78-10.668s-13.452-4.666-13.452-4.666s0-3.334-2.691-0.668
c-2.69,2.665-8.746,4-10.764,2.668c-2.021-1.334-2.69-4-5.381-5.334c-2.691-1.332,0.672-0.666-2.691-1.332
c-3.362-0.668-18.836-3.334-18.836-3.334s-3.363-2.666-2.69,0.668c0.672,3.334-16.146,3.332-16.146,3.332s3.363,10,5.381,12
c2.019,2,12.108,9.334,12.108,9.334s1.345-4,1.345,2.666c0,6.668-3.363,11.334,0,15.334s8.746,8.666,9.417,11.332
c0.672,2.668-0.673,0,2.018,8c2.691,8,5.384,7.334,6.729,14c1.346,6.668,0,5.334,4.036,12c4.035,6.668,3.359,5.334,6.054,11.334
c2.69,6,4.037,10.666,6.728,14.666c2.691,4,2.691,2.668,9.421,10c6.727,7.334,6.728,9.334,15.472,12
c8.745,2.668,20.854,6.668,20.854,6.668s7.399,2.666,7.399-0.668C303.033,327.221,311.105,320.553,311.105,320.553z"/>
<path fill="#878770" d="M643.628,232.303c0,0,0.5-0.25,1.25,0s1.5,0.25,4.25,0.25s6,0,7,0s2.5,0.25,3-0.5s1.25-1.75,1.75-2.5
s2-1.75,0.75-3s-1.75-2.5-2.75-3.5s0.5-1.25-2.75-1.5s-4.5,0-4.5,0l-1.75-2c0,0-0.75-0.75-2.25-0.75s-2-0.75-3.5-0.5
s-2,0.5-2.75,0.5s-1-0.25-1.75-0.5s-3,0-3,0s1.25-1.75-3-2s-5-1-6.5-1s-1.25-2-4-1.25s-4.75-2.25-3.5,1.75s2.25,5,2.25,5
s1.75,1,1.75,1.75s-6,0.25,0.25,3s4.25,2.25,6.25,2.75s7.5,1,8.75,2s3,1.75,3,1.75L643.628,232.303z"/>
</g>
<g id="layer_mainland" transform="translate(191,-10.1115)" inkscape:label="Mainland" inkscape:groupmode="layer" sodipodi:insensitive="true">
<path inkscape:label="Mainland, Södertörn" sodipodi:nodetypes="ccccccscccscscsccscccccscccccccsccccccsccccsccccccccccccccsccccccccscccccscccsccccccsscscssssccccsccccccccccccssccsccccccccccccsccccccccccccccccscccccsccccccccccczczcczcczccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccsccccccccccccccccccccccsccccccscccccccccccccccccccccccccccccsccccccccccccccccccccccsccccccccccccccccccccccccccccsccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccscccccccccccccccccccccccccccccccsccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccscccccccccccccccccccsccsccccccccccccscccccccccccccccccccccccsccccccccccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccscccccsscccccscccccccccccscccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M97.845,12.361"/>
<path inkscape:label="Mainland, Södertörn" sodipodi:nodetypes="ccccccscccscscsccscccccscccccccsccccccsccccsccccccccccccccsccccccccscccccscccsccccccsscscssssccccsccccccccccccssccsccccccccccccsccccccccccccccccscccccsccccccccccczczcczcczccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccsccccccccccccccccccccccsccccccscccccccccccccccccccccccccccccsccccccccccccccccccccccsccccccccccccccccccccccccccccsccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccscccccccccccccccccccccccccccccccsccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccscccccccccccccccccccsccsccccccccccccscccccccccccccccccccccccsccccccccccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccscccccsscccccscccccccccccscccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M433.524,644.884"/>
<path inkscape:label="Mainland, Södertörn" sodipodi:nodetypes="ccccccscccscscsccscccccscccccccsccccccsccccsccccccccccccccsccccccccscccccscccsccccccsscscssssccccsccccccccccccssccsccccccccccccsccccccccccccccccscccccsccccccccccczczcczcczccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccsccccccccccccccccccccccsccccccscccccccccccccccccccccccccccccsccccccccccccccccccccccsccccccccccccccccccccccccccccsccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccscccccccccccccccccccccccccccccccsccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccscccccccccccccccccccsccsccccccccccccscccccccccccccccccccccccsccccccccccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccscccccsscccccscccccccccccscccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M433.167,644.112c-1.683-2-1.997-1.228-1.325-4.894s3.7-3.667,4.709-6s-1.345-3.334-2.354-4c-1.01-0.666-3.026-4-4.373-5.667
c-1.346-1.667-1.01-2.333-3.362-4.667c-2.354-2.334-5.718-4-8.409-8.333c-2.688-4.333,11.772-6,12.782-6
c1.009,0,2.689,4,3.025,7.333s0.674,5.334,1.347,10.667c0.672,5.333,0,0,4.034,5c0,0,5.046,4.333,6.729,6
c1.684,1.667,3.026,0,8.073-4.333c5.045-4.333-3.027-5-3.027-8s1.347-7.334,2.021-9.667s-3.362-4-5.719-6.667
c-2.354-2.667,0-1.666,2.689-2.333s4.372-2.333,3.025-4.667c-1.345-2.334,1.011-2.666,4.037-5.333
c3.025-2.667,13.454,1.667,17.488,3.333c4.036,1.666,5.382,3.667,7.736,3.667s3.699-1.333,5.381-1.667
c1.684-0.334,2.354-3.666,2.354-6s-1.685-0.666-3.701,0.334c-2.02,1-4.37,0.666-4.37,0.666l2.354-3.333l0.674-4
c0,0-1.685-2.666-1.013-4.666c0.674-2,2.354-1.667,2.354-1.667s7.398-1,11.771-1.667c4.372-0.667,4.709-3.666,4.709-5.333
s0.336-4,2.69-6.333s2.688-1.667,8.07-2.334c5.385-0.667,7.733-0.666,10.764-1.333c3.027-0.667,7.063-3,10.765-5.333
c3.702-2.333,2.021-2.334,4.709-4.667c2.689-2.333,8.745-6.333,12.781-11.667s0,0-4.036,0s-10.765-0.667-12.78-1.333
c-2.017-0.666,4.035-4,13.789-8c9.756-4,8.409,3,9.757,6c1.345,3,3.025,6.333,3.025,6.333s-7.398,3.667-11.771,6.667
c-4.372,3-4.372,5.333-7.063,7.667c-2.689,2.334,5.046-0.334,10.428-1.334c5.385-1-0.673,3-0.673,3s-5.719,2.667-9.082,5
c-3.36,2.333-5.718,1.334-12.442,2c-6.728,0.666,0.337,2.334,4.036,6.667c3.698,4.333-0.673,2-5.045,4.333
s2.354,1.334,6.391,1.667s6.729,1.333,6.729,1.333s3.699-0.666,14.465-2.666c10.764-2,6.729-1.667,12.78-2.334
c6.055-0.667,7.063-1.666,11.438-2.666s12.106-4.334,13.118-7.667c1.01-3.333-2.021-0.333-9.419,0
c-7.396,0.333-14.465,3.667-19.173,5.333c-4.709,1.666-11.1,0-11.1,0s0.672-1.666,2.688-3c2.021-1.334,6.393-3.666,13.453-5.333
c7.063-1.667,2.021,0,7.063,0.667s7.063-1.334,12.779-2.667c5.718-1.333,7.734-2,12.106-3.667s12.107-6,15.137-8
c3.028-2,0.673-3.333,0.673-3.333s-9.755,3.333-11.771,3.667c-2.021,0.334-1.346-1-1.683-4s2.688-5.333,4.372-12
c1.684-6.667-3.699-1-8.745,0.667s-9.082,5-11.103,7.667c-2.018,2.667-6.054,3.333-14.127,2c-8.071-1.333,0,0,5.72-2.667
c5.722-2.667,3.026-5.333,0.674-6.667c-2.354-1.334-4.373-3.333-4.373-3.333s4.373-2,8.072-3.667
c3.697-1.667,6.394-4.667,12.444-7c6.052-2.333,0,0,4.372,3.667s4.709,1.667,7.063-1c2.354-2.667,1.011-7.333,1.347-7.333
s0,0,3.362,5.667s3.698,0.667,8.743-1.667c5.046-2.334,1.35-3.333,3.699-4.667c2.354-1.334,3.7-4.667,9.082-6.667
c5.381-2,4.372-4.333,7.735-6.667c3.362-2.334-0.338,1.667-1.011,3c-0.672,1.333,2.021,5,6.056,7c4.037,2,2.354-1,4.373-2.333
s5.382-2.667,8.071-4s4.035-3.667,8.07-8c4.036-4.333,0.674-3.667,3.027-12.333s2.018-2.667,8.744-6.333
c6.728-3.666,3.025-4.667,2.688-7.333c-0.337-2.666-3.024-1.333-9.082-3.667c-6.054-2.334-4.371,1.667-5.381,2.333
c-1.009,0.666-5.381,6-6.392,8s2.02,2.667,3.026,3c1.006,0.333,0.672,3.333,0,5.667c-0.674,2.334-2.354,4.667-4.037,8
c-1.682,3.333-5.383,7.667-6.729,7.333c-1.347-0.334,0.336-2.667,0.336-5.667s3.7-6.667,5.719-8.333c2.021-1.666,0-6.333-0.336-8
s-1.683,0-1.683,0l-2.69-2l0.338-2.667l-5.72,0.667l-4.707-0.25c0,0,1.263-2,2.02-3.5c0.758-1.5-1.516-0.5-1.516-0.5s0,0-3.277,0
s0-1,0-1s1.264-2.75,3.277-4.75c2.021-2,0.255-6,0.255-6s-4.289,1-6.309,2.25c-2.021,1.25-2.773,4-3.279,5.25
c-0.505,1.25-7.565,3.5-9.839,4.25c-2.271,0.75-2.271-0.75-2.271-0.75l3.277-2.75l5.805-5l-1.516-1.25l-2.271,1.25
c0,0,0.252-3.25,0.252-4s1.01-3.75,1.514-4.5c0.505-0.75,2.021-3.5,2.775-3.75s3.782-2.25,3.782-2.25s0.504-3.25,1.011-4.25
c0.504-1-2.271-4-2.271-4s-5.298-4.25-6.055-4.75c-0.759-0.5-7.567-2-10.597-3c-3.026-1-5.803-2.5-7.566-3.25
c-1.768-0.75-2.772-1.5-4.288-2.75c-1.514-1.25-1.766-1-2.773-2.25c-1.011-1.25-2.772,0-3.529,0c-0.758,0-2.521,2.5-2.521,2.5
l-2.775-5l-3.782-8.334l6.056,7.333l6.057-0.667l0.674-4.667l-5.384-10.667l-1.347-5.333l6.057,8l8.07,8l3.363,9.333l2.02,4.667
h6.729l12.109,5.333l7.396,9.333l-5.383,7.333l-2.02,5.333l6.056-0.667v-3.333l3.362,0.667l4.709-1.333l0.675-4.667l0.673-9.333
l-6.729-7.333l-5.384-2l4.037-3.333l-4.71-2l-4.036-2.667l3.363-2l-4.036-5.333l-4.036-6l-8.745-2.667h-2.688l-4.036-4l-3.363-2
l-4.034-4l-6.057-2l-5.887-4.666l-10.504-4.365l-1.023-0.914l-1.396-0.55l-0.883-0.51l-0.967,0.163l-0.39-0.345l0.492-0.348
l-0.64-0.915l-0.737-0.042c0,0-1.005,0.551-1.188,0.551c-0.186,0-0.677-0.325-0.677-0.325l-0.78-1.159l-0.655-0.63l1.229-0.021
l0.063-0.366c0,0-0.514-0.12-0.736-0.185c-0.228-0.062-0.352,0-0.352,0l0.205-0.306l-0.491-0.325l-0.532-0.021l-0.244,0.185
l-0.394-0.041l-0.125-0.566l0.229-0.187h0.393l0.186-0.446l-0.476-0.59l-0.489,0.227l0.078,0.486l-0.529,0.161l-0.572,0.326
l-0.514-0.307c0,0-0.639-0.041-0.72-0.063c-0.083-0.021-0.205-0.284-0.205-0.284l-0.081-0.955l-0.901-0.12l-0.104-0.39
l-0.554-0.122l0.044-1.463l-1.13-1.019l-0.656,0.082l-0.246-0.608l-0.733-0.081l-0.166-0.649l-0.595,0.021
c0,0-1.254-1.06-1.354-1.159c-0.104-0.103,0.041-0.467,0.041-0.467l0.963,0.282c0,0-0.143-0.364-0.204-0.445
c-0.063-0.082-0.203-0.367-0.329-0.447c-0.122-0.081,0.533-0.041,0.533-0.041l-0.285-0.386l-0.391-0.203l-0.435,0.063l-0.309-0.63
l-0.474,0.242l-2.628-1.44l-0.079-1.157l-0.288-0.284l0.038-0.59l0.329-0.266l-0.45-0.162c0,0-0.038-0.446-0.038-0.527
c0-0.082,0.245-0.145,0.245-0.145l-0.125-0.242l-0.366-0.39l0.45-0.362c0,0,0.162-0.188,0.227-0.471
c0.063-0.283,0.532,0.121,0.638,0.041c0.104-0.082,0.082-0.123,0.163-0.161c0.083-0.041,0.802,0.202,0.926,0.202
c0.12,0,0.432-0.144,0.432-0.144s0.57,0.063,0.719,0.041c0.145-0.021,0.269,0.427,0.269,0.427s0.327,0.145,0.451,0.145
c0.123,0,0.326,0.348,0.35,0.429c0.021,0.082,0.598,0.607,0.598,0.607l0.121,0.203l0.68,0.388l0.488-0.082v-0.854l0.205-0.143
c0,0,0.309-0.021,0.473-0.041c0.165-0.021,0.126,0.509,0.126,0.509l0.736,0.062l0.571,0.284c0,0,0.902-0.405,0.943-0.485
s0.818,0.021,0.818,0.021l0.574,0.691l1.374-0.203l1.785,0.484l1.064,0.365c0,0,1.251,0.896,1.332,0.938
c0.082,0.041,0.556-0.35,0.556-0.35l0.437,0.082l1.533,0.325l1.621,0.59l0.965,1.505l0.082,0.874l0.307,0.187l0.267-0.267
c0,0,0.519-0.021,0.764-0.021s0.228,0.896,0.228,0.896l-0.228,0.227l0.721,0.935l0.227,0.938l2.522,3.334l0.982,0.874l0.61-0.081
l1.213,0.365l0.207-0.146l-0.332-0.365l-0.143-0.834l0.451-0.079l0.288,0.994l0.512,0.471c0,0,0.408,0.163,0.491,0.163
s0.286-0.445,0.286-0.445l0.021-0.591l0.554,0.123l0.6,1.073c0,0,0.693,0.041,0.772,0.021c0.084-0.021,1.563-0.406,1.563-0.406
l0.411-0.244l0.202-0.508l0.636-0.285l-0.079-0.589l0.27-0.04c0,0,0.188-0.184,0.227-0.266c0.038-0.08,0.883,0.041,0.883,0.041
l0.431-0.161l0.861-0.104l0.555,0.389l0.556-0.283l1.024-0.187l-0.269-0.793c0,0,0.349,0.592,0.433,0.633
c0.082,0.04,0.285,0.16,0.285,0.16l0.37,0.731l-0.186,0.568l-0.207-0.73l-0.571,0.021c0,0-0.124,1.238-0.063,1.344
c0.063,0.102,0.985,0.875,0.985,0.875l0.349,0.122c0,0,0.041-0.61,0.08-0.713c0.043-0.104,0.146-0.063,0.146-0.063
s0.351,0.389,0.39,0.488c0.039,0.103,0.408,0.082,0.408,0.082s0.846-0.063,0.985-0.082c0.146-0.021,0.368-0.406,0.368-0.406
l0.365-0.305l0.493,0.041c0,0,1.108,0.63,1.212,0.671c0.104,0.041,0.433-0.081,0.433-0.081l0.31-0.104l0.289,0.323l0.305-0.202
l0.168-0.937l0.34-0.539l2.162-0.783l2.313-1.959l0.799-1.5l3.067-0.291l3.7-1.168l4.288-2.372l-6.225-2.253l-2.104-2.25
c-0.085-0.062-1.234,0.271-1.234,0.271l-1.215,0.125l-1.563,0.106l-4.17,0.721h-0.271l-0.146-0.566l-0.763-1.442l-0.612-0.672
l-0.984,1.667v1.28l-0.205,0.225l-0.186,0.227l-0.061,0.322l-0.329,0.187l-0.43,0.325l0.083,1.219l0.818,1.221l0.043,0.243
l-0.448,0.104l0.119,0.47l0.411,0.061l0.12-0.427l0.723,0.896l0.062,0.366l-0.451-0.163l0.412,0.711l0.572,0.854l0.348,0.566
l0.287,0.308l0.76-0.021l0.287-0.509l-0.011,1.565l-0.502-0.228l-1.457-0.202l-1.438-1.1h-0.901l-1.063,0.204v0.487H605.7
l-1.047,0.794l-1.065-0.61l-0.145,0.326l-0.886-0.488l-0.036-0.403l-0.617-0.041l-1.497-0.896l0.125-0.203l-1.479-0.405
l0.063-0.688c0,0-0.574-0.488-0.656-0.528c-0.083-0.041-0.369,0.268-0.369,0.268l-0.368-0.146l-0.818-0.244l-0.451,0.021
l0.104,0.402l-0.244-0.062l0.104,0.61c0,0-0.574-0.021-0.658,0.021c-0.078,0.041,0.166,0.549,0.166,0.549l0.104,0.406
l-0.761,0.082l-0.084-0.731l-0.226-0.08l-0.083,0.364l-0.429,0.063l0.063,0.305l0.228,0.266l-0.369,0.268l0.246,0.265
c0,0-0.188,0.285-0.146,0.366c0.043,0.081,0.163,0.366,0.163,0.366l1.58,1.138l0.082,0.306l0.268,0.39l-1.417,0.729
c0,0-0.308-0.224-0.347-0.305c-0.043-0.082,0.021-0.266-0.021-0.428c-0.039-0.162-0.394-0.021-0.394-0.021l-0.162-0.285h-0.328
l-0.185,0.569l-0.966-0.021c0,0-0.245-0.28-0.286-0.362c-0.043-0.08-0.229-0.69-0.229-0.69l0.044-0.875l-0.146-0.467l-0.311,0.102
l-0.695-0.361l-0.738-0.593c0,0-0.145-0.388-0.163-0.469c-0.021-0.082,0.063-0.445,0.063-0.445l-0.285-0.429l0.08-1.383
l0.679,0.631l0.368-0.285l-0.146-0.524l0.188-0.874l-0.474-0.528l0.104-0.752l-0.986-1.667l-0.311,0.284l-0.121-0.04l-0.636-0.146
l-0.534,0.041l-0.473-0.122l-0.286-0.281l1.293,0.062l0.552-0.265l-0.104-0.35l1.416,0.162l0.246-0.711h0.229l0.534,0.955
l-0.164,0.529l0.266,0.468l0.063,0.937l0.597,0.47l0.039,0.935l1.334,1.118l0.474-0.347l1.188,1.668l0.571-0.956l-0.121-0.447
l0.266-0.041l0.063,0.325l0.269,0.063l0.37-0.365l0.163-0.307l-0.864-0.606l-0.104-0.366l-0.391-0.325L595.1,365.9l-0.27-0.366
l0.041-0.345l0.327,0.081l0.657,0.427l0.49,0.146l0.204-0.528l0.41,0.487l0.818,0.021l0.163-2.216l-0.309,0.063l-0.964-1.1
l0.019-0.386l0.412-0.407l-0.269-0.525l-0.203-1.061l-0.166-0.224l-0.798-0.979l-0.021-0.671l0.613-0.427l1.048,0.325l0.041-0.347
l-0.821-0.308l-0.205-0.589l-0.226-0.915l-0.146-0.59l1.066,0.102l-0.124-0.282l0.884-0.429l0.513-0.526l0.598-0.122h0.736
l0.021-1.019l-0.474-0.507l-0.594-0.063c0,0-0.063-0.308-0.166-0.406c-0.104-0.104-0.409,0.041-0.409,0.041l0.021-0.308
l-1.045-0.079l-0.218-1.271l-0.379-1.027l1.252-0.122l0.126-0.703l-0.39-0.604l-0.351-0.399l-0.428-0.218l-0.563,0.025l0.07,0.879
l-0.008,0.825l-1.235-0.415l0.041-0.429l-0.021-0.673l-0.204-0.345l0.021-0.427l-1.021,0.02l-0.288,0.326l0.204,0.771
l-0.328,0.306l-0.717-0.082v-0.549l-0.555-0.308l-0.695-1.14l-1.007-0.123l-0.615-0.386l-0.697-0.202l0.229,1.3l0.246,0.569
l1.105,2.135l-0.82,0.874l-0.572,0.104l-0.325,0.322l-0.146-0.285l-0.432-0.144l-0.312,0.104l0.146,0.646l1.293,0.731
l-0.289,0.549l-0.04,0.647l0.516,0.39l0.883,0.063l0.942,1.747l-0.37,0.406c0,0,0.598,0.548,0.738,0.629
c0.146,0.082-0.124,0.57-0.124,0.651c0,0.08,0.411,0.08,0.411,0.08l0.063,0.527l0.39,0.041l0.572,0.854h-0.243l-0.719,0.223
l-0.534,0.349l-0.941-0.405l0.162-0.65l-0.227-0.305l0.309-0.468l0.104-0.609l-0.35-0.896l-1.104-1.688l-1.313,0.285l-0.529-0.203
l0.037-0.567l-0.037-1.036l-1.396-2.112l0.041-0.469l-1.146-1.708l-0.885-0.875l-0.102-0.59l0.57-0.485
c0,0,0.614-0.042,0.842-0.063c0.229-0.02-0.021,0.163-0.021,0.163l0.45,0.041l0.269-0.203h0.489l-0.08-0.59l0.433-0.323
l-0.353-0.509l-0.858-0.689l-0.531-0.589l0.572-0.349l0.922,0.59l0.613,0.793l0.723-0.306l0.531-0.041l0.695-0.162l-0.104-1.098
l-0.021-0.407l0.41,0.041l0.61,0.648l0.779,0.122l0.49,0.081l0.68,0.509l1.086,0.567c0,0,0.695,0.225,0.778,0.284
c0.083,0.063,0.737-0.404,0.737-0.404l0.203-0.512l-0.734-0.467l0.018-0.407l-0.282-0.362l-0.146-0.672v-0.938l-0.246-0.325
l-0.163-0.307l-0.123-0.671l0.434-0.509l-0.393-0.307c0,0-0.514-0.388-0.57-0.468c-0.063-0.08-0.764-0.365-0.764-0.365
l-0.205-0.527c0,0-0.391-0.104-0.488-0.145c-0.104-0.04-0.518-0.063-0.518-0.063h-0.818l-0.119,0.284l-0.271,0.567l-0.185,0.323
l-0.53,0.144l-0.311-0.242l-0.557-0.021l-0.246,0.979h-0.72l-0.817-0.187l0.201-0.629l0.396-0.854l0.364-0.404l0.082-0.671
l-0.531-0.021l-0.122-0.51l0.43-0.063l0.126-0.283c0,0-0.268-0.021-0.39-0.041c-0.127-0.021,0-0.285,0-0.285l0.347,0.021
l0.329,0.267l0.736-0.042l0.986-0.388l0.063-0.649l-0.041-0.813l0.368-0.346l-0.081-0.55l0.447,0.082l0.188-0.245l0.453-0.08
l-0.329-0.469l0.408-1.32l-0.408-0.284l0.431-0.145l0.104-0.813v-1.059l0.018-0.607l-0.405-0.203l-0.492-0.405l-0.801-0.326
l-0.243-0.711l1.209-0.145c0,0,0.693-0.122,0.816-0.242c0.124-0.122-0.083-0.365-0.083-0.365l-0.552-0.348l0.146-0.266
l0.446-1.158l-0.06-0.712l-0.558-0.225l-0.287-0.388l-0.758-0.184l-0.086-0.244l-0.613-0.08l-0.408,0.324l0.021,1.221
l-0.247,0.225l-0.719,0.226l-0.392,0.509l-0.694,0.104l0.041,0.284l0.203,0.566l0.352,0.689l-0.737,0.162l-1.045,0.348
l-0.041,0.404l-0.31,0.041l-0.104-0.364c0,0-0.146-0.146-0.286-0.104c-0.146,0.041-0.29,0.568-0.29,0.568l-0.735,0.144
l-0.268,0.366l-0.433-0.063l-0.062,0.771l-0.926,0.081l-1.172,0.813l-0.488,0.185l-0.862-0.365l-0.759,0.915l-0.188,0.955
l0.475,0.146l0.637-0.243l0.963-0.021l-0.041,0.284l-0.759,0.266l-0.409,0.938l-0.76-0.285l-0.245,0.69l0.35,0.469l0.555,0.671
l-0.079,0.226l-0.519,0.267l-1.291,0.041c0,0-0.325-0.203-0.514-0.228c-0.188-0.021-0.677,0.122-0.677,0.122l-0.432-0.346
l-1.05,0.225l-0.079-0.144l-1.294,0.082l-0.43,0.468l-0.803-0.063l-0.842,0.324l-0.475-0.145l-0.982-0.122l-3.813-0.104
l-0.614,0.59l-0.555,0.325l-0.574,0.202l-2.256-1.343l-2.439-0.104l-2.688-0.285l-0.677-0.346l-1.536,0.063l-0.124,0.323
l-0.309,0.104l-1.09-0.979l-1.022-0.282l-0.353-0.144l-1.17-0.123V333l0.146,0.284l0.639,0.467l0.389,0.366l0.187,0.427
l-0.122,0.347l-0.313,0.285l-0.488,0.284l-0.491-0.021v-0.549l-0.021-0.671l-0.324-0.365l-1.271-0.063l-0.063,0.447l-0.614,0.403
l-1.331-0.021l-0.641-0.226l-0.035-0.429l-0.33-0.346l-0.122-0.568l-1.007-0.307v-0.406l-0.271-0.347l-0.649-0.225l-1.396,0.121
l-0.557-0.284l-0.573-0.484l-1.005-0.51l-0.862-0.021l-0.817-0.59l-1.148,0.021l-0.164-0.896l1.768,0.041l0.31-0.122l0.651-0.487
l0.313-0.265l0.613-0.284l0.309,0.326l0.719-0.123l0.393,0.407h0.409l1.13-0.326l0.247-0.325l0.061-0.647l-0.164-0.485
l-0.021-0.429l0.308-0.163l0.271-0.063l0.021-0.345l0.555,0.062l0.063-0.282l0.328-0.188l0.513,0.489l1.128,0.143l0.124-0.283
l-0.271-0.266l0.354-0.225l-0.104-0.325l-0.311-0.833l-0.842-0.204l-0.492,0.447l-0.552,0.323v-0.713l0.328-0.647l0.083-0.526
l-0.451-0.285l0.063-0.589l-0.941-0.648l0.856-0.267l-0.036-0.429l0.16-0.607l0.575-0.403l0.407-0.407l0.228-1.019l0.532-0.729
l0.248-0.468l-0.021-0.792l0.188-0.427l0.393-0.204l0.268-1.017l-0.491-0.469l-0.041-0.567l0.327-0.731l0.081-0.224l-0.164-0.793
l0.574-0.712l0.021-0.896l0.284-0.041l0.147-0.387l-0.312-0.467l0.16-1.059l-0.244-0.793l0.229-0.792l-0.863-1.545l-0.595,0.163
l-0.326-0.346l0.309-0.308l0.104-0.404l-0.492-0.854l-0.41-0.854l0.164-0.875l-0.326-0.955l0.063-0.365l-0.188-0.836l-0.146-1.035
l-0.407-0.487l-0.249-0.771c0,0-0.471-0.103-0.554-0.184c-0.081-0.082-0.163-0.428-0.188-0.631
c-0.021-0.202-0.474-1.197-0.474-1.197l-0.678-0.063l-0.694-0.121l-0.021,0.266l-0.283-0.041l-0.493-0.406l-0.556-0.266
l0.271-0.224c0,0,0.391-0.225,0.634-0.266c0.247-0.041,0.436-0.285,0.436-0.285l0.144-0.527l-0.104-0.387l-0.394-0.102
l-0.635-0.041l-0.475,0.143l-0.187,0.365l-0.163,0.264l-0.103,0.428l-0.698-0.062l-0.554,0.387l-0.287,0.346l-0.531,0.267
l0.038,0.567l-0.407,0.348l-0.761,0.284l-1.521,0.549l0.063,0.405l-0.229,0.285l-0.352,0.266l-0.533,0.081l-1.415,1.769
l0.205,0.732l0.104,0.021l0.718,0.163l0.063,0.427l-0.202,0.347l-0.679,0.062l0.146,0.874l0.554,0.591l0.821,1.442
c0,0-0.432,0.144-0.514,0.144c-0.081,0-1.006,0.226-1.006,0.226l-0.598,0.526l-0.187,0.772l-0.64-0.347l0.044-0.527l0.063-0.549
l0.124-0.69l-0.166-0.347l-0.778-0.063c0,0-0.515-0.041-0.614-0.062c-0.104-0.021-0.654,0.203-0.654,0.203l-0.614-0.063
l-0.229-0.325l-0.31-0.042l-0.309,0.285l-0.533-0.082l-0.695-0.183l-0.736,0.364l-0.532,0.163l-0.164,0.896l-1.479,0.915
l0.041,0.648l-0.695-0.265l-0.615,0.185l-0.613,1.238l-0.656-0.63c-0.416,0.091-0.834,0.091-1.252-0.144l-0.676-0.021l-0.35,0.65
l-0.532,0.142l-0.804,0.792l-0.8,0.203l-0.693,0.448l-2.012,1.729l-0.517,0.082l-0.513-0.324l-0.326,0.041l-1.148,0.081
l-0.124-0.184h-1.146l-1.419,0.589l0.023,1.037l-0.884,0.366v0.487l-0.697-0.063l-0.555,0.61l-1.396,0.67l-1.188,0.567
l-0.597,1.361l-0.696,0.122h-0.572l-0.53,0.081l-0.943,0.63l-0.86,0.567l0.021,0.267l-0.899,0.646l-0.576,0.146l-0.572,0.082
l-1.66,0.204l-1.604,0.244l-1.887,0.589l-0.942,0.264l-0.843,0.428l-0.31-0.021l-0.123-0.203l1.233-0.589l0.06-0.227l0.369-0.526
l0.859-0.204l0.737-0.081l1.23-0.549l0.474-0.104l0.761-0.021l0.243-0.203l0.572-0.063l0.721-0.348l1.334,0.041l0.369-0.405
l0.353-0.428l0.6-1.023l-0.055-1.255l1.604-0.156l1.548-0.034l1.238-0.461l1.076-0.319l0.379-0.479l0.768-0.098l-0.179-0.542
l-0.755-0.191l-0.896-0.295l-0.607-0.274l-0.896-0.478l-1.188-0.094l-1.042,0.029l-1.188,0.671l-1.457,0.268l-1.396,0.405
l-0.039,1.099l-0.698,0.509l-0.881-0.875l-0.473,0.305l-0.575-0.566l-0.638,0.346l-1.247-0.487l-0.559-0.365l-0.858-0.063
l-0.123,0.306l-0.902,0.201l-0.777,0.551l-1.396,0.081l-0.327,0.509h-1.211l-1.519,0.388l-0.515,0.508l-0.942,0.508l-0.572,0.528
l-0.616,0.59l-0.287,0.896l0.533,1.019l0.267,0.143c-0.131,0.816-0.328,1.695-0.349,2.541l1.396,0.063l0.063,0.938l3.076,0.226
l0.472-0.063l0.72,0.325l-0.696,0.712l-0.021,0.447l0.411,0.485l-0.041,0.486l0.922,0.712l0.021,0.591l-1.065-0.162l-0.761-0.753
l-1.354-0.63l-0.738-0.145l-1.725-0.366l0.186,0.389l-0.655,0.041l-0.021,0.567l0.41,0.285l0.859,0.427l0.083,0.569l0.492,0.143
l-0.188,0.589l1.562,0.854l2.379,0.833l1.271,0.184l0.762-0.446l0.652-0.204l1.108-0.104l0.801,0.082l1.251,0.689l1.209-0.146
l0.965-0.12l1.662-0.021l0.965,0.042h1.248c0,0,0.806,0.062,0.903,0.062c0.104,0,0.327,0.365,0.327,0.365l0.885,0.145l0.393,0.081
l0.103-0.104l-0.205-0.145l-0.021-0.242l0.184-0.082l0.104,0.201c0,0,0.163,0.104,0.245,0.104c0.084,0,0.311-0.162,0.311-0.162
l-0.039-0.325l-0.395-0.081l-0.186-0.122l-0.597-0.144l0.188-0.324l0.554-0.204l0.164-0.792l-0.635-0.307v-0.325l0.471-0.041
l0.353,0.143l0.166-0.304l-0.495-0.551l-0.433-0.062l0.021,0.526l-0.306,0.041l-0.229-0.285l-0.799-0.305l-0.615-0.162
l-0.802,0.243l-0.449-0.063l-0.572-0.041l-0.327,0.104l-0.491-0.284l0.226-0.509l0.246-0.364l0.842-0.063
c0,0,0.163-0.365,0.123-0.445c-0.041-0.081,0.433-0.021,0.433-0.021l0.328-0.388l0.125,0.184l0.514,0.041l0.226-0.428l0.76,0.021
l0.312,0.348l-0.327,0.526l1.104,0.307l4.821,1.604l1.168-0.063l1.253,0.528l0.329-0.284l1.6,0.567l1.087,0.041l0.125-0.266
l0.983,0.121l0.594,0.752l0.556,0.388l0.574,0.163l0.488-0.346l2.543,0.104c0,0,0.354-0.51,0.371-0.591
c0.019-0.081,1.169-0.041,1.169-0.041l0.041,0.568l0.163,0.347l-0.351-0.123v0.244l0.163,0.145l0.983,0.021l-0.162,0.284
l-1.008-0.042l0.104,0.365l0.695,0.204l1.147-0.527l0.575,0.021l3.221,0.59l0.448-0.284l0.533,0.041l0.313-0.145l0.594,0.203
l0.494-0.063l0.284,0.243l0.187,0.486l0.599,0.145l0.327,0.242l-0.229,0.284l-0.493,0.104l-0.407-0.104l-0.492,0.104l-0.45,0.202
l-0.39-0.284c0,0-0.205,0.185-0.288,0.144c-0.082-0.041-0.408-0.062-0.408-0.062l-0.27-0.389l-0.53-0.039l-0.188,0.281
l-0.039,0.186l-0.533,0.104c0,0-0.166-0.164-0.246-0.185c-0.082-0.021-0.245-0.063-0.245-0.063l-0.104,0.146l-0.164,0.322
l-0.328,0.021l-0.326-0.244l-0.491-0.021l-0.329,0.201l-0.309-0.225h-0.697l0.083-0.244l-0.392-0.143l-0.084-0.633l-1.127,0.063
l-0.104,0.244l-0.287,0.162l-0.021,0.305l-0.352,0.021l-0.533-0.431l-0.636-0.224l-0.391-0.428l0.37,0.082l0.079-0.187
c0,0,0.286,0.021,0.368,0c0.082-0.021,0.123-0.345,0.123-0.345l-0.162-0.163l-0.393,0.325l-0.042-0.226l-0.285-0.081l-0.372,0.266
l0.064,0.606h-0.354l1.026,0.689l-1.231-0.122l-0.612,0.306l-1.373-0.079l-0.229-0.796H515.5l0.122,0.875l-1.949,0.08
l-0.268-0.402l-0.86-0.122l-0.31,0.347l-1.23-0.225l-2.461,0.711l-0.739-0.69l-1.821-0.325l-2.729-0.163l-0.248-0.24
c0,0-0.94,0-1.046,0c-0.103,0-0.695,0.387-0.695,0.387l-1.087-0.244l-5.578,0.467l-0.39-0.223l-0.517,0.021l-0.407,0.349
l-1.827-0.187l-0.205-0.364l-1.52-0.226l-3.469-1.158l-1.293-0.549l-0.489-0.508l-0.329-0.244l-0.861,0.486l-1.479-0.308
l-0.736-0.813l0.512-0.568l-0.409-0.729l-0.86-0.021l-0.737-1.22l-0.718-0.268l-0.598,0.021l-7.302,3.679l-0.083-0.365
l-2.151,0.348l0.041,0.752l-0.614,0.469l-1.354,0.082l-1.105-0.244l-1.23-0.527l-1.313-0.04l-1.726-0.469l-2.994-0.59
l-0.351-0.162l-0.76-0.226l-0.164,0.244l-1.21-0.268l-0.37-0.305l-0.677-0.062l-0.288,0.184l-2.256,0.163l-1.602-1.321l-0.9-0.082
l-0.391-0.524h-1.396l-2.094-1.223l-1.619-0.021l-1.047-0.69l1.62-4.732l-1.065-0.896l-0.574-0.956l-1.15-0.996l-2.479-0.244
l0.043-0.467l-0.516-0.062l-1.271-0.508l-0.021-0.388l-1.252,0.122l-0.246,0.488l-1.066-0.163l-0.227-0.834l0.718-0.081
l-0.759-0.833l-0.655,0.021l-0.556-0.307l-2.688-1.422l-0.779-0.284l-1.643,0.244l-1.701,0.978l-0.883,0.122l-2.563,1.198
l-1.456,0.162l-0.473,0.366l-0.697,0.123l-1.006,0.346l0.021,0.528l-0.717,0.487l0.899,0.428l-0.042,0.284l0.371,0.284h0.594
l0.476-0.324l0.676,0.021l0.369-0.102l0.655-0.081l0.286,0.243l-0.041,0.405l-0.613,0.203l-1.603,0.146l-1.659,0.508l-1.13,0.183
l-0.408-0.305l-0.309-0.042l-0.392,0.306l-1.438,0.65l0.165,0.528l0.697-0.081l1.105-0.509l0.943,0.283l1.292,0.121l-0.104,0.407
l-0.432,0.305l-0.657,0.244l-0.718-0.163l-0.451,0.204l-0.775,0.854l0.205,1.074l-0.287,0.349l-0.083,0.509h-0.473l-0.247-0.651
l-0.244-0.061l-0.393-0.448l-0.308-0.021l-0.165,0.646l-0.352,0.228l-0.227,0.771l-0.327-0.204l-2.462,0.041l-0.513-0.345
l-0.736,0.021l-0.328-0.469l0.515-0.671l-1.334-0.833l-0.35,0.082l-2.461,1.28l-0.841,0.671l-0.697-0.508l-1.703,0.468
l0.369,0.345l1.188,0.122l-0.35,0.711l-1.271,0.203l-0.104,0.408l-2.068,1.157l-0.063,0.445l-2.174,1.402L396.049,325
l-0.268-0.405l-1.562,0.041l-0.637,1.36l-0.492,0.021l-1.127,0.529l-0.163-0.104l-0.924-0.121l-2.257,0.772l-0.596-0.021
l-1.602,0.648l-0.164,0.386l-0.472,0.285l-0.309-0.122l-0.843,0.349l-0.021,0.388l-1.048,0.386l-3.429,1.545l-1.576,0.204
l-1.229,0.975l-0.104,0.39l-0.449,0.55l-0.474,0.264l-0.104,0.65l-1.026,0.549l-2.419,0.486l-5.004,3.885l0.246,0.201
l-0.041,0.632l-0.515,0.771l0.515,0.225l-0.021,0.307l0.204,0.144l0.187,0.244l-0.124,0.509l-0.246,1.036l0.228,0.324
l-0.228,0.226l-1.559,1.626l-0.517,0.364l-0.368-0.185l-0.555,0.307l-0.514,0.283l-0.859,0.104l-0.371-0.041l-1.826-0.549
l-1.414,1.128c0,0-0.107,0.447-1.416,1.129c-1.305,0.682-2.777,6.433-2.777,6.433l-2.369,1.229c0,0-0.818,7.435-0.071,8.546
c0.747,1.112,6.001,5.536,6.001,5.536l-1.878,4.234c0,0-2.252,3.264-1.796,6.023c0.457,2.766,4.113,3.991,4.113,3.991
s-1.479,2.35-1.434,3.379c0.048,1.032,1.268,3.354,1.268,3.354l0.103,0.497l0.025,0.195l0.269,2.014l-0.168,2.166l0.084,2.918
l-0.252,2.416c0,0-3.194-0.082-3.698-0.082c-0.506,0-1.936-0.75-1.936-0.75v-1.75l-0.169-3.084l0.505-2.832l0.698-2.108
c0,0,1.161-3.214,1.104-3.895c-0.169-1.283,0.91-2.067,0.405-3.036c-0.504-0.968-0.938-0.51-1.521-1.5
c-1.123-0.895-0.021-4.019-0.968-5.097c-1.983-1.677-4.106-0.832-4.341-1.357c-0.479-1.104-3.773-2.713-4.001-2.693
c-0.595-0.076-2.479,2.261-3.506,2.573c-1.313,0.207-5.52-0.498-6.882-0.272c-1.364,0.227-2.849,2.652-4.104,2.874
c-2.09-0.102-7.271-1.086-8.979-1.229l-2.552-1.259l-3.699-0.168l-2.522,0.418c0,0-1.178,0.25-1.514,0.832
c-0.336,0.584-0.673,2.25-0.925,2.418c-0.252,0.166-0.757,0.416-1.011,0.5c-0.252,0.082-1.768,0-2.188-0.5s-1.009-1-1.345-1.334
c-0.336-0.332-1.769-1-1.769-1s-0.673,0.418-1.009,0.418c-0.337,0-1.431,0.166-1.851-1.168s0.084-1.832-0.759-1.582
c-0.841,0.25-2.773,0.834-3.446,1.166c-0.674,0.334-1.263,1.084-1.263,1.084s-1.179-1-1.094-2.334
c0.085-1.332-0.336-3.832-0.336-3.832l-5.463-1.5c0,0-7.063-3.668-8.072-3.668s-2.688,0-4.371,1.668
c-1.685,1.666,0,3.666-3.026,2.332s-5.045-3.332-7.399-4.332c-2.354-1-9.081-5.668-10.426-5.668s-3.362,0-8.072,0
c-4.709,0-7.396,0.666-10.091-0.666c-2.689-1.334-5.045-2.668-7.063-4c-2.021-1.334-2.021-1-4.372-2.668
c-2.354-1.666-4.373-4-7.063-4c-2.689,0-6.392-0.332-8.072,0.334c-1.684,0.666-10.428,1.332-9.417,3.666
c1.011,2.334,10.093,1.334,2.02,4c-8.072,2.668-11.771,1.668-11.101,4c0.674,2.334,2.69,6.668,5.381,9.334
c2.689,2.666,4.373,3.332,6.055,7c1.682,3.666,4.709,2.332,4.709,6.332s5.045,5.334,0,4c-5.045-1.332-9.417-5.332-8.409-3.332
c1.009,2,2.02,3,4.373,7.332c2.354,4.334,2.354,3,4.036,8.668c1.682,5.666,2.018,3,2.354,9.332c0.336,6.334,0.674,8,1.01,10
c0.337,2-2.02-0.666,0,3.668c2.019,4.332,3.699,3.332,4.709,6.332c1.044,2.659,0.247,1.197,0.81,2.3c0,0,0.406,0.767,0.2,0.7
l16.878,21.8l0.11,1.555c0,0,4.035,10,4.541,11.5c0.505,1.5,2.521,6.5,4.541,11.5c2.021,5,3.025,7,4.034,9.5
c1.011,2.5,1.011,5.5,1.011,8.5s1.515,6,3.53,12.5c2.021,6.5,3.532,9.5,3.532,9.5l-1.515,11l2.019,5c0,0,1.516,4,6.055,9
c4.541,5-1.514,4.5-1.514,4.5s-5.551-1.5-8.072-2.5c-2.521-1-3.025,0.5-4.035,2c-1.011,1.5,2.521,1.5,2.521,1.5l3.026,3.5
c0,0-3.026,3-4.541,5c-1.517,2,0,5,2.019,9.5c2.02,4.5,1.009,6.5,1.516,10.5c0.504,4,1.514,4,3.024,8.5s3.026,6.5,3.026,6.5
s0,0,1.009-1.5c1.01-1.5,1.516-4,3.532-5.5c2.019-1.5,8.071,1,8.071,1s0,0,1.515,0s4.541-1,6.056-1.5s0-7,0-7s0-2.5-0.504-4
c-0.506-1.5-1.515-2-1.515-2l3.024-7.5c0,0-0.504-11-0.504-12.5s-0.505-4-0.505-4l4.036-6.5c0,0,0,0,3.532-4.5
c3.53-4.5,4.035-6,10.595-9c6.561-3,0,0,1.515,1.5c1.516,1.5-1.515,4-3.53,7.5c-2.021,3.5,2.521,4.5,4.035,5.5
c1.516,1,2.521,2.5,4.036,6c1.516,3.5-1.01,3-1.01,3s-2.521,1.5-6.561,3c-4.037,1.5-3.531,3-10.092,5.5s-2.02,2.5-2.02,2.5
l5.55,2.5c0,0-3.024,2-6.559,3.5s3.53,2.5,5.045,3c1.514,0.5,0,2,3.025,4c3.026,2,0,0,2.521,2c0,0-1.514,2-6.56,8.5
c-5.047,6.5-3.531-2.5-3.531-2.5s-0.505,5.5-0.505,10.5s1.01,3.5,1.01,6.5s0,4,0,8s0,5,0,11.5s1.009,7,1.009,11
s0.811,12.572,0.811,14.072"/>
<path inkscape:label="Mainland, Södertörn" sodipodi:nodetypes="ccccccscccscscsccscccccscccccccsccccccsccccsccccccccccccccsccccccccscccccscccsccccccsscscssssccccsccccccccccccssccsccccccccccccsccccccccccccccccscccccsccccccccccczczcczcczccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccsccccccccccccccccccccccsccccccscccccccccccccccccccccccccccccsccccccccccccccccccccccsccccccccccccccccccccccccccccsccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccscccccccccccccccccccccccccccccccsccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccscccccccccccccccccccsccsccccccccccccscccccccccccccccccccccccsccccccccccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccscccccsscccccscccccccccccscccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M218.247,431.187"/>
<path inkscape:label="Mainland, Södertörn" sodipodi:nodetypes="ccccccscccscscsccscccccscccccccsccccccsccccsccccccccccccccsccccccccscccccscccsccccccsscscssssccccsccccccccccccssccsccccccccccccsccccccccccccccccscccccsccccccccccczczcczcczccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccsccccccccccccccccccccccsccccccscccccccccccccccccccccccccccccsccccccccccccccccccccccsccccccccccccccccccccccccccccsccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccscccccccccccccccccccccccccccccccsccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccscccccccccccccccccccsccsccccccccccccscccccccccccccccccccccccsccccccccccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccscccccsscccccscccccccccccscccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M233.813,453.424"/>
<path inkscape:label="Mainland, Södertörn" sodipodi:nodetypes="ccccccscccscscsccscccccscccccccsccccccsccccsccccccccccccccsccccccccscccccscccsccccccsscscssssccccsccccccccccccssccsccccccccccccsccccccccccccccccscccccsccccccccccczczcczcczccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccsccccccccccccccccccccccsccccccscccccccccccccccccccccccccccccsccccccccccccccccccccccsccccccccccccccccccccccccccccsccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccscccccccccccccccccccccccccccccccsccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccscccccccccccccccccccsccsccccccccccccscccccccccccccccccccccccsccccccccccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccscccccsscccccscccccccccccscccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M220.621,645.551"/>
<path inkscape:label="Mainland, Södertörn" sodipodi:nodetypes="ccccccscccscscsccscccccscccccccsccccccsccccsccccccccccccccsccccccccscccccscccsccccccsscscssssccccsccccccccccccssccsccccccccccccsccccccccccccccccscccccsccccccccccczczcczcczccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccsccccccccccccccccccccccsccccccscccccccccccccccccccccccccccccsccccccccccccccccccccccsccccccccccccccccccccccccccccsccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccscccccccccccccccccccccccccccccccsccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccscccccccccccccccccccsccsccccccccccccscccccccccccccccccccccccsccccccccccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccscccccsscccccscccccccccccscccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M-370.5,144.612"/>
<path inkscape:label="Mainland, Södertörn" sodipodi:nodetypes="ccccccscccscscsccscccccscccccccsccccccsccccsccccccccccccccsccccccccscccccscccsccccccsscscssssccccsccccccccccccssccsccccccccccccsccccccccccccccccscccccsccccccccccczczcczcczccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccsccccccccccccccccccccccsccccccscccccccccccccccccccccccccccccsccccccccccccccccccccccsccccccccccccccccccccccccccccsccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccscccccccccccccccccccccccccccccccsccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccsccccccccccccccccccccccccscccccccccccccccccccsccsccccccccccccscccccccccccccccccccccccsccccccccccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccscccccsscccccscccccccccccscccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" fill="#878770" d="
M803.097,10.553"/>
<path fill="#878770" d="M97.531,10.112l0.236,1.597c0.063,0.267,0.077,0.652,0.077,0.652c0.002,0.208,0.339,6.86,0.672,9.501
c0.672,5.333,5.381,8.667,7.4,10.667c2.018,2,6.727,13.333,7.398,17.333s4.035,7.333,5.381,11.333
c1.346,4,6.055,3.333,14.127,6.667c8.072,3.334,4.035,6,8.072,8.667c4.036,2.667,7.399,7.333,7.399,7.333s10.09,0,12.106-1.333
c2.018-1.333,5.381-1.335,8.072-5.335c0,0,0.674-2.667,6.728-15.333c6.056-12.666,2.69,0.667,2.69,0.667s0,11.333,0,18
s-4.035,4-8.072,4c-4.036,0-3.362,0.667-5.381,3.333c-2.02,2.666-2.02,8-2.02,8s0.674,8.667-2.689,10.667
c-3.364,2,0,4,2.689,7.333c2.691,3.333,4.709,6.667,8.746,12s-1.345,6-2.69,9.333c-1.347,3.333,0.673,5.333,6.728,15.333
c6.056,10,3.363-1.333,8.072-3.333s2.019-8.667,0.674-12.667c-1.346-4,3.362-9.333,9.417-17.333c6.055-8,4.036,2.667,4.036,2.667
s3.362,7.333,3.362,9.333s-3.362,2-4.709,5.333c-1.347,3.333,1.345,10,1.345,10s-5.381,1.333-8.071,3.333
c-2.69,2-2.019,4.667-2.69,10.667c-0.671,6,0.673,7.333,0.673,7.333s13.454-3.333,16.818-4.667c3.362-1.334,1.345-2,4.709-6.667
c0,0,9.416,0,12.106-2.667c2.689-2.667,0-2-2.02-7.333s-4.709-3.333-8.746-5.333c-4.036-2-0.674-3.333-1.346-19.333
s-1.346-5.333-1.346-5.333s5.382,8.667,12.107,12c6.729,3.333,2.021-3.333,5.381-6.667c3.363-3.334,2.69-0.667,4.709,2.667
c2.021,3.334,4.036,8.667,6.729,13.333c2.691,4.666,1.346-0.667,4.709-0.667s3.363,2.667,5.381,4
c2.021,1.333-1.345,2.667-3.362,3.333c-2.019,0.666-2.688,6-2.688,6l8.072,0.667c0,0,0.672,1.333,4.034,6.667
c0,0,1.347-0.833,3.868,2.167s0.504,5.5-0.505,9s1.009,7.5,2.021,11c1.01,3.5,7.063-0.5,9.082-1c2.019-0.5,0.504,1,2.019,8.5
c1.514,7.5,4.036,5.5,7.063,7.5c3.025,2,7.063-9.5,8.575-12c1.516-2.5,0.505-4,3.027-15c2.521-11,0-4,0-6.5s-1.01-9-1.01-9
s-6.057-3-6.562-4.5s4.541-2.5,13.622-6s0.504,4.5,0,7.5s1.011,2.5,9.082,11c8.073,8.5,0.504-1,0-6c-0.505-5,4.541-5.5,7.063-6
c2.521-0.5,1.516,5.5,1.516,9s0,6,0,10.5s-4.036,3.5-5.551,6.5c-1.516,3-0.506,4.5,0,9c0.504,4.5-0.506,0.5-4.541,1
s-3.531,4-3.531,5.5s-2.02,7-4.036,14.5c-2.019,7.5,0,6-1.515,11c-1.514,5-2.521,5-2.521,7s1.01,2.5,6.056,7.5
c5.045,5,5.045,4,5.045,4s7.063,6.5,8.071,8c1.008,1.5,3.278,4.75,3.278,4.75s0.757,0.875,1.388,2.375
c0.632,1.5,1.136,2,2.271,3.25s1.64,0.75,1.64,0.75s1.894,1.875,2.021,2.5c0.125,0.625-1.01,1.25-1.01,1.25
s-2.522,2.5-2.522,2.875s2.021,2.75,2.396,3s1.767,0.125,1.767,0.125l2.193-0.985l5.638,3.57l3.207,4.22l7.146,2.919l3.862,2.758
l5.832,4.384l4.107,2.677c0,0,2.868,3.631,4.19,5.603c1.322,1.975,6.733,2.434,6.733,2.434l0,0l0.513-0.08l1.561,0.548
l0.246-0.548l1.088-0.366l1.025,0.386l0.287,0.59l1.209,0.063l0.574,0.648l1.088-0.163l0.678,0.268l-0.124,0.63l0.433,0.487h0.329
l0.267,0.689l-0.491,0.651l0.53,0.915l-0.266,0.386l0.49,0.406l0.474,0.041l-0.041,0.405l0.532,0.225l1.641,1.85l-0.121,0.447
l0.531,0.366l0.269,0.122l0.409,0.568l0.965,0.021l3.714,1.891l0.639,0.529l0.965,0.406l0.964,1.464l1.005,0.833l4.021,2.234
l2.176,1.829l0.594,0.104l0.473,0.326l3.814,0.444l1.99,2.015l0.941,0.021l0.475,0.733l1.599,0.71l0.678-0.021l2.75,2.623
l1.13-0.102l0.613,0.244l0.719-0.285l1.807-0.813l0.165-0.526l1.928-0.146l0.821-1.279l-0.246-1.384c0,0,1.064-1.238,1.088-1.116
c0.021,0.122,1.188-1.222,1.188-1.222l0.433-0.264l0.759-1.626l0.433-0.122l1.52-1.627l0.369-1.362l0.719,0.164l1.168-1.81
l-0.636-1.667l0.817-2.115l-0.245-0.752l0.042-0.67c0,0-0.531-0.366-0.515-0.488c0.021-0.122,0.311-0.854,0.311-0.854h2.77
l1.684-1.667l0.656-0.407l0.082-0.651l-1.806-1.399l0.287-1.223l0.431-0.323l-0.123-1.141l0.699-1.017l-0.31-0.833l-0.679-0.227
l-0.554-0.953l-0.638-0.041l-0.326,0.631l-0.924-0.244l-0.269-1.06l-0.308-0.345l-2.154-0.529l-0.779-0.834l-1.701,0.552
l-1.498-0.226l-0.86,0.528l-0.472,0.813l-0.042,1.118h-2.317l-0.738-0.345l-0.653-0.142l-2.729,0.038l-0.717,0.592l-0.268,0.813
l-0.063,0.793l-0.861,0.163l-0.613-0.915l-1.25-0.122l-0.311-0.729l0.165-0.955l0.411-0.55l0.861-0.268l1.251-0.021l1.005,0.103
l0.513,0.591l0.063,0.324l2.587-0.123l1.006-0.833l0.736-0.346l0.942-0.122l0.924-1.118l1.293-1.32l1.66-0.365l0.393-0.467
l-0.491-1.911l-1.046-0.875l-1.15-0.509l-0.348-1.019l-1.521-1.158l-1.724-1.383l-0.945-0.976l-1.146-0.145
c0,0-0.352-0.937-0.311-1.017c0.041-0.081,0.163-0.589,0.163-0.589l0.534-0.511l-0.288-1.22l-0.531-1.057l-0.595-1.729
l-0.39-0.956l-0.68-2.012l1.172,2.094l0.244,0.308l0.638,0.566l1.6,2.358l0.924,0.305l0.944,0.813l0.104,0.671l-0.268,0.567
l0.513,1.036l0.597,0.712l0.104,0.731l0.777,1.26l3.24,2.5l0.475,0.651l0.103,0.63l1.604,0.894l0.883,0.146l1.024,0.364
l0.983,0.082l1.065,0.608l0.718-0.041l0.389,0.204l0.146,0.427l1.499,1.101l1.764-0.43l1.58,0.896c0,0,1.949,0.062,2.03,0
c0.082-0.063,0.8-0.833,0.8-0.833l0.678,0.021l0.082,0.955l0.84,0.47l0.146,0.833l-0.164,0.794l0.288,0.323l1.519,0.348
l1.087,0.243l0.615,0.346l1.479,0.509l1.25,0.143l0.472-0.509l0.821,0.063l1.783,0.688l2.936,1.362l2.195,1.179l2.688,0.834
l1.561,0.307l0.943,0.306l2.481,1.158l0.923,1.22l0.247,0.793l0.042,1.464l1.169,1.911l1.742,0.896l0.902,1.522l1.188-0.567
l1.642,0.123h1.333l1.907-1.241l1.498-0.324h1.292l0.966,0.528l0.636,0.996l0.229,0.242l0.532-0.345l0.653-0.325l0.083-1.239
l-0.555-0.793l-0.553-0.569l-0.556-0.468l-0.369-0.325l-0.103-0.427l0.228-0.226l0.432-0.04l0.512,0.203l0.924,0.549l0.778,0.47
l6.604-0.285l1.742-0.104l0.104,0.326l1.724,0.021l0.475-0.486l1.457-0.122l0.35-0.387l0.471,0.021l0.229-0.589l0.883-0.143
l1.065-0.227l0.104,0.569l3.425,0.936l0.862,0.529l1.519,0.142l0.927,0.145l1.005,0.163l1.291-0.063l1.045-0.163l0.517,0.429
l2.277,1.384l1.846,1.058l2.011,0.528l0.843,0.122l3.813,1.383l0.573-0.145l0.331-0.995l0.69-0.267l0.248-0.427l0.901-0.426
l-0.449-0.979v-0.711l-0.287-0.366v-1.382l-1.987-0.854l-0.804-1.06l-1.331-0.833l-0.818-0.325l-0.041-0.711l0.775-0.445
l-0.367-0.592l0.39-0.487l-0.553-0.406l-0.435-1.078l-1.229-0.567l-1.807-1.893l-0.32-0.489l0.693-0.577l-0.087-0.134
l-0.745,0.519l-0.711-0.6l-1.335-0.793l-1.599,0.854l-0.614-0.428l-2.895,1.708l-1.045-1.402l5.063-2.438l0.312-0.365l1.172-0.671
l-0.288-0.388l-2.296-0.509l-1.728,0.688l0.453,0.671l-4.188,1.77l-0.779-4.29l-1.252-2.744l-3.772-0.387l0.188-1.179l2.912,0.041
l2.894-0.226l-0.571-0.833l-2.235,0.021l-0.124-0.447l-1.108-0.021l-1.209-2.398l0.228-0.184l-0.351-0.588l-0.515,0.079
l-0.84-0.729l-0.021-1.221l0.286-0.104l0.021-0.671l-0.368-0.143l-0.104-0.428v-0.487l-0.719-0.121l-0.391-0.854l-1.006-0.225
l-0.453,0.348l-0.859-0.754l-0.697-1.077l-0.801,0.184l-0.819-0.122l-1.229,0.447l-2.134,1.892l-0.779,0.896l-0.37-0.162
l0.288-1.059l1.171-1.036l1.23-0.771l2.337-0.673l1.171-0.486l0.266-1.159l-0.309-0.772l-1.25-1.116l-0.943-1.992l-1.869-0.244
l-1.412-1.952l-1.008-0.08l-0.348,1.18l-1.313-0.632c0,0-0.351-0.548-0.451-0.548c-0.104,0-1.602-0.021-1.602-0.021l-3.24-2.93
l-1.188-0.102l-0.718-0.813l-0.925-0.202l-1.62-1.789l-1.354-0.307l-1.948,1.158l-1.784,0.468l-1.292-1.14l-1.989-0.976
l-1.106-0.754l-1.683,0.795l-0.779,0.387l-0.083,0.729l0.514,0.528l0.985,0.405l0.513,0.388l0.021,0.63l-0.595,0.245l-0.393,0.527
l-0.432-0.186l-0.433,0.267l-0.778,0.104l-0.615,0.041l-0.432,0.467l0.491,1.281l0.737,0.527l0.514,0.65l-0.433,0.608l0.351,1.159
l0.842,0.609l0.859,1.18l0.082,1.1l-0.349,0.689l1.866,2.624l0.369,0.184v0.406l1.105,0.467l0.738-0.121l0.718,0.731l-0.145,0.427
l-1.09-0.122l-1.479,1.424l0.453,0.528l-0.207,0.997l0.575,0.345l0.164,0.428l0.882,0.834l-0.269,0.405l-0.966,0.347l-0.409-0.163
l-0.449,0.203l-1.457-0.955l-0.452,0.203l-0.204,1.79l-1.026,0.833l-0.595-0.306l0.063-0.671l-0.655-0.671l0.286-1.2l0.432-0.226
l0.246-1.097l1.354,0.345c0,0,0.021-0.427,0.021-0.509c0-0.081,0.246-0.427,0.246-0.427l0.145-0.346h-1.58l0.146-0.915
l-0.697-0.874l0.187-0.915l-0.187-0.226l-1.146,0.712h-0.327l-0.269-1.361l-0.818-1.078l-0.68-0.549l-0.227-0.365l0.123-0.387
l0.368-0.041l1.212,0.427l0.678,0.103l0.942-0.469l0.31-0.936l-0.842-0.996l-0.555-0.671l-0.247-0.267l0.063-0.265l0.268-0.041
l-0.083-0.854c0,0-0.655-0.486-0.82-0.486s-1.045-0.041-1.045-0.041l-0.698-0.366l-0.389-0.771l-0.68-1.019l-0.474-0.874
l-0.533-1.036l-0.818-0.346l-1.066-0.348c0,0-0.45-0.224-0.677-0.305c-0.229-0.082-1.148-1.18-1.148-1.18l-0.841-0.752
l-0.677-0.731l-0.556-0.629l-0.555-0.529l-0.205-0.486v-0.407l-0.654-0.283l-0.573,0.527l-0.533,0.266l-0.696-0.447l-0.327-0.346
l0.082-0.631l-0.311-0.896l-0.737-0.325l0.206-0.203h0.533l0.286-0.225l1.416,0.104l0.451-0.122l-0.124-1.018
c0,0,0.474,0.021,0.555,0.021c0.082,0,1.252,0.244,1.252,0.244s0.613,0.488,0.636,0.568c0.021,0.081,0.227,0.365,0.247,0.446
c0.021,0.082,1.087,0.833,1.087,0.833l0.27,0.589l1.063,0.145l0.779,0.122l0.451-0.122c0,0,1.396,0.346,1.396,0.446
c0,0.102,0.123,0.082,0,0.267c-0.123,0.183-1.188,0.487-1.271,0.548c-0.083,0.063-0.392,0.224-0.492,0.185
c-0.104-0.041-0.616-0.161-0.616-0.161l0.269,0.854l0.819,0.771l1.006,0.021l0.965,0.081l1.188,0.063c0,0,0.737,0.306,0.84,0.347
c0.104,0.041,0.943,0.347,1.107,0.447s0.801,0.081,0.801,0.081s0.041-0.59,0.063-0.672c0.021-0.081,0.227-1.018,0.227-1.018
l0.229-0.508l0.186-0.104l-0.042-0.833l0.719-0.225l0.638,0.204l0.203,0.567l1.354-0.283l1.026-0.915l0.595-0.569l-0.123-0.609
l-0.779-1.179l-0.595-0.528l-0.556-0.896l-1.006-1.361l-1.254-0.834l-0.8-0.567l-0.594-0.65l-0.556-0.082l-0.983-0.833
l-1.889-1.443l-1.742-0.977l-1.191-0.956l-0.286-0.548l0.021-0.752l-0.821-0.689l-1.251,0.104l-0.84-0.407l-0.945,0.407
l-0.965,0.062l-0.39-0.285l-0.84,0.021c0,0-0.311-0.163-0.269-0.264c0.042-0.104,0.679-1.1,0.679-1.1l-0.885-0.874l-0.859-0.834
c0,0-0.598-0.813-0.654-0.896c-0.063-0.082-0.637-0.651-0.637-0.651l0.021-0.527l-1.333-0.324l-0.841-0.65l-1.087-1.018
l-0.984-1.036l-0.124-0.833l-0.247-1.077c0,0-0.409-0.712-0.45-0.937s-0.571-1.342-0.571-1.342l-0.801-0.915l-0.533-0.854
l0.431-0.041l0.451,0.324c0,0,0.226-0.202,0.123-0.324c-0.104-0.123-0.902-0.671-0.902-0.671l0.021,0.324h-0.532
c0,0-0.492-0.364-0.492-0.445c0-0.082,0-0.956,0-0.956l-0.982-1.32l-0.41-0.69l0.328-0.833l-0.411-0.813l-0.311-0.712
l-1.327-2.922l-2.559-3.492c0,0-2.009-3.388-2.147-5.198c-0.143-1.812-2.065-4.225-2.065-4.225s6.114-0.348,6.299,0.001
l2.663,5.224l0.774,5.122l2.418,4.063l1.332,1.79l-0.514,0.224l-1.476-0.731l-0.739-0.041l0.146,0.813
c0,0,0.474,0.792,0.531,0.873c0.063,0.082,1.048,0.793,1.048,0.793l-0.492,0.631l0.228,0.752l-0.205,0.608l0.165,0.589
l0.819,0.875l1.375,1.281l1.416,1.36l1.661,0.896l1.005,0.568l1.538,0.121l0.491,1.019l-0.042,0.854l1.415,1.83l-0.042,0.955
l0.286,0.527l-0.35,0.225l1.438,1.423l1.825,0.489l1.661-0.285l2.03-1.018l1.438,0.752l-0.269,0.347l-0.434,0.591l-0.187,0.102
c0,0,0.493,0.609,0.287,0.609c-0.205,0-2.029,0.224-2.029,0.224l0.286,0.772l1.251,0.346l-0.841,1.688l0.41,0.771l2.439,1.545
l0.678,0.688l1.456,0.793l1.292,1.14l1.229,0.896l1.972,1.017l2.135,0.794l1.045,1.441l1.354,0.469l0.532,0.487l1.417,0.386
l1.414-0.122l0.738,0.284l0.8-0.284l0.818,0.243l0.409-1.117l1.09-0.487l0.531-0.225l0.515,0.631l1.456,0.589
c0,0,1.229,0.243,1.313,0.243s1.375-0.347,1.375-0.347l0.778-0.589l0.882,0.082l0.637-0.649l-0.759-0.488l0.902-1.059l0.268-0.63
l-1.169-2.154l-0.104-0.936l-0.351-0.875l0.82,0.021l0.45,0.813l0.655,0.102l0.392-0.161l0.555-2.033l0.416,0.351l0.229,0.298
l0.354-0.021l0.032-0.89l-0.201-0.95l-0.771,0.503l-0.596-0.244l-0.042-0.386l-0.696-0.528l-0.204-0.548l0.245-0.712l1.332-0.407
l1.109-0.427l1.414,1.059v-0.671l0.229-0.325l-0.556-0.69l0.923-0.73l0.31-0.388l0.72-0.243l-0.434-0.589l0.165-0.508l0.449-0.082
l0.123-0.752l-0.694-0.813l0.186-0.528l0.228-0.567l0.695-0.245l1.229,0.204l0.616-0.225l0.307-0.163l0.082-0.283l1.025,0.526
l0.697,0.163l0.123-0.834l-0.68-0.711l-1.022,0.447l-0.759-0.487l0.083-0.324l-0.493-0.631l0.123-1.099l0.328-0.771l0.695-0.324
l1.045,0.365l0.351-0.265l-0.515-1.199l-0.267-0.445l-0.269-0.55l-0.146-1.076l-0.616-0.388l-0.205-0.526l-0.653-0.347
l0.041-0.689l-0.312-0.55l0.435-0.468l-0.392-0.509L479.587,215l-0.799,0.63l-0.31,0.447l-0.719,0.081l-0.514-0.203l0.123-0.467
l0.452-0.508l0.554-0.366l0.717-0.325l0.657-0.244l0.205-0.568c0,0-0.165-0.364-0.205-0.446c-0.041-0.082-0.524-5.377-0.524-5.377
l-2.588-4.962l-0.127-1.709l-2.424-3.843l6.286,6.813l2.102-2.917l2.021-0.5c0,0,1.514-2,1.514-5s3.532-2,3.532-2s0.505-2-0.504-6
c-1.011-4-1.516-6-1.516-7.5s3.53-2,7.566-2.5s4.541,0,6.057-1s0-11,0-11l3.529,2.5c0,0,1.011,0.5,7.063,4
c6.055,3.5-1.518,2-3.027,2.5s-0.504,4-1.009,8s3.024,5.5,3.024,5.5s0.505-0.5,1.517-4c1.009-3.5,3.529-1.5,5.55-1.5
c2.018,0,1.514,4,1.514,5.5s-2.019,5-2.019,5l-3.531,5c0,0-0.44,4.813-0.253,5.438c0.188,0.625,0.884,1.188,1.262,1.688
s1.072,1.625,1.265,1.813c0.188,0.188,1.262,0.938,1.573,1.25c0.316,0.313,1.392,0.75,1.704,1c0.315,0.25-0.188,1.75-0.188,1.75