summaryrefslogtreecommitdiff
path: root/play.html
blob: 5df888b01c22d9ea8f27569e4c42911bbc681a75 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
<!DOCTYPE html>
<!-- vim:set nowrap: -->
<html>
<head>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
<meta charset="utf-8">
<title>ROMMEL</title>
<link rel="icon" href="favicon.png">
<link rel="stylesheet" href="/fonts/fonts.css">
<link rel="stylesheet" href="/common/play.css">
<script defer src="/common/play.js"></script>
<script defer src="data.js"></script>
<script defer src="play.js"></script>
<style>

main { background-color: dimgray; }
#roles { background-color: silver; }
header { background-color: silver; }
header.your_turn { background-color: orange; }
#role_Axis .role_name { background-color: darkseagreen; }
#role_Allied .role_name { background-color: tan; }
#turn_info { background-color: gainsboro; }
.role_vp { float: right; }
.role_info { border-bottom: 1px solid black; }

#log { background-color: ghostwhite; }

.role_info { padding: 15px; }

.action {
	cursor: pointer;
}

/* BATTLE DIALOG */

#battle_header { background-color: brown; color: gold }
#battle_hits { background-color: #c4ab8b; }
#battle_line_1, #battle_line_2 { background-color: #d6c4a9; background: url(texture_clear.png); }
#battle_buttons { background-color: #c4ab8b; }
#battle_message { background-color: #d6c4a9; }

#battle {
	position: fixed;
	min-width: 524px; /* 6 blocks wide */
	left: 12px;
	top: 56px;
	z-index: 100;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
	border: 1px solid black;
	user-select: none;
}

#battle_header {
	cursor: move;
	padding: 2px 8px;
	line-height: 24px;
	min-height: 24px;
	text-align: center;
	font-weight: bold;
	border-bottom: 1px solid black;
}

#battle_message {
	padding: 2px 8px;
	line-height: 24px;
	min-height: 24px;
	text-align: center;
	border-top: 1px solid black;
}

#battle_hits {
	padding: 4px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	border-bottom: 1px solid black;
}

#battle_hits .hits_text {
	width: 24px;
}

#battle_hits .hits_icon {
	display: block;
	vertical-align: middle
}

#battle_line_1, #battle_line_2 {
	padding: 20px;
	min-height: 60px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

#battle_buttons {
	padding: 12px;
	min-height: 28px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	border-top: 1px solid black;
}

/* TABLES */

table { border-collapse: collapse; font-size: 12px; }
td.blank { background-color: transparent; border: none }
td,th { border: 1px solid black; text-align: center; padding: 2px 4px; }
td { background-color: white; min-width: 20px; }
td img { vertical-align: middle }
th { background-color: gainsboro; }

/* MAP */

#mapwrap {
	width: 2672px;
	height: 960px;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.5);
}

#map {
	background-repeat: no-repeat;
	width: 2672px;
	height: 960px;
	overflow: clip;
}

#mapsvg {
	display: block;
	position: absolute;
	user-select: none;
}

#calendar {
	user-select: none;
	position: absolute;
	display: flex;
	top: 24px;
	left: 1840px;
	gap: 9px;
}

#calendar2 {
	display: flex;
	user-select: none;
	position: absolute;
	top: 104px;
	left: 1840px;
	gap: 9px;
	display: none;
}

.month {
	width: 68px;
	height: 68px;
	background-color: #fee0bf;
	color: black;
	font-size: 40px;
	line-height: 68px;
	font-weight: bold;
	text-align: center;
	border: 2px solid #231f20;
	color: #231f20;
}

svg .side {
	stroke-linecap: round;
	stroke-width: 8px;
}

svg .side.axis_supply {
	stroke-width: 64px;
	stroke-linecap: butt;
	stroke-dasharray: 8 100;
	stroke-dashoffset: -31;
	stroke-opacity: 0.6;
	stroke: green;
}

svg .side.allied_supply {
	stroke-width: 64px;
	stroke-linecap: butt;
	stroke-dasharray: 8 100;
	stroke-dashoffset: -31;
	stroke-opacity: 0.6;
	stroke: crimson;
}

svg .side.allied_supply.axis_supply {
	stroke: yellow;
}

svg .side.axis_control {
	stroke: green;
	stroke-width: 8px;
	stroke-opacity: 0.8;
	stroke-dasharray: 54 100;
	stroke-dashoffset: -8;
}

svg .side.allied_control {
	stroke: brown;
	stroke-width: 8px;
	stroke-opacity: 0.8;
	stroke-dasharray: 54 100;
	stroke-dashoffset: -8;
}

svg .hex.action {
	stroke: white;
	stroke-width: 2;
}

svg .hex.from {
	fill: gold;
	fill-opacity: 0.2;
}

svg .hex.to {
	fill: plum;
	fill-opacity: 0.2;
}

svg .hex.axis_supply {
	fill: green;
	fill-opacity: 0.3;
}

svg .hex.allied_supply {
	fill: brown;
	fill-opacity: 0.3;
}

svg .hex.axis_supply.allied_supply {
	fill: gold;
	fill-opacity: 0.3;
}

svg .hex.axis_control {
	fill: green;
	fill-opacity: 0.2;
}

svg .hex.allied_control {
	fill: brown;
	fill-opacity: 0.2;
}

#map .unit {
	position: absolute;
}

.unit {
	width: 51px;
	height: 51px;
	border-width: 4px;
}
.unit.m {
	width: 42px;
	height: 42px;
	border-width: 4px;
}
.unit.s {
	width: 34px;
	height: 34px;
	border-width: 3px;
}

.unit {
	background-image: url(units.svg);
	background-size: 1000%;
	border-style: solid;
	transition: top 200ms, left 200ms;
}

.unit.italian {
	background-color: #f9e3b3;
	border-color: dimgray;
	box-shadow: 0 0 2px 1px #2d292c80;
}

.unit.german {
	background-color: #abba8e;
	border-color: dimgray;
	box-shadow: 0 0 2px 1px #004e2f;
	box-shadow: 0 0 2px 1px #2d292c80;
}

.unit.allied {
	background-color: #e4d1ab;
	border-color: tan;
	box-shadow: 0 0 2px 1px #5c3a1e80;
}

.unit.action {
	box-shadow: 0 0 0 2px white;
}

.unit.selected {
	box-shadow: 0 0 0 2px yellow;
}

.unit.disrupted {
	border-color: crimson;
}

.unit.moved {
	border-color: black;
}

.unit.unsupplied {
	border-color: green;
}

.unit.r0 { transform: rotate(0deg); }
.unit.r1 { transform: rotate(-90deg); }
.unit.r2 { transform: rotate(-180deg); }
.unit.r3 { transform: rotate(-270deg); }

.unit.r0.hit1 { transform: rotate(-15deg); }
.unit.r1.hit1 { transform: rotate(-105deg); }
.unit.r2.hit1 { transform: rotate(-195deg); }
.unit.r3.hit1 { transform: rotate(-285deg); }

.unit.r0.hit2 { transform: rotate(-30deg); }
.unit.r1.hit2 { transform: rotate(-120deg); }
.unit.r2.hit2 { transform: rotate(-210deg); }
.unit.r3.hit2 { transform: rotate(-300deg); }

.unit.r0.hit3 { transform: rotate(-45deg); }
.unit.r1.hit3 { transform: rotate(-135deg); }
.unit.r2.hit3 { transform: rotate(-225deg); }
.unit.r3.hit3 { transform: rotate(-315deg); }

.unit.u0{background-position:0% 0%}
.unit.u1{background-position:11.11111111111111% 0%}
.unit.u2{background-position:22.22222222222222% 0%}
.unit.u3{background-position:33.33333333333333% 0%}
.unit.u4{background-position:44.44444444444444% 0%}
.unit.u5{background-position:55.55555555555556% 0%}
.unit.u6{background-position:66.66666666666666% 0%}
.unit.u7{background-position:77.77777777777777% 0%}
.unit.u8{background-position:88.88888888888889% 0%}
.unit.u9{background-position:100% 0%}
.unit.u10{background-position:0% 11.11111111111111%}
.unit.u11{background-position:11.11111111111111% 11.11111111111111%}
.unit.u12{background-position:22.22222222222222% 11.11111111111111%}
.unit.u13{background-position:33.33333333333333% 11.11111111111111%}
.unit.u14{background-position:44.44444444444444% 11.11111111111111%}
.unit.u15{background-position:55.55555555555556% 11.11111111111111%}
.unit.u16{background-position:66.66666666666666% 11.11111111111111%}
.unit.u17{background-position:77.77777777777777% 11.11111111111111%}
.unit.u18{background-position:88.88888888888889% 11.11111111111111%}
.unit.u19{background-position:100% 11.11111111111111%}
.unit.u20{background-position:0% 22.22222222222222%}
.unit.u21{background-position:11.11111111111111% 22.22222222222222%}
.unit.u22{background-position:22.22222222222222% 22.22222222222222%}
.unit.u23{background-position:33.33333333333333% 22.22222222222222%}
.unit.u24{background-position:44.44444444444444% 22.22222222222222%}
.unit.u25{background-position:55.55555555555556% 22.22222222222222%}
.unit.u26{background-position:66.66666666666666% 22.22222222222222%}
.unit.u27{background-position:77.77777777777777% 22.22222222222222%}
.unit.u28{background-position:88.88888888888889% 22.22222222222222%}
.unit.u29{background-position:100% 22.22222222222222%}
.unit.u30{background-position:0% 33.33333333333333%}
.unit.u31{background-position:11.11111111111111% 33.33333333333333%}
.unit.u32{background-position:22.22222222222222% 33.33333333333333%}
.unit.u33{background-position:33.33333333333333% 33.33333333333333%}
.unit.u34{background-position:44.44444444444444% 33.33333333333333%}
.unit.u35{background-position:55.55555555555556% 33.33333333333333%}
.unit.u36{background-position:66.66666666666666% 33.33333333333333%}
.unit.u37{background-position:77.77777777777777% 33.33333333333333%}
.unit.u38{background-position:88.88888888888889% 33.33333333333333%}
.unit.u39{background-position:100% 33.33333333333333%}
.unit.u40{background-position:0% 44.44444444444444%}
.unit.u41{background-position:11.11111111111111% 44.44444444444444%}
.unit.u42{background-position:22.22222222222222% 44.44444444444444%}
.unit.u43{background-position:33.33333333333333% 44.44444444444444%}
.unit.u44{background-position:44.44444444444444% 44.44444444444444%}
.unit.u45{background-position:55.55555555555556% 44.44444444444444%}
.unit.u46{background-position:66.66666666666666% 44.44444444444444%}
.unit.u47{background-position:77.77777777777777% 44.44444444444444%}
.unit.u48{background-position:88.88888888888889% 44.44444444444444%}
.unit.u49{background-position:100% 44.44444444444444%}
.unit.u50{background-position:0% 55.55555555555556%}
.unit.u51{background-position:11.11111111111111% 55.55555555555556%}
.unit.u52{background-position:22.22222222222222% 55.55555555555556%}
.unit.u53{background-position:33.33333333333333% 55.55555555555556%}
.unit.u54{background-position:44.44444444444444% 55.55555555555556%}
.unit.u55{background-position:55.55555555555556% 55.55555555555556%}
.unit.u56{background-position:66.66666666666666% 55.55555555555556%}
.unit.u57{background-position:77.77777777777777% 55.55555555555556%}
.unit.u58{background-position:88.88888888888889% 55.55555555555556%}
.unit.u59{background-position:100% 55.55555555555556%}
.unit.u60{background-position:0% 66.66666666666666%}
.unit.u61{background-position:11.11111111111111% 66.66666666666666%}
.unit.u62{background-position:22.22222222222222% 66.66666666666666%}
.unit.u63{background-position:33.33333333333333% 66.66666666666666%}
.unit.u64{background-position:44.44444444444444% 66.66666666666666%}
.unit.u65{background-position:55.55555555555556% 66.66666666666666%}
.unit.u66{background-position:66.66666666666666% 66.66666666666666%}
.unit.u67{background-position:77.77777777777777% 66.66666666666666%}
.unit.u68{background-position:88.88888888888889% 66.66666666666666%}
.unit.u69{background-position:100% 66.66666666666666%}
.unit.u70{background-position:0% 77.77777777777777%}
.unit.u71{background-position:11.11111111111111% 77.77777777777777%}
.unit.u72{background-position:22.22222222222222% 77.77777777777777%}
.unit.u73{background-position:33.33333333333333% 77.77777777777777%}
.unit.u74{background-position:44.44444444444444% 77.77777777777777%}
.unit.u75{background-position:55.55555555555556% 77.77777777777777%}
.unit.u76{background-position:66.66666666666666% 77.77777777777777%}
.unit.u77{background-position:77.77777777777777% 77.77777777777777%}
.unit.u78{background-position:88.88888888888889% 77.77777777777777%}
.unit.u79{background-position:100% 77.77777777777777%}
.unit.u80{background-position:0% 88.88888888888889%}
.unit.u81{background-position:11.11111111111111% 88.88888888888889%}
.unit.u82{background-position:22.22222222222222% 88.88888888888889%}
.unit.u83{background-position:33.33333333333333% 88.88888888888889%}
.unit.u84{background-position:44.44444444444444% 88.88888888888889%}
.unit.u85{background-position:55.55555555555556% 88.88888888888889%}
.unit.u86{background-position:66.66666666666666% 88.88888888888889%}
.unit.u87{background-position:77.77777777777777% 88.88888888888889%}
.unit.u88{background-position:88.88888888888889% 88.88888888888889%}
.unit.u89{background-position:100% 88.88888888888889%}
.unit.u90{background-position:0% 100%}
.unit.u91{background-position:11.11111111111111% 100%}
.unit.u92{background-position:22.22222222222222% 100%}
.unit.u93{background-position:33.33333333333333% 100%}

</style>
</head>
<body>

	<div id="battle" class="hide">
		<div id="battle_header"></div>
		<div id="battle_hits">
			<img class="hits_icon" src="icons/armor.svg">
			<div class="hits_text" id="hits_armor">0</div>
			<img class="hits_icon" src="icons/infantry.svg">
			<div class="hits_text" id="hits_infantry">0</div>
			<img class="hits_icon" src="icons/motorized_antitank_old.svg">
			<div class="hits_text" id="hits_antitank">0</div>
			<img class="hits_icon" src="icons/artillery.svg">
			<div class="hits_text" id="hits_artillery">0</div>
		</div>
		<div id="battle_line_1"></div>
		<div id="battle_line_2"></div>
		<div id="battle_buttons">
			<button id="target_armor_button" onclick="send_action('armor')">Armor</button>
			<button id="target_infantry_button" onclick="send_action('infantry')">Infantry</button>
			<button id="target_antitank_button" onclick="send_action('antitank')">Anti-tank</button>
			<button id="target_artillery_button" onclick="send_action('artillery')">Artillery</button>
		</div>
		<div id="battle_message"></div>
	</div>

<header>
	<div id="toolbar">
		<div class="menu">
			<div class="menu_title"><img src="/images/cog.svg"></div>
			<div class="menu_popup">
				<div class="menu_item" onclick="window.open('info/rules.html', '_blank')">Rules</div>
				<div class="menu_item" onclick="window.open('info/units.html', '_blank')">Units</div>
				<div class="resign menu_separator"></div>
				<div class="resign menu_item" onclick="confirm_resign()">Resign</div>
				<div class="debug menu_separator"></div>
				<div class="debug menu_item" onclick="send_save()">&#x1F41E; Save</div>
				<div class="debug menu_item" onclick="send_restore()">&#x1F41E; Restore</div>
				<div class="debug menu_item" onclick="send_restart('1940')">&#x26a0; Restart 1940</div>
				<div class="debug menu_item" onclick="send_restart('1941')">&#x26a0; Restart 1941</div>
				<div class="debug menu_item" onclick="send_restart('1942')">&#x26a0; Restart 1942</div>
				<div class="debug menu_item" onclick="send_restart('Crusader')">&#x26a0; Restart Crusader</div>
				<div class="debug menu_item" onclick="send_restart('Battleaxe')">&#x26a0; Restart Battleaxe</div>
				<div class="debug menu_item" onclick="send_restart('Gazala')">&#x26a0; Restart Gazala</div>
				<div class="debug menu_item" onclick="send_restart('Pursuit to Alamein')">&#x26a0; Restart Pursuit</div>
				<div class="debug menu_item" onclick="send_restart('1941-42')">&#x26a0; Restart 1941-42</div>
			</div>
		</div>
		<div class="icon_button" onclick="toggle_units()"><img src="/images/earth-africa-europe.svg"></div>
		<div class="icon_button" onclick="toggle_zoom()"><img src="/images/magnifying-glass.svg"></div>
		<div class="icon_button" onclick="toggle_log()"><img src="/images/scroll-quill.svg"></div>
	</div>
	<div id="prompt"></div>
	<div id="actions"></div>
</header>

<aside>
	<div id="roles">
		<div class="role" id="role_Axis">
			<div class="role_name">
				Axis
				<div class="role_vp" id="axis_vp"></div>
				<div class="role_user">-</div>
			</div>
			<div id="info_Axis" class="role_info"></div>
		</div>
		<div class="role" id="role_Allied">
			<div class="role_name">
				Allied
				<div class="role_vp" id="allied_vp"></div>
				<div class="role_user">-</div>
			</div>
			<div id="info_Allied" class="role_info"></div>
		</div>
		<div id="turn_info">1940</div>
	</div>
	<div id="log"></div>
</aside>

<main>
<div id="mapwrap">
<div id="map">

<!-- BEGIN INSERT MAP FILE -->
<svg id="mapsvg" xmlns="http://www.w3.org/2000/svg" width="2672" height="984" class="v3">

<defs>

<path id="land_path" d="M551 30c-4 1-10 0-12 5-5 0-9 3-13 6-4 5-9 9-15 11-5 3-10 7-16 7-8 1-13 6-20 9-5 2-11 2-17 3l-14 4-15 6c-4 1-8 4-11 7l-11 6c-5 2-8 5-11 9s-9 4-13 8-9 5-15 8c-5 3-12 3-16 8-5 4-12 6-17 9-7 3-10 10-17 12l-12 9c-5 4-10 9-16 12l-11 8c-12 6-20 17-29 25l-14 10c-2 4-7 4-10 7-4 2-8 3-11 8-2 4-8 6-10 11l-12 11c-2 4-7 6-10 10-6 4-7 12-11 17l-11 17-7 14c-4 5-1 11-5 16-6 10-16 18-17 30 0 8 4 14 7 20 3 10 0 21 0 32s0 25 8 34c4 5 10 9 9 16-2 6-1 13 1 18 5 11 13 20 17 32l14 33c2 8 4 16 4 25 1 6 3 13 7 17 5 8 1 17-1 25l-5 19c-2 7-7 14-11 20-4 4-10 5-13 10-4 6-8 12-14 16-7 7-13 14-21 20-6 4-13 8-18 13-10 8-23 10-34 17-7 3-13 7-18 13-8 7-21 6-30 11-5 3-10 7-16 7-6 2-11-1-16-2l-23-5v273h2728V212l-27 4c-1 8-10 4-15 7-10 2-19 0-29 1-4 0-10 1-13 5-4 7-9 16-19 16-5 1-8-2-9-6-5 1-5 8-10 8-4 1-10 0-11 3 3-1 4 3 1 3-3 1-11 6-8-1l-13 7c-4 3-9 4-13 6-3 5-9 4-14 7-5 4-11 7-18 9l-19 8c-6 2-13 6-18 10-9-2-17 4-26 5-18 0-35-6-51-14l-22-10c-5 0-10-3-16-2-5 1-9 1-13-1-5-3-11-4-16-2-6 2-11 1-16 0s-11 0-15-4c-5-4-13-4-18 1l-14 7c-5 3-11 6-17 3-5-5-12-3-18 0-6 2-12 4-19 4-4 3-9 6-15 6-5 1-11-1-13-7-4-3-6-8-9-11-5-3-10 0-14 2-5 2-11 0-14 5-3 4-9 4-14 5-5-1-10-2-14 1-5 2-11 5-16 2-4-3-7-6-12-5-6 1-11-2-14-7s-10-9-6-15c1-6-6-3-7 1-4 5-10 7-16 6-9 0-19 2-26-4-2-5-6-10-12-8l-22 3c0-5-5-8-10-7s-9 5-15 5c-5 1-11 3-17 2l-14 2c-5-2-11 0-15 3-6 4-12 3-18 4l-18 3c-11 1-22-1-33-2-8-1-16-4-24-1-10 1-19-4-29-4l-20-3-18-5c-8-3-17 0-25-1-8-2-15 3-22 2-11-1-20 7-30 9l-15 4c-4 4-10 5-16 6l-23 5c-4 2-9 3-13 6l-14 4c-7 2-15 4-22 4-6 0-12 2-17 3-9 2-18-1-27-1s-19 0-26-6c-3-2-2-6-6-6 7-2-2-9 2-13-2-3-2-7-3-11v-12c-3-2 2-5-1-8-1-7-9-9-15-11-4-1-9-5-9-10-3-5-2-10-2-16l-2-15c-3-3-5-8-9-10l-14-4c-5-3-10 1-15 0-6 2-10-3-15-4-7-1-14 1-19-3-4-3-7-6-12-6-6-1-5 10-12 7-3 1-4 8-6 3-3-2-6 1-8 1s-4 2-6 1c-4 2-9-5-11 1-1-4-4-6-8-4-3 2-7 0-10 0-4 5-7-1-11 2-9 2-17-2-25-1-6 2-10-2-14-5-5-3-11 4-14-3-4-1-9 0-13 3-4 0-5 6-10 7-3-1-4 1-4 4-4 0-8-5-11 0-3 1-6-3-6 1-3-2-10 1-15-2-5-1-11-2-17-1-4 2-9 1-14 2l-20-1-14-2c0-2-6 0-3-3h-2l-3-2c-4 3-12-6-4-6 3 2 5-3 1-4-3-2-6-2-9-2s-5 3-8 1c-4 2-7-2-11 0-2 2-3 1-4-1-3 0-3 4-6 1-2-3-3 2-6-1-1 3-3 1-5 2 0 1-3 2-3 0-1-3-6 4-4-1-1-3-2 0-3 0-4-4-8-2-12-3h-2c-2-4-7-3-11-4s-7-2-11-1-7-2-10 0l-12 2c-5 0-8 4-13 5-3 0-4 2-7 1h-1c-6 3-12 3-17 5-2 2-6 1-8 2-3 3-9-1-13 3-3 1-5-2-7 2-3 0-7 3-10 1-3 0-4-3-8-4-4-2-10-2-13-5l-11 1c-3 0-8-3-9 2l6 7c-3 4 9 11 1 12-6 0-8-7-9-11-1-7-8-4-11-3l-10-11-6-6c1-2-2-4-4-5-3 0-6-4-9-2-2 1-3 0-4-2 0-4-5 2-9 0-4-1-1 1-1 4-2 0-9-4-4-3 0-2-7-1-8-4-3-3-5-6-6-10s2-9-2-11c-1-3 6-3 4 1 0 1 3 4 5 3v-4c-4-3 4-1 2-4-3-2 1-7-2-9-2 0-4 0-2-2-4 1-4-5-7-6-3-3-1-8-4-13 2-2 5-3 3-7 2-2-1-6-3-6h-1c-1 2 0-2-3-1-4 1-8-4-11-2-3 0-3 3-6 0-3 1-7-1-10-1-5 0-9-2-13-3-4 0-7-2-11-3-3-3-7-5-11-2-4 0-7-3-11-4-3-1-8 1-7-4-3 2-4-3-6 0-6 2-10-2-14-5-5 2-12 1-15-4-6-1-11-5-18-6-4-1-7 2-11 0-6 2-11 3-17 2-3-1-9 0-10-5 2-6-5-8-9-6-4 4-9 7-15 8l-10 4-13 1c-4 0-10 0-13-3 0-5-5-7-9-6-5 2-9 1-12-3l-5-2zm330 118c-6 0 2 7 4 6-1-2 0-6-4-6z" />

<clipPath id="land_clip">
<use href="#land_path"/>
</clipPath>

<path id="pass_path" d="M.22607422 .7285156H.35009767C.30745445 .6340129 .27669273 .5466817 .2578125 .46652223 .24186199 .39841715 .23388672 .32574974 .23388672 .2485199 .23388672 .099604289 .2726237-.053548177 .35009767-.2109375H.22607422C.16292317-.12132772 .11857096-.04027303 .09301758 .032226564 .067464198 .10473633 .0546875 .18074544 .0546875 .2602539 .0546875 .34270225 .068115238 .42107139 .0949707 .49536134 .12182617 .56966146 .16552735 .6473796 .22607422 .7285156Z" />

<pattern id="texture_marsh" width="256" height="256" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="256" height="256" fill="#939874"/>
<image width="256" height="256" href="texture_marsh.png"/>
</pattern>

<pattern id="texture_scree" width="256" height="256" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="256" height="256" fill="#c4ab8b"/>
<image width="256" height="256" href="texture_scree.png"/>
</pattern>

<pattern id="texture_depression" width="1024" height="1024" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="1024" height="1024" fill="#c4ab8b"/>
<image width="1024" height="1024" href="texture_depression.png"/>
</pattern>

<pattern id="texture_mountain" width="1024" height="1024" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="1024" height="1024" fill="#aeae7b"/>
<image width="1024" height="1024" href="texture_mountain.png"/>
</pattern>

<pattern id="texture_clear" width="1024" height="1024" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="1024" height="1024" fill="#d6c4a9"/>
<image width="1024" height="1024" href="texture_clear.png"/>
</pattern>

</defs>

<rect id="sea1" x="0" y="0" width="2672" height="988"
	fill="#5d8ec1"
	/>

<use id="coast" href="#land_path"
	fill="none" 
	stroke="#8eb0d4"
	stroke-width="8"
	stroke-linejoin="round"
	/>

<use id="desert" href="#land_path"
	fill="url(#texture_clear)"
	/>

<path id="border" d="M1459 971c-2-9 0-18 2-27 1-10-14-14-9-23 9-5 12-15 8-24-3-8-2-18 8-17 10-3 6-18 16-20 11-1 18-9 24-18 6-4 18-9 15-19-3-8-10-16-4-24 7-11-1-20-10-25-4-10-7-23-21-22-12 0-28-3-31-17-1-10-5-19-8-28-1-13 3-27 11-37s24-5 33-15c3-7 13-10 7-19 2-4 11-4 13-11 8-4 4-14 7-21-2-9-9-18-5-28 2-8 4-21-7-23-7-8-17-2-26-2-5-5 2-19-11-17-13 0-16-11-19-21-2-10 5-19 2-28-2-9 0-20-3-28-7-4-17 0-20-10-9-7-23-9-28-21 0-11-5-23-1-34 6-10-12-18-3-29 10-5 12-17 21-24 10-4 23-8 28-19 2-12 8-22 5-35-1-9 0-18 7-25 1-7-3-17 8-18 10-6 22-9 30-18"
	clip-path="url(#land_clip)"
	fill="none"
	stroke="#b54d62"
	stroke-width="2"
	stroke-dasharray="12,3,3,3"
	/>

<path id="jebel" d="M557 39.5c-1 0-2 1-4 2-2 2-3 2-8 2s-5 0-7 1c-1 1-4 3-5 5s-3 4-4 4c-4 4-17 8-21 9-1 0-3 1-6 3-12 9-20 12-30 10-9-1-15 0-17 2 0 1-2 2-3 4-3 3-5 3-11 3h-4l-7 5c-12 7-21 14-30 22s-14 11-22 13c-6 2-7 2-10 4-2 3-3 5-3 9-1 5 0 6 4 9 4 4 5 6 1 8-3 2-5 5-5 6s0 2 2 3c1 2 2 2 2 4 0 3 1 4 5 7 6 3 9 6 9 10 0 1-1 2-3 4-3 3-4 6-4 9-1 2 1 7 2 9 2 3 0 6-7 10-5 3-6 5-6 8 0 4-2 5-7 5-6 1-8 2-11 8-1 2-1 3-1 14 0 12 0 15-3 23-2 5-8 17-9 18s-2 1-3 2c-6 1-7 3-4 11 1 3 1 4 1 7-1 5-1 7-4 9-1 1-3 4-5 6-3 5-6 7-12 11-7 3-10 6-13 10-1 2-4 5-5 6-3 3-3 3-3 4 1 2 4 4 7 6 3 1 9 1 17 0 5-1 5-1 7-4 3-2 5-3 10-2h7c5-1 6-1 8 0 3 1 6 1 8 0s3-1 7 1 26 9 28 9 4-3 4-7c1-4 1-6 4-8 3-3 7-2 12 3 2 1 5 3 7 5 2 1 5 3 7 5s2 2 4 2h4c1 1 1 0 2-1 2-2 3-3 7-3h3c1-1 1-3 1-5 0-3 1-4 4-5 4-2 5-3 6-6 2-5 6-6 12-5 9 2 11 1 15-7 1-3 3-5 4-6s3-1 6-2c6 0 8-2 8-9 1-6 1-6 10-6 5-1 6-1 7-2s2-2 2-3c1-3 2-5 5-5 0 0 3 1 6 3 6 3 9 3 23 2 13-1 14-1 18 3 3 5 4 5 6 5 1 0 4 0 6-1 9-2 10-1 14 4 3 4 4 6 6 7 1 0 2 1 3 2 1 2 2 3 6 3 3 0 6-2 8-4 1-2 1-3 1-7 0-10 0-17 1-18s2-3 3-3c6-4 7-7 8-19s2-14 9-17c4-1 6-3 7-8 3-7 10-13 20-17 3-1 4-1 12-1 7 0 9 0 10-1s2-1 3-1c2 1 4 4 4 7 0 4 0 6 2 7 1 2 3 2 8 1 4-1 6-1 8 2s4 4 10 5c5 0 16 0 21-2 4-1 8-3 10-6 3-5 3-5 10-5h5l4-3c2-1 4-3 6-5 5-7 7-9 12-10 4 0 5-1 7-5 3-6 3-8 3-19-1-11-1-11 4-14 2-1 3-2 3-3 1-2 1-4-1-8-1-2-2-5-3-8-1-5-1-6-5-12-3-4-3-7-2-10 3-8 3-9 1-11-1 0-3-1-4-1-3 0-3-1-5-3-3-3-4-5-4-8s-1-5-2-7c-2-2-8-6-11-7-2-1-3-1-5 0-7 1-12 1-14-1 0 0 0-2-1-6 0-4 0-5-1-6-2-2-4-2-9-3-4 0-5-1-4-6 1-11 1-11 0-13-1-1-2-2-3-2-2-1-3-1-9 1h-7c-5-2-6-2-14-2-9 0-10 0-12-1l-2-1h3c2 0 3 0 2-1h-3c-2 0-3 0-3 1-2 3-5 4-8 3-1-1-4-5-3-5s1-1 0-2-3-3-5-3c-1 0-2 0-4-1-3-1-8-1-11 0-1 0-2 1-3 1-2-1-5-3-8-6-5-4-7-5-11-6-2 0-5-1-7-2-5-2-11-4-13-3-1 0-1 1-1 3-1 4-2 4-7 5-4 0-5 0-8 3-1 2-2 3-4 4s-3 2-3 4c0 0 0 1-1 1v2c0 2 0 2-2 4s-2 2-3 2c-2-1-5-5-6-7 0-2 1-5 3-8 1-2 1-2 4-4 2 0 3-1 3-1 0-1 0-1 1-1 1-1 0-4-2-6-2-3-5-4-10-5-2 0-6-1-8-1-5-1-13-2-14-2zm92 24c4 0 5 1 5 1-2 1-9 0-11-2-1-1-1-1 0 0 0 0 3 0 6 1z"
	fill="url(#texture_mountain)"
	/>

<path id="grid" clip-path="url(#land_clip)"
	stroke="#000"
	stroke-width="2"
	stroke-opacity="0.125"
	x-stroke-dasharray="20 30 99"
	/>

<g id="marshes" fill="url(#texture_marsh)">
<path id="sabkha_el_segira1" d="M120 734c-5 4-5 5-4 10 1 4 0 9-1 16l-1 7c1 1 3 2 6 1h9c3 0 5-1 8-4l3-8c2-8 2-9-1-14-3-6-4-7-9-9-5-1-7-1-10 1z" />
<path id="sabkha_el_segira2" d="M235 743l-4 2c-3 2-6 4-10 4-3 1-4 1-5 4-2 3-5 6-8 7l-8 1c-3-1-6-4-8-8l-4-4h-12l-1 5c1 6 0 9-3 14l-2 4c0 2 2 4 6 5s6 3 10 8c2 2 3 2 8 0l5-2 7 3c3 2 4 2 7 1 2-1 5-4 6-8 2-5 5-7 10-9l6-3 7-13-3-11h-4z" />
<path id="sabkah_al_akhariyah" d="M52 778c-1 0-3 3-4 7-1 7-1 7 2 12 4 7 4 9 1 13-1 2-1 3 1 6 1 5 1 8-2 11-2 2-2 3-1 8 4 15 4 18 1 26-3 10-3 10-2 11 1 2 4 2 9 1 3-2 4-2 8-2l6 2 6 6c2 4 5 5 9 3 5-3 10-2 15 3 3 2 4 3 7 2l25-2c12 0 13-1 15-6l5-10 7-3h3l6-6 7-6 6-3c5-1 7-2 7-3s-5-6-8-7c-3-2-10-4-12-3-1 0-2 1-2 3-2 5-5 7-13 9-5 1-6 2-11 5-4 4-7 5-13 7l-9 3-5 2c-2 0-5-1-7-4-4-3-6-4-16-7-11-4-14-5-16-7-2-4-2-6 1-12l4-8-2-1c-7-4-8-8-8-30l-1-14h-4l-3 2c-3 1-7-2-9-6-1-2-2-3-3-2z" />
<path id="sabkha_el_jeneinen" d="M415 840c-2 2-2 5-2 7l4 5 7 6c5 5 6 6 9 7 2 0 3 1 6 4s6 5 12 7c3 1 4 2 6 5l2 3 8 1 7-1 2 2c3 2 5 2 6-1 1-2 0-4-1-8l-1-6-1-4-4-1-5-1-4-5-4-10-5-2h-11l-6-1h-8c-2 0-5 0-8-3l-7-4h-2z" />
<!--
<path id="sabkha_el_jeneinen_old" d="M445 831l-7 2c-8 1-11 4-11 7v7c-2 5-1 6 3 10 3 2 5 6 7 9l6 9 4 5 2 1c3 1 3 1 4-1 2-2 3-2 5 0l5 2 7 2 9 2c4 0 5 0 7-2s2-3 2-6c-1-4-1-5-6-8-2-3-5-4-5-4-3 0-7-5-8-9-1-2-1-4 1-9l1-7c0-3-2-4-8-5l-8-3c-3-3-8-3-10-2z" />
-->
</g>

<path id="sea2" d="M2536 282l5-3 2-1 2 1 1 1c2-2 4-2 6-2a5 5 0 003-2l2-4 4-3a3 3 0 01-2-1v-1l-3 1-2 1h-1l-2 1-5 2-6 3-4 1-3 3-4 3-3 2-1 1 2 1 3-1a36 36 0 016-3m-29 13l12-5c1 0 6-2 5-4h-1l-2-1-3 2-4 1-4 3-5 1-1 2h1c0 1 1 2 2 1m68-34l-1 1h-1v1l-2-1c-2 0 0-1 1-2h3v1m-14 6v1h1l2-1 1-2 1-1c1 0 0-2-1-1l-3 2-2 1 1 1"
	fill="#5d8ec1"
	/>

<path id="qattara" d="M2429 527.5c-2 0-6 2-9 3-8 4-11 5-18 4-8-1-12-1-18 1-7 1-9 3-11 7-1 1-1 3-2 3-1 1-5 1-7 0-1-1-3-2-5-2-4-3-5-4-12-4s-8 0-14-5c-2-2-4-4-5-4-2-1-5-1-8 0-1 0-3 1-8 0-7 0-11 0-19 3-6 2-13 6-23 12-4 3-11 7-14 9-14 8-18 11-23 18-3 6-6 9-9 10s-3 1-13 1c-9 0-10 0-12 1-4 2-6 6-6 16-1 8-2 10-6 13-2 2-5 4-6 6-7 8-8 9-16 10-4 0-5 1-9 3-7 3-8 3-26 5-12 1-17 2-23 5-5 3-8 3-13-1l-4-2c-3 0-5 2-9 5-5 6-9 11-10 17-1 5-2 6-5 10-2 2-4 4-4 5s-1 4-1 6c0 4 1 6 3 12 3 9 3 11 2 18 0 2-1 7-1 9 0 4 1 5 2 10 3 8 3 10 2 13 0 2-2 2-8 3-8 0-9 1-11 6-2 4-4 6-6 7-1 1-2 1-6 0s-5-1-8-1c-9 2-16 7-18 14-1 1-1 5-1 11v10l-2 7c-4 15-4 21-1 31l2 5-1 2c-1 2-3 3-8 7-5 3-8 6-12 12-2 3-4 6-6 7-3 3-4 3-15 3-14 1-15 1-18 11-2 6-3 7-8 11-2 1-5 3-5 4-4 3-3 10 2 20 7 11 7 12 5 16-3 5-3 6-3 10-1 7 3 12 10 15 5 2 6 3 7 8 2 5 7 9 14 10 4 1 7 1 8 0s6 0 10 2c3 2 5 4 9 9l3 3h169l4-3c2-1 6-4 7-4 5-3 6-7 4-17-1-3-1-7-1-8 0-4 0-4 7-8 6-4 10-7 11-10 0-3 0-5-2-10-2-6-2-8 0-13 5-13 9-19 18-23 5-3 7-6 7-9 0-5-3-10-12-18-6-6-7-7-7-10 0-2 0-3 3-11 2-6 2-9-1-16-3-4-3-6-3-9-1-4 0-6 5-8s5-3 7-7c4-6 7-9 14-10 5-1 6-1 6-4 1-2 3-4 5-4 4-1 6-4 6-6-1-3-4-9-5-9 0-1-2-1-4-1s-4-1-10-5c-2-1-4-2-5-3-2 0-3-1-4-2s-2-2-3-2c-3-1-5-3-6-5s-4-4-12-5c-7-2-9-3-9-5-1-1-1-2 0-6 1-5 1-6-3-11-6-6-6-8 1-11 8-4 16-11 20-17 5-10 8-14 12-16 2-1 8-1 13 0 15 2 20-1 29-22 2-3 3-7 4-8 5-8 13-14 24-19 4-1 5-1 13-2 4 0 8-1 9-1 4-2 4-4 3-11-2-6-2-9 4-10 4-2 4-3 4-9-1-5-1-8 0-9 0 0 2-1 5-2 4-2 5-3 4-5 0-2 0-3 1-4 3-5 6-6 15-7 4 0 7 0 8-1 1 0 2-2 3-3 3-3 5-5 7-5 1 0 1 0 2-1 1-2 2-3 5-1 1 1 2 1 4 0 2 0 3 0 5 2 1 1 2 1 10 2 3 1 8 2 14 5 7 3 12 5 17 3 3 0 6-3 6-6 0-1 1-2 1-3 0-3 2-4 8-4 5 0 7-1 12-2 4-2 8-3 9-3 4 0 9 1 15 3 3 2 4 2 6 4 0 2 2 4 4 5 2 2 3 3 3 6 2 5 4 8 7 7l3-3c1-2 3-5 4-6 2-2 7-12 7-15 1-2-1-4-5-6-2-1-5-3-7-6-2-1-5-3-6-4-1 0-4-1-7-1-3-1-9-2-14-4-5-1-11-3-15-4-3-1-8-3-10-3-5-2-12-2-16-1z"
	fill="url(#texture_depression)"
	/>

<path id="trail" d="M1507 295c-6 8-14 16-10 27-2 9-5 19-14 24-3 9-17 7-25 12l-21 16-7 3M901 198c-2 12-2 25 5 35l19 23c8 5 20 10 19 22 3 11 8 21 10 32 2 10 5 19 10 27 3 12 7 24 19 31m338 13c8-14 20-26 35-32l33-18 16-12m9 142c-10-5-10-17-16-25-7-10-8-22-11-33M547 880c-14-4-21 9-32 12l-35 3c-19 1-35-9-51-17s-24-25-31-40c-8-19-25-32-40-45-11-12-7-31-17-43-7-5-13-11-19-18-7-6-11-14-16-21-5-12-12-22-21-32-11-5-20-12-31-18-12-5-16-20-28-25l-1-1-2-1m1214 149l-27 3c-11 2-19 13-31 10-9-2-17-10-27-9-8 0-17 2-25 1-10 4-20 8-31 6-14 1-28 2-41-3-11-3-23-8-35-7-10 2-18 9-28 7-10-3-21 0-30 5-11 7-23 0-33-4-11-4-23-4-33-1-11 6-21-6-31 0-11 2-21-2-31 1-11 2-22 0-32 5-18 3-36-12-54-4-15 4-30-1-45 2-11 2-23 2-32-4l-32-5c-10 4-21 4-33 2-11 0-21 5-31 10-11 6-22 13-34 16-12 7-26 15-31 29-8 18-23 36-44 38-13 0-26 3-38 8s-25 10-38 5c-12-4-25-3-37-8l-5-4m885-370c-1 12 1 25 3 37 2 11 1 23 3 35l-3 36c-2 11 4 22 1 33-1 16-8 30-15 44-6 14 2 30 4 44 2 12 3 24 8 35 1 1 1 4 3 4m310-518c-2 8 7 23-1 30-8 2-8 14-19 14-11 1-11 14-14 22-4 9-6 19-16 24s-8 17 1 22c7 7 9 18 7 27s-7 17-8 26c-5 9-8 18-9 29-3 10-7 20-6 31 2 12 2 24 1 37 0 8 5 16 5 25 2 8 4 18-5 22s-16 12-16 22c-2 11-3 23-9 33-6 11 3 27-8 37-8 7-7 18-8 28-2 16 3 31 4 47 3 11 11 20 18 29 3 8 5 17 13 23m-494-413c6 8 14 14 18 22-2 6 8 14 11 21 2 9 6 17 14 23 8 11 7 26 16 37 2 8 8 15 14 22 8 11 14 24 21 37 6 10 16 17 22 27l23 37c6 10 14 19 25 23l21 23c8 8 15 18 22 27 8 7 16 14 23 23 3 3 4 7 6 10M988 368c8 5 17 10 27 11 12 2 19 15 32 13 12-5 22 7 34 7 9-3 18-8 26-12 9-4 15-12 24-15l3-4m317-3c7 9 17 15 22 26 3 10 6 21 11 30 4 10 6 22 15 29 7 8 15 16 25 22 11 5 14 17 14 28l6 45 19 53c6 15 0 31 0 46-1 12-10 21-11 33s6 24 9 36c3 11 4 23 9 34 1 12 8 21 19 26 9 8 14 19 21 29 8 10 12 21 13 33 0 15 9 28 12 42l-1 12M380 637c12 0 21-9 26-19 7-11 15-21 28-26 16-7 33-11 49-19 9-2 17-4 25-9 9-3 19-5 26-11 13-12 30-20 39-37 3-12 15-15 25-20 10-8 23-10 35-16l30-11c12-8 27-10 38-20l24-18c11-10-14-11-9-23-1-9 1-18-2-26-3-13-11-23-16-34s-9-22-11-33c-4-11-1-23-8-33-4-9 0-19 2-29 3-10 11-17 9-28 0-14 20-13 21-25 2-9 0-20 9-26 11-6 12-18 15-29 4-8 20 3 23-11 9-5 6-17 7-26-1-7 4-10 8-15M132 701c15 3 29 7 44 9 14 3 29 1 43-2 13-1 24 5 35 9 9 4 20 5 30 7 10 0 21 3 31 1m-19-193c-10-7-22-10-33-13-10-10-23-10-35-7-10 5-24-4-31 1m809-227c-6 18-7 37-13 54-4 22-16 41-18 63-2 13-6 25-10 37-3 14-13 25-15 39-4 17-17 31-30 43-7 11-20 14-29 22-9 9-12 22-13 35-2 11-9 20-8 31-1 22-14 39-29 53-6 7-10 15-18 20-6 9-19 14-18 27 0 9-2 19-10 25-8 7-21 13-20 26 0 12 2 25-1 37M299 533c8 2 15 10 20 17 5 9 11 18 19 25 9 5 16 11 19 21 7 11 23 15 24 29 3 5 0 9 1 14M263 274c10 9 5 25 7 37 6 10-1 20-6 28-4 11 3 22 7 32 9 11 3 24 1 36v6m408-148c-11 0-23 0-33 4-9-1-19-6-23 5-7 8-19 5-28 4-11-5-25-2-36-10-11-5-10 15-20 13-10-1-23-14-32-3-10 7-21-2-32-1-13 1-25-3-37-3-12 3-24 8-37 5-12-3-24-1-36-1-11 3-16-10-26-11-9 0-19 0-27-6-5-3-7-10-14-11m80 389c-7-6-19-2-28-4-10-1-20-2-28-9-12-4-25-7-38-3-17 5-35 2-51 7h-4"
	fill="none"
	stroke="#593a14"
	stroke-width="1"
	stroke-dasharray="2.5,1.5"
	/>

<path id="track" d="M1427 378c-1-8-7-15-8-23-3-7-3-14-10-18 0-8-8-20 4-24 5-9 7-20 13-29l5-10m2 237c-1-9-10-15-11-24-1-11-13-23-5-33 4-7 4-15 8-23-4-9 0-18 1-27l2-24m-421-95c7 6 12 15 22 17 14 7 32 11 41 26 4 8 11 16 21 17 10 2 17 11 26 17 13 7 29 6 44 9l16 1m11 1c8-2 16-7 25-7 10-3 17 7 27 6 12 2 24 2 37 2 11 2 21 6 33 5 17-1 33 8 50 12 13 7 28 13 42 8 9-6 14-15 24-19m209 510c5-9 19-11 21-22 3-11 9-19 7-31 1-10-3-21 1-31l19-23c10-13 29-18 35-34 4-14-1-31 10-43 8-8 16-16 20-28 4-16 18-29 22-45 5-18 16-33 27-46 6-8 18-10 24-17 9-10 10-24 14-36 5-11 13-19 17-30 5-8 6-17 7-25 2-13 9-25 20-32 12-7 18-19 24-31 6-10 18-17 24-28s12-22 22-29c7-6 11-16 20-19 7-5 12-12 19-18 6-10 16-18 17-30m405 13c1 11 0 23-4 35-5 11-7 22-6 34-3 12 3 23 2 35-2 12 7 23 7 35 1 14 3 29 1 43m-978-211c-18-8-35-22-55-19-13 1-20 15-33 14-10-1-19-5-28-4-22 0-43 4-65 1l-42-6c-20-3-41-3-61 1-5 0-9 0-14-2m-324 24c5 12-5 21-11 31s-19 14-22 26c-6 7-4 17-6 26 1 10-7 17-15 22-12 7-19 20-25 32m392-223c1 7 2 14 0 21 3 9 3 20 6 29 6 11 7 22 11 33 6 10 6 22 7 33 4 9 4 20 11 27 6 7 13 13 18 21 2 3 6 5 6 9M220 635c17-9 35-20 40-39 3-16 11-31 23-43 13-17 24-36 34-55 6-12 21-16 26-28 5-9 10-22 22-23 10-3 17-12 26-18 5-6 12-11 16-19m655-151c-7 6-18 12-28 11-9-2-18 3-24 10-8 5-19 1-28 3-10 3-20-1-30 1-12-1-25 1-37 1-14 2-28 4-42 2-21-2-42 0-63-1-1-8 7-12 8-18-7-6-21 1-27-4 3-5 2-8-2-12m29-96c0 11 4 21 2 32s-2 23-3 34c-4 7-10 14-16 20-12 5-18 20-32 21-11 2-22 2-33 0-9 2-17 4-26 2-8 0-16-2-25-1-13 5-23 16-34 24-4 8-19 8-16 18 4 10-6 17-11 25-3 8-10 15-19 15-8 6-19 6-27 11-3 9-11 13-19 17-19 8-41 6-59 17-18 10-39 14-59 18-11-1-22 2-33 3-9-4-19-3-28 2-14 2-29-2-44-1-15 2-30 1-45-2-9 0-18 4-28 3s-19-5-29-4c-10 0-20-1-27-9-8-5-18-10-27-8-10 1-19 4-28 4l-13-1"
	fill="none"
	stroke="#593a14"
	stroke-width="2"
	stroke-dasharray="6,3"
	/>

<path id="highway" d="M2691 301c-17 0-37 3-50-9-8-9-14-20-27-20-9-1-11-11-19-15l-10-3m-1122-45c-7 10-15 21-19 34-5 8-6 18-11 26 1 9 14 12 21 16 12 4 24-1 35-2 12-1 13 12 21 17 11 7 24 3 36 6l35-3c9-1 19 2 26-6 9-4 20-1 28-7 17-9 37-11 54-19 10-2 18-10 28-7l27-6c9 5 20 6 28 11l22 2c13 5 27 3 39 7 18 4 36 7 53 8 14-1 27-4 40-2 10 4 21 1 31 6 11 4 24 1 35 1 9 2 16-1 16-11 1-5-1-21 6-19 0 7 5 12 13 13 10 0 21 2 26 12 7 7 17 7 26 9 9 1 18 3 28 1 9-2 17 3 26 3l25 2c9-6 20-5 30-4 11 2 22 0 32 0 10-2 19-4 27-9 14-4 29-1 43-7 8-1 17-4 25 1 8 4 18 0 27 2 10 2 20 0 29 1 12 3 23 10 35 13 11 7 24 14 38 11 13-1 28 1 38-9 21-11 43-20 63-32 9-4 17-9 26-11 11-2 21-6 30-9 9 9 19-4 25-11s16-9 25-8c10 0 20-2 30-4M-10 765c18-1 37 0 53-10 7-5 12-13 20-13 9-5 12-18 23-18s22-2 28-12c13-10 29-17 39-31 9-8 20-15 31-20 10-2 20-7 26-15 9-6 18-16 12-28-4-12-13-22-13-35-1-10-2-20 0-30 3-11-6-19-11-27-5-9 3-19-1-29-4-8-12-15-14-26-3-7-8-13-15-19-9-14-15-30-23-44-5-12 0-23-1-34 3-10 0-21 7-29 4-9 10-16 10-26 6-21 18-41 30-59 4-9 16-9 20-18 6-8 13-16 22-21 14-9 28-17 37-31 8-4 14-12 23-13 19 1 40 0 56-12 6-7 14-14 24-13s20-4 23-14l23-17c10-3 21-5 32-10 12-5 17-22 32-22 13-2 27-1 40-2 11-1 15-12 24-15 11-3 22-1 32-1 14 0 26 11 40 6 10-3 21-1 29 5 9 7 21 7 31 2 12-6 24 5 37 3 8 0 18 0 26-6 7-1 9-16 15-8 5 10 13 20 25 21 7 4 16 0 21 7 7 1 23 11 15 17-11-2-9 12-7 19 3 8 1 18 12 21 11-2 13 12 24 11 7 5 17 4 23 11 9 5 20 7 26 17 7 9 14-2 21-5 7-6 16 1 23-5 9-3 18-4 27-3 9 0 17 6 26 4l34-3c12 0 22-5 34-4 13 1 25-5 38-6 6-2 16-5 20 0 3 7 0 17 5 23 12-3 22 4 35 2 10-2 20 2 30 2 10 1 20-2 30 0 12-2 24 1 36 2 19 3 38 7 57 6 15 1 29 0 44-1 8-3 16-3 25-5h34c10 2 19 1 29 2l24 2M344 169c-6 8-5 20-11 28-3 13-4 26-15 34-4 9-13 13-19 20-10 10-25 10-35 20l-24 12c-9 4-20-1-31 0-11 0-21-6-32-4h-12m179-107c10 0 12 11 22 9 5 10 19 6 26 16 10 0 21-3 30 3 13 4 19-14 33-11 9 3 19-1 22-10 4-13 20-16 31-16 13-4 20 13 32 11 10-1 12-14 21-15 9-3 12-15 23-16 5-4 10-9 17-8 11-6 18-17 27-25 6-7 12-14 21-16 4-2 8-3 11-6m537 114c-9 12-24 19-30 34-5 10-13 19-24 21-12 3-23 8-35 9-10 3-20 3-29-2-10-5-22-6-33-10-7-4-12-11-19-15-9-6-17-15-20-25 2-8-2-18 4-26v-1"
	fill="none"
	stroke="#d2232a"
	stroke-width="3"
	/>

<g id="hills" fill="none" stroke="#642" stroke-width="1.3">
<path d="m 2438,408 10,0 -5,-10 z" />
<path d="m 2405,501 10,0 -5,-10 z" />
</g>

<path id="forts" d="M1095.63 181.17l-8.974-15.543 8.974-15.544h17.95l8.973 15.544-8.973 15.543zM169.443 294.884l-8.974-15.543 8.974-15.544h17.95l8.973 15.544-8.973 15.543zm1288.455-72.1l-8.975-15.543 8.975-15.543h17.95l8.972 15.543-8.972 15.543z"
	fill="#642"
	stroke="#cbae07"
	stroke-width="3"
	stroke-linejoin="round"
	/>

<path id="towns" d="M1606.5 422.4c0 4-6 4-6 0s6-4 6 0m80.2 47.6c0 4-6 4-6 0s6-4 6 0m816.6-178.8a3.7 3.7 0 01-3.7 3.7c-5 0-5-7.5 0-7.4a3.7 3.7 0 013.7 3.7M777.4 93c0 4-6 4-6 0s6-4 6 0M1800 585.3c0 4.5-6.8 4.5-6.8 0s6.8-4.5 6.8 0M303.2 250.6c0 4-6 4-6 0s6-4 6 0M813.6 286c0 4-6 4-6 0s6-4 6 0m7-131c0 4-6 4-6 0s6-4 6 0m1227.6 194.2c0 4-6 4-6 0s6-4 6 0M317.8 724.8a4.2 4.2 0 01-8.4 0c0-5.5 8.4-5.5 8.4 0M577 512.3c0 4-6 4-6 0 .1-3.9 5.9-3.9 6 0m-79.1 58.4a3 3 0 01-3 3c-4 0-4-6 0-6a3 3 0 013 3M420.8 279c0 4-6 4-6 0s6-4 6 0m-146 134.6a3 3 0 01-3 3c-4 0-4-6 0-6a3 3 0 013 3M1694 360a4.2 4.2 0 11-8.3 0c0-5.6 8.3-5.6 8.3 0m-257.8-85.6a4.2 4.2 0 01-8.3 0c0-5.5 8.3-5.5 8.3 0m-4.9 102.4a4.2 4.2 0 11-8.3 0c0-5.5 8.2-5.5 8.3 0M145.9 395.7a4.2 4.2 0 11-8.3 0c0-5.5 8.2-5.5 8.3 0M302 530a4.2 4.2 0 11-8.3 0c0-5.5 8.3-5.5 8.3 0m82.3 108.4a4.2 4.2 0 11-8.3 0c0-5.5 8.2-5.5 8.3 0m2031-336.2a4.2 4.2 0 11-8.4 0c0-5.5 8.3-5.5 8.3 0m-2259 380a4.2 4.2 0 11-8.3 0c0-5.6 8.3-5.6 8.3 0m110.4-409.5a4.2 4.2 0 01-8.3 0c0-5.4 8.2-5.4 8.3 0m143.8 137.5a4.2 4.2 0 11-8.4 0c.1-5.4 8.3-5.4 8.4 0M120 809.1c0 4-6 4-6 0s6-4 6 0m2159.4-524.6a3.7 3.7 0 01-3.7 3.7 3.7 3.7 0 01-3.7-3.7c0-5 7.4-5 7.4 0m-160.3 11c0 5-7.3 5-7.4 0 0-4.8 7.4-4.8 7.4 0m-333.3 184.9c0 4-6 4-6 0s6-4 6 0m-544.4-214.7a3.7 3.7 0 01-7.3 0c0-4.9 7.3-4.9 7.3 0m-25-40.4c-.1 3.8-5.8 3.8-6 0 0-4 6-4 6 0m88.4-15.4a3.7 3.7 0 11-7.4 0c.1-4.8 7.3-4.8 7.4 0m711.9 48a6.3 6.3 0 01-12.5 0 6.3 6.3 0 1112.5 0m-266.5 1.7a6.2 6.2 0 11-6.2-6.3 6.3 6.3 0 016.2 6.2m-246.7 23.6a6.3 6.3 0 11-12.5 0 6.3 6.3 0 0112.5 0m108.7 12.5a4.2 4.2 0 11-8.3 0 4.2 4.2 0 018.3 0M1919.8 401c0 4.5-6.7 4.5-6.7 0s6.7-4.5 6.7 0m-530 0c-.1 3.3-5 3.3-5.2 0 0-3.5 5.2-3.5 5.2 0M826.5 117.3a3.7 3.7 0 11-7.5 0c0-5 7.4-5 7.5 0M378 807.6c0 3.5-5.2 3.5-5.2 0s5.2-3.4 5.2 0M1323.7 379a4.2 4.2 0 11-8.3 0c0-5.5 8.2-5.5 8.3 0m111.6 130c0 4-6 4-6 0s6-4 6 0m-1219.8 2.9c0 4-6 4-6 0s6-4 6 0M350 171a6.3 6.3 0 11-12.5 0 6.3 6.3 0 0112.5 0m-70.3 15.4a4.2 4.2 0 11-8.4 0c.1-5.4 8.3-5.4 8.4 0M589.3 71.7A6.3 6.3 0 01583 78a6.3 6.3 0 116.3-6.3M495 165.5a4.2 4.2 0 11-8.4 0c.1-5.5 8.3-5.5 8.4 0m121-40.1a4.2 4.2 0 11-8.3 0c.1-5.5 8.2-5.5 8.3 0m46.2-36a4.2 4.2 0 11-8.4 0c0-5.6 8.4-5.6 8.4 0m20 176.2a4.2 4.2 0 11-8.3 0c0-5.5 8.2-5.5 8.3 0m77-198.1a6.3 6.3 0 11-12.5 0 6.3 6.3 0 0112.5 0m148.3 131a6.3 6.3 0 11-12.5 0 6.3 6.3 0 0112.5 0m42.8 87a4.2 4.2 0 01-8.4 0c.1-5.4 8.3-5.4 8.4 0m61.5-72.4a4.2 4.2 0 01-8.4 0c.1-5.5 8.3-5.5 8.4 0m-1.8 70.6a4.2 4.2 0 11-8.3 0c0-5.5 8.2-5.5 8.3 0m-20.4 84.8a4.2 4.2 0 11-8.3 0c0-5.5 8.2-5.5 8.3 0m148.4-107.8a4.2 4.2 0 01-8.4 0c.1-5.5 8.3-5.5 8.4 0m48 112.9a4.2 4.2 0 01-8.3 0c0-5.6 8.4-5.6 8.4 0m-451 50a4.2 4.2 0 01-4.2 4.1 4.2 4.2 0 114.1-4.1m350.6-25.5c0 3.5-5.2 3.5-5.2 0 0-3.4 5.2-3.4 5.2 0M437.2 116.5a4.2 4.2 0 11-8.4 0c.2-5.4 8.3-5.4 8.4 0M227.9 633a6.3 6.3 0 11-12.5 0 6.3 6.3 0 0112.5 0m124.2-50.5c0 4-6 4-6 0s6-4 6 0"
	fill="#642"
	/>

<path id="oasis_supply" d="M1640.545 886.575a4.883 4.883 0 11-9.766 0 4.883 4.883 0 019.766 0zM1441.14 782.828a4.883 4.883 0 11-9.765 0 4.883 4.883 0 019.765 0zm-888.278 97.6a4.883 4.883 0 11-9.765 0 4.883 4.883 0 019.765 0z"
	fill="#97a98b"
	stroke="#005d28"
	stroke-width="1.5"
	/>

<path id="oasis_tree" d="M1623.198 888.834c.038.23.088.456.227.647.024.035.384.692.195.67a8.75 8.75 0 00-2.16.02c.097-.577-.155-1.05-.203-1.598-.052-.602-.143-1.199-.233-1.796-.145-.966-.285-1.936-.328-2.913-.02-.434 0-.846.049-1.272.023-.208-.052-.437-.072-.644a6.617 6.617 0 01-.03-.674c0-.365.031-.728.07-1.09.038-.34.139-.707.114-1.047-.02-.267-.055-.465 0-.737.07-.367.153-.732.157-1.107 0-.21.034-.425.015-.633-.023-.268-.114-.531-.11-.801.01-.498.045-1.004.047-1.507 0-.597.01-1.193.015-1.789-.585.457-1.32.64-1.981.951-.297.138-.647.297-.888.516-.252.229-.42.53-.581.825-.135.245-.274.5-.294.779-.023.287.08.568.108.855.034.358-.05.716-.133 1.066-.286-.364-.374-.726-.496-1.15-.29-1.02-.706-1.98-.57-3.066a5.96 5.96 0 01.122-.634c.114-.48.235-.964.47-1.4.181-.335.437-.643.766-.843.33-.197.59-.445.963-.578.068-.023.139-.045.198-.088.058-.041.104-.11.097-.182-.255-.137-.56-.105-.85-.105-.267 0-.536-.03-.804-.013-.26.016-.5.11-.75.171a6.322 6.322 0 00-.944.316c-.288.119-.545.344-.82.501a.693.693 0 01-.037-.415c.013-.057.033-.11.044-.167.061-.291.036-.604.094-.903.062-.318.165-.63.331-.91.3-.5.781-.864 1.272-1.18.362-.234.689-.372 1.112-.43.175-.024.318-.117.494-.159.287-.07.594-.026.885-.02.093 0 1.414.08 1.418.054.044-.224-.225-.323-.353-.452-.098-.101-.147-.24-.244-.344-.082-.088-.185-.14-.28-.212-.113-.084-.209-.2-.323-.287-.312-.242-.689-.42-1.084-.432-.32-.011-.655.085-.956-.029.036-.075.118-.115.195-.148a4.988 4.988 0 011.831-.395c.13-.003.26 0 .383.04.144.046.266.14.39.227.262.184.528.319.829.414a1.64 1.64 0 01.722.458c.062.067.118.14.186.201.048.045.104.082.145.133.07.083.102.19.143.29.055.131.133.255.229.362.23-.05.208-.24.177-.411a1.282 1.282 0 01.013-.552c.09-.367.308-.715.583-.972.38-.356.864-.543 1.357-.687.248-.074.506-.13.748-.222.258-.099.522-.075.8-.078.108-.002.217-.003.322.023.465.119.923.388 1.339.627.148.085.294.182.445.264.105.056.338.224.453.224.047.024.096.047.132.084.104.107.283.363.114.43-.143.058-.52-.023-.659-.062-.3-.087-.591-.182-.907-.202-.369-.025-.736.04-1.092.131-.25.064-.476.197-.686.344-.277.194-.474.55-.625.848-.017.034-.033.08-.011.106.01.01.024.016.039.019.138.034.266-.067.404-.104.077-.021.16-.019.24-.018.423.008.807-.031 1.184.194.144.086.435.25.524.386.084.137.186.264.301.375.35.338.66.668.953 1.06.07.093.14.191.178.302.07.191.204.322.26.517.065.227.055.475.044.71-.018.343-.08.68-.079 1.025.001.153.01.308-.033.454-.135-.308-.419-.551-.6-.839-.184-.29-.312-.614-.52-.889a3.212 3.212 0 00-.546-.576c-.194-.154-.425-.323-.67-.379a2.01 2.01 0 00-.67-.035.166.166 0 00-.091.03c-.045.04-.04.109-.031.167.01.053.016.106.046.15.05.076.148.103.226.151.099.059.17.15.247.234.224.246.47.336.631.63.091.167.266.24.411.358.12.098.37.255.429.405.064.165.01.468.025.653.048.487.162.966.2 1.454.063.768-.057 1.539-.18 2.3-.035.205-.067.409-.12.609-.07.256-.172.503-.225.762-.05.241-.018.493-.065.73-.04.206-.144.413-.201.62-.064.229-.194.466-.419.54-.083-.478.138-.94.072-1.415-.01-.065-.023-.132-.022-.199 0-.097.04-.19.05-.286a.785.785 0 00-.01-.226c-.035-.33-.01-.625-.112-.944-.065-.206-.027-.45-.054-.664a4.077 4.077 0 00-.168-.722c-.28-.86-.73-1.737-1.717-1.927-.31-.06-.444.074-.303.343.122.232.237.462.328.707.181.5.281 1.03.302 1.561a5.218 5.218 0 01-.186 1.58 4.956 4.956 0 01-.46 1.11c-.034.057-.196.246-.19.304a11 11 0 00-1.063-3.724c.253.515-.036 1.279-.247 1.766-.103.242-.117.52-.171.775-.061.286-.07.578-.079.868l-.059 1.866c-.016.559-.11 1.15-.029 1.697.182 1.258.166 2.533.271 3.8.12 1.456.411 2.894.632 4.337.01.053.015.106.023.157M1447.53 786.84c.038.23.088.456.227.647.024.034.384.692.195.67a8.75 8.75 0 00-2.159.02c.096-.578-.156-1.05-.204-1.598-.052-.602-.143-1.2-.233-1.797-.145-.965-.285-1.936-.329-2.912-.02-.435 0-.846.05-1.272.022-.209-.052-.438-.072-.644a6.617 6.617 0 01-.03-.674c0-.365.03-.728.07-1.09.038-.34.139-.707.114-1.048-.02-.266-.055-.464 0-.736.07-.368.154-.732.157-1.107 0-.21.034-.425.015-.633-.023-.268-.115-.531-.11-.802.01-.497.045-1.003.047-1.506 0-.597.01-1.193.015-1.789-.585.457-1.32.639-1.981.95-.297.139-.647.298-.888.516-.251.23-.42.532-.581.825-.135.246-.274.5-.295.78-.022.287.08.568.109.855.034.358-.05.715-.133 1.066-.286-.365-.375-.726-.496-1.15-.29-1.02-.705-1.981-.57-3.066a5.96 5.96 0 01.122-.634c.114-.48.235-.965.47-1.4.181-.336.437-.644.766-.843.33-.197.59-.445.963-.578.069-.023.139-.045.197-.088.059-.042.104-.11.098-.182-.255-.138-.56-.106-.85-.106-.267 0-.536-.03-.804-.012-.26.016-.5.11-.75.17a6.322 6.322 0 00-.944.316c-.288.12-.545.344-.82.502a.693.693 0 01-.037-.416c.013-.056.033-.11.044-.166.061-.291.036-.604.094-.903.062-.318.165-.63.331-.91.3-.5.781-.864 1.272-1.18.362-.234.69-.372 1.112-.43.175-.024.318-.117.494-.159.287-.07.593-.027.885-.021.093 0 1.414.08 1.418.055.044-.225-.225-.323-.353-.452-.098-.102-.147-.24-.244-.345-.082-.087-.185-.14-.28-.211-.113-.084-.209-.2-.323-.287-.313-.242-.689-.42-1.084-.433-.32-.01-.655.085-.956-.028.036-.075.118-.116.195-.148a4.988 4.988 0 011.831-.395c.13-.003.26 0 .383.04.144.046.266.14.39.227.262.184.528.318.829.414a1.64 1.64 0 01.722.457c.061.068.118.14.186.202.048.044.103.082.145.133.07.083.102.19.143.289.055.132.133.256.229.363.23-.05.208-.24.177-.412a1.282 1.282 0 01.014-.551c.09-.367.307-.715.582-.972.38-.356.864-.543 1.357-.688.248-.073.506-.13.748-.221.258-.099.522-.075.8-.079.108-.001.217-.002.322.024.466.119.923.387 1.339.626.148.086.294.183.445.265.105.056.338.224.453.224.047.023.096.047.132.084.104.107.283.363.114.43-.142.058-.52-.023-.659-.063-.3-.086-.591-.182-.907-.203-.369-.023-.736.042-1.092.133-.25.063-.476.197-.686.344-.277.194-.473.55-.625.847-.017.035-.033.08-.011.107.01.01.024.015.04.018.137.035.265-.067.403-.103.077-.022.159-.02.24-.018.423.007.807-.032 1.184.193.144.086.433.25.524.387.084.137.186.263.301.375.35.338.66.668.953 1.06.07.093.139.19.178.302.07.191.204.322.26.517.065.226.055.475.044.71-.018.342-.08.679-.079 1.024.001.153.01.309-.033.455-.135-.309-.419-.552-.6-.84-.184-.29-.312-.613-.52-.888a3.212 3.212 0 00-.546-.577c-.194-.154-.425-.322-.67-.378a2.01 2.01 0 00-.67-.035.166.166 0 00-.091.03c-.045.039-.04.108-.031.167.01.052.016.105.046.15.05.076.147.103.226.15.099.06.17.15.246.235.225.246.472.336.632.63.091.166.265.24.411.358.12.098.37.255.429.404.064.166.01.469.025.654.048.487.16.966.2 1.453.063.769-.057 1.54-.18 2.301-.034.205-.067.409-.122.609-.067.256-.17.503-.223.762-.05.24-.018.492-.065.73-.04.205-.144.413-.201.62-.064.228-.194.466-.42.54-.082-.478.14-.94.073-1.415-.01-.065-.024-.133-.022-.2 0-.097.04-.19.05-.285a.785.785 0 00-.01-.227c-.035-.328-.01-.625-.112-.943-.065-.207-.027-.45-.055-.664a4.077 4.077 0 00-.167-.722c-.28-.861-.73-1.74-1.717-1.928-.31-.059-.444.075-.303.343.122.232.237.463.327.708.183.5.283 1.03.303 1.561a5.218 5.218 0 01-.186 1.58 4.956 4.956 0 01-.46 1.11c-.034.057-.196.245-.19.304a10.975 10.975 0 00-1.063-3.724c.253.514-.036 1.279-.246 1.765-.104.242-.118.521-.173.776-.06.286-.069.578-.078.867l-.059 1.867c-.016.558-.11 1.15-.03 1.697.183 1.257.167 2.533.27 3.799.123 1.457.413 2.895.634 4.337.01.053.015.106.023.158m-888.273 97.6c.038.23.088.456.227.647.025.034.384.691.194.67a8.75 8.75 0 00-2.158.02c.096-.578-.156-1.05-.204-1.599-.052-.601-.143-1.198-.232-1.797-.146-.965-.286-1.935-.33-2.912-.02-.434.003-.845.05-1.272.023-.208-.051-.436-.072-.644a6.617 6.617 0 01-.03-.673c.002-.365.03-.728.07-1.09.038-.34.138-.707.113-1.048-.02-.267-.054-.464-.003-.736.07-.368.155-.732.158-1.107.002-.21.035-.425.016-.634-.024-.268-.116-.53-.112-.8.006-.5.046-1.004.048-1.507.002-.597.008-1.193.015-1.789-.585.456-1.32.639-1.982.95-.296.139-.646.297-.887.517-.251.228-.42.531-.581.824-.135.246-.274.5-.295.78-.022.287.081.568.11.854.034.359-.05.716-.134 1.067-.285-.365-.374-.726-.496-1.151-.29-1.02-.705-1.98-.57-3.066a5.96 5.96 0 01.122-.633c.113-.48.235-.965.47-1.4.18-.336.437-.644.767-.843.328-.197.588-.445.962-.578.069-.023.139-.046.198-.088.059-.042.104-.111.097-.183-.254-.138-.56-.105-.85-.105-.267 0-.535-.03-.804-.012-.261.016-.5.11-.75.17a6.464 6.464 0 00-.944.316c-.287.118-.545.343-.819.502a.693.693 0 01-.037-.416c.012-.056.031-.11.044-.166.06-.292.035-.605.093-.903.061-.318.164-.63.332-.91.298-.501.78-.864 1.272-1.18a2.58 2.58 0 011.11-.43c.175-.024.32-.117.496-.16.286-.07.592-.026.884-.02.092 0 1.413.08 1.419.054.044-.224-.227-.322-.353-.451-.1-.102-.149-.24-.246-.345-.08-.088-.185-.14-.28-.211-.112-.084-.208-.2-.321-.287-.314-.242-.69-.42-1.084-.434-.322-.01-.657.086-.957-.028.036-.075.117-.115.195-.147a4.988 4.988 0 011.831-.395c.129-.003.26-.001.383.038.144.047.266.141.39.229.261.184.528.318.829.414a1.64 1.64 0 01.722.457c.061.067.117.14.185.201.05.046.104.083.147.134.07.082.1.19.142.289.054.132.133.255.23.363.228-.05.207-.24.176-.412a1.282 1.282 0 01.014-.552c.09-.366.307-.714.582-.972.38-.356.863-.542 1.356-.687.25-.073.507-.13.75-.222.257-.098.521-.075.798-.078.109-.001.218-.002.323.024.466.119.922.387 1.339.626.148.086.293.183.445.265.105.056.338.224.453.224a.459.459 0 01.132.084c.104.107.283.363.113.43-.141.058-.52-.023-.658-.063-.3-.086-.592-.182-.907-.201-.369-.025-.735.04-1.092.131-.25.063-.476.197-.687.344-.277.194-.472.55-.625.847-.016.035-.031.08-.006.107.01.01.024.015.04.018.136.035.265-.068.403-.103.077-.022.158-.02.24-.018.424.007.807-.032 1.184.193.144.086.433.25.523.387.085.136.186.263.302.375.35.338.66.667.953 1.06.07.093.14.19.178.301.069.192.205.322.261.518.064.227.054.475.042.71-.016.342-.08.679-.078 1.024.002.153.008.309-.033.454-.136-.308-.418-.55-.6-.838-.183-.29-.312-.615-.52-.89a3.212 3.212 0 00-.545-.576c-.194-.154-.425-.322-.67-.378a2.01 2.01 0 00-.67-.035.166.166 0 00-.092.03c-.045.039-.04.108-.03.167.007.051.015.105.044.15.052.076.149.103.227.15.098.06.17.15.247.235.223.246.47.336.632.629.09.168.265.24.41.359.121.097.371.255.428.403.065.166.006.47.025.655.05.486.163.966.202 1.453.062.769-.058 1.54-.181 2.301-.034.204-.068.409-.12.609-.07.256-.171.503-.226.762-.05.24-.017.492-.064.73-.04.205-.144.413-.201.62-.064.228-.194.466-.42.538-.081-.476.14-.938.073-1.414-.01-.064-.024-.132-.022-.198.003-.098.039-.19.05-.287a1.094 1.094 0 00-.006-.226c-.035-.328-.01-.625-.111-.943-.065-.207-.028-.45-.056-.664a4.077 4.077 0 00-.166-.723c-.28-.86-.731-1.738-1.717-1.927-.31-.059-.446.074-.304.343.122.232.237.462.328.708.182.5.282 1.03.302 1.56a5.218 5.218 0 01-.186 1.58 4.956 4.956 0 01-.46 1.11c-.034.057-.196.246-.19.305a10.975 10.975 0 00-1.062-3.724c.252.514-.036 1.279-.247 1.765-.104.242-.117.52-.173.776-.06.285-.069.578-.078.867l-.059 1.867c-.016.557-.109 1.15-.028 1.697.182 1.257.165 2.532.27 3.798.121 1.458.412 2.896.632 4.337l.023.16"
	fill="#005d28"
	/>

<path id="supply_outer" d="M94.936 728.41c0 6.078-4.927 11.004-11 11.004-6.083 0-11.011-4.926-11.011-11.004 0-6.08 4.928-11.006 11.01-11.006 6.074 0 11 4.926 11 11.006zM2600.348 250.864c0 6.078-4.928 11.004-11.001 11.004-6.083 0-11.01-4.926-11.01-11.004 0-6.08 4.927-11.006 11.01-11.006 6.073 0 11 4.926 11 11.006z"
	fill="#ffe0c0"
	stroke="#000"
	stroke-width="1.5"
	/>

<path id="supply_inner" d="M90.18 728.409a6.25 6.25 0 11-12.498-.002 6.25 6.25 0 0112.498.002M2595.592 250.862a6.25 6.25 0 11-12.5 0 6.25 6.25 0 0112.5 0"
	fill="#d82020"
	/>

<path id="ridges1" d="M621 36c-1 2-1 2-2 1-2-2-4-1-7 1-1 1-4 2-5 2-2 0-3 0-2 2 0 0 0 2-1 3s-2 4-2 7-1 6-1 6c-1 0-1 2-1 5s0 4 2 4c1 0 2-1 3-5 0-3 1-7 1-8 0-2 4-7 7-9 1-1 6-1 10-2 7 0 7 0 11 3 2 1 5 5 7 9 5 8 6 9 11 9 3 0 4 0 4-3 1-2 1-3 3-3s3 0 3 1c1 0 4 1 7 0 8 0 8 0 8 6 1 2 2 4 3 5 2 2 3 3 8 2h8c1-1 3-1 5 0 2 3 14 3 18 1 1-1 3-2 3-3 1-1 2-1 4-1 1 0 2 0 3-1 0-1 1-1 2-1s2-1 3-2c3-2 2-3-5-3-3-1-4 0-4 1-1 2-1 2-2 1-2-1-7 0-8 2 0 2-2 3-2 1-1-1-1-1-3 0-3 1-4 1-7-1-2-1-3-1-6 1-4 2-5 2-6 0-1-1-1-1-4 0-4 2-4 2-5 1 0-1 0-3 1-3 1-2 1-3-1-5-1-1-2-3-2-5 0-1 0-2-1-2-2 0-3-1-3-1 0-1-3-1-5-2-3 0-4 0-4 1s0 2-1 2-1 0-1-1c0-2-13 0-13 2 0 4-1 5-3 4-1 0-2-1-2-2 1 0 1-1 0-1 0 0-1-1-1-2l-2-2c-2 0-4-7-4-9 0-1-1-2-3-2-3 0-4-1-4-2s0-2-1-2c-1 1-2 0-3 0 0-1-2-1-4-2-2 0-3 1-4 2zm-54 2c-2 1-3 2-3 1-3-1-8-1-9 1 0 1 0 1-2 0-1-2-2-2-5-1-3 0-6 1-8 0-2 0-3 0-3 1s-1 4-6 10c-1 1-3 2-5 3-2 0-4 1-5 1-3 2-7 2-11 1-1-1-2-1-2 0 0 0-1 1-1 3-2 1-2 1-3 0-2-1-2-1-2 0s0 2-1 1c-1 0-6 3-6 4s-1 2-2 1c0 0-2 1-3 2-2 1-3 2-5 2-1-1-2-1-2 0 0 3-10 5-13 3 0-1-1-1-1 0-1 1-2 1-3 1-2 0-3 0-3 1-1 1-10 2-13 2-1 0-3 4-2 6 1 1 1 1 0 1s-1 0-1-1-3-1-4 0c-2 2-3 2-12 2-4 0-5 1-5 2 1 1 0 2-1 3s-2 2-2 3c-1 1-7 5-8 4-1 0-2 0-2 1 0 4-8 10-12 9-1 0-2 0-2 1-1 1-2 1-3 0-2-1-4 0-7 3-2 3-2 3-1 5 1 1 1 1 0 1-1-1-2 0-4 1-2 2-2 2-4 1s-2-1-2 1c0 1-1 2-2 3-1 0-4 2-6 3-2 2-5 3-5 3-2-1-7 4-7 6 0 1-6 2-9 2-1 0-2 1-2 2l-2 2c-5 0-7 0-7 2-1 2-1 2-3 1-2 0-3 0-5 3-1 2-3 4-4 4l-1 1c0 2-3 4-6 4-2 0-3 0-3 1-1 1-2 1-3 1s-2 2-3 4c-2 4-2 4 0 6l1 2 2-4c2-4 5-6 11-6 3 0 4-1 8-5l4-4c1 1 2 0 3-1 2 0 3-1 5-1 1 0 2-1 3-2 1 0 2-1 3-1s2-1 3-2c0-1 6-6 8-6 1 0 1-1 1-1 0-2 12-8 14-8 1 0 3-1 5-2 1-1 4-2 7-2 4-2 5-2 8-9 0-1 2-2 4-2 3 0 7-2 14-9 3-3 7-6 10-7 2-1 6-3 7-5 4-2 6-3 8-1s3 2 7-1c6-3 9-6 9-7 0-2 6-5 7-4 1 0 2 0 2-1 1-1 5-1 10-1 8 1 10 1 14-1 3-2 6-3 7-3s4-2 7-5c3-2 5-4 6-4s2 0 3-1c1 0 4-1 6-2s5-2 6-2c1-1 3-1 4-1 2 0 5-1 7-3 9-8 11-9 19-7 2 0 5 0 7-1s7-1 11-2c6 0 8 0 8-2 0-1-2-2-4-3-3-1-5-2-5-2 0-2-2-1-3 1zm139 28c-1 1-1 1 0 1s1 0 1-1v-1c-1 0-1 0-1 1zm344 90c0 1-1 2-1 1-1 0-2 0-3 1-2 2-10 3-11 2 0-1-6 4-6 6s-3 1-4-1c0-1-1-2-2-2 0 1-1 0-1-1s-1-1-1-1c-1 1-2 1-2 0 0 0-2-2-4-2-3-2-4-2-6-1-1 1-1 1-2 0-2-2-4 0-6 5-1 2-2 4-3 4s-1 1-1 2c0 2 0 2-3 0-2-1-4-3-4-3-1-1-7-1-9 0-2 2-1 4 3 4 3 0 5 1 8 3 5 3 9 3 12-3l2-4 6 1c4 0 7 1 8 1 0 1 2 2 4 3 3 2 4 2 6 0 2-1 3-2 3-4 1-2 2-2 9-2 4-1 9-1 10-2 3 0 4 1 6 3 2 3 3 3 11 2h8s1 0 4-1h5c1-1-2-4-4-4-1 0-3-1-4-2-2-1-2-1-4 0-1 2-1 2-3 0-1-2-2-2-5-1-2 1-4 0-8-2-2-1-5-2-6-3s-1-1-2 1zm340 10c0 1-2 2-3 2-4 0-8 3-7 5 0 2 0 2-2 2-1-1-3-1-4 0-1 2-1 2-3 0-1-1-2-1-2 0-1 2-16 3-17 1 0 0-3-1-5-1-5 0-14-3-15-4s-2 0-3 1c-3 3-3 3-5 2-1-1-1-1-2 0 0 0-1 1-1 0-2-1-7 1-7 3 0 0 0 1-1 1s-1 0-1-1-2-1-4 0c-4 0-5 0-6-2-1-1-1-1-2 0-1 2-14 3-17 2-1-1-3-1-6-1-3-1-5-1-7-3s-3-4-3-5-5-1-7 0c-1 1-2 0-4-1-3-1-3-1-4 0s-2 2-3 2c-3 0-6 4-6 6s0 2-1 1-2 0-4 2c-2 1-4 2-4 1-2-1-3-1-3 0s-1 2-2 2-2 1-3 2c-2 1-9 2-10 0h-6c-3 0-5 0-8-3-3-2-4-3-4-5l-4 2c-3 1-4 1-5-1-1-1-1-1-2 0 0 1-1 1-1 0-1-1-6-1-8 1-1 0-1 1-1 2s0 1-1 0c-2-2-2-2-5-1-2 1-5 1-8 1s-4 0-4 1-1 3-3 4l-3 3-1-3c-1-1-2-3-2-4-2-1-5-1-7 0-1 2-1 2 1 2s3 1 3 4 1 4 2 5c2 1 12-2 15-4 2-2 4-2 8-2 3 1 6 0 11-1 3-1 7-2 8-1 5 0 14 3 14 4 0 0 6 1 12 1 12 0 13 0 19-2 4-2 7-3 8-3s3-2 6-5c5-5 6-5 10-4 4 0 10 3 12 5 1 1 15 3 26 4 7 0 12 1 13 1 1 1 9-1 12-3 1-1 3-1 4-2 2 0 5 0 8-1 2 0 5 0 6 1h2c1 0 4 1 7 1 16 4 28 3 35-3 3-2 5-3 7-4 2 0 6 2 11 7 2 3 3 3 4 2s1-2 0-4-2-4-2-5c1-2 0-2-3-3-2-1-4-1-5-1 0 0-2-1-2-2-3-2-4-3-5-1zM301 184c-2 1-4 2-4 3s-1 2-2 2c-2-1-1 4 2 7 2 2 3 5 3 6 0 3 0 3 2 3 0-1 1-1 1 0-1 0-1 1 0 1 2 2 1 3-1 2s-2-1-2 0c0 3-14 8-17 6 0-1-1-1-1 0-1 1-2 1-4 1-1 0-2 1-3 1-1 1-3 1-7 1-7-1-9 0-10 4 0 3-1 4-3 4-1 0-2 1-2 1 0 1 0 2-2 4-1 1-2 3-1 4 0 2 0 2-1 1s-2 0-5 2c-2 2-5 3-7 3-2 1-3 1-2 7 0 4 0 9 1 11s1 6 1 7c1 3 6 8 8 8 1 0 2-1 2-2 1-2 1-3 0-3-2 2-5-3-6-8-2-8 0-13 4-16 2-1 4-2 6-2s5-4 7-10c2-5 7-10 11-11 4 0 8-1 28-4 5-1 14-4 18-7 2-2 0-5-6-9-3-2-5-4-5-5 0 0-1-2-1-3-2-2-1-5 3-6l2-2s-2-3-3-3l-4 2zm734 10c0 1-1 2-2 2 0 0-2 1-3 2-2 2-2 2-1 4s1 2-1 1c0 0-1 0-1 1 0 2-1 2-1 2-1-1-2 0-2 1v3c-1 2-4 7-4 5 0 0-1 1-1 2-1 2-1 4 0 4 0 2 4 1 4 0s3-5 6-8 6-8 7-9c0-3 2-4 5-5 5-2 4-4-2-6-2 0-4-1-4-1v2zm114 13c0 1 0 2-1 2l-2 4-3 3c-1-1-3 3-2 4 0 3 1 2 5-1 5-4 7-5 12-4 2 1 5 2 7 4 5 5 7 2 2-7-2-3-3-5-5-5-1 0-2 0-2 1s-1 1-1 0c-1-2-2-2-4-1s-2 1-4 0-2-1-2 0zm125 5s-1 1-1 2 1 2 2 2c2 0 6 1 9 2 8 3 17 6 20 6 1 0 2 1 4 1 1 1 4 2 6 3 3 1 6 2 8 5 1 1 4 3 6 4 3 1 7 7 7 11 0 3 3 7 5 7 1 0 1-1 1-3-1-3-1-4 0-5 3-3 2-3-2-7-3-2-5-5-5-6 0-2-1-2-2-2s-2 0-2-1c0 0 0-2-1-3-1-2-2-3-4-3s-3-1-4-2c0-2-3-3-7-3-2 1-3 1-3-1-1-3-1-3-7-2h-7c-1 1-10-2-11-3 0 0-2-1-3-1-2-1-4-1-5-1-2-1-3-1-4 0zm-366 3c-2 1-1 4 0 4 1-1 3 0 4 1 2 1 6 2 9 3 5 2 5 2 8 0 3-1 5-1 5 1 0 3 5 8 9 9s5 2 7 5c2 4 2 5 7 6s11 1 19-2c4-2 5-2 6-1 2 1 7 0 10-2 2-3 6-6 8-6s6-3 5-4c-1 0-3 0-5-1-2 0-4-1-4-1-1-2-4 1-4 4 0 1-1 1-2 1-2-1-3-1-3 2-1 2-1 2-2 1-1-2-6-3-7-1 0 1-2 1-4 1-2-1-3 0-3 0 0 3-7 6-10 5s-4-1-6-1-2 0-2-10c0-1-1-2-4-2-2 0-4-1-4-1 0-1-1-1-2-1-2 0-2 0-2-2 1-4-2-6-9-7-3 0-6 1-6 1 0 2-9 1-10-1-1-1-7-2-8-1zm580 23c0 2-3 3-3 1 0 0-2-1-4-1-3 0-4 1-4 2 0 2 3 6 4 5 0 0 2 1 2 2l2 2 3-3c2-2 3-3 3-4s0-1 1-1c1 1 1 0 1-1s-1-2-2-3c-2-1-2-1-3 1zm-29 11c-1 1-2 3-3 5 0 3 2 12 4 15s2 4 1 6c-2 1-2 1-3-1-1-4-2-1-1 3 0 3 3 6 3 4 0-1 2-1 4-1 3 0 3 0 2-2 0-2 0-3 2-4 1-1 2-2 1-2 0 0-1-1 0-3 0-2-2-5-4-5-1 1-1 0 0-1 0-1 0-2-1-2s-1-1-1-1c1-1 0-2-1-2-1-1-2-5 0-5 1-1 2-6 0-7 0 0-2 1-3 3zM245 297c-2 5-2 9 0 12 1 3 1 8 0 10-1 3-4 4-6 3s-3-1-4 1c-2 1-3 2-4 2s-3 1-4 2-3 1-4 1c-3 0-7 3-7 5 0 3-5 8-9 9h-7c-5-1-5-1-11 4-7 7-10 12-8 17 1 3 1 5 0 7s-1 2 0 5c2 3 5 2 4-1 0-1 1-2 2-3 2-1 2-3 1-6-2-3-2-3 0-3 1-1 1-2 1-4-1-2-1-3 0-2 1 0 2-1 3-2 1-2 2-3 3-4 1 0 2-1 2-1-3 0 3-3 7-3 7 0 7 0 10-3 2-1 3-3 3-3 0-1 1-2 2-3 2-2 3-3 5-2 1 0 1 0 1-1-1-1-1-1 1 0 1 1 2 1 3 0 0 0 2-1 3-1 4 0 6-2 5-4 0 0 0-1 1-1 0 0 1 0 1 1 1 1 8-1 8-2s1-1 2-1 2-1 4-1c1-2 1-2 0-3-1 0-1-2-1-4 1-2 1-4-1-6-2-4-4-8-3-9s1-3 1-7c1-4-2-3-4 1zm1217 4c-1 2-2 4-2 7s1 5 4 8c2 3 5 5 5 5 6 0 7 0 9 4 1 3 4 6 5 4 1-1 1-2 0-3 0-1-1-2 0-3 1-2 1-3-1-2-1 0-1 0-1-2s0-2-1-2l-1-1c0-2-5-4-7-3-1 1-1 1-1 0 0 0-1-1-2-1-1-1-3-2-3-3-2-3-2-3-1-5 2-1 2-5 1-6-1 0-3 1-4 3zm477 9c-1 1-2 1-3 0-1 0-2 0-3 1 0 1-2 1-3 1-2-1-3 0-3 1l-1 1c-3 0-5 3-5 5 1 1 0 2-1 2s-2 1-3 2-2 2-3 2c-1-1-2 0-2 1 0 2-8 9-10 9l-4 2c-3 2-4 2-7 0-1 0-3-1-3-2-1-1-2 0-4 1-2 2-2 2-3 1s-1-1-2 0c0 0-1 1-2 0-2 0-3 0-4 2-1 1-2 2-2 1s-1-1-3-1c-2 1-3 1-3 0s0-2-1-2-1 0-1 1-1 1-2 1c-2 0-5-4-3-5 1 0 1-7 0-9-1 0-1-1-1-1 1 0 0-2-1-4s-2-4-2-5c1-1-2-2-4-1s-3 1-4-1-9-3-11-1c-1 2-1 2-1 0-1-1-2-1-4 0-3 0-5 0-6-1s-1-1-2 0c0 0-1 1-2 1s-2 1-3 1c-1 1-2 2-4 2-1 0-2 0-3 1 0 1-1 1-2 0-3 0-4 2-4 7 0 2-3 4-5 3s-3-1-3 0c0 2-2 2-2 1-1-1-1-1-2 0 0 0-1 1-1 0-1 0-3 1-4 2-3 1-4 2-4 4 0 1 0 2-1 1-1 0-2 1-3 2 0 1-1 2-1 2-6 0-13 3-14 4s-1 2 0 2l-2 4c-3 3-3 6 0 6 1 0 5-5 5-8 0-1 1-2 7-2s8-1 16-7c2-2 5-4 6-4 2 0 3 0 4-1 0-1 1-1 2-1 2 0 7-6 7-8-1-1 0-2 3-3 7-2 17-2 19-1 1 1 4 1 8 0h7c2 1 3 2 4 2s2 2 3 4c2 3 2 4 1 8-1 3-1 4 1 7 2 4 5 6 10 6 2 0 4 0 5 1 0 1 2 0 7-2 4-1 8-2 13-2 9-1 18-5 29-13 2-2 5-3 5-3 1 0 3-2 5-5 1-3 3-5 4-5 3 0 7-2 9-4 1-1 2-2 1-3-2-1-2-1-4 0zm118 2c-2 3-4 3-6 2-2 0-3 0-3 1s0 2-1 2c-2-2-8 2-8 4s-1 2-4 2c-2 0-3 0-5 3-1 1-2 3-3 3 0 1-1 2-1 3 0 0-1 1-1 2-1 0-2 1-1 1 0 1 0 1-1 1s-4 3-8 6c-3 3-7 6-8 6 0 0-1 0-1 1 0 0-1 1-3 2-4 2-5 4-5 6 1 1 2 1 7-2 3-2 8-5 11-7 3-3 6-5 7-5 2 0 8-5 8-7s5-6 7-6c1 0 9-5 13-8 3-3 12-5 17-5s5 0 5-1c0-2-2-3-6-4-3-1-5-2-5-2 0-2-2-1-5 2zm-361 2c-1 0-2 1-3 2 0 1-2 1-3 1-1-1-2 0-2 1 0 2-2 2-4 1-1-1-1-1-2 0 0 1-1 2-2 1-2 0-7 2-7 5 0 1 0 1-2 0-3-1-2-1-6 2-3 2-4 3-6 2-2 0-3 0-3 1s-2 4-5 7c-3 4-6 7-6 8s-2 1-6 0c-1 0-2-1-1-1 0-1-3-5-5-5 0 0-1-1-2-3s-2-2-7 0c-1 0-1-1-2-2 0-2-2-3-2-1 0 1-1 0-2-1-1-2-5-3-6-1-2 2-3 1-3-1s-2-3-5-3c-1 0-3-1-5-3-3-3-3-3-4-2-2 3-7 3-9 1-1-2-5-3-7-1 0 1-1 1-1 0-1 0-3-1-6 0-4 1-6 2-6 3 1 0-1 1-4 1h-5c0-2-2-1-4 2-1 4-1 4-4 3-4 0-9 1-10 4 0 1-1 2-2 1-1 0-3 1-5 3-3 2-4 3-6 3-1-1-2-1-2 0 0 3-6 6-9 6-4 0-6-2-6-6 0-1-1-3-2-3-3 0-3 2-3 7 1 2 2 3 5 5 5 2 13 1 18-1 3-2 6-4 8-5 15-7 22-10 23-12 1 0 2-1 3-1s8-3 9-4c0 0 3-1 7-1 6-1 6-1 9 1 2 2 4 3 7 3 4 0 10 2 12 5 1 1 7 3 12 3 2 0 4 1 5 2 2 0 3 1 4 1s3 0 4 1c1 0 2 1 3 1 1 1 2 1 1 2-1 2 2 4 7 4s5 0 8-4c2-2 5-5 7-6s6-3 8-5c3-2 6-3 7-3s5-2 9-3c4-2 8-4 9-4 4-1 9-6 9-9v-3s-1 0-2 1zM181 411c-3 3-5 4-6 4-2 0-1 7 1 11 1 2 2 5 1 7 0 3 0 3 2 3 1 0 2 0 2 1-1 1 1 3 3 6 3 3 4 3 6 3 2-1 3-1 2 1 0 1 0 3 1 4 2 2 10 4 14 4 1-1 3-1 5-2 1 0 2-1 2-1 0-2 2-2 13-1 3 0 4 0 4 1s1 4 3 6c3 4 7 5 8 2 1-2 1-2-1-2s-3-2-5-6-3-5-8-5c-3 0-7-1-8-2-3-2-8-1-11 2-5 3-10 2-10-3 0-1-2-3-4-4l-9-6c-3-4-4-5-4-9-1-6 0-8 5-13 2-3 2-3 0-4-1-1-2 0-6 3zm671 115c-1 1-2 2-3 2s-2 0-2 1c-1 0-3 1-6 1-5-1-6 0-8 2-1 2-2 4-2 5 1 1-3 2-6 2-2 0-3 0-3 3 0 2-1 3-2 3-1-1-4 2-4 4 0 1-1 2-1 1-1 0-2 0-2 1s-3 1-3 0c-1-1-1-1-2 0 0 0-1 1-2 1-4 0-10 2-11 3 0 1-1 1-2 1s-6 5-6 6c0 0 0 1 1 2s2 0 6-3c5-3 6-4 9-3h9c6 0 7 0 9-3 1-1 2-3 3-5 0-1 3-4 6-7s6-6 5-6c-1-2 4-3 13-3 12 0 24 2 26 4 1 0 2 1 3 1 0 0 2 1 3 3 2 2 3 2 4 1s1-2-1-6-3-5-5-5c-1 1-2 0-2-1s-1-1-2-1c0 1-1 1 0 0 0-1-2-2-4-3-3-1-3-1-5 0-1 2-2 2-3 0-2-1-2-1-3 0-2 1-4 1-5-1-2-1-2-1-2 0zm1572 2c-3 1-6 3-8 4-2 2-5 2-10 2h-11c-3-1-5-1-8 1s-6 3-7 3c-2 0-4 1-6 3-5 4-7 4-15 1-7-3-9-3-13-2-5 0-6 0-7-2-3-3-10-6-18-7-4 0-8 0-9-1-4-2-19 2-30 8-3 2-5 3-6 3s-4 2-7 5c-2 4-5 6-6 6s-2 0-2 1c-1 0-4 1-7 2-9 2-17 9-23 21-3 4-3 5-11 7-7 3-9 3-14 2-4-1-7-1-9 0-3 1-4 2-5 6-1 2-1 7-1 10 0 8-2 11-7 15-3 2-6 5-8 9-1 3-3 5-4 6h-10c-6-1-8 0-10 1-1 1-5 2-8 3-13 2-19 3-22 3-4 0-9 2-12 5-2 1-4 2-6 2-4 1-4 1-8-3-4-3-5-4-7-4-3 1-9 5-9 6 0 0-1 3-3 5s-4 6-5 9-3 6-3 7c-1 0-1 1-1 2 0 2 0 3-1 4-2 2-5 9-6 11 0 7 0 12 2 18 3 7 3 8 2 18l-1 10 4 6c3 6 4 9 2 12-2 2-2 2-7 1-8-1-12 0-15 7-3 6-5 7-15 6-5-1-6-1-9 1-2 1-4 3-5 5 0 1-2 2-3 2-2 1-6 7-6 10 0 1 0 2-1 2s-1 1 0 2c1 4 1 15 0 19-1 1-2 5-2 8-1 3-2 6-2 7-1 0-1 6 1 10 4 9 4 11 2 13 0 2-2 3-3 3-2 0-11 8-14 12-1 2-3 5-5 7-2 5-4 6-7 7-1 0-3 0-4 1-2 1-7 1-12 2-11 0-14 2-15 8s-4 10-8 12-6 5-6 11c-1 4 0 5 2 9l4 4c1 0 5 9 5 11 0 1-1 3-2 4-3 3-5 9-5 13 2 6 7 12 12 13 4 2 5 3 7 6 2 4 9 11 12 11 1 0 2 0 3 1 0 1 4 1 8 2 9 1 13 3 17 9 3 3 4 3 8 3 3 0 4 0 3-1 0-1-1-2-1-3s-1-2-1-2c-1 1-2 0-3-1s-3-2-3-2c-1 0-3-1-3-2-1-1-3-2-4-2s-2-1-3-1c-1-2-8-3-10-2-1 1-7-4-6-5 0-1-1-1-3-1-2 1-3 1-3 0 1-2-3-5-5-5-1 0-1-1-1-2 1-3-1-6-3-6-5-1-7-2-7-4l-1-1c-5 0-6 0-7-3-1-2-2-4-1-4 0 0 1-2 1-4 0-1 1-4 3-6s4-5 4-6c0 0 0-1 1-1 2 0 1-2-2-5-2-2-3-3-3-5 1-1 1-2 0-2s-1-1-1-2c0-2-2-4-5-4-1 0-1 0 0-1s1-2 0-3-1-1 0-2l1-1c-1 0 0-1 1-2 0-1 1-2 1-2 0-1 1-2 3-4 5-5 6-7 6-8-1-1 0-7 2-7 0-1 2 0 3 1 2 2 2 2 3 0 2-1 2-1 3 0s2 2 2 1c1 0 2-1 3 0 3 1 7 0 8-2 0-2 2-3 2-1 1 1 4 0 7-4 2-2 4-3 5-3 2 0 3-1 2-3-1 0-1-1 0-1 1-1 1-2 1-4s4-8 5-8 2-2 4-3c2-2 5-4 6-4 1-1 3-2 4-4 2-1 3-2 4-2 2 0 1-3-2-6-2-2-2-3-1-4 1-2 1-3 0-3v-2c0-2 0-3-2-4-2-2-2-2-1-2 2 0 2-1 2-3-1-2 0-4 1-5s2-2 1-3c0 0-1-2-1-3v-9-9c0-2 0-4-1-5s3-6 5-5c1 0 2 0 1-2 0-2 0-2 2-2 1 1 2 0 2 0s1-1 2-1l3-3c0-2 1-2 2-1 0 1 1 1 3 0s2-1 4 1 2 2 3 1 2-2 3-2c4 0 9-7 9-12 0-1 1-2 2-2 0 0 1 0 1-1 0 0 1-1 3-2h2l6 2c8 2 9 1 10-4 0-2 0-5 1-6 2-2 2-3 0-4 0 0-1-1-1-2 2-2-2-8-3-8-2 1-2 0-1-2 1 0 1-1 0-1-2-1-1-5 1-6 1 0 1-2 0-2s-2-1-2-3c0-1 0-5-1-7s-1-5-1-7c-1-1-1-2-2-3-3-5-3-10 1-13 1-1 1-1 0-2-1-2-1-3 0-2 2 0 4-2 6-5s2-3 1-5c-1-1-1-1 1-3 1-1 2-2 1-4 0-2 0-3 2-3 2-1 2-1 1-2s-1-2 0-2c1-1 1-2 1-3 0-2 1-4 3-6 1-2 2-3 2-2 0 0 1 0 1-1 1 0 3-1 4-1s2 0 2 1c-1 0 3 6 4 7 1 0 1 1 1 2-1 2 4 1 7-1 2-2 5-3 5-2 3 0 9-3 9-5 0-1 0-1 2 0 1 1 2 1 4 0 1-1 3-1 4 0 2 1 3 1 3-1 1 0 2-1 3-1s2-1 3-2c2 0 3-1 5-1 1 0 2 0 3-1 0-1 1-1 2 0 1 0 3-1 6-2 4-3 7-3 9 0l2 2 3-2c3-2 4-2 6-1s4 0 4-2c-1-1-1-1 0-1 1 1 3 0 4-2 3-4 3-4 2-6-1-1-1-1 1-1 1 0 2-1 3-3 1-1 2-2 4-2 3 0 4-1 3-3-1-1-1-2 0-3 2-2 2-4 1-9-1-4-1-7 0-8 1 0 1-1 0-1v-3c1-4 4-4 6-1 2 2 2 2 4 0 3-1 3-1 4 0 1 3 13 2 13-1 0-2 1-2 3-1 1 1 2 0 5-3s6-5 6-5c2 0 2-1 1-3-1 0-1-1 0-1 1-1 1-2 1-4 0-3 4-9 6-8 0 1 2-1 3-2 3-3 4-4 8-3 2 0 4 1 4 1 0 2 2 1 4-2 1-3 2-3 4-3 1 1 2 1 2 0s1-2 1-1c2 0 6-4 6-6-1-1 0-1 1-1 2 0 3-1 4-2 2-2 3-2 5-2 2 1 2 1 2 0-1-1 0-2 1-3 1 0 2-1 2-2 1-2 9-5 10-4 0 1 1 1 1 0 3-2 7-2 11 1 1 1 3 2 4 2s1 0 1 1c-1 1 1 1 3 0 1-1 2 0 4 1 2 2 3 2 4 1 2-1 2-1 3 1s1 3 2 3c0 0 2 0 4 1 2 0 5 1 6 2 3 1 3 1 3 0 0-3 6-3 10-2 2 1 4 2 4 3s9 0 10-1l1-1c0 1 1 0 2-1l4-2c1 1 2 0 2-1 1-1 1-1 3 0 1 1 1 1 2 0 0 0 1-1 1 0 2 1 6-1 6-3 0-1 0-1 1 0 1 2 3 2 5 1 2 0 4 0 5 2 3 1 3 1 4 0 0-1 1-2 2-2s4-1 6-3 4-4 5-4c0-1 2-1 3-1s2 0 2-1c0 0 1-1 3-2s3-1 5 1c2 1 3 3 3 4s1 1 4 0c2-1 2-1 3 1 0 1 1 2 2 2 0-1 1 0 2 0 2 2 7 2 7 0 1-1 1-1 2 0s3 2 5 3c2 0 4 1 5 2 0 1 1 1 2 0s17-1 17 0 1 1 2 1c3-2 6 1 7 5v6c1 1 4 3 6 2v1c-1 0 0 1 1 2 1 2 1 2-1 2-1 0-2 1-2 1v2c-1 1-1 2-1 3 0 0-1 1-2 0-1 0-1 0-1 1 1 0 1 3 0 4 0 3-1 4-2 4-2 0-2 0-2-2 1-1 0-2 0-2-1 0-1-1-1-1 0-1-1-2-2-3-1 0-1-1-1-1s0-1-1-2c0-1 0-3 1-4 1-3-1-6-5-7-2 0-3-1-4-2 0-1-1-2-2-2 0 1-1 0-1 0 0-1-2-1-4-2-3 0-4 0-5 2-2 1-2 1-3-1-1-1-1-1-6 0-3 1-5 2-6 1-3-1-3-1-3 1 1 0 0 1-1 2-1 0-2 1-4 2-1 2-3 2-6 2-6 0-10 3-9 7 1 3-2 5-5 3-1-1-1-1-2 0s-1 1-2-1c-1-1-1-1-2 0s-1 1-1 0c-1-2-3-2-5-1-1 2-2 1-2-1-1-1-2-2-4-2s-4-1-5-2c-3-2-3-3-4-1-1 0-2 1-3 0-1 0-3 0-4 1-2 1-3 1-6-1-3-1-5-2-5-1-2 1-6 1-8 0 0-1-1-1-2 0-1 0-2-1-2-2-2-2-5 0-8 4-1 3-3 4-5 4-1 0-2 1-3 2 0 2 0 2-2 0-2-1-2-1-3 0s-4 1-8 2c-4 0-5 1-5 2 1 1 0 3-1 4-2 1-2 2-2 6 1 4 1 5 0 5-2-1-9 5-8 7 0 0 0 1-1 1-1 1-1 2-1 3s-1 2-2 3c-1 0-2 1-2 2 0 0-1 1-2 1-5 0-8 7-5 10 1 2 2 3 1 4s-1 3-1 4c2 3 2 4 0 5-2 2-8 3-9 2 0-1-1-1-2 0-5 3-15 4-16 2s-4 0-5 3c0 1-1 2-3 2s-3 0-2 2c0 1 0 1-1 0-2 0-6 5-6 8 1 2 1 2-1 2s-2 1-3 4c-1 4-2 5-3 5-2 1-2 1-1 2 2 2-1 16-4 16-1 0-1 0-1 1s-1 2-2 3c-2 2-2 2-5 0-2 0-3-2-3-3s-1-1-2 0c-4 1-5 1-5 0s-1-2-3-2h-4c-2-2-6 0-7 3-1 1-2 2-3 2-2-1-5 1-5 3s-4 5-6 5c-1 0-1 1 0 3 1 0 1 1 0 1-1 1-1 2-1 4 0 4-3 9-5 9l-1 1c0 1-1 3-2 4-2 1-3 2-7 1-2 0-5 0-5-1-1-1-6 3-6 5 0 1-1 3-3 4-2 3-2 3-1 4 1 0 2 1 1 1-1 2 1 7 5 9 5 4 5 4 2 8-2 3-2 6 0 4 1 0 1 1 2 2 1 3 4 5 7 5 5 0 10 0 10 1 0 0 2 1 4 1 3 1 4 1 3 2 0 2 3 9 4 9s1 1 0 2c0 1 0 1 1 0s2 0 3 2c2 4 6 5 11 4 2 0 3 0 2 1 0 2 3 4 6 3 1 0 2 0 3 1 0 1 1 2 2 2 0-1 2-1 3 0 1 0 2 5 0 5-2-1-7 3-7 4 0 3-3 3-5 1l-2-2-2 2c-2 2-4 2-6 2-2-1-3-1-3 0s0 2-1 2c-2 0-5 4-5 7-1 5-3 6-7 6-3 0-4 1-4 2 0 2 0 4-1 5-1 2-1 3 1 8l2 6c1 0 1 1 1 2 0 2 0 3 1 3 0 0 2 1 2 3 2 3 2 3-1 5-1 1-3 2-4 2s-1 1-1 3c0 3-1 4-2 5-2 1-2 1-1 2s1 2 0 2c-1 1-1 7 1 10 2 2 3 3 5 2 2 0 2 0 2 2 0 1 1 2 3 3 1 1 3 2 3 4 0 1 1 2 2 2 0-1 1 0 2 1 1 0 2 1 3 1 0 0 2 1 3 3 0 2 1 3 0 3s-1 1-1 1c0 4-4 5-9 5-6-1-7 0-9 4 0 2-1 3-3 3-1 0-2 0-2 1 1 1 0 3-1 4-2 1-3 5-1 7 1 0 1 1-1 2-1 1-2 3-2 6 0 2-1 5-2 6-1 3-1 4 0 4 2 0 6 6 7 9 1 1 0 3-2 6-3 3-4 3-8 3-2 0-5-1-5-1-1-2-5 3-5 6 0 2-1 5-2 6s-1 2 0 3c0 1 1 2 0 3-1 2 1 6 3 6 2 1 2 1 1 2-1 0-1 2-1 2 1 1 1 2 0 2s-1 0-1 1-10 12-12 12c-1 1 0 1 2 1 3 0 5-1 7-2 2-2 4-3 4-3 3 0 7-6 7-10 1-4 1-6-2-11-2-5-2-6-1-9 1-2 3-3 6-4h5s3-2 5-5c5-5 5-7 2-17-2-5-3-7-2-9 1-1 2-3 2-3 1 0 2-4 2-7 2-6 2-8 5-10 4-3 10-5 11-4 1 0 8-8 8-10 0-4-5-11-13-19-9-9-11-13-8-16 1-1 3-5 4-8l3-5-4-8c-2-4-4-9-4-10 0-2 3-5 8-8 3-2 5-3 6-6 2-8 4-9 11-10 6 0 10-2 10-5 0-1 1-1 3-2 6-1 8-6 3-14-1-2-3-3-6-3-2-1-5-1-5-2-2-2-10-5-12-5-3 0-4 0-4-2 0-1-1-2-2-2s-5-4-5-7c0-2-2-3-5-4s-7-2-10-2c-2 0-4-1-5-2-2-2-3-4-1-10 0-5 0-5-4-8s-6-5-6-7 4-4 7-5c9 0 15-5 22-19 4-8 5-9 10-11 6-4 10-4 21-2 5 1 7 1 8 1 4-3 8-9 12-19 2-5 5-10 6-12 1-1 3-4 5-7 2-4 4-6 5-6s2-1 3-1c1-1 4-2 7-2 3-1 6-1 6-2 1-1 3-1 5-1 6 0 16-2 17-4 1-1 1-3 0-9-1-9 0-13 4-13 2-1 3-1 4-11 1-3 2-4 5-6 5-1 6-3 6-6-1-2 0-4 2-6 3-3 3-3 9-3 7-1 12-3 12-5s6-6 8-5c1 0 2-1 3-2s1-1 2 0 3 1 5 1 5 0 5 1c1 0 5 1 10 2 8 1 13 2 13 4s7 3 16 3c8-1 8-1 11-4 1-1 2-3 1-4 0-2 0-2 10-4 3-1 8-2 10-3 5-3 22-2 26 1 2 1 3 3 3 4s1 3 2 4l2 2c0 2 4 10 5 12 3 3 4 2 7-2 2-2 4-6 6-8 1-2 3-5 4-5 0-1 1-3 2-6 0-3 0-4-2-7-1-1-3-3-5-3-1 0-3-3-4-5-2-4-3-5-7-6-2-1-6-2-8-2-5 0-20-4-22-6-1 0-4-1-8-1s-7-1-9-2c-1 0-2-1-3-1 0 0-2 0-3-1-6-2-8-2-14 1zM898 555c0 1 7 7 9 7l2 2c0 1 1 1 3 0h4c1 1 2 1 3 1 2 0 2-1-1-4-2-4-3-5-5-4-1 0-2 0-2-1s-1-1-2 0c-2 1-3 0-5-1s-6-1-6 0zm-477 74s-1 1-3 1-3 0-3 2c0 1-1 2-2 1-1 0-2 0-2 1 0 2-1 2-3 2-1-1-2-1-1 0 0 1 0 2-1 2 0 0-2 2-3 5l-4 4s-1 2 0 6c0 1 1 1 2 1s2-1 2-2 1-3 2-5c2-2 10-7 11-7 0 1 2 0 4-2 2-3 5-3 10-1 2 1 3 0 3-1s-1-3-2-4c-1-2-2-3-1-3 1-1-2-1-4 0s-2 1-3 0c0-1-2-1-2 0zm-51 28c-2 2-2 2-4 1-3-1-3-1-3 1 0 1-1 2-1 1-2 0-6 4-6 7-1 1 0 2 1 3s1 2 0 3c-1 0-2 2-2 3s0 2-2 2c-2 2-3 3-1 3 1 0 1 1 1 3-1 2 0 6 3 12 1 1 1 2 1 3-1 1 0 1 0 2 1 0 2 1 2 2 0 0 1 1 1 2 2 0 1 6-1 8-1 2-1 2 1 3s2 1 1 3-1 2 0 4 1 2 0 2c-2-1-2 0-3 1 0 2-1 2-3 2-1 0-1 1-1 1 0 1-1 2-2 3-2 0-4 3-3 5 0 2 0 4 1 5 0 2 1 3 2 4 0 1 1 2 1 3 0 2 8 5 9 3s1-3-2-4-6-6-6-8 7-8 10-9c2-1 3-3 3-5 1-4-2-21-5-28-2-3-3-7-3-9s3-13 4-14c1 0 1-2 1-3 0-2 1-5 2-6 2-3 3-3 9-3 8 1 9-1 4-4-2-1-4-3-4-3 0-2-3-1-5 1zm-134 79c0 1 1 3 2 4 1 2 2 2 5 2 6 0 6 0 10 3 2 2 4 3 7 3s4 1 4 5 1 5 2 5 2 0 2-2c0-1 1-2 2-2 2-1 2-1 1-3-2-1-2-3-1-5 0-2 0-2-1-2-1 1-2 1-1 0 0-1-1-2-2-3-2-1-6-1-6 0-1 1-2 1-2 0-1-1-2-2-1-2 0-1 0-2-1-3 0-1-1-1-1 0-1 1-2 1-3 0s-3 0-6 0c-3 2-4 2-5 0-2-1-5-1-5 0zm88 20c-2 2-3 2-4 0-2-1-2-1-3 0 0 0-1 1-2 1-2 0-3 1-3 3-1 1-2 1-3 1s-2 0-2 1c-1 1-1 1-2 0s-2-1-2 0-2 1-8 1c-2 0-3 1-4 1 0 1-1 1-2 1-1-1-3 0-4 2-3 2-3 2-2 4 2 1 2 1 4-1 2-1 4-1 14-1h11l5-4c4-3 7-4 12-1 5 2 6 0 3-4-2-2-3-4-3-5 0-2-3-1-5 1zm225 82c0 1-1 2-2 2-2 0-8 7-8 9 0 1-1 2-5 2-6-1-10 2-10 5 0 0-1 1-2 1s-2 1-2 1c0 1 0 1-1 1-1-1-4 1-4 3 0 0 0 1-1 1s-1 0-1-1c0 0-1-1-3-1-2 1-5 0-6-1-3-1-3-1-4 1 0 1-1 3-2 3-2 1-3 4-5 7 0 3-2 6-2 5-1 0-1 0-1 1 0 0-1 1-2 1-2 0-3 1-3 3s0 2 4 2c4-1 8-5 8-8 0-1 1-3 3-4 3-3 8-4 12-2 2 1 3 1 7-1 2-2 4-3 4-4l2-2c1 0 3-2 3-4 1-3 1-3 7-3 5 1 8-1 8-4 0-4 7-6 14-4 2 1 5 2 6 2 1-1 4 0 6 1 3 1 4 3 3 10 0 5 2 8 6 8 6 0 10 3 12 8 2 7 2 8 9 8l9-3 4-2s3-1 5-3c3-2 5-3 6-3l2-2c3-3 11-5 21-5 8 0 10 0 11-2 0-1 1-2 2-3 0-1 1-4 2-7 0-3 1-5 2-5 3 0 6-3 5-5-1-1-1-1-3 0s-4 1-5 0c-2-1-5 2-5 6 0 2-1 4-3 5-1 2-2 3-1 3 1 2-3 2-5 0-2-1-2-1-2 0s-1 2-3 2c-1 0-3 0-4 1-1 0-4 1-6 2-3 1-6 3-8 4-3 3-11 6-11 4 0-1 0-1-1-1-1 1-1 2-1 3 0 2 0 2-1 1-2-1-7 0-8 2 0 2-1 2-1 1-1-1-2-1-2 0-1 0-1 0-1-1 1 0-8-10-10-10 0 0-1-1-2-1-1-1-2-2-5-1-5 0-5-2-2-5l2-2-2-3c-1-2-2-3-1-4 1-2 0-4-2-3 0 0-1 0-1-2 0-4-8-7-11-3-1 1-1 1-2 0s-2-2-3-1c0 0-2-1-3-2-4-3-5-3-6-1zm1461 150h2c0-1 0-1-1-1s-1 0-1 1z"
	fill-opacity="0.4"
	fill="#e0bb91"
	/>

<path id="ridges2" d="M624 37c-2 0-3 1-3 2-1 1-1 1-3 0-1-2-4-2-4-1 0 2-4 4-6 3-2 0-2 0-2 1 1 1 1 2 0 3-2 1-3 5-3 11-1 2-1 4-2 4-1 2 0 7 1 7 0 0 3-4 5-8 3-7 5-9 7-10 3-2 4-2 6 0 4 1 4 1 4-1 0-1 3-1 11 3 4 2 5 3 8 8 1 3 4 6 5 7 3 2 3 2 6 1 2-1 4-2 4-3 2-2 2-2 6 0s5 2 5 0 4-1 4 1c1 4 7 8 12 8h6c1 1 4 1 5 1 2 0 3 1 4 2 1 0 4 1 7 1 5 1 9 2 12 3 1 0 2 0 2-2 0-1 1-2 3-3 5-2 8-4 10-8 2-2 3-3 3-4-1 0-2 0-4 1h-5c-2 0-3 1-3 1-1 1-1 1-2 0s-1-1-2 0c0 0-2 1-3 1-2 1-3 2-3 3s0 1-2-1c-2-1-2-1-4 0-1 2-1 2-4 1-3-2-4-2-8-1-2 0-6 1-7 0-2 0-4 0-5 2-2 1-2 1-3 0s-1-2-1-3v-2-2c1-1 1-2 0-3s-1-2-1-3c0-2-1-3-2-3h-4s-1-1-2-1c-1-2-4-1-5 1-1 1-1 1-2 0-1-2-4-3-4-1 0 1-1 1-1 1-5-1-7 0-7 2 0 4-1 5-4 3-2 0-3-2-3-3s-1-3-2-3c-2-1-3-2-4-3-1-4-4-9-6-9-1 0-2-1-2-1 0-1-1-1-2-2-1 0-3 0-3-1h-3zm-77 4c-3 1-4 1-5 0s-2-1-2-1l-2 2c0 2-2 4-2 5-1 2-2 3-4 4-1 0-2 1-2 2s-1 1-2 1c-2-1-4 0-6 1-1 1-4 2-6 3-5 0-7 0-9 1 0 1-2 1-2 0-1 0-2 0-2 1s-1 2-2 2c-3 0-5 2-5 4 0 0-1 1-2 0-2 0-3 0-4 2-2 2-2 2-4 1s-2-1-2 0-1 2-3 3c-2 2-4 2-8 1-6-1-7-1-9 1-2 1-4 2-6 2-3 0-6 2-6 4 0 1 0 2-1 2-3-1-6 0-8 2s-2 2-2 0c0-1-1-1-3 0 0 1-3 1-5 1-3 0-5 1-5 2 0 0 0 1-1 1l-2 2c0 1-2 3-3 4-8 3-11 6-11 8 0 3-10 8-11 6-1-1-1-1-2 0h-3c-1 0-2 0-2 1s-1 2-2 2c-2 1-2 1-2 3 1 3 1 3-1 2s-2-1-3 1c0 2-3 3-5 2-1-1-1-1-1 0 0 2-5 6-8 6-1 0-2 1-3 1-1 1-2 2-4 2-2 1-3 2-4 4-1 3-3 4-5 4-1 1-4 2-4 3-2 1-4 2-10 2-1 0-2 1-3 2 0 2 0 2-2 1-1-2-5 0-5 2s-1 3-3 3l-3 3c0 2-1 3-4 3-1 0-5 1-7 2-3 2-4 3-4 6 0 5 1 5 3 1 2-3 5-5 7-3h6c3-1 5-2 8-5s4-3 7-3c3 1 3 1 3 0-1-1 0-2 3-2 4-1 10-7 10-9 0-1 2-3 4-6 3-3 4-4 9-4 2-1 8-2 13-4 4-2 9-3 10-3 2 0 9-6 9-7s1-2 3-3c2 0 3-2 4-5 3-6 9-11 15-11 1 0 3-1 4-2 1 0 3-2 5-3 3-1 3-1 5 0 3 3 7 2 10 0 1-1 3-2 4-2 2 0 3-1 5-7 4-7 4-8 11-8 3 1 7 1 7 2 2 1 11 1 15-2 1 0 5-1 9-1 5-1 6-1 6-3-1-1 0-2 0-2s2-1 3-2l4-4c1 0 3-2 5-3 3-2 6-3 9-4 6-1 11-3 16-7 4-2 5-2 11 1 4 2 7 2 5 0 0-1 1-1 3-1 1 0 3-1 5-1 1-1 2-2 4-2 1 0 2-1 3-2 1 0 2-1 3-1 2 1 2-1 0-3s-5-2-8-1c-1 1-1 1-1 0 1-1 0-1-2 0 0 1-1 1-1 0 0 0-2-1-4-1-3 0-4 1-5 2s-1 1-3-1c-1-2-1-2-5 0zm502 118c-3 2-5 3-7 2h-3c-1 1-2 1-3 1-2-2-5 1-5 4 0 2 0 3-2 3-3 0-6-2-5-3 0-1 0-1-1 0-2 0-2 0-2-2s0-2-1-1c-2 1-2 1-2 0s0-1-1-1c-1 1-1 1-1 0 0 0-1-1-3-2s-2-1-3 0-1 1-2 0c-2-1-5-1-5 1 0 3-2 7-4 7l-1 1c0 3-2 4-3 2-1-1-3-2-5-3-3-2-5-2-7-1-3 1-3 3 1 3 2 0 7 4 7 6 0 1 1 1 2 2 4 1 10-1 13-4 2-3 2-3 3-2 2 2 3 2 3 0 0 0 0-1 1-1 1 1 2 1 4 1 1 1 4 1 6 2 4 2 7 0 10-4 1-4 2-4 5-4 2 0 4 0 4 1h6c5 0 6 0 8 2 2 3 7 6 9 6 1 0 1 0 0-1-2-1 0-2 3-1 2 1 4 1 5 0 1 0 5-2 8-3s5-3 5-3c-1-2-5-3-10-3-2 1-4 0-5-1s-3-1-5-1h-3c0-1-1-1-2-1-2 0-6-2-7-4-1 0-2 0-5 2zm341 9c0 1-1 2-2 1 0 0-1 0-1 1 0 0-1 1-1 0-2 0-5 2-5 5 0 1-1 1-2 1-2-1-3 0-4 1-2 2-2 2-4 0-1-1-1-1-2 0 0 1-5 2-8 2-1 0-4 0-6-1s-7-1-10-1c-3-1-7-1-10-2-2 0-4-1-4 0-2 1-5 1-7 0-1-1-1-1-1 1 0 0-1 1-3 0-2 0-4 1-5 2-2 2-2 2-3 0-1-1-4-1-4 0 0 2-5 1-6-1 0-1-1-1-1 0-1 1-7 2-9 2-1 0-4 0-7-1s-7-1-9-1c-3 0-4-1-7-3s-5-4-6-4c0 1-1 0-1 0 0-1-1-1-3-1-1 1-3 1-3 0s-2-1-2-1c-1 1-2 1-1 2 0 1 0 1-1 1-3-1-9 3-8 5s0 2-2 1c-2 0-3 0-3 2-1 2-4 3-6 1-1-1-1-1-1 0 0 3-7 5-18 5-8-1-10-1-14-3-2-2-4-2-5-2s-1 0-1-1c1-1 0-1-1 0-2 0-3 0-3-1-1-2-3-1-3 1 0 1 0 1-1 0s-7-1-8 1-1 2-3 0-2-2-4-1c-1 2-3 2-6 2-2-1-4 0-4 0s-1 2-3 4c-4 3-8 4-8 0 1-2-1-5-5-5-2 0-3 1 0 2 1 1 1 2 1 4-1 4 1 6 6 7 3 1 5 1 10-2 6-2 7-3 10-1 2 0 6 1 8 1 3 0 3 0 3-1 0-4 18-4 32-1 9 2 16 2 22 0 1 0 6-2 10-3 7-2 8-3 7-4 0-3 4-5 11-4 6 1 19 4 23 6 1 1 5 2 8 2 4 0 9 1 12 1 13 3 13 3 13 1 0-1 0-2 3-2 1-1 3-1 4-2 0-1 1-1 2-1l6-2c4-2 5-2 10-1 4 1 8 3 11 4 2 1 5 2 6 2 10 0 14 0 21-2 5-1 7-2 6-3s0-1 2-2c2-2 3-2 4-1 1 2 9 6 10 6 2 0 1-2-2-7s-4-6-7-7c-2 0-3-1-3-2s-3-1-4 0zM303 185c-3 0-5 6-4 8 1 1 1 2 0 2s0 1 1 2c1 2 2 3 1 5 0 1 0 1 2 1 1-1 2 0 1 1 0 1 1 2 3 2l4 2h-3c-2 0-3 0-3 1 1 1-1 2-2 1s-1-1-2 0c0 0-2 1-3 2-3 2-6 3-15 3-2 0-5 1-6 2-2 1-5 2-9 2s-5 1-6 2c0 1-1 2-1 1-1 0-2 1-2 2-1 1-2 2-3 2s-2 0-2 1 0 1 1 1 0 1-2 3c-1 1-2 3-2 4 1 2 0 2-2 1-2 0-3 0-3 1 0 2-3 4-7 4-2 0-2 1-3 5 0 4 1 11 3 18 0 4 3 7 5 7 4 0 4-1 2-3s-4-9-3-11c0-1 1-3 0-4 0-3 2-6 7-7 4 0 13-5 13-7 0 0 0-1-1-1-2 0 3-10 8-14l4-4h10c13 1 19 0 26-4 8-3 10-5 10-11 0-4-2-8-4-5-1 1-9-6-10-9-1-2-1-3 1-4 0 0 1-1 1-2s-2-1-5 0zm734 11c-1 0-2 1-2 1 0 1-1 1-1 0-1 0-2 0-2 1s-1 2-1 2c-1 0-1 1-1 2 1 2 0 3-1 2-1 0-1 0-1 2 0 1 0 1-1 1 0 0-1 1-2 3 0 2-1 3-1 3-1 0-5 6-4 7 0 2 3 3 3 1 0-1 2-2 3-3 2 0 4-1 4-2 1-1 10-7 11-7s1 0 0-1c-2-2-1-4 2-7 1-2 2-3 2-3-1-2-6-3-8-2zm118 13c-1 1-1 1-3 0-1 0-2-1-2 0l-4 6c-6 6-7 9-1 6l6-3c3 0 4 0 4 2 0 1 0 1 1 0s2-1 5 1c2 1 4 1 4 0s1-1 2-1 1-2 0-4c-1-1-2-2-1-2 0-1-1-2-2-4-2-1-2-1-4 0s-2 1-2 0c0-3-2-3-3-1zm118 5c0 1 1 1 2 2 4 1 14 6 17 8 1 1 4 2 6 2s5 1 7 2 5 3 7 4c2 0 4 1 4 3 0 3 2 5 2 3 1-1 2 0 5 2 2 2 4 3 5 3s2 2 3 4c3 5 6 9 8 9 1 0 2-3 0-4-1 0-1-2-1-4 1-2 0-4 0-5-1 0-1-1 0-1 0-1-1-2-2-3-2-1-3-3-3-4 0-2-3-3-3-1-1 1-1 1-1 0 0-3-4-8-5-7-1 0-2-1-4-3-3-3-6-4-7-2 0 2-2 2-3-1-1-2-1-3-6-2h-7c0 1-2 0-3-1-1 0-3-1-4-1-2 0-4-1-5-2-4-2-10-3-12-1zm-365 2c-1 2-1 3 1 3l6 4c5 4 8 5 14 4 1 0 2 0 1 1v5c1 2 1 2 2 1s2-1 3 1c1 1 4 2 7 2 4 1 6 1 8 4 2 2 6 3 8 4 3 1 5 2 7 2 2 1 3 1 12-2 2-1 3-1 7 1s8 3 8 1c-1-1 2-4 7-9 4-4 7-8 7-8-1-1-12 1-13 2s-2 1-3 1-2 1-3 2c-2 2-2 2-3 1-2-2-4-2-5-1 0 2-4 2-6 1-1-1-1-1-1 0s-1 2-2 3c-3 2-10 3-11 2 0-1-2-1-4-1-3 0-3 0-3-3s-4-7-5-6c-1 0-1 0-1-1s0-1-1-1c0 1-1 0-1-1l-3-3c-1 0-2-1-2-2 1-1 1-2 0-3 0-2-1-2-6-2-4 1-8 1-9 2-2 1-3 1-4-1-1 0-2-1-3-1s-2-1-3-2-4-1-6 0zm576 16c0 1-1 2-3 3-2 0-3 2-4 2 0 2 3 7 5 7 1 0 2 1 2 1 0 3 1 2 5-2 3-4 4-5 0-6-1 0-2-1-3-3 0-3-2-4-2-2zm-27 18l-4 4 1 8c0 7 1 9 2 9s1 1 1 5 0 5 1 5c0 0 1 1 2 1 1 2 2 1 1-1 0-1 1-2 2-3s2-2 2-3c0 0 1-1 2-1 0 0 1 0 1-1s0-1-1-1-1 0 0-1c1-2-1-6-2-6s-2-1-1-2c0-1 0-2-1-2s-2-1-1-1c0-1-1-2-1-3-2-1-2-4 1-6 1-1 1-5 0-5s-3 2-5 4zM246 296c-3 3-4 6-4 13 0 10 0 10-2 9-2 0-4-1-6 0h-4s-1 0-1 1c1 1-8 6-11 6-2 0-4 3-4 7 0 3-1 5-2 6-2 2-8 3-10 1 0-1-2-1-5 0-4 0-7 2-14 7-9 8-11 10-9 10 1 0 2 1 1 4 0 3 0 5 1 6s1 2 1 4 1 3 2 5c3 3 5 2 5-2 0-1 0-3 1-4 2-1 3-4 1-4-1-1 0-2 0-4 1-2 1-4 1-4-1-1 0-2 2-2l2-2c-1-2 1-4 3-4 1 0 2-1 2-1 0-2 4-4 6-3s3 1 6 0c2-1 4-1 5-2 0 0 2-1 2-3 3-5 5-8 8-8 1 0 2 1 3 1 0 1 1 1 2 0 0-1 1-2 2-2 2 2 6-1 6-3s0-2 1-1c2 2 4 3 5 1 0-1 2-2 5-3 4-1 4-1 4-5 0-3-1-5-1-7-1-1-2-3-2-4s0-3-1-4c-1 0 0-2 0-5 3-6 2-8-1-4zm1215 5c-4 5-5 9-3 13s11 14 12 12c0-2 2-1 5 1 3 3 9 4 8 2-1-5-3-8-3-8-1 0-1-1 0-2s1-1-1-1c-1 1-2 0-1 0 0-1-1-2-2-3-3-1-3-1-5 0-1 1-1 1-1 0s-1-2-1-2c-2 1-6-3-6-6 0-1 1-3 2-4s1-5 0-5c0 0-2 2-4 3zm480 10c-2 1-3 1-4 1-2 1-3 1-4 1 0 1-2 1-3 0-2 0-2 0-2 1 1 2 1 2 0 2-2-1-5 2-5 5 0 1-1 2-2 2s-2 0-2 1c0 2-3 4-4 2-1-1-2 0-3 3-2 3-7 7-11 7 0 0-2 1-3 2-2 3-2 3-7 2-3-1-4-1-5-1-1 1-1 1-1 0s0-1-1 0-2 1-2 0c-1-1-2-1-2-1-1 0-1 1 0 1 0 1 0 1-1 1-2-2-6 0-6 2 0 1 0 1-2-1-2-1-2-1-3 0 0 1-3 1-4 0 0-1-1-1-3-1-3 0-4 0-4-3-1-1 0-3 0-3 2-2 1-5-1-9-3-6-7-10-8-9-1 0-2 0-2-1-1-2-10-2-11 0 0 1-1 1-2-1-2-2-2-2-3-1 0 1-5 1-5 0s-2-1-5 1c-2 1-5 2-6 2s-3 0-4 1c-1 0-2 1-3 1-2 1-2 2-2 5 1 4-1 5-6 5-2 0-3 1-3 1 0 1-1 1-2 0s-1-1-2 0c0 0-1 1-2 1-3 0-6 3-5 5 0 1-1 1-2 1-2 0-3 1-3 2s0 2-1 2-1-1-1-1c0-1 0-1-1 0-1 0-4 1-6 2-5 0-5 0-8 6-2 4-3 6-2 7 1 0 6-4 7-6 0-1 1-2 5-1 5 1 6 1 12-2 3-1 6-2 7-2 0 0 1-1 1-2s2-3 5-4c6-3 9-7 11-12 0-3 2-4 4-3h9c5 0 9 1 12 3 3 1 4 1 4 1 0-2 7-3 12-1 5 1 5 1 2 11-1 2-1 5-1 6 1 3 8 6 18 9 10 2 10 2 10 0 0-1 1-2 5-3 2-1 6-3 9-4 2-1 7-3 12-4 4-1 10-3 13-5 2-1 7-4 10-5 7-3 7-3 5-4s2-6 5-6c2-1 3-2 4-5 2-4 2-5-1-4zm-245 4c0 2-10 7-11 6 0-1-2-1-2 0s-1 2-2 1c-3 0-7 2-7 3 0 2-1 2-4 1-3 0-3 0-4 2 0 2-4 4-6 3-1-1-2 0-2 0 0 2-8 10-9 10s-2 1-2 3c-2 2-3 3-6 3-5 0-5 0-5-2s-1-3-3-4-3-2-3-2c0-1-1-1-2-1-1 1-2 0-1 0 0-1-1-1-2-1-2 0-3-1-3-2s-1-1-2-1c0 1-3 0-4-1-3-1-4-1-5 0-2 1-2 1-3-2-1-2-2-3-3-3-2 1-7-1-7-3 0-1-1-1-2-1-1 1-3 1-5 2-3 0-4 0-5-2s-2-2-4-2c-1 1-4 1-7 1s-5 0-6 2c-2 2-4 3-7 3-3 1-5 2-6 3s-1 1-1 0 0-1-1 0-2 2-3 2c-1-1-1-1-1 0 0 0-1 1-2 0-3 0-7 2-8 4 0 1-1 2-4 1-2 0-3 0-3 2s-3 4-6 3h-2c1 1-1 2-3 4-3 2-4 3-5 2s-3-1-4-1c-2 1-5-1-6-5-1-5-3-4-3 1 0 6 2 7 10 10 5 2 5 2 10 0 3-1 7-3 10-4 2-1 6-2 9-3 4 0 5-1 5-2-1 0 0-1 2-2 3 0 15-10 19-14 2-3 10-2 13 1 2 2 4 3 8 3 6 1 10 3 17 10 3 3 4 3 4 2 0-2 1-2 2-1 2 0 8 1 16 1 3 1 5 1 6 3 1 1 3 2 6 3 4 0 5 0 8-3 4-3 6-4 14-8 6-3 9-4 13-4 5 0 6 0 6-2 0-1 1-2 2-2 5-2 12-7 14-10 1-3 1-9 0-9l-2 2zm364-1c0 1-1 1-2 1-1-1-2 0-3 1-2 1-2 1-3 0-2-1-4 0-2 2 0 1 0 1-1 1-3-1-9 2-9 4s-1 2-3 2c-4-1-6 0-6 3 0 1-5 7-6 6-1 0-1 0-1 1 1 1-6 8-8 8 0 0-3 2-4 3-2 2-5 4-5 4-2 0-9 6-8 7s7-1 12-5c3-1 5-2 6-3 1 0 5-2 8-4 5-2 7-4 8-6 2-4 5-6 14-7 3 0 4-1 2-2-1-1 0-1 2-3 2 0 4-2 5-3 2-2 8-4 13-5 4-1 5-2 2-3-3-2-10-3-11-2zM182 413c-4 4-4 5-4 7 0 3 0 4-1 3-1 0-1 0 0 3 1 1 2 4 2 6s0 2 1 2 2 1 2 2c0 3 6 8 9 8 2 0 3 0 2 2 0 4 1 5 6 6s14 0 14-2 7-2 11-1c1 1 4 2 5 1 2 0 3 0 3 3 1 4 4 7 7 7 4 0 4-1 1-3-2-1-3-3-3-4 0-4-4-8-9-8-1 0-2-1-3-2s-4-1-8-2c-6 0-7 0-10 2-2 2-2 2-4 1 0-2-1-3-1-3 0-1-2-3-4-6s-4-4-5-3c0 1-2 0-4-3-4-4-4-5-4-9 1-3 2-6 3-7 3-6-1-5-6 0zm2250 112c-3 0-8 2-11 3-11 4-16 4-22 2-2-1-6-2-8-2-4-1-5-1-5 0 0 2-1 3-6 5-5 3-7 4-8 7-3 5-7 5-11 0-4-3-4-3-12-3-5-1-8-1-8-2-1-1-2-3-3-5-2-3-3-3-3-2-1 2-2 2-5 0s-3-2-9-1c-4 1-12 2-18 2-7 1-13 1-15 2-5 3-11 6-17 8-5 1-6 2-5 3 0 2-2 4-10 10-3 2-5 3-6 4 0 0-3 2-6 3-7 4-11 8-16 14-3 5-3 5-8 5-3-1-4-1-4 1 1 0 0 1 0 1-1 0-3 0-4 1h-6c-4 0-9 2-12 5-1 2-3 6-4 12-1 5-3 9-3 10-1 2-12 10-14 11-2 0-3 3-1 3 3 0-3 5-7 5-2 1-6 2-9 3-5 3-20 4-35 4-9 0-10 0-10 1s-1 2-2 2c-1 1-3 2-4 3-2 3-7 3-10 0-5-3-8-2-14 2-6 3-9 8-13 17-2 3-4 5-5 6 0 0-1 1-1 2 1 1 0 2-1 4-3 5-4 12-1 21s3 8 1 30c-1 11-1 16 1 15 1 0 3 1 3 3 2 2 2 2 0 4-1 1-3 2-6 2-4 0-11 3-11 5 0 0-1 2-3 4l-3 3-7-2c-8-1-16-1-17 1 0 0 0 1 1 1s-1 2-3 4c-7 7-7 7-7 20 0 6-1 12-2 13 0 2-1 5-2 7-2 6-3 10-5 13-2 6-2 10-1 10 2 0 7 12 7 14s-3 4-6 6c-4 2-8 5-10 6-1 1-3 3-3 4-1 2-2 4-4 6-3 3-5 4-10 2-1-1-2-1-2 1-1 1-2 2-8 3-8 0-12 3-14 10-2 6-5 9-7 9s-10 7-11 11c-1 3-2 16 0 18 0 1 1 1 1 1 2-1 7 4 9 9 2 3 2 3-1 8-2 4-2 6-2 11 0 6 0 7 3 10 1 2 4 4 7 5 4 2 4 2 4 6 0 5 1 7 3 6 1-1 2-1 4 1 1 2 3 3 5 3 1 0 2 0 3 1 0 1 12 1 12 0s7 1 10 3c2 1 3 3 3 3 0 3 5 6 10 6 3 0 4 0 4-2 0-1 0-2-1-2s-8-5-9-7c-1 0-2-1-3-1s-2-1-3-1c0-1-3-2-6-2s-6-1-7-2c-2 0-2 0-2 1 1 0 0 0-2-1s-3-2-3-2c0-1-1-1-1-1-1 0-2-1-1-2 0 0 0-1-1-1s-2-1-2-2c-1 0-2-1-3-1s-2-1-2-4 0-3-3-4c-4-1-6-2-5-3 0-1 0-1-1-1-2 1-8-2-8-4 0-1 0-2-1-3-1 0-1-2 0-3 1-2 1-4 1-5 0-2 1-4 2-5 3-2 4-7 3-9-1 0-1-1 0-1 0 0 0-1-1-2-2-1-2-2-1-2 1-1 1-2 0-2 0-1-1-1-1 0-1 0-1-1-1-4 0-1-3-3-4-3-2 0-2 0-1-2s1-2 0-3c-1 0-1-3 0-3 0 0 2-2 3-4s3-4 4-4c2 0 6-10 5-13 0-2 0-3 2-3 5-1 11-1 11 1 1 1 1 1 2 0 2-1 4-1 4 0 1 1 5 0 6-2s1-2 2-1c2 2 5 1 6-1 1-3 3-5 6-5 1 0 2 0 2-1-1-1 1-9 3-11 0 0 1-2 2-3s2-2 3-2c0 0 2-1 3-3 1-1 3-3 5-4s4-3 4-3c0-1 1-2 1-2 1-1 1-1 0-2-1-2-1-2 0-2 1-1 1-1 0-2 0-1-1-2 0-3 0-1 0-2-1-2 0 0-1-1 0-2 0-2-1-4-2-5-2-2-2-2-1-2 2 0 3-2 2-4-1-1 0-5 1-5s2-1 1-5c-1-2-1-6 0-7 0-3 0-12-1-14-1-1-1-3-1-4 1-2 6-8 6-6 0 0 1 0 1-1 1-1 2-2 3-1 1 0 1 0 1-1-1 0-1-1 0-1h2c1 0 2-2 4-5 0 0 1 0 2 1 2 1 2 1 3 0 1-2 4-1 4 1s0 2 2 1c1 0 3-1 4-1 3-1 8-8 8-11 0-1 2-3 4-4 4-3 5-3 7-2 5 2 9 2 10 0 0-1 1-2 1-1 1 0 1-1 1-3 0-1 1-3 2-4s1-1 0-2-2-2-2-3c1-1 1-1 0-1s-1 0-1-1c1-1-1-5-3-5-1 0-1 0 0-2s1-2 0-3c-1 0-1-4 0-5 1 0 2-1 1-2-1-2-2-7-3-11 0-5-2-10-4-12l-2-3 2-6c1-4 3-6 4-6 0 0 1 0 0-1 0-1 1-1 2-2 2 0 4-5 3-6s0-2 2-3c2-2 2-2 1-3-2-2-1-5 1-5 1 0 2-1 2-3v-5c1-2 6-8 10-9 3-1 3-1 4 0 3 5 7 8 9 8 1-1 2-1 2 0s1 1 2 0 3-2 4-2c1 1 2 1 2-1 1 0 1-1 2-1 1 1 4 0 4-2 0-1 0-2 1-2s1 0 1 1c0 2 3 2 4 1 1-2 4-2 6-1 1 1 1 1 2 0l4-2c3-2 6-2 13-4 1 0 4-1 5-3 3-2 3-2 7-1 2 1 5 2 5 1 1 0 1 0 1 1s1 1 2 0c1 0 3-1 5-1 1 0 2 0 2-1l1-1c2 0 6-5 5-7 0-2 0-3 2-3s3 0 3-1c0-3 1-4 3-4 2 1 3 0 3-2 1-2 1-9 2-15 0-6 0-11 1-12 0-1 1-1 3-1 2 1 4 1 5 1s2 1 2 1c0 1 1 1 2 0 1 0 2 0 2 1 1 1 2 2 2 1 1 0 3-1 4-1 5 0 6 0 6-2 1-2 1-2 3-1 2 2 5 1 5-2 0-2 2-3 4-4s3-2 3-5v-4c1-2 6-8 8-8 0 0 2-1 3-3 2-2 3-3 7-3 3 0 5-1 6-1 0-1 1-1 1 0 1 0 2-1 2-2 1-1 2-1 2 0 2 2 3 1 3-1-1-1 0-2 2-2s5-3 4-5c0-1 1-1 3 0 3 0 3 0 3-2s2-3 4-2c1 0 3-1 5-3s4-4 5-4c0 0 2-1 3-2 2 0 3-1 4-1 0 1 3 0 5 0 3-2 3-2 6 0 2 1 5 2 7 2s4 1 4 1c0 1 0 1 1 1s2 1 3 2 2 1 4 1c1-1 2-1 2 1s2 4 4 3 5 0 7 2c1 1 2 1 2 0l4-2c2-1 3-1 5 0 2 2 8 4 11 4 1 0 4-1 6-3 5-3 10-5 11-3 0 1 1 1 1 0 1 0 1 0 1-1-1 0 0-1 2 0 1 0 3-1 4-2 2-2 2-2 3 0 2 2 2 2 3 1 2-1 7-1 7 1 0 1 7-2 9-4 1-1 2-2 3-2s2-1 4-2c1-1 3-2 4-2 0 0 2-1 3-2 3-2 3-2 6 0l4 2c0 1 2 1 3 2 3 0 4 1 3 2 0 1 0 1 1 1 1-1 3 0 4 0 4 2 6 2 7 0 0-2 2-1 2 1 1 2 1 2 3 2 2-1 4 0 5 1s3 2 7 1c2 0 5-1 6 0 0 0 2 1 4 1 11 1 12 1 13 5s5 9 6 8c1 0 1 1 0 2 0 2 0 3 1 3 2 2 1 3-1 3-3 1-4 2-2 4 1 0-1 3-2 2-1 0-2 2-2 5 0 5-1 6-2 5s-2-1-2 0c-1 0-1-1-2-3 0-1-1-3-2-5-2-2-4-8-3-9 0-1-1-1-1-2-1 0-2-1-1-1 0-1-1-2-3-3-2 0-3-1-3-2 1 0 0-1 0-1-1 0-2 1-2 1-1 1-1 1-1 0s0-2-1-2c0 1-1 1-1 0-1-2-6-1-7 1 0 1-1 1-2-1-3-2-2-2-6 0-2 2-3 2-5 1-1 0-2 0-5 3-2 2-5 3-6 3-4 0-9 1-11 2-1 1-1 2 0 5 0 3 0 4-6 4-4 1-5 0-5-1 0 0 0-1-1-1s-1 1-1 1c0 1 0 1-1 0s-5-2-6-1c-1 2-2 1-2-2-1-2-1-2-4-2-2 1-3 1-5-1-1-1-2-1-5-1s-5 1-6 1c0 1-2 0-4-1-3-1-5-2-10-2-4 1-7 1-8 1-1 1-1 1-1 0s-1-1-2 0c-1 0-2 1-3 0 0 0-1 1-2 3 0 1-1 2-2 1-1 0-2 1-4 3s-3 3-3 2c0-2-4-2-6 0-2 1-4 1-6 1-2-1-3-1-3 1 0 1-1 2-2 3 0 2-1 5-1 7 0 5 0 5-2 5-3 0-6 2-6 5-1 1-1 3-2 6s-2 4-3 4c-2 0-2 0-2 2 1 1 1 1-1 0-1 0-2 0-2 1 0 0-1 1-2 1-3 1-3 6-1 8 2 1 2 2 0 4-1 2-1 3 1 4 2 2 2 2 1 2s-2 0-2 1c1 0 0 1 0 2-1 1-4 2-8 2-5 1-8 1-9 3-1 1-4 1-8 1-3 0-5 1-5 1 0 1-1 1-1 0-1 0-2 1-2 2-1 1-2 1-3 1-1-1-2-1-2 0s-1 2-2 3c-3 0-4 4-4 6 1 1 0 2-2 2-3 1-3 1-3 3 1 2-1 6-2 6s-1 2-1 5c0 4 0 6-1 7s-2 2-2 3-1 2-1 3c-1 0-3 2-4 4-2 3-2 3-5 2-2-1-4-2-5-2 0-1-1-1-2 0-1 0-1 0-1-1 1-1 0-1-1-1s-2-1-2-2c-1-1-1-1-3 0 0 2-1 2-1 1 0 0-2-1-4-1-3 0-4 0-5 2s-2 2-4 2c-3 0-4 1-4 4-1 2-2 3-3 4-2 0-3 1-3 5 0 5-2 8-8 15-2 2-3 3-3 4h-6c-3 0-5 1-6 2s-1 1-2 0-1-1-2 2c-1 2-2 3-3 3s-1 2 0 3c1 0 2 1 1 2 0 0 0 1 1 1 0 0 1 1 0 1 0 2 5 6 7 6 1-1 1-1 0 1-1 1-1 1 0 2 2 0 1 3-1 5s-2 2-1 3c5 6 5 6 16 7 9 2 10 2 11 6 0 2 2 4 4 6s3 4 3 4c0 2 2 4 4 4 1 0 2 0 4 1 1 1 2 1 2 0 2-2 3-1 3 1 0 3 3 5 4 3 2-1 6 0 9 2 2 2 3 3 2 5 0 2-1 3-3 3s-5 3-5 5c1 2-2 3-5 2-1-1-3-1-3 0-1 0-1 0-1-1s-1 0-3 1-2 1-3 0c-1-2-3 0-3 1 1 1 0 2-2 3-3 1-4 5-3 7 0 2 0 2-2 2-1 0-2 0-1 2 0 1 0 1-3 1s-4 0-5 3-2 5-1 7v4c0 1 1 3 2 5 1 1 2 3 2 4 0 0 1 2 2 3 3 4 3 4-1 8-1 1-2 3-2 4s0 1-1 1c-1-1-1 0-1 0 0 1-1 2-2 3-2 1-3 3 0 3 1 0 1 0-1 2-1 1-1 1 0 2 0 0 1 1 0 2 0 3 3 6 5 6 1-1 2 0 2 2 0 1 1 3 2 3 2 0 4 1 4 3 0 1 2 2 4 3 4 2 5 3 6 6s1 4-1 6-3 3-3 4c0 0-3 1-6 1-4 0-5 1-6 2 0 2 0 2-1 1s-1-1-2 1c0 1-1 2-2 2s-2 1-2 1c0 1 0 2-1 3-2 3-3 7-1 8 1 0 0 1-1 1-2 1-2 2-2 5 0 2-1 4-1 6-2 2-2 3 3 8 3 3 3 8 0 12-2 2-3 3-3 4 0 0-2 1-5 1s-6 1-6 1c-1 1-2 1-3 1s-1 1-1 3 0 4-1 4-1 1-1 1c0 1 1 2 2 2s1 0 0 1-1 5 0 7c1 0 2 1 3 1s1 0 0 2c-2 2-2 2-1 3 1 2 1 2-1 2 0 0-2 2-3 4s-3 4-4 4-4 3-4 4 9 1 10 0c0-1 2-2 3-2 5-2 8-7 9-16 1-8 1-8-1-8-1 0-2-1-2-3-1-4-1-5 7-10 3-2 6-5 7-6 3-3 4-10 2-15-3-5-3-6 2-12 3-4 4-5 3-6s-1-1 0-4c2-5 6-9 11-12 6-3 8-6 8-12 0-5 0-6-7-13-4-5-7-10-8-11 0-1-1-2-2-2-1 1-2-4 0-7 2-4 1-14-1-20-1-2-2-6-2-8 0-4 1-5 7-7 1 0 4-2 6-4 3-3 4-4 3-5-1-2 2-6 7-6 4-1 6-3 8-6 1-2 3-4 6-4 3-1 4-2 5-5l2-4-2-5c-3-6-5-8-9-8-2 0-4-2-7-5s-4-4-5-3c0 1-1 2-3 1-2 0-3-1-3 0l-2-2c-1-1-3-2-4-2-2 0-3-1-4-3-1-1-3-3-7-5-14-6-13-5-12-8 1-7 1-10-1-14-1-2-2-3-3-3 0 1-1 0-2 0-1-2-1-4 0-4 3 0 24-17 24-20 0 0 1-3 3-5 2-4 5-6 9-5 2 1 2 1 2-1s1-2 9-2c7 0 9 0 13-2 5-2 15-12 15-15s6-13 10-15c2-1 4-3 4-3l-1-1c-3-2 5-9 14-13 4-2 5-2 12-2 8 1 13 0 16-3 1-1 1-5 1-8s1-6 1-7c1 0 1-1 0-2-1 0 0-1 2-3 4-4 5-7 3-12s-1-7 3-8c5 0 8-4 9-8 1-5 3-6 11-4 7 2 10 2 9 0-1-1 0-3 2-4s3-3 3-4 1-2 3-3 4-2 4-3c1-2 1-2 2-1s3 1 4 1c2 0 5 1 6 2 2 2 5 3 7 3 6 0 9 1 14 6 6 5 8 6 8 3 0-1 1-1 3-1 9 1 12 0 15-3 1-1 3-4 3-7l1-4h6c4 1 7 0 12-1 7-2 12-2 14 1 2 1 3 1 3-1s7 0 12 4c4 3 5 6 6 9 1 5 6 11 9 11 0 0 3-3 6-7s8-10 11-14c5-6 6-8 4-8-1 0-2-2-3-3-1-3-2-4-7-7-4-1-8-4-10-6s-5-3-7-4c-3-1-6-2-8-2-2-1-6-3-9-3-3-1-8-4-11-5-7-4-7-4-7-3s-1 2-5 1c-2 0-5-1-6-1-1-1-2-1-3-1s-4 1-8 1zm-1580 3c-1 1-7 4-8 3-2-1-8 0-10 1 0 1-1 2-1 3 0 3-1 5-5 6-2 0-3 1-3 1 0 1 0 1-1 0-1 0-1 1-1 2 0 2 0 2-2 2-1-1-1-1-1 0 1 1 0 2-1 2-1 1-2 2-2 3 0 2 0 2-1 1-2-1-3-1-3 0 0 2-3 3-3 1 0-1-2-1-5 0-2 1-5 2-5 1-2 0-9 5-11 7-2 4 0 4 4 2s5-3 9-2c9 1 17 1 20 0 6-2 7-3 5-4-1-1-1-1 0-3l2-4c0-1 0-2 1-2 0 0 2-3 4-7 2-3 3-6 4-6 0 0 2 1 4 1 3 1 3 1 13 2 3 0 6 1 7 2 2 2 3 2 3 1s1-1 6 0c3 1 7 2 9 2 3 1 3 1 3-1 0-1-1-3-2-5-2-1-3-2-3-2 0 1-1 0-1 0-1-1-2-2-2-3s0-1-1-1c0 1-2 0-4-1-3-2-4-2-5 0-2 1-2 1-3 0-1-2-4-3-4-1s-3 1-5-1c0-1-1-1-1 0zm47 27c-1 1 3 8 5 9l4 4c1 3 3 4 3 2l4-2c3 0 5-1 5-2 1 0 0-2-1-4-2-1-3-3-3-3 0-1-1-1-3-1-2 1-3 0-3 0 0-1-1-1-2-1-2 1-3 0-5-1-2-2-3-2-4-1zm-480 76c-2 0-3 1-3 3s0 2-2 1c-1-1-2-1-2 1-1 1-1 2-2 2-1-1-2 0-4 3-1 1-2 3-3 3l-1 1c0 1-1 2-2 3s-1 2 0 4 3 3 3 1c0-1 1-3 2-4 1 0 2-1 2-1 0 1 1 1 2 0 3-3 8-4 11-4 2 1 3 0 3-1-1-2 2-4 6-4 3 0 4 0 4-1 0-2-6-7-8-7 0 1-1 0-2 0 0-1 0-1-4 0zm-49 28c0 1-1 1-3 0-2 0-3 0-3 1s-1 2-2 2c0 0-1 0-1 1 1 0 0 1-1 1-2 1-3 5-1 7 1 0 0 1-1 2-2 2-2 2-1 3s1 1 0 2-2 2-2 1c0 0-1 0-1 1-1 1-1 1 0 1 0 0 1 1 1 3 0 6 1 11 2 12 1 0 1 1 1 2s1 3 3 5 2 3 2 8c-1 3 0 5 0 6 1 0 0 1-1 2-1 0-1 1 0 1 0 0 1 1 1 3s-1 3-1 3c-1-1-2 0-4 2 0 1-1 2-1 2-1 0-2 1-4 3-3 2-3 3-2 7 0 2 1 5 1 5s1 2 2 3c2 2 3 3 6 3 1 0 3 0 3-1l-3-3c-5-4-4-6 3-11 3-2 7-5 9-6 3-3 4-7 2-6-1 1-2 0-2-2 0-3-2-11-5-15-4-5-6-13-5-18s4-12 7-15c1-2 1-2 0-3-2-1 1-3 7-5 3-1 6-2 6-3s-8-4-9-3c-1 0-1 0-1-1s0-1-1-1-1 0-1 1zm-134 78c0 3 4 7 7 7h3c1 0 3 3 6 5 2 3 5 5 5 4 0-2 3-1 3 0s1 3 2 5c3 3 5 2 5-3 0-2 1-3 1-3 1 0 1-1 0-2s-1-1 0-2 1-2 0-2c-1-1-1-1-1 0l-2-2c-1-2-6-3-6-1-1 1-1 1-1 0 0-2 0-2-2-2-1 1-1 1-1-1 1-3 1-3-10-2-3 1-4 0-6-1-2-3-3-3-3 0zm82 21c0 1-1 1-3 1l-3 3c0 1-1 2-2 1s-2-1-3 1c-1 1-1 1-2 0-1 0-2-1-2 0-1 0-3 0-6 1-10 0-13 2-13 5 0 2 0 2 2 1s11 0 14 1c1 0 6 1 10 1 8-1 9-1 9-2 1-3 4-5 9-5 3 0 5 0 5-1 0-2-6-7-7-7-1 1-1 1-1 0s-1-1-2 0c-2 1-3 1-3 0s-2-1-2 0zm233 81l-2 2c-3 1-9 7-9 9 0 1-1 2-6 2-6 1-7 2-9 4-1 2-2 3-3 3 0 0-1 0-1 1s0 1-1 1c-1-1-5 1-5 3 0 1 0 1-1 0-2-2-2-2-4-1s-2 1-5 0c-2-1-3-1-5 1-1 1-3 3-3 5-1 2-2 4-3 4-1 1-1 2-1 3s-2 2-4 3c-5 2-5 4 0 4 3 0 4-1 9-5 6-7 7-7 12-5 2 0 5 1 8 1 5 0 5 0 5-2-1-1 0-2 1-3 4-1 8-8 8-11-1-2-1-2 4-2s5 0 8-3c4-4 8-5 9-3 0 0 3 2 6 3s5 1 5 1c1-2 4 1 5 7 1 3 3 5 3 5 0 1 3 2 6 2 5 2 6 2 8 6 1 2 2 5 2 7 0 4 3 7 9 7 3 1 7 1 8 2 2 0 2 0 2-2-1-1 0-2 2-3 2 0 6-3 10-7s8-7 9-8c2-1 18-1 25 1 1 0 4-1 5-1 1-1 3-2 4-3 2 0 3-3 1-3-1 0 0-1 1-2 0-2 1-4 1-6 0-1 1-4 2-6 3-5 3-5-1-5-1 1-3 1-4 1s-2 1-3 2c0 1-1 2-2 1-1 0-1 0-1 2v3s-1 1-2 3c-2 2-2 2-1 4 1 1 1 1 0 0-2-1-2-1-3 0 0 1-4 1-4 0 0-2-1-1-4 0s-5 2-6 2c-2 0-3 0-4 1-2 0-4 1-5 2-2 0-3 2-4 3-1 2-9 6-13 6-1 0-2 1-2 1 0 1-1 1-2 0-2 0-3 1-4 2-1 2-1 2-3 0-1-1-1-1-2 0 0 1-2 1-1 0 0-1-1-3-3-5-2-1-3-3-3-4 0 0-2-2-4-3-4-1-6-2-8-1-3 1-4-1-3-5 1-1 1-3 1-3-1 0 0-1 0-1 1-1 1-1 0-2 0-1-1-3 0-4 0-1 0-2-1-2s-2 0-2-1c0-2-4-5-7-5-1 0-2 1-3 2s-1 1-2 0c-1-2-2-2-3-1-2 0-3 0-5-3-1-1-2-2-2-1z"
	fill-opacity="0.6"
	fill="#cf9a60"
	/>

<path id="ridges3" d="M622 42c-1 1-2 1-4 0-2 0-4 0-5 1 0 1-2 1-2 1-2-1-6 5-5 6 1 0 0 1-1 3 0 1-1 2-1 3 1 0 0 2-1 4s-2 4-1 5c0 3 4 3 5 0 0-1 1-3 2-5 2-1 3-4 3-6 0-4 8-9 9-5 0 2 0 2 2 1 0-2 1-2 1-1 1 1 2 1 2 0 4-2 12 6 15 13 2 5 2 6 6 7 3 2 4 2 7 0 2-1 4-2 5-4 2-3 6-3 7 0 1 2 1 2 3 0 3-1 3-1 4 4 1 4 5 6 11 6 3 0 5 1 5 2 1 1 8 2 8 0 1 0 2 0 4 1s4 1 8 0c5 0 6 0 8 2 1 1 1 1 2 0s2-2 3-2c0 0 3-2 5-3 3-2 6-4 7-4 3-1 6-6 4-7-1-1-2 0-3 1-1 0-3 1-4 1-2 0-4 1-4 2-2 1-4 2-6 2-1 0-4 1-5 2-2 1-3 2-4 1 0-1-2-1-3-1s-3 0-4-1c-2-1-6-1-8-1-3 1-6 0-7 0 0-1-2-1-4 0-5 2-7 1-7-4 0-6-8-12-12-8-2 1-2 1-4 0-2-2-9-3-8-1 0 1-2 7-3 7-2 0-6-3-6-6-1-1-3-4-5-6s-4-5-4-5c0-1-1-2-4-3-2 0-4-1-4-1-1-2-7-2-7-1zm-55 2c-2 1-3 2-6 1s-5-1-5 0c-2 1-5 1-5 0 0 0-2-1-5-1-5-1-7 1-9 6l-2 2c-1 0-2 1-3 1-1 1-3 2-5 2s-4 1-6 2c-1 2-3 2-6 2s-5 1-6 3c-2 1-3 3-3 3-3 0-7 2-8 4-1 1-2 2-3 1-2 0-3 0-3 1-1 1-2 1-3 1-2 0-4 1-6 2-3 2-6 3-7 1-2-1-10-1-12 0-1 1-4 2-7 3-4 1-4 2-4 5 0 4 0 4-4 4-2-1-4 0-5 2-2 2-3 2-4 1s-3-2-6-2-4 0-6 3c-4 5-4 5-6 5 0-1-1 0-2 1-1 0-2 1-3 1-2 0-5 3-5 5 0 1-6 6-7 6s-2 1-3 2-2 2-4 1c-2 0-3 0-4 2-1 1-2 3-1 3 0 2-2 4-4 3 0 0-2 0-3 1 0 1-2 1-3 1-1-1-3 1-6 3-2 2-5 3-6 3 0-1-1 0-2 0 0 1-1 1-2 1-3 0-5 2-7 5-1 2-2 3-5 4s-4 2-5 4c0 3-1 3-5 3s-5 0-5 1c-1 1-2 2-3 2-2 0-4 1-4 2-1 1-2 2-3 2s-2 1-4 3-2 3-5 2c-4-1-8 2-10 6v5c1 1 2 1 4-2 1-2 3-2 5-2 4 0 14-5 16-8 1-3 4-5 5-3h4c3 0 5-1 7-3 4-4 9-10 11-13 1-1 2-2 4-2 5 0 11-2 11-4 1 0 2-1 2-1 1 0 5-2 9-4 4-1 8-3 9-3 2 0 3 0 3-2s1-3 2-4c3 0 10-7 10-9s5-5 9-5c4-1 6-2 7-4 1-1 3-3 5-4s10 0 11 1c0 2 3 1 3 0s1-2 2-1c3 0 8-5 8-9 1-2 2-4 4-5 4-2 6-3 8-1 2 3 9 3 12 2 18-8 17-8 19-6 2 1 2 1 3-1s1-3 2-3 3-2 5-4c1-1 4-3 5-3l4-2c2-2 4-2 8-2 5 0 6 0 10-3 2-2 4-4 4-5s4-3 8-3c2 0 3 1 3 1 0 3 2 3 3 2s3-1 4-1c1 1 4 0 7-1 3-2 6-3 7-3 2 0 4-3 2-4-2-2-7-2-9 0zm481 118c-2 1-4 2-5 1-3 0-5 0-9 1-1 0-2 1-2 2 0 3-2 6-4 6l-2-1c-1-1-3-2-5-2s-3-1-3-1c0-1-5-3-9-3-3-1-4 0-5 2 0 1-2 2-2 2-1 0-2 1-2 1 0 1-1 3-2 3-2 2-2 2-5-1-4-4-7-5-11-4-2 1-2 4 0 5h3c1 0 2 1 2 1 0 3 5 7 8 7 4 0 11-5 13-8 1-3 1-3 2-2 0 2 1 3 4 3 2 0 6 1 9 2 6 1 6 1 8-1l4-4c1-2 1-3 2-2 2 1 10 1 11 0 1-3 14 2 14 6 0 2 10 1 14-1 2-1 4-2 5-2 3 0 7-3 5-4 0 0-2-1-4-1s-3-1-4-1c0-1-1 0-3 1-3 2-3 2-6 0-2-1-3-1-5 0-3 1-4 1-4 0 0-2-6-7-7-7 0 0-2 1-5 2zm210 11c-1 1-3 1-3 0-1 0-7 4-8 6-1 1-2 3-4 3-1 0-3 0-4 1s-3 1-4 1c-1-1-6 1-7 2 0 1-4 1-7 0h-11c-8-1-8-1-11-3-2-2-2-2-7-1-2 1-4 1-4 1 0-2-8-1-9 0-1 2-5 3-5 1-1 0-3-1-6-1-4 0-5 1-8 4s-4 3-7 3c-4-1-4-1-4-5 0-3-1-4-4-4h-3l1 5c0 6 1 10 4 10 3 1 11 0 13-2 6-5 16-6 19-2 1 1 1 1 2 0 2-3 11-4 20-3 5 0 13 2 15 3 2 2 10 2 13 0 2 0 4-1 5-1s4-1 8-3 7-3 9-2c1 0 2 0 3-2 1-4 7-7 10-5 1 1 3 2 4 2 4 0 12 3 14 5 2 1 6 1 17 2 13 0 16 0 17 2 1 1 1 1 3 0 1-1 2-2 3-2s4-1 6-2c3-2 6-3 8-3 1 0 3 0 4-1 2-1 7 0 11 3 2 2 4 2 14 2 9 0 11 0 15-2 4-1 6-2 6-1 2 1 3 1 3-1 0-1 2-2 3-3 3-1 3-1 5 1 3 3 7 5 8 4 2 0 1-3 0-4-1 0-2-1-2-2 0 0 0-1-1-1s-1-1 0-1c0-2-5-4-11-4-6 1-7 1-8 5-1 1-2 2-4 2s-6 0-9 1h-8c-3 0-9-1-11-2 0-1-4-1-8-1-3 0-7-1-9-1-1-1-3 0-5 1-2 2-5 2-7 2s-5 1-7 2c-2 2-3 2-5 1-1-1-2-2-3-1-1 0-3 0-4-1-1-2-7-1-9 0 0 1-2 1-4 0s-5-1-7-2-5-1-7-1c-5 0-8-1-10-4-2-2-4-2-8-1zm-954 13c-1 1-2 2-3 4s-1 2 2 5c2 2 3 4 3 5 0 0 2 3 4 5 5 3 5 5 2 5-1 0-2 1-3 2s-2 1-4 1c-2-1-3-1-3 0s-1 1-2 1-2 1-3 1c-1 1-4 2-10 2-5 0-9 0-10 2-2 0-5 1-8 2-5 0-5 1-7 4-1 2-3 5-5 7-1 2-3 4-3 6s-1 3-3 3c-1 0-3 0-5 1-1 0-3 1-4 1-2 0-5 6-3 8 0 1 1 4 1 8 0 7 2 11 6 11 1 0 2-1 2-2s-1-2-1-2c-1 0-1-1-1-3v-8c-1-3-1-5 0-6 2-2 11-6 13-6s3 0 3-3c0-2 1-3 1-3 1 0 1-2 2-4 1-5 2-5 8-8s11-4 12-2c1 1 11 1 14-1 1 0 3-1 6-2 5-1 11-6 13-10 1-1 2-3 3-4s1-1-1-3c-1-1-5-4-8-7-4-4-5-5-4-6 1-2 0-5-1-5 0 0-1 1-3 1zm734 12c0 1-1 3-2 4-2 1-3 2-2 3 0 1-1 2-3 3s-3 2-4 4c0 2-1 3-1 3-2 0-5 3-5 5s3 4 4 2c1 0 2-1 2 0 1 0 4-2 4-4 0 0 2-3 4-5 3-3 4-4 5-3s1 0 1-2c0-3 0-4 3-6s2-4-3-4c-2-1-3-1-3 0zm112 14c0 1-1 2-1 3l-1 1c-1 0-2 0-2 1s-1 1-2 1-4 5-3 6 9-2 11-4 2-2 3-1c0 1 1 2 1 2 2 0 7 1 8 2 1 2 1 0 0-2-1-1-1-1 0-1 2 0 2-1 1-3 0-1-1-1-2-1 0 1-1 0-2-1 0-2-1-2-3-2-1 1-2 1-2 0s-1-1-1-1c-1 1-2 0-3 0 0-1-1-1-2 0zm123 4c0 1 1 2 4 3 2 1 5 2 6 3 4 4 10 6 15 6 2 0 6 1 8 2s5 2 7 2 3 0 3 1c-1 2 6 10 9 10 4 1 5 3 6 7 0 3 1 5 3 6s3 2 4 2c2 0 2-2 0-4s-2-3-2-6c1-4 2-3-8-11-2-1-3-3-4-4 0-1-2-3-4-4-1 0-3-1-3-2-1-1-2-1-4-1s-3-1-4-2c-1-3-2-3-7-3-4 1-8 0-9-1-12-6-20-8-20-4zm-365 1c-2 2-1 4 2 5 1 0 2 2 2 2 0 3 6 5 11 5 4 0 5 0 8 3l4 4c0 2 2 2 5 2s5 1 7 3c7 6 20 11 23 8 2-1 10-4 12-4 1 0 2 1 2 2 0 2 3 2 5 1 1-1 3-2 4-2l4-4c1-2 3-4 5-5 4-2 6-4 4-6-1-1-1-1-2 0s-3 1-5 1c-2-1-3 0-4 2l-4 4c-2 1-4 2-5 2-2 1-3 1-4 0s-2-2-3-1-2 1-3 1c-1-1-5 1-7 3 0 1-2 1-9-1l-9-1-1-5c-1-4-1-4-5-4-3 1-6 0-6-3l-2-2c-1-1-1-3-1-4-1-2-5-3-11-1-4 1-5 1-6 0 0-1-1-2-2-2s-2-1-4-2c-3-2-3-2-5-1zm575 16c-2 0-4 1-5 1s-1 2 0 5c1 1 2 2 4 1s2-1 3 2v2l3-3c3-3 3-3 2-5-1 0-3-1-3 0-1 0-1-1-1-2 1-3 1-4-3-1zm-26 13c-1 1-3 2-3 2-1 0-2 1-3 3-1 3-1 6 3 14 1 3 1 3-1 5-1 1-1 1 0 1 3 0 3 2 2 4-2 3-1 7 1 7 1 0 1-1 2-2 0-2 1-2 3-2 1 0 1-1 1-3v-3c2 0 1-4-1-5-1 0-2-1-2-4 1-2 0-4-1-6-2-2-2-2 0-4 4-4 5-7 4-8 0-2-2-1-5 1zM243 295c-5 7-6 16-2 19 2 2 0 4-3 4-1 0-3 0-4 1s-2 0-2 0c-1-1-1-1-2 0 0 1-1 1-2 1-1-1-2 0-4 1-1 1-4 2-6 3-4 2-7 6-6 9 0 2 0 3-2 4-1 1-3 1-3 0-1 0-3-1-6-1-1 0-9 2-11 3-1 1-4 4-6 7-3 2-5 4-6 4-2 0-3 1-3 3 0 1-1 4-1 5-1 2-1 3 0 5s1 5 1 7c1 6 2 7 5 7 2 0 2 0 1-4 0-2 0-3 1-3 1 1 2-1 1-3 0-1-1-2-2-2-1-1-1-4 2-7 0-1 1-2 0-2-1-1 1-5 2-5s3-1 4-2c0-1 2-2 3-2 0 0 2-1 4-3s5-3 6-1c1 1 8 0 11-2 1 0 2-2 2-4 1-5 7-9 13-10 3 0 5-1 6-3 2-1 3-2 4-1 0 1 3 1 5 0 4 0 5-1 5-3 1-2 0-4 0-6-1-1-2-3-2-4s0-3-1-4c0-1 0-3 2-7 1-3 2-6 1-6-1-2-3-1-5 2zm1216 5c-3 3-4 4-5 7 0 2 1 4 1 5 1 0 2 2 3 4s3 4 6 6c2 1 3 3 3 4s0 1 2 0c3 0 4 0 6 3s4 4 6 4c3 0 4-2 1-4-1-1-2-2-2-3s0-2-1-2c0 0-2-1-4-3-2-3-3-3-5-2s-2 1-2 0-1-2-1-2l-2-2c0-1-1-2-2-3-2-2-2-7 0-9 2-1 3-5 2-6s-3 0-6 3zm482 13c-1 1-3 2-3 1-1 0-2 1-3 1-1 1-3 3-5 4s-4 3-4 4-1 3-3 3c-1 0-2 1-3 2-1 0-2 1-3 0-1 0-2 0-2 1s-6 7-7 7c0-1-1 0-2 0-1 1-2 2-2 1-1 0-3 1-5 2-4 3-6 4-9 2-2-1-3-1-5 1-1 1-4 1-6 2-2 0-5 0-6 1-1 2-2 2-2 1-1-1-2-1-3-1-2 0-3-1-4-1 0-1-2-2-4-2s-4 0-4-1c-1-1-1-6 0-9 1-2 1-3-2-7-1-2-3-5-2-5 0-1-2-1-4-1s-5-1-7-1c-2-1-4-1-6 0-1 1-2 1-3 0-1 0-2-1-3-1-2 0-3 0-4-1 0-1-2-1-5 1-2 1-5 1-7 2-7 0-7 1-7 4 1 3 1 4-1 5-1 1-3 2-3 2-1-1-3 0-4 1-1 2-3 3-3 2-3 0-7 2-8 4 0 1-1 2-2 3-1 0-3 0-3 1 0 0-2 1-4 1s-4 0-5 1h-4c-2 0-3 1-4 4-1 2-3 5-4 5-1 2-1 2 0 3 1 2 6-1 8-5 1-2 3-3 3-2s7 1 10 0c2-1 4-2 5-4 2-2 3-2 4-1 2 1 2 1 2 0s5-5 12-8c2-1 4-3 5-6s2-4 4-4 4-1 4-1c1-1 5-1 9-1 6 0 7 0 7 2 0 1 1 2 2 2 0 0 1 0 1-1 0 0 2-1 6-1s6 0 7 2c2 2 2 2 0 5-3 3-3 4-2 8 1 2 2 5 3 5 3 3 12 6 17 6s6 0 6 1 1 2 1 2c1 0 2-1 2-2 1 0 2-1 2-1 1 0 3-1 5-2s5-2 7-2c1 0 3-1 4-1 0-1 2-1 2-2 1 0 5 0 9-1 5-1 7-2 9-4 1-2 3-3 3-3 1 0 3-2 6-4s5-3 7-3c2 1 2 1 2-1-1-1 0-2 1-3s2-2 2-3c0 0 2-2 4-3 5-2 7-4 5-6-1-2-2-2-4 0zm-243 3c-1 2-4 4-5 4l-3 3c-2 2-5 3-8 3-2 1-5 2-7 3-1 1-3 2-4 2-1-1-3 0-4 1-1 0-3 1-4 1s-4 2-7 5-7 6-8 8c-2 1-4 2-7 2-4 0-5 0-6-3l-2-2c-1 0-3-1-3-2-2-1-3-1-7-1h-4c0-1-7-4-10-4-2 0-3-1-4-2s-2-2-4-3c-2 0-3-2-4-2 0-1-1-2-2-2-1 1-3 1-5 1-4 1-4 1-5-1s-2-3-6-3c-7 0-10 1-10 2 0 2-5 5-8 4-2 0-3 1-5 4s-3 4-7 4c-3 0-5 1-7 3l-4 2c-1-1-3 0-4 1-2 1-4 2-5 2-1-1-2-1-2 0 0 0-2 2-4 3-3 3-3 3-7 2-8-2-9-3-9-7-1-3-1-4-3-4s-2 1-2 3c0 6 0 6 4 10 2 3 4 4 8 5 5 1 6 1 12-3 4-2 9-5 12-6 4-3 6-4 6-2 0 1 1 1 2 1 0 0 1-1 1-2s1-1 2-1c2 1 6-2 10-6 2-2 4-3 5-3 0 0 2-1 4-3 4-3 10-4 12-2 1 3 5 4 10 4 6 0 15 5 16 7 0 2 0 2 3 2 1 0 3 0 4 1 0 1 3 1 6 1 7 0 12 2 14 4 1 1 4 2 7 3 4 1 5 1 9-1 2-1 6-4 8-6 3-3 8-6 11-8 7-3 7-3 9-2 2 2 2 2 3 0 1-1 2-2 3-2 2 0 16-10 18-13 1-2 1-7-1-8 0 0-2 1-2 3zm359 2l-8 4c-3 1-6 3-7 5-1 1-3 2-5 2s-4 2-9 7c-4 5-9 8-10 9-2 0-4 1-4 2-1 1-3 3-5 4-5 2-10 5-10 7s2 2 9-1c3-2 7-3 8-3s2-1 3-2c0-1 2-2 2-2 1 0 3-1 4-2 7-6 10-8 10-10 1-2 2-3 4-4 2-2 3-2 5-1s2 1 4-1 4-3 4-3c1 0 2-1 3-1 1-3 6-6 10-6 8 0 11-4 4-5-3-1-5-1-6-1-1-1-3 0-6 2zM183 415c-4 4-4 4-3 8 1 2 2 5 3 5 0 1 1 2 1 3 0 2 7 10 10 10 2 0 4 2 4 5s3 4 8 4c4 0 5 0 5-1s2-2 5-3 5-1 7 1c2 1 5 1 6 1 3 0 3 1 5 4 1 5 2 7 6 7 3 1 4-1 1-4-1-1-2-3-2-4 0-4-5-9-11-10-7-2-18-1-21 1-2 1-4 2-4 1-3-4-5-6-4-8 0-1 0-2-1-2h-3c-2-1-9-9-9-11 0-1 1-4 3-6 2-4 2-6 0-6-1 0-4 2-6 5zm2242 109c-4 1-8 2-9 2-1 1-3 1-3 1-1 0-2 1-3 2-1 2-16 1-17-1s-4-3-5-1c0 1-1 2-2 2s-3 1-5 2-6 4-8 5-4 3-4 4c0 3-2 2-5 0-5-6-6-6-15-5-9 0-11-1-11-4 0-2 0-2-1-2s-3-1-5-2c-2-2-3-2-7-2-2 1-11 1-19 1-15 1-15 1-18 3-1 2-3 3-4 3 0 0-3 2-7 4-5 3-7 4-8 3s-3 0-3 1c0 2-9 10-10 10s-5 2-9 4c-4 3-8 5-9 5-3 0-8 6-9 10 0 3-4 9-7 9-1 1-2 0-3-1s-1-1-1 0c-1 1-2 2-3 2-2 0-6 0-10 1-9 1-13 3-16 11-1 3-3 6-3 6 0 1-1 4-1 6 1 5 0 5-5 10-3 3-5 5-7 5-1 0-1 0-1 1s-1 3-2 5c-2 2-3 2-7 2-2 0-5 0-6 1-2 1-3 2-3 1 0 0-1 0-1 1-1 0-3 1-4 1-8 0-11 0-13 1s-6 2-11 2c-7 1-8 1-10 0-1-1-1-1-3 1-1 1-2 2-3 2s-3 1-4 3c-3 2-3 2-6 1-2-1-4-2-5-3-1-2-8-2-12 0-5 2-10 7-10 9 0 1-1 3-2 6-2 2-3 6-4 9-1 2-2 4-3 4 0 0-1 0 0 1 0 1-1 1-2 2-2 0-3 4-4 12-1 6-1 8 1 13 1 4 2 9 2 11v29c-1 0-1 1-1 1 0 1 1 2 2 2l2 2c0 1 1 2 1 2 2 0 1 3-1 3-10 0-17 4-20 10l-1 3h-9c-5 0-9-1-9-1 0-2-3-1-4 1 0 1-1 2-2 2-2 1-4 4-7 8-5 7-5 8-5 15 0 5 0 9-1 9-1 1-1 4-1 8-1 10-3 19-5 21s-2 2-1 4c1 1 2 3 2 4s1 4 2 6c4 4 2 7-5 11-7 3-12 7-12 10 0 2-5 9-7 10s-2 1-3-1-1-2-2-1-5 2-10 3-9 2-11 2c-1 1-5 6-7 12-1 2-1 3-2 3s-4 3-7 6c-7 7-8 11-6 18 1 3 1 4 0 5-2 1 0 4 1 4s2 1 2 1c0 1 2 3 4 5 4 3 4 7 1 11-1 1-2 5-3 8-2 4-2 5 0 9 1 3 2 6 4 6 1 1 3 2 5 4 2 1 4 2 5 2s2 1 3 1c1 2 1 2 0 3-2 1-2 4 0 4 1 0 2 1 4 3s5 4 11 5c8 3 9 3 12 2 1-1 8 1 8 2 0 2 3 4 6 6 2 1 11 1 11 0s-4-4-6-4c-1 0-2-1-3-2-1-3-8-7-13-7-3-1-4-1-3 1 0 1 0 1-2 1-1-1-3-2-4-3s-3-2-5-2c-3 0-4-1-7-5l-4-6c0-1-1-3-3-3-2-1-3-2-3-3l-4-2c-4-1-5-2-6-5-1-5 1-14 4-19 3-4 3-5-1-8-1-1-3-4-3-5-1-2-2-4-4-6s-3-3-2-4 1-2 0-4c0-1 0-2 1-3 1 0 2-2 3-4l5-5c2 0 3-1 3-2s1-2 2-2c1-1 1-3 1-6 0-4 1-5 3-6 1-1 3-1 4-1 1 1 4 0 6-1 1 0 3-1 3 0 1 1 8 1 9-1 1 0 2-1 4-1 1 0 3-1 5-2 1-1 3-2 4-2 0 0 1 0 1-1-1 0-1-1 0-1 1-1 1-2 1-4s1-4 5-7c2-2 6-5 7-7 2-1 5-4 7-5l3-3-2-4c-1-2-2-5-3-7 0-2 0-5-1-5-1-2-1-4 1-6 0 0 1-2 1-4 0-1 0-2 1-2s1-2 1-6c0-3 0-7 1-7 1-2 1-11 0-16-1-2-1-3 1-5s3-4 4-6 1-3 2-3c1 1 6-2 8-4 1-2 2-2 4-1 1 0 3 1 4 0 1 0 2 0 3 1 0 2 6 2 8-1 0-1 2-2 3-4 1-1 2-2 2-4 0-1 2-2 4-4 4-2 5-2 8-1h6c2 0 2 0 2-7 0-6 0-7-2-10-3-2-4-4-2-5 1 0 1-1 0-3 0-1 0-3 1-3 0-1 1-3 0-5v-8c-1-8-2-11-4-13-2-3-3-7-1-9 1-1 2-3 1-5 0-2 0-3 3-6s4-4 3-6c0-2 0-3 1-4 1 0 2-1 2-3 0-1 1-2 2-3s2-1 2-2v-2c1-1 1-3 1-4s1-3 3-3c1-1 2-2 2-3 1-1 3-2 5-3 5-1 5-1 9 2 2 2 4 4 3 4 0 1 1 1 2 1s3-1 4-2c2-2 3-2 4-2s8-3 8-4 10-1 12 0c0 1 3 0 6-1 2-1 5-3 7-3 8 0 9 0 12-3 2-1 3-2 6-2 2 0 4 1 4 1 1 1 2 1 5 0 2-1 4-2 5-3 2 0 5-4 5-6s1-4 2-4 3-1 4-2 3-2 3-2c2 1 4-4 4-7 0-4 0-9 2-16 1-7 4-8 8-6 1 1 3 1 5 0h7c3 1 5 0 6-1 2-1 4-2 5-2s3-1 4-2c0-1 2-2 3-2 2 0 2 0 2-1-1-1 0-2 0-3 1 0 1-1 1-3s6-9 8-9c0 0 2-1 4-3 5-4 7-5 10-4 2 0 4-1 5-3 2-2 3-3 4-3 0 1 1 0 2-1 1 0 2-1 3-1 0 0 1-1 2-3 1-3 1-3 3-3 1 1 3 0 4-1 1 0 2-1 4-1 1 0 3-2 5-4 3-2 5-3 6-2 1 0 2 0 2-1 1-1 3-1 6-1 2 0 4 0 5-1 0-2 3-1 7 1s4 2 7 0l3-2 3 3c2 2 4 3 6 3 1 0 2 1 3 2 1 2 2 3 3 3s3 0 4 1 3 1 6 0c5-2 7-2 7 1 1 0 2 1 2 1 1 0 2 1 3 1 2 3 6 2 10-1 2-2 4-4 4-3 1 0 2-1 4-2 1-1 3-2 6-3 2 0 5 0 7-1s2-1 3 0c1 0 3 1 4 1s3 1 4 2 2 1 2 0c0 0 1-1 2-1 2 0 3-1 4-2s3-2 4-2c2 0 3 0 3-1s2-1 3-1c1-1 4-2 6-3 3-2 4-2 7-1l4 2c0 1 1 1 3 1s5 1 8 2c3 2 4 2 7 1 2-1 2-1 3 0s2 2 4 2c1 1 3 2 3 2 1 1 4 2 7 2 7 0 10 0 17 2 4 1 5 2 7 6 1 2 2 4 1 4s4 2 6 2 3 0 2 3v6c0 2-1 3-2 4 0 0-2 1-2 3l-2 2c-2 0-4 5-4 8 0 5-6 4-7-2-1-1-2-4-4-6s-3-4-3-5v-3c0-1-2-2-3-3-12-5-12-5-14-4s-3 1-4 0c-2-1-11-1-11 0s-1 1-1 1c-1 0-2 1-3 2s-3 2-8 2c-7 0-9 1-8 5 0 3 0 4-1 5-3 2-15 3-17 1-1-1-3-1-4 0-2 0-3 0-4-1 0-1-2-3-4-3-1-1-3-2-3-3s-4-1-9 1c-2 0-4 0-6-2-3-2-4-2-8-2-3 0-6 1-7 1-1 1-1 1-2 0-1-2-5 0-6 3 0 2-1 3-3 4-1 1-3 2-4 2-3 2-4 2-6 1-1-1-3-1-3 0h-5c-2 0-3 1-3 1 0 1-1 2-1 3-1 1-2 2-1 4 0 3-2 9-4 7-2-1-7 3-7 5 1 1 0 3 0 5-1 2-1 5-1 6 0 3-1 4-3 4-4 0-8 5-5 7 1 0 1 1 1 3-1 1 0 3 0 4 1 2 1 2 0 3-1 0-2 1-1 1 1 2-4 5-7 5h-8c-2 0-5 1-6 2-2 1-5 2-7 2-4 0-6 1-7 3-2 2-3 3-4 3-2 0-6 5-6 8 0 1-1 2-2 2 0 0-2 1-2 3-1 1-2 3-3 4-1 0-1 3-2 5 0 3-1 6-1 7l-2 2c0 1-2 3-5 6-4 5-5 5-8 5l-4-2c0-1-2-1-4-1h-8c-3-1-4-1-6 1-1 2-3 3-3 2-1 0-3 1-4 2-1 2-3 3-4 3s-2 4-2 9c0 1-1 3-2 3l-2 2c0 1-2 3-5 6-5 5-6 5-10 5-6 0-7 1-8 6 0 4 3 9 6 9 2 0 2 1 2 4s-1 5-2 6c-2 3 1 7 4 8 2 0 4 0 4 1 1 1 2 1 3 1 0-1 2 0 5 1 2 1 5 2 6 1 1 0 2 1 3 4 2 4 2 5 10 9 1 1 3 2 4 3s3 1 4 1c1-1 2 0 4 1 0 2 2 3 3 3s4 1 7 3c4 3 4 4 4 6-1 2-1 4-1 4 0 1-1 1-3 1-3 0-5 1-6 4 0 4-2 5-6 4-2-1-3-1-6 1-1 1-3 2-4 2-2 0-5 5-5 8 0 2-1 3-4 4-2 1-4 2-5 2-2-1-6 5-4 7 1 0 1 2 1 4-1 2 0 3 0 3 1 0 1 2 1 3 1 1 2 4 3 6 3 4 3 6-1 9-1 1-2 3-2 6 0 2 0 4-1 4s-1 7 0 8c1 0 2 1 3 1 2 0 3 1 3 3 0 1 1 2 2 3s2 2 2 3 1 2 2 2c4 2 7 4 7 6 0 1 0 3 1 4s0 3-3 6c-3 4-4 5-8 6-5 0-5 1-7 4-1 2-3 5-4 6-2 2-2 3-2 6 1 2 0 3-1 4s-2 2-2 3-1 3-2 4c-1 2-1 3 4 8 3 4 2 9-3 14-3 5-4 5-8 5-3 0-5 1-6 2-1 2-1 15 1 17 3 1 2 9-1 10-1 0-3 2-4 4-2 2-4 4-5 4s-3 1-3 2 1 1 4 1c10 0 17-9 16-18-1-2 0-3 1-4 1 0 1-3 0-3-1-1-2-2-2-3-1-1-1-3-1-4-1-2-1-2 0-2s3-1 5-2c1-1 4-4 7-5 7-5 8-8 7-13 0-3-1-6-3-8-1-1-2-3-2-4 0-3 3-8 5-8 1 0 1-1 2-4 0-6 2-9 5-11 10-5 13-8 15-12s2-5 1-9-2-6-4-7c-5-3-15-13-14-15 0 0 0-1-1-1-2-1-1-5 1-9 2-3 3-11 1-14-1-1-2-4-2-7s-1-6-1-7 1-2 4-4c2-1 5-3 6-5s2-3 3-2c1 0 1 0 1-1-1-3 3-7 8-7 4 0 5-1 7-4s3-4 8-5c3-1 5-2 5-3 1 0 1-3 1-5 1-5 1-5-4-11-5-5-6-6-9-6-4 0-6-1-6-4 0-2-1-3-3-3-1 0-3 0-5-1-1 0-2-1-3-1-2 1-8-3-10-6-1-1-4-3-6-5-3-1-6-3-6-3 0-1-2-1-4-1l-4-1 1-5c0-4 0-6-1-8-1-1-2-3-2-3 1-1 0-2-1-2-2-1-2-3 0-3 2-1 5-3 12-8 2-2 5-3 5-3 2 0 6-7 6-9 0-3 5-11 7-11 1-1 2 0 2 0 1 1 1 1 2 0 1-2 9-2 13-1s5 1 9-1c3-1 6-3 8-5 3-2 5-3 5-3 1 0 5-7 5-10 0-1 2-5 3-9 3-5 4-6 6-6s2-1 2-3c0-1 0-2 1-2 0 0 1-1 2-3s3-3 5-4c1-1 4-2 5-3 2 0 5-1 6-1 17 1 16 1 21-3s5-6 4-13c-1-3-1-5 0-5s1-1 0-1c0-1 1-2 2-3 4-2 5-6 5-12v-6h4c5 0 8-4 8-9-1-4 0-5 6-6 3-1 4-1 5 1l2 2 2-2c1-1 3-2 5-2 1 0 2-2 3-5 2-3 3-4 5-4s3-1 3-2 0-1 2 0c1 1 3 1 4 1 0-1 1 0 1 0 0 1 2 3 5 4s5 1 6 0c4-2 16 3 16 6 0 1 0 2 3 2h5c1 1 12-1 16-3 3-1 4-3 5-8 1-3 1-3 2-2 2 1 10 1 11 0 2-2 12-6 15-6 1 0 2 1 2 2 0 2 1 3 3 1h5c4 0 4 1 6 4 0 1 2 3 3 3 1 1 2 2 3 4 0 2 1 6 3 9 2 4 3 5 6 6 3 0 6-1 6-3 0-1 2-4 4-8 2-3 5-7 6-9s3-4 4-4c2 0 3-1 3-6 0-7-1-8-7-11-2-2-6-4-8-6-3-2-7-5-10-7-3-1-5-2-5-3-1 0-3-1-7-1-8 0-20-4-21-6 0-2-1-2-3-1-1 1-2 1-3 0 0-1-1-1-2-1 0 1-3 0-6 0-8-2-11-2-19 0zm-1574 8c-2 0-3 1-4 1 0 1-2 1-3 0-3-1-7-1-9 0 0 1-1 2-1 3 0 3-3 6-5 6s-3 2-3 3c-1 2-2 4-4 6-2 1-3 3-3 4s-1 2-4 2c-2 0-4-1-5-1 0-1-2-1-3 0h-6c-7 1-14 7-11 10 1 1 2 1 4-1 3-2 4-2 11-2 5 0 10-1 12-2 3 0 5-1 6 0s3 0 3-2c0-1 1-2 2-3s2-3 2-4 1-3 3-5c1-2 3-5 4-6 1-3 1-3 3-2 2 0 4 1 15 0 7 0 7 0 7 1s0 2 1 2 1-1 1-1c0-1 0-1 1 0 1 0 4 1 6 2 3 0 5 1 6 1 0 1 4 1 4 0 1 0 0-2-1-4s-2-3-4-3-4-1-6-2c-2-2-3-2-6-2-1 1-3 1-3 0-1-1-2-1-3 0-2 0-3 0-3-1-1-1-1-1-4 0zm46 23c-1 0-1 1 0 3 0 2 1 3 0 3-1 1 2 3 7 5 4 1 4 2 4 4s0 2 1 1 2-1 3-1c0 1 1 1 2 0 0-1 1-1 3-1 2 1 3 0 4-1 3-3-6-7-10-5 0 1-1 0-2-2-1-1-2-2-3-2-1 1-2 0-3-1-2-3-4-4-6-3zm-471 79c0 1-2 1-3 2h-4s-1 1-1 2c-1 1-2 2-2 1-3 0-8 2-9 4 0 1-1 2-2 2s-4 4-4 5c0 3 3 4 4 3s2-2 3-2 2-1 2-2l2-2c1 0 2-1 4-2 3-2 3-2 4 0 1 1 2 1 2 0 0-3 4-5 8-4 4 0 4-2 0-5-2-3-2-3-4-2zm-56 29c-2 1-3 2-3 2s-2 0-3 1c-2 2-2 2-1 5 0 3 0 4-1 4-1 1-2 2-2 3s-1 2-1 2c-2 2-2 9 0 15v3c1 1 2 3 3 5 3 3 3 4 3 7-1 3 0 4 1 6 1 1 2 3 1 3-1 2-1 4-1 7 0 2 0 3-2 3-1 0-2 1-3 2s-3 2-3 1c-2-1-5 4-5 7 1 7 2 10 6 11 2 0 4 1 4 0 2 0 1-3-1-4-1 0-2-2-2-4 0-3 9-12 12-11 2 0 2 0 2-3-1-2 0-4 0-5 1-1 0-4-1-7-2-3-3-6-3-8 0-1 0-2-1-3-2-1-4-7-4-11 0-2 0-5-1-5-1-2 3-15 5-15s2 0 1-1c-1-2 2-5 5-5 5 0 7-1 7-3 0-1-1-2-3-2-1-1-3-1-4-1-2-1-4 0-5 1zm-136 73c-1 4 6 12 10 12 1 0 2-1 3-1 0-1 2 0 3 2 2 1 4 2 5 2s1 1 1 2c-1 1-1 1 1 1 1-1 2 0 3 3 0 3 1 3 3 3s2 0 3-4c0-2-1-4-2-5 0-1-1-2 0-2 0-1-3-3-5-3-2 1-6-2-6-4s-3-3-4-2c-1 0-3 1-5 1s-4-1-5-3c-2-3-5-4-5-2zm89 26c-1 0-2 1-3 1-1-1-6 1-6 3-1 1-2 2-5 2-2 0-4-1-4-1 0-1-1-1-3 0h-7c-4-1-8 0-10 3s0 5 3 3c1-1 3-1 3 0 2 1 13 1 19 0 4-1 5-1 6 0 1 2 3 0 3-2 0 0 0-1 1-1s2-1 3-2 2-1 5 0c5 0 5-1 2-5-3-3-4-4-7-1zm226 81c-3 2-8 7-8 8 0 2-1 3-6 3-3 0-6 0-6 1s-1 2-1 2c-1 1-2 3-2 4-1 2-2 3-5 3-2 1-4 2-5 3-2 2-2 2-4 1s-3-2-3-1c-1 0-2 0-3-1-3-1-7 1-7 4 0 1-1 2-2 3l-3 3c0 2-1 3-2 3s-3 1-4 2c-4 2-3 4 1 5 3 0 12-5 12-7 0 0 1-1 1-2 1-1 2-2 1-3 0-1 1-1 8-1 4 0 6 1 7 2s1 1 3-1c1-1 2-2 3-2s7-6 8-10 2-4 5-3c6 0 9-1 11-5 1-3 1-3 3-3 1 0 4 0 7 1 2 0 4 1 4 2 0 0 1 1 2 1 3 0 5 3 4 7-1 2 3 7 4 6 1 0 1 0 1 1s2 1 4 2c3 0 4 1 5 2 1 2 2 3 3 4s2 3 2 4c0 2 1 4 2 5 1 2 2 2 6 2 5-1 5 0 6 1 0 2 2 3 4 0 1 0 2-1 3-1 2 0 9-6 15-12 4-3 5-4 9-4 16-1 24-2 25-3 1 0 2-1 4-1 1 0 2 0 2-1-1-1 0-3 2-4 2-2 2-3 2-6-1-3-1-4 1-4 2-1 3-4 1-6-1-1-1-1-2 0s-3 1-4 1c-2 0-3 1-3 4s0 5-2 6c-1 2-2 4-2 5 0 2-1 2-5 2-2 0-4-1-5-1-1-1-5 0-7 1 0 1-2 1-4 1-2-1-3 0-4 0 0 1-1 1-2 1-1-1-3 1-6 4-2 2-5 4-6 4-2 0-3 1-4 3-2 2-3 3-6 2-2 0-4 0-5 1-2 3-9 2-8-1 0-1-1-3-2-5-2-1-4-3-4-5l-2-2c-1 0-2 0-2-1s-2-1-5-1-5-1-6-1c-1-2 0-6 1-6s-4-9-6-12c-2-1-2-1-5 0-1 1-2 1-3 0-1 0-2-1-3-1s-3-1-3-2c-2-2-2-2-5-1z"
	fill-opacity="0.8"
	fill="#bc8546"
	/>

<path id="ridges4" d="M620 44c0 1-1 1-2 1 0-1-2 0-3 1-1 0-2 1-3 0-2 0-2 0-2 2 0 1 0 2-1 2-1 1-1 2-1 3s-1 2-2 2c-1 1-1 2-1 3 1 1 0 2 0 3-2 2-1 7 0 7s2-3 4-7c1-3 3-6 3-6l1-1c-2 0 2-4 4-5s2-1 4 1c1 1 1 1 2 0 0-2 1-2 3-1 6 1 11 6 14 12 3 5 4 6 7 8 4 2 4 2 8 0 2-1 4-2 5-4 1-1 1-2 3-1 1 0 3 1 4 2s1 1 2 0c0-2 3-3 3 0 0 2 4 8 6 9 3 0 13 2 17 2 2 1 4 1 5 1 1 1 5 1 9 1s7 0 7 1c0 2 3 1 3 0 1-1 4-3 7-5 8-4 13-7 13-10 0-2-2-1-4 1-1 1-3 2-5 3-2 0-3 1-3 1 0 1-12 5-17 5-3 1-4 1-5 0s-4-2-6-2-6-1-8-1c-2-1-3-1-4 0-3 3-11-2-11-6 0-5-2-6-10-6-5-1-8 0-9 0 0 0-1 2-1 3s-1 3-2 3c-3 0-7-1-7-2s-1-2-1-2c-1-1-2-2-2-3 0-3-10-12-16-14-5-2-7-2-8-1zm-53 2c-1 1-20 2-24 1-1-1-2-1-2 1s-5 7-8 7c-1 0-2 0-3 1 0 1-1 1-3 1-1-1-2 0-3 1-1 0-4 2-7 3-4 1-7 3-7 3s-3 2-5 3-5 3-7 4c-1 1-2 2-3 2s-2 1-3 1c0 1-2 1-4 1s-3 1-3 2c-1 1-9 2-11 0s-8-2-9-1-2 2-3 2c-2 0-7 5-7 7s-3 4-6 4c-1 0-3 1-5 1-1 1-3 2-8 1-5 0-6 0-6 2s-6 6-8 5c-1-1-2 0-3 1-1 0-2 1-3 1l-2 2c-2 5-11 13-15 12-1 0-3 1-4 4-3 4-9 8-12 7-2-1-3-1-3 0 0 2-7 5-9 5-2-1-9 2-9 4-1 2-3 4-5 6-3 2-5 4-5 5s-6 3-9 3-7 2-9 5c0 1-2 2-3 2s-2 1-2 2-1 2-4 2h-6c-1-1-6 2-6 4 0 1 0 3-1 4-1 3 2 3 4-1 1-3 2-3 4-3 6 1 11-1 16-6 3-3 4-4 5-3 0 1 2 1 2-1 0 0 1-1 3-1 4 0 8-3 13-10 3-4 6-6 8-7 1 0 3 0 5-1h2c1 0 2-1 4-1 8-5 19-9 21-9 1 0 1-1 1-3s1-3 3-3c3-1 5-3 11-10 4-4 6-6 12-6l4-4c4-2 5-3 10-3 3 0 5 1 5 1 0 2 3 1 4-1l1-1c3 0 7-4 9-8 0-2 2-4 3-5 2-1 7-1 12 0 5 2 11 1 19-3 5-3 7-3 8-2 2 1 3 0 3-2 0-3 16-12 24-13 4-1 7-2 8-3 1 0 2-1 3-1 0 0 2-1 3-3 3-2 4-3 7-3s4 0 4 1c0 2 3 3 4 1 0-1 1-1 3-1 4 0 16-4 17-6 0-1-8-1-10 0zm484 118c-1 2-9 3-11 1-1-1-7 0-7 1 0 3 0 5-3 6-3 2-6 1-7-1-1-1-2-1-2 0-1 0-2 0-2-1-3-1-9-3-11-3-1 1-2 2-2 3l-2 2c-1 0-2 1-2 2 0 4-10 4-11-1 0-1-1-2-1-2s-1 0-2-1c-2-1-8 0-8 2 0 0 1 1 3 1s4 2 8 6c2 4 12 2 15-3 2-2 3-3 4-2s1 1 2 0c0-2 1-2 4 0 3 0 6 1 8 2 4 2 8 1 10-3l2-4h9c9 0 12 1 18 6 1 1 3 1 3 0 0 0 1-1 2 0 2 0 14-2 17-4l2-2c0-1-10 0-12 1s-5 1-7 0-4-1-6-1-3 0-4-1c0-1-1-2-3-2-1-1-2-1-2-2 0-2-2-1-2 0zm207 11c-3 0-9 4-11 6-2 3-9 6-12 5-2 0-3 0-3 1-1 2-9 3-11 2-1-1-5-1-8-1-4-1-9-1-12-2-6-2-20-2-23 0-1 0-5 1-8 1-5-1-7 0-7 1 0 2-7 4-10 4-4-1-8-5-6-7 1-2-1-4-4-4-2 0-3 1-1 2 0 1 1 3 1 5 0 8 10 11 20 5 7-4 14-4 16-1 1 1 1 1 2 0 4-4 10-4 33 0 13 2 17 2 28-3 4-2 7-3 9-3 1 0 2-1 2-2s2-3 3-4c3-1 4-1 8 0 2 1 5 1 6 1 0 1 1 1 2 1 10 4 20 6 31 6l12 2c0 1 3 1 3 0 1-1 9-4 18-7 6-1 6-1 15 2 13 4 25 4 33 0 1-1 2-2 3-1 1 2 2 1 2-1 0-1 1-3 2-3 3-1 3-1 8 2 2 3 5 4 6 4 1-1 0-2-4-6-2-2-6-4-7-5-3 0-8 2-11 5-2 2-3 3-4 3 0-1-1-1-1 0-1 1-8 1-8 0-1-1-1-1-2 0 0 2-9 1-11-1-1 0-3-1-4-1-2 0-3 0-3-1-1-1-19 0-21 1-1 0-2 1-2 1-1 0-4 0-8 1-9 2-16 2-18 0-1-1-1-1-2 0 0 2-9 1-11-1-1 0-3-1-5-1s-3 0-3-1c-1 0-3-1-5 0-1 0-4 0-4-1-3-2-11-5-13-4zm-952 13c-2 1-3 7-1 7 1 1 11 13 11 14 0 2-8 7-12 7-1-1-2-1-2 0 0 2-6 3-16 3-4-1-7 0-8 1-1 0-2 1-3 1-3 0-11 4-12 6 0 1-1 2-1 2l-2 2c-2 7-12 15-17 15-1 0-2 1-1 6 0 4 0 7-1 8-1 0-1 1 0 2 1 2 1 3 1 4s5 3 6 2 1-1 0-2c-2-1-2-3-2-8v-8c1-2 11-6 14-6 1 0 2-1 2-3 0-4 5-13 9-15 3-2 5-3 14-3 12 0 18-1 25-4 5-3 10-8 10-11 0-1 1-2 1-2 1-1 1-1 0-2-2-1-5-4-8-7-5-5-6-6-5-8 2-2 0-4-2-1zm735 12c-2 0-6 6-6 8 0 0 0 1-1 1s-1 1-1 2-1 1-2 1c-1-1-2-1-2 1 0 1-1 3-2 3-4 2-5 4-4 5 0 2 3 3 3 1 0 0 1-1 2-1 1-1 4-3 6-6 3-3 5-5 5-4 2 0 3-1 2-2-1-2 0-6 3-6 1-1 2-2 2-3s-1-1-5 0zm110 16c-1 1-2 2-3 2-1-1-7 5-7 6s3 1 5-1c2 0 3-1 4-1s2 0 2-1l1-1c1-1 2 0 1 1 0 1 2 2 3 0 0-1 1-1 3 0 2 2 6 2 6 1 0-2-3-5-4-4 0 1-1 0-2-1-1-2-3-2-4-2h-3c0-1-1 0-2 1zm121 1c0 1 2 2 4 2 5 2 8 4 13 6 2 2 6 3 8 3 3 1 7 2 9 3s6 2 7 2c3 0 3 0 2 1-1 2-1 2 1 2 1 0 2 1 3 2s3 3 5 4c4 3 7 6 7 9s4 7 6 7c3 0 3-1 0-4-2-1-3-4-3-6-1-4-3-7-8-9-1-1-3-3-4-5-1-3-5-5-10-5-3 0-5-1-6-4-1-2-1-2-3-1-2 2-12-1-13-3-1-1-3-2-4-2-2 0-3-1-4-2s-10-2-10 0zm-364 2c-1 0-1 3 0 3s3 1 5 3c1 1 3 2 4 3 0 0 3 1 6 1 5 0 6 1 9 4 4 4 8 6 11 6 1 0 4 2 6 4 2 3 5 4 9 5 3 1 6 2 7 2 0-1 1-1 1 0 1 0 3 0 6-1 8-3 13-4 13-2s3 3 4 0c0 0 1-1 2-1s3-2 5-4 4-4 6-4c4-2 6-6 5-6 0-1-2 0-3 0-1 1-4 2-5 2-1 1-3 3-5 4-2 3-3 3-9 4h-9c-2 0-3 1-3 1 0 2-8 4-9 2 0-1-2-1-3-1-1 1-2 1-2 0-1-1-2-1-3-1-4 0-6-1-6-2 0-2-5-7-6-6-3 1-6-2-8-6s-3-5-5-5-4 0-5 1c-1 2-9 0-9-3 0 0-1-1-2-1s-2-1-2-2c-1-1-2-1-5 0zm575 14c-1 0-3 1-4 1s-2 0-2 1c-1 1 2 3 4 2 1 0 2 1 3 1 2 2 3 2 5 1 1-1 1-2 0-3s-2-3-2-3c0-2-1-2-4 0zm-26 13c-2 1-4 3-4 3 0 1-1 2-2 2-1 2-1 10 2 14 1 2 1 3 0 5-1 1-1 1 1 1s2 0 0 5c-1 3-1 6 1 6 1 0 2-2 2-3s1-2 2-3c2-2 1-6-1-9-1 0-1-3-1-5 0-1-1-3-2-3-1-1 0-7 2-7 0 0 1 0 1-1s1-2 2-3c2-2 3-5 1-5 0 0-2 1-4 3zm2 35c0 1 5 7 6 6 0-1-3-7-4-7s-1 0-2 1zM242 295c-2 4-3 6-3 11 0 4 1 8 1 9 1 1 1 1 0 1-1 1-3 1-5 2h-3c0-1 0-1-1-1s-1 1-1 1c0 1-1 2-1 2-3 0-15 6-16 7s-1 3-1 5c-1 5-5 7-9 4-2-1-10 0-13 2l-7 7c-2 3-5 5-6 5-2 0-4 13-2 15 0 1 1 3 0 5 0 3 0 4 2 7 2 2 3 2 4 1 0-1-1-3-1-4-2-2-2-3 0-5s2-3 1-3c-3 0-3-6-1-9 1-1 2-3 2-4 0-2 7-9 9-9 1 0 2-1 2-2 1-2 2-2 5-2s5 1 6 1c1 2 2 2 5 1 3-2 6-5 6-10 1-3 5-6 15-8 2 0 4-1 4-1 1-1 3-2 6-2 6-1 7-1 5-6-2-4-2-13 0-16 1-1 1-2 1-2-1 0-1-1 0-2 2-3 2-4 0-4-1 0-2 2-4 4zm1218 3c-5 5-7 10-4 16 2 5 5 8 9 10 1 0 2 1 2 2 0 2 0 2 2 1s2-1 6 2c2 3 5 4 6 4 4 0 4-2 1-3-2 0-4-2-5-4-3-4-5-5-8-5-1-1-3-1-4-2-2-1-3-1-3-3 1-1 0-2-1-2-2-1-3-6-1-7 0-1 1-2 0-3 0-1 0-2 1-2 2 0 4-5 3-6 0-1-2 0-4 2zm482 17c-1 1-3 2-5 2-1 0-2 0-2 1s0 1-1 1-3 2-5 3c-1 2-3 4-3 5s-1 1-1 1c-1 0-2 1-3 2s-3 2-4 1c-1 0-2 0-2 1 0 2-6 6-8 6-1-1-2 0-3 1-1 0-2 1-3 1 0-1-2 0-3 1s-4 2-5 2c-6 1-7 1-9 1-3 1-14 4-18 4-1 0-4-1-4-1-1-1-3-2-3-1-4 1-9-6-7-9 1 0 1-2 1-3-1-1-1-2 0-2 1-1 1-2 0-4-3-6-6-7-18-8-6 0-11 0-11-1-2-1-4-1-3 0 0 1-3 1-10 1-4 0-4 0-4 4 0 3 0 4-3 6-2 2-4 3-5 3s-2 0-2 1c0 0-2 1-4 1-2 1-5 3-8 6-3 4-4 4-7 4-2-1-3-1-3 0s-4 1-7-1c-1 0-2 0-2 1 0 2-4 9-5 9s-1 1-1 1c0 3 3 2 7-2 3-3 4-4 7-3 4 0 7-1 11-4 2-2 4-3 5-2 2 0 2 0 2-2 0-1 1-2 4-3 2-1 4-2 5-2s7-5 8-8c2-4 3-5 14-5 9 0 10 0 10 1 0 2 2 3 3 1s10-1 12 1 2 2 1 5c-3 5-2 11 2 14 5 4 7 5 15 6 3 0 7 1 7 1 1 1 1 1 2 0 2-2 8-4 15-6 2 0 7-2 11-3s8-2 9-2c1-1 5-3 10-7 6-4 8-6 10-5 2 0 2 0 2-2-1-2 3-7 6-7 2 0 7-5 7-7 0-3-2-2-4 1zm-242-1c-1 0-1 2-2 4-1 3-2 5-5 6-1 0-3 1-3 2 0 0-1 1-2 1-9 2-12 3-13 5-2 0-3 1-4 1s-2 0-2 1-5 3-7 2c-2 0-2 0-2 2 0 1-1 2-3 3s-3 2-3 2-1 1-3 2c-2 0-3 2-3 2 0 3-3 4-4 3s-3-1-5-1c-3 0-3 0-4-2 0-2-1-2-2-2s-4-1-6-1c-1-1-3-2-4-2 0 1-2 1-3 0-1 0-5-2-8-3-4-1-8-3-9-4s-2-1-3-1-2 0-4-2-2-2-4-1c-2 2-7 0-8-3-2-2-3-3-5-2 0 1-2 1-4 0-3 0-4 0-5 2-1 1-4 3-7 4l-6 4c0 2-6 4-10 5-2 0-4 1-6 2-1 1-2 2-3 2s-2 1-2 2c-1 0-3 1-5 1-2 1-4 1-4 2 0 2-1 3-7 4-4 0-5 0-6-1s-3-2-4-2c-2 0-3-1-4-4-1-2-2-4-2-5s-1-2-1-2c-3 0-3 8 0 11 1 2 8 6 11 6 1 0 3 0 4 1 2 1 10-2 19-8 5-3 6-3 7-2 2 1 2 1 3-1 0-1 1-2 4-2 1-1 5-3 8-6 3-2 6-4 7-4 0 0 2-1 3-2 2-2 4-3 7-3 2 1 4 1 4 2 1 1 4 3 10 3 6 1 16 6 16 8 0 1 0 1 2 1 1 0 4 0 7 1 2 0 7 1 11 2s6 2 6 3c0 2 6 4 11 4 3 0 5-1 8-4 2-1 4-3 5-3 0 0 1-1 2-1 1-2 5-4 13-8 3-2 4-2 6-1s2 1 3-1c0-1 1-2 3-2 4-2 15-8 17-11 2-4 3-8 1-9 0-1-1-1-1 0zm363 5c-3 0-5 1-5 1s-4 2-7 4c-4 2-9 4-11 6-1 1-3 2-4 2 0 0-2 2-3 4l-3 3c-1 0-2 1-3 2 0 1-3 3-7 5s-7 4-8 5-2 2-3 2c-2 0-3 1-4 2-1 0-2 2-4 2-3 1-3 3 0 3s15-6 17-8c1-1 2-2 3-2s2-1 3-2c1 0 2-1 3-1 2 0 5-3 8-8s6-6 9-5c2 0 3 0 3-1s1-3 3-3c2-1 5-3 6-4 2-2 7-3 10-4 7-1 8-1 7-3-1-1-3-1-10 0zM187 413c-3 4-6 11-4 11 1 1 1 2 1 3 0 2 6 10 11 13 2 1 4 3 5 5 1 1 2 2 3 2 4 0 8-1 8-3 0 0 0-1 1-2 1 0 12 2 17 4 2 1 4 3 5 3s2 2 2 4c0 3 3 5 6 5 2 0 1-3 0-3-1-1-2-2-2-3 0-4-6-10-11-10-1 0-3-1-4-2 0 0-3-1-4-1-2 0-5 0-7-1-2 0-4 1-6 2-4 3-4 3-6 1 0-1-2-3-3-3 0-1-1-3 0-3 0-2 0-2-3-2-2 0-3-1-6-4-4-5-4-9-1-14 1-1 2-3 2-3 0-2-3-1-4 1zm2233 112c-5 1-9 3-10 3-2 2-13 1-16 0-3-2-4-2-5-1s-5 3-9 5c-5 2-8 4-10 6-1 2-3 3-3 3-1 0-3-2-6-4-4-3-4-3-12-3s-10 0-10-4c0-1-1-1-2-1s-4-1-6-2c-3-2-4-2-8-2-2 1-10 1-17 2h-14c-1 0-6 3-12 6-6 4-11 6-11 5-2 0-2 0-2 2s-6 7-12 10c-3 1-7 3-9 5-3 2-6 3-7 4-3 1-10 8-10 9 0 2-5 9-7 9-1 1-2 0-2 0-1-1-1-1-2 0-2 2-4 2-12 3-9 0-10 0-13 4-4 3-5 6-7 17-1 6-2 7-6 12-3 3-6 5-7 5s-1 0-1 2c-1 4-3 6-9 6-3 0-7 1-9 2-3 1-7 2-10 2s-9 1-12 2c-12 2-16 2-16 1 0-2-3-1-3 0-1 1-3 3-5 4s-4 3-5 3c-1 1-3 1-6-2-5-3-9-4-13-2s-12 8-12 9-1 3-2 5c-2 2-4 6-4 9-1 4-2 5-3 5-2 0-3 2-1 3 1 0 0 1-1 3-3 3-6 12-5 17 1 2 2 6 2 9 2 5 2 9 2 17-1 6-1 13 0 15 1 3 0 5 0 5-2 1 0 3 1 3 2 0 4 4 4 6 0 0-3 1-7 1l-7 1-5 5-6 6h-16c0-2-3-1-3 1l-2 2c-1 0-6 5-10 10-2 3-2 4-3 15 0 6-1 11-2 12 0 1-2 6-3 12-1 7-2 12-3 13s-1 1 0 3c1 1 2 3 3 4 0 2 1 5 2 6 2 3 1 6-5 9-9 5-12 9-15 14-1 3-4 6-5 7-2 1-2 1-3-1-2-1-2-1-3 0 0 1-3 2-8 3-10 1-14 3-17 9-2 3-3 6-3 7s-1 2-3 2c-1 1-5 4-7 6-5 5-7 10-5 16 0 3 1 6 0 7 0 1 0 2 1 2 2 0 9 8 10 12 0 1-1 3-2 5-3 5-5 11-3 16 0 2 0 4 1 5 0 3 10 10 13 10 2 0 4 2 2 3s7 9 14 12 13 4 13 2c2-2 12 3 12 5s4 4 8 4c2 0 3 0 1-1s-7-6-7-8c0-1-1-1-2-1 0 0-3-1-5-3-4-3-5-3-5 0-1 2-1 2-4 1-2 0-5-1-6-1-1-1-3-1-3-1-3-1-7-5-10-9-2-4-3-6-6-7-2 0-3-1-3-2s-1-1-2-1c-3 1-7-5-7-11-1-3 0-5 0-6 1 0 1-1 1-3 0-1 1-3 2-4 1-2 2-9 0-10l-1-1c0-1-1-3-2-4-1-2-3-5-4-6-4-5-4-14 0-14 0 0 1-1 1-2 0-3 6-7 8-7s5-6 4-9c0-1 1-3 3-5 3-4 4-4 13-4 10 0 15-1 18-4 1-1 2-2 3-2 2 0 2 0 2-2-1-2 3-9 6-10 1 0 2-1 3-2 0-1 1-2 2-2s3-1 3-2c1-2 3-3 3-3 2 0 4-4 4-7 0-1 0-2-1-2 0 0-1-2-2-5 0-3 0-6-1-8-1-4 1-11 3-13 1-1 1-1 0-2-1-2 0-5 2-11 1-1 1-9 0-13-1-3 0-7 3-10 1-1 2-2 2-3s6-5 10-7c5-3 11-3 14-1 2 1 2 1 4 0 4-3 7-7 7-8s1-2 2-3c1 0 2-1 3-2s4-1 8-1c6 0 7-1 7-3s-2-11-4-13-2-10 0-12c1-1 1-2 0-2s-1-2-1-7c1-4 0-7 0-8-1 0-1-1 0-1 0-1-1-3-2-5-4-5-3-17 2-23 3-2 4-5 4-9 1-3 2-6 3-7 2-1 2-2 2-3 0-2 5-9 7-9 0 0 2-1 2-2 3-4 11-4 14-1 0 1 2 2 4 3s3 1 7-1c2-2 5-3 5-3 1 0 3-1 4-1 4-2 12-3 14-2 1 1 1 1 2 0 1-2 4-2 10-2 6-1 9-1 11-3s4-2 11-3c6 0 7 0 10-3 2-1 3-3 4-4 1-4 8-10 9-9 2 0 2-1 2-3 0-6 1-8 2-9 0-1 1-6 1-11s5-7 16-6c7 0 10 0 12-1l4-2c1 0 2-1 3-3 1-1 3-2 4-2s1-1 1-2c-1-2 5-10 6-9 1 0 2-1 2-2 1-1 2-2 3-2s2-1 3-2 5-4 8-5c7-3 18-9 19-12l2-2c1 0 3-1 4-2 1 0 2-1 4-1s3-1 3-1c0-2 5-4 10-5 5 0 8-1 12-2h3c1 1 7 2 10 1 4-1 10 0 10 2 0 0 2 2 4 3l4 2c0 1 1 1 2 1s3 0 4 1c2 1 2 1 3 0 1-2 9 0 11 2 1 0 1 1 0 1 0 0 1 1 3 2 5 2 5 2 10-3 1-2 3-3 4-3s2-1 3-1c1-1 2-1 3-2 1 0 4-1 7-1 7-2 13-2 16 1 2 1 2 1 3 0 1-2 7-4 9-4 1 0 2-1 3-2 1 0 2-1 3-1s3-1 4-2c2-2 8-1 21 3 4 1 8 2 10 2s4 0 4 1c1 0 2 1 3 1s3 1 4 1c0 1 3 2 6 2 4 0 6 0 7 1 0 2 2 2 3 1 2 0 3 0 3 1 1 1 2 1 4 1s3 1 5 3c5 6 7 8 8 8 2 0 5 3 5 6 0 4-4 14-7 17-2 1-3 3-3 4l-3 6-3 2-3-3c-2-1-3-4-3-5l-2-4c-1-1-2-3-2-4l-1-1c-1-1-2-2-3-4-1-3-2-4-7-5-7-2-22-2-22 0-1 2-10 5-11 3-1-1-3-1-5 0-3 0-3 1-3 3 1 2 0 3-2 6s-3 3-9 3-16-2-18-4c-1 0-2-1-2-1-3 0-5-1-5-2 0 0-2-1-4 0-6 0-10-1-10-2 0-2-4-3-6-2-1 1-3 1-4 0-2-1-2-1-3 0 0 1-1 2-4 2-1 0-3 0-3 1s-1 2-1 3c-1 0-2 1-2 2-1 2-13 4-20 4-1 0-2 1-2 2 0 6-1 10-3 10-1 0-2 1-3 1-1 1-2 2-2 1-3 0-4 4-4 9 0 3 0 5-1 5 0 1-1 2 0 3l-2 2c-6 1-8 4-6 6 1 1 1 2 1 4 0 1 0 2 1 2 1 1 1 5 0 6s-2 3-2 3c0 2-10 5-11 3-2-1-8-1-11 1-1 1-5 2-8 3s-5 2-6 3l-1 1c-2 0-9 8-9 10 0 0-1 1-1 2-1 1-2 2-1 2 0 1-1 2-2 4-2 1-3 3-2 3 0 2-4 11-5 11 0-1-1 0-2 1 0 1-2 4-4 6-4 4-4 4-10 4-3-1-9-1-13-2h-7l-4 4c-2 3-5 5-6 5s-1 1-1 2c1 2-3 10-5 10l-2 2c0 1-1 2-1 2-1 0-3 1-4 3-3 4-8 6-13 6-1 0-2 0-2 1 1 0 1 1 0 2-2 1 0 4 5 8 3 2 3 3 3 7 0 3 0 4-1 5-1 0-2 1-2 1 0 2 4 4 7 4l2 2c0 1 1 1 2 1 2-1 3 0 4 1 1 0 3 1 3 0 1 0 6 2 6 3v2c0 1 2 3 4 4s4 3 4 4c0 0 1 1 2 1 2 0 12 4 12 5s2 1 4 1 3 1 4 2c0 0 1 1 2 1 2 0 6 9 5 10-2 4-5 6-7 6s-3 0-3 2c0 4-3 6-8 6-2 0-5 1-6 1-3 2-7 6-7 8 0 3-1 5-5 7-2 1-4 2-5 2-2-1-2 0-2 5s0 7 1 8c0 0 1 2 1 3s1 2 2 3c2 1 2 7-2 14-4 8-3 13 1 14 1 1 2 2 3 2 0 1 1 2 2 2 1 1 2 2 3 4 0 2 1 3 2 3 0-1 2 1 4 3 3 4 4 11 0 15-1 1-2 2-2 3 0 0-1 1-2 1-5 2-11 5-12 7-2 3-5 9-6 16-1 3-3 6-3 7-2 0-1 2 0 2 2 0 5 7 5 10-1 1-1 3-1 4-1 2-8 10-10 10-1 0-2 0-2 1-1 0-2 1-4 2-3 0-3 0-2 6 0 3 1 7 2 8 2 6 1 14-3 14-1 0-2 1-2 1 0 1-1 3-3 4l-3 3h2c4 0 10-3 12-7 1-2 1-6 1-9s1-6 1-6c2 0 1-2-1-3 0-1-1-3-2-5-1-3-1-3 5-6 3-2 8-5 10-8 3-4 4-5 4-9 0-3-1-7-2-9-2-4-2-5-1-8s2-4 3-4c2 0 2-1 1-3-1-1 1-7 4-10 0-1 3-3 6-4 10-5 14-11 12-20-1-3-3-5-10-12-5-5-7-8-7-9s0-2-1-1c-3 0-2-2 0-9 2-6 3-7 2-12 0-3-1-6-2-7s-1-4-2-6c0-4 1-4 4-6 2-1 5-3 6-5s2-3 3-3 1-1 1-2c-1-3 3-6 7-6 5 0 8-2 9-5 0-2 2-3 2-3 4 0 10-4 11-7 0-1 0-3 1-5 0-1-1-3-2-4s-2-4-2-5c-1-3-7-6-10-6-4 0-7-2-7-4s0-2-3-2c-1 1-4 0-6-1s-5-2-6-3c-2-1-4-3-5-4-1-3-3-4-13-8-2-1-3-2-3-2 0-1-1-1-1-1-2 1-2 0-1-4 0-4 0-6-1-8-1-1-2-3-1-4 0-2 0-2-2-1-2 0-3 0-3-1-1-1 0-2 1-2 4 0 24-15 24-19 0-1 1-3 3-6 2-5 5-7 6-5 0 1 2 1 2 0 0-2 6-3 12-2 8 2 13 0 20-7s8-8 8-11c1-2 2-4 5-11 1-4 2-5 4-5s2 0 2-2c-1-2 4-7 10-11 5-2 7-2 16-2 15-1 20-4 19-15-1-4 0-6 0-6 1-1 1-1 0-2s-1-1 0-2c1 0 2-1 4-3s2-3 2-8 0-7 1-7c8-2 11-5 11-10 1-4 2-5 7-6 3 0 4 0 4 1 0 2 1 2 3 0 1 0 3-2 5-2 1-1 4-3 4-5 2-3 7-5 11-5 2 0 5 1 7 2 3 2 6 3 10 3 7 0 13 3 14 5 0 1 2 1 10 1 10 0 11 0 15-2l4-4c0-1 0-2 1-3v-2c0-1 1-1 5-1 4 1 6 0 8-1 8-4 16-5 16-3s1 2 3 1c0-1 2-1 4 0 3 0 5 1 7 4 1 2 3 4 3 4 1 0 1 2 2 4 0 2 2 6 4 8 2 4 4 5 6 5 4 1 6-1 14-14 3-5 6-10 7-10s1-1 1-5c0-7-2-9-7-12-2-1-6-4-8-6-4-5-6-6-15-8-19-5-27-7-26-8 0-1-2-2-3-1s-4 0-11-1c-11-2-16-2-25 1zm-1580 9h-3c-1 0-2 2-2 3-1 3-5 9-7 9-1 0-1 0-1 1 1 0-1 3-4 6-4 5-6 6-9 7-3 0-4 0-5-1s-1-1-3 0h-5c-3-1-5-1-5 0s-1 1-1 1c-2 0-6 7-5 7 0 1 2 0 4-2 3-2 5-2 10-1 4 0 9 0 11-1 3-1 6-1 7-1 3 0 4-1 4-3 0-1 1-3 2-4 1-2 2-3 2-4s1-3 3-5 4-4 5-6c0-1 1-1 2-1h12c8 0 10 1 10 2s2 1 2 0c1-1 11 2 14 4 1 1 1 1 2 0s1-2-1-3c-2-2-4-3-4-3-1 0-3-1-6-2s-5-2-9-1c-3 0-6-1-7-1-1-1-1-1-2 0-2 1-7 1-9-1-1 0-2-1-2 0zm56 21c-1 0 0 3 1 5 2 4 3 5 7 7 3 1 4 2 4 3 0 2 2 3 2 1 0-1 3-1 6-1 4 0 6-1 6-2 0-2-1-2-6-3-8 0-9-1-9-3 0-1-1-1-2-1-2 1-2 1-3-1-1-3-6-6-6-5zm-474 82c-2 1-4 2-4 3 0 0-1 1-2 1l-1 1c0 1-1 1-2 1-2-1-3 0-3 0 0 2-3 5-4 4-1 0-2 1-3 2-1 2-1 2 0 4 2 1 2 1 3 0 0-1 2-2 3-2 1-1 4-3 6-4 3-3 4-3 5-2 2 1 2 1 2-1s3-3 7-3c5 1 5-2 0-3-2-1-3-2-3-2s-2 1-4 1zm-53 28c-3 1-5 5-5 10-1 4-1 6-3 7s-2 2-1 6c1 2 1 4 0 5-1 0 0 1 0 3 1 1 2 2 1 3 0 0 0 1 1 2 2 0 5 8 5 12 0 1 1 2 1 2 1 0 1 7 0 11-2 4-7 10-9 9-2 0-4 3-3 5 0 1 0 2-1 2-2 1 4 6 7 7 4 0 4-1 1-3-2-1-3-3-3-3 0-2 11-13 13-12 0 0 1-2 1-6-1-8-2-13-6-22s-4-14-2-22c2-4 3-7 4-7s1-2 0-2-1-1 0-2 3-2 6-2c4 0 6-1 6-2 0-2-1-2-5-2-3 0-6 1-8 1zm-135 70c-3 3 2 11 8 12 2 0 3 1 3 1 0 1 0 1 1 0s2 0 4 2l4 2c1 0 1 1 1 1 0 1 0 2 1 2s1 0 1-1c0-2 2-1 2 2 1 5 4 7 5 5 1-1 1-1 0-2 0-1-1-3-1-5 0-3-1-4-2-5-2-1-3-1-4-1-3 1-6-2-6-5 0-2 0-2-1-1-4 3-14-1-14-6 0-1-1-2-2-1zm85 30c-2 1-5 3-6 4s-2 1-3 1c0-1-1-1-1 0-1 2-5 1-5-1-1-1-1-1-2 0-2 1-6 1-8 0-2-2-7 0-8 3-2 2-1 4 1 2 2-1 4-1 10 0s8 1 13 0c3-1 6-1 6-1 0 2 2 1 2-1 1-3 6-5 9-4 6 2 7-1 1-3-4-2-4-2-9 0zm231 81s-2 2-4 3l-4 4c-1 2-2 2-4 2h-4c0-1-1-1-2-1s-2 1-2 2c0 3-2 8-4 8-1 1-2 1-3 2-6 4-12 5-19 2-1 0-2 0-2 1s-1 3-3 5-4 4-4 5c-1 1-3 2-5 3-6 2-6 4-1 4s8-2 14-10c2-3 3-3 8-2 3 0 6 1 6 1 2 1 3 1 4-2 0-1 2-2 2-2 3 0 10-8 10-10s1-2 5-2c5 0 6-1 11-6 1-1 2-2 3-1 1 0 3 0 6 1 2 0 4 1 4 2 0 0 0 1 1 1s1 0 1-1 1-1 1 0c1 0 2 2 3 6 0 5 1 6 3 8 2 1 5 2 7 3 4 0 4 1 6 5 1 2 2 5 2 5 0 1 1 3 2 4 2 3 3 3 8 3 4-1 5-1 5 1 0 1 1 1 4-1 1-1 3-2 4-2s9-5 14-9c4-4 7-6 11-6h13c7 0 9-1 11-3 1-1 3-1 4-1s2 0 2-1 0-1-1-1 0-1 1-3 2-4 2-6c0-1 1-4 3-5 2-2 2-3 1-4s-1-1-3 1c-1 1-3 2-3 2-1 0-2 1-2 4 0 2-1 4-2 6-1 1-3 3-3 4-1 2-3 3-6 3-2 0-5 0-6-1s-1-1-3 0c0 1-3 1-6 1h-6c0 1-1 1-1 1-1 0-3 1-6 3l-6 6c-2 1-3 2-3 2 0 1-1 1-2 1s-2 0-2 1c-1 1-2 1-4 1-1 0-4 1-8 1-3 1-6 2-6 1-1 0-1-2-1-3 1-2 1-3 0-3s-5-7-5-9c0 0-1-1-2-1s-2 0-2-1c-1 0-3-1-5 0-4 0-6-2-6-8 0-4-1-8-4-10-1 0-4 0-7-1-4 0-6 0-7-2-2-1-3-2-3-1z"
	fill="#642"
	/>

<g id="passes" fill="#6e4d1c">
<use href="#pass_path" transform="matrix(-21.757498,-12.312499,-12.312499,21.757498,1491.9805,330.90107)"/>
<use href="#pass_path" transform="matrix(21.757498,12.312499,12.312499,-21.757498,1491.2664,344.87818)"/>
<use href="#pass_path" transform="matrix(.044999999,-25,-25,-.044999999,1465.595,283.03327)"/>
<use href="#pass_path" transform="matrix(-.044999999,25,25,.044999999,1453.0685,289.2721)"/>
<use href="#pass_path" transform="matrix(21.9975,-11.88,-11.88,-21.9975,1475.8245,246.07239)"/>
<use href="#pass_path" transform="matrix(-21.9975,11.88,11.88,21.9975,1464.3682,238.03607)"/>
<use href="#pass_path" transform="matrix(.39749999,-24.9975,-24.9975,-.39749999,1160.4303,197.00934)"/>
<use href="#pass_path" transform="matrix(-.39749999,24.9975,24.9975,.39749999,1147.8174,203.07105)"/>
<use href="#pass_path" transform="matrix(-4.4223959,-24.608227,-24.608227,4.4223959,1036.8424,180.16693)"/>
<use href="#pass_path" transform="matrix(4.4223959,24.608227,24.608227,-4.4223959,1025.6316,188.54413)"/>
<use href="#pass_path" transform="matrix(-20.365,14.5,14.5,20.365,1007.66549,222.79975)"/>
<use href="#pass_path" transform="matrix(20.365,-14.5,-14.5,-20.365,1020.02517,229.362)"/>
<use href="#pass_path" transform="matrix(-1.77,24.9375,24.9375,1.77,301.13166,179.45465)"/>
<use href="#pass_path" transform="matrix(1.77,-24.9375,-24.9375,-1.77,314.05949,174.09564)"/>
<use href="#pass_path" transform="matrix(-1.77,24.9375,24.9375,1.77,178.90874,394.7317)"/>
<use href="#pass_path" transform="matrix(1.77,-24.9375,-24.9375,-1.77,191.83708,389.37287)"/>
<use href="#pass_path" transform="matrix(8.202812,23.61625,23.61625,-8.202812,240.18187,286.6714)"/>
<use href="#pass_path" transform="matrix(-8.202812,-23.61625,-23.61625,8.202812,249.95105,276.64997)"/>
<use href="#pass_path" transform="matrix(22.80875,10.234792,10.234792,-22.80875,155.45958,769.18136)"/>
<use href="#pass_path" transform="matrix(-22.80875,-10.234792,-10.234792,22.80875,154.86959,755.1992)"/>
<use href="#pass_path" transform="matrix(20.684998,14.04,14.04,-20.684998,277.85188,767.3899)"/>
<use href="#pass_path" transform="matrix(-20.684998,-14.04,-14.04,20.684998,279.69865,753.5187)"/>
<use href="#pass_path" transform="matrix(22.677498,-10.522499,-10.522499,-22.677498,348.8327,758.9101)"/>
<use href="#pass_path" transform="matrix(-22.677498,10.522499,10.522499,22.677498,337.88499,750.19229)"/>
<use href="#pass_path" transform="matrix(21.647501,-12.504999,-12.504999,-21.647501,397.81083,659.4463)"/>
<use href="#pass_path" transform="matrix(-21.647501,12.504999,12.504999,21.647501,386.12928,651.74057)"/>
<use href="#pass_path" transform="matrix(-21.2125,-13.23,-13.23,21.2125,887.9374,543.0725)"/>
<use href="#pass_path" transform="matrix(21.2125,13.23,13.23,-21.2125,886.6277,557.0048)"/>
<use href="#pass_path" transform="matrix(21.199999,13.250416,13.250416,-21.199999,323.62303,230.7445)"/>
<use href="#pass_path" transform="matrix(-21.199999,-13.250416,-13.250416,21.199999,324.94749,216.81208)"/>
</g>

<g text-anchor="middle" font-family="Source Serif" font-weight="bold" font-style="normal" font-size="30" fill="#fed">
<text x="180" y="50">Rommel in the Desert</text>
<text x="180" y="70" font-size="13">Copyright &#xa9; 2022 Columbia Games Inc.</text>
</g>

<g font-family="Source Sans" font-weight="bold" xfill="#fde4c4" fill="#fed">
<text text-anchor="middle" font-size="19" x="178" y="285">2</text>
<text text-anchor="middle" font-size="19" x="1104" y="172">5</text>
<text text-anchor="middle" font-size="19" x="1466" y="213">2</text>
</g>

<g font-family="Source Serif" font-weight="bold" font-style="italic">

<g fill="#ad9877" fill-opacity="0.8">
<text text-anchor="middle" font-size="56" x="1035" y="727">LIBYA</text>
<text text-anchor="middle" font-size="56" x="1883" y="727">EGYPT</text>
<text text-anchor="middle" font-size="35" x="789" y="507">Cyrenaica</text>
<text text-anchor="middle" font-size="35" x="2109" y="504">Western Desert</text>
</g>

<g fill="#877341" fill-opacity="0.8">
<text text-anchor="middle" font-size="42" transform="translate(544 214) rotate(-18)">Jebel el Akhdar</text>
</g>

<g fill="#947852" fill-opacity="0.8">
<text text-anchor="middle" font-size="21" transform="translate(2223 636) rotate(-32)">Qattara Depression</text>
</g>

<g fill="#1d3378">
<text text-anchor="middle" font-size="22" x="117" y="559">Gulf</text>
<text text-anchor="middle" font-size="22" x="117" y="584">of</text>
<text text-anchor="middle" font-size="22" x="117" y="609">Sirte</text>
<text font-size="22" x="872" y="100">Gulf of Bomba</text>
<text font-size="22" x="1531" y="248">Gulf of Sollum</text>
<text font-size="81" x="930" y="-40">Mediterranean Sea</text>
</g>

<g fill="#fed">
<text text-anchor="end" font-size="22" x="152" y="273">Benghazi</text>
<text text-anchor="end" font-size="22" x="2565" y="242">Alexandria</text>
<text text-anchor="end" font-size="13" x="129" y="398">Ghemines</text>
<text text-anchor="end" font-size="13" x="796" y="58">Derna</text>
<text font-size="22" x="16" y="694">El Agheila</text>
<text font-size="22" x="1492" y="213">Bardia</text>
<text font-size="22" x="1137" y="156">Tobruk</text>
<text font-size="13" x="1512" y="285">Sollum</text>
</g>

</g>
<g font-family="Source Serif SmText" font-weight="bold" font-style="italic">

<g fill="#642">

<!--
<text font-size="9" transform="translate(1266,280) rotate(-3)">Trigh Capuzzo</text>
<text font-size="9" transform="translate(1223,381) rotate(5)">Trigh el Abd</text>
<text font-size="9" transform="translate(560,150) rotate(-30)">Via Akhdar</text>
<text font-size="9" transform="translate(495,101) rotate(-6)">Via Balbia</text>
<text font-size="9" transform="translate(264,263) rotate(-32)">Via Balbia</text>
<text font-size="9" transform="translate(178,677) rotate(-27)">Via Balbia</text>
<text font-size="9" transform="translate(1050,195) rotate(-8)">Via Balbia</text>
<text font-size="9" transform="translate(1344,204) rotate(-7)">Via Balbia</text>
<text font-size="9" transform="translate(2195,309) rotate(-2)">Via Balbia</text>
-->

<text font-size="10" x="150" y="730">SABKHA</text>
<text font-size="10" x="145" y="742">EL SEGIRA</text>
<text font-size="10" x="453" y="828">SABKHA</text>
<text font-size="10" x="443" y="840">EL JENEINEN</text>
<text font-size="10" x="82" y="840">SABKHA</text>
<text font-size="10" x="82" y="852">AL AKHARIYAH</text>

<text text-anchor="end" font-size="13" x="888" y="202">Gazala</text>

<text text-anchor="middle" font-size="10" x="545" y="904">Jalo Oasis</text>
<text text-anchor="middle" font-size="10" x="1453" y="803">Jarabub Oasis</text>
<text text-anchor="middle" font-size="10" x="1631" y="905">Siwa Oasis</text>

<text text-anchor="end" font-size="10" x="1597" y="425">Bir Habata</text>
<text text-anchor="end" font-size="10" x="1677" y="473">Bir Khamsa</text>
<text text-anchor="end" font-size="10" x="1383" y="410">Bir Sheferzen</text>
<text text-anchor="end" font-size="10" x="1425" y="512">Ft. Maddalena</text>
<text text-anchor="end" font-size="10" x="1422" y="280">Ft. Capuzzo</text>
<text text-anchor="end" font-size="10" x="974" y="375">Bir Hacheim</text>
<text text-anchor="end" font-size="10" x="812" y="159">Tmimi</text>
<text text-anchor="end" font-size="10" x="1000" y="216">Acroma</text>
<text text-anchor="end" font-size="10" x="2400" y="500">El Himeimat</text>
<!--
<text text-anchor="end" font-size="10" x="2405" y="511">(Hill)</text>
-->
<text text-anchor="end" font-size="10" x="2400" y="309">El Alamein</text>
<text text-anchor="end" font-size="10" x="1335" y="395">Gabr Saleh</text>
<text text-anchor="end" font-size="10" x="566" y="515">Ben Gania</text>
<text text-anchor="end" font-size="10" x="1816" y="496">Bir el Qatrani</text>
<text text-anchor="end" font-size="10" x="288" y="427">Skeleidima</text>
<text text-anchor="end" font-size="10" x="368" y="810">Sahaba</text>
<text text-anchor="end" font-size="10" x="373" y="630">Jebel el</text>
<text text-anchor="end" font-size="10" x="370" y="645">Matar</text>
<text text-anchor="end" font-size="13" x="2002" y="272">Mersa</text>
<text text-anchor="end" font-size="13" x="2000" y="284">Matruh</text>
<text text-anchor="end" font-size="10" x="485" y="164">Marawa</text>

<!--
<text font-size="9" x="148" y="391">Solluch</text>
-->
<text font-size="9" x="201" y="388">Solluch</text>
<text font-size="9" x="209" y="398">Pass</text>
<text font-size="9" x="1500" y="326">Halfaya</text>
<text font-size="9" x="1509" y="336">Pass</text>

<text font-size="10" x="773" y="87">Martuba</text>
<text font-size="10" x="123" y="812">Maaten Giofer</text>
<text font-size="10" x="308" y="253">El Abiar</text>
<text font-size="10" x="354" y="585">Saunnu</text>
<text font-size="10" x="1069" y="410">Retma</text>
<text font-size="10" x="1196" y="219">Belhamed</text>
<text font-size="10" x="1805" y="592">Bir Fuad</text>
<text font-size="10" x="1922" y="407">Bir el Kenayis</text>
<text font-size="10" x="2050" y="352">Bir Khalda</text>
<text font-size="10" x="2491" y="308">El Hamam</text>
<text font-size="10" x="481" y="584">Haraga</text>
<text font-size="10" x="766" y="281">Rotonda</text>
<text font-size="10" x="766" y="293">Segnali</text>
<text font-size="10" x="920" y="297">Sidi</text>
<text font-size="10" x="920" y="309">Mufta</text>
<text font-size="10" x="1016" y="288">Bir Harmat</text>
<text font-size="10" x="1142" y="275">El Adem</text>
<text font-size="10" x="1180" y="361">Bir Gubi</text>
<text font-size="10" x="1240" y="257">Sidi Rezegh</text>
<text font-size="10" x="1280" y="203">Gambut</text>
<text font-size="10" x="1434" y="397">Omar</text>
<text font-size="10" x="1437" y="384">Sidi</text>
<text font-size="10" x="157" y="689">Mersa Brega</text>
<text font-size="10" x="1609" y="308">Buq Buq</text>
<text font-size="10" x="1696" y="365">Sofafi</text>
<text font-size="10" x="203" y="493">Beda</text>
<text font-size="10" x="203" y="505">Fomm</text>
<text font-size="10" x="2108" y="310">Fuka</text>
<text font-size="10" x="2261" y="299">El Daba</text>
<text font-size="10" x="2415" y="394">Alam Halfa</text>
<text font-size="10" x="266" y="739">El Haseiat</text>
<text font-size="10" x="269" y="278">Er Regima</text>
<text font-size="10" x="270" y="202">Tocra</text>
<text font-size="10" x="306" y="534">Antelat</text>
<text font-size="10" x="389" y="402">Msus</text>
<text font-size="10" x="395" y="293">Charruba</text>
<text font-size="10" x="438" y="127">El Garib</text>
<text font-size="10" x="613" y="139">Wadi</text>
<text font-size="10" x="613" y="150">Cuff</text>
<text font-size="10" x="663" y="99">El Gubba</text>
<text font-size="10" x="682" y="279">Mechili</text>
<text font-size="10" x="737" y="428">Tengeder</text>
<text font-size="13" x="1708" y="284">Sidi Barrani</text>
<text font-size="13" x="237" y="640">Agedabia</text>
<text font-size="13" x="358" y="173">Barce</text>
<text font-size="13" x="547" y="89">Cyrene</text>
<!--
<text font-size="9" x="576" y="156">Slonta</text>
-->
</g>

</g>

<g id="hexes" fill="transparent"></g>
<g id="sides"></g>

</svg>
<!-- END INSERT MAP FILE -->

<div id="calendar">
<div class="month">1</div>
<div class="month">2</div>
<div class="month">3</div>
<div class="month">4</div>
<div class="month">5</div>
<div class="month">6</div>
<div class="month">7</div>
<div class="month">8</div>
<div class="month">9</div>
<div class="month">10</div>
</div>
<div id="calendar2">
<div class="month">11</div>
<div class="month">12</div>
<div class="month">13</div>
<div class="month">14</div>
<div class="month">15</div>
<div class="month">16</div>
<div class="month">17</div>
<div class="month">18</div>
<div class="month">19</div>
<div class="month">20</div>
</div>
<div id="units"></div>

<div style="position:absolute;bottom:20px;right:24px;display:flex;gap:20px;align-items:end">

<table>
<tr><th colspan="2">ROAD BONUS
<tr><td>Highway<td>+4
<tr><td>Track<td>+2
<tr><td>Trail<td>+1
</table>

<table>
<tr><th colspan="2">UNIT SPEED
<tr><td>
<img src="icons/recon.svg">
<td>4
<tr><td>
<img src="icons/armor.svg">
<img src="icons/mobile_antitank.svg">
<img src="icons/mechanized_infantry.svg">
<img src="icons/self_propelled_artillery.svg">
<td>3
<tr><td>
<img src="icons/motorized_infantry.svg">
<img src="icons/motorized_antitank_new.svg">
<td>2
<tr><td>
<img src="icons/infantry.svg">
<img src="icons/paratroopers.svg">
<img src="icons/artillery.svg">
<td>1
</table>

<table>
<tr><th colspan="2">HEXSIDE LIMIT
<tr><td>Mountain<br>Ridge<br>Marsh<td>0
<tr><td>Pass<td>1
<tr><td>Clear<td>2
</table>

<table>
<tr><th colspan="3">TURN OPTIONS
<tr><td>&#x25D0;<td>Basic<td>MC
<tr><td>&#x25D0;&#x25D0;<td>Offensive<td>MMC
<tr><td>&#x25D0;&#x25D0;<td>Assault<td>MC*
<tr><td>&#x25D0;&#x25D0;&#x25D0;<td>Blitz<td>MC+MC
<tr><td>No Cost<td>Pass<td>W
</table>

<table>
<tr><td class="blank" colspan="2"><th colspan="4">TARGET UNIT
<tr><td class="blank" colspan="2">
<td><img src="icons/armor.svg">
<td><img src="icons/infantry.svg">
<td><img src="icons/motorized_antitank_old.svg">
<td><img src="icons/artillery.svg">
<tr><th rowspan="4" style="writing-mode:vertical-lr;min-width:20px">FIRING UNIT
    <td><img src="icons/armor.svg"><td>(SF)<td>DF<td>SF<td>[TF]
<tr><td><img src="icons/infantry.svg"><td>SF<td>(SF)<td>SF<td>[TF]
<tr><td><img src="icons/motorized_antitank_old.svg"><td>DF<td>SF<td>SF<td>[TF]
<tr><td><img src="icons/artillery.svg"><td>SF*<td>DF*<td>DF*<td>SF*
<!--
<tr><td colspan="6">
(SF) Required target,
[TF] Only if unsupported,
<br>* Must fire first
-->
</table>

<table>
<tr><th colspan="2">BP COSTS PER CV
<tr><td>
<img src="icons/armor.svg">
<img src="icons/motorized_antitank_old.svg">
<img src="icons/artillery.svg">
<td>3
<tr><td>
<img src="icons/motorized_infantry.svg">
<img src="icons/mechanized_infantry.svg">
<td>2
<tr><td>
<img src="icons/infantry.svg">
<td>1
<tr><td colspan="2"><i>Elite Units cost double</i>
<tr><td>Minefields<td>15
<tr><td>Supply Card<td>10
</table>

</div>

</div>
</div>


</body>

</main>

<footer id="status"></footer>

</body>