-
Notifications
You must be signed in to change notification settings - Fork 0
/
navavilenskaya-vozera.omap
1171 lines (1167 loc) · 466 KB
/
navavilenskaya-vozera.omap
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
<?xml version="1.0" encoding="UTF-8"?>
<map xmlns="http://openorienteering.org/apps/mapper/xml/v2" version="9">
<notes></notes>
<georeferencing scale="4000" grid_scale_factor="0.999615" auxiliary_scale_factor="1" declination="8.32" grivation="7.89"><projected_crs id="UTM"><spec language="PROJ.4">+proj=utm +datum=WGS84 +zone=35</spec><parameter>35 N</parameter><ref_point x="535125.977538" y="5976088.553924"/></projected_crs><geographic_crs id="Geographic coordinates"><spec language="PROJ.4">+proj=latlong +datum=WGS84</spec><ref_point_deg lat="53.932" lon="27.535"/></geographic_crs></georeferencing>
<colors count="34">
<color priority="0" name="Purple" c="0.35" m="0.85" y="0" k="0" opacity="1"><spotcolors><namedcolor>PURPLE</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="0.65" g="0.15" b="1"/></color>
<color priority="1" name="Purple 40%" c="0.28" m="0.68" y="0" k="0" opacity="0.5"><spotcolors><component factor="0.8" spotcolor="0"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.72" g="0.32" b="1"/></color>
<color priority="2" name="Purple for course overprint" c="0.35" m="0.85" y="0" k="0" opacity="1"><spotcolors knockout="true"><namedcolor>PURPLE</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="0.65" g="0.15" b="1"/></color>
<color priority="3" name="White for course overprint" c="0" m="0" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0" spotcolor="4"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="1" g="1" b="1"/></color>
<color priority="4" name="Black 100%" c="0" m="0" y="0" k="1" opacity="1"><spotcolors><namedcolor>BLACK</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="0" g="0" b="0"/></color>
<color priority="5" name="Green 100%" c="0.76" m="0" y="0.91" k="0" opacity="1"><spotcolors><namedcolor>GREEN</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="0.24" g="1" b="0.09"/></color>
<color priority="6" name="White for railway" c="0" m="0" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0" spotcolor="4"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="1" g="1" b="1"/></color>
<color priority="7" name="Purple for track symbols" c="0.35" m="0.85" y="0" k="0" opacity="1"><spotcolors><component factor="1" spotcolor="2"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.65" g="0.15" b="1"/></color>
<color priority="8" name="Purple 50%" c="0.175" m="0.425" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.5" spotcolor="2"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.825" g="0.575" b="1"/></color>
<color priority="9" name="Blue 100%" c="1" m="0" y="0" k="0" opacity="1"><spotcolors><namedcolor>BLUE</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="0" g="1" b="1"/></color>
<color priority="10" name="Brown 100%" c="0" m="0.56" y="1" k="0.18" opacity="1"><spotcolors><namedcolor>BROWN</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="0.82" g="0.361" b="0"/></color>
<color priority="11" name="Black 60%" c="0" m="0" y="0" k="0.6" opacity="1"><spotcolors knockout="true"><component factor="0.6" spotcolor="4"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.4" g="0.4" b="0.4"/></color>
<color priority="12" name="Black 50%" c="0" m="0" y="0" k="0.5" opacity="1"><spotcolors knockout="true"><component factor="0.5" spotcolor="4"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.5" g="0.5" b="0.5"/></color>
<color priority="13" name="Black 20%" c="0" m="0" y="0" k="0.2" opacity="1"><spotcolors knockout="true"><component factor="0.2" spotcolor="4"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.8" g="0.8" b="0.8"/></color>
<color priority="14" name="White over light brown" c="0" m="0" y="0" k="0" opacity="1"><spotcolors><component factor="0" spotcolor="10"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="1" g="1" b="1"/></color>
<color priority="15" name="Lower brown 50%" c="0" m="0.28" y="0.5" k="0.09" opacity="1"><spotcolors knockout="true"><component factor="0.5" spotcolor="10"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.91" g="0.68" b="0.5"/></color>
<color priority="16" name="Lower brown 30%" c="0" m="0.168" y="0.3" k="0.054" opacity="1"><spotcolors knockout="true"><component factor="0.3" spotcolor="10"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.946" g="0.808" b="0.7"/></color>
<color priority="17" name="Black below lower light brown" c="0" m="0" y="0" k="1" opacity="1"><spotcolors><component factor="1" spotcolor="4"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0" g="0" b="0"/></color>
<color priority="18" name="Blue 100% for area features" c="1" m="0" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="1" spotcolor="9"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0" g="1" b="1"/></color>
<color priority="19" name="Blue 70%" c="0.7" m="0" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.7" spotcolor="9"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.3" g="1" b="1"/></color>
<color priority="20" name="Blue 30%" c="0.3" m="0" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.3" spotcolor="9"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.7" g="1" b="1"/></color>
<color priority="21" name="OpenOrienteering Blue" c="0.5" m="0" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.5" spotcolor="9"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.5" g="1" b="1"/></color>
<color priority="22" name="OpenOrienteering Orange" c="0" m="0.474" y="0.895" k="0.09" opacity="1"><spotcolors knockout="true"><component factor="0.5" spotcolor="10"/><component factor="1" spotcolor="32"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.91" g="0.497" b="0.105"/></color>
<color priority="23" name="White over green" c="0" m="0" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0" spotcolor="5"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="1" g="1" b="1"/></color>
<color priority="24" name="Green 50%/Yellow 100%" c="0.38" m="0.27" y="0.886" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.5" spotcolor="5"/><component factor="1" spotcolor="32"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.62" g="0.73" b="0.114"/></color>
<color priority="25" name="Black 30% for bare rock" c="0" m="0" y="0" k="0.3" opacity="1"><spotcolors knockout="true"><component factor="0.3" spotcolor="4"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.7" g="0.7" b="0.7"/></color>
<color priority="26" name="Green 100% for area features" c="0.76" m="0" y="0.91" k="0" opacity="1"><spotcolors knockout="true"><component factor="1" spotcolor="5"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.24" g="1" b="0.09"/></color>
<color priority="27" name="Green 60%" c="0.456" m="0" y="0.546" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.6" spotcolor="5"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.544" g="1" b="0.454"/></color>
<color priority="28" name="Green 30%" c="0.228" m="0" y="0.273" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.3" spotcolor="5"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.772" g="1" b="0.727"/></color>
<color priority="29" name="Green 100% for undergrowth" c="0.76" m="0" y="0.91" k="0" opacity="1"><spotcolors knockout="true"><component factor="1" spotcolor="5"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0.24" g="1" b="0.09"/></color>
<color priority="30" name="White over yellow" c="0" m="0" y="0" k="0" opacity="1"><spotcolors knockout="true"><component factor="0" spotcolor="32"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="1" g="1" b="1"/></color>
<color priority="31" name="Black for open land" c="0" m="0" y="0" k="1" opacity="1"><spotcolors><component factor="1" spotcolor="4"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="0" g="0" b="0"/></color>
<color priority="32" name="Yellow 100%" c="0" m="0.27" y="0.79" k="0" opacity="1"><spotcolors knockout="true"><namedcolor>YELLOW</namedcolor></spotcolors><cmyk method="custom"/><rgb method="cmyk" r="1" g="0.73" b="0.21"/></color>
<color priority="33" name="Yellow 50%" c="0" m="0.135" y="0.395" k="0" opacity="1"><spotcolors knockout="true"><component factor="0.5" spotcolor="32"/></spotcolors><cmyk method="spotcolor"/><rgb method="spotcolor" r="1" g="0.865" b="0.605"/></color>
</colors>
<barrier version="6" required="0.6.0">
<symbols count="178" id="ISSprOM 2019">
<symbol type="2" id="0" code="101" name="Contour"><description>A line joining points of equal height.
The standard vertical interval between contours is 2 or 2.5 m. To emphasize the 3-dimensional effect of the contour line image, contour lines shall be represented as continuous lines through all symbols, also Building (521) and Canopy (522).
Slope lines may be drawn on the lower side of a contour line to clarify the direction of slope. When used, they should be placed in re-entrants.
However, contour lines shall be cut out for better legibility, if they touch the following symbols: Small earth wall (105), Small knoll (109), Small elongated knoll (110), Small depression (111), Pit or hole (112), Prominent landform feature (115), Stairway (532). The relative height difference between neighbouring features must be represented on the map as accurately as possible. Absolute height accuracy is of less importance. It is permissible to alter the height of a contour slightly if this will improve the representation of a feature. This deviation should not exceed 25% of the contour interval and attention must be paid to neighbouring features. The smallest bend in a contour is 0.4 mm from centre to centre of the line.</description><line_symbol color="10" line_width="210" minimum_length="0" join_style="2" cap_style="1" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="1" code="101.1" name="Slope line, contour"><description>Slope lines may be drawn on the lower side of a contour line to clarify the direction of slope. When used, they should be placed in re-entrants.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="10" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 0;0 -750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="2" code="102" name="Index contour"><description>Every fifth contour shall be drawn with a thicker line. This is an aid to the quick assessment of height difference and the overall shape of the terrain surface. Where an index contour coincides with an area of much detail, it may be shown with symbol Contour (101).</description><line_symbol color="10" line_width="300" minimum_length="0" join_style="2" cap_style="1" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="3" code="102.1" name="Slope line, index contour"><description>Slope lines may be drawn on the lower side of a contour line to clarify the direction of slope. When used, they should be placed in re-entrants.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="10" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 0;0 -750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="8" id="4" code="102.2" name="Contour value"><description>Contour values may be included to aid assessment of large height differences. The labels shall be orientated so that the top of the label is on the higher side of the contour. They are inserted in the index contours in positions where other detail is not obscured.</description><text_symbol icon_text="375" rotatable="true"><font family="Arial" size="2117"/><text color="10" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="2" id="5" code="103" name="Form line"><description>An intermediate contour line. Form lines are used where more information can be given about the shape of the ground. They are used only where representation is not possible with ordinary contours. Only one form line may be used between neighbouring contours.</description><line_symbol color="10" line_width="150" minimum_length="0" join_style="2" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="3000" break_length="300" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="6" code="103.1" name="Slope line, form line"><description>Slope lines may be drawn on the lower side of a contour line to clarify the direction of slope. When used, they should be placed in re-entrants.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="10" line_width="150" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 0;0 -670;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="7" code="104" name="Earth bank"><description>A steep earth bank is an abrupt change in ground level which can be clearly distinguished from its surroundings, e.g. gravel or sand pits, roads and railway cuttings or embankments.
The tags should show the full extent of the slope, but may be omitted if two banks are close together. Impassable banks shall be drawn with the symbol Impassable cliff (201). The line width of very high earth banks may be 0.37 mm.</description><line_symbol color="10" line_width="270" minimum_length="325" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="750" end_length="100" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="10" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 750;0 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="8" code="104.1" name="Earth bank, very high"><description>A steep earth bank is an abrupt change in ground level which can be clearly distinguished from its surroundings, e.g. gravel or sand pits, roads and railway cuttings or embankments.
The tags should show the full extent of the slope, but may be omitted if two banks are close together. Impassable banks shall be drawn with the symbol Impassable cliff (201). The line width of very high earth banks may be 0.37 mm.</description><line_symbol color="10" line_width="370" minimum_length="325" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="750" end_length="100" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="10" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 750;0 100;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="9" code="104.2" name="Earth bank, tag line"><description>The tags should show the full extent of the slope, but may be omitted if two banks are close together.</description><line_symbol color="10" line_width="210" minimum_length="645" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="10" code="105" name="Small earth wall"><description>A small distinct earth wall, usually man-made.
Larger earth walls should be represented with the symbols Contour (101), Form line (103) or Earth bank (104).
Minimum height: 0.5 m.
Minimum length: 1.4 mm (footprint 5,6 m).</description><line_symbol color="10" line_width="210" minimum_length="1400" join_style="2" cap_style="0" start_offset="0" end_offset="0" segment_length="3750" end_length="1875" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="300" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="11" code="107" name="Erosion gully or trench"><description>An erosion gully or trench which is too small to be represented with the symbol Earth bank (104), Contour (101), Index contour (102) or Form line (103) is represented by a single line. The end of the line is pointed. Contour lines may be broken around this symbol for better readability.
Minimum depth: 1 m.
Minimum length: 2.0 mm (footprint 8 m).</description><line_symbol color="10" line_width="370" minimum_length="2000" join_style="2" cap_style="3" pointed_cap_length="750" start_offset="750" end_offset="750" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="12" code="108" name="Small erosion gully"><description>A small erosion gully or trench.
Contour lines should be broken around this symbol.
Minimum depth: 0.5 m.
Minimum length (isolated): three dots (1.6 mm - footprint 6.4 m).</description><line_symbol color="-1" line_width="0" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="600" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="185" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol></mid_symbol></line_symbol></symbol>
<symbol type="1" id="13" code="109" name="Small knoll"><description>A small obvious mound or rocky knoll which cannot be drawn to scale with a Contour (101), Index contour (102) or Form line (103). The symbol shall not touch or overlap contours.
Minimum height: 0.5 m.
Footprint: 3 m in diameter.</description><point_symbol inner_radius="375" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="1" id="14" code="110" name="Small elongated knoll"><description>A small obvious elongated knoll which cannot be drawn to scale with a Contour (101), Index contour (102) or Form line (103). The maximum length should be 6 m and the maximum width 2 m. Knolls larger than this shall be shown by contours. The symbol shall not be drawn in free form or such that two elongated knoll symbols touch or overlap. The symbol shall not touch or overlap contours.
Minimum height: 0.5 m.
Footprint: 4.8 m x 2.4 m.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="10" min_area="0" patterns="0"/></symbol><object type="1"><coords count="13">0 -600 1;166 -600;300 -331;300 0 1;300 331;166 600;0 600 1;-166 600;-300 331;-300 0 1;-300 -331;-166 -600;0 -600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="15" code="111" name="Small depression"><description>A small shallow natural depression or hollow which cannot be represented by the symbol Contour (101) or Form line (103) is represented by a semicircle. The symbol shall not touch or overlap other brown symbols.
Minimum depth: 0.5 m.
Minimum width: 1 m.
Footprint: 4.8 m x 2.4 m.</description><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="10" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="7">475 -135 1;475 127;262 340;0 340 1;-262 340;-475 127;-475 -135;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="16" code="112" name="Pit or hole"><description>A pit or hole with distinct steep sides which cannot be represented to scale with the symbol Earth bank (104).
Minimum depth: 0.5 m.
Minimum width: 1 m.
Footprint: 4.4 m x 5.0 m.</description><point_symbol inner_radius="900" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="10" min_area="0" patterns="0"/></symbol><object type="1"><coords count="6">-546 -409;-274 -409;0 217;274 -409;546 -409;0 841;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="4" id="17" code="113" name="Broken ground"><description>An area of pits or knolls, which is too complex to be represented in detail.
The density of randomly placed dots may vary according to the detail on the ground. The dots shall not interfere with the representation of important terrain features or objects. Contours shall not be cut in broken ground areas. Dots shall not be arranged to form a single point wide line.
The minimum number of dots is three.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="2" angle="0" no_clipping="2" rotatable="true" line_spacing="1000" line_offset="0" offset_along_line="0" point_distance="1000"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="4"><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-170 -540;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-750 -620;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-140 -1030;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-580 -1150;</coords></object></element></point_symbol></symbol></pattern></area_symbol></symbol>
<symbol type="1" id="18" code="113.1" name="Broken ground, single dot"><description>An area of pits or knolls, which is too complex to be represented in detail.
The density of randomly placed dots may vary according to the detail on the ground. The dots shall not interfere with the representation of important terrain features or objects. Contours shall not be cut in broken ground areas. Dots shall not be arranged to form a single point wide line.
The minimum number of dots is three.</description><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="4" id="19" code="113.2" name="Broken ground, dense"><description>An area of pits or knolls, which is too complex to be represented in detail.
The density of randomly placed dots may vary according to the detail on the ground. The dots shall not interfere with the representation of important terrain features or objects. Contours shall not be cut in broken ground areas. Dots shall not be arranged to form a single point wide line.
The minimum number of dots is three.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="2" angle="0" no_clipping="2" rotatable="true" line_spacing="1000" line_offset="0" offset_along_line="0" point_distance="1000"><symbol type="1" code="" name="Pattern fill 1"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="9"><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-120 -100;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-480 -160;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-360 210;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">320 -360;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-300 -380;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">0 260;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">190 -20;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">30 -470;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">330 300;</coords></object></element></point_symbol></symbol></pattern></area_symbol></symbol>
<symbol type="1" id="20" code="113.6" name="Broken ground, single dot, enlarged"><description>An area of pits or knolls, which is too complex to be represented in detail.
The density of randomly placed dots may vary according to the detail on the ground. The dots shall not interfere with the representation of important terrain features or objects. Contours shall not be cut in broken ground areas. Dots shall not be arranged to form a single point wide line.
The minimum number of dots is three.</description><point_symbol inner_radius="150" inner_color="10" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="1" id="21" code="115" name="Prominent landform feature"><description>A small landform feature which is significant or prominent.
The symbol shall not touch or overlap contour lines or other brown symbols.
The definition of the symbol must be given on the map.
Footprint: 5.4 m x 4.6 m.</description><point_symbol inner_radius="2000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="10" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="8000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="8000" break_length="2000" dashes_in_group="1" in_group_break_length="1000" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="4">-373 215;373 215 32;0 -431 32;-373 215 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="22" code="201" name="Impassable cliff"><description>An impassable cliff, quarry or earth bank (see symbol Earth bank 104).
Tags are drawn downwards, showing its full extent from the top line to the foot. For vertical rock faces the tags may be omitted if space is short, e.g. narrow passages between cliffs (the passage should be drawn with a width of at least 0.4 mm). The tags may extend over an area symbol representing detail immediately below the rock face. When a rock face drops straight into water, making it impossible to pass under the cliff along the water’s edge, the bank line is omitted or the tags shall clearly extend over the bank line. An impassable cliff should interplay with the contour lines. An impassable cliff shall not be passed.
Minimum height: 1.5 m.
Minimum length: 0.9 mm (footprint 3.6 m).</description><line_symbol color="4" line_width="500" minimum_length="900" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="750" end_length="180" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 100;0 750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="1" id="23" code="201.1" name="Impassable cliff, minimum size"><description>An impassable cliff, quarry or earth bank (see symbol Earth bank 104).
Tags are drawn downwards, showing its full extent from the top line to the foot. For vertical rock faces the tags may be omitted if space is short, e.g. narrow passages between cliffs (the passage should be drawn with a width of at least 0.4 mm). The tags may extend over an area symbol representing detail immediately below the rock face. When a rock face drops straight into water, making it impossible to pass under the cliff along the water’s edge, the bank line is omitted or the tags shall clearly extend over the bank line. An impassable cliff should interplay with the contour lines. An impassable cliff shall not be passed.
Minimum height: 1.5 m.
Minimum length: 0.9 mm (footprint 3.6 m).</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="3"><element><symbol type="2" code=""><line_symbol color="4" line_width="500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 0;450 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">270 0;270 -750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-270 0;-270 -750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="24" code="201.3" name="Impassable cliff, top line"><description>An impassable cliff, quarry or earth bank (see symbol Earth bank 104).
Tags are drawn downwards, showing its full extent from the top line to the foot. For vertical rock faces the tags may be omitted if space is short, e.g. narrow passages between cliffs (the passage should be drawn with a width of at least 0.4 mm). The tags may extend over an area symbol representing detail immediately below the rock face. When a rock face drops straight into water, making it impossible to pass under the cliff along the water’s edge, the bank line is omitted or the tags shall clearly extend over the bank line. An impassable cliff should interplay with the contour lines. An impassable cliff shall not be passed.
Minimum height: 1.5 m.
Minimum length: 0.9 mm (footprint 3.6 m).</description><line_symbol color="4" line_width="500" minimum_length="900" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="25" code="201.4" name="Impassable cliff, tag line"><description>Tags are drawn downwards, showing a cliff's full extent from the top line to the foot. The tags may extend over an area symbol representing detail immediately below the rock face. When a rock face drops straight into water, making it impossible to pass under the cliff along the water’s edge, the bank line is omitted or the tags shall clearly extend over the bank line.</description><line_symbol color="4" line_width="180" minimum_length="750" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="26" code="202" name="Passable rock face, small (rounded ends, no tags)"><description>A passable cliff or quarry.
A small vertical rock face may be shown without tags if the direction of fall of the rock face is apparent from the contours. For passable rock faces shown without tags the end of the line must be rounded to improve legibility.
Minimum height: 0.6 m.
Minimum length: 0.9 mm (footprint 3.6 m).</description><line_symbol color="4" line_width="250" minimum_length="900" join_style="1" cap_style="1" start_offset="120" end_offset="120" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="27" code="202.1" name="Passable rock face"><description>A passable cliff or quarry.
A small vertical rock face may be shown without tags. If the direction of fall of the rock face is not apparent from the contours, or to improve legibility, short tags should be drawn in the direction of the fall. For non-vertical cliffs, the tags should be drawn to show the full horizontal extent. For passable rock faces shown without tags the end of the line must be rounded to improve legibility.
Minimum height: 0.6 m.
Minimum length: 0.9 mm (footprint 3.6 m).</description><line_symbol color="4" line_width="250" minimum_length="900" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="750" end_length="180" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 50;0 750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="1" id="28" code="202.2" name="Passable rock face, minimum size"><description>A passable cliff or quarry.
A small vertical rock face may be shown without tags. If the direction of fall of the rock face is not apparent from the contours, or to improve legibility, short tags should be drawn in the direction of the fall. For non-vertical cliffs, the tags should be drawn to show the full horizontal extent. For passable rock faces shown without tags the end of the line must be rounded to improve legibility.
Minimum height: 0.6 m.
Minimum length: 0.9 mm (footprint 3.6 m).</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="3"><element><symbol type="2" code=""><line_symbol color="4" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 0;450 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">270 0;270 -750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-270 0;-270 -750;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="29" code="202.3" name="Passable rock face, top line (flat ends)"><description>A passable cliff or quarry.
Short tags must be drawn in the direction of the fall. For non-vertical cliffs, the tags should be drawn to show the full horizontal extent.
Minimum height: 0.6 m.
Minimum length: 0.9 mm (footprint 3.6 m).</description><line_symbol color="4" line_width="250" minimum_length="900" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="30" code="202.4" name="Passable rock face, tag line"><description>If the direction of fall of the rock face is not apparent from the contours, or to improve legibility, short tags should be drawn in the direction of the fall. For non-vertical cliffs, the tags should be drawn to show the full horizontal extent.</description><line_symbol color="4" line_width="180" minimum_length="750" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="31" code="203" name="Rocky pit or cave (without a distinct entrance)"><description>A rocky pit, hole, cave (without a distinct entrance) or mineshaft which may constitute a danger to the competitor.
Location is the centre of gravity of the symbol.
Minimum depth: 0.5 m.
Footprint: 4.4 m x 5.0 m.</description><point_symbol inner_radius="900" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="6">-546 -409;-274 -409;0 217;274 -409;546 -409;0 841;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="32" code="203.1" name="Cave (with a distinct entrance)"><description>A cave with distinct entrance which may constitute a danger to the competitor.
Location is the centre of gravity of the symbol, and the symbol should point into the cave.
Minimum depth: 0.5 m.
Footprint: 4.4 m x 5.0 m.</description><point_symbol rotatable="true" inner_radius="900" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="6">-546 409;-274 409;0 -217;274 409;546 409;0 -841;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="33" code="204" name="Boulder"><description>A small distinct boulder.
Every boulder marked on the map shall be immediately identifiable on the ground.
Footprint: 2.4 m in diameter.</description><point_symbol inner_radius="300" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="1" id="34" code="205" name="Large boulder"><description>A particularly large and distinct boulder.
Footprint: 3.6 m in diameter.</description><point_symbol inner_radius="450" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="4" id="35" code="206" name="Gigantic boulder or rock pillar"><description>A gigantic boulder, rock pillar or massive cliff shall be represented in plan shape. The objects can vary in shape and width.
The gap between gigantic boulders or between gigantic boulders and other impassable feature symbols must exceed 0.15 mm on the map.
Minimum width: 0.3 mm.
Minimum area: 0.75 mm2 (footprint 12 m²)</description><area_symbol inner_color="4" min_area="800" patterns="0"/></symbol>
<symbol type="1" id="36" code="207" name="Boulder cluster"><description>A distinct group of boulders so closely clustered together that they cannot be marked individually.
The boulders in the cluster should be higher than 0.5 m. A boulder cluster must be easily identifiable as a group of boulders. To be able to show the distinction between neighbouring (maximum 8 m apart) boulder clusters with significant difference in boulder size, it is permitted to enlarge this symbol by 20% (edge length 1.44 mm) for some of the boulder clusters.
Footprint: 4.8 m x 4.0 m</description><point_symbol inner_radius="1500" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="4">-600 346;600 346;0 -693;-600 346 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="37" code="207.1" name="Boulder cluster, large"><description>A distinct group of boulders so closely clustered together that they cannot be marked individually.
The boulders in the cluster should be higher than 0.5 m. A boulder cluster must be easily identifiable as a group of boulders. To be able to show the distinction between neighbouring (maximum 8 m apart) boulder clusters with significant difference in boulder size, it is permitted to enlarge this symbol by 20% (edge length 1.44 mm) for some of the boulder clusters.
Footprint: 4.8 m x 4.0 m</description><point_symbol inner_radius="1800" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="4">-720 415;720 415;0 -832;-720 415 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="4" id="38" code="208" name="Boulder field"><description>An area which is covered with so many scattered blocks of stone that they cannot be marked individually is represented with randomly placed and orientated solid triangles. The runnability is reduced and is indicated by the density of the triangles.
A minimum of two triangles shall be used.
To be able to show obvious height differences within a boulder field, it is permitted to enlarge some of the triangles to 120%.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="2" angle="0" no_clipping="2" rotatable="true" line_spacing="3996" line_offset="0" offset_along_line="0" point_distance="3600"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="1200" inner_color="-1" outer_width="0" outer_color="-1" elements="9"><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">-936 -1692;-372 -1476 32;-792 -2340;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">1692 -852;1068 -864 32;1752 -192;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">876 924;288 1080 32;1128 1548;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">312 -1572;588 -1008 32;876 -1944;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">1716 -1476;2160 -1032 32;2136 -2004;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">-828 -300;-600 -876 32;-1488 -468;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">-756 660;-228 1008 32;-456 60;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">384 -228;828 216 32;804 -756;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">1428 756;1764 1284 32;1944 324;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></pattern></area_symbol></symbol>
<symbol type="1" id="39" code="208.1" name="Boulder field, single triangle"><description>An area which is covered with so many scattered blocks of stone that they cannot be marked individually is represented with randomly placed and orientated solid triangles. The runnability is reduced and is indicated by the density of the triangles.
A minimum of two triangles shall be used.
To be able to show obvious height differences within a boulder field, it is permitted to enlarge some of the triangles to 120%.</description><point_symbol rotatable="true" inner_radius="768" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="4">150 452;150 -508;-299 55;150 452 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="40" code="208.2" name="Boulder field, single triangle, enlarged"><description>An area which is covered with so many scattered blocks of stone that they cannot be marked individually is represented with randomly placed and orientated solid triangles. The runnability is reduced and is indicated by the density of the triangles.
A minimum of two triangles shall be used.
To be able to show obvious height differences within a boulder field, it is permitted to enlarge some of the triangles to 120%.</description><point_symbol rotatable="true" inner_radius="922" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="4">180 542;180 -610;-359 66;180 542 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="4" id="41" code="208.5" name="Dense boulder field"><description>An area which is covered with so many scattered blocks of stone that they cannot be marked individually is represented with randomly placed and orientated solid triangles. The runnability is reduced and is indicated by the density of the triangles.
A minimum of two triangles shall be used.
To be able to show obvious height differences within a boulder field, it is permitted to enlarge some of the triangles to 120%.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="2" angle="0" no_clipping="2" rotatable="true" line_spacing="2400" line_offset="0" offset_along_line="0" point_distance="2400"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="1200" inner_color="-1" outer_width="0" outer_color="-1" elements="10"><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">-648 36;-384 588 32;-72 -324;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">852 972;780 360 32;192 1116;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">768 -1260;552 -696 32;1428 -1104;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">-48 -828;216 -276 32;528 -1188;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">-624 792;-768 192 32;-1248 1032;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">-324 792;-60 1344 32;252 432;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">-180 -1032;-732 -1296 32;-384 -396;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">1236 -156;696 -456 32;960 468;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">96 -132;-204 408 32;720 120;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="3">-588 -492;-1092 -852 32;-924 96;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="42" code="210" name="Stony ground"><description>An area of stony or rocky ground which reduces runnability.
The dots shall be randomly distributed with density according to the amount of rock but not interfere with the representation of important terrain features or objects. A minimum of three dots shall be used. To avoid confusion with symbol Distinct vegetation boundary (416), the dots shall not be arranged to form a line.
Density: Minimum 3 dots.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="2" angle="0" no_clipping="2" rotatable="true" line_spacing="1000" line_offset="0" offset_along_line="0" point_distance="1000"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="7"><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-380 -70;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">350 450;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-140 -310;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">190 140;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-40 340;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-380 300;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">260 -190;</coords></object></element></point_symbol></symbol></pattern></area_symbol></symbol>
<symbol type="1" id="43" code="210.1" name="Stony ground, single dot"><description>An area of stony or rocky ground which reduces runnability.
The dots shall be randomly distributed with density according to the amount of rock but not interfere with the representation of important terrain features or objects. A minimum of three dots shall be used. To avoid confusion with symbol Distinct vegetation boundary (416), the dots shall not be arranged to form a line.
Density: Minimum 3 dots.</description><point_symbol inner_radius="100" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="4" id="44" code="210.2" name="Stony ground, enlarged"><description>An area of stony or rocky ground which reduces runnability.
The dots shall be randomly distributed with density according to the amount of rock but not interfere with the representation of important terrain features or objects. A minimum of three dots shall be used. To avoid confusion with symbol Distinct vegetation boundary (416), the dots shall not be arranged to form a line.
Density: Minimum 3 dots.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="2" angle="0" no_clipping="2" rotatable="true" line_spacing="1000" line_offset="0" offset_along_line="0" point_distance="2000"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="7"><element><symbol type="1" code=""><point_symbol inner_radius="125" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-330 -180;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="125" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">200 -380;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="125" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-220 330;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="125" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">330 100;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="125" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-740 -360;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="125" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-960 240;</coords></object></element><element><symbol type="1" code=""><point_symbol inner_radius="125" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">-1300 -350;</coords></object></element></point_symbol></symbol></pattern></area_symbol></symbol>
<symbol type="1" id="45" code="210.3" name="Stony ground, single dot, enlarged"><description>An area of stony or rocky ground which reduces runnability.
The dots shall be randomly distributed with density according to the amount of rock but not interfere with the representation of important terrain features or objects. A minimum of three dots shall be used. To avoid confusion with symbol Distinct vegetation boundary (416), the dots shall not be arranged to form a line.
Density: Minimum 3 dots.</description><point_symbol inner_radius="125" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol>
<symbol type="4" id="46" code="213" name="Open sandy ground"><description>An area of sandy ground or soft gravel with no vegetation which reduces runnability.
Where an area of sandy ground is open and has good runnability, it is represented with symbol Open land (401), Open land with scattered trees (402) or Paved area (501).
Black dots shall not interfere with black objects.
Minimum width: 0.3 mm
Minimum area: 1 mm² (footprint 16 m²).</description><area_symbol inner_color="33" min_area="1000" patterns="1"><pattern type="2" angle="0.785398" line_spacing="500" line_offset="0" offset_along_line="0" point_distance="500"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="90" inner_color="31" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="47" code="214" name="Bare rock"><description>An area of runnable rock without earth or vegetation.
An area of rock covered with grass, moss or other low vegetation shall be represented according to its openness and runnability (401/402/403/404).
Minimum width: 0.25 mm
Minimum area: 1 mm² (footprint 16 m²).</description><area_symbol inner_color="25" min_area="1000" patterns="0"/></symbol>
<symbol type="16" id="48" code="301" name="Uncrossable body of water (full colour)"><description>An area of deep water such as a lake, pond, river or fountain. The dark blue colour and the bordering black line indicate that the feature shall not be crossed.
Dominant areas of water may be shown with 70% colour.
Minimum width: 0.3 mm
Minimum area (inside): 0.5 mm² (footprint 8 m²)</description><combined_symbol parts="2"><part symbol="49"/><part symbol="52"/></combined_symbol>
<icon src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAUUlEQVQ4jWNgYGbexMDA8J+qmJl5EyOUw8AQHM5AFbB2JQMDAwMDC9zQ+SuoYzDUcCbqmYYKRg0eNXjU4FGDRw0eHAZDahBodUIVADeLRpUpAOkUM9bNALKgAAAAAElFTkSuQmCC"/></symbol>
<symbol type="4" id="49" code="301.1" name="Uncrossable body of water (full colour), fill"><description>An area of deep water such as a lake, pond, river or fountain. The dark blue colour and the bordering black line indicate that the feature shall not be crossed.
Dominant areas of water may be shown with 70% colour.
Minimum width: 0.3 mm
Minimum area (inside): 0.5 mm² (footprint 8 m²)</description><area_symbol inner_color="18" min_area="1000" patterns="0"/>
<icon src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAIAAABL1vtsAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAH0lEQVQ4jWNk+PSfgTLARKH+USNGjRg1YtSIUSPIAgCt1AIdbYPnGQAAAABJRU5ErkJggg=="/></symbol>
<symbol type="16" id="50" code="301.2" name="Uncrossable body of water (dominant)"><description>An area of deep water such as a lake, pond, river or fountain. The dark blue colour and the bordering black line indicate that the feature shall not be crossed.
Dominant areas of water may be shown with 70% colour.
Minimum width: 0.3 mm
Minimum area (inside): 0.5 mm² (footprint 8 m²)</description><combined_symbol parts="2"><part symbol="51"/><part symbol="52"/></combined_symbol>
<icon src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAVUlEQVQ4jWNgZGbexMDA8J+amJGZeRMjlMOgHRrOQA1wdfVKBgYGBgYWmKEhS1ZQxWCY4UxUMw0NjBo8avCowaMGjxo8OAxmYWBAVCfUAHCzaFWZAgD1WTfZnhO2PAAAAABJRU5ErkJggg=="/></symbol>
<symbol type="4" id="51" code="301.3" name="Uncrossable body of water (dominant), fill"><description>An area of deep water such as a lake, pond, river or fountain. The dark blue colour and the bordering black line indicate that the feature shall not be crossed.
Dominant areas of water may be shown with 70% colour.
Minimum width: 0.3 mm
Minimum area (inside): 0.5 mm² (footprint 8 m²)</description><area_symbol inner_color="19" min_area="1000" patterns="0"/>
<icon src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAIAAABL1vtsAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAH0lEQVQ4jWOs//mfgTLARKH+USNGjRg1YtSIUSPIAgCxAAKjIU52AgAAAABJRU5ErkJggg=="/></symbol>
<symbol type="2" id="52" code="301.6" name="Uncrossable body of water, bank line"><description>The bordering black line indicates that the feature shall not be crossed.</description><line_symbol color="4" line_width="180" minimum_length="0" join_style="0" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="16" id="53" code="302" name="Crossable body of water"><description>An area of shallow water such as a pond, river or fountain that can be crossed. The body of water should be less than 0.5 m deep and runnable.
If the body of water is not runnable it shall be represented with the symbol Uncrossable body of water (301). If no other line symbol touches the border of the passable body of water, the border shall be represented with a blue line.
Minimum width: 0.3 mm
Minimum area (inside): 0.5 mm² (footprint 8 m²)</description><combined_symbol parts="2"><part symbol="55"/><part symbol="54"/></combined_symbol>
<icon src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAATklEQVQ4jWMU/PL/3Pf/DOoMVATcDAw3GTk+//+6nZOBi5oGe3xj+MFETQORwajBowaPGjxq8KjBowaTBxiFv/w/9+UfgyY1DeVhZLgGAAAKEb4RXJ9FAAAAAElFTkSuQmCC"/></symbol>
<symbol type="4" id="54" code="302.1" name="Crossable body of water, fill"><description>An area of shallow water such as a pond, river or fountain that can be crossed. The body of water should be less than 0.5 m deep and runnable.
If the body of water is not runnable it shall be represented with the symbol Uncrossable body of water (301). If no other line symbol touches the border of the passable body of water, the border shall be represented with a blue line.
Minimum width: 0.3 mm
Minimum area (inside): 0.5 mm² (footprint 8 m²)</description><area_symbol inner_color="20" min_area="500" patterns="0"/>
<icon src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAIAAABL1vtsAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAH0lEQVQ4jWPc/+c/A2WAiUL9o0aMGjFqxKgRo0aQBQAyngLmdBowpwAAAABJRU5ErkJggg=="/></symbol>
<symbol type="2" id="55" code="302.6" name="Crossable body of water, border line"><description>If no other line symbol touches the border of the passable body of water, the border shall be represented with a blue line.</description><line_symbol color="18" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1250" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="56" code="303" name="Waterhole"><description>A water-filled pit or an area of water which is too small to be shown to scale.
Location is the centre of gravity of the symbol.
Footprint: 4.4 m x 5.0 m.</description><point_symbol inner_radius="900" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="9" min_area="0" patterns="0"/></symbol><object type="1"><coords count="6">-546 -409;-274 -409;0 217;274 -409;546 -409;0 841;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="57" code="305" name=" Small crossable watercourse"><description>A crossable watercourse less than 2 m wide.
Minimum length: 1 mm (footprint 4 m)</description><line_symbol color="9" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="58" code="306" name=" Minor / seasonal watercourse"><description>A natural or man-made minor watercourse which may contain water only intermittently.
Minimum length (isolated): two dashes (4.11 mm - footprint 16.5 m)</description><line_symbol color="9" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1870" break_length="370" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="16" id="59" code="307" name="Uncrossable marsh"><description>A marsh which is uncrossable or which may constitute a danger to the competitor. The feature shall not be crossed.
At least two blue lines shall be clearly visible.
Minimum width: 2 lines.</description><combined_symbol parts="2"><part symbol="60"/><part symbol="61"/></combined_symbol></symbol>
<symbol type="4" id="60" code="307.1" name="Uncrossable marsh, fill"><description>A marsh which is uncrossable or which may constitute a danger to the competitor. The feature shall not be crossed.
At least two blue lines shall be clearly visible.
Minimum width: 2 lines.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="0" line_spacing="500" line_offset="0" offset_along_line="0" color="18" line_width="250"/></area_symbol></symbol>
<symbol type="2" id="61" code="307.2" name="Uncrossable marsh, border line"><description>The bordering black line indicates that the feature shall not be crossed.</description><line_symbol color="4" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="62" code="308" name="Marsh"><description>A crossable marsh, usually with a distinct edge.
The symbol shall be combined with vegetation symbols to show runnability and openness.
At least two blue lines shall be clearly visible.
Minimum width: 2 lines.</description><area_symbol inner_color="-1" min_area="200" patterns="1"><pattern type="1" angle="0" line_spacing="380" line_offset="0" offset_along_line="0" color="18" line_width="120"/></area_symbol></symbol>
<symbol type="1" id="63" code="308.1" name="Marsh, minimum size"><description>A crossable marsh, usually with a distinct edge.
The symbol shall be combined with vegetation symbols to show runnability and openness.
At least two blue lines shall be clearly visible.
Minimum width: 2 lines.</description><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="18" line_width="120" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-250 190;250 190;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="18" line_width="120" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-250 -190;250 -190;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="64" code="309" name="Narrow marsh"><description>A marsh or trickle of water which is too narrow to be shown with symbol Marsh (310).
Minimum size (isolated): two dots (1 mm - footprint 4 m).</description><line_symbol color="-1" line_width="0" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="600" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="185" inner_color="9" outer_width="0" outer_color="-1" elements="0"/></symbol></mid_symbol></line_symbol></symbol>
<symbol type="4" id="65" code="310" name="Indistinct marsh"><description>An indistinct or seasonal marsh or area of gradual transition from marsh to firm ground, which is crossable. The edge is generally indistinct and the vegetation similar to that of the surrounding ground.
The symbol shall be combined with vegetation symbols to show runnability and openness.
At least three blue lines shall be clearly visible.</description><area_symbol inner_color="-1" min_area="0" patterns="2"><pattern type="2" angle="0" line_spacing="760" line_offset="0" offset_along_line="0" point_distance="1350"><symbol type="1" code="" name="Pattern fill 1"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="18" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-500 0;500 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></pattern><pattern type="2" angle="0" line_spacing="760" line_offset="380" offset_along_line="675" point_distance="1350"><symbol type="1" code="" name="Pattern fill 2"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="18" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-500 0;500 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></pattern></area_symbol></symbol>
<symbol type="1" id="66" code="310.1" name="Indistinct marsh, minimum size"><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="4"><element><symbol type="2" code=""><line_symbol color="18" line_width="120" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4800" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4800" break_length="1200" dashes_in_group="1" in_group_break_length="600" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">175 0;1175 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="18" line_width="120" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4800" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4800" break_length="1200" dashes_in_group="1" in_group_break_length="600" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-175 0;-1175 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="18" line_width="120" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4800" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4800" break_length="1200" dashes_in_group="1" in_group_break_length="600" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-500 -380;500 -380;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="18" line_width="120" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4800" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4800" break_length="1200" dashes_in_group="1" in_group_break_length="600" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-500 380;500 380;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="67" code="311" name="Small fountain or well"><description>Small fountain or well which is at least 1 m in diameter.
Minimum height: 0.5 m.
Footprint: 3.6 m x 3.6 m.</description><point_symbol inner_radius="3750" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="9" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="15000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="15000" break_length="3750" dashes_in_group="1" in_group_break_length="1875" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="5">-325 -325;325 -325 32;325 325 32;-325 325 32;-325 -325 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="68" code="312" name="Spring"><description>The source of water with a distinct outflow.
The symbol is orientated to open downstream.
Footprint: 4.8 m x 2.4 m.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="9" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="7">475 -135 1;475 127;262 340;0 340 1;-262 340;-475 127;-475 -135;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="69" code="313" name="Prominent water feature"><description>A small water feature which is significant or prominent.
The definition of the symbol must be given on the map.
Footprint: 4.8 m in diameter.</description><point_symbol inner_radius="1397" inner_color="-1" outer_width="0" outer_color="-1" elements="5"><element><symbol type="2" code=""><line_symbol color="9" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="5585" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="5585" break_length="1397" dashes_in_group="1" in_group_break_length="699" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -600;0 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="9" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="5585" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="5585" break_length="1397" dashes_in_group="1" in_group_break_length="699" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">571 -185;0 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="9" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="5585" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="5585" break_length="1397" dashes_in_group="1" in_group_break_length="699" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">353 485;0 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="9" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="5585" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="5585" break_length="1397" dashes_in_group="1" in_group_break_length="699" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-353 485;0 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="9" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="5585" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="5585" break_length="1397" dashes_in_group="1" in_group_break_length="699" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-571 -185;0 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="4" id="70" code="401" name="Open land"><description>An area of cultivated land, lawn, field, meadow, grassland, bark mulch etc. without trees, offering very good runnability.
Minimum width: 0.3 mm.
Minimum area: 0.5 mm² (footprint 8 m²).</description><area_symbol inner_color="32" min_area="500" patterns="0"/></symbol>
<symbol type="4" id="71" code="402" name="Open land with scattered trees"><description>An area of meadows with scattered trees or bushes, with grass or similar ground cover offering very good runnability.
The dots may be white (scattered trees) or green (scattered bushes / thickets). Symbols Prominent large tree (417) and Prominent bush or small tree (418) may be added.
Minimum width: 2.2 mm
Minimum area: 6.25 mm² (footprint 100 m²)
Smaller areas must be left out, exaggerated or shown using the symbol Open land (401).</description><area_symbol inner_color="32" min_area="6300" patterns="1"><pattern type="2" angle="0.785398" line_spacing="750" line_offset="0" offset_along_line="0" point_distance="750"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="300" inner_color="30" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="72" code="402.1" name="Open land with scattered trees"><description>An area of meadows with scattered trees or bushes, with grass or similar ground cover offering very good runnability.
The dots may be white (scattered trees) or green (scattered bushes / thickets). Symbols Prominent large tree (417) and Prominent bush or small tree (418) may be added.
Minimum width: 2.2 mm
Minimum area: 6.25 mm² (footprint 100 m²)
Smaller areas must be left out, exaggerated or shown using the symbol Open land (401).</description><area_symbol inner_color="32" min_area="6300" patterns="1"><pattern type="2" angle="0.785398" line_spacing="750" line_offset="0" offset_along_line="0" point_distance="750"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="300" inner_color="27" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="73" code="403" name="Rough open land"><description>An area of heath or moorland, a felled area, a newly planted area (trees lower than ca. 1 m) or other generally open land with rough ground vegetation, i.e. heather or tall grass.
This symbol may be combined with symbols Vegetation: slow running, good visibility (407) and Vegetation: walk, good visibility (409) to show reduced runnability.
Minimum area: 1 mm² (footprint 16 m²).</description><area_symbol inner_color="33" min_area="1000" patterns="0"/></symbol>
<symbol type="4" id="74" code="404" name="Rough open land with scattered trees"><description>An area of rough open land with scattered trees or bushes. The dots may be white (scattered trees) or green (scattered bushes / thickets).
Symbols Prominent large tree (417) and Prominent bush or small tree (418) may be added. Only the white dot variant can be combined with symbol Vegetation: slow running, good visibility (407) or Vegetation: walk, good visibility (409) to show reduced runnability.
Minimum width: 2.5 mm.
Minimum area: 6.25 mm² (footprint 100 m²)
Smaller areas must be left out, exaggerated or shown using either the symbol Rough open land (403) or Forest (405).</description><area_symbol inner_color="33" min_area="6300" patterns="1"><pattern type="2" angle="0.785398" line_spacing="1000" line_offset="0" offset_along_line="0" point_distance="1000"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="400" inner_color="30" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="75" code="404.1" name="Rough open land with scattered trees"><description>An area of rough open land with scattered trees or bushes. The dots may be white (scattered trees) or green (scattered bushes / thickets).
Symbols Prominent large tree (417) and Prominent bush or small tree (418) may be added. Only the white dot variant can be combined with symbol Vegetation: slow running, good visibility (407) or Vegetation: walk, good visibility (409) to show reduced runnability.
Minimum width: 2.5 mm.
Minimum area: 6.25 mm² (footprint 100 m²)
Smaller areas must be left out, exaggerated or shown using either the symbol Rough open land (403) or Forest (405).</description><area_symbol inner_color="33" min_area="6300" patterns="1"><pattern type="2" angle="0.785398" line_spacing="1000" line_offset="0" offset_along_line="0" point_distance="1000"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="400" inner_color="27" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="76" code="405" name="Forest"><description>Typical open forest for the particular type of terrain. If no part of the forest is easily runnable then no white should appear on the map.
Minimum width (for openings): 0.3 mm.
Minimum area: 1 mm² (footprint 16 m²) for openings in screens of other colours, except for Vegetation: walk (408) and Open land (401), where the minimum area is 0.5 mm² (footprint 8 m²).</description><area_symbol inner_color="23" min_area="500" patterns="0"/></symbol>
<symbol type="4" id="77" code="406" name=" Vegetation: slow running"><description>An area with dense vegetation (low visibility) which reduces running to about 60-80% of normal speed.
Minimum width: 0.4 mm.
Minimum area: 1 mm² (footprint 16 m²).</description><area_symbol inner_color="28" min_area="1000" patterns="0"/></symbol>
<symbol type="4" id="78" code="406.1" name="Vegetation: slow running, normal running in one direction"><description>An area with dense vegetation (low visibility) which reduces running to about 60-80% of normal speed.
When runnability is better in one direction a regular pattern of white stripes is left in the screen to show the direction of better running. At least two white stripes shall be clearly visible.
Minimum width: 0.4 mm.
Minimum area: 1 mm² (footprint 16 m²).</description><area_symbol inner_color="28" min_area="1000" patterns="1"><pattern type="1" angle="1.5708" rotatable="true" line_spacing="1500" line_offset="0" offset_along_line="0" color="23" line_width="400"/></area_symbol></symbol>
<symbol type="2" id="79" code="406.2" name="Vegetation: slow running, minimum width"><description>An area with dense vegetation (low visibility) which reduces running to about 60-80% of normal speed.</description><line_symbol color="28" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="80" code="407" name=" Vegetation: slow running, good visibility"><description>An area of good visibility and reduced runnability due to, for instance, undergrowth (brambles, heather, low bushes, cut branches, etc.). Running speed is reduced to about 60-80% of normal speed.
This symbol shall not be combined with the symbol Vegetation: slow running (406) or Vegetation: walk (408).
Minimum width: 2 lines.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="1.5708" line_spacing="840" line_offset="0" offset_along_line="0" color="29" line_width="120"/></area_symbol></symbol>
<symbol type="4" id="81" code="408" name=" Vegetation: walk"><description>An area with dense trees or thicket (low visibility) which reduces running to about 20-60% of normal speed.
Minimum width: 0.4 mm.
Minimum area: 0.5 mm² (footprint 8 m²).</description><area_symbol inner_color="27" min_area="500" patterns="0"/></symbol>
<symbol type="4" id="82" code="408.1" name="Vegetation: walk, normal running in one direction"><description>An area with dense trees or thicket (low visibility) which reduces running to about 20-60% of normal speed.
When runnability is better in one direction a regular pattern of white / green 30% stripes is left in the screen to show the direction of better running. At least two stripes shall be clearly visible.
Minimum width: 0.4 mm.
Minimum area: 0.5 mm² (footprint 8 m²).</description><area_symbol inner_color="27" min_area="1000" patterns="1"><pattern type="1" angle="1.5708" rotatable="true" line_spacing="1500" line_offset="0" offset_along_line="0" color="23" line_width="400"/></area_symbol></symbol>
<symbol type="4" id="83" code="408.2" name="Vegetation: walk, slow running in one direction"><description>An area with dense trees or thicket (low visibility) which reduces running to about 20-60% of normal speed.
When runnability is better in one direction a regular pattern of white / green 30% stripes is left in the screen to show the direction of better running. At least two stripes shall be clearly visible.
Minimum width: 0.4 mm.
Minimum area: 0.5 mm² (footprint 8 m²).</description><area_symbol inner_color="28" min_area="1000" patterns="1"><pattern type="1" angle="1.5708" rotatable="true" line_spacing="1500" line_offset="750" offset_along_line="0" color="27" line_width="1100"/></area_symbol></symbol>
<symbol type="2" id="84" code="408.3" name=" Vegetation: walk, minimum width"><description>An area with dense trees or thicket (low visibility) which reduces running to about 20-60% of normal speed.</description><line_symbol color="27" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="85" code="409" name="Vegetation: walk, good visibility"><description>An area of good visibility and reduced runnability due to, for instance, undergrowth (brambles, heather, low bushes, cut branches, etc.). Running speed is reduced to about 20-60% of normal speed.
This symbol shall not be combined with the symbol Vegetation: slow running (406) or Vegetation: walk (408).
Minimum width: 2 lines.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="1.5708" line_spacing="420" line_offset="0" offset_along_line="0" color="29" line_width="140"/></area_symbol></symbol>
<symbol type="4" id="86" code="410" name=" Impassable vegetation"><description>An area of dense vegetation (trees or undergrowth) which is impassable. Running speed is almost 0%.
Minimum area: 0.3 mm² (footprint 5 m²). Impassable vegetation shall not be crossed.
Minimum width: 0.4 mm.</description><area_symbol inner_color="26" min_area="300" patterns="0"/></symbol>
<symbol type="2" id="87" code="410.1" name=" Impassable vegetation, minimum width (hedge)"><description>An area of dense vegetation (trees or undergrowth) which is impassable. Running speed is almost 0%.</description><line_symbol color="5" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="16" id="88" code="412" name="Cultivated land"><description>Cultivated land, normally used for growing crops. Runnability may vary according to the type of crops grown and the time of year. Since the runnability may vary, such areas should be avoided when setting courses.
The symbol is combined with symbol Out-of-bounds area (709) to show cultivated land that shall not be entered.
Minimum width: 3 mm.
Minimum area: 9 mm² (144 m²).</description><combined_symbol parts="2"><part symbol="70"/><part symbol="89"/></combined_symbol></symbol>
<symbol type="4" id="89" code="412.1" name="Cultivated land (black pattern)"><description>Cultivated land, normally used for growing crops. Runnability may vary according to the type of crops grown and the time of year. Since the runnability may vary, such areas should be avoided when setting courses.
The symbol is combined with symbol Out-of-bounds area (709) to show cultivated land that shall not be entered.
Minimum width: 3 mm.
Minimum area: 9 mm² (144 m²).</description><area_symbol inner_color="-1" min_area="9000" patterns="1"><pattern type="2" angle="0" line_spacing="800" line_offset="0" offset_along_line="0" point_distance="800"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="100" inner_color="31" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="90" code="413" name="Orchard"><description>Land planted with fruit trees or bushes, normally in regular pattern.
The dot lines may be orientated to show the direction of planting. At least four dots shall be clearly visible. Must be combined with either symbol Open land (401) or Rough open land (403).
Minimum width: 2 mm.
Minimum area: 4 mm² (64 m²)</description><area_symbol inner_color="32" min_area="4000" patterns="1"><pattern type="2" angle="0" rotatable="true" line_spacing="1200" line_offset="0" offset_along_line="0" point_distance="1200"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="340" inner_color="26" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="91" code="413.1" name="Orchard, rough open land"><description>Land planted with fruit trees or bushes, normally in regular pattern.
The dot lines may be orientated to show the direction of planting. At least four dots shall be clearly visible. Must be combined with either symbol Open land (401) or Rough open land (403).
Minimum width: 2 mm.
Minimum area: 4 mm² (64 m²)</description><area_symbol inner_color="33" min_area="4000" patterns="1"><pattern type="2" angle="0" rotatable="true" line_spacing="1200" line_offset="0" offset_along_line="0" point_distance="1200"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="340" inner_color="26" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="92" code="414" name=" Vineyard or similar"><description>A vineyard or similar cultivated land containing dense rows of plants offering good or normal runnability in the direction of planting.
The lines shall be orientated to show the direction of planting. At least three lines shall be clearly visible. Must be combined with either symbol Open land (401) or Rough open land (403).
Minimum width: 2 mm.
Minimum area: 4 mm² (64 m²)</description><area_symbol inner_color="32" min_area="400" patterns="2"><pattern type="2" angle="1.5708" rotatable="true" line_spacing="2600" line_offset="0" offset_along_line="0" point_distance="2900"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="0" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="26" line_width="300" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -1000;0 1000;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></pattern><pattern type="2" angle="1.5708" rotatable="true" line_spacing="2600" line_offset="1300" offset_along_line="1000" point_distance="2900"><symbol type="1" code="" name="Fill pattern 2"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="26" line_width="300" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -1000;0 1000;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></pattern></area_symbol></symbol>
<symbol type="4" id="93" code="414.1" name=" Vineyard or similar, rough open land"><description>A vineyard or similar cultivated land containing dense rows of plants offering good or normal runnability in the direction of planting.
The lines shall be orientated to show the direction of planting. At least three lines shall be clearly visible. Must be combined with either symbol Open land (401) or Rough open land (403).
Minimum width: 2 mm.
Minimum area: 4 mm² (64 m²)</description><area_symbol inner_color="33" min_area="400" patterns="2"><pattern type="2" angle="1.5708" rotatable="true" line_spacing="2600" line_offset="0" offset_along_line="0" point_distance="2900"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="0" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="26" line_width="300" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -1000;0 1000;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></pattern><pattern type="2" angle="1.5708" rotatable="true" line_spacing="2600" line_offset="1300" offset_along_line="1000" point_distance="2900"><symbol type="1" code="" name="Fill pattern 2"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="26" line_width="300" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -1000;0 1000;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></pattern></area_symbol></symbol>
<symbol type="2" id="94" code="415" name="Distinct cultivation boundary"><description>A boundary of symbol cultivated land vegetation (401, 412, 413, 414) or a permanent boundary between different types of cultivated land, when not shown with other symbols (fence, wall, path, etc.)
Minimum length: 1 mm (footprint 4 m).</description><line_symbol color="4" line_width="100" minimum_length="1000" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="95" code="416" name="Distinct vegetation boundary"><description>A distinct forest edge or very distinct vegetation boundary within the forest. For indistinct boundaries, the area edges are shown only by the change in colour and / or dot screen.
Minimum length (isolated): five dots (2,65 mm - footprint 10,6 m)</description><line_symbol color="-1" line_width="0" minimum_length="220" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="600" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="2" minimum_mid_symbol_count_when_closed="5" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="125" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol></mid_symbol></line_symbol></symbol>
<symbol type="1" id="96" code="417" name="Prominent large tree"><description>A prominent large single tree.
Footprint: 4 m in diameter (OM 4.8 m).</description><point_symbol inner_radius="250" inner_color="-1" outer_width="250" outer_color="5" elements="1"><element><symbol type="1" code=""><point_symbol inner_radius="600" inner_color="23" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">0 0;</coords></object></element></point_symbol></symbol>
<symbol type="1" id="97" code="418" name="Prominent bush or small tree"><description>A prominent bush or a small single tree.
Footprint: 3.2 m in diameter.</description><point_symbol inner_radius="100" inner_color="23" outer_width="300" outer_color="5" elements="0"/></symbol>
<symbol type="1" id="98" code="419" name="Prominent vegetation feature"><description>A vegetation feature which is significant or prominent.
The definition of the symbol must be given on the map.
Footprint: 4.8 m x 4.8 m (OM 7.1 m x 7.1 m).</description><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="4"><element><symbol type="2" code=""><line_symbol color="5" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-512 -512;512 512;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="5" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-512 512;512 -512;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="23" line_width="500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-600 -600;600 600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="23" line_width="500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-600 600;600 -600;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="16" id="99" code="501" name="Paved area, light traffic, with border"><description>A paved area is an area with a firm surface such as asphalt, hard gravel, tiles, concrete or the like. It should be bordered (or framed) by the symbol Step or edge of paved area (501.1).
Distinct differences within the paved area can be represented with the symbol Step or edge of paved area (501.1), if they serve navigation. The black border line can be omitted where it is logical (e.g. indistinct / gradual gravel-to-grass transitions).
Differences in the brown colour shall be used to show differences in the traffic of vehicles or pedestrians.</description><combined_symbol parts="2"><part symbol="100"/><part private="true"><symbol type="2" code="501.1" name=" Step or edge of paved area"><description>An edge of a paved area.
Edges within paved areas are generally not represented, unless they serve navigation.</description><line_symbol color="17" line_width="200" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol></part></combined_symbol></symbol>
<symbol type="4" id="100" code="501.5" name="Paved area, light traffic"><description>A paved area is an area with a firm surface such as asphalt, hard gravel, tiles, concrete or the like. It should be bordered (or framed) by the symbol Step or edge of paved area (501.1).
Distinct differences within the paved area can be represented with the symbol Step or edge of paved area (501.1), if they serve navigation. The black border line can be omitted where it is logical (e.g. indistinct / gradual gravel-to-grass transitions).
Differences in the brown colour shall be used to show differences in the traffic of vehicles or pedestrians.</description><area_symbol inner_color="16" min_area="500" patterns="0"/></symbol>
<symbol type="4" id="101" code="501.2" name=" Paved area in multilevel structures, light traffic"><description>Part of a multilevel structure which can be passed at two levels. The angle of the pattern is approximately 45° to the direction of the axis of the paved area.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="0.785398" rotatable="true" line_spacing="600" line_offset="0" offset_along_line="0" color="16" line_width="300"/></area_symbol></symbol>
<symbol type="4" id="102" code="501.3" name="Paved area with scattered trees"><description>Area with scattered trees or bushes in a paved area.</description><area_symbol inner_color="16" min_area="6300" patterns="1"><pattern type="2" angle="0.785398" line_spacing="750" line_offset="0" offset_along_line="0" point_distance="750"><symbol type="1" code="" name="Fill pattern 1"><point_symbol rotatable="true" inner_radius="300" inner_color="14" outer_width="0" outer_color="-1" elements="0"/></symbol></pattern></area_symbol></symbol>
<symbol type="2" id="103" code="501.1" name=" Step or edge of paved area"><description>An edge of a paved area.
Edges within paved areas are generally not represented, unless they serve navigation.</description><line_symbol color="4" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="104" code="501.6" name="Paved area, light traffic, footprint: 1.4 m"><description>A paved area is an area with a firm surface such as asphalt, hard gravel, tiles, concrete or the like. It should be bordered (or framed) by the symbol Step or edge of paved area (501.1).
Distinct differences within the paved area can be represented with the symbol Step or edge of paved area (501.1), if they serve navigation. The black border line can be omitted where it is logical (e.g. indistinct / gradual gravel-to-grass transitions).
Differences in the brown colour shall be used to show differences in the traffic of vehicles or pedestrians.</description><line_symbol color="16" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="17" width="100" shift="50"/></borders></line_symbol></symbol>
<symbol type="2" id="105" code="501.7" name="Paved area, light traffic, footprint: 2 m"><description>A paved area is an area with a firm surface such as asphalt, hard gravel, tiles, concrete or the like. It should be bordered (or framed) by the symbol Step or edge of paved area (501.1).
Distinct differences within the paved area can be represented with the symbol Step or edge of paved area (501.1), if they serve navigation. The black border line can be omitted where it is logical (e.g. indistinct / gradual gravel-to-grass transitions).
Differences in the brown colour shall be used to show differences in the traffic of vehicles or pedestrians.</description><line_symbol color="16" line_width="500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="17" width="100" shift="50"/></borders></line_symbol></symbol>
<symbol type="2" id="106" code="501.8" name="Paved area, light traffic, footprint: 3 m"><description>A paved area is an area with a firm surface such as asphalt, hard gravel, tiles, concrete or the like. It should be bordered (or framed) by the symbol Step or edge of paved area (501.1).
Distinct differences within the paved area can be represented with the symbol Step or edge of paved area (501.1), if they serve navigation. The black border line can be omitted where it is logical (e.g. indistinct / gradual gravel-to-grass transitions).
Differences in the brown colour shall be used to show differences in the traffic of vehicles or pedestrians.</description><line_symbol color="16" line_width="750" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="17" width="100" shift="50"/></borders></line_symbol></symbol>
<symbol type="2" id="107" code="501.9" name="Paved area, light traffic, footprint: 4 m"><description>A paved area is an area with a firm surface such as asphalt, hard gravel, tiles, concrete or the like. It should be bordered (or framed) by the symbol Step or edge of paved area (501.1).
Distinct differences within the paved area can be represented with the symbol Step or edge of paved area (501.1), if they serve navigation. The black border line can be omitted where it is logical (e.g. indistinct / gradual gravel-to-grass transitions).
Differences in the brown colour shall be used to show differences in the traffic of vehicles or pedestrians.</description><line_symbol color="16" line_width="1000" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="17" width="100" shift="50"/></borders></line_symbol></symbol>
<symbol type="16" id="108" code="501.10" name="Paved area, heavy traffic, with border"><description>A paved area is an area with a firm surface such as asphalt, hard gravel, tiles, concrete or the like. It should be bordered (or framed) by the symbol Step or edge of paved area (501.1).
Distinct differences within the paved area can be represented with the symbol Step or edge of paved area (501.1), if they serve navigation. The black border line can be omitted where it is logical (e.g. indistinct / gradual gravel-to-grass transitions).
Differences in the brown colour shall be used to show differences in the traffic of vehicles or pedestrians.</description><combined_symbol parts="2"><part symbol="109"/><part private="true"><symbol type="2" code="501.1" name=" Step or edge of paved area"><description>An edge of a paved area.
Edges within paved areas are generally not represented, unless they serve navigation.</description><line_symbol color="17" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol></part></combined_symbol></symbol>
<symbol type="4" id="109" code="501.11" name="Paved area, heavy traffic"><description>A paved area is an area with a firm surface such as asphalt, hard gravel, tiles, concrete or the like. It should be bordered (or framed) by the symbol Step or edge of paved area (501.1).
Distinct differences within the paved area can be represented with the symbol Step or edge of paved area (501.1), if they serve navigation. The black border line can be omitted where it is logical (e.g. indistinct / gradual gravel-to-grass transitions).
Differences in the brown colour shall be used to show differences in the traffic of vehicles or pedestrians.</description><area_symbol inner_color="15" min_area="500" patterns="0"/></symbol>
<symbol type="4" id="110" code="501.12" name=" Paved area in multilevel structures, heavy traffic"><description>Part of a multilevel structure which can be passed at two levels. The angle of the pattern is approximately 45° to the direction of the axis of the paved area.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="0.785398" rotatable="true" line_spacing="600" line_offset="0" offset_along_line="0" color="15" line_width="300"/></area_symbol></symbol>
<symbol type="2" id="111" code="501.16" name="Paved area, heavy traffic, footprint: 1.4 m"><description>A paved area is an area with a firm surface such as asphalt, hard gravel, tiles, concrete or the like. It should be bordered (or framed) by the symbol Step or edge of paved area (501.1).
Distinct differences within the paved area can be represented with the symbol Step or edge of paved area (501.1), if they serve navigation. The black border line can be omitted where it is logical (e.g. indistinct / gradual gravel-to-grass transitions).
Differences in the brown colour shall be used to show differences in the traffic of vehicles or pedestrians.</description><line_symbol color="15" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="17" width="100" shift="50"/></borders></line_symbol></symbol>
<symbol type="2" id="112" code="501.17" name="Paved area, heavy traffic, footprint: 2 m"><description>A paved area is an area with a firm surface such as asphalt, hard gravel, tiles, concrete or the like. It should be bordered (or framed) by the symbol Step or edge of paved area (501.1).
Distinct differences within the paved area can be represented with the symbol Step or edge of paved area (501.1), if they serve navigation. The black border line can be omitted where it is logical (e.g. indistinct / gradual gravel-to-grass transitions).
Differences in the brown colour shall be used to show differences in the traffic of vehicles or pedestrians.</description><line_symbol color="15" line_width="500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="17" width="100" shift="50"/></borders></line_symbol></symbol>
<symbol type="2" id="113" code="501.18" name="Paved area, heavy traffic, footprint: 3 m"><description>A paved area is an area with a firm surface such as asphalt, hard gravel, tiles, concrete or the like. It should be bordered (or framed) by the symbol Step or edge of paved area (501.1).
Distinct differences within the paved area can be represented with the symbol Step or edge of paved area (501.1), if they serve navigation. The black border line can be omitted where it is logical (e.g. indistinct / gradual gravel-to-grass transitions).
Differences in the brown colour shall be used to show differences in the traffic of vehicles or pedestrians.</description><line_symbol color="15" line_width="750" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="17" width="100" shift="50"/></borders></line_symbol></symbol>
<symbol type="2" id="114" code="501.19" name="Paved area, heavy traffic, footprint: 4 m"><description>A paved area is an area with a firm surface such as asphalt, hard gravel, tiles, concrete or the like. It should be bordered (or framed) by the symbol Step or edge of paved area (501.1).
Distinct differences within the paved area can be represented with the symbol Step or edge of paved area (501.1), if they serve navigation. The black border line can be omitted where it is logical (e.g. indistinct / gradual gravel-to-grass transitions).
Differences in the brown colour shall be used to show differences in the traffic of vehicles or pedestrians.</description><line_symbol color="15" line_width="1000" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="17" width="100" shift="50"/></borders></line_symbol></symbol>
<symbol type="2" id="115" code="505.1" name="Unpaved footpath or track, footprint: 1.4 m"><description>An unpaved footpath or rough vehicle track is a way for passing mainly by foot, without a smooth, hard surface.</description><line_symbol color="16" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="17" width="100" shift="50" dashed="true" dash_length="2000" break_length="250"/></borders></line_symbol></symbol>
<symbol type="2" id="116" code="505.2" name="Unpaved footpath or track, footprint: 2 m"><description>An unpaved footpath or rough vehicle track is a way for passing mainly by foot, without a smooth, hard surface.</description><line_symbol color="16" line_width="500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="250" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="17" width="100" shift="50" dashed="true" dash_length="2000" break_length="250"/></borders></line_symbol></symbol>
<symbol type="2" id="117" code="506" name="Small unpaved footpath or track"><description>A small unpaved footpath or track.
Minimum length (isolated): two dashes (3.4 mm - footprint 13.6 m).</description><line_symbol color="4" line_width="270" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1500" break_length="370" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="118" code="507" name="Less distinct small path"><description>A less distinct path or forestry extraction track.
Minimum length: two sections of double dashes (7.9 mm - footprint 31.6 m).</description><line_symbol color="4" line_width="270" minimum_length="7900" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1500" break_length="1500" dashes_in_group="2" in_group_break_length="370" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="119" code="508" name="Narrow ride"><description>A distinct ride is a linear break in the forest (usually in a plantation), which does not have a distinct path along it. Where there is a path along a ride, the symbol Small unpaved footpath or track (506) shall be used.
Minimum length: two dashes (9.75 mm - footprint 39 m).</description><line_symbol color="4" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4500" break_length="750" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="16" id="120" code="509.1" name="Railway"><description>A railway is a permanent track laid with rails on which locomotives, carriages or wagons can travel.
If it is forbidden to cross or run along the railroad, the forbidden area around the railway shall be represented with symbol Area that shall not be entered (520).
Minimum length (isolated): two dashes (4 mm - footprint 16 m).</description><combined_symbol parts="2"><part private="true"><symbol type="2" code="515.1.2" name="Railway helper: inner black dashes"><line_symbol color="4" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="3000" end_length="1500" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol></part><part private="true"><symbol type="2" code="515.1.1" name="Railway helper: black border, white background"><line_symbol color="6" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3000" end_length="1500" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1500" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="4" width="100" shift="0"/></borders></line_symbol></symbol></part></combined_symbol></symbol>
<symbol type="2" id="121" code="509.2" name="Tramway"><description>A tramway is a public vehicle running regularly along certain streets, usually on rails. The track can be easily crossed by the competitor.
Tramways are generally not represented. However, if they serve navigation or orientation, they can be represented.</description><line_symbol color="-1" line_width="300" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3000" end_length="1500" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1500" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><borders><border color="12" width="100" shift="0"/></borders></line_symbol></symbol>
<symbol type="2" id="122" code="510" name="Power line, cableway or skilift"><description>Power line, cableway or skilift.
The bars indicate the exact location of the pylons. If a section of a power line, cableway or skilift goes along a road or path (and does not offer significant additional navigational value) it should be omitted.
<b>Note: When drawing this symbol, press space to toggle placing the pylon symbols at new nodes.</b></description><line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><dash_symbol><symbol type="1" code="" name="Dash symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -300;0 300;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></dash_symbol></line_symbol></symbol>
<symbol type="2" id="123" code="511" name="Major power line"><description>Major power lines should be drawn with a double line. The gap between the lines may indicate the extent of the powerline. Very large carrying masts shall be represented in plan shape using symbol Building (521) or High tower (524). In this case, the cable lines can be left out (the map shows only the pylons).
<b>Note: When drawing this symbol, press space to toggle placing the pylon symbols at new nodes.</b></description><line_symbol color="-1" line_width="1500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><dash_symbol><symbol type="1" code="" name="Dash symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="200" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -1120;0 1120;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></dash_symbol><borders><border color="4" width="140" shift="70"/></borders></line_symbol></symbol>
<symbol type="2" id="124" code="511.1" name="Major power line with pylons"><description>Major power lines should be drawn with a double line. The gap between the lines may indicate the extent of the powerline. Very large carrying masts shall be represented in plan shape using symbol Building (521) or High tower (524). In this case, the cable lines can be left out (the map shows only the pylons).
<b>Note: When drawing this symbol, press space to toggle placing the pylon symbols at new nodes.</b></description><line_symbol color="-1" line_width="1500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><dash_symbol><symbol type="1" code="" name="Dash symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="4" line_width="200" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -1120;0 1120;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="200" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="5">-300 -300;-300 300;300 300;300 -300;-300 -300;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></dash_symbol><borders><border color="4" width="140" shift="70"/></borders></line_symbol></symbol>
<symbol type="2" id="125" code="512" name="Bridge, one side"><description>A bridge is a structure spanning and permitting passage over a river, chasm, road or the like.
<span style="color: red">If underpasses under bridges are to be used in a competition, they shall be emphasized with the symbol Crossing point (710.1) or Crossing section (710.2).</span></description><line_symbol color="4" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><start_symbol><symbol type="1" code="" name="Start symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">200 0;200 -400;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></start_symbol><end_symbol><symbol type="1" code="" name="End symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-200 0;-200 -400;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></end_symbol></line_symbol></symbol>
<symbol type="2" id="126" code="512.1" name="Bridge, minimum width"><description>A bridge is a structure spanning and permitting passage over a river, chasm, road or the like.
<span style="color: red">If underpasses under bridges are to be used in a competition, they shall be emphasized with the symbol Crossing point (710.1) or Crossing section (710.2).</span></description><line_symbol color="-1" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><start_symbol><symbol type="1" code="" name="Start symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="4" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">200 400;200 800;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">200 -400;200 -800;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></start_symbol><end_symbol><symbol type="1" code="" name="End symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="4" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-200 -400;-200 -800;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-200 400;-200 800;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></end_symbol><borders><border color="4" width="400" shift="200"/></borders></line_symbol></symbol>
<symbol type="2" id="127" code="512.2" name="Underpass or tunnel"><description>An underpass or a tunnel is a passage running underneath the ground or a building, especially a passage for pedestrians or vehicles.
Minimum length (of baseline): 2 squares (0.75 mm - footprint 3.0 m).
<span style="color: red">Minimum length (of baseline): 2 squares (0.75 mm - footprint 3.0 m).
If underpasses or tunnels etc. are to be used in a competition, they shall be emphasized with the symbol Crossing point (710.1) or Crossing section (710.2).</span></description><line_symbol color="-1" line_width="0" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="500" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="2" minimum_mid_symbol_count_when_closed="0" dash_length="250" break_length="500" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="4">-125 125;125 125;125 -125;-125 -125;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="128" code="513.1" name="Passable wall"><description>A passable wall is a construction made of stone, brick, concrete etc., which can be passed.
If such a wall is higher than 1.5 m, it shall be represented with the symbol Impassable wall (515). Wide walls shall be drawn in plan shape using a ground symbol delineated by the passable wall symbol. It should be dotted if possible (minimum length around the dot 0.4 mm each side).
Minimum length (isolated): 1.4 mm (footprint 5.6 m).</description><line_symbol color="4" line_width="210" minimum_length="1400" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3750" end_length="1875" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="300" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="129" code="513.2" name="Passable retained wall"><description>A passable wall which is seen only from one side. Half dot must point to the lower level.
Height is 0.6 - 1.5 m. If lower, use symbol Step or edge of paved area (501.1).
Minimum length (isolated): 2.4 mm (footprint 9.6 m).</description><line_symbol color="4" line_width="210" minimum_length="2400" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="1900" end_length="850" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0" mid_symbol_placement="2"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="9">-300 0 1;-300 166;-166 300;0 300 1;166 300;300 166;300 0;-300 0;-300 0 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol>
<icon src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAT0lEQVQ4je2UMQ4AMAgCoen/v2wnO3RAFwcbmeU0JkAzMxRoVUAHPOBfwATQK3lbVQVJaVZeebEyRt1V94powC/zt2RbNgS/C7LqF5ABXx1oERod2gzO+QAAAABJRU5ErkJggg=="/></symbol>
<symbol type="2" id="130" code="515" name="Impassable wall"><description>An impassable or uncrossable wall or retaining wall is a wall, which fulfil the function of an enclosure or solid barrier. It shall not be crossed.
Very wide impassable walls shall be drawn in plan shape and represented with the symbol Building (521).</description><line_symbol color="4" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="0" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="131" code="516" name="Passable fence or railing"><description>A passable fence is a barrier enclosing or bordering a field, yard, etc., usually made of posts and wire or wood. It is used to prevent entrance or to confine or mark a boundary. A railing is a fencelike barrier composed of one or more horizontal rails supported by widely spaced upright poles, usually it can be slipped through.
If a fence or railing is dangerous or very difficult to cross, it shall be represented with the symbol Impassable fence or railing (518).
Minimum length (isolated): 2.2 mm (footprint 8.8 m).</description><line_symbol color="4" line_width="210" minimum_length="2200" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3750" end_length="1875" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 0;375 650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="132" code="518" name="Impassable fence or railing"><description>An impassable fence or railing shall not be crossed.
If the length is shorter than 3 mm, it must be presented with the symbol Impassable wall (515).
Minimum length (isolated): 3 mm (footprint 12 m).</description><line_symbol color="4" line_width="400" minimum_length="3000" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3750" end_length="2325" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">450 0;825 650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-450 0;-75 650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="1" id="133" code="519" name="Crossing point (optional)"><description>A crossing point is a gap or an opening in a fence, railing or wall, which can easily be passed through by a competitor.
Small gaps or openings which cannot easily be passed through by competitors, shall not be represented on the map and shall be closed during the competition.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="4" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">625 -700;625 700;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-625 -700;-625 700;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="4" id="134" code="520" name="Area that shall not be entered "><description>An area that shall not be entered such as a private area, a flower bed, a railway area etc.
No feature shall be represented in this area, except very prominent features such as railways, large buildings, or very large trees. Road entrances shall be represented clearly.
<b>Areas that shall not be entered totally contained within buildings shall be mapped as being a part of the building.</b>
The area shall always be delineated by a boundary line (at least 0.1 mm in width).
Minimum width: 0.25 mm (footprint 1 m).
Minimum area: 0.25 mm² (footprint 4 m²).</description><area_symbol inner_color="24" min_area="300" patterns="0"/></symbol>
<symbol type="2" id="135" code="520.1" name="Area that shall not be entered, boundary line"><description>An area that shall not be entered such as a private area, a flower bed, a railway area etc.
No feature shall be represented in this area, except very prominent features such as railways, large buildings, or very large trees. Road entrances shall be represented clearly.
<b>Areas that shall not be entered totally contained within buildings shall be mapped as being a part of the building.</b>
The area shall always be delineated by a boundary line (at least 0.1 mm in width).
Minimum width: 0.25 mm (footprint 1 m).
Minimum area: 0.25 mm² (footprint 4 m²).</description><line_symbol color="17" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="16" id="136" code="521" name="Building"><description>A building is a relatively permanent construction having a roof.
Buildings within symbol Area that shall not be entered (520) may just be represented in a simplified manner. Areas totally contained within a building shall be mapped as being a part of the building. A building shall not be entered.
<b>The minimum gap between buildings and other impassable features shall be 0.40 mm. Boundaries in touching buildings shall not be represented.</b>
Minimum width: 0.5 mm.
Minimum area: 0.25 mm² (footprint 4 m²).</description><combined_symbol parts="2"><part symbol="138"/><part symbol="139"/></combined_symbol></symbol>
<symbol type="1" id="137" code="521.1" name="Building, minimum size"><description>A building is a relatively permanent construction having a roof.
Buildings within symbol Area that shall not be entered (520) may just be represented in a simplified manner. Areas totally contained within a building shall be mapped as being a part of the building. A building shall not be entered.
<b>The minimum gap between buildings and other impassable features shall be 0.40 mm. Boundaries in touching buildings shall not be represented.</b>
Minimum width: 0.5 mm.
Minimum area: 0.25 mm² (footprint 4 m²).</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="4" code=""><area_symbol inner_color="11" min_area="0" patterns="0"/></symbol><object type="1"><coords count="4">180 -180;180 180;-180 180;-180 -180;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="5">180 -180;180 180;-180 180;-180 -180;180 -180 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="4" id="138" code="521.3" name="Building, fill"><description>A building is a relatively permanent construction having a roof.
Buildings within symbol Area that shall not be entered (520) may just be represented in a simplified manner. Areas totally contained within a building shall be mapped as being a part of the building. A building shall not be entered.
<b>The minimum gap between buildings and other impassable features shall be 0.40 mm. Boundaries in touching buildings shall not be represented.</b>
Minimum width: 0.5 mm.
Minimum area: 0.25 mm² (footprint 4 m²).</description><area_symbol inner_color="11" min_area="250" patterns="0"/></symbol>
<symbol type="2" id="139" code="521.4" name="Building, outline"><description>A building is a relatively permanent construction having a roof.
Buildings within symbol Area that shall not be entered (520) may just be represented in a simplified manner. Areas totally contained within a building shall be mapped as being a part of the building. A building shall not be entered.
<b>The minimum gap between buildings and other impassable features shall be 0.40 mm. Boundaries in touching buildings shall not be represented.</b>
Minimum width: 0.5 mm.
Minimum area: 0.25 mm² (footprint 4 m²).</description><line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="16" id="140" code="522" name="Canopy"><description>A canopy is a building construction (with a roof), normally supported by pillars, poles or walls, such as passages, gangways, courts, bus stops, gas stations or garages.
Small passable parts of buildings which cannot easily be crossed by competitors, shall not be represented on the map and shall be closed during the competition.
Minimum width: 0.5 mm.
Minimum area: 0.25 mm² (footprint 4 m²).</description><combined_symbol parts="2"><part symbol="141"/><part symbol="142"/></combined_symbol></symbol>
<symbol type="4" id="141" code="522.3" name="Canopy, fill"><description>A canopy is a building construction (with a roof), normally supported by pillars, poles or walls, such as passages, gangways, courts, bus stops, gas stations or garages.
Small passable parts of buildings which cannot easily be crossed by competitors, shall not be represented on the map and shall be closed during the competition.
Minimum width: 0.5 mm.
Minimum area: 0.25 mm² (footprint 4 m²).</description><area_symbol inner_color="13" min_area="250" patterns="0"/></symbol>
<symbol type="2" id="142" code="522.4" name="Canopy, outline"><description>A canopy is a building construction (with a roof), normally supported by pillars, poles or walls, such as passages, gangways, courts, bus stops, gas stations or garages.
Small passable parts of buildings which cannot easily be crossed by competitors, shall not be represented on the map and shall be closed during the competition.
Minimum width: 0.5 mm.
Minimum area: 0.25 mm² (footprint 4 m²).</description><line_symbol color="4" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="143" code="522.1" name="Pillar"><description>A pillar is an upright shaft or structure of stone, brick or other material, relatively slender in proportion to its height and any shape in section, used as a building support.
Pillars smaller than 1 m × 1 m are generally not represented.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="5">-250 -250;250 -250;250 250;-250 250;-250 -250 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="144" code="524" name="High tower"><description>A high tower or large pylon.
Very large towers shall be represented in plan shape with the symbol Building (521).
Footprint: 8.4 m in diameter.</description><point_symbol inner_radius="600" inner_color="4" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="4" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-1050 0;1050 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -1050;0 1050;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="145" code="525" name="Small tower"><description>An obvious small tower, platform or seat.
Footprint: 6 m x 6 m.</description><point_symbol inner_radius="600" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="4" line_width="220" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-750 -382;750 -382;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="220" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -382;0 1118;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="146" code="526" name="Cairn, memorial, small monument or boundary stone"><description>Cairn, memorial, small monument or boundary stone that is obvious.
Large massive monuments shall be represented in plan shape with the symbol Building (521).
Footprint: 4 m in diameter.</description><point_symbol inner_radius="280" inner_color="-1" outer_width="220" outer_color="4" elements="1"><element><symbol type="1" code=""><point_symbol inner_radius="100" inner_color="4" outer_width="0" outer_color="-1" elements="0"/></symbol><object type="0"><coords count="1">0 0;</coords></object></element></point_symbol></symbol>
<symbol type="1" id="147" code="527" name="Fodder rack"><description>A fodder rack, which is free standing or attached to a tree.
Footprint: 6 m x 6 m.</description><point_symbol inner_radius="600" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="4" line_width="220" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="3">-750 -48;0 -481;750 -48;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="220" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 -481;0 1019;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="148" code="528" name=" Prominent line feature"><description>A prominent man-made line feature. For example, a low pipeline (gas, water, oil, heat, etc.) or a bobsleigh / skeleton track that is clearly visible.
The definition of the symbol must be given on the map.
Minimum length: 2.2 mm (footprint 8.8 m).</description><line_symbol color="4" line_width="210" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3750" end_length="1875" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="3">-530 530;0 0;-530 -530;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="2" id="149" code="529" name=" Prominent impassable line feature"><description>An impassable man-made line feature. For example, a high pipeline (gas, water, oil, heat, etc.) or a bobsleigh / skeleton track.
The definition of the symbol must be given on the map.
A prominent impassable line feature shall not be crossed.
Minimum length: 3 mm (footprint 12 m).</description><line_symbol color="4" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="3750" end_length="1875" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="2" mid_symbol_distance="900"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="3">-530 530;0 0;-530 -530;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol></line_symbol></symbol>
<symbol type="1" id="150" code="530" name="Prominent man-made feature – ring"><description>A man-made feature which is significant or prominent.
The definition of the symbol must be given on the map.
Footprint: 4 m in diameter.</description><point_symbol inner_radius="380" inner_color="-1" outer_width="220" outer_color="4" elements="0"/></symbol>
<symbol type="1" id="151" code="531" name="Prominent man-made feature – x"><description>Location is at the centre of gravity of the symbol.
The definition of the symbol must be given on the map.
Footprint: 4.8 m x 4.8 m.</description><point_symbol inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="4" line_width="220" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-522 -522;522 522;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="4" line_width="220" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-522 522;522 -522;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="152" code="532.6" name="Stairway, footprint: 1.6 m"><description>Steps of a stairway shall be represented in a generalized manner.
Minimum length: 3 (graphical) steps.
Minimum width: 0.4 mm (IM).</description><line_symbol color="16" line_width="400" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="500" end_length="50" show_at_least_one_symbol="true" minimum_mid_symbol_count="3" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 250;0 -250;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol><borders><border color="4" width="100" shift="50"/></borders></line_symbol></symbol>
<symbol type="2" id="153" code="532.7" name="Stairway, footprint: 2 m"><description>Steps of a stairway shall be represented in a generalized manner.
Minimum length: 3 (graphical) steps.
Minimum width: 0.4 mm (IM).</description><line_symbol color="16" line_width="500" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="500" end_length="50" show_at_least_one_symbol="true" minimum_mid_symbol_count="3" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 300;0 -300;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol><borders><border color="4" width="100" shift="0"/></borders></line_symbol></symbol>
<symbol type="2" id="154" code="532.8" name="Stairway, footprint: 3 m"><description>Steps of a stairway shall be represented in a generalized manner.
Minimum length: 3 (graphical) steps.
Minimum width: 0.4 mm (IM).</description><line_symbol color="16" line_width="750" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="500" end_length="50" show_at_least_one_symbol="true" minimum_mid_symbol_count="3" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 400;0 -400;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol><borders><border color="4" width="100" shift="0"/></borders></line_symbol></symbol>
<symbol type="2" id="155" code="532.9" name="Stairway, footprint: 4 m"><description>Steps of a stairway shall be represented in a generalized manner.
Minimum length: 3 (graphical) steps.
Minimum width: 0.4 mm (IM).</description><line_symbol color="16" line_width="1000" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="500" end_length="50" show_at_least_one_symbol="true" minimum_mid_symbol_count="3" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="4" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">0 550;0 -550;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol><borders><border color="4" width="100" shift="0"/></borders></line_symbol></symbol>
<symbol type="4" id="156" code="601.1" name="North lines pattern"><description>Magnetic north lines are lines placed on the map pointing to magnetic north. Their spacing shall be 30 mm, they represent 120 m on the ground.
North lines may be broken where they obscure small features such as boulders, knolls, cliffs, stream junctions, path ends, etc.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="1.5708" rotatable="true" line_spacing="30000" line_offset="0" offset_along_line="0" color="4" line_width="140"/></area_symbol></symbol>
<symbol type="2" id="157" code="601" name="Magnetic north line"><description>Magnetic north lines are lines placed on the map pointing to magnetic north. Their spacing shall be 30 mm, they represent 120 m on the ground.
North lines may be broken where they obscure small features such as boulders, knolls, cliffs, stream junctions, path ends, etc.</description><line_symbol color="4" line_width="140" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="158" code="601.6" name="North lines pattern, blue"><description>Magnetic north lines are lines placed on the map pointing to magnetic north. Their spacing shall be 30 mm, they represent 120 m on the ground.
North lines may be broken where they obscure small features such as boulders, knolls, cliffs, stream junctions, path ends, etc.</description><area_symbol inner_color="-1" min_area="0" patterns="1"><pattern type="1" angle="1.5708" rotatable="true" line_spacing="30000" line_offset="0" offset_along_line="0" color="9" line_width="180"/></area_symbol></symbol>
<symbol type="2" id="159" code="601.5" name="Magnetic north line, blue"><description>Magnetic north lines are lines placed on the map pointing to magnetic north. Their spacing shall be 30 mm, they represent 120 m on the ground.
North lines may be broken where they obscure small features such as boulders, knolls, cliffs, stream junctions, path ends, etc.</description><line_symbol color="9" line_width="180" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="160" code="701" name="Start"><description>The start or map issue point (if not at the start) is shown by an equilateral triangle which points in the direction of the first control.
The centre of the triangle shows the precise position of the start point.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="7" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="4">-3500 2021;0 -4041;3500 2021;-3500 2021 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="161" code="702" name=" Map issue point"><description>If there is a marked route to the start point, the map issue point is marked using this symbol.</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="600" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-1250 0;1250 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="1" id="162" code="703" name="Control point"><description>The control points are shown with circles (footprint 24 m). The centre of the circle shows the precise position of the feature. Sections of circles should be omitted to leave important detail showing.</description><point_symbol inner_radius="3000" inner_color="-1" outer_width="350" outer_color="7" elements="0"/></symbol>
<symbol type="8" id="163" code="704" name="Control number"><description>The number of the control is placed close to the control point circle in such a way that it does not obscure important detail.
An option for heavily building filled map is the possibility to have a white border with 0.1 or 0.15 mm in width.</description><text_symbol icon_text="5" rotatable="true"><font family="Arial" size="5588"/><text color="2" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/></text_symbol></symbol>
<symbol type="8" id="164" code="704.1" name="Control number, with white border"><description>The number of the control is placed close to the control point circle in such a way that it does not obscure important detail.
An option for heavily building filled map is the possibility to have a white border with 0.1 or 0.15 mm in width.</description><text_symbol icon_text="5" rotatable="true"><font family="Arial" size="5588"/><text color="2" line_spacing="1" paragraph_spacing="0" character_spacing="0" kerning="true"/><framing color="3" mode="1" line_half_width="100" shadow_x_offset="200" shadow_y_offset="200"/></text_symbol></symbol>
<symbol type="2" id="165" code="705" name="Course line"><description>Where controls are to be visited in order, the start, control points and finish are joined together by straight lines. Sections of lines should be omitted to leave important detail showing.</description><line_symbol color="7" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="166" code="706" name="Finish"><description>The finish is shown by two concentric circles.</description><point_symbol inner_radius="2500" inner_color="-1" outer_width="350" outer_color="7" elements="1"><element><symbol type="1" code=""><point_symbol inner_radius="3500" inner_color="-1" outer_width="350" outer_color="7" elements="0"/></symbol><object type="0"><coords count="1">0 0;</coords></object></element></point_symbol></symbol>
<symbol type="2" id="167" code="707" name="Marked route"><description>A marked route is shown on the map with a dashed line.</description><line_symbol color="2" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="2000" break_length="750" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="168" code="708" name="Out-of-bounds boundary"><description>An out-of-bounds boundary shall not be crossed. It shall be used for temporary uncrossable boundaries used for the course setting.</description><line_symbol color="7" line_width="1000" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="4" id="169" code="709" name="Out-of-bounds area"><description>An out-of-bounds area. A bounding line may be drawn if there is no natural boundary as follows:
- a solid line indicates that the boundary is marked continuously (tapes, etc.) in the terrain,
- a dashed line indicates intermittent marking in the terrain,
- no line indicates no marking in the terrain.
An out-of-bounds area shall not be entered.
Minimum width: 2 mm.
Minimum area: 4 mm² (footprint 64 m²).</description><area_symbol inner_color="-1" min_area="4000" patterns="2"><pattern type="1" angle="0.785398" line_spacing="800" line_offset="0" offset_along_line="0" color="2" line_width="250"/><pattern type="1" angle="2.35619" line_spacing="800" line_offset="0" offset_along_line="0" color="2" line_width="250"/></area_symbol></symbol>
<symbol type="2" id="170" code="709.1" name="Out-of-bounds area, solid boundary"><description>A solid line indicates that the boundary is marked continuously (tapeetc.) in the terrain.</description><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="2" id="171" code="709.2" name="Out-of-bounds area, dashed boundary"><description>A dashed line indicates intermittent marking in the terrain.</description><line_symbol color="2" line_width="250" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" dashed="true" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="3000" break_length="500" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol>
<symbol type="1" id="172" code="710.1" name="Crossing point"><description>A crossing point through or over a wall or fence, or across a road or railway or through a tunnel or an out-of-bounds area is drawn on the map with two lines curving outwards.
<span style="color: red">If underpasses or tunnels etc. are to be used in a competition, they shall be emphasized with symbol Crossing point (710.1) or Crossing section (710.2).</span></description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="7" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="4">-1500 950 1;-500 675;500 675;1500 950 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="7" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="4">-1500 -950 1;-500 -675;500 -675;1500 -950 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="173" code="710.2" name="Crossing section, one side"><description>A crossing section through or over a building, wall or fence, or across a road or railway or through a tunnel or an out-of-bounds area is drawn on the map as a linear object, according to the plan shape.
<span style="color: red">If underpasses or tunnels etc. are to be used in a competition, they shall be emphasized with symbol Crossing point (710.1) or Crossing section (710.2).</span></description><line_symbol color="2" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"><start_symbol><symbol type="1" code="" name="Start symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="5">250 0;0 0 1;-600 0;-900 -150;-1500 -650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></start_symbol><end_symbol><symbol type="1" code="" name="End symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="2" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="5">-250 0;0 0 1;600 0;900 -150;1500 -650;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></end_symbol></line_symbol></symbol>
<symbol type="16" id="174" code="714" name=" Temporary construction or closed area"><description>Obvious temporary constructions like platforms for spectators and speaker, closed area for spectators, outside restaurant areas, etc. shall be represented in plan shape. A Temporary construction or closed area shall not be entered.
Minimum width: 0.5 mm.
Minimum area: 0.25 mm² (footprint 4 m²).</description><combined_symbol parts="2"><part private="true"><symbol type="4" code="714.0.1" name=" Temporary construction or closed area, fill"><area_symbol inner_color="8" min_area="500" patterns="0"/></symbol></part><part private="true"><symbol type="2" code="714.0.2" name=" Temporary construction or closed area, outline"><line_symbol color="2" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol></part></combined_symbol></symbol>
<symbol type="1" id="175" code="714.1" name=" Temporary construction or closed area, minimum size"><description>Obvious temporary constructions like platforms for spectators and speaker, closed area for spectators, outside restaurant areas, etc. shall be represented in plan shape. A Temporary construction or closed area shall not be entered.
Minimum width: 0.5 mm.
Minimum area: 0.25 mm² (footprint 4 m²).</description><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="4" code=""><area_symbol inner_color="8" min_area="0" patterns="0"/></symbol><object type="1"><coords count="4">350 -350;350 350;-350 350;-350 -350;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="2" line_width="100" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="5">350 -350;350 350;-350 350;-350 -350;350 -350 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
<symbol type="2" id="176" code="799" name="Simple Orienteering Course"><description>This symbol provides a simple and quick way to make training courses.
The purple line will extend a bit into the finish symbol. This is a shortcoming of this simple approach.</description><line_symbol color="-1" line_width="0" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="1150" end_length="3650" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="1000" break_length="1450" dashes_in_group="1" in_group_break_length="1600" mid_symbols_per_spot="1" mid_symbol_distance="0" suppress_dash_symbol_at_ends="true"><start_symbol><symbol type="1" code="" name="Start symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="2"><element><symbol type="2" code=""><line_symbol color="7" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">3041 0;3541 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="2" code=""><line_symbol color="7" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="4">-3021 3500;3041 0;-3021 -3500;-3021 3500 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></start_symbol><mid_symbol><symbol type="1" code="" name="Mid symbol"><point_symbol rotatable="true" inner_radius="1000" inner_color="-1" outer_width="0" outer_color="-1" elements="1"><element><symbol type="2" code=""><line_symbol color="7" line_width="350" minimum_length="0" join_style="1" cap_style="0" start_offset="0" end_offset="0" segment_length="4000" end_length="0" show_at_least_one_symbol="true" minimum_mid_symbol_count="0" minimum_mid_symbol_count_when_closed="0" dash_length="4000" break_length="1000" dashes_in_group="1" in_group_break_length="500" mid_symbols_per_spot="1" mid_symbol_distance="0"/></symbol><object type="1"><coords count="2">-600 0;600 0;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol></mid_symbol><end_symbol><symbol type="1" code="" name="End symbol"><point_symbol rotatable="true" inner_radius="3325" inner_color="-1" outer_width="350" outer_color="7" elements="1"><element><symbol type="1" code=""><point_symbol inner_radius="2325" inner_color="-1" outer_width="350" outer_color="7" elements="0"/></symbol><object type="0"><coords count="1">0 0;</coords></object></element></point_symbol></symbol></end_symbol><dash_symbol><symbol type="1" code="" name="Dash symbol"><point_symbol rotatable="true" inner_radius="2825" inner_color="-1" outer_width="350" outer_color="7" elements="0"/></symbol></dash_symbol></line_symbol></symbol>
<symbol type="1" id="177" code="999" name="OpenOrienteering Logo"><description>The OpenOrienteering Logo.</description><point_symbol inner_radius="250" inner_color="-1" outer_width="0" outer_color="-1" elements="30"><element><symbol type="4" code=""><area_symbol inner_color="25" min_area="0" patterns="0"/></symbol><object type="1"><coords count="10">-12797 -557 1;-12755 -447;-12770 -420;-12873 -420 1;-12953 -420;-12973 -440;-12973 -520 1;-12973 -635;-12838 -663;-12797 -557 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="25" min_area="0" patterns="0"/></symbol><object type="1"><coords count="14">-933 2063 1;-933 1925;-920 1900;-851 1900 1;-780 1900;-770 1921;-781 2050 1;-789 2154;-814 2203;-863 2213 1;-920 2224;-933 2197;-933 2063;-933 2063 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="26">-8875 -3860 1;-8922 -3920;-8984 -3968;-9061 -4006 1;-9134 -4045;-9225 -4065;-9337 -4065 1;-9444 -4065;-9535 -4045;-9612 -4006 1;-9688 -3974;-9752 -3927;-9803 -3867 1;-9855 -3807;-9895 -3737;-9925 -3655 1;-9950 -3578;-9970 -3500;-9982 -3418;-8723 -3418 1;-8725 -3500;-8740 -3578;-8768 -3655 1;-8789 -3732;-8824 -3800;-8875 -3860 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="21" min_area="0" patterns="0"/></symbol><object type="1"><coords count="37">-4230 -3923 1;-4183 -3737;-4160 -3527;-4160 -3296;-4160 -1395;-5113 -1395;-5113 -3182 1;-5113 -3488;-5155 -3707;-5235 -3833 1;-5317 -3961;-5468 -4027;-5690 -4027 1;-5759 -4027;-5830 -4021;-5907 -4013 1;-5983 -4008;-6052 -4004;-6112 -3993;-6112 -1395;-7064 -1395;-7064 -4646 1;-6903 -4693;-6694 -4736;-6438 -4774 1;-6181 -4818;-5913 -4838;-5631 -4838 1;-5347 -4838;-5110 -4800;-4921 -4723 1;-4730 -4652;-4579 -4547;-4467 -4410 1;-4357 -4273;-4277 -4111;-4230 -3923 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="35">-13524 1118 1;-13605 1126;-13667 1137;-13708 1150;-13708 3722;-14662 3722;-14662 536 1;-14492 476;-14292 420;-14060 369 1;-13827 314;-13565 286;-13280 286 1;-13229 286;-13167 290;-13096 299 1;-13022 303;-12951 312;-12878 325 1;-12806 333;-12733 345;-12660 363 1;-12587 375;-12526 392;-12474 414;-12634 1201 1;-12719 1180;-12819 1158;-12936 1137 1;-13051 1112;-13174 1098;-13306 1098 1;-13366 1098;-13439 1105;-13524 1118 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="25">-11093 -200 1;-11204 -101;-11336 -52;-11490 -52 1;-11642 -52;-11777 -101;-11893 -200 1;-12004 -303;-12059 -441;-12059 -616 1;-12059 -791;-12004 -927;-11893 -1026 1;-11777 -1128;-11642 -1179;-11490 -1179 1;-11336 -1179;-11204 -1128;-11093 -1026 1;-10978 -927;-10920 -791;-10920 -616 1;-10920 -441;-10978 -303;-11093 -200 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="5">-11009 3722;-11963 3722;-11963 357;-11009 357;-11009 3722 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="26">-8649 1053 1;-8755 1053;-8847 1073;-8924 1112 1;-9001 1145;-9065 1192;-9115 1252 1;-9167 1312;-9207 1381;-9237 1464 1;-9264 1539;-9282 1618;-9296 1700;-8034 1700 1;-8039 1618;-8054 1539;-8079 1464 1;-8101 1387;-8137 1318;-8189 1259 1;-8236 1199;-8297 1150;-8374 1112 1;-8445 1073;-8537 1053;-8649 1053 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="37">-5220 1105 1;-5297 1110;-5365 1115;-5425 1125;-5425 3722;-6378 3722;-6378 472 1;-6217 425;-6007 382;-5751 344 1;-5495 301;-5227 280;-4945 280 1;-4658 280;-4422 318;-4235 395 1;-4042 467;-3890 572;-3781 709 1;-3669 845;-3591 1007;-3544 1195 1;-3497 1381;-3474 1592;-3474 1821;-3474 3722;-4427 3722;-4427 1937 1;-4427 1630;-4467 1411;-4549 1285 1;-4628 1156;-4780 1092;-5002 1092 1;-5070 1092;-5143 1097;-5220 1105 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="39">-2636 2346;-2636 -481;-1683 -634;-1683 357;-539 357;-539 1150;-1683 1150;-1683 2333 1;-1683 2535;-1648 2694;-1581 2813 1;-1508 2933;-1365 2993;-1151 2993 1;-1050 2993;-945 2984;-838 2966 1;-728 2946;-627 2918;-539 2884;-404 3626 1;-518 3673;-646 3712;-787 3748 1;-928 3780;-1102 3799;-1305 3799 1;-1566 3799;-1781 3764;-1951 3696 1;-2123 3624;-2259 3526;-2361 3402 1;-2463 3274;-2536 3121;-2579 2941 1;-2618 2763;-2636 2565;-2636 2346 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="26">2142 1464 1;2121 1387;2084 1318;2032 1259 1;1986 1199;1924 1150;1847 1112 1;1776 1073;1685 1053;1572 1053 1;1466 1053;1375 1073;1298 1112 1;1221 1145;1156 1192;1106 1252 1;1054 1312;1014 1381;984 1464 1;958 1539;939 1618;926 1700;2187 1700 1;2183 1618;2168 1539;2142 1464 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="26">5923 1700 1;5919 1618;5904 1539;5878 1464 1;5856 1387;5821 1318;5769 1259 1;5723 1199;5661 1150;5585 1112 1;5511 1073;5419 1053;5308 1053 1;5201 1053;5110 1073;5033 1112 1;4957 1145;4893 1192;4841 1252 1;4790 1312;4750 1381;4720 1464 1;4695 1539;4675 1618;4663 1700;5923 1700 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="35">8718 1118 1;8637 1126;8575 1137;8534 1150;8534 3722;7581 3722;7581 536 1;7750 476;7950 420;8182 369 1;8415 314;8677 286;8962 286 1;9013 286;9075 290;9146 299 1;9220 303;9292 312;9365 325 1;9437 333;9510 345;9583 363 1;9655 375;9717 392;9768 414;9608 1201 1;9523 1180;9424 1158;9306 1137 1;9191 1112;9069 1098;8937 1098 1;8877 1098;8804 1105;8718 1118 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="25">10350 -200 1;10238 -303;10183 -441;10183 -616 1;10183 -791;10238 -927;10350 -1026 1;10465 -1128;10600 -1179;10752 -1179 1;10906 -1179;11038 -1128;11149 -1026 1;11264 -927;11323 -791;11323 -616 1;11323 -441;11264 -303;11149 -200 1;11038 -101;10906 -52;10752 -52 1;10600 -52;10465 -101;10350 -200 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="5">11233 3722;10279 3722;10279 357;11233 357;11233 3722 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="37">14726 709 1;14836 845;14916 1007;14963 1195 1;15010 1381;15033 1592;15033 1821;15033 3722;14080 3722;14080 1937 1;14080 1630;14039 1411;13958 1285 1;13876 1156;13725 1092;13504 1092 1;13435 1092;13363 1097;13287 1105 1;13210 1110;13142 1115;13082 1125;13082 3722;12129 3722;12129 472 1;12290 425;12499 382;12756 344 1;13012 301;13280 280;13562 280 1;13847 280;14083 318;14272 395 1;14463 467;14614 572;14726 709 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="21" min_area="0" patterns="0"/></symbol><object type="1"><coords count="74">-17051 -1307 1;-17299 -1307;-17525 -1349;-17729 -1434 1;-17931 -1521;-18102 -1639;-18247 -1794 1;-18392 -1951;-18505 -2139;-18587 -2355 1;-18669 -2579;-18708 -2820;-18708 -3085 1;-18708 -3350;-18669 -3591;-18587 -3808 1;-18502 -4027;-18387 -4211;-18242 -4365 1;-18092 -4518;-17917 -4638;-17717 -4723 1;-17512 -4808;-17291 -4851;-17051 -4851 1;-16808 -4851;-16586 -4808;-16386 -4723 1;-16182 -4638;-16006 -4518;-15861 -4365 1;-15716 -4211;-15603 -4027;-15523 -3808 1;-15442 -3591;-15401 -3350;-15401 -3085 1;-15401 -2820;-15440 -2579;-15517 -2355 1;-15593 -2139;-15703 -1951;-15848 -1794 1;-15993 -1639;-16168 -1521;-16373 -1434 1;-16574 -1349;-16800 -1307;-17051 -1307 18;-17051 -2126 1;-16834 -2126;-16668 -2210;-16552 -2383 1;-16433 -2557;-16373 -2792;-16373 -3085 1;-16373 -3380;-16433 -3610;-16552 -3777 1;-16668 -3946;-16834 -4034;-17051 -4034 1;-17269 -4034;-17437 -3946;-17557 -3777 1;-17675 -3610;-17736 -3380;-17736 -3085 1;-17736 -2792;-17675 -2557;-17557 -2383 1;-17437 -2210;-17269 -2126;-17051 -2126 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="21" min_area="0" patterns="0"/></symbol><object type="1"><coords count="69">-14662 -213;-14662 -4646 1;-14576 -4673;-14478 -4697;-14369 -4716 1;-14257 -4743;-14142 -4765;-14022 -4781 1;-13898 -4798;-13776 -4811;-13652 -4819 1;-13524 -4833;-13402 -4838;-13287 -4838 1;-13009 -4838;-12763 -4796;-12544 -4711 1;-12328 -4630;-12144 -4513;-11995 -4358 1;-11846 -4210;-11732 -4027;-11657 -3808 1;-11574 -3591;-11535 -3348;-11535 -3078 1;-11535 -2819;-11566 -2582;-11629 -2368 1;-11694 -2156;-11788 -1972;-11911 -1819 1;-12034 -1666;-12189 -1546;-12373 -1461 1;-12556 -1376;-12765 -1333;-13006 -1333 1;-13137 -1333;-13261 -1346;-13377 -1371 1;-13492 -1395;-13602 -1432;-13708 -1479;-13708 -213;-14662 -213 18;-13184 -2139 1;-12733 -2139;-12506 -2443;-12506 -3054 1;-12506 -3348;-12572 -3582;-12704 -3756 1;-12837 -3936;-13032 -4027;-13293 -4027 1;-13379 -4027;-13457 -4021;-13530 -4013 1;-13602 -4008;-13662 -4004;-13708 -3993;-13708 -2274 1;-13648 -2234;-13572 -2202;-13479 -2177 1;-13381 -2152;-13282 -2139;-13184 -2139 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="21" min_area="0" patterns="0"/></symbol><object type="1"><coords count="89">-9182 -1307 1;-9485 -1307;-9750 -1352;-9976 -1440 1;-10198 -1530;-10383 -1652;-10533 -1806 1;-10678 -1964;-10787 -2149;-10858 -2362 1;-10926 -2575;-10962 -2807;-10962 -3054 1;-10962 -3352;-10917 -3612;-10827 -3833 1;-10733 -4060;-10611 -4248;-10462 -4396 1;-10314 -4547;-10141 -4660;-9950 -4736 1;-9754 -4813;-9553 -4851;-9349 -4851 1;-8872 -4851;-8494 -4705;-8217 -4410 1;-7939 -4120;-7801 -3692;-7801 -3123 1;-7801 -3069;-7803 -3007;-7808 -2939 1;-7810 -2873;-7816 -2817;-7819 -2766;-9982 -2766 1;-9961 -2569;-9870 -2413;-9707 -2299 1;-9545 -2184;-9327 -2126;-9055 -2126 1;-8881 -2126;-8708 -2141;-8542 -2171 1;-8372 -2205;-8234 -2246;-8127 -2292;-7999 -1517 1;-8051 -1493;-8119 -1468;-8204 -1440 1;-8289 -1416;-8385 -1395;-8492 -1378 1;-8594 -1356;-8706 -1339;-8824 -1326 1;-8944 -1314;-9063 -1307;-9182 -1307 18;-9982 -3418;-8723 -3418 1;-8725 -3500;-8740 -3578;-8768 -3655 1;-8789 -3732;-8824 -3800;-8875 -3860 1;-8922 -3920;-8984 -3968;-9061 -4006 1;-9134 -4045;-9225 -4065;-9337 -4065 1;-9444 -4065;-9535 -4045;-9612 -4006 1;-9688 -3974;-9752 -3927;-9803 -3867 1;-9855 -3807;-9895 -3737;-9925 -3655 1;-9950 -3578;-9970 -3500;-9982 -3418 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="38">-17051 -2126 1;-17269 -2126;-17437 -2210;-17557 -2383 1;-17675 -2557;-17736 -2792;-17736 -3085 1;-17736 -3380;-17675 -3610;-17557 -3777 1;-17437 -3946;-17269 -4034;-17051 -4034 1;-16834 -4034;-16668 -3946;-16552 -3777 1;-16433 -3610;-16373 -3380;-16373 -3085 1;-16373 -2792;-16433 -2557;-16552 -2383 1;-16668 -2210;-16834 -2126;-17051 -2126 18;-17064 -2593 1;-16944 -2591;-16842 -2808;-16838 -3077 1;-16834 -3347;-16928 -3567;-17049 -3569 1;-17170 -3571;-17271 -3354;-17275 -3084 1;-17280 -2815;-17185 -2595;-17064 -2593 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="89">-8496 3810 1;-8798 3810;-9062 3765;-9288 3677 1;-9510 3588;-9696 3466;-9845 3312 1;-9990 3154;-10098 2969;-10171 2756 1;-10240 2542;-10273 2311;-10273 2065 1;-10273 1766;-10230 1507;-10140 1285 1;-10045 1058;-9923 870;-9775 722 1;-9625 572;-9455 459;-9264 382 1;-9067 305;-8867 267;-8662 267 1;-8184 267;-7806 414;-7529 709 1;-7252 998;-7113 1426;-7113 1995 1;-7113 2050;-7116 2112;-7119 2180 1;-7124 2245;-7128 2301;-7132 2353;-9296 2353 1;-9273 2550;-9182 2704;-9020 2820 1;-8857 2934;-8640 2993;-8368 2993 1;-8193 2993;-8022 2978;-7855 2948 1;-7684 2912;-7546 2873;-7440 2826;-7311 3601 1;-7363 3626;-7431 3651;-7516 3677 1;-7603 3703;-7697 3724;-7804 3741 1;-7908 3763;-8017 3779;-8137 3793 1;-8257 3804;-8376 3810;-8496 3810 18;-9296 1700;-8034 1700 1;-8039 1618;-8054 1539;-8079 1464 1;-8101 1387;-8137 1318;-8189 1259 1;-8236 1199;-8297 1150;-8374 1112 1;-8445 1073;-8537 1053;-8649 1053 1;-8755 1053;-8847 1073;-8924 1112 1;-9001 1145;-9065 1192;-9115 1252 1;-9167 1312;-9207 1381;-9237 1464 1;-9264 1539;-9282 1618;-9296 1700 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="89">1726 3810 1;1422 3810;1159 3765;933 3677 1;712 3588;524 3466;376 3312 1;231 3154;123 2969;49 2756 1;-19 2542;-52 2311;-52 2065 1;-52 1766;-9 1507;81 1285 1;177 1058;298 870;446 722 1;596 572;766 459;958 382 1;1154 305;1354 267;1559 267 1;2038 267;2416 414;2692 709 1;2968 998;3109 1426;3109 1995 1;3109 2050;3105 2112;3102 2180 1;3097 2245;3094 2301;3088 2353;926 2353 1;947 2550;1039 2704;1201 2820 1;1364 2934;1581 2993;1854 2993 1;2029 2993;2199 2978;2365 2948 1;2538 2912;2675 2873;2782 2826;2910 3601 1;2859 3626;2790 3651;2705 3677 1;2619 3703;2524 3724;2417 3741 1;2314 3763;2204 3779;2084 3793 1;1965 3804;1846 3810;1726 3810 18;926 1700;2187 1700 1;2183 1618;2168 1539;2142 1464 1;2121 1387;2084 1318;2032 1259 1;1986 1199;1924 1150;1847 1112 1;1776 1073;1685 1053;1572 1053 1;1466 1053;1375 1073;1298 1112 1;1221 1145;1156 1192;1106 1252 1;1054 1312;1014 1381;984 1464 1;958 1539;939 1618;926 1700 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="89">5463 3810 1;5160 3810;4895 3765;4668 3677 1;4446 3588;4262 3466;4112 3312 1;3967 3154;3858 2969;3787 2756 1;3719 2542;3684 2311;3684 2065 1;3684 1766;3729 1507;3819 1285 1;3911 1058;4033 870;4183 722 1;4332 572;4503 459;4695 382 1;4891 305;5091 267;5297 267 1;5773 267;6151 414;6428 709 1;6706 998;6844 1426;6844 1995 1;6844 2050;6843 2112;6837 2180 1;6834 2245;6829 2301;6826 2353;4663 2353 1;4683 2550;4775 2704;4938 2820 1;5100 2934;5318 2993;5590 2993 1;5765 2993;5936 2978;6103 2948 1;6272 2912;6411 2873;6518 2826;6646 3601 1;6594 3626;6526 3651;6441 3677 1;6356 3703;6259 3724;6152 3741 1;6051 3763;5939 3779;5821 3793 1;5701 3804;5581 3810;5463 3810 18;4663 1700;5923 1700 1;5919 1618;5904 1539;5878 1464 1;5856 1387;5821 1318;5769 1259 1;5723 1199;5661 1150;5585 1112 1;5511 1073;5419 1053;5308 1053 1;5201 1053;5110 1073;5033 1112 1;4957 1145;4893 1192;4841 1252 1;4790 1312;4750 1381;4720 1464 1;4695 1539;4675 1618;4663 1700 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="87">17092 4924 1;16887 4924;16682 4905;16477 4867 1;16272 4832;16083 4785;15908 4725;16074 3926 1;16224 3986;16379 4032;16543 4067 1;16707 4101;16896 4119;17105 4119 1;17377 4119;17570 4059;17680 3939 1;17796 3819;17854 3666;17854 3479;17854 3357 1;17750 3404;17644 3441;17533 3466 1;17427 3487;17309 3498;17182 3498 1;16717 3498;16361 3361;16113 3087 1;15866 2811;15743 2424;15743 1930 1;15743 1683;15781 1458;15857 1259 1;15934 1053;16044 878;16189 733 1;16339 589;16521 478;16734 402 1;16947 320;17187 280;17457 280 1;17572 280;17689 286;17809 299 1;17931 307;18053 320;18173 337 1;18292 354;18405 375;18512 402 1;18624 422;18722 446;18806 472;18806 3299 1;18806 3849;18665 4257;18385 4522 1;18107 4790;17677 4924;17092 4924 18;17360 2730 1;17459 2730;17550 2718;17636 2691 1;17720 2666;17794 2636;17854 2603;17854 1080 1;17807 1072;17750 1065;17687 1060 1;17623 1052;17548 1047;17464 1047 1;17212 1047;17024 1130;16900 1297 1;16776 1464;16714 1675;16714 1930 1;16714 2463;16930 2730;17360 2730 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="38">-17051 2993 1;-17269 2993;-17437 2908;-17557 2736 1;-17675 2561;-17736 2326;-17736 2033 1;-17736 1738;-17675 1509;-17557 1342 1;-17437 1171;-17269 1085;-17051 1085 1;-16834 1085;-16668 1171;-16552 1342 1;-16433 1509;-16373 1738;-16373 2033 1;-16373 2326;-16433 2561;-16552 2736 1;-16668 2908;-16834 2993;-17051 2993 18;-17064 2526 1;-16944 2528;-16842 2311;-16838 2042 1;-16834 1772;-16928 1552;-17049 1550 1;-17170 1548;-17271 1765;-17275 2035 1;-17280 2304;-17185 2524;-17064 2526 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="22" min_area="0" patterns="0"/></symbol><object type="1"><coords count="74">-17051 3810 1;-17299 3810;-17525 3769;-17729 3684 1;-17931 3598;-18102 3479;-18247 3324 1;-18392 3168;-18505 2980;-18587 2763 1;-18669 2540;-18708 2298;-18708 2033 1;-18708 1768;-18669 1526;-18587 1310 1;-18502 1092;-18387 906;-18242 754 1;-18092 600;-17917 480;-17717 395 1;-17512 310;-17291 267;-17051 267 1;-16808 267;-16586 310;-16386 395 1;-16182 480;-16006 600;-15861 754 1;-15716 906;-15603 1092;-15523 1310 1;-15442 1526;-15401 1768;-15401 2033 1;-15401 2298;-15440 2540;-15517 2763 1;-15593 2980;-15703 3168;-15848 3324 1;-15993 3479;-16168 3598;-16373 3684 1;-16574 3769;-16800 3810;-17051 3810 18;-17051 2993 1;-16834 2993;-16668 2908;-16552 2736 1;-16433 2561;-16373 2326;-16373 2033 1;-16373 1738;-16433 1509;-16552 1342 1;-16668 1171;-16834 1085;-17051 1085 1;-17269 1085;-17437 1171;-17557 1342 1;-17675 1509;-17736 1738;-17736 2033 1;-17736 2326;-17675 2561;-17557 2736 1;-17437 2908;-17269 2993;-17051 2993 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="1794">17090 5390 1;16864 5390;16623 5362;16391 5321 1;16389 5320;16389 5320;16387 5320 1;16169 5284;15963 5240;15758 5170 1;15555 5102;15409 4847;15450 4637 1;15450 4635;15450 4634;15450 4632;15538 4221 1;15549 4165;15526 4109;15478 4079 1;15431 4049;15369 4052;15324 4088 1;15245 4152;15138 4191;15033 4191;14080 4191 1;13930 4193;13775 4107;13692 3983 1;13669 3944;13625 3921;13580 3921 1;13534 3921;13492 3944;13466 3983 1;13385 4107;13233 4191;13083 4191;12131 4191 1;12001 4191;11866 4131;11781 4032 1;11755 4004;11719 3987;11680 3987 1;11642 3987;11606 4004;11581 4032 1;11496 4131;11364 4191;11234 4191;10281 4191 1;10048 4193;9815 3957;9815 3724;9815 1796 1;9815 1758;9798 1721;9770 1697 1;9741 1670;9703 1658;9665 1663 1;9608 1670;9553 1668;9498 1655 1;9433 1638;9341 1618;9227 1597 1;9221 1595;9217 1593;9210 1592 1;9161 1582;9142 1582;9157 1584 1;9118 1578;9078 1590;9048 1615 1;9018 1640;9001 1678;9001 1716 1;9001 1716;9001 3724;9001 3724 1;9001 3957;8768 4193;8535 4191;7582 4191 1;7424 4191;7262 4099;7183 3962 1;7162 3926;7125 3900;7082 3894 1;7040 3889;6999 3902;6969 3932 1;6935 3966;6899 3996;6855 4016 1;6768 4059;6679 4092;6574 4124 1;6467 4157;6364 4178;6253 4195 1;6244 4197;6236 4199;6226 4202 1;6107 4227;5991 4240;5870 4254 1;5738 4267;5601 4279;5461 4279 1;5121 4279;4808 4231;4520 4120 1;4514 4118;4506 4114;4498 4110 1;4220 3998;3977 3840;3778 3636 1;3717 3566;3663 3494;3609 3412 1;3571 3361;3503 3344;3445 3371 1;3389 3396;3357 3459;3370 3521 1;3404 3711;3293 3930;3120 4016 1;3034 4060;2945 4092;2837 4124 1;2732 4157;2628 4178;2517 4195 1;2508 4197;2499 4199;2490 4202 1;2372 4227;2256 4240;2134 4254 1;2001 4267;1866 4279;1726 4279 1;1386 4279;1071 4231;785 4120 1;778 4118;771 4114;761 4110 1;562 4029;383 3917;218 3782 1;186 3757;145 3748;105 3757 1;64 3765;32 3793;13 3829 1;-35 3929;-124 4013;-229 4054 1;-362 4109;-512 4164;-678 4204 1;-871 4251;-1073 4266;-1303 4266 1;-1606 4266;-1876 4227;-2127 4126 1;-2355 4031;-2561 3892;-2717 3706 1;-2719 3701;-2721 3699;-2719 3702 1;-2716 3707;-2718 3706;-2721 3700 1;-2724 3694;-2734 3667;-2764 3624 1;-2799 3577;-2859 3558;-2915 3576 1;-2969 3594;-3007 3646;-3006 3704;-3006 3724 1;-3006 3957;-3239 4193;-3473 4191;-4427 4191 1;-4577 4193;-4730 4107;-4814 3983 1;-4838 3944;-4880 3921;-4927 3921 1;-4972 3921;-5013 3944;-5038 3983 1;-5122 4107;-5274 4191;-5421 4191;-6377 4191 1;-6533 4191;-6696 4099;-6777 3962 1;-6796 3926;-6833 3900;-6875 3894 1;-6916 3889;-6958 3902;-6988 3932 1;-7021 3966;-7059 3996;-7101 4016 1;-7101 4017;-7104 4016;-7104 4016 1;-7191 4059;-7278 4092;-7384 4124 1;-7489 4157;-7592 4178;-7704 4195 1;-7714 4197;-7722 4199;-7729 4199 1;-7731 4201;-7733 4202;-7735 4204 1;-7849 4227;-7966 4240;-8088 4254 1;-8221 4267;-8355 4279;-8496 4279 1;-8836 4279;-9151 4231;-9437 4120 1;-9444 4118;-9450 4114;-9461 4110 1;-9737 3998;-9980 3840;-10181 3635 1;-10185 3631;-10185 3628;-10186 3624 1;-10218 3591;-10250 3536;-10300 3470 1;-10333 3425;-10393 3404;-10450 3423 1;-10505 3440;-10541 3493;-10541 3549 1;-10541 3549;-10541 3724;-10541 3724 1;-10541 3957;-10774 4193;-11008 4191;-11961 4191 1;-12194 4193;-12427 3957;-12427 3724;-12427 1796 1;-12427 1758;-12444 1721;-12472 1697 1;-12501 1670;-12539 1658;-12577 1663 1;-12634 1670;-12689 1668;-12744 1655 1;-12809 1638;-12901 1618;-13015 1597 1;-13021 1595;-13026 1593;-13032 1592 1;-13081 1582;-13101 1582;-13086 1584 1;-13124 1578;-13164 1590;-13194 1615 1;-13224 1640;-13240 1678;-13240 1716;-13240 3724 1;-13240 3957;-13474 4193;-13707 4191;-14660 4191 1;-14893 4193;-15126 3957;-15126 3724;-15126 3532 1;-15126 3476;-15164 3423;-15218 3406 1;-15273 3387;-15335 3408;-15368 3455 1;-15420 3526;-15463 3591;-15511 3643 1;-15517 3651;-15517 3652;-15518 3656 1;-15703 3851;-15933 4002;-16189 4110 1;-16458 4224;-16748 4279;-17051 4279 1;-17346 4279;-17629 4225;-17889 4120 1;-17895 4118;-17902 4114;-17909 4112 1;-18160 4005;-18392 3849;-18580 3651 1;-18586 3643;-18587 3641;-18588 3637 1;-18776 3434;-18919 3196;-19017 2931 1;-19017 2931;-19017 2933;-19019 2927 1;-19122 2648;-19176 2350;-19176 2033 1;-19176 1718;-19123 1419;-19019 1142;-19019 1139 1;-18913 875;-18770 642;-18587 446 1;-18407 241;-18054 35;-17897 -33 1;-17894 -33;-17891 -35;-17889 -37 1;-17628 -143;-17344 -200;-17051 -200 1;-16755 -200;-16468 -143;-16206 -33 1;-15946 76;-15707 235;-15518 433 1;-15470 487;-15425 560;-15368 639 1;-15335 685;-15273 705;-15218 687 1;-15164 669;-15126 617;-15126 559;-15126 538 1;-15126 435;-15088 329;-15023 247 1;-14983 198;-14983 129;-15023 80 1;-15088 -1;-15126 -108;-15126 -211;-15126 -1586 1;-15126 -1644;-15164 -1696;-15218 -1714 1;-15273 -1733;-15335 -1712;-15368 -1666 1;-15420 -1594;-15463 -1529;-15506 -1483 1;-15508 -1478;-15511 -1474;-15517 -1465 1;-15701 -1271;-15928 -1115;-16189 -1005 1;-16463 -889;-16753 -841;-17051 -841 1;-17341 -841;-17624 -888;-17889 -995 1;-17895 -997;-17902 -1001;-17909 -1003 1;-18165 -1113;-18394 -1273;-18578 -1463 1;-18582 -1468;-18582 -1470;-18584 -1474 1;-18586 -1476;-18587 -1479;-18588 -1483 1;-18776 -1684;-18919 -1924;-19019 -2192 1;-19122 -2472;-19176 -2770;-19176 -3085 1;-19176 -3401;-19122 -3698;-19019 -3973 1;-18915 -4238;-18774 -4473;-18586 -4675 1;-18582 -4680;-18580 -4682;-18580 -4684 1;-18577 -4686;-18573 -4688;-18572 -4690 1;-18384 -4883;-18152 -5043;-17897 -5151 1;-17894 -5153;-17891 -5154;-17889 -5156 1;-17628 -5263;-17344 -5317;-17051 -5317 1;-16755 -5317;-16468 -5263;-16204 -5150 1;-15943 -5038;-15707 -4885;-15518 -4684 1;-15468 -4631;-15425 -4560;-15368 -4481 1;-15335 -4433;-15273 -4413;-15218 -4431 1;-15164 -4449;-15126 -4502;-15126 -4560 1;-15126 -4560;-15126 -4648;-15126 -4648 1;-15126 -4840;-14978 -5038;-14794 -5093 1;-14694 -5123;-14598 -5144;-14499 -5165 1;-14499 -5165;-14477 -5168;-14452 -5173 1;-14340 -5198;-14217 -5219;-14085 -5240 1;-13922 -5266;-13842 -5266;-13682 -5281 1;-13547 -5294;-13415 -5306;-13286 -5306 1;-12964 -5306;-12660 -5253;-12380 -5145 1;-12373 -5143;-12371 -5143;-12369 -5143 1;-12101 -5041;-11864 -4883;-11665 -4681 1;-11657 -4671;-11653 -4668;-11649 -4665 1;-11536 -4548;-11441 -4412;-11358 -4260 1;-11334 -4218;-11289 -4192;-11242 -4192 1;-11193 -4192;-11148 -4218;-11125 -4260 1;-11028 -4434;-10923 -4593;-10791 -4726 1;-10600 -4917;-10372 -5065;-10128 -5165 1;-10125 -5165;-10124 -5166;-10118 -5168 1;-9872 -5263;-9613 -5317;-9350 -5317 1;-8783 -5317;-8251 -5120;-7882 -4730 1;-7846 -4691;-7812 -4641;-7767 -4581 1;-7733 -4538;-7676 -4519;-7622 -4536 1;-7569 -4553;-7532 -4600;-7529 -4656 1;-7526 -4846;-7376 -5039;-7192 -5093 1;-6999 -5148;-6777 -5186;-6518 -5226 1;-6513 -5227;-6510 -5229;-6505 -5231 1;-6226 -5276;-5933 -5306;-5630 -5306 1;-5305 -5306;-5020 -5259;-4754 -5153 1;-4499 -5054;-4271 -4908;-4106 -4706 1;-3948 -4513;-3839 -4282;-3777 -4034 1;-3719 -3803;-3694 -3557;-3694 -3294;-3694 -1395 1;-3694 -1161;-3927 -927;-4160 -927;-5113 -927 1;-5263 -927;-5419 -1011;-5502 -1136 1;-5525 -1174;-5569 -1198;-5613 -1198 1;-5660 -1198;-5701 -1174;-5727 -1136 1;-5808 -1012;-5960 -927;-6110 -927;-7063 -927 1;-7220 -929;-7380 -1021;-7459 -1158 1;-7479 -1194;-7516 -1219;-7558 -1224 1;-7599 -1231;-7641 -1216;-7671 -1186 1;-7706 -1151;-7744 -1121;-7790 -1100 1;-7898 -1046;-7976 -1023;-8071 -995 1;-8178 -963;-8281 -942;-8392 -924 1;-8400 -923;-8409 -921;-8417 -920 1;-8419 -918;-8419 -916;-8421 -916 1;-8527 -894;-8644 -874;-8775 -861 1;-8917 -846;-9054 -841;-9183 -841 1;-9523 -841;-9837 -888;-10125 -999 1;-10132 -1003;-10138 -1004;-10148 -1010 1;-10205 -1033;-10261 -1066;-10333 -1102 1;-10380 -1126;-10438 -1119;-10478 -1085 1;-10520 -1051;-10537 -996;-10520 -944 1;-10481 -826;-10453 -709;-10453 -616 1;-10453 -441;-10525 -246;-10637 -67 1;-10667 -20;-10665 40;-10633 84 1;-10575 164;-10541 262;-10541 359;-10541 559 1;-10541 617;-10505 669;-10450 687 1;-10393 705;-10333 685;-10300 639 1;-10233 547;-10171 461;-10103 392 1;-9914 202;-9685 53;-9442 -45 1;-9439 -46;-9435 -48;-9433 -50 1;-9432 -50;-9431 -50;-9429 -50 1;-9183 -144;-8927 -200;-8662 -200 1;-8096 -200;-7562 -1;-7194 386;-7194 386 1;-7192 387;-7194 385;-7194 388 1;-7192 392;-7192 389;-7192 390;-7143 453;-7079 538 1;-7046 581;-6988 598;-6935 581 1;-6882 566;-6846 519;-6843 463 1;-6837 273;-6688 79;-6505 25 1;-6313 -30;-6091 -67;-5824 -110 1;-5540 -156;-5246 -186;-4944 -186 1;-4619 -186;-4332 -142;-4066 -35 1;-3813 64;-3584 211;-3419 414 1;-3404 432;-3387 477;-3347 534 1;-3315 585;-3254 609;-3195 590 1;-3139 574;-3101 519;-3103 459 1;-3103 459;-3103 -482;-3103 -482 1;-3103 -693;-2915 -908;-2706 -941;-1753 -1091 1;-1501 -1129;-1215 -886;-1215 -633;-1215 -241 1;-1215 -166;-1155 -108;-1082 -108;-537 -108 1;-323 -106;-109 82;-79 292 1;-70 342;-35 384;11 399 1;60 415;111 402;147 367 1;333 190;549 49;786 -47 1;1037 -144;1294 -200;1559 -200 1;2126 -200;2658 -1;3027 388 1;3144 513;3239 654;3317 805 1;3338 848;3383 875;3432 875 1;3481 876;3526 852;3550 808 1;3642 654;3737 510;3853 392 1;4045 202;4273 53;4521 -47;4521 -47 1;4521 -48;4520 -46;4522 -47 1;4529 -50;4527 -50;4527 -50 1;4773 -144;5031 -200;5295 -200 1;5861 -200;6394 -1;6763 388 1;6802 432;6839 480;6882 538 1;6914 581;6969 600;7022 585 1;7074 572;7112 529;7119 476 1;7140 310;7271 152;7427 97 1;7615 32;7831 -23;8080 -81 1;8085 -82;8083 -82;8083 -82 1;8360 -146;8654 -178;8965 -178 1;9028 -178;9099 -173;9168 -166 1;9182 -165;9190 -163;9205 -161 1;9278 -156;9347 -148;9415 -136 1;9437 -133;9445 -133;9447 -133 1;9507 -125;9570 -116;9635 -103 1;9681 -95;9728 -112;9758 -146 1;9788 -181;9800 -230;9785 -274 1;9745 -394;9718 -512;9718 -616 1;9718 -878;9838 -1186;10043 -1369 1;10048 -1372;10051 -1374;10058 -1380 1;10243 -1538;10508 -1644;10751 -1644 1;10994 -1644;11257 -1542;11452 -1373 1;11458 -1367;11460 -1365;11466 -1364 1;11671 -1177;11789 -869;11789 -616 1;11789 -441;11717 -246;11606 -67 1;11576 -18;11579 44;11619 94 1;11644 132;11678 151;11716 155 1;11753 159;11791 147;11817 122 1;11871 77;11935 44;12001 25 1;12194 -30;12416 -67;12682 -110 1;12967 -156;13260 -186;13564 -186 1;13889 -186;14173 -142;14439 -35 1;14695 64;14923 211;15088 414 1;15181 529;15253 669;15316 817 1;15337 863;15381 893;15431 897 1;15481 900;15529 874;15555 830 1;15641 673;15739 530;15862 404 1;16061 212;16299 65;16570 -35 1;16849 -140;17147 -186;17457 -186 1;17585 -186;17713 -174;17847 -161 1;17854 -161;17842 -163;17865 -161 1;17990 -153;18110 -138;18237 -120 1;18355 -103;18475 -82;18593 -58 1;18605 -52;18617 -50;18628 -50 1;18743 -26;18848 -1;18940 25 1;19124 80;19273 279;19273 472;19273 3299 1;19273 3915;19111 4466;18724 4844 1;18718 4850;18716 4852;18709 4858 1;18305 5243;17742 5390;17090 5390 18;-1305 3799 1;-1102 3799;-928 3780;-787 3748 1;-646 3712;-518 3673;-404 3626;-539 2884 1;-627 2918;-728 2946;-838 2966 1;-945 2984;-1050 2993;-1151 2993 1;-1365 2993;-1508 2933;-1581 2813 1;-1648 2694;-1683 2535;-1683 2333;-1683 1150;-539 1150;-539 357;-1683 357;-1683 -634;-2636 -481;-2636 2346 1;-2636 2565;-2618 2763;-2579 2941 1;-2536 3121;-2463 3274;-2361 3402 1;-2259 3526;-2123 3624;-1951 3696 1;-1781 3764;-1566 3799;-1305 3799 18;10752 -52 1;10906 -52;11038 -101;11149 -200 1;11264 -303;11323 -441;11323 -616 1;11323 -791;11264 -927;11149 -1026 1;11038 -1128;10906 -1179;10752 -1179 1;10600 -1179;10465 -1128;10350 -1026 1;10238 -927;10183 -791;10183 -616 1;10183 -441;10238 -303;10350 -200 1;10465 -101;10600 -52;10752 -52 18;10279 3722;11233 3722;11233 357;10279 357;10279 3722 18;-11963 3722;-11009 3722;-11009 357;-11963 357;-11963 3722 18;7581 3722;8534 3722;8534 1150 1;8575 1137;8637 1126;8718 1118 1;8804 1105;8877 1098;8937 1098 1;9069 1098;9191 1112;9306 1137 1;9424 1158;9523 1180;9608 1201;9768 414 1;9717 392;9655 375;9583 363 1;9510 345;9437 333;9365 325 1;9292 312;9220 303;9146 299 1;9075 290;9013 286;8962 286 1;8677 286;8415 314;8182 369 1;7950 420;7750 476;7581 536;7581 3722 18;12129 3722;13082 3722;13082 1125 1;13142 1115;13210 1110;13287 1105 1;13363 1097;13435 1092;13504 1092 1;13725 1092;13876 1156;13958 1285 1;14039 1411;14080 1630;14080 1937;14080 3722;15033 3722;15033 1821 1;15033 1592;15010 1381;14963 1195 1;14916 1007;14836 845;14726 709 1;14614 572;14463 467;14272 395 1;14083 318;13847 280;13562 280 1;13280 280;13012 301;12756 344 1;12499 382;12290 425;12129 472;12129 3722 18;15729 3616 1;15737 3607;15749 3596;15758 3588 1;15784 3562;15799 3528;15799 3491 1;15799 3491;15799 3489;15799 3487;15794 3440;15767 3400 1;15769 3404;15763 3384;15737 3354 1;15711 3321;15671 3303;15623 3306 1;15549 3318;15499 3374;15499 3441 1;15499 3441;15499 3524;15499 3524 1;15501 3579;15533 3628;15585 3648 1;15634 3667;15691 3656;15729 3616 18;-14662 3722;-13708 3722;-13708 1150 1;-13667 1137;-13605 1126;-13524 1118 1;-13439 1105;-13366 1098;-13306 1098 1;-13174 1098;-13051 1112;-12936 1137 1;-12819 1158;-12719 1180;-12634 1201;-12474 414 1;-12526 392;-12587 375;-12660 363 1;-12733 345;-12806 333;-12878 325 1;-12951 312;-13022 303;-13096 299 1;-13167 290;-13229 286;-13280 286 1;-13565 286;-13827 314;-14060 369 1;-14292 420;-14492 476;-14662 536;-14662 3722 18;-6378 3722;-5425 3722;-5425 1125 1;-5365 1115;-5297 1110;-5220 1105 1;-5143 1097;-5070 1092;-5002 1092 1;-4780 1092;-4628 1156;-4549 1285 1;-4467 1411;-4427 1630;-4427 1937;-4427 3722;-3474 3722;-3474 1821 1;-3474 1592;-3497 1381;-3544 1195 1;-3591 1007;-3669 845;-3781 709 1;-3890 572;-4042 467;-4235 395 1;-4422 318;-4658 280;-4945 280 1;-5227 280;-5495 301;-5751 344 1;-6007 382;-6217 425;-6378 472;-6378 3722 18;17092 4924 1;17677 4924;18107 4790;18385 4522 1;18665 4257;18806 3849;18806 3299;18806 472 1;18722 446;18624 422;18512 402 1;18405 375;18292 354;18173 337 1;18053 320;17931 307;17809 299 1;17689 286;17572 280;17457 280 1;17187 280;16947 320;16734 402 1;16521 478;16339 589;16189 733 1;16044 878;15934 1053;15857 1259 1;15781 1458;15743 1683;15743 1930 1;15743 2424;15866 2811;16113 3087 1;16361 3361;16717 3498;17182 3498 1;17309 3498;17427 3487;17533 3466 1;17644 3441;17750 3404;17854 3357;17854 3479 1;17854 3666;17796 3819;17680 3939 1;17570 4059;17377 4119;17105 4119 1;16896 4119;16707 4101;16543 4067 1;16379 4032;16224 3986;16074 3926;15908 4725 1;16083 4785;16272 4832;16477 4867 1;16682 4905;16887 4924;17092 4924 18;1726 3810 1;1846 3810;1965 3804;2084 3793 1;2204 3779;2314 3763;2417 3741 1;2524 3724;2619 3703;2705 3677 1;2790 3651;2859 3626;2910 3601;2782 2826 1;2675 2873;2538 2912;2365 2948 1;2199 2978;2029 2993;1854 2993 1;1581 2993;1364 2934;1201 2820 1;1039 2704;947 2550;926 2353;3088 2353 1;3094 2301;3097 2245;3102 2180 1;3105 2112;3109 2050;3109 1995 1;3109 1426;2968 998;2692 709 1;2416 414;2038 267;1559 267 1;1354 267;1154 305;958 382 1;766 459;596 572;446 722 1;298 870;177 1058;81 1285 1;-9 1507;-52 1766;-52 2065 1;-52 2311;-19 2542;49 2756 1;123 2969;231 3154;376 3312 1;524 3466;712 3588;933 3677 1;1159 3765;1422 3810;1726 3810 18;-8496 3810 1;-8376 3810;-8257 3804;-8137 3793 1;-8017 3779;-7908 3763;-7804 3741 1;-7697 3724;-7603 3703;-7516 3677 1;-7431 3651;-7363 3626;-7311 3601;-7440 2826 1;-7546 2873;-7684 2912;-7855 2948 1;-8022 2978;-8193 2993;-8368 2993 1;-8640 2993;-8857 2934;-9020 2820 1;-9182 2704;-9273 2550;-9296 2353;-7132 2353 1;-7128 2301;-7124 2245;-7119 2180 1;-7116 2112;-7113 2050;-7113 1995 1;-7113 1426;-7252 998;-7529 709 1;-7806 414;-8184 267;-8662 267 1;-8867 267;-9067 305;-9264 382 1;-9455 459;-9625 572;-9775 722 1;-9923 870;-10045 1058;-10140 1285 1;-10230 1507;-10273 1766;-10273 2065 1;-10273 2311;-10240 2542;-10171 2756 1;-10098 2969;-9990 3154;-9845 3312 1;-9696 3466;-9510 3588;-9288 3677 1;-9062 3765;-8798 3810;-8496 3810 18;-12484 -146 1;-12454 -181;-12442 -230;-12457 -274 1;-12497 -394;-12524 -512;-12524 -616 1;-12524 -619;-12502 -670;-12491 -753 1;-12484 -794;-12496 -836;-12524 -866 1;-12554 -896;-12594 -911;-12640 -905 1;-12765 -882;-12886 -866;-13002 -866 1;-13009 -866;-13043 -876;-13102 -878 1;-13139 -879;-13174 -866;-13199 -841 1;-13225 -814;-13240 -781;-13240 -745 1;-13240 -745;-13240 -300;-13240 -300 1;-13240 -230;-13188 -171;-13119 -166 1;-13079 -161;-13064 -165;-13074 -166;-13056 -164;-13037 -161 1;-12964 -156;-12895 -148;-12827 -136 1;-12806 -133;-12797 -133;-12795 -133;-12795 -132;-12793 -132;-12795 -133 1;-12735 -125;-12673 -116;-12607 -103 1;-12561 -95;-12514 -112;-12484 -146 18;-14662 -213;-13708 -213;-13708 -1479 1;-13602 -1432;-13492 -1395;-13377 -1371 1;-13261 -1346;-13137 -1333;-13006 -1333 1;-12765 -1333;-12556 -1376;-12373 -1461 1;-12189 -1546;-12034 -1666;-11911 -1819 1;-11788 -1972;-11694 -2156;-11629 -2368 1;-11566 -2582;-11535 -2819;-11535 -3078 1;-11535 -3348;-11574 -3591;-11657 -3808 1;-11732 -4027;-11846 -4210;-11995 -4358 1;-12144 -4513;-12328 -4630;-12544 -4711 1;-12763 -4796;-13009 -4838;-13287 -4838 1;-13402 -4838;-13524 -4833;-13652 -4819 1;-13776 -4811;-13898 -4798;-14022 -4781 1;-14142 -4765;-14257 -4743;-14369 -4716 1;-14478 -4697;-14576 -4673;-14662 -4646;-14662 -213 18;-17051 3810 1;-16800 3810;-16574 3769;-16373 3684 1;-16168 3598;-15993 3479;-15848 3324 1;-15703 3168;-15593 2980;-15517 2763 1;-15440 2540;-15401 2298;-15401 2033 1;-15401 1768;-15442 1526;-15523 1310 1;-15603 1092;-15716 906;-15861 754 1;-16006 600;-16182 480;-16386 395 1;-16586 310;-16808 267;-17051 267 1;-17291 267;-17512 310;-17717 395 1;-17917 480;-18092 600;-18242 754 1;-18387 906;-18502 1092;-18587 1310 1;-18669 1526;-18708 1768;-18708 2033 1;-18708 2298;-18669 2540;-18587 2763 1;-18505 2980;-18392 3168;-18247 3324 1;-18102 3479;-17931 3598;-17729 3684 1;-17525 3769;-17299 3810;-17051 3810 18;5463 3810 1;5581 3810;5701 3804;5821 3793 1;5939 3779;6051 3763;6152 3741 1;6259 3724;6356 3703;6441 3677 1;6526 3651;6594 3626;6646 3601;6518 2826 1;6411 2873;6272 2912;6103 2948 1;5936 2978;5765 2993;5590 2993 1;5318 2993;5100 2934;4938 2820 1;4775 2704;4683 2550;4663 2353;6826 2353 1;6829 2301;6834 2245;6837 2180 1;6843 2112;6844 2050;6844 1995 1;6844 1426;6706 998;6428 709 1;6151 414;5773 267;5297 267 1;5091 267;4891 305;4695 382 1;4503 459;4332 572;4183 722 1;4033 870;3911 1058;3819 1285 1;3729 1507;3684 1766;3684 2065 1;3684 2311;3719 2542;3787 2756 1;3858 2969;3967 3154;4112 3312 1;4262 3466;4446 3588;4668 3677 1;4895 3765;5160 3810;5463 3810 18;-1065 2521 1;-1018 2518;-969 2518;-911 2508 1;-910 2508;-909 2506;-907 2505 1;-830 2489;-762 2473;-704 2450 1;-702 2450;-700 2450;-698 2450 1;-670 2439;-642 2426;-612 2422 1;-545 2409;-500 2350;-503 2283 1;-509 2203;-520 2131;-520 2067 1;-520 1973;-502 1875;-490 1763 1;-487 1725;-500 1688;-525 1660 1;-550 1633;-586 1616;-623 1616;-1106 1616 1;-1170 1630;-1217 1687;-1215 1750;-1215 2333 1;-1215 2360;-1211 2386;-1206 2405 1;-1198 2474;-1136 2527;-1065 2521 18;-11490 -52 1;-11336 -52;-11204 -101;-11093 -200 1;-10978 -303;-10920 -441;-10920 -616 1;-10920 -791;-10978 -927;-11093 -1026 1;-11204 -1128;-11336 -1179;-11490 -1179 1;-11642 -1179;-11777 -1128;-11893 -1026 1;-12004 -927;-12059 -791;-12059 -616 1;-12059 -441;-12004 -303;-11893 -200 1;-11777 -101;-11642 -52;-11490 -52 18;-17051 -1307 1;-16800 -1307;-16574 -1349;-16373 -1434 1;-16168 -1521;-15993 -1639;-15848 -1794 1;-15703 -1951;-15593 -2139;-15517 -2355 1;-15440 -2579;-15401 -2820;-15401 -3085 1;-15401 -3350;-15442 -3591;-15523 -3808 1;-15603 -4027;-15716 -4211;-15861 -4365 1;-16006 -4518;-16182 -4638;-16386 -4723 1;-16586 -4808;-16808 -4851;-17051 -4851 1;-17291 -4851;-17512 -4808;-17717 -4723 1;-17917 -4638;-18092 -4518;-18242 -4365 1;-18387 -4211;-18502 -4027;-18587 -3808 1;-18669 -3591;-18708 -3350;-18708 -3085 1;-18708 -2820;-18669 -2579;-18587 -2355 1;-18505 -2139;-18392 -1951;-18247 -1794 1;-18102 -1639;-17931 -1521;-17729 -1434 1;-17525 -1349;-17299 -1307;-17051 -1307 18;-7064 -1395;-6112 -1395;-6112 -3993 1;-6052 -4004;-5983 -4008;-5907 -4013 1;-5830 -4021;-5759 -4027;-5690 -4027 1;-5468 -4027;-5317 -3961;-5235 -3833 1;-5155 -3707;-5113 -3488;-5113 -3182;-5113 -1395;-4160 -1395;-4160 -3296 1;-4160 -3527;-4183 -3737;-4230 -3923 1;-4277 -4111;-4357 -4273;-4467 -4410 1;-4579 -4547;-4730 -4652;-4921 -4723 1;-5110 -4800;-5347 -4838;-5631 -4838 1;-5913 -4838;-6181 -4818;-6438 -4774 1;-6694 -4736;-6903 -4693;-7064 -4646;-7064 -1395 18;-11099 -1644 1;-11068 -1689;-11067 -1748;-11095 -1794 1;-11120 -1834;-11128 -1842;-11120 -1827 1;-11143 -1872;-11189 -1899;-11242 -1899 1;-11246 -1897;-11251 -1895;-11258 -1894 1;-11298 -1887;-11332 -1862;-11353 -1827 1;-11358 -1822;-11364 -1814;-11375 -1799 1;-11394 -1761;-11396 -1718;-11379 -1679 1;-11362 -1639;-11328 -1611;-11287 -1602 1;-11257 -1596;-11240 -1594;-11242 -1594 1;-11188 -1581;-11133 -1601;-11099 -1644 18;-9182 -1307 1;-9063 -1307;-8944 -1314;-8824 -1326 1;-8706 -1339;-8594 -1356;-8492 -1378 1;-8385 -1395;-8289 -1416;-8204 -1440 1;-8119 -1468;-8051 -1493;-7999 -1517;-8127 -2292 1;-8234 -2246;-8372 -2205;-8542 -2171 1;-8708 -2141;-8881 -2126;-9055 -2126 1;-9327 -2126;-9545 -2184;-9707 -2299 1;-9870 -2413;-9961 -2569;-9982 -2766;-7819 -2766 1;-7816 -2817;-7810 -2873;-7808 -2939 1;-7803 -3007;-7801 -3069;-7801 -3123 1;-7801 -3692;-7939 -4120;-8217 -4410 1;-8494 -4705;-8872 -4851;-9349 -4851 1;-9553 -4851;-9754 -4813;-9950 -4736 1;-10141 -4660;-10314 -4547;-10462 -4396 1;-10611 -4248;-10733 -4060;-10827 -3833 1;-10917 -3612;-10962 -3352;-10962 -3054 1;-10962 -2807;-10926 -2575;-10858 -2362 1;-10787 -2149;-10678 -1964;-10533 -1806 1;-10383 -1652;-10198 -1530;-9976 -1440 1;-9750 -1352;-9485 -1307;-9182 -1307 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="25" min_area="0" patterns="0"/></symbol><object type="1"><coords count="572">16428 5964 1;15493 5816;15156 5633;14905 5136 1;14842 5010;14767 4893;14739 4875 1;14686 4843;13829 4769;13588 4777 1;13511 4779;12673 4786;11726 4791;10003 4801;9412 4491;8810 4801;8189 4815 1;7703 4826;7501 4814;7261 4759 1;6957 4690;6950 4690;6521 4785 1;6170 4863;5974 4881;5488 4880;5457 4880 1;4811 4880;4563 4831;4074 4600 1;3912 4524;3745 4461;3703 4461 1;3660 4461;3540 4504;3437 4556 1;2881 4838;1858 4973;1148 4859 1;1005 4835;741 4765;560 4703 1;206 4579;201 4579;-280 4737 1;-640 4854;-1173 4915;-1564 4883 1;-1876 4858;-2085 4806;-2522 4644 1;-2687 4583;-2700 4585;-2962 4691 1;-3221 4796;-3260 4801;-3912 4799 1;-4286 4797;-4700 4791;-4832 4785 1;-4964 4779;-5368 4786;-5729 4802 1;-6286 4827;-6433 4820;-6697 4760 1;-7003 4690;-7012 4690;-7420 4779 1;-8263 4964;-9117 4926;-9699 4679 1;-10091 4513;-10177 4511;-10482 4666;-10748 4801;-12238 4801;-12541 4645;-12844 4489;-13138 4645;-13432 4801;-14922 4801;-15208 4663 1;-15529 4507;-15467 4502;-16152 4744 1;-16831 4984;-17621 4945;-18238 4642 1;-19010 4261;-19482 3685;-19691 2865 1;-19908 2013;-19801 1156;-19391 468 1;-19227 194;-19067 14;-18762 -238 1;-18460 -488;-18462 -552;-18772 -793 1;-19030 -993;-19347 -1393;-19507 -1720 1;-19700 -2113;-19789 -2552;-19789 -3099 1;-19788 -3688;-19727 -3966;-19489 -4450 1;-19192 -5057;-18572 -5590;-17912 -5806 1;-17374 -5984;-16546 -5988;-15770 -5633;-15447 -5485;-15239 -5576 1;-14740 -5794;-14092 -5908;-13352 -5909 1;-12569 -5909;-12118 -5779;-11532 -5381 1;-11433 -5314;-11315 -5259;-11270 -5259 1;-11225 -5259;-11047 -5352;-10875 -5465 1;-10015 -6029;-9078 -6079;-8023 -5616;-7813 -5524;-7443 -5648 1;-6638 -5917;-5482 -5996;-4840 -5824 1;-4236 -5663;-3768 -5339;-3467 -4873 1;-3148 -4378;-3090 -4073;-3064 -2779 1;-3052 -2196;-3026 -1687;-3006 -1649 1;-2959 -1560;-2787 -1559;-2312 -1644 1;-2114 -1679;-1835 -1709;-1691 -1709 1;-1229 -1712;-888 -1486;-654 -1024 1;-541 -799;-528 -788;-245 -681 1;187 -519;243 -518;668 -662 1;965 -763;1135 -795;1448 -809 1;2091 -837;2566 -704;3131 -337 1;3264 -250;3400 -179;3432 -179 1;3464 -179;3619 -259;3777 -358 1;4137 -581;4287 -644;4688 -741 1;5298 -888;5896 -821;6519 -534;6870 -372;7177 -478 1;7625 -633;8076 -733;8550 -781 1;9020 -829;9105 -876;9182 -1133 1;9308 -1554;9694 -1943;10095 -2129 1;10456 -2299;11045 -2279;11428 -2095 1;11880 -1878;12170 -1593;12329 -1108 1;12441 -766;12455 -756;12815 -779 1;14010 -855;14639 -730;15238 -297 1;15327 -232;15435 -179;15479 -179 1;15522 -179;15686 -258;15843 -355 1;16603 -824;17454 -922;18651 -679 1;19204 -567;19417 -469;19628 -230 1;19900 79;19908 145;19908 1951;19908 2068 1;19908 3651;19886 3934;19718 4401 1;19503 5000;19140 5402;18544 5703 1;18007 5974;17155 6079;16428 5964 18;17928 5561 1;18700 5363;19232 4845;19456 4071 1;19512 3877;19525 3576;19538 2141 1;19550 942;19541 396;19509 289 1;19438 50;19214 -170;18973 -238 1;18265 -438;17233 -498;16751 -367 1;16348 -257;15993 -62;15706 208;15444 456;15306 271 1;15116 17;14791 -194;14388 -327 1;14080 -428;13997 -439;13508 -436 1;13048 -433;12442 -364;12083 -274 1;12000 -253;11998 -259;12035 -436 1;12080 -647;12030 -945;11908 -1199 1;11636 -1762;10897 -2045;10292 -1817 1;9806 -1635;9468 -1148;9468 -632;9468 -407;9216 -431 1;8866 -464;8256 -399;7783 -280 1;7323 -163;7201 -108;7046 57;6934 175;6772 37 1;5907 -704;4382 -591;3607 271;3424 474;3360 377 1;3119 21;2522 -336;2023 -420 1;1440 -518;756 -394;341 -114;129 29;28 -91 1;-139 -289;-354 -379;-661 -379;-932 -379;-932 -509 1;-933 -750;-1017 -955;-1187 -1124 1;-1437 -1374;-1550 -1391;-2246 -1283 1;-2569 -1232;-2887 -1163;-2953 -1129 1;-3248 -975;-3372 -718;-3372 -258;-3372 65;-3550 -58 1;-3801 -230;-4065 -337;-4405 -402 1;-4781 -475;-5094 -474;-5671 -398 1;-6502 -289;-6766 -202;-6943 24;-7040 149;-7232 3 1;-7499 -201;-7690 -292;-8042 -381 1;-8755 -564;-9576 -395;-10120 47 1;-10278 175;-10291 178;-10328 108 1;-10358 53;-10348 -23;-10289 -176 1;-10246 -291;-10206 -465;-10202 -563 1;-10196 -705;-10182 -736;-10133 -716 1;-9610 -509;-8452 -550;-7836 -799 1;-7626 -884;-7587 -889;-7532 -839 1;-7372 -694;-7184 -659;-6575 -659;-6548 -659 1;-5984 -659;-5837 -684;-5685 -810 1;-5627 -859;-5602 -854;-5492 -772 1;-5374 -686;-5322 -678;-4739 -666 1;-4055 -652;-3888 -680;-3692 -845 1;-3432 -1064;-3432 -1066;-3434 -2479 1;-3436 -3540;-3448 -3805;-3503 -4029 1;-3693 -4791;-4168 -5277;-4922 -5483 1;-5261 -5575;-6112 -5566;-6698 -5463 1;-7272 -5363;-7461 -5289;-7610 -5109;-7726 -4968;-7879 -5088 1;-8814 -5825;-10355 -5685;-11073 -4798;-11235 -4596;-11494 -4860 1;-11783 -5155;-12156 -5370;-12572 -5482 1;-13108 -5626;-14450 -5523;-14960 -5299 1;-15058 -5256;-15175 -5160;-15239 -5069;-15350 -4913;-15611 -5103 1;-16440 -5704;-17556 -5733;-18389 -5176 1;-18763 -4926;-18970 -4689;-19174 -4279 1;-19544 -3536;-19541 -2623;-19167 -1859 1;-18698 -903;-17669 -417;-16549 -623 1;-16267 -675;-15788 -888;-15574 -1057;-15421 -1179;-15405 -589 1;-15394 -169;-15373 26;-15332 89 1;-15235 239;-15319 237;-15504 86 1;-16274 -546;-17402 -634;-18285 -132 1;-19617 624;-19853 2734;-18732 3863 1;-17912 4689;-16505 4772;-15566 4050;-15379 3907;-15333 4019 1;-15270 4170;-15105 4323;-14923 4399 1;-14712 4487;-13672 4487;-13461 4399 1;-13264 4317;-13137 4195;-13048 4001 1;-12982 3860;-12974 3728;-12973 2871;-12973 2823 1;-12972 1843;-12978 1874;-12782 1926;-12692 1950 1;-12692 3973;-12680 4038;-12439 4250 1;-12222 4440;-12067 4471;-11387 4455 1;-10804 4441;-10780 4438;-10624 4329 1;-10492 4238;-10413 4134;-10306 3908 1;-10303 3901;-10213 3963;-10106 4044 1;-9632 4408;-9047 4566;-8312 4528 1;-7825 4503;-7365 4416;-7096 4297 1;-6933 4226;-6914 4225;-6848 4284 1;-6702 4417;-6483 4457;-5908 4459 1;-5355 4461;-5138 4426;-5010 4317 1;-4958 4272;-4918 4279;-4753 4362 1;-4571 4454;-4518 4461;-3955 4460 1;-3267 4459;-3106 4414;-2910 4168;-2797 4027;-2623 4147 1;-2311 4362;-2052 4456;-1635 4505 1;-1021 4577;-348 4454;37 4200;186 4101;437 4238 1;800 4435;1069 4503;1588 4529 1;1962 4547;2134 4535;2508 4464 1;3072 4358;3355 4230;3495 4017 1;3552 3931;3607 3861;3617 3861 1;3627 3861;3710 3925;3802 4004 1;4053 4219;4484 4414;4868 4487 1;5440 4594;6391 4505;6861 4299;7033 4223;7198 4332 1;7357 4438;7382 4441;8005 4453 1;8611 4465;8658 4460;8826 4373 1;8923 4323;9058 4212;9126 4127;9248 3974;9260 2937;9272 1901;9360 1902 1;9541 1903;9543 1914;9556 2969;9568 3974;9690 4127 1;9758 4212;9892 4322;9989 4371 1;10149 4453;10221 4461;10767 4460 1;11260 4459;11397 4446;11528 4387 1;11682 4317;11694 4317;11848 4387 1;11979 4446;12117 4459;12611 4460 1;13162 4461;13230 4453;13396 4369;13577 4278;13732 4359 1;13871 4432;13961 4441;14551 4441;15214 4441;15197 4626 1;15173 4869;15240 5059;15408 5233 1;15568 5397;15799 5483;16366 5586 1;16835 5672;17538 5661;17928 5561;17928 5561 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="31">-13184 -2139 1;-13282 -2139;-13381 -2152;-13479 -2177 1;-13572 -2202;-13648 -2234;-13708 -2274;-13708 -3993 1;-13662 -4004;-13602 -4008;-13530 -4013 1;-13457 -4021;-13379 -4027;-13293 -4027 1;-13032 -4027;-12837 -3936;-12704 -3756 1;-12572 -3582;-12506 -3348;-12506 -3054 1;-12506 -2443;-12733 -2139;-13184 -2139 18;-13248 -2631 1;-13034 -2631;-12976 -2876;-12976 -3090 1;-12976 -3284;-13054 -3505;-13248 -3506;-13248 -2631 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element><element><symbol type="4" code=""><area_symbol inner_color="4" min_area="0" patterns="0"/></symbol><object type="1"><coords count="31">17360 2730 1;16930 2730;16714 2463;16714 1930 1;16714 1675;16776 1464;16900 1297 1;17024 1130;17212 1047;17464 1047 1;17548 1047;17623 1052;17687 1060 1;17750 1065;17807 1072;17854 1080;17854 2603 1;17794 2636;17720 2666;17636 2691 1;17550 2718;17459 2730;17360 2730 18;17409 2232;17409 1571 1;17201 1492;17180 1713;17180 1926 1;17178 2120;17192 2338;17409 2232 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object></element></point_symbol></symbol>
</symbols>
<parts count="1" current="0">
<part name="default part"><objects count="458">
<object type="0" symbol="96"><tags><t k="osm_id">2320499656</t><t k="natural">tree</t><t k="osm_timestamp">2013/05/26 10:25:43+00</t></tags><coords count="1">-70173 39625;</coords></object>
<object type="0" symbol="96"><tags><t k="osm_id">2320499657</t><t k="natural">tree</t><t k="osm_timestamp">2013/05/26 10:25:43+00</t></tags><coords count="1">-69668 34486;</coords></object>
<object type="0" symbol="96"><tags><t k="osm_id">2320499658</t><t k="natural">tree</t><t k="osm_timestamp">2013/05/26 10:25:43+00</t></tags><coords count="1">-69025 27314;</coords></object>
<object type="0" symbol="96"><tags><t k="osm_id">2320499659</t><t k="natural">tree</t><t k="osm_timestamp">2013/05/26 10:25:43+00</t></tags><coords count="1">-69379 18927;</coords></object>
<object type="0" symbol="96"><tags><t k="osm_id">2320499660</t><t k="natural">tree</t><t k="osm_timestamp">2013/05/26 10:25:43+00</t></tags><coords count="1">-71034 6483;</coords></object>
<object type="0" symbol="144"><tags><t k="osm_id">2973013119</t><t k="osm_timestamp">2015/11/17 13:46:55+00</t><t k="man_made">chimney</t></tags><coords count="1">-6737 38908;</coords></object>
<object type="0" symbol="151"><tags><t k="osm_id">4456414589</t><t k="name">Скульптура</t><t k="tourism">artwork</t><t k="osm_timestamp">2018/04/18 18:47:24+00</t><t k="other_tags">"artwork_type"=>"statue","name:ru"=>"Скульптура"</t></tags><coords count="1">32984 17042;</coords></object>
<object type="0" symbol="151"><tags><t k="osm_id">5562674749</t><t k="amenity">bench</t><t k="osm_timestamp">2018/04/18 18:47:24+00</t><t k="other_tags">"backrest"=>"yes","material"=>"wood"</t></tags><coords count="1">31237 13949;</coords></object>
<object type="1" symbol="106"><tags><t k="osm_id">25229423</t><t k="name">Старовиленский тракт</t><t k="surface">asphalt</t><t k="highway">residential</t><t k="z_order">3</t><t k="osm_timestamp">2017/07/21 08:20:29+00</t><t k="other_tags">"int_name"=>"Staravilienski trakt","name:be"=>"Старавіленскі тракт","name:ru"=>"Старовиленский тракт"</t></tags><coords count="5">103675 -66596;104943 -64163;106962 -62082;109730 -59135;118105 -42683;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">25388171</t><t k="building">yes</t><t k="z_order">0</t><t k="osm_timestamp">2020/02/14 14:54:39+00</t><t k="other_tags">"addr:housenumber"=>"28","addr:street"=>"Нововиленская улица"</t></tags><coords count="12">37226 -61933;37768 -62172;37336 -63088;39816 -64227;40301 -63215;47131 -66436;47410 -65810;47843 -64906;47151 -64574;47799 -63221;38691 -58873;37226 -61933;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">25388172</t><t k="name">Подстанция №8 скорой медицинской помощи</t><t k="building">hospital</t><t k="z_order">0</t><t k="osm_timestamp">2018/04/18 18:47:24+00</t><t k="other_tags">"addr:housenumber"=>"64","addr:street"=>"Орловская улица","building:levels"=>"1"</t></tags><coords count="6">58073 12564;65678 9275;67393 13222;63591 14867;59787 16515;58073 12564;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">25388178</t><t k="name">Гинекологический корпус</t><t k="building">hospital</t><t k="z_order">0</t><t k="osm_timestamp">2019/04/03 05:34:35+00</t><t k="other_tags">"addr:housenumber"=>"66 к3","addr:street"=>"Орловская улица","building:levels"=>"5","healthcare:speciality"=>"gynaecology","roof:colour"=>"blue"</t></tags><coords count="18">48872 -6816;58939 5567;55127 8642;52940 5944;54101 5007;49560 -594;48440 -1966;47255 -966;47772 117;48122 853;47551 1125;47801 1651;38383 6117;36869 2939;42923 67;42005 -999;42954 -1807;48872 -6816;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">25388182</t><t k="building">yes</t><t k="z_order">0</t><t k="osm_timestamp">2009/04/10 01:02:25+00</t></tags><coords count="5">54661 -74535;79427 -86337;81526 -81951;56759 -70148;54661 -74535;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">25389145</t><t k="name">Пищеблок</t><t k="building">yes</t><t k="z_order">0</t><t k="osm_timestamp">2019/04/03 05:34:35+00</t><t k="other_tags">"addr:housenumber"=>"66 к11","addr:street"=>"Орловская улица","building:levels"=>"1"</t></tags><coords count="13">1813 27879;2984 27342;2671 26663;4322 25904;4698 26718;5644 26281;7950 31284;7106 31672;7456 32431;5831 33178;5529 32524;4230 33122;1813 27879;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">25389164</t><t k="name">Педиатрический корпус</t><t k="building">hospital</t><t k="z_order">0</t><t k="osm_timestamp">2018/04/18 18:47:25+00</t><t k="other_tags">"addr:housenumber"=>"66 к4","addr:street"=>"Орловская улица","building:levels"=>"3","roof:colour"=>"blue"</t></tags><coords count="18">12529 15012;24258 9418;23737 8330;24941 7758;26205 7154;26752 8291;36071 3840;37351 6510;27257 11333;27768 12398;26367 13047;24894 13752;24417 12736;19278 15139;19563 15744;16931 16975;14111 18321;12529 15012;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">25389170</t><t k="building">yes</t><t k="z_order">0</t><t k="osm_timestamp">2013/12/13 04:08:20+00</t><t k="other_tags">"addr:housenumber"=>"21 к3","addr:street"=>"Нововиленская улица"</t></tags><coords count="17">-7519 3102;-4748 1668;-2876 5275;3652 1898;3139 913;11459 -3392;13694 913;12003 1788;11359 549;6549 3035;7185 4258;5424 5168;4156 2727;-2452 6146;141 11138;-2608 12561;-7519 3102;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">25389177</t><t k="name">Пищеблок</t><t k="building">yes</t><t k="z_order">0</t><t k="osm_timestamp">2019/04/03 05:34:35+00</t><t k="other_tags">"addr:housenumber"=>"66 к5","addr:street"=>"Орловская улица","building:levels"=>"1"</t></tags><coords count="11">3198 18866;6421 17346;8875 22527;9833 22075;10582 23655;8324 24719;7559 23107;6756 23486;5644 24017;5166 23016;3198 18866;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">25389179</t><t k="name">Лаборатории научного отдела</t><t k="building">hospital</t><t k="z_order">0</t><t k="osm_timestamp">2019/04/03 05:34:35+00</t><t k="other_tags">"addr:housenumber"=>"66 к8Б","addr:postcode"=>"220053","addr:street"=>"Орловская улица","building:levels"=>"2"</t></tags><coords count="9">-23775 38838;-26277 39983;-27149 38089;-31875 40259;-29216 45728;-30155 46183;-29386 47769;-21330 43863;-23775 38838;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">25389208</t><t k="building">service</t><t k="power">substation</t><t k="z_order">0</t><t k="osm_timestamp">2020/03/13 13:29:23+00</t><t k="other_tags">"building:levels"=>"1","substation"=>"minor_distribution"</t></tags><coords count="5">2773 38732;4912 37719;5732 39444;3591 40457;2773 38732;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">25434964</t><t k="building">residential</t><t k="z_order">0</t><t k="osm_timestamp">2018/01/13 13:21:53+00</t><t k="other_tags">"addr:housenumber"=>"26","addr:street"=>"Нововиленская улица","building:levels"=>"9"</t></tags><coords count="17">47739 -61452;51247 -63110;53980 -57340;54457 -57564;55006 -56404;51238 -54624;51989 -53041;52844 -53444;54454 -50044;51340 -48573;48594 -54372;48051 -54115;47815 -54615;51122 -56176;50341 -57825;49619 -57483;47739 -61452;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">52158722</t><t k="building">yes</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:18:30+00</t></tags><coords count="10">-46687 34942;-42770 43084;-45371 44409;-44921 45297;-46698 46162;-47111 45288;-48164 45774;-53555 34453;-50483 36746;-46687 34942;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">70204793</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2011/11/18 14:17:24+00</t><t k="other_tags">"bicycle"=>"yes"</t></tags><coords count="2">-71386 69609;-68737 66716;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">70204808</t><t k="foot">yes</t><t k="highway">footway</t><t k="z_order">20</t><t k="osm_timestamp">2017/01/26 21:41:59+00</t><t k="other_tags">"bicycle"=>"yes","bridge"=>"yes","layer"=>"1"</t></tags><coords count="2">-86465 80045;-69865 76605;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">70204830</t><t k="foot">yes</t><t k="highway">footway</t><t k="z_order">20</t><t k="osm_timestamp">2019/09/30 10:38:00+00</t><t k="other_tags">"bicycle"=>"yes","bridge"=>"yes","layer"=>"1"</t></tags><coords count="2">-88020 72927;-71386 69609;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">70205174</t><t k="foot">yes</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2017/01/26 17:10:13+00</t><t k="other_tags">"bicycle"=>"yes"</t></tags><coords count="3">-64690 62117;-68351 59412;-71296 57433;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">87134822</t><t k="building">service</t><t k="power">substation</t><t k="z_order">0</t><t k="osm_timestamp">2020/03/13 13:29:00+00</t><t k="other_tags">"building:levels"=>"1","substation"=>"minor_distribution"</t></tags><coords count="5">9095 17247;10432 16630;11266 18428;9927 19046;9095 17247;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">117221987</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:48+00</t></tags><coords count="2">-32841 16792;-28857 25194;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><tags><t k="osm_id">117221989</t><t k="z_order">0</t><t k="osm_timestamp">2017/06/07 20:33:08+00</t><t k="barrier">fence</t></tags><coords count="17">-40575 17276;-26635 10569;-22964 18224;-12596 20946;63 14251;402 15071;954 16003;51732 -11427;63297 2882;66262 6773;54978 11732;60352 22366;59729 23728;11073 46666;6003 42452;3906 43389;902 44627 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">129301013</t><t k="surface">asphalt</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2017/05/12 22:09:34+00</t><t k="other_tags">"bicycle"=>"yes","oneway"=>"yes"</t></tags><coords count="4">-34072 66950;-32451 65695;-31598 64631;-31186 63235;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">141046936</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2013/10/02 12:30:46+00</t></tags><coords count="3">59583 -45971;58469 -48336;55207 -54572;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">173760831</t><t k="foot">yes</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2012/07/31 13:24:57+00</t><t k="other_tags">"bicycle"=>"yes"</t></tags><coords count="3">-70867 76928;-72989 66569;-68481 59399 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">173775951</t><t k="foot">yes</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2019/08/27 13:14:08+00</t><t k="other_tags">"bicycle"=>"yes"</t></tags><coords count="5">-72859 66582;-71296 57433;-67928 30402;-68153 18148;-68645 13617;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">197438085</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2014/02/19 17:57:48+00</t></tags><coords count="8">80100 -55662;77531 -57333;77205 -57732;75530 -61047;73229 -60972;73253 -60180;74996 -56681;75194 -56232 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">197438087</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2019/02/18 18:02:26+00</t></tags><coords count="5">116258 -34043;114874 -36600;111655 -40966;107219 -43199;106448 -43290 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><tags><t k="osm_id">197438232</t><t k="z_order">0</t><t k="osm_timestamp">2020/02/14 14:54:39+00</t><t k="barrier">fence</t></tags><coords count="11">47374 -78688;49109 -74763;52108 -67974;60384 -49697;62911 -50947;70527 -54376;74996 -56681;77205 -57732;90804 -64132;89561 -66526;87123 -69336;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">197440399</t><t k="building">yes</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:13:50+00</t><t k="other_tags">"addr:housenumber"=>"70","addr:street"=>"Орловская улица"</t></tags><coords count="76">-54069 44616;-55301 44596;-55338 46514;-54579 46563;-54049 46823;-53555 47173;-53366 47525;-51170 47530;-51247 50393;-50667 50401;-49985 50934;-49403 50939;-49429 51752;-48842 51835;-48296 52087;-47775 52542;-47472 53058;-45615 53124;-45562 51997;-45558 51594;-44349 51636;-43601 52078;-42299 52104;-42323 52788;-41497 53250;-39805 54198;-41404 54147;-42377 54115;-42378 54425;-43150 54979;-43175 55556;-43919 55561;-44693 56147;-46384 56082;-46354 55462;-47815 55386;-48434 55864;-49211 56121;-49950 56064;-50643 55796;-51218 55279;-51578 54578;-51668 53691;-51442 52944;-50983 52356;-52118 52303;-52098 51974;-52621 51952;-53180 51443;-53660 51406;-53572 50145;-54219 50633;-54906 50838;-55671 50803;-56385 50528;-56947 50014;-57306 49282;-57396 48432;-57175 47736;-56766 47116;-56536 46953;-57704 46933;-57698 46490;-58158 46473;-58064 41831;-57463 40784;-56714 40793;-56161 39725;-56103 36524;-54675 39364;-53949 39384;-53972 40794;-53548 41626;-53557 42238;-54001 42229;-54069 44616;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">197477503</t><t k="name">Прачечная, дезблок</t><t k="building">hospital</t><t k="z_order">0</t><t k="osm_timestamp">2019/04/03 05:34:36+00</t><t k="other_tags">"addr:housenumber"=>"66 к12","addr:street"=>"Орловская улица","building:levels"=>"2"</t></tags><coords count="14">-5670 41674;-3923 40864;-3746 41249;-1606 40255;-2830 37619;-5399 38811;-6235 37009;-2543 35300;-1410 34774;1728 41528;-137 42392;902 44627;-3387 46607;-5670 41674;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">197482061</t><t k="surface">asphalt</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2017/08/10 16:15:48+00</t></tags><coords count="6">-7534 23091;563 18768;11460 13473;40797 -1357;50048 -8928;50629 -8305;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">197482062</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2017/05/12 22:09:33+00</t></tags><coords count="6">-3826 25521;-2145 29513;1133 36981;3254 41881;3906 43389;4316 44336 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">197482499</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2012/12/21 07:56:43+00</t></tags><coords count="4">25697 35420;12606 41315;7062 40242;3254 41881;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">197482500</t><t k="surface">asphalt</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:47+00</t></tags><coords count="5">-3826 25521;2394 22432;563 18768;-951 15772;402 15071;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">197482501</t><t k="surface">asphalt</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2019/01/28 18:55:29+00</t></tags><coords count="10">1133 36981;18667 28670;31155 22757;36642 18031;39167 15359;41065 13447;50721 9064;52987 11652;61701 5492;62400 6585;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="117"><tags><t k="osm_id">197484900</t><t k="surface">ground</t><t k="highway">path</t><t k="z_order">0</t><t k="osm_timestamp">2019/08/27 13:14:08+00</t><t k="other_tags">"bicycle"=>"yes","motor_vehicle"=>"yes"</t></tags><coords count="11">-52917 10726;-54702 6491;-62991 -13619;-66951 -18800;-67478 -21248;-68869 -27704;-71644 -34087;-77751 -42460;-82672 -50925;-92057 -56625;-102254 -55089;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">197689182</t><t k="building">hospital</t><t k="z_order">0</t><t k="osm_timestamp">2019/04/03 05:34:36+00</t><t k="other_tags">"addr:city"=>"Минск","addr:housenumber"=>"66 к2","addr:street"=>"Орловская улица","alt_name"=>"Роддом №7","building:levels"=>"4","healthcare:speciality"=>"obstetrics","roof:colour"=>"blue"</t></tags><coords count="21">31512 30365;32980 33404;30555 34572;28624 35484;27129 32331;11332 39797;10561 38169;9889 36754;10200 36608;9072 34231;10070 33758;11154 33242;11690 32990;12455 34602;16769 32562;23396 29421;22612 27773;36704 21093;39340 26636;34092 29125;31512 30365;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">197689183</t><t k="name">Административный корпус</t><t k="building">hospital</t><t k="z_order">0</t><t k="osm_timestamp">2019/04/03 05:34:36+00</t><t k="other_tags">"addr:housenumber"=>"66 к1","addr:street"=>"Орловская улица","building:levels"=>"2","roof:colour"=>"blue"</t></tags><coords count="14">50045 21579;39336 26619;37800 23368;42121 21335;45232 19888;43617 16426;43043 16693;42011 14479;44477 13333;50447 10589;50797 11348;51463 12761;46895 14911;50045 21579;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">197691415</t><t k="building">yes</t><t k="z_order">10</t><t k="osm_timestamp">2015/12/26 18:01:50+00</t><t k="other_tags">"layer"=>"1"</t></tags><coords count="5">-10085 31414;-10531 30453;-15363 32703;-14913 33675;-10085 31414;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">199200695</t><t k="building">yes</t><t k="z_order">10</t><t k="osm_timestamp">2017/03/10 09:43:38+00</t><t k="other_tags">"layer"=>"1"</t></tags><coords count="5">-32790 25845;-31801 25375;-30911 27238;-31900 27706;-32790 25845;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">199201415</t><t k="building">yes</t><t k="z_order">10</t><t k="osm_timestamp">2017/03/10 09:43:38+00</t><t k="other_tags">"layer"=>"1"</t></tags><coords count="5">-15343 34962;-16429 35461;-12529 43858;-11444 43354;-15343 34962;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">262431038</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2018/10/18 20:50:24+00</t></tags><coords count="4">51807 -74050;54254 -68960;55686 -65978;62911 -50947 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">262432619</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2014/02/19 17:57:46+00</t><t k="other_tags">"service"=>"parking_aisle"</t></tags><coords count="4">69212 -56574;70527 -54376;70646 -54084;72068 -51800;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">262432620</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2014/02/19 17:57:46+00</t><t k="other_tags">"service"=>"parking_aisle"</t></tags><coords count="5">78088 -61079;89561 -66526;90694 -67038;92105 -64210;93421 -61742;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><tags><t k="osm_id">262452397</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:30:31+00</t><t k="barrier">fence</t></tags><coords count="18">-59158 13520;-56146 14795;-42584 43006;-42898 44397;-42663 44804;-42237 45855;-41620 46763;-40430 47045;-36558 55480;-35830 56935;-38102 59739;-57273 63560;-58489 61783;-64194 54552;-60369 27924;-64678 19311;-63766 15606;-59158 13520;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">262452398</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2016/06/07 12:43:58+00</t></tags><coords count="4">-44200 46637;-43766 46464;-42237 45855;-40224 45052;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">293710622</t><t k="name">Актовый зал</t><t k="building">hospital</t><t k="z_order">0</t><t k="osm_timestamp">2019/04/03 05:34:37+00</t><t k="other_tags">"addr:housenumber"=>"66 к8В","addr:street"=>"Орловская улица","building:levels"=>"3","name:be"=>"Актавая зала","name:ru"=>"Актовый зал"</t></tags><coords count="9">-3387 46607;-9652 49498;-10478 49877;-13134 44135;-12529 43858;-11444 43354;-6038 40876;-5670 41674;-3387 46607;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">293710638</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2014/07/21 12:21:32+00</t></tags><coords count="3">66400 20764;65839 19662;63961 15865;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">293710643</t><t k="building">yes</t><t k="z_order">0</t><t k="osm_timestamp">2014/07/21 12:21:32+00</t><t k="other_tags">"building:levels"=>"1"</t></tags><coords count="5">-32929 15359;-30838 14306;-30429 15118;-32518 16171;-32929 15359;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">293710644</t><t k="building">yes</t><t k="z_order">0</t><t k="osm_timestamp">2020/01/18 12:47:22+00</t><t k="other_tags">"addr:housenumber"=>"66 к10","addr:street"=>"Орловская улица","building:levels"=>"1","description"=>"Котельная","generator:method"=>"combustion","generator:output:hot_water"=>"yes"</t></tags><coords count="6">-6235 37009;-11480 39520;-12932 36459;-3996 32236;-2543 35300;-6235 37009;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><tags><t k="osm_id">293710645</t><t k="z_order">0</t><t k="osm_timestamp">2014/07/21 12:21:32+00</t><t k="barrier">fence</t></tags><coords count="2">-39717 19024;-40575 17276;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">332415311</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/03/12 16:12:25+00</t></tags><coords count="7">78840 -24860;77772 -22148;79158 -17052;76944 -12164;77732 -6160;80770 -1036;76366 2505 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">334656405</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:56:20+00</t></tags><coords count="8">-40532 24548;-41998 25238;-44240 26291;-41780 31367;-38156 39282;-37454 40814;-34087 48170;-30006 59381;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">338771014</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2015/04/16 10:38:51+00</t></tags><coords count="3">66543 7877;69506 13172;70621 15163;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">338771015</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2016/06/07 12:44:08+00</t></tags><coords count="8">69506 13172;63961 15865;59670 17989;56830 11888;66543 7877;68944 6395;68996 6362;73018 3785;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">338780815</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:49+00</t></tags><coords count="6">-34087 48170;-32692 48866;-31200 48982;-29398 48901;-18235 47963;-12318 47340;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">338780816</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:50+00</t></tags><coords count="6">-18235 47963;-20323 44034;-20708 42490;-20601 41282;-20385 40502;-19797 39775;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="117"><tags><t k="osm_id">342705889</t><t k="highway">path</t><t k="z_order">0</t><t k="osm_timestamp">2017/03/09 19:35:56+00</t></tags><coords count="3">-54702 6491;-64344 9020;-69346 7156;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="130"><tags><t k="osm_id">380770372</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 12:54:12+00</t><t k="barrier">wall</t></tags><coords count="5">2455 44760;1650 45153;1297 45137;1035 44982;902 44627;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">380770960</t><t k="name">Кислородная</t><t k="building">yes</t><t k="z_order">0</t><t k="osm_timestamp">2019/04/03 05:34:37+00</t><t k="other_tags">"addr:housenumber"=>"66 к6","addr:street"=>"Орловская улица","building:levels"=>"1"</t></tags><coords count="5">-1515 21429;-799 22935;-4298 24594;-5015 23088;-1515 21429;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">380773070</t><t k="building">service</t><t k="power">substation</t><t k="z_order">0</t><t k="osm_timestamp">2020/03/13 13:29:12+00</t><t k="other_tags">"building:levels"=>"1","substation"=>"minor_distribution"</t></tags><coords count="5">5653 37439;7741 36413;8544 38042;6457 39068;5653 37439;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380884434</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:16:11+00</t></tags><coords count="2">-49210 47741;-47579 46991;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380884435</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:25:07+00</t></tags><coords count="5">-54197 33639;-54477 36351;-49210 47741;-44094 51073;-43502 50798;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380884918</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:13:50+00</t></tags><coords count="19">-41404 54147;-41274 56853;-47233 57503;-49931 57318;-52438 56619;-54341 55477;-56169 53697;-57652 52010;-59109 49731;-59869 47803;-60224 45991;-60260 43991;-59491 38825;-58725 36447;-57823 33784;-56524 30877;-55290 28832;-54020 29237;-54064 30880;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380884919</t><t k="tunnel">building_passage</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:13:50+00</t></tags><coords count="2">-41497 53250;-41404 54147;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380885148</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:16:11+00</t></tags><coords count="2">-44419 45468;-42663 44804;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380886262</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:25:07+00</t></tags><coords count="4">-44720 48313;-43556 47721;-41605 51921;-41497 53250;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380886972</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:30:31+00</t></tags><coords count="3">-54020 29237;-51877 33772;-50714 36178;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380886973</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:30:31+00</t></tags><coords count="2">-52291 33689;-51877 33772;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">387885998</t><t k="building">yes</t><t k="z_order">10</t><t k="osm_timestamp">2015/12/26 18:01:50+00</t><t k="other_tags">"layer"=>"1"</t></tags><coords count="5">-4360 28771;5644 24017;5166 23016;-4836 27772;-4360 28771;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">387885999</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:44+00</t></tags><coords count="6">-25848 30176;-21945 28359;-20107 32301;-24011 34115;-24894 32219;-25848 30176;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">387886000</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:44+00</t></tags><coords count="3">-39685 30155;-28857 25194;-18336 20371;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">387886001</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:44+00</t></tags><coords count="7">-41780 31367;-37346 33556;-37015 33994;-36816 34351;-36682 35057;-37140 36324;-38156 39282;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">387886002</t><t k="building">yes</t><t k="z_order">10</t><t k="osm_timestamp">2015/12/26 18:01:51+00</t><t k="other_tags">"layer"=>"1"</t></tags><coords count="5">5644 24017;10070 33758;11154 33242;6756 23486;5644 24017;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">387886003</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:44+00</t></tags><coords count="5">-37346 33556;-38177 32744;-38790 31900;-39685 30155;-41998 25238;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">387886004</t><t k="surface">asphalt</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2016/06/07 12:43:51+00</t></tags><coords count="3">-8789 22270;-7534 23091;-3826 25521;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">387886005</t><t k="surface">asphalt</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2016/06/07 12:43:54+00</t></tags><coords count="3">-16199 25013;-10121 22226;-8789 22270;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">387886008</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:44+00</t></tags><coords count="9">-33390 40216;-30073 34579;-33234 27890;-18854 21214;-12673 34453;-17767 36807;-18493 37371;-18779 37953;-18772 39243;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">387886010</t><t k="surface">asphalt</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:44+00</t><t k="other_tags">"service"=>"parking_aisle"</t></tags><coords count="2">10973 28530;17256 25696;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">387886012</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:44+00</t></tags><coords count="13">-37140 36324;-36753 36580;-36135 36664;-35617 36473;-35261 36114;-35094 35724;-35063 35450;-35137 35030;-35227 34838;-35628 34421;-36143 34238;-36567 34264;-36816 34351;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">387886013</t><t k="surface">asphalt</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:44+00</t></tags><coords count="3">18667 28670;17256 25696;11460 13473;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">387886014</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:56:20+00</t></tags><coords count="8">-29398 48901;-32263 42667;-33390 40216;-33622 39227;-33806 37968;-34103 37165;-34546 36566;-35261 36114;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">387886015</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:45+00</t></tags><coords count="5">-18336 20371;-16199 25013;-11969 34046;-4055 30377;-2145 29513;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">387886016</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:45+00</t></tags><coords count="2">-2214 34546;-4055 30377;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">387886017</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:56:20+00</t></tags><coords count="6">-20226 39205;-19797 39775;-18772 39243;-17639 39158;-16433 39564;-15587 40366;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">387886018</t><t k="tunnel">building_passage</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:45+00</t></tags><coords count="2">-28997 34087;-25975 32712;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">387886019</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:45+00</t></tags><coords count="2">-25975 32712;-24894 32219;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">387886020</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:48:45+00</t></tags><coords count="2">-30073 34579;-28997 34087;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">387886947</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:56:19+00</t></tags><coords count="4">-15587 40366;-12318 47340;-9716 52890;-8999 54419;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">387886948</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2015/12/26 17:56:19+00</t></tags><coords count="2">-37454 40814;-32263 42667;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">416573405</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2016/05/08 18:02:45+00</t><t k="other_tags">"bicycle"=>"yes"</t></tags><coords count="4">41549 -40351;39371 -38714;37670 -37599;31181 -32948;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">423407618</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2016/06/07 12:43:29+00</t></tags><coords count="2">-43556 47721;-43766 46464;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">457984829</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2016/12/05 23:30:13+00</t></tags><coords count="4">51807 -74050;80698 -87851;88808 -71009;90694 -67038;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">457986935</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2016/12/05 23:55:57+00</t></tags><coords count="2">-9652 49498;-9057 50808;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">493137031</t><t k="surface">asphalt</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2017/05/12 22:09:31+00</t><t k="other_tags">"bicycle"=>"yes","oneway"=>"yes"</t></tags><coords count="6">-26531 62307;-27693 63053;-28188 63719;-28381 64355;-28209 64985;-27558 65522;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">493137036</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2017/05/12 22:09:31+00</t><t k="other_tags">"oneway"=>"yes"</t></tags><coords count="5">4490 56560;6179 55163;6829 54230;7442 53277;7531 51962;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">493137039</t><t k="surface">asphalt</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2019/09/30 10:28:25+00</t><t k="other_tags">"bicycle"=>"yes"</t></tags><coords count="8">-31186 63235;-32198 59913;-34140 57461;-40224 45052;-52074 19818;-50312 16304;-52087 12475;-52917 10726;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548303</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2017/08/10 16:15:45+00</t></tags><coords count="2">38765 7549;36093 2290;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548304</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2017/08/10 16:15:45+00</t></tags><coords count="3">39844 15665;40998 17869;40148 20044;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548305</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2017/08/10 16:15:45+00</t></tags><coords count="3">37205 18450;40148 20044;42121 21335;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548306</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2019/01/28 18:59:11+00</t></tags><coords count="2">44477 13333;44134 12694;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548307</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2019/01/28 18:55:30+00</t></tags><coords count="6">31673 13809;30490 13546;31407 14430;33460 16073;36642 18031;37205 18450;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548308</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2017/08/10 16:15:45+00</t></tags><coords count="10">37659 8076;36523 9629;35596 11809;34551 14094;33460 16073;33092 17814;27340 21099;24414 24956;19387 27280;17374 22974;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548309</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2019/01/28 18:55:30+00</t></tags><coords count="3">34551 14094;39167 15359;39844 15665;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548310</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2019/01/28 18:55:30+00</t></tags><coords count="7">42610 5710;40729 8260;40107 9599;40120 11558;40366 12616;41065 13447;41428 13909;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548311</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2019/01/28 18:59:11+00</t></tags><coords count="3">26367 13047;26552 13399;28264 16777;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548312</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2017/08/10 16:15:46+00</t></tags><coords count="21">31676 10934;31827 11500;31901 12080;31901 12665;31825 13244;31673 13809;31407 14430;31053 15005;30616 15521;30105 15965;29536 16326;28917 16600;28264 16777;27596 16855;26928 16834;26268 16712;25634 16495;25039 16186;24497 15792;24020 15322;23620 14787;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548313</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2019/01/28 18:51:44+00</t></tags><coords count="5">52088 5127;48283 7863;40120 11558;34551 14094;31673 13809;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548314</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2017/08/10 16:15:46+00</t></tags><coords count="12">49776 2285;42610 5710;38765 7549;37659 8076;31676 10934;28424 12493;26552 13399;23620 14787;15418 18712;17374 22974;25111 19569;28264 16777;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548316</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2017/08/10 16:15:46+00</t><t k="other_tags">"bicycle"=>"yes"</t></tags><coords count="2">64573 811;65236 -925;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548319</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2017/08/10 16:15:46+00</t></tags><coords count="2">60963 4633;51096 -7391;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">514548321</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2017/08/10 16:15:46+00</t></tags><coords count="3">50395 3046;49776 2285;48754 1028;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">574855652</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2018/03/30 19:55:37+00</t></tags><coords count="8">52987 11652;52616 13720;56379 22095;34771 31770;33493 33926;30886 35207;28424 36428;25697 35420;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">625954882</t><t k="building">yes</t><t k="z_order">0</t><t k="osm_timestamp">2018/09/16 12:27:56+00</t></tags><coords count="7">-57080 24569;-52418 22355;-50787 25778;-52617 26647;-53441 24917;-56273 26262;-57080 24569;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">625954883</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2018/09/16 12:27:56+00</t></tags><coords count="3">-68645 13617;-64344 9020;-52087 12475;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">635796307</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2018/10/18 20:48:49+00</t><t k="other_tags">"service"=>"parking_aisle"</t></tags><coords count="2">62567 -53396;69212 -56574;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><tags><t k="osm_id">635796413</t><t k="z_order">0</t><t k="osm_timestamp">2018/10/18 20:50:23+00</t><t k="barrier">fence</t></tags><coords count="3">56759 -70148;54254 -68960;52108 -67974;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="106"><tags><t k="osm_id">635796414</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2018/10/18 20:50:24+00</t></tags><coords count="2">55686 -65978;63525 -69592;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">666721750</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2019/01/28 18:51:43+00</t></tags><coords count="2">30490 13546;28424 12493;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">666724886</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2019/01/28 18:59:10+00</t></tags><coords count="2">30886 35207;30555 34572;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">666724888</t><t k="highway">footway</t><t k="z_order">0</t><t k="osm_timestamp">2019/01/28 18:59:10+00</t></tags><coords count="8">50092 9927;44134 12694;41428 13909;39844 15665;37205 18450;31852 22894;8062 34325;9739 38031;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="117"><tags><t k="osm_id">718896700</t><t k="highway">path</t><t k="z_order">0</t><t k="osm_timestamp">2019/08/27 13:14:08+00</t></tags><coords count="5">-66951 -18800;-76404 -19200;-80129 -26878;-87912 -39467;-102254 -55089;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><tags><t k="osm_id">772446261</t><t k="z_order">0</t><t k="osm_timestamp">2020/02/14 14:54:39+00</t><t k="barrier">fence</t></tags><coords count="2">47410 -65810;52108 -67974;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">775112888</t><t k="building">construction</t><t k="z_order">0</t><t k="osm_timestamp">2020/02/20 20:40:29+00</t></tags><coords count="5">-12594 -53651;-8691 -52332;-18809 -22567;-22719 -23891;-12594 -53651;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">27974</t><t k="name">Консультативно-диагностический корпус</t><t k="building">hospital</t><t k="osm_timestamp">2019/04/03 05:34:37+00</t><t k="other_tags">"addr:housenumber"=>"66 к9","addr:street"=>"Орловская улица","building:levels"=>"10","type"=>"multipolygon"</t></tags><coords count="18">-38030 26871;-39182 27413;-40532 24548;-41990 21451;-40654 20823;-41178 19713;-39717 19024;-34003 16312;-30092 24520;-31801 25375;-32790 25845;-37496 28004;-38030 26871 18;-35417 20318;-37933 21519;-36659 24184;-34142 22986;-35417 20318 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="osm_id">27975</t><t k="name">Корпус новорождённых. Реанимация новорожденных. Клиническая лаборатория.</t><t k="building">hospital</t><t k="osm_timestamp">2019/04/03 05:34:38+00</t><t k="other_tags">"addr:housenumber"=>"66 к8А","addr:street"=>"Орловская улица","building:levels"=>"5","office"=>"research","type"=>"multipolygon"</t></tags><coords count="31">-19492 36904;-19302 37338;-19255 37604;-19275 38037;-19435 38487;-19770 38916;-20226 39205;-20791 39324;-21295 39257;-21783 39008;-22167 38595;-22369 38124;-23775 38838;-26277 39983;-27149 38089;-28997 34087;-31900 27706;-30911 27238;-20197 22325;-15363 32703;-14913 33675;-14502 34577;-15343 34962;-16429 35461;-19492 36904 18;-27317 29826;-21335 27058;-18662 32809;-24643 35577;-25975 32712;-27317 29826 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="name">Институт метрологии</t><t k="building">yes</t><t k="osm_way_id">25388185</t><t k="osm_timestamp">2018/09/11 10:17:07</t><t k="other_tags">"addr:housenumber"=>"93","addr:street"=>"Старовиленский тракт","office"=>"government","official_name"=>"Республиканское унитарное предприятие \"Белорусский государственный институт метрологии\""</t></tags><coords count="14">58797 -64532;66004 -68000;63780 -72607;67655 -74471;69902 -69819;83685 -76454;87123 -69336;75039 -63518;75732 -62086;73229 -60972;72028 -60304;71387 -61631;62309 -57262;58797 -64532 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="name">Лаборатория генетики</t><t k="building">hospital</t><t k="osm_way_id">25389162</t><t k="osm_timestamp">2019/04/03 05:34:35</t><t k="other_tags">"addr:housenumber"=>"66 к7","addr:street"=>"Орловская улица","building:levels"=>"2","name:be"=>"Лабараторыя генэтыкі","name:ru"=>"Лаборатория генетики","office"=>"research"</t></tags><coords count="9">-10531 30453;-12992 25143;-8876 23242;-6990 27305;-5380 26561;-4836 27772;-4360 28771;-10085 31414;-10531 30453 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="99"><tags><t k="amenity">parking</t><t k="osm_way_id">197438088</t><t k="access">private</t><t k="osm_timestamp">2015/02/09 13:13:24</t></tags><coords count="5">112699 -6137;114213 -3012;126375 -8887;124860 -12012;112699 -6137 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="99"><tags><t k="amenity">parking</t><t k="osm_way_id">197438089</t><t k="access">private</t><t k="osm_timestamp">2016/09/14 08:12:59</t></tags><coords count="5">116957 -32307;118219 -32911;126668 -13570;125464 -12975;116957 -32307 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="99"><tags><t k="amenity">parking</t><t k="osm_way_id">197438233</t><t k="access">private</t><t k="osm_timestamp">2014/02/19 17:45:05</t></tags><coords count="5">62019 -54525;69525 -58076;71045 -54873;63538 -51322;62019 -54525 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="99"><tags><t k="amenity">parking</t><t k="osm_way_id">197440398</t><t k="osm_timestamp">2012/12/20 20:56:25</t></tags><coords count="5">-47821 24568;-46034 23713;-40861 34509;-42648 35361;-47821 24568 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="99"><tags><t k="amenity">parking</t><t k="osm_way_id">197484899</t><t k="osm_timestamp">2012/12/21 08:33:46</t></tags><coords count="5">-55291 11768;-50606 9573;-45883 19619;-50568 21811;-55291 11768 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="99"><tags><t k="amenity">parking</t><t k="osm_way_id">262432617</t><t k="access">private</t><t k="osm_timestamp">2014/02/19 17:57:46</t></tags><coords count="5">76960 -61400;88190 -66700;89642 -63633;78413 -58334;76960 -61400 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="70"><tags><t k="osm_way_id">262452396</t><t k="access">private</t><t k="osm_timestamp">2014/02/19 20:14:36</t><t k="leisure">pitch</t><t k="sport">tennis</t></tags><coords count="5">-53101 30689;-49716 29086;-46910 35000;-50295 36600;-53101 30689 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><tags><t k="name">Республиканский научно-практический центр „Мать и дитя“</t><t k="amenity">hospital</t><t k="osm_way_id">293710627</t><t k="osm_timestamp">2018/11/28 13:16:00</t><t k="other_tags">"addr:city"=>"Минск","addr:housenumber"=>"66","addr:street"=>"Орловская улица","alt_name"=>"ГУ «Республиканский научно-практический центр „Мать и дитя“»","email"=>"[email protected]","healthcare:speciality"=>"obstetrics","name:be"=>"Цэнтр «Маці і дзіця»","name:ru"=>"ГУ «Республиканский научно-практический центр „Мать и дитя“»","official_name"=>"ГУ «Республиканский научно-практический центр «Мать и дитя»","phone"=>"+375 (17) 233-42-72, +375 (17) 233-55-84","short_name"=>"РНПЦ «Мать и дитя»","website"=>"http://www.medcenter.by/ru"</t></tags><coords count="26">-16443 33880;-12144 43440;-9652 49498;-3387 46607;902 44627;3906 43389;6003 42452;11073 46666;59729 23728;60352 22366;54978 11732;66262 6773;63297 2882;51732 -11427;954 16003;402 15071;63 14251;-12596 20946;-22964 18224;-26635 10569;-40575 17276;-39717 19024;-34113 18404;-32417 25029;-25566 38241;-16443 33880 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><tags><t k="name">Станция скорой помощи №8</t><t k="amenity">hospital</t><t k="osm_way_id">293710646</t><t k="osm_timestamp">2018/01/23 21:53:50</t><t k="barrier">fence</t><t k="other_tags">"name:be"=>"Станцыя хуткай дапамогі #8","name:en"=>"Ambulance №8"</t></tags><coords count="10">59729 23728;60352 22366;54978 11732;66262 6773;67945 5259;68944 6395;69644 7192;74922 14862;65839 19662;59729 23728 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="77"><tags><t k="natural">wood</t><t k="osm_way_id">306741188</t><t k="osm_timestamp">2019/05/10 15:35:21</t></tags><coords count="12">80684 -54586;101084 -64372;102799 -64507;104210 -64104;105408 -62996;108863 -58811;116727 -41900;116497 -38770;115318 -37354;108298 -39580;91468 -31616;80684 -54586 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><tags><t k="building">yes</t><t k="amenity">security_booth</t><t k="osm_way_id">380770373</t><t k="osm_timestamp">2020/01/18 12:47:22</t><t k="other_tags">"addr:housenumber"=>"66 к13","addr:street"=>"Орловская улица","building:levels"=>"1","description"=>"Проходная"</t></tags><coords count="5">2455 44760;4109 43972;3750 43218;2096 44005;2455 44760 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="99"><tags><t k="amenity">parking</t><t k="osm_way_id">387886946</t><t k="access">private</t><t k="osm_timestamp">2015/12/26 17:56:19</t></tags><coords count="7">9610 26531;11732 30860;16743 28415;15351 25573;13175 26636;12446 25146;9610 26531 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="140"><tags><t k="osm_way_id">441522372</t><t k="osm_timestamp">2016/09/08 20:45:51</t><t k="leisure">playground</t></tags><coords count="7">-59484 53633;-59440 55297;-57991 57312;-55797 56514;-56110 54512;-57388 52989;-59484 53633 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><tags><t k="landuse">construction</t><t k="osm_way_id">624058455</t><t k="osm_timestamp">2018/09/08 11:49:25</t></tags><coords count="5">-59753 1371;-71817 4047;-75368 -13829;-66339 -15953;-59753 1371 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><tags><t k="landuse">construction</t><t k="name">ЖК "Левада"</t><t k="osm_way_id">772441297</t><t k="osm_timestamp">2020/02/14 14:28:20</t></tags><coords count="9">-7212 -79894;16975 -54563;5252 -45319;22942 -14365;11480 -8675;-40575 17276;-44206 19074;-76295 -46281;-7212 -79894 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="96"><coords count="1">106397 -55395;</coords></object>
<object type="0" symbol="1" rotation="4.11985"><coords count="1">93587 -52460;</coords></object>
<object type="0" symbol="96"><coords count="1">98677 -59842;</coords></object>
<object type="0" symbol="96"><coords count="1">105632 -53519;</coords></object>
<object type="0" symbol="96"><coords count="1">103982 -49375;</coords></object>
<object type="0" symbol="96"><coords count="1">103142 -47484;</coords></object>
<object type="0" symbol="96"><coords count="1">102471 -45921;</coords></object>
<object type="0" symbol="96"><coords count="1">89538 -42784;</coords></object>
<object type="0" symbol="96"><coords count="1">109495 -54252;</coords></object>
<object type="0" symbol="96"><coords count="1">91596 -39696;</coords></object>
<object type="0" symbol="96"><coords count="1">102539 -59187;</coords></object>
<object type="0" symbol="96"><coords count="1">104835 -51329;</coords></object>
<object type="0" symbol="96"><coords count="1">96210 -56721;</coords></object>
<object type="0" symbol="96"><coords count="1">90738 -33280;</coords></object>
<object type="0" symbol="96"><coords count="1">88949 -45574;</coords></object>
<object type="0" symbol="96"><coords count="1">90681 -36391;</coords></object>
<object type="0" symbol="96"><coords count="1">101386 -52578;</coords></object>
<object type="0" symbol="1" rotation="1.08473"><coords count="1">101083 -48634;</coords></object>
<object type="0" symbol="96"><coords count="1">99588 -55871;</coords></object>
<object type="0" symbol="96"><coords count="1">93796 -34949;</coords></object>
<object type="0" symbol="96"><coords count="1">88071 -38256;</coords></object>
<object type="0" symbol="96"><coords count="1">98616 -49564;</coords></object>
<object type="0" symbol="96"><coords count="1">95191 -51564;</coords></object>
<object type="0" symbol="96"><coords count="1">100106 -46729;</coords></object>
<object type="0" symbol="96"><coords count="1">107252 -57886;</coords></object>
<object type="4" symbol="164" rotation="0.018326" h_align="0" v_align="0"><coords count="1">68882 30451;</coords><text>вул. Арлоўская</text></object>
<object type="1" symbol="136"><coords count="5">78026 -10642;82630 -14527 32;83871 -13025 32;79278 -9141 32;78026 -10642 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">48702 -38247;55323 -30317 32;53046 -28426 32;46425 -36344 32;48702 -38247 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">54998 -41276;58940 -36322 32;57781 -35414 32;53840 -40355 32;54998 -41276 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">58303 -33522;59643 -31985 32;60591 -32815 32;59238 -34340 32;58303 -33522 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">87352 -412;94062 7604 32;96070 5916 32;89347 -2086 32;87352 -412 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">68454 -19231;73531 -13061 32;75526 -14710 32;70449 -20869 32;68454 -19231 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">73348 -8006;78632 -1427 32;76291 454 32;70995 -6114 32;73348 -8006 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">55987 -24816;61385 -18214 32;63428 -19890 32;58020 -26479 32;55987 -24816 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">63616 -28783;66830 -31479 32;65577 -32944 32;62376 -30247 32;63616 -28783 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">60615 -43166;64480 -45112 32;65751 -42561 32;61898 -40602 32;60615 -43166 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="7">69220 -23159;71933 -25846 32;70291 -27504;69775 -27007;70005 -26736;67818 -24571 32;69220 -23159 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">80075 2921;86661 11003 32;88853 9213 32;82255 1144 32;80075 2921 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">68297 -46909;72013 -48789 32;73246 -46336 32;69530 -44442 32;68297 -46909 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">94719 -25476;109757 -32415 32;108026 -36110 32;93001 -29170 32;94719 -25476 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">77357 -43724;78312 -44154 32;77829 -45195 32;76888 -44752 32;77357 -43724 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">76029 -50675;79895 -52621 32;81166 -50070 32;77313 -48111 32;76029 -50675 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="15">70442 -29470;72586 -26434;73004 -26754 32;73427 -26224;74314 -26865 32;73765 -27605;74035 -27835;73662 -28366;73391 -28149;73006 -28691;73413 -29011;72963 -29654;72532 -29357;71787 -30420 32;70442 -29470 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">18421 -39655;27131 -28964 32;29595 -30971 32;20872 -41651 32;18421 -39655 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">29167 -29064;43598 -11788 32;46073 -13870 32;31642 -31121 32;29167 -29064 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">18973 -21;39760 -9829 32;38395 -12680 32;17621 -2860 32;18973 -21 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="7">96445 -6330;92627 -14074 32;88576 -12061;90580 -7797 32;89541 -7166;91228 -3759 32;96445 -6330 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="9">102160 1241;110575 -2775 32;108599 -6902 32;106492 -5889;106650 -5466;102635 -3567;102415 -3951;100183 -2885 32;102160 1241 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">81814 -42630;87541 -30345 32;90367 -31660 32;84628 -43945 32;81814 -42630 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">72388 -37881;76253 -39828 32;77525 -37276 32;73672 -35317 32;72388 -37881 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">76217 -30200;80082 -32146 32;81353 -29595 32;77502 -27636 32;76217 -30200 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">86305 -22784;91236 -25237 32;90042 -27616 32;85123 -25150 32;86305 -22784 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="17">67762 -37872;70180 -32865;70402 -32983;71365 -30986;69295 -29961;68581 -31411;68916 -31567;68280 -32867;67981 -32738;67657 -33394;67942 -33550;67735 -33959;67448 -33828;66825 -35116;67098 -35246;66213 -37119 32;67762 -37872 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">109243 -15441;110322 -13147 32;108983 -12523 32;107892 -14804 32;109243 -15441 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">86210 -12956;87583 -13719 32;86937 -14845 32;85577 -14069 32;86210 -12956 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">87827 -14072;89697 -15057 32;89166 -16048 32;87296 -15051 32;87827 -14072 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">89558 -17855;92222 -19155 32;91781 -20034 32;89130 -18735 32;89558 -17855 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">89998 -15614;91386 -16326 32;90868 -17305 32;89493 -16579 32;89998 -15614 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">109515 -11557;108286 -11022 32;108822 -9782 32;110050 -10317 32;109515 -11557 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="2">110740 -30634;113726 -23899;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">80075 2921;86661 11003 32;88853 9213 32;82255 1144 32;80075 2921 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">87352 -412;94062 7604 32;96070 5916 32;89347 -2086 32;87352 -412 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">68454 -19231;73531 -13061 32;75526 -14710 32;70449 -20869 32;68454 -19231 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">73348 -8006;78632 -1427 32;76291 454 32;70995 -6114 32;73348 -8006 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">48702 -38247;55323 -30317 32;53046 -28426 32;46425 -36344 32;48702 -38247 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">55987 -24816;61385 -18214 32;63428 -19890 32;58020 -26479 32;55987 -24816 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">81814 -42630;87541 -30345 32;90367 -31660 32;84628 -43945 32;81814 -42630 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">86305 -22784;91236 -25237 32;90042 -27616 32;85123 -25150 32;86305 -22784 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">60615 -43166;64480 -45112 32;65751 -42561 32;61898 -40602 32;60615 -43166 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">94719 -25476;109757 -32415 32;108026 -36110 32;93001 -29170 32;94719 -25476 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">68297 -46909;72013 -48789 32;73246 -46336 32;69530 -44442 32;68297 -46909 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="134"><coords count="31">124666 -11610;123385 -11924 32;113521 -7155;111815 -10837 32;118432 -14071 32;115777 -19761 32;108995 -16674;107118 -20840 32;113777 -23862;113700 -24011;110731 -30445 32;107137 -28692 32;104080 -23598 32;108041 -14844 32;109270 -15329;109282 -15329 32;110670 -11966;109631 -11297 32;110050 -10317 32;114125 -2190 32;127590 -8276 32;125932 -11421;125970 -11421 32;126775 -11824 32;116907 -33159 32;115086 -32264;117993 -25752 32;119145 -26336 32;121061 -22071 32;120205 -21705 32;124666 -11610 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">72388 -37881;76253 -39828 32;77525 -37276 32;73672 -35317 32;72388 -37881 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="17">67762 -37872;70180 -32865;70402 -32983;71365 -30986;69295 -29961;68581 -31411;68916 -31567;68280 -32867;67981 -32738;67657 -33394;67942 -33550;67735 -33959;67448 -33828;66825 -35116;67098 -35246;66213 -37119 32;67762 -37872 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">86210 -12956;87583 -13719 32;86937 -14845 32;85577 -14069 32;86210 -12956 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">78026 -10642;82630 -14527 32;83871 -13025 32;79278 -9141 32;78026 -10642 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="7">69220 -23159;71933 -25846 32;70291 -27504;69775 -27007;70005 -26736;67818 -24571 32;69220 -23159 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">54998 -41276;58940 -36322 32;57781 -35414 32;53840 -40355 32;54998 -41276 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="9">102160 1241;110575 -2775 32;108599 -6902 32;106492 -5889;106650 -5466;102635 -3567;102415 -3951;100183 -2885 32;102160 1241 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="7">96445 -6330;92627 -14074 32;88576 -12061;90580 -7797 32;89541 -7166;91228 -3759 32;96445 -6330 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">58303 -33522;59643 -31985 32;60591 -32815 32;59238 -34340 32;58303 -33522 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">63616 -28783;66830 -31479 32;65577 -32944 32;62376 -30247 32;63616 -28783 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="7">82138 -46136;85041 -47415 32;84597 -48395 32;82328 -47390;82146 -47775;81526 -47476;82138 -46136 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">76029 -50675;79895 -52621 32;81166 -50070 32;77313 -48111 32;76029 -50675 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">77357 -43724;78312 -44154 32;77829 -45195 32;76888 -44752 32;77357 -43724 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="15">70442 -29470;72586 -26434;73004 -26754 32;73427 -26224;74314 -26865 32;73765 -27605;74035 -27835;73662 -28366;73391 -28149;73006 -28691;73413 -29011;72963 -29654;72532 -29357;71787 -30420 32;70442 -29470 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">87827 -14072;89697 -15057 32;89166 -16048 32;87296 -15051 32;87827 -14072 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">89998 -15614;91386 -16326 32;90868 -17305 32;89493 -16579 32;89998 -15614 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">109243 -15441;110322 -13147 32;108983 -12523 32;107892 -14804 32;109243 -15441 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">109515 -11557;108286 -11022 32;108822 -9782 32;110050 -10317 32;109515 -11557 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="17">115802 -19786;118431 -14121;111777 -10886 32;113532 -7192;123347 -11936;124716 -11611;120242 -21694;121036 -22095 32;119158 -26311 32;117928 -25839 32;114968 -32499 32;110718 -30624 32;113777 -23862 32;107118 -20840 32;108995 -16674 32;115790 -19786 32;115802 -19786 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">76217 -30200;80082 -32146 32;81353 -29595 32;77502 -27636 32;76217 -30200 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="15">101296 -43162;102877 -42841;102751 -42214;104633 -41861;104797 -42451;106366 -42142 32;105974 -40272 32;104143 -40626;104291 -41405 32;102096 -41839;102016 -41437;101349 -41575;101443 -41977;101066 -42057;101296 -43162 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="140"><coords count="5">104760 -42476;104658 -41849 32;102751 -42214 32;102877 -42866;104760 -42476 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="99"><coords count="5">52717 -35459;53957 -33944 32;52972 -33137 32;51745 -34602 32;52717 -35459 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="99"><coords count="5">78791 -40525;80227 -41276 32;80487 -40742 32;79063 -39991 32;78791 -40525 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">101956 -26271;104523 -27369 32;104955 -26339 32;102387 -25229 32;101956 -26271 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">84578 -8487;85775 -9385 32;85211 -10112 32;84027 -9215 32;84578 -8487 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="99"><coords count="40">77386 2896;84007 11501 1;83925 11790;82073 12411;80786 12435 33;80953 12708;81121 12979;81290 13264 32;81305 13401;81292 13401;81290 13264 33;82208 14335;83947 14328;84928 14010;86353 13284 33;86162 13113;86228 12661;86501 12494;91083 10159 1;91419 10065;91798 10259;92043 10641 32;93307 10030 33;92990 9111;93671 8724;93981 8580;95766 7748 32;95302 7006 32;94026 7643 32;93782 7284 32;93670 7324 32;93078 7771 32;89860 9531 32;86626 11116;85981 11403;85557 11473;85106 11419;84677 11214;77853 2488;77386 2896 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">99972 -25322;101122 -22606 32;101768 -22880 32;100606 -25584 32;99972 -25322 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="0" symbol="96"><coords count="1">108941 -50366;</coords></object>
<object type="0" symbol="146"><coords count="1">79716 6566;</coords></object>
<object type="0" symbol="146"><coords count="1">70141 -41779;</coords></object>
<object type="0" symbol="146"><coords count="1">77251 -26331;</coords></object>
<object type="0" symbol="146"><coords count="1">82132 -19195;</coords></object>
<object type="0" symbol="96"><coords count="1">107351 -45686;</coords></object>
<object type="0" symbol="146"><coords count="1">74193 -109;</coords></object>
<object type="0" symbol="146"><coords count="1">86752 12576;</coords></object>
<object type="0" symbol="96"><coords count="1">104771 -45914;</coords></object>
<object type="0" symbol="146"><coords count="1">90389 -47501;</coords></object>
<object type="0" symbol="96"><coords count="1">111388 -45035;</coords></object>
<object type="0" symbol="146"><coords count="1">114276 -39613;</coords></object>
<object type="0" symbol="146"><coords count="1">92499 -45639;</coords></object>
<object type="0" symbol="146"><coords count="1">103933 4535;</coords></object>
<object type="0" symbol="146"><coords count="1">110461 -41742;</coords></object>
<object type="0" symbol="146"><coords count="1">119282 -31152;</coords></object>
<object type="0" symbol="146"><coords count="1">115950 -35617;</coords></object>
<object type="0" symbol="96"><coords count="1">108322 -45879;</coords></object>
<object type="0" symbol="96"><coords count="1">110538 -47770;</coords></object>
<object type="0" symbol="146"><coords count="1">121337 -3597;</coords></object>
<object type="0" symbol="146"><coords count="1">97992 -43376;</coords></object>
<object type="0" symbol="146"><coords count="1">61846 -14860;</coords></object>
<object type="0" symbol="146"><coords count="1">88480 -54842;</coords></object>
<object type="0" symbol="96"><coords count="1">109312 -46422;</coords></object>
<object type="0" symbol="146"><coords count="1">124326 -19230;</coords></object>
<object type="0" symbol="146"><coords count="1">106698 -41024;</coords></object>
<object type="0" symbol="146"><coords count="1">46141 -34075;</coords></object>
<object type="0" symbol="96"><coords count="1">112440 -47730;</coords></object>
<object type="0" symbol="96"><coords count="1">108942 -44790;</coords></object>
<object type="0" symbol="146"><coords count="1">112202 758;</coords></object>
<object type="0" symbol="146"><coords count="1">94960 8800;</coords></object>
<object type="0" symbol="146"><coords count="1">126875 -13176;</coords></object>
<object type="0" symbol="96"><coords count="1">105853 -45509;</coords></object>
<object type="0" symbol="146"><coords count="1">94855 -44020;</coords></object>
<object type="0" symbol="146"><coords count="1">89858 -58067;</coords></object>
<object type="0" symbol="146"><coords count="1">79392 -46574;</coords></object>
<object type="0" symbol="146"><coords count="1">73800 -33194;</coords></object>
<object type="0" symbol="146"><coords count="1">121938 -25363;</coords></object>
<object type="0" symbol="146"><coords count="1">54922 -23571;</coords></object>
<object type="0" symbol="146"><coords count="1">67138 -8468;</coords></object>
<object type="0" symbol="146"><coords count="1">88471 -51229;</coords></object>
<object type="0" symbol="146"><coords count="1">66482 -17657;</coords></object>
<object type="0" symbol="146"><coords count="1">59381 -30643;</coords></object>
<object type="0" symbol="146"><coords count="1">86380 -22085;</coords></object>
<object type="0" symbol="146"><coords count="1">71141 -11780;</coords></object>
<object type="0" symbol="146"><coords count="1">80032 10824;</coords></object>
<object type="0" symbol="146"><coords count="1">76406 -4900;</coords></object>
<object type="0" symbol="146"><coords count="1">61483 -23004;</coords></object>
<object type="0" symbol="146"><coords count="1">64512 -28274;</coords></object>
<object type="1" symbol="136"><coords count="5">-25070 10988;-23833 10328 32;-23469 11033 32;-24694 11706 32;-25070 10988 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">-9910 9998;-8673 9336 32;-8310 10042 32;-9535 10715 32;-9910 9998 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">-12318 4865;-11080 4205 32;-10717 4911 32;-11942 5584 32;-12318 4865 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">-9470 10839;-8233 10179 32;-7869 10885 32;-9096 11558 32;-9470 10839 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">-22014 9269;-20775 8609 32;-20413 9314 32;-21638 9986 32;-22014 9269 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">-6792 15816;-5553 15155 32;-5190 15861 32;-6416 16534 32;-6792 15816 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">-11048 18881;-9810 18221 32;-9448 18928 32;-10673 19600 32;-11048 18881 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">-14517 15183;-13279 14523 32;-12915 15228 32;-14142 15900 32;-14517 15183 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">-17280 6969;-16042 6309 32;-15679 7015 32;-16904 7687 32;-17280 6969 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="108"><coords count="7">101392 -20835;106479 -10014 32;98793 -6447 32;94827 -14801;96684 -15761 32;95592 -18104;101392 -20835 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="136"><coords count="5">89558 -17855;92222 -19155 32;91781 -20034 32;89130 -18735 32;89558 -17855 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="6">101606 3753;97403 5705 32;84478 -11911;84181 -13844 32;88982 -16507 32;89568 -17956;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">110497 -2924;111129 -3249;112155 -1166 32;102808 3193;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="4">108041 -14844;104080 -23598 32;107137 -28692 32;110830 -30497;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="8">115046 -32350;116918 -33197 32;126813 -11750;126070 -11386 32;127628 -8239;127008 -7953;114202 -2030 32;109927 -10190;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="132"><coords count="11">92046 -19189;92601 -18911;94162 -19677 32;95184 -21884 32;91630 -29632 32;92131 -30930 32;96682 -32989 32;97172 -33535 32;107013 -38154 32;108231 -37901 32;111546 -30985;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="114"><tags><t k="osm_id">498937652</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2019/05/20 21:40:27+00</t></tags><coords count="4">37921 -14654;28035 -27153;25913 -25496;14565 -39466;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="114"><tags><t k="osm_id">498937652</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2019/05/20 21:40:27+00</t></tags><coords count="4">19741 4621;15364 -3468;37921 -14654;42874 -7884;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="114"><tags><t k="osm_id">117221984</t><t k="name">Набережная улица</t><t k="surface">asphalt</t><t k="highway">residential</t><t k="z_order">3</t><t k="osm_timestamp">2019/05/20 21:40:27+00</t><t k="other_tags">"int_name"=>"Nabiarežnaja vulica","lanes"=>"2","name:be"=>"Набярэжная вуліца","name:ru"=>"Набережная улица"</t></tags><coords count="5">47028 -10128;42874 -7884;19741 4621;3357 13474;402 15071 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="114"><tags><t k="osm_id">625954896</t><t k="highway">service</t><t k="z_order">0</t><t k="osm_timestamp">2019/09/30 10:28:57+00</t></tags><coords count="9">5600 6043;14767 1237;10522 -5724;-171 -9;-4850 1176;-9348 3665;-3332 14821;2149 11511;3357 13474;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="48"><tags><t k="osm_id">718896714</t><t k="natural">water</t><t k="z_order">0</t><t k="osm_timestamp">2019/09/30 10:38:00+00</t><t k="other_tags">"water"=>"river"</t></tags><coords count="32">-128484 -28234;-107538 -57753;-99646 -50111;-90918 -40824;-86233 -33680;-81998 -27429;-78975 -21788;-76731 -16399;-75368 -13829;-71817 4047;-71198 8472;-69629 17009;-69425 26194;-69888 34355;-72928 56940;-74529 66862;-73014 73699;-71105 81067;-82622 83535;-84142 75849;-85449 68794;-87232 59771;-89589 49483;-93995 30296;-96202 19018;-98865 9258;-102024 -308;-106293 -7147;-109712 -11974;-114173 -17149;-120185 -22237;-128484 -28234 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="99"><coords count="6">101296 -43162;100668 -43290;101441 -44747;106926 -43909;106366 -42142;101296 -43162 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="155"><coords count="2">99171 -27530;99559 -26703;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="155"><coords count="2">105041 -30239;105448 -29399;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="110"><coords count="5">-73774 70267;-88006 72996;-86614 79418;-72303 76354;-73774 70267 18;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380884433</t><t k="highway">steps</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:30:31+00</t></tags><coords count="3">-54064 30880;-54197 33639;-52291 33689;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380886264</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:32:31+00</t><t k="barrier">retaining_wall</t></tags><coords count="2">-44720 48313;-43502 50798;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380885149</t><t k="highway">steps</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:16:11+00</t></tags><coords count="2">-47579 46991;-44419 45468;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380886263</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:32:31+00</t><t k="barrier">retaining_wall</t></tags><coords count="3">-43925 48563;-42754 50998;-43867 51518;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380886264</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:32:31+00</t><t k="barrier">retaining_wall</t></tags><coords count="10">-43601 52078;-43867 51518;-44094 51073;-45554 48070;-43839 47237;-44200 46637;-44508 45883;-47434 47270;-47579 46991;-48164 45774;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">380886971</t><t k="z_order">0</t><t k="osm_timestamp">2015/11/17 22:30:31+00</t><t k="barrier">retaining_wall</t></tags><coords count="3">-58489 61783;-38952 58693;-36558 55480;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="115"><tags><t k="osm_id">137397004</t><t k="foot">yes</t><t k="highway">steps</t><t k="z_order">0</t><t k="osm_timestamp">2012/07/31 13:22:28+00</t><t k="other_tags">"bicycle"=>"dismount"</t></tags><coords count="2">-68737 66716;-64690 62117;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="7">41993 -43426 1;41673 -41157;41131 -37321;39021 -36470 1;36440 -35410;35520 -35105;32746 -35055;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="49">55650 -48001 1;58100 -45971;57575 -39847;56868 -36760 1;56196 -33859;57705 -33424;58544 -30576 1;59051 -28836;61745 -28585;62827 -28143 1;64238 -27542;61270 -23750;62952 -20644 1;63562 -19416;64802 -18640;66132 -18364 1;69433 -17636;69847 -12144;73246 -12205 1;74971 -12238;73761 -12740;75468 -13059 1;78247 -13560;76408 -11564;77388 -7919 1;78031 -5568;73712 -6564;71318 -6895 1;67796 -7367;67760 -3204;64923 -1089 1;62765 526;64257 2136;64431 4809 1;64556 6831;62752 7978;61467 9526 1;57602 14160;59447 15251;56713 15503 1;52847 15998;52898 20160;52393 24008 1;52172 25588;51727 27195;52503 28619 1;54162 31789;55742 34798;56263 35989;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="28">50117 -14970 1;52438 -13787;57421 -12090;55910 -9975 1;54507 -8024;52073 -7792;52192 -5406 1;52321 -2445;48985 -1696;49013 1254 1;49013 3941;51480 8209;49062 9354 1;45022 11290;40972 13378;41716 17790 1;42336 21604;42896 26945;40336 29818 1;39011 31879;38402 33428;39165 35478 1;43552 47061;39761 42130;35973 48300 1;35295 49450;38406 51381;39701 51820;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="13">101071 -48621 1;101811 -49872;99474 -50480;99583 -52720 1;99749 -55224;95231 -54829;93892 -52854 33;93165 -51615;94176 -49632;96148 -48469 1;98132 -47305;100343 -47382;101071 -48621 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="31">27092 54864 1;26487 53913;24965 53378;25522 52393 1;28167 48043;23822 45598;23737 40973 1;23670 37249;25365 35605;26952 32225 1;29130 27560;31696 25662;32402 20549 1;32810 17578;31708 15473;33820 13309 1;37955 9058;39582 5101;40977 675 1;41508 -1022;39532 326;39876 -1430 1;40115 -2721;41912 -4892;40715 -5459 1;36149 -7562;29632 -7105;32558 -11197 1;33483 -12527;35648 -12391;34451 -13607;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="49">11053 58371 1;9972 57340;8507 57230;8418 55744 1;8215 52848;5463 50035;7935 48501 1;10000 47239;12398 47133;11487 44474 1;10710 42300;8932 41495;6920 40156 1;1486 37718;6681 36035;4930 34579 1;2252 32440;362 30912;736 27492 1;906 25839;-499 23501;1173 23334 1;2483 23210;3700 24113;4455 23024 1;6635 19833;9106 18950;10176 15230 1;10598 13746;9793 12111;11232 11498 1;15823 9575;23055 6455;22345 5255 1;21780 4415;20142 4408;20323 3391 1;20953 280;17420 1208;16610 -1379 1;16068 -2944;14206 -3622;14903 -5135 1;17555 -11235;15343 -13870;17298 -15631 1;18911 -17061;19893 -20079;17590 -22975;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="28">83081 -59531 1;83788 -58419;85596 -58015;84980 -56865 1;83636 -54453;83093 -54030;82695 -51223 1;82196 -47750;80805 -44562;82015 -41284 1;82792 -39135;83306 -39070;83034 -36814 1;82705 -34370;83880 -32979;85612 -31247 1;91128 -25610;98186 -19126;104206 -24212 1;106275 -25964;106698 -26021;108843 -27710 1;112306 -30437;113360 -32956;117455 -34632 1;119341 -35391;120440 -37575;122196 -36531;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="0"><coords count="28">23723 -23212 1;20467 -24890;21615 -27112;21660 -30789 1;21680 -33751;20840 -37287;21562 -40176 1;21737 -40904;22721 -41772;23071 -42441 1;23700 -43640;23263 -44895;24336 -45752 1;25790 -46929;28771 -45909;28126 -47685 1;27430 -49535;26640 -49645;28102 -51010 1;29000 -51839;30206 -52236;29839 -53092 1;28763 -55885;30587 -57994;29668 -60402 1;28844 -62388;26046 -64975;25719 -67106;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="5"><coords count="13">66014 -14524 1;65757 -14244;65956 -13647;66452 -13181 1;66948 -12715;67563 -12564;67821 -12856 33;68078 -13124;67880 -13720;67383 -14186 1;66874 -14651;66272 -14804;66014 -14524 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="7"><coords count="2">23365 -46223;49378 -15019;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="7"><coords count="13">20790 -47575 1;19961 -46385;19983 -45848;19116 -44719 1;16356 -41142;10725 -40090;12263 -37292 1;14562 -33321;15273 -32046;17533 -28050 1;18452 -26404;20667 -23506;17832 -24030;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="7"><coords count="19">22151 -19007 1;22333 -21274;23070 -21400;24336 -22549 1;26205 -24270;26796 -22019;27336 -21179 1;28892 -18856;31386 -17126;34113 -14326 1;34839 -13565;32321 -12519;29332 -11226 1;25846 -9711;21408 -7655;17942 -5766 1;17002 -5249;16291 -6524;15923 -7466;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="7"><coords count="4">19712 -22439 1;20393 -22089;20998 -21812;21823 -21865;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">103377 4208;129335 -7858;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="10">131943 -24509;128286 -22804 1;127718 -22430;127871 -20932;128166 -20489;132473 -9890 1;133003 -8950;133652 -8987;134573 -9216;138752 -11106;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="5">78791 -40525;80227 -41276 32;80487 -40742 32;79063 -39991 32;78791 -40525 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="19">49065 42234;46809 39925 1;46071 39164;44706 39764;44160 39974 1;31880 45912;21430 50830;9005 56384 1;4987 58182;2927 58995;-1223 60409 32;-8818 62849 32;-15873 64467;-46518 70916;-63737 74548;-72291 76414;-72803 76449;-72803 76449;-86614 79418 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">110833 -32335;116167 -34646;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="10">86683 24516;85456 23001 1;83828 21494;82472 21894;80748 22638;49096 37808 1;48580 38255;48785 39239;49180 39656;50648 41305;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">44070 -37287;52990 -26674;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="6">37258 -40086;55377 -17866 1;55911 -17351;56041 -16454;55447 -16105;44765 -9546 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="17">103257 -63014 1;102501 -63363;101067 -63824;100181 -63770;74038 -51526 1;73778 -51347;73686 -50945;73805 -50660;78370 -41016;78110 -40875;83372 -29269 1;83719 -28750;84381 -28800;84666 -28967;86303 -29697 32;86890 -28346 32;78536 -24430;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="9">88402 6383 32;83020 -107 1;82598 -550;82488 -1135;82904 -1606 1;83296 -2062;83973 -1925;84447 -1359;91656 7273 32;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="21">4851 44033;7172 48993 1;7508 49599;8522 49841;9542 49548;36318 37080;77952 17401 1;79290 16714;79190 15352;78887 14508 1;74751 7145;72138 2418;67607 -3351 1;64075 -7849;62442 -10245;58467 -14348 1;57866 -15111;57279 -15014;56758 -14791;43598 -7036;23677 4293;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="17">130928 -26015;127442 -24539 1;126745 -24387;126228 -25254;125957 -25749;117848 -45916 1;116692 -48320;115958 -50120;114787 -52624 1;113465 -55250;112742 -56424;111057 -59006;107178 -63974 1;106635 -65001;107073 -66947;107966 -67401;112900 -69680;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="10">39591 -41639;41058 -39870 1;41438 -39590;42419 -39307;43327 -39562;63258 -48966 1;63626 -49360;63396 -49631;63330 -49880;62800 -50982 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="9">75353 3171;86927 -6567 32;87836 -5396 32;85312 -3287 1;84955 -2956;84871 -2117;85101 -1809;93078 7771;93731 7273;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="20">-13839 57628 1;-8423 56378;558 53225;5746 51167 1;6103 50910;6620 50401;6435 49841;5492 47571 1;5250 47250;4883 47045;4550 47251 1;4080 47547;4267 48219;4451 48703;-9810 55022;-11282 51968 32;2913 45586 1;3706 45259;4226 45216;3937 44446;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="8">92018 10666 1;91798 10259;91419 10065;91083 10159;86501 12494 1;86228 12661;86162 13113;86353 13284;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="5">77347 2846;84007 11501 1;83925 11790;82073 12411;80848 12434;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="6">49199 -39745;56170 -31246 1;56628 -30741;56657 -29855;56288 -29522;52188 -26048;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="4">92522 -19173;91471 -21279;90541 -20849 32;89787 -22397;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="15">109392 -31159;97540 -25740 1;97391 -25675;97282 -25486;97113 -25145;92878 -16104 1;92807 -15890;92627 -15461;92837 -14902;97545 -4988 32;97309 -4857;97478 -4499 1;96742 -4422;96196 -4900;95938 -6045;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">53628 -25924;61183 -16872;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="7">88697 -21840;89372 -20465 1;88469 -19936;87453 -20155;86865 -20856;85933 -22540 32;86306 -22721;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">52691 -35483;51781 -34641;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="4">105421 -269;105862 661 32;107610 -209 32;107205 -1164;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="4">105842 -464;106075 -17 32;107004 -460 32;106796 -944;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="5">62621 -16886;70645 -6833;74253 -9774;78168 -4870;81053 -1623;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">61784 -16171;76658 2046;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="3">83903 -26941;84875 -25071 32;85172 -25214;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="7">101392 -20835;106479 -10014 32;98793 -6447 32;94827 -14801;96684 -15761 32;95592 -18104;101392 -20835 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="7">75932 4085;80943 -120 1;81512 -467;82057 -115;82391 366;89947 9492 32;86129 11325;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="11">110927 -3370;108756 -7930;100462 -4052 1;99793 -3754;99594 -2975;99768 -2365;101676 1464 1;101971 1870;102438 2124;102983 1839;105758 464;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="3">110155 -7981;112981 -2482;113613 -2794;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="3">83022 -26550;87605 -18033;89066 -18746;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">107506 -406;111508 -2355;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">76292 529;77187 1588;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">103768 5087;102717 2970;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="4">91588 -3915;93410 -2099 32;97662 -4064;102530 5699;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="3">73347 -8056;74356 -8937;80402 -1060;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">53932 -33930;52985 -33113;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="23">107033 -28877;106733 -28910;98797 -25339 1;98538 -25171;98388 -25144;98146 -24701;93897 -15760 1;93875 -15596;93801 -15520;93946 -15122;98473 -5479 1;98770 -5047;99322 -4895;100080 -5196;107445 -8531 1;107678 -8749;107637 -8947;107571 -9146;104906 -14661;105377 -14908 32;105608 -15261 32;106677 -14931 32;107180 -16140;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="3">55912 -24815;55727 -24661 32;54257 -26447;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="4">105643 -373;105970 346 32;107295 -340 32;106981 -1060;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="3">53592 -27260;52850 -28197 32;53022 -28350;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="11">111312 -31431;116570 -33816 1;117623 -34285;118392 -33999;118732 -33155;117865 -32776;122224 -23380 32;122956 -23719 33;123140 -23234;123460 -22127;122482 -21597;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="10">106577 -72889;107132 -71286 1;107471 -70480;106917 -69370;106259 -69095;94733 -63557 1;94076 -63271;93061 -63415;92777 -63922;91722 -66241;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="15">91656 7273 1;91825 7595;91708 8085;91338 8341 1;90943 8599;90380 8571;89987 8279;83020 -107 1;82598 -550;82488 -1135;82904 -1606 1;83296 -2062;83973 -1925;84447 -1359;91656 7273 2;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="7">52865 -25321;58015 -29442;65007 -21069 1;65161 -20871;65221 -20310;64830 -19865;60408 -16196;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="5">93307 10030 1;92990 9111;93671 8724;93981 8580;102100 4806;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="6">137602 2568;136123 -1031 1;135886 -1714;135562 -3034;136788 -3631;140792 -5517;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="5">86180 11299 1;85696 11520;84933 11571;84600 11103;77841 2500;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="5">107957 -73340;108786 -71104 1;109348 -70402;111011 -70420;112147 -71154;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="3">50253 -40239;66806 -20501;61008 -15507;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="10">89106 23648;88350 22611 1;87480 20851;88230 19488;88993 18861;130456 -590 1;131573 -1010;132390 -137;132513 448;134056 4145;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="13">122885 -20791 1;123682 -20931;124026 -20587;124220 -20279 1;124516 -19759;124557 -19610;124805 -19051;124247 -18791;126770 -13436 32;127303 -13671 33;127615 -13027;127785 -11942;127078 -11655;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="12">69902 -54245;70263 -53545 1;70496 -53137;70471 -52411;69951 -52165;65773 -50212 1;65190 -50026;64811 -50207;64336 -50861 1;64230 -51009;64146 -51160;64088 -51310 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">97532 5877;94026 7643;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="10">90246 -65589;91265 -63231 1;91395 -62921;91453 -62485;91085 -62091;72865 -53455 1;72292 -53357;71860 -53750;71652 -54146;71275 -55071 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="8">75329 3182 1;73531 311;71617 -2481;68947 -5964 1;66014 -9748;62761 -13339;59681 -17032;52852 -25299 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="8">102493 5695;84928 14010 1;83947 14328;82208 14335;81290 13264 1;79186 9654;77565 6810;75902 4106 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="8">127217 -9506 1;128711 -9834;129261 -9169;129392 -8159 1;129483 -7310;128210 -6486;127628 -6201;114876 -166 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="16">52222 -26060;44286 -35666 1;43953 -36110;43477 -36839;44007 -37249;49198 -39716;50498 -40359;71756 -50483 1;72353 -50681;72608 -50437;72791 -50016;82580 -28867 1;82697 -28581;82889 -28348;82460 -27953;78047 -25846 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="103"><coords count="2">113025 710;103797 5078 16;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="105"><coords count="7">100808 -43829 1;98536 -44350;96960 -44445;95005 -45360 1;91712 -46975;84446 -53230;81597 -55204;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="121"><coords count="25">135354 3359 1;131118 -6777;128827 -13086;124466 -23184 1;122230 -28569;121316 -31328;118815 -36857 1;117592 -39447;116387 -41341;113567 -42389 1;108645 -44224;105520 -44652;99912 -45675 1;94318 -46673;91276 -50168;92297 -54463 1;93422 -59271;98125 -62493;102888 -61142 1;108366 -59655;109621 -55664;112301 -50675 1;114006 -47669;114649 -47024;116392 -43994;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="121"><coords count="22">136175 3106 1;133978 -2830;132046 -7282;129713 -13165 1;125663 -23342;123397 -28327;119125 -38389 1;116060 -44607;114625 -47718;111474 -53898 1;109969 -56896;109279 -58302;106185 -60671 1;102202 -63773;95329 -62156;92876 -58184 1;90459 -54352;90187 -50824;93812 -47490 1;97171 -44314;104781 -44728;112052 -42935;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="130"><coords count="3">110200 -13020;110670 -11966;109616 -11435;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">77276 -3090;78237 -3896;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">92273 5461;91646 6023;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">74665 -45988;71891 -44561;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">50952 -37614;50016 -36809;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">89077 1619;88425 2194;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="3">77591 -42565;84466 -46005 32;87676 -50289;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="3">89708 -30135;92706 -24126 32;86684 -21129;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">63672 -41422;65586 -37232;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">84677 -36544;80885 -34724;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">51928 -38194;54083 -40021;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">82543 -41069;78876 -39289;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">76800 -41362;72015 -39125;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">60841 -26030;59451 -24780;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="3">73181 -22581;74128 -21349;76821 -17035;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">54522 -35154;56578 -36866;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">63448 -22927;62059 -21602;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">67570 -41544;64447 -40061;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">79310 -28582;80155 -26822;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">84071 -30707;84606 -29504;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">79721 -43680;85566 -31697;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">74718 -6256;75740 -7112;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">71716 -19316;74127 -21411;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">85773 -47654;92351 -46911;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="2">71312 -45401;72637 -42675;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>
<object type="1" symbol="116"><coords count="6">107473 -60804;101719 -45270;95110 -32822 32;86916 -29021;87293 -28191;84071 -26669;</coords><pattern rotation="0"><coord x="0" y="0"/></pattern></object>