-
Notifications
You must be signed in to change notification settings - Fork 0
/
EoD.xml
1189 lines (1079 loc) · 139 KB
/
EoD.xml
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
<OverlayData>
<POIs>
<!-- ARBORSTONE -->
<!-- A Guardian Once More -->
<!-- ARBORSTONE -->
<Trail type="leag.eod.arb.guardian.tdoz" trailData="Data/EoD/A Guardian Once More 0.trl" color="FF5016"/>
<POI MapID="1428" xpos="-697.072" ypos="119.111" zpos="597.555" type="leag.eod.arb.guardian.tdoz.wp" GUID="2F3dG3RRkEmaYQ+Y17BVTw==" copy="[&BJ4MAAA=]" copy-message="Village Waypoint, Seitung Province"/>
<!-- SEITUNG PROVINCE -->
<Trail type="leag.eod.sp.guardian.tdoz" trailData="Data/EoD/A Guardian Once More 1a.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="FF5016"/>
<Trail type="leag.eod.sp.guardian.tdoz" trailData="Data/EoD/A Guardian Once More 1b.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="FF5016"/>
<Trail type="leag.eod.sp.guardian.tdoz" trailData="Data/EoD/A Guardian Once More 1c.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="FF5016"/>
<Trail type="leag.eod.sp.guardian.tdoz" trailData="Data/EoD/A Guardian Once More 1.trl" color="FF5016"/>
<POI MapID="1442" xpos="-87.4225" ypos="14.5839" zpos="-195.099" type="leag.eod.sp.guardian.tdoz.start" GUID="m3Yafhc1pkuKkpDt0VAEVQ=="/>
<POI MapID="1442" xpos="-83.3006" ypos="14.1906" zpos="-180.555" type="leag.eod.sp.guardian.tdoz.1" GUID="CTQnjAt/F02nh4xtR6UnPg=="/>
<Trail type="leag.eod.sp.guardian.inoaf" trailData="Data/EoD/A Guardian Once More 2.trl" color="FF5016"/>
<POI MapID="1442" xpos="325.633" ypos="59.4702" zpos="-279.592" type="leag.eod.sp.guardian.inoaf.2" GUID="uNvTXBzhu0eHnco0hVhaDw=="/>
<POI MapID="1442" xpos="198.748" ypos="106.306" zpos="-172.49" type="leag.eod.sp.guardian.inoaf.circle" GUID="pVeF3L9fG0Ww43WkIRk5Vg=="/>
<POI MapID="1442" xpos="119.083" ypos="68.8023" zpos="-90.2788" type="leag.eod.sp.guardian.inoaf.circle" GUID="5/tOIX7J70urC5ZgoCEYaw=="/>
<POI MapID="1442" xpos="160.408" ypos="72.6788" zpos="-77.8118" type="leag.eod.sp.guardian.inoaf.circle" GUID="tXD0/mnzDka9bmIgEov4hQ=="/>
<Trail type="leag.eod.sp.guardian.itpd.trail" trailData="Data/EoD/Into the Puzzling Dark.trl" color="FF5016"/>
<POI MapID="1442" xpos="-159.098" ypos="18.9067" zpos="-273.376" type="leag.eod.sp.guardian.itpd.3" GUID="Xl2CetW4Nkub3nBF3OMTRg=="/>
<POI MapID="1442" xpos="206.1496" ypos="54.81158" zpos="-348.0932" type="leag.eod.sp.guardian.itpd.wp" GUID="5/odpwH0n0ybetY016KBPw==" copy="[&BJ4MAAA=]" copy-message="Village Waypoint"/>
<Trail type="leag.eod.sp.guardian.itpd.trail" trailData="Data/EoD/Mini Dungeons/Spirit Vestibule 1.trl"/>
<Trail type="leag.eod.sp.guardian.itpd.chest" trailData="Data/EoD/Mini Dungeons/Spirit Vestibule Chests.trl"/>
<Trail type="leag.eod.sp.guardian.itpd.red" trailData="Data/EoD/Mini Dungeons/Spirit Vestibule Red.trl"/>
<Trail type="leag.eod.sp.guardian.itpd.red" trailData="Data/EoD/Mini Dungeons/Spirit Vestibule Red Alt.trl" texture="Data/Images/Trails/Dashed Line - Fine with Shadow.png"/>
<Trail type="leag.eod.sp.guardian.itpd.green" trailData="Data/EoD/Mini Dungeons/Spirit Vestibule Green.trl"/>
<Trail type="leag.eod.sp.guardian.itpd.green" trailData="Data/EoD/Mini Dungeons/Spirit Vestibule Green Alt.trl" texture="Data/Images/Trails/Dashed Line - Fine with Shadow.png"/>
<Trail type="leag.eod.sp.guardian.itpd.blue" trailData="Data/EoD/Mini Dungeons/Spirit Vestibule Blue.trl"/>
<Trail type="leag.eod.sp.guardian.itpd.blue" trailData="Data/EoD/Mini Dungeons/Spirit Vestibule Blue Alt.trl" texture="Data/Images/Trails/Dashed Line - Fine with Shadow.png"/>
<Trail type="leag.eod.sp.guardian.guest" trailData="Data/EoD/Guest Appearance.trl" color="FF5016"/>
<POI MapID="1442" xpos="-84.0887" ypos="13.6784" zpos="-181.833" type="leag.eod.sp.guardian.guest.4" GUID="Z0UTaZx5hEOBoE8pXwZQIQ=="/>
<POI MapID="1442" xpos="-158.034" ypos="58.3936" zpos="-82.6213" type="leag.eod.sp.guardian.guest.wp" GUID="YFKgMjsYzUuLQcrqjDmJsA==" copy="[&BGUNAAA=]" copy-message="Daigo Ward Waypoint, on 1st visit only."/>
<Trail type="leag.eod.sp.guardian.sgk" trailData="Data/EoD/Seeking Greater Knowledge Alt.trl" color="FF5016" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.sp.guardian.sgk" trailData="Data/EoD/Seeking Greater Knowledge.trl" color="FF5016"/>
<POI MapID="1442" xpos="62.583" ypos="115.903" zpos="255.085" type="leag.eod.sp.guardian.sgk.5" GUID="z6Z+rYHjSU+g3YaAL47+Dg=="/>
<POI MapID="1442" xpos="-622.337" ypos="64.1573" zpos="607.327" type="leag.eod.sp.guardian.sgk.wp" GUID="0phK9RrtLU6BtxS6fV6T3Q==" copy="[&BJ4MAAA=]" copy-message="Village Waypoint and Return to Kyung"/>
<Trail type="leag.eod.sp.guardian.pmp" trailData="Data/EoD/Practice Makes Perfect.trl" color="FF5016" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.sp.guardian.spfsp" trailData="Data/EoD/Seitung Province's First Spirit Portal Alt.trl" color="FF5016" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.sp.guardian.spfsp" trailData="Data/EoD/Seitung Province's First Spirit Portal.trl" color="FF5016"/>
<Trail type="leag.eod.sp.guardian.spssp" trailData="Data/EoD/Seitung Province's Second Spirit Portal Alt.trl" color="FF5016" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.sp.guardian.spssp" trailData="Data/EoD/Seitung Province's Second Spirit Portal.trl" color="FF5016"/>
<POI MapID="1442" xpos="980.523" ypos="66.1351" zpos="-22.7718" type="leag.eod.sp.guardian.spssp.wp" GUID="vplzWSfItUWW1s2q4NCX5g==" copy="[&BCANAAA=]" copy-message="Lutgardis Plaza Waypoint, New Kaineng City"/>
<POI MapID="1442" xpos="140.9349" ypos="74.57758" zpos="-278.1743" type="leag.eod.sp.guardian.hftb.loc" GUID="0S0Cg0tm/UOS9/nc+OVugA==" copy="[&BBYNAAA=]" copy-message="Lutgardis Plaza Waypoint, New Kaineng City"/>
<!-- A Sampling of Snargle -->
<Trail type="leag.eod.arb.snargle.sp" trailData="Data/EoD/A Sampling of Snargle - Seitung.trl" color="BAAAD7"/>
<POI MapID="1442" xpos="-124.066" ypos="55.0856" zpos="-425.333" type="leag.eod.arb.snargle.book" GUID="amHFQmokfE2lKkjA1t8qdw=="/>
<POI MapID="1442" xpos="-123.698" ypos="53.2202" zpos="-424.233" type="leag.eod.arb.snargle.wp" GUID="3RCx7VJKM0aeTprvUQ7pCQ==" copy="[&BBYNAAA=]" copy-message="Garden Heights Waypoint, New Kaineng City"/>
<Trail type="leag.eod.arb.snargle.nkc" trailData="Data/EoD/A Sampling of Snargle - Kaineng.trl" color="BAAAD7"/>
<POI MapID="1438" xpos="-297.716" ypos="261.687" zpos="549.964" type="leag.eod.arb.snargle.book" GUID="0m0ca22PAkaOUrSL7rXhcA=="/>
<POI MapID="1438" xpos="-297.79" ypos="260.774" zpos="550.921" type="leag.eod.arb.snargle.wp" GUID="2O0OjbQWWki2hdIwIdHaDA==" copy="[&BIsMAAA=]" copy-message="Junkyard Waypoint, The Echovald Wilds"/>
<Trail type="leag.eod.arb.snargle.nkc" trailData="Data/EoD/A Sampling of Snargle - Echovald.trl" color="BAAAD7"/>
<POI MapID="1452" xpos="49.1215" ypos="173.332" zpos="652.367" type="leag.eod.arb.snargle.book" GUID="1UxoJz3qGUi4SD9QWVlvCw=="/>
<POI MapID="1452" xpos="49.0727" ypos="173.332" zpos="651.246" type="leag.eod.arb.snargle.wp" GUID="6MXWOCb2bEisCIdg5Db5nA==" copy="[&BKIMAAA=]" copy-message="Jade Quarry Waypoint, Dragon's End"/>
<Trail type="leag.eod.arb.snargle.nkc" trailData="Data/EoD/A Sampling of Snargle - Dragon.trl" color="BAAAD7"/>
<POI MapID="1422" xpos="477.738" ypos="62.604" zpos="483.085" type="leag.eod.arb.snargle.book" GUID="6JuyyS5pnkiTuxnSHgiSkQ=="/>
<!-- Albax, the Unlucky [H] -->
<Trail type="leag.eod.arb.albax" trailData="Data/EoD/Albax the Unlucky - To.trl" texture="Data/Images/Trails/Trail Marker 2.png" color="43FFD8"/>
<Trail type="leag.eod.arb.albax.1" trailData="Data/EoD/Albax the Unlucky 1b.trl" color="43FFD8"/>
<!-- Defend the Monastery -->
<POI MapID="1442" xpos="-1025.931" ypos="33.3326" zpos="-360.3945" type="leag.eod.arb.albax.event" GUID="RxJgQwQ1UUSlcBx7O0g1QQ=="/>
<!-- Escort Officer Roz to the wreckage -->
<POI MapID="1442" xpos="-993.0644" ypos="33.71043" zpos="-391.487" type="leag.eod.arb.albax.event" GUID="oHb4vwiSRU2HI9vUNDqcIw=="/>
<!-- Defeat the Aetherblade Champion (Seitung Province) -->
<POI MapID="1442" xpos="-937.1127" ypos="29.3029" zpos="-453.7756" type="leag.eod.arb.albax.event" GUID="hLeQWxDpp06DkStBZhN+8Q=="/>
<POI MapID="1442" xpos="-974.528" ypos="97.7124" zpos="-286.18" type="leag.eod.arb.albax.talk" GUID="cBohoBBVckmw8SIu3wz/0w=="/>
<Trail type="leag.eod.arb.albax.2" trailData="Data/EoD/Albax the Unlucky 2.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="43FFD8"/>
<POI MapID="1438" xpos="202.914" ypos="2.62128" zpos="312.822" type="leag.eod.arb.albax.event" GUID="F8hJvk+Mr0Odzqw6mDy/8A=="/>
<POI MapID="1438" xpos="209.402" ypos="2.62128" zpos="316.174" type="leag.eod.arb.albax.talk" GUID="h7g678hSYkqeNV7KHWXQ0w=="/>
<Trail type="leag.eod.arb.albax.3" trailData="Data/EoD/Albax the Unlucky 3.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="43FFD8"/>
<POI MapID="1428" xpos="-698.249" ypos="12.3658" zpos="711.826" type="leag.eod.arb.albax.talk" GUID="R3xhl3wVFkyFSPBDPg/SrA=="/>
<Trail type="leag.eod.arb.albax.4" trailData="Data/EoD/Albax the Unlucky 4.trl" texture="Data/Images/Trails/Dashed Lines - Fine with Shadow.png" color="43FFD8"/>
<POI MapID="1422" xpos="-255.789" ypos="0.863302" zpos="352.111" type="leag.eod.arb.albax.event" GUID="jhykGUElxUCd3COf14E7Cg=="/>
<POI MapID="62" xpos="108.4" ypos="39.1038" zpos="880.082" type="leag.eod.arb.albax.wp" GUID="k0Exjr04jUSqAHNO32XiNw==" copy="[&BCEDAAA=]" copy-message="Caer Shadowfain Waypoint, Cursed Shore"/>
<Trail type="leag.eod.arb.albax.5" trailData="Data/EoD/Albax the Unlucky 5.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="43FFD8"/>
<POI MapID="62" xpos="108.4" ypos="39.1038" zpos="880.082" type="leag.eod.arb.albax.talk" GUID="R2uJQV3w4keF2LU31w/uPQ=="/>
<POI MapID="62" xpos="108.4" ypos="39.1038" zpos="880.082" type="leag.eod.arb.albax.wp" GUID="bL8wr4x+7EKC49Ny8l117w==" copy="[&BOUBAAA=]" copy-message="Warhound Village Waypoint, Iron Marches"/>
<Trail type="leag.eod.arb.albax.6" trailData="Data/EoD/Albax the Unlucky 6.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="43FFD8"/>
<POI MapID="25" xpos="121.165" ypos="7.20301" zpos="-596.682" type="leag.eod.arb.albax.event" GUID="pY2KJoZ7tEabZv1k6hJmhg=="/>
<POI MapID="25" xpos="20.2814" ypos="25.3867" zpos="-652.164" type="leag.eod.arb.albax.talk" GUID="F4JqW7JfmUSI+EwC1wwBuQ=="/>
<POI MapID="25" xpos="19.9631" ypos="24.3902" zpos="-651.231" type="leag.eod.arb.albax.wp" GUID="GxHQ8UCx00muR8Iu6HWV7A==" copy="[&BE8CAAA=]" copy-message="White Paper Waypoint, Timberline Falls"/>
<Trail type="leag.eod.arb.albax.7" trailData="Data/EoD/Albax the Unlucky 7a.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="43FFD8"/>
<POI MapID="29" xpos="-74.65372" ypos="44.30022" zpos="280.2586" type="leag.eod.arb.albax.wp" GUID="uHF4AvhGj0qoiOU2adel6A==" copy="[&BFMCAAA=]" copy-message="Iron Veil Waypoint"/>
<Trail type="leag.eod.arb.albax.7" trailData="Data/EoD/Albax the Unlucky 7b.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="43FFD8"/>
<POI MapID="29" xpos="43.0629" ypos="77.8135" zpos="730.692" type="leag.eod.arb.albax.wp" GUID="o8iUqjdAmEO5KmTgMOctlg==" copy="[&BNQCAAA=]" copy-message="Old Sledge Site Waypoint, Mount Maelstrom"/>
<Trail type="leag.eod.arb.albax.8" trailData="Data/EoD/Albax the Unlucky 8.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="43FFD8"/>
<POI MapID="39" xpos="1073.52" ypos="-1.198176" zpos="134.198" type="leag.eod.arb.albax.talk" GUID="Fbv1h2xIB0OeW+biU371eQ=="/>
<POI MapID="39" xpos="1072.56" ypos="-0.104278" zpos="133.199" type="leag.eod.arb.albax.wp" GUID="bj5zdRUWHU6S6babpQV4rg==" copy="[&BOAHAAA=]" copy-message="Jaka Itzel Waypoint, Verdant Brink

(Only if you have Heart of Thorns)"/>
<Trail type="leag.eod.arb.albax.9" trailData="Data/EoD/Albax the Unlucky 9.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="43FFD8"/>
<POI MapID="1052" xpos="659.561" ypos="375.422" zpos="343.204" type="leag.eod.arb.albax.talk" GUID="A98pocZ0rUyBQ+jzta1oVA=="/>
<POI MapID="1052" xpos="659.647" ypos="375.367" zpos="343.928" type="leag.eod.arb.albax.wp" GUID="AoUp8kbHTEieryDenfU0cQ==" copy="[&BLsKAAA=]" copy-message="Amnoon Waypoint, Crystal Oasis

(Only if you have Path of Fire)"/>
<Trail type="leag.eod.arb.albax.10" trailData="Data/EoD/Albax the Unlucky 10.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="43FFD8"/>
<POI MapID="1210" xpos="-353.705" ypos="8.6191" zpos="-344.98" type="leag.eod.arb.albax.talk" GUID="29bLSwewqk6BS3ovTvE2Gw=="/>
<Trail type="leag.eod.arb.vaulter" trailData="Data/EoD/Arborstone Vaulter To.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.arb.vaulter" trailData="Data/EoD/Arborstone Vaulter 1.trl" color="00FFFF"/>
<Trail type="leag.eod.arb.vaulter" trailData="Data/EoD/Arborstone Vaulter 2.trl" color="00FFFF"/>
<Trail type="leag.eod.arb.bot.1" trailData="Data/EoD/Building a Better Bot 1.trl"/>
<Trail type="leag.eod.arb.bot.2" trailData="Data/EoD/Building a Better Bot 2a.trl"/>
<Trail type="leag.eod.arb.bot.2" trailData="Data/EoD/Building a Better Bot 2b.trl"/>
<Trail type="leag.eod.arb.bot.2" trailData="Data/EoD/Building a Better Bot 2c.trl" mapDisplaySize="8"/>
<Trail type="leag.eod.arb.bot.2" trailData="Data/EoD/Building a Better Bot 2d.trl"/>
<POI MapID="53" xpos="738.41" ypos="29.4615" zpos="-862.225" type="leag.eod.arb.bot.2.scan" GUID="wjMV0rSKV0+WUM6iFmgTDw=="/>
<POI MapID="35" xpos="-294.647" ypos="19.0738" zpos="692.735" type="leag.eod.arb.bot.2.scan" GUID="h5zYRKh8LEe0xae+HGWhUA=="/>
<POI MapID="39" xpos="898.224" ypos="9.60667" zpos="74.8947" type="leag.eod.arb.bot.2.scan" GUID="ne5vPyKqT0KWzx+ghaJpQg=="/>
<POI MapID="29" xpos="-472.735" ypos="15.477" zpos="117.753" type="leag.eod.arb.bot.2.scan" GUID="5jUFKdxKiUyGq9dBB9wZUw=="/>
<Trail type="leag.eod.arb.bot.4" trailData="Data/EoD/Building a Better Bot 4a 1.trl"/>
<Trail type="leag.eod.arb.bot.4" trailData="Data/EoD/Building a Better Bot 4a 2.trl"/>
<POI MapID="1442" xpos="910.333" ypos="18.652" zpos="203.128" type="leag.eod.arb.bot.4.event" GUID="240Rbiq/CkCiBW0x0z933A=="/>
<POI MapID="1442" xpos="401.089" ypos="74.5557" zpos="115.941" type="leag.eod.arb.bot.4.event" GUID="SzhRmWOKsUCOlYvIN+DmAg=="/>
<Trail type="leag.eod.arb.bot.4" trailData="Data/EoD/Building a Better Bot 4b.trl"/>
<POI MapID="1442" xpos="162.651" ypos="122.128" zpos="205.639" type="leag.eod.arb.bot.4.scan" GUID="CtGBG+MgmUSfKSAPuUrUXw=="/>
<Trail type="leag.eod.arb.bot.4" trailData="Data/EoD/Building a Better Bot 4d.trl"/>
<POI MapID="1438" xpos="-299.986" ypos="260.854" zpos="505.455" type="leag.eod.arb.bot.4.event" GUID="a6dcqSq6y0OYdsWV2us5zg=="/>
<Trail type="leag.eod.arb.bot.4" trailData="Data/EoD/Building a Better Bot 4e.trl"/>
<POI MapID="1438" xpos="649.669" ypos="110.02" zpos="630.918" type="leag.eod.arb.bot.4.scan" GUID="kGYuYbxjfUeCV99hL9ImXA=="/>
<Trail type="leag.eod.arb.bot.4" trailData="Data/EoD/Building a Better Bot 4f.trl"/>
<POI MapID="1452" xpos="-10.2556" ypos="152.727" zpos="146.948" type="leag.eod.arb.bot.4.scan" GUID="CegGnHFUjEi/600jLKv2mg=="/>
<Trail type="leag.eod.arb.growth.1" trailData="Data/EoD/Character Growth 1.trl" color="8E00C6"/>
<POI MapID="1428" xpos="-714.913" ypos="94.8514" zpos="609.513" type="leag.eod.arb.growth.wp" GUID="amXjqf3pmUSDZ/g1f08BBg==" copy="2. [&BMcMAAA=] - 6. [&BKIMAAA=] - 10. [&BMoMAAA=] - 14. [&BPEMAAA=]" copy-message="2. Mori Village WP, The Echovald Wilds
6. Jade Quarry WP, Dragon's End
10. Waypoint zu Heltzer, The Echovald Wilds
14. Frozen Sea WP, Dragon's End"/>
<Trail type="leag.eod.arb.growth.2" trailData="Data/EoD/Character Growth 2.trl" color="8E00C6"/>
<POI MapID="1452" xpos="1038.28" ypos="1.493056" zpos="-625.822" type="leag.eod.arb.growth.talk" GUID="lGWVaCSLX0GlnOrkdH3gig=="/>
<POI MapID="1452" xpos="1046.55" ypos="-0.479714" zpos="-612.162" type="leag.eod.arb.growth.2.archery" GUID="TfzPzEhtLE2Bk+tbhGFYeQ=="/>
<POI MapID="1452" xpos="1037.95" ypos="0.211367" zpos="-624.194" type="leag.eod.arb.growth.wp" GUID="fsVtnqRVhkuXw3/+68L+VA==" copy="[&BJ4MAAA=]" copy-message="Village Waypoint, Seitung Province"/>
<Trail type="leag.eod.arb.growth.3" trailData="Data/EoD/Character Growth 3.trl" color="8E00C6"/>
<POI MapID="1442" xpos="-167.412" ypos="16.8159" zpos="-245.366" type="leag.eod.arb.growth.talk" GUID="lGXVHKeIsUKkcDjGKqa4rw=="/>
<POI MapID="1442" xpos="-167.412" ypos="16.8159" zpos="-245.366" type="leag.eod.arb.growth.event" GUID="YSht64i5BE2KzKlVt2D5Bg=="/>
<POI MapID="1442" xpos="-167.013" ypos="16.8159" zpos="-245.214" type="leag.eod.arb.growth.wp" GUID="QJko434HEUq0pIZOhb1Hyg==" copy="[&BMYMAAA=]" copy-message="Promenade Waypoint, New Kaineng City"/>
<Trail type="leag.eod.arb.growth.4" trailData="Data/EoD/Character Growth 4.trl" color="8E00C6"/>
<POI MapID="1438" xpos="-593.322" ypos="199.021" zpos="-296.978" type="leag.eod.arb.growth.event" GUID="+Exn6bQtBkWCYbE+bXh8zg=="/>
<POI MapID="1438" xpos="-621.166" ypos="199.38" zpos="-316.778" type="leag.eod.arb.growth.talk" GUID="Gf8TNI0usUuFpOcL5iSBaQ=="/>
<POI MapID="1438" xpos="-621.483" ypos="199.38" zpos="-316.535" type="leag.eod.arb.growth.wp" GUID="rswAF7aCTEGXhATFmY/ntA==" copy="[&BGMNAAA=]" copy-message="Arborstone Waypoint, Arborstone"/>
<Trail type="leag.eod.arb.growth.6" trailData="Data/EoD/Character Growth 6.trl" color="8E00C6"/>
<POI MapID="1422" xpos="536.083" ypos="82.3955" zpos="687.769" type="leag.eod.arb.growth.talk" GUID="exykD0/5x0adx3TCE0/d/A=="/>
<POI MapID="1422" xpos="506.075" ypos="81.4548" zpos="599.134" type="leag.eod.arb.growth.event" GUID="NBjN//mZQUOP4relAH4rmA=="/>
<POI MapID="1422" xpos="535.555" ypos="82.3955" zpos="687.212" type="leag.eod.arb.growth.wp" GUID="b1t0dKTSG0uY0vpltQil5w==" copy="[&BL8MAAA=]" copy-message="Monastery Waypoint, Seitung Province"/>
<Trail type="leag.eod.arb.growth.7" trailData="Data/EoD/Character Growth 7.trl" color="8E00C6"/>
<POI MapID="1442" xpos="-488.172" ypos="98.427" zpos="-159.489" type="leag.eod.arb.growth.talk" GUID="LsxgX6AFwEmEHHqdx5bnjQ=="/>
<POI MapID="1442" xpos="-488.172" ypos="98.427" zpos="-159.489" type="leag.eod.arb.growth.wp" GUID="dBDzF7hSFUqJxkEyDHZxPA==" copy="[&BMwMAAA=]" copy-message="Kropa Waypoint, Echovald Wilds"/>
<Trail type="leag.eod.arb.growth.8" trailData="Data/EoD/Character Growth 8.trl" color="8E00C6"/>
<POI MapID="1452" xpos="-82.233" ypos="119.397" zpos="-674.228" type="leag.eod.arb.growth.talk" GUID="AA7+7snn1EubRizt4OFO7g=="/>
<POI MapID="1452" xpos="-71.3211" ypos="118.096" zpos="-673.821" type="leag.eod.arb.growth.8.protect" GUID="39KK4+OveEGaVHXOWIhuXQ=="/>
<POI MapID="1452" xpos="-82.0539" ypos="117.333" zpos="-673.555" type="leag.eod.arb.growth.wp" GUID="hoTi+rAyhUOQuRJBKZilvQ==" copy="[&BGMNAAA=]" copy-message="Arborstone Waypoint, Arborstone"/>
<Trail type="leag.eod.arb.growth.10" trailData="Data/EoD/Character Growth 10.trl" color="8E00C6"/>
<POI MapID="1452" xpos="-779.856" ypos="175.778" zpos="-19.7655" type="leag.eod.arb.growth.wp" GUID="K9FNfWbOy0ijpCdHAnwvsQ==" copy="[&BL8MAAA=]" copy-message="Monastery Waypoint, Seitung Province"/>
<POI MapID="1452" xpos="-780.683" ypos="175.645" zpos="-19.5352" type="leag.eod.arb.growth.talk" GUID="aNeTzjmZq0u/DVKINjLQ5Q=="/>
<POI MapID="1452" xpos="111.993" ypos="190.821" zpos="-492.958" type="leag.eod.arb.growth.10.court" GUID="50JamxrPlUCXL3TYUNffeg=="/>
<POI MapID="1452" xpos="711.589" ypos="263.779" zpos="521.572" type="leag.eod.arb.growth.10.perch" GUID="ZwiAyqPX0EevawM2aYeBjQ=="/>
<POI MapID="1452" xpos="268.715" ypos="246.197" zpos="349.843" type="leag.eod.arb.growth.10.altar" GUID="cfTqlyO7UUSXAicLw/2UqA=="/>
<Trail type="leag.eod.arb.growth.11" trailData="Data/EoD/Character Growth 11.trl" color="8E00C6"/>
<POI MapID="1442" xpos="-685.409" ypos="149.403" zpos="-28.6634" type="leag.eod.arb.growth.talk" GUID="xTmpWqw9ZEWjoc6sAxe95g=="/>
<POI MapID="1442" xpos="-684.537" ypos="149.362" zpos="-28.5626" type="leag.eod.arb.growth.wp" GUID="W3Az0d8F6E+sJ0/Qd2+4ZQ==" copy="[&BMYMAAA=]" copy-message="Promenade Waypoint, New Kaineng City"/>
<Trail type="leag.eod.arb.growth.12" trailData="Data/EoD/Character Growth 12.trl" color="8E00C6"/>
<POI MapID="1438" xpos="-502.151" ypos="205.475" zpos="-495.863" type="leag.eod.arb.growth.talk" GUID="ch/QxPLg/k6G9VUIwIwoqg=="/>
<POI MapID="1438" xpos="-502.151" ypos="205.475" zpos="-495.863" type="leag.eod.arb.growth.wp" GUID="l8Fs0AXIP0KptgD9jcfYug==" copy="[&BGMNAAA=]" copy-message="Arborstone Waypoint, Arborstone"/>
<Trail type="leag.eod.arb.growth.14" trailData="Data/EoD/Character Growth 14.trl" color="8E00C6"/>
<POI MapID="1422" xpos="327.923" ypos="149.962" zpos="-875.726" type="leag.eod.arb.growth.talk" GUID="EHOvS6FvVkKyNOoV5LrdHA=="/>
<POI MapID="1422" xpos="327.923" ypos="149.962" zpos="-875.726" type="leag.eod.arb.growth.wp" GUID="E4O7wgv3Z06QaQ53Xu7B7A==" copy="[&BMwMAAA=]" copy-message="Kropa Waypoint, Echovald Wilds"/>
<Trail type="leag.eod.arb.growth.15" trailData="Data/EoD/Character Growth 15.trl" color="8E00C6"/>
<POI MapID="1452" xpos="-271.067" ypos="146.489" zpos="-333.796" type="leag.eod.arb.growth.talk" GUID="NpuwjWZ+ZkKZNyIQwtcZfw=="/>
<POI MapID="1452" xpos="-271.388" ypos="146.386" zpos="-334.058" type="leag.eod.arb.growth.wp" GUID="+qs950+aV0aCoVZlKOpPPw==" copy="[&BGMNAAA=]" copy-message="Arborstone Waypoint, Arborstone"/>
<!-- Hide-and-Seek -->
<Trail type="leag.eod.arb.has" trailData="Data/EoD/Hide-and-Seek in Arb To.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.arb.has" trailData="Data/EoD/Hide-and-Seek in Arb.trl"/>
<POI MapID="1428" xpos="-724.224" ypos="106.158" zpos="457.285" type="leag.eod.arb.has.loc" GUID="A5ExN9x9uUCapPZBq4QLVA=="/>
<POI MapID="1428" xpos="-857.455" ypos="225.409" zpos="448.379" type="leag.eod.arb.has.loc" GUID="0QWkgjTuEkWrGsa63EWcNg=="/>
<POI MapID="1428" xpos="-841.598" ypos="160.886" zpos="587.809" type="leag.eod.arb.has.loc" GUID="BvwT0cbjgkSbE+UnFFLigQ=="/>
<POI MapID="1428" xpos="-908.288" ypos="162.938" zpos="595.532" type="leag.eod.arb.has.loc" GUID="2u9MAllHNUCwuJ6kMq9IIA=="/>
<POI MapID="1428" xpos="-865.185" ypos="128.393" zpos="631.051" type="leag.eod.arb.has.loc" GUID="S4UWRcT5G0+Fp42gx2hicA=="/>
<POI MapID="1428" xpos="-944.415" ypos="129.02" zpos="552.217" type="leag.eod.arb.has.loc" GUID="ek4PAoL0I0OCln5HrnHijQ=="/>
<POI MapID="1428" xpos="-783.1" ypos="44.0992" zpos="595.463" type="leag.eod.arb.has.loc" GUID="1ry8gtJVm0mjJ0F9F0pekg=="/>
<POI MapID="1428" xpos="-862.222" ypos="33.0018" zpos="455.033" type="leag.eod.arb.has.loc" GUID="f34B0x+OSEKHydrn4M20hA=="/>
<POI MapID="1428" xpos="-792.044" ypos="160.936" zpos="447.931" type="leag.eod.arb.has.loc" GUID="Jg5Zf0AtCUS7c2FkvfDj3A=="/>
<POI MapID="1428" xpos="-690.786" ypos="225.209" zpos="518.792" type="leag.eod.arb.has.loc" GUID="dwT+uIHhmki/f/D94q9AtA=="/>
<!-- Looking Back -->
<Trail type="leag.eod.arb.looking.1" trailData="Data/EoD/Looking Back 1.trl" color="179B4A"/>
<POI MapID="1428" xpos="-756.766" ypos="5.74082" zpos="479.698" type="leag.eod.arb.looking.talk" GUID="c9LiPoE/dEmARoHtufrE9w=="/>
<POI MapID="1428" xpos="-756.766" ypos="5.74082" zpos="479.698" type="leag.eod.arb.looking.wp" GUID="fQUAi+nigUeqDkWpeGxmgg==" copy="[&BCANAAA=]" copy-message="Lutgardis Plaza Waypoint, New Kaineng City"/>
<Trail type="leag.eod.arb.looking.2" trailData="Data/EoD/Looking Back 2.trl" color="179B4A"/>
<POI MapID="1438" xpos="998.2504" ypos="93.16058" zpos="602.6225" type="leag.eod.arb.looking.talk" GUID="j8VVyYvMsEmJnaAIZ4+dyA=="/>
<POI MapID="1438" xpos="997.827" ypos="93.0992" zpos="603.014" type="leag.eod.arb.looking.wp" GUID="tWUoRauWWE2yk6Pia/yfRw==" copy="[&BBkNAAA=]" copy-message="Ministry Ward Waypoint"/>
<Trail type="leag.eod.arb.looking.3" trailData="Data/EoD/Looking Back 3.trl" color="179B4A"/>
<POI MapID="1438" xpos="-12.6158" ypos="120.195" zpos="-508.066" type="leag.eod.arb.looking.talk" GUID="hMy2HV7+UUacfpoPvdsDxA=="/>
<POI MapID="1438" xpos="-12.6158" ypos="120.195" zpos="-508.066" type="leag.eod.arb.looking.wp" GUID="LRxfqXJFuUmSzUcIVqpbRQ==" copy="[&BBYNAAA=] or [&BMYMAAA=]" copy-message="Garden Heights Waypoint
OR
Promenade Waypoint"/>
<Trail type="leag.eod.arb.looking.4" trailData="Data/EoD/Looking Back 4 Alt.trl" color="179B4A"/>
<Trail type="leag.eod.arb.looking.4" trailData="Data/EoD/Looking Back 4.trl" color="179B4A"/>
<POI MapID="1438" xpos="-709.112" ypos="153.212" zpos="-25.6427" type="leag.eod.arb.looking.talk" GUID="IObi+WZ9pkO6ebTz4KQEgw=="/>
<POI MapID="1438" xpos="-709.112" ypos="153.212" zpos="-25.6427" type="leag.eod.arb.looking.wp" GUID="gVMJt8y4T0msd/lmxTspEA==" copy="[&BGQNAAA=]" copy-message="Haiju Docks Waypoint, Seitung Province"/>
<Trail type="leag.eod.arb.looking.5" trailData="Data/EoD/Looking Back 5.trl" color="179B4A"/>
<POI MapID="1442" xpos="327.648" ypos="0.544508" zpos="688.845" type="leag.eod.arb.looking.talk" GUID="xeoT7goJJE6X6t2+Uw/HrA=="/>
<POI MapID="1442" xpos="327.648" ypos="0.544508" zpos="688.845" type="leag.eod.arb.looking.wp" GUID="Ww16C0oghEiZx6SbeefEpg==" copy="[&BL8MAAA=]" copy-message="Monastery Waypoint"/>
<Trail type="leag.eod.arb.looking.6" trailData="Data/EoD/Looking Back 6.trl" color="179B4A"/>
<POI MapID="1442" xpos="-988.047" ypos="133.251" zpos="-186.786" type="leag.eod.arb.looking.talk" GUID="Dac+pOy+bEe9LQWJZURt4w=="/>
<POI MapID="1442" xpos="-988.047" ypos="133.251" zpos="-186.786" type="leag.eod.arb.looking.wp" GUID="MIQkDwiVp0OUwsrsW6l4NQ==" copy="[&BGUNAAA=]" copy-message="Daigo Ward Waypoint"/>
<Trail type="leag.eod.arb.looking.7" trailData="Data/EoD/Looking Back 7.trl" color="179B4A"/>
<POI MapID="1442" xpos="-30.3207" ypos="139.072" zpos="190.104" type="leag.eod.arb.looking.talk" GUID="uxRo3fFpWUuhsY8pcHc18w=="/>
<POI MapID="1442" xpos="-30.3207" ypos="139.072" zpos="190.104" type="leag.eod.arb.looking.wp" GUID="nOjToVkEdEeTNEP3kjb+ng==" copy="[&BJ4MAAA=]" copy-message="Village Waypoint"/>
<Trail type="leag.eod.arb.looking.8" trailData="Data/EoD/Looking Back 8.trl" color="179B4A"/>
<POI MapID="1442" xpos="157.29" ypos="67.1857" zpos="-112.243" type="leag.eod.arb.looking.wp" GUID="QwJSEUqxp02b7psQYZCCkQ=="/>
<POI MapID="1442" xpos="157.29" ypos="67.1857" zpos="-112.243" type="leag.eod.arb.looking.talk" GUID="IVfDd8Stf0KBMAuKKQMpYQ==" copy="[&BKIMAAA=]" copy-message="Jade Quarry Waypoint"/>
<Trail type="leag.eod.arb.looking.9" trailData="Data/EoD/Looking Back 9.trl" color="179B4A"/>
<POI MapID="1422" xpos="-192.059" ypos="141.483" zpos="591.351" type="leag.eod.arb.looking.wp" GUID="T3y418l5iU2xNEVMYgu7OQ=="/>
<POI MapID="1422" xpos="-192.059" ypos="141.483" zpos="591.351" type="leag.eod.arb.looking.talk" GUID="LHP6/IsOHEq6D5xISqcAKg==" copy="[&BPEMAAA=]" copy-message="Frozen Sea Waypoint"/>
<Trail type="leag.eod.arb.looking.10" trailData="Data/EoD/Looking Back 10.trl" color="179B4A"/>
<POI MapID="1422" xpos="17.9089" ypos="190.425" zpos="-310.187" type="leag.eod.arb.looking.talk" GUID="8yLgernf70W8ngvmG+YDpQ=="/>
<Trail type="leag.eod.arb.looking.11" trailData="Data/EoD/Looking Back 11.trl" color="179B4A"/>
<POI MapID="1422" xpos="464.356" ypos="183.869" zpos="-820.249" type="leag.eod.arb.looking.talk" GUID="h/nbNxTuX0mgtWEuDDCURg=="/>
<Trail type="leag.eod.arb.looking.12" trailData="Data/EoD/Looking Back 12.trl" color="179B4A"/>
<POI MapID="1422" xpos="570.663" ypos="161.764" zpos="-40.6329" type="leag.eod.arb.looking.talk" GUID="+IjdS1D9pU2c6Lclas3Ymg=="/>
<!-- Lost Lore - https://wiki.guildwars2.com/wiki/Lost_Lore#Walkthrough -->
<Trail type="leag.eod.arb.lore.1" trailData="Data/EoD/Lost Lore 1.trl"/>
<Trail type="leag.eod.arb.lore.2" trailData="Data/EoD/Lost Lore 2.trl"/>
<Trail type="leag.eod.arb.lore.3" trailData="Data/EoD/Lost Lore 3.trl"/>
<POI MapID="1442" xpos="-664.259" ypos="148.883" zpos="-17.8518" type="leag.eod.arb.lore.event" GUID="MAvcA2rWwE+y4oQilOumeQ=="/>
<Trail type="leag.eod.arb.lore.4" trailData="Data/EoD/Lost Lore 4.trl"/>
<POI MapID="1442" xpos="-925.396" ypos="132.531" zpos="649.521" type="leag.eod.arb.lore.event" GUID="uXmLZUVX0EeLcqoSj8fJHQ=="/>
<Trail type="leag.eod.arb.lore.5" trailData="Data/EoD/Lost Lore 5.trl"/>
<POI MapID="1438" xpos="-506.902" ypos="206.821" zpos="-459.749" type="leag.eod.arb.lore.event" GUID="1xNeVAcGqUq82Pw+JkliCg=="/>
<Trail type="leag.eod.arb.lore.6" trailData="Data/EoD/Lost Lore 6.trl"/>
<Trail type="leag.eod.arb.lore.7" trailData="Data/EoD/Lost Lore 7.trl"/>
<Trail type="leag.eod.arb.lore.8" trailData="Data/EoD/Lost Lore 8.trl"/>
<Trail type="leag.eod.arb.lore.8" trailData="Data/EoD/Lost Lore 8 Instance.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" miniMapVisibility="0"/>
<Trail type="leag.eod.arb.lore.9" trailData="Data/EoD/Lost Lore 9.trl"/>
<POI MapID="1442" xpos="176.678" ypos="82.0966" zpos="-353.084" type="leag.eod.arb.lore.read" GUID="AyzdRNQRe0ayC6aHPCHTzw=="/>
<Trail type="leag.eod.arb.lore.10" trailData="Data/EoD/Lost Lore 10.trl"/>
<!-- The End of the Celestial Ministry -->
<Trail type="leag.eod.arb.celestial.1" trailData="Data/EoD/The End of the Celestial Ministry 1.trl" color="E1553D"/>
<POI MapID="1428" xpos="-680.365" ypos="119.215" zpos="590.185" type="leag.eod.arb.celestial.wp" GUID="qKr9ZMwNDUu6k3mYiu2CSA==" copy="2. [&BBkNAAA=] - 5. [&BCANAAA=]" copy-message="2. Ministry Ward Waypoint, New Kaineng City
5, 9 & 13. Lutgardis Plaza Waypoint, New Kaineng City"/>
<Trail type="leag.eod.arb.celestial.2" trailData="Data/EoD/The End of the Celestial Ministry 2.trl" color="E1553D"/>
<POI MapID="1438" xpos="-199.626" ypos="2.62134" zpos="-393.813" type="leag.eod.arb.celestial.talk" GUID="mi0ggCNSWEGCWZgg3Tiz3w=="/>
<Trail type="leag.eod.arb.celestial.3" trailData="Data/EoD/The End of the Celestial Ministry 3.trl" color="E1553D"/>
<POI MapID="1438" xpos="-523.656" ypos="207.011" zpos="-533.424" type="leag.eod.arb.celestial.wp" GUID="saLyDloi+0mXgLpR2RjLsg==" copy="[&BGMNAAA=]" copy-message="Arborstone Waypoint, Arborstone"/>
<Trail type="leag.eod.arb.celestial.5" trailData="Data/EoD/The End of the Celestial Ministry 5.trl" color="E1553D"/>
<POI MapID="1438" xpos="270.729" ypos="2.62778" zpos="214.159" type="leag.eod.arb.celestial.wp" GUID="PkVpgG/uvE+TSjxQHxtc5g==" copy="[&BLUAAAA=]" copy-message="EVENT: Highpass Haven Waypoint, Snowden Drifts
OR
STORY LWS3: Out of the Shadows, Eir's Memorial"/>
<POI MapID="31" xpos="983.737" ypos="44.648" zpos="307.635" type="leag.eod.arb.celestial.event" GUID="0JyDvhQN6EWcu9L/w+feRQ=="/>
<!-- A Blooming Errand -->
<Trail type="leag.eod.arb.celestial.6.1" trailData="Data/EoD/A Blooming Errand 1a.trl" color="E1553D"/>
<Trail type="leag.eod.arb.celestial.6.1" trailData="Data/EoD/A Blooming Errand 1b.trl" color="E1553D"/>
<Trail type="leag.eod.arb.celestial.6.2" trailData="Data/EoD/A Blooming Errand 2.trl" color="E1553D"/>
<POI MapID="21" xpos="-68.9601" ypos="0.566464" zpos="141.97" type="leag.eod.arb.celestial.6.ygf" GUID="KCwioqS74Uy1N/sDG8WDJA==" iconFile="Data/Images/Icons/Yellow Gentian Flower.png"/>
<POI MapID="21" xpos="-69.4054" ypos="0.665293" zpos="142.011" type="leag.eod.arb.celestial.wp" GUID="z/3zTav+cE6mHLu8anAeRA==" copy="[&BHUBAAA=]" copy-message="Darkriven Waypoint, Wayfarer Foothills"/>
<Trail type="leag.eod.arb.celestial.6.3" trailData="Data/EoD/A Blooming Errand 3.trl" color="E1553D"/>
<POI MapID="28" xpos="204.1961" ypos="-13.24049" zpos="-532.1114" type="leag.eod.arb.celestial.6.pgf" GUID="cQ94o6Op6EqbaMjPVquWLw==" iconFile="Data/Images/Icons/Pungent Gladiolus Flower.png"/>
<POI MapID="28" xpos="204.309" ypos="-13.2701" zpos="-532.117" type="leag.eod.arb.celestial.wp" GUID="LWEXvhK1s02tBxmnl0GDxg==" copy="[&BGUNAAA=]" copy-message="Daigo Ward Waypoint, Seitung Province"/>
<POI MapID="28" xpos="212.8439" ypos="-1.142876" zpos="-527.8752" type="leag.eod.arb.celestial.6.event" GUID="gwkFwsg4dE+i+Ckx/y4v2w=="/>
<Trail type="leag.eod.arb.celestial.6.4" trailData="Data/EoD/A Blooming Errand 4 Alt.trl" color="E1553D" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.arb.celestial.6.4" trailData="Data/EoD/A Blooming Errand 4.trl" color="E1553D"/>
<POI MapID="1442" xpos="911.3355" ypos="28.75722" zpos="-178.7561" type="leag.eod.arb.celestial.6.4" GUID="WKTD/3bZn0epz2SA0JndIQ==" iconFile="Data/Images/Mounts/Grab Reins.png"/>
<POI MapID="1442" xpos="639.908" ypos="29.2877" zpos="-179.907" type="leag.eod.arb.celestial.event" GUID="70FtZBJXDEeWENtsEoQL0Q=="/>
<POI MapID="1442" xpos="641.994" ypos="26.3875" zpos="-195.824" type="leag.eod.arb.celestial.wp" GUID="L/XHysQzyUSvoSt7/TOyeA==" copy="[&BCANAAA=]" copy-message="Lutgardis Plaza Waypoint, New Kaineng City"/>
<Trail type="leag.eod.arb.celestial.9" trailData="Data/EoD/The End of the Celestial Ministry 9.trl" color="E1553D"/>
<!-- Brothers in Harms [H] -->
<POI MapID="1438" xpos="-346.313" ypos="260.88" zpos="515.893" type="leag.eod.arb.celestial.10.1" GUID="a+juZH//lEqqYRQ9YKw0Ag=="/>
<POI MapID="1438" xpos="905.59" ypos="1.01331" zpos="-327.606" type="leag.eod.arb.celestial.10.2" GUID="mIkp0nydYk6FZNbnM9cNaQ=="/>
<POI MapID="1438" xpos="-213.291" ypos="198.152" zpos="582.128" type="leag.eod.arb.celestial.10.3" GUID="Eme8oJ/8MUWMImYf503gGA=="/>
<POI MapID="1438" xpos="-291.253" ypos="228.171" zpos="572.594" type="leag.eod.arb.celestial.10.4" GUID="FKyd94kxUka+/M04/v9Waw=="/>
<POI MapID="1438" xpos="-369.221" ypos="242.447" zpos="462.758" type="leag.eod.arb.celestial.10.4" GUID="BBG1BCXvbUWReswvWejhRA=="/>
<POI MapID="1438" xpos="173.083" ypos="2.62577" zpos="446.307" type="leag.eod.arb.celestial.10.4" GUID="x7+BAUvnZ0mieqKCE/Mn+w=="/>
<POI MapID="1438" xpos="220.828" ypos="2.6214" zpos="558.337" type="leag.eod.arb.celestial.10.4" GUID="0V96HUiPIk6E6pJPkkJiyA=="/>
<POI MapID="1438" xpos="533.005" ypos="2.76487" zpos="153.526" type="leag.eod.arb.celestial.10.4" GUID="GIRSqXNZM0WtlUHsLb7Elw=="/>
<POI MapID="1438" xpos="643.062" ypos="5.18717" zpos="141.282" type="leag.eod.arb.celestial.10.4" GUID="jWugFQK3+kGFu2xGhs6CQg=="/>
<POI MapID="1438" xpos="148.642" ypos="2.62143" zpos="-426.076" type="leag.eod.arb.celestial.10.4" GUID="NiQkx7jctUqZ0F3vzjK0nA=="/>
<POI MapID="1438" xpos="84.5561" ypos="2.80082" zpos="-494.484" type="leag.eod.arb.celestial.10.4" GUID="wOS8QHt3vEWyz7H7ywwQ7A=="/>
<POI MapID="1438" xpos="-294.696" ypos="207.991" zpos="-606.186" type="leag.eod.arb.celestial.10.4" GUID="5WveQE/NNEW47XIwI1tg7g=="/>
<POI MapID="1438" xpos="-358.817" ypos="208.074" zpos="-524.788" type="leag.eod.arb.celestial.10.4" GUID="VgMHs8mqa0uAnZJ6m1K+PQ=="/>
<POI MapID="1438" xpos="811.488" ypos="18.6659" zpos="-543.769" type="leag.eod.arb.celestial.10.5" GUID="O0cGMunugUWOLv3unHVP7A=="/>
<POI MapID="1438" xpos="-85.6419" ypos="120.158" zpos="664.478" type="leag.eod.arb.celestial.10.6" GUID="Iey665heM0ixRY6Zhmaukw=="/>
<POI MapID="1438" xpos="-459.803" ypos="120.176" zpos="-208.314" type="leag.eod.arb.celestial.10.7" GUID="xPrewnEpNkyG3WN5oXdw7A=="/>
<POI MapID="1438" xpos="-543.537" ypos="121.496" zpos="-164.927" type="leag.eod.arb.celestial.10.9" GUID="L+aSgpsCT0SLy7YWyVF9EQ=="/>
<POI MapID="1438" xpos="-592.415" ypos="198.804" zpos="-296.397" type="leag.eod.arb.celestial.10.10" GUID="IsRHhjJIWES90127Oa39bA=="/>
<POI MapID="1438" xpos="-112.588" ypos="120.156" zpos="538.431" type="leag.eod.arb.celestial.10.9" GUID="W1kRZJMVYEyZzRVUIZUksg=="/>
<POI MapID="1438" xpos="497.099" ypos="2.63114" zpos="36.2491" type="leag.eod.arb.celestial.10.9" GUID="bFQVeXrkj0WbcV8Jd58xDg=="/>
<POI MapID="1438" xpos="121.864" ypos="2.8227" zpos="-593.295" type="leag.eod.arb.celestial.10.9" GUID="xjjHDbNh+EqKgGJL1qy6Jw=="/>
<POI MapID="1438" xpos="258.638" ypos="2.62128" zpos="-349.478" type="leag.eod.arb.celestial.10.8" GUID="l2zodNyW3k6dDwv+PIX2kw=="/>
<POI MapID="1438" xpos="223.784" ypos="2.69549" zpos="621.062" type="leag.eod.arb.celestial.10.8" GUID="+z9jHyQweEanDvyyBVlWyg=="/>
<!-- Pure Enmity [H] -->
<Trail type="leag.eod.arb.celestial.13" trailData="Data/EoD/Pure Enmity.trl" color="E1553D"/>
<POI MapID="1438" xpos="792.942" ypos="46.94" zpos="307.281" type="leag.eod.arb.celestial.13.book" GUID="zm9wB4M1+UOuGKn1PiGThA=="/>
<POI MapID="1438" xpos="926.675" ypos="166.528" zpos="372.658" type="leag.eod.arb.celestial.13.book" GUID="eAWK62XbJkqW2S7v+yK8Vg=="/>
<POI MapID="1438" xpos="753.584" ypos="48.6825" zpos="506.661" type="leag.eod.arb.celestial.13.book" GUID="gmXuOysSyEyt9Zehpby0fQ=="/>
<POI MapID="1438" xpos="1031.37" ypos="2.64989" zpos="624.695" type="leag.eod.arb.celestial.13.book" GUID="2wB98WLufk6aksMEJA/i5w=="/>
<POI MapID="1438" xpos="1031.36" ypos="2.652" zpos="624.417" type="leag.eod.arb.celestial.wp" GUID="U1hcS4bE7EqjI4SnHANf0A=="/>
<!-- The Fate of House zu Heltzer -->
<Trail type="leag.eod.arb.fate.1" trailData="Data/EoD/The Fate of House zu Heltzer 1.trl" color="B863FF"/>
<POI MapID="1452" xpos="-668.118" ypos="168.353" zpos="91.4511" type="leag.eod.arb.fate.talk" GUID="XDvJDB0PZEKbj3vB91Z8Cw=="/>
<Trail type="leag.eod.arb.fate.1" trailData="Data/EoD/The Fate of House zu Heltzer 2.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" animSpeed="0" color="B863FF"/>
<POI MapID="1452" xpos="-622.854" ypos="166.276" zpos="113.008" type="leag.eod.arb.fate.event" GUID="rWGu2xNSnE+diYjWIG6gAg=="/>
<Trail type="leag.eod.arb.fate.1" trailData="Data/EoD/The Fate of House zu Heltzer 4.trl" color="B863FF"/>
<POI MapID="1452" xpos="-433.2334" ypos="212.3793" zpos="687.3163" type="leag.eod.arb.fate.4" GUID="46hhBCaE30OtUADQiQiWdA==" info="Pay your Respects.

/bow /kneel or /salute
" infoRange="2" iconFile="Data/Images/Icons/Blank.png"/>
<POI MapID="1452" xpos="-433.2334" ypos="212.3793" zpos="687.3163" type="leag.eod.arb.fate.wp" GUID="M/S+XDadRU2CL3uNQ5BPCg==" copy="[&BMoMAAA=]" copy-message="Waypoint zu Heltzer"/>
<!-- The Fate of House zu Heltzer Part 6 - Tracing the Tapestry [H] -->
<Trail type="leag.eod.arb.fate.6.1" trailData="Data/EoD/Tracing the Tapestry 1.trl" color="B863FF"/>
<POI MapID="50" xpos="-284.95" ypos="46.5458" zpos="196.534" type="leag.eod.arb.fate.talk" GUID="qVhlMZlQDEO8W7wFN/ReZw=="/>
<POI MapID="50" xpos="-284.95" ypos="46.5458" zpos="196.534" type="leag.eod.arb.fate.wp" GUID="gEi5bMoeOkCvphHK1C5uQw==" copy="[&BOkAAAA=]" copy-message="Durmund Priory Waypoint, Lornar's Pass"/>
<Trail type="leag.eod.arb.fate.6.2" trailData="Data/EoD/Tracing the Tapestry 2.trl" color="B863FF"/>
<Trail type="leag.eod.arb.fate.6.2" trailData="Data/EoD/Tracing the Tapestry 2 Instance.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" animSpeed="0" color="B863FF"/>
<POI MapID="828" xpos="-529.949" ypos="152.865" zpos="646.028" type="leag.eod.arb.fate.wp" GUID="oqhd8EfLuE+/3VYLUDM2eA==" copy="[&BDwBAAA=]" copy-message=" Caledon Haven Waypoint, Caledon Forest"/>
<Trail type="leag.eod.arb.fate.6.3" trailData="Data/EoD/Tracing the Tapestry 3.trl" color="B863FF"/>
<POI MapID="34" xpos="78.72223" ypos="68.15913" zpos="531.1218" type="leag.eod.arb.fate.talk" GUID="Uy8pdnNmfU2fiLGvStwvSw=="/>
<POI MapID="34" xpos="78.7222" ypos="67.1591" zpos="531.122" type="leag.eod.arb.fate.wp" GUID="o7N+H2BnM0CYQf0/CA1uPw==" copy="[&BGUNAAA=]" copy-message="Daigo Ward Waypoint, Seitung Province"/>
<Trail type="leag.eod.arb.fate.6.4" trailData="Data/EoD/Tracing the Tapestry 4.trl" color="B863FF"/>
<POI MapID="1442" xpos="158.2735" ypos="77.08424" zpos="350.5231" type="leag.eod.arb.fate.6.4" GUID="CDqVnjt63UywyjoFPbxqpg==" info="Take Taxi to Eastern Wilds" infoRange="2" iconFile="Data/Images/Icons/Blank.png"/>
<Trail type="leag.eod.arb.fate.6.4" trailData="Data/EoD/Tracing the Tapestry 4 Taxi.trl" color="B863FF"/>
<Trail type="leag.eod.arb.fate.6.4" trailData="Data/EoD/Tracing the Tapestry 4 Skiff.trl" color="B863FF"/>
<POI MapID="1442" xpos="780.368" ypos="-1.04614" zpos="-686.525" type="leag.eod.arb.fate.wp" GUID="Q5yZNvJmKU6RugHIFN8xGA==" copy="[&BCANAAA=]" copy-message="Lutgardis Plaza Waypoint, New Kaineng City"/>
<Trail type="leag.eod.arb.fate.6.5" trailData="Data/EoD/Tracing the Tapestry 5.trl" color="B863FF"/>
<POI MapID="1438" xpos="466.994" ypos="20.4574" zpos="15.8182" type="leag.eod.arb.fate.talk" GUID="1JAQLazK2kGG6J4qHr2j9A=="/>
<POI MapID="1438" xpos="466.128" ypos="20.137" zpos="15.7521" type="leag.eod.arb.fate.wp" GUID="Q2i7oYjd00OfK3JdBBCSUw==" copy="[&BNQMAAA=]" copy-message="Qinkai Waypoint, The Echovald Wilds"/>
<Trail type="leag.eod.arb.fate.6.6" trailData="Data/EoD/Tracing the Tapestry 6a.trl" color="B863FF"/>
<Trail type="leag.eod.arb.fate.6.6" trailData="Data/EoD/Tracing the Tapestry 6b.trl" color="B863FF"/>
<Trail type="leag.eod.arb.fate.6.6" trailData="Data/EoD/Tracing the Tapestry 6c.trl" color="B863FF"/>
<Trail type="leag.eod.arb.fate.6.6" trailData="Data/EoD/Tracing the Tapestry 6d.trl" color="B863FF"/>
<Trail type="leag.eod.arb.fate.6.6" trailData="Data/EoD/Tracing the Tapestry 6e.trl" color="B863FF"/>
<POI MapID="1452" xpos="568.1929" ypos="133.5146" zpos="457.9283" type="leag.eod.arb.fate.event" GUID="j9njn5ukKkSYkBcZfe9rCA=="/>
<POI MapID="1452" xpos="370.2808" ypos="99.5564" zpos="235.7583" type="leag.eod.arb.fate.6.6" GUID="4bMW8yVAh06e5RucI+eGlg==" iconFile="Data/Images/Icons/Orb - Purple.png" mapDisplaySize="32"/>
<POI MapID="1452" xpos="370.2808" ypos="100.0564" zpos="235.7583" type="leag.eod.arb.fate.wp" GUID="LvTcKOWhjkGTF6E9nprU7Q==" copy="[&BKIMAAA=]" copy-message="Jade Quarry Waypoint, Dragon's End"/>
<Trail type="leag.eod.arb.fate.6.7" trailData="Data/EoD/Tracing the Tapestry 7.trl" color="B863FF"/>
<POI MapID="1422" xpos="-457.057" ypos="183.147" zpos="-100.412" type="leag.eod.arb.fate.event" GUID="MucKQQ65ek2vL9bLtwfoJQ=="/>
<POI MapID="1422" xpos="-478.09" ypos="185.152" zpos="-99.5918" type="leag.eod.arb.fate.wp" GUID="Za72Twewwka8G3y5CjA/1w==" copy="[&BMcMAAA=]" copy-message="Mori Village Waypoint, The Echovald Wilds"/>
<Trail type="leag.eod.arb.fate.7" trailData="Data/EoD/The Fate of House zu Heltzer 7.trl" color="B863FF"/>
<POI MapID="1452" xpos="1014.05" ypos="9.56634" zpos="-699.16" type="leag.eod.arb.fate.talk" GUID="MAFJyOXixU+tIqba2shE+g=="/>
<POI MapID="1452" xpos="1015.29" ypos="7.86234" zpos="-698.798" type="leag.eod.arb.fate.wp" GUID="fmsmKj5uLkWcN4AYUdU3DA==" copy="[&BGMNAAA=]" copy-message="Arborstone Waypoint, Arborstone"/>
<Trail type="leag.eod.arb.fate.7" trailData="Data/EoD/The Fate of House zu Heltzer 8.trl" color="B863FF"/>
<!-- Zunraa's Gift -->
<POI MapID="1428" xpos="-1026.34" ypos="120.852" zpos="697.956" type="leag.eod.arb.zunraa.loc" GUID="IHlvIq8hmUa1wSwFMaMuOQ=="/>
<!-- SEITUNG PROVINCE-->
<!-- Authorial Intent -->
<Trail type="leag.eod.sp.author" trailData="Data/EoD/Authorial Intent.trl"/>
<POI MapID="1442" xpos="-861.178" ypos="115.622" zpos="-128.7" type="leag.eod.sp.author.start" GUID="vqw904IjdkqSL0wv7Pn0Nw=="/>
<!-- Bian's World Tour -->
<Trail type="leag.eod.sp.bian.patrol" trailData="Data/EoD/Bian's Route.trl"/>
<Trail type="leag.eod.sp.bian.grove" trailData="Data/EoD/Bian - The Grove.trl"/>
<Trail type="leag.eod.sp.bian.citadel" trailData="Data/EoD/Bian - Black Citadel.trl"/>
<Trail type="leag.eod.sp.bian.rata" trailData="Data/EoD/Bian - Rata Sum.trl"/>
<Trail type="leag.eod.sp.bian.divinity" trailData="Data/EoD/Bian - Divinity's Reach.trl"/>
<Trail type="leag.eod.sp.bian.la" trailData="Data/EoD/Bian - Lion's Arch.trl"/>
<Trail type="leag.eod.sp.bian.hoelbrak" trailData="Data/EoD/Bian - Hoelbrak.trl"/>
<!-- Daigo Ward Raptor Ride -->
<Trail type="leag.eod.sp.dwrr" trailData="Data/EoD/Daigo Ward Raptor Ride Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.sp.dwrr" trailData="Data/EoD/Daigo Ward Raptor Ride.trl"/>
<POI MapID="1442" xpos="-38.8222" ypos="138.775" zpos="179.088" type="leag.eod.sp.dwrr.start" GUID="EL/kEcAMfUmgqM4/UA6qig=="/>
<!-- Shing Jea Monastery Raptor Ride -->
<Trail type="leag.eod.sp.sjmrr" trailData="Data/EoD/Shing Jea Monastery Raptor Ride Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.sp.sjmrr" trailData="Data/EoD/Shing Jea Monastery Raptor Ride.trl"/>
<POI MapID="1442" xpos="-883.794" ypos="153.996" zpos="-19.8938" type="leag.eod.sp.sjmrr.start" GUID="cLriE9jvgEGwTa7sHbpwmg=="/>
<!-- Derelict Temple Raptor Ride -->
<Trail type="leag.eod.sp.dtrr" trailData="Data/EoD/Derelict Temple Raptor Ride Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.sp.dtrr" trailData="Data/EoD/Derelict Temple Raptor Ride.trl"/>
<POI MapID="1442" xpos="940.763" ypos="73.9286" zpos="-89.4076" type="leag.eod.sp.dtrr.start" GUID="kku2njn3j0K4CKIa1DZFow=="/>
<!-- Seitung Prison Springer Ride -->
<Trail type="leag.eod.sp.spsr" trailData="Data/EoD/Seitung Prison Springer Ride Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.sp.spsr" trailData="Data/EoD/Seitung Prison Springer Ride.trl"/>
<POI MapID="1442" xpos="-57.8501" ypos="53.5705" zpos="-385.367" type="leag.eod.sp.spsr.start" GUID="4AvzcLpVxEaDIDYWw8P5fw=="/>
<!-- Illuminating Seitung Province -->
<Trail type="leag.eod.sp.isp" trailData="Data/EoD/Lanterns - Seitung 1.trl"/>
<Trail type="leag.eod.sp.isp" trailData="Data/EoD/Lanterns - Seitung 2.trl"/>
<Trail type="leag.eod.sp.isp" trailData="Data/EoD/Lanterns - Seitung 3.trl"/>
<Trail type="leag.eod.sp.isp" trailData="Data/EoD/Lanterns - Seitung 4.trl"/>
<Trail type="leag.eod.sp.isp" trailData="Data/EoD/Lanterns - Seitung 5 Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.sp.isp" trailData="Data/EoD/Lanterns - Seitung 5.trl"/>
<POI MapID="1442" xpos="-87.4225" ypos="14.5839" zpos="-195.099" type="leag.eod.sp.isp.start" GUID="lrZVHnZGUUG6Hl3pDd+UIA=="/>
<POI MapID="1442" xpos="-1006.276" ypos="98.29433" zpos="-17.66969" type="leag.eod.sp.isp.wp" GUID="YLx3CkRVrk6tmcNENp3qZA==" copy="[&BL8MAAA=]" copy-message="Monastery Waypoint"/>
<POI MapID="1442" xpos="-419.2328" ypos="0.5152985" zpos="196.3518" type="leag.eod.sp.isp.wp" GUID="hO3p3rLdY0uMtUk/P/BN8A==" copy="[&BGUNAAA=]" copy-message="Daigo Ward Waypoint"/>
<POI MapID="1442" xpos="-199.092" ypos="0.531688" zpos="160.306" type="leag.eod.sp.isp.wp" GUID="mo1WjmenEkClaS8XIuzDzw==" copy="[&BGUNAAA=]" copy-message="Daigo Ward Waypoint"/>
<POI MapID="1442" xpos="-986.095" ypos="134.972" zpos="411.505" type="leag.eod.sp.isp.wp" GUID="M2ZQtNfdV02mUuovCfyfpg==" copy="[&BGUNAAA=]" copy-message="Daigo Ward Waypoint"/>
<POI MapID="1442" xpos="-74.2627" ypos="14.479" zpos="-183.181" type="leag.eod.sp.isp.trail.1" GUID="S3icaQ9IWEmv/ogFek6dYg=="/>
<POI MapID="1442" xpos="-858.9" ypos="115.719" zpos="-112.985" type="leag.eod.sp.isp.trail.2" GUID="PK5m7WjZ5UqNqSfCjYEYiQ=="/>
<POI MapID="1442" xpos="67.2297" ypos="113.674" zpos="257.143" type="leag.eod.sp.isp.trail.3" GUID="7J58U1omzUmLUnAuVTRyMA=="/>
<POI MapID="1442" xpos="70.4668" ypos="113.373" zpos="257.157" type="leag.eod.sp.isp.trail.4" GUID="RkeK0asUp0yjUVE97j4q0Q=="/>
<POI MapID="1442" xpos="74.615" ypos="113.859" zpos="249.205" type="leag.eod.sp.isp.trail.5" GUID="VPnpmrw7Qk2nzi7V6rhyTA=="/>
<POI MapID="1442" xpos="-56.8257" ypos="16.3922" zpos="-148.147" type="leag.eod.sp.isp.lantern" GUID="mjZvBDm+xkiTWJ5iu6RehA=="/>
<POI MapID="1442" xpos="-70.5683" ypos="16.0119" zpos="-197.75" type="leag.eod.sp.isp.lantern" GUID="x62wTpsDLUady4SwE2/lYw=="/>
<POI MapID="1442" xpos="127.774" ypos="75.4391" zpos="-61.7258" type="leag.eod.sp.isp.lantern" GUID="13SgYFK2a0mvQBDROjbaLw=="/>
<POI MapID="1442" xpos="-196.999" ypos="62.2669" zpos="-75.6134" type="leag.eod.sp.isp.lantern" GUID="nbl9Eqb/SUmPfXL6o7adNw=="/>
<POI MapID="1442" xpos="-304.028" ypos="-0.614323" zpos="-63.5781" type="leag.eod.sp.isp.lantern" GUID="Ecc7MawNyE6JkzRqNWHy2A=="/>
<POI MapID="1442" xpos="-305.289" ypos="2.06901" zpos="-209.72" type="leag.eod.sp.isp.lantern" GUID="S4qAGfBB20GNVeuEGTo7Vg=="/>
<POI MapID="1442" xpos="-183.8" ypos="21.8398" zpos="-297.726" type="leag.eod.sp.isp.lantern" GUID="eKsn1u/EekWEOAo/fZAShQ=="/>
<POI MapID="1442" xpos="-71.0396" ypos="51.8547" zpos="-417.698" type="leag.eod.sp.isp.lantern" GUID="0QbgDrCQW0qPr/sUyaJxzQ=="/>
<POI MapID="1442" xpos="170.905" ypos="74.7949" zpos="-378.858" type="leag.eod.sp.isp.lantern" GUID="FnRBFt/BIUCw6RmZMKHgrg=="/>
<POI MapID="1442" xpos="66.6043" ypos="99.7794" zpos="-656.048" type="leag.eod.sp.isp.lantern" GUID="vXBF7EksZUuyuIPjpqSB4g=="/>
<POI MapID="1442" xpos="-416.357" ypos="6.29107" zpos="-631.486" type="leag.eod.sp.isp.lantern" GUID="cVAno1Vl5UiQunFTz9IUlw=="/>
<POI MapID="1442" xpos="-494.937" ypos="50.2952" zpos="-461.711" type="leag.eod.sp.isp.lantern" GUID="X0R9rhjAI0SnJsWnRw/NJA=="/>
<POI MapID="1442" xpos="-499.093" ypos="46.2183" zpos="-377.989" type="leag.eod.sp.isp.lantern" GUID="3+uzUFYlXUmR3RGTs5XUuQ=="/>
<POI MapID="1442" xpos="-563.138" ypos="38.0211" zpos="-437.961" type="leag.eod.sp.isp.lantern" GUID="2CFHNUgn10OtjMq6iqjh4w=="/>
<POI MapID="1442" xpos="-692.421" ypos="79.1081" zpos="-436.784" type="leag.eod.sp.isp.lantern" GUID="gVXMSNWZqkKUYPhHCfDzQQ=="/>
<POI MapID="1442" xpos="-800.218" ypos="36.535" zpos="-565.373" type="leag.eod.sp.isp.lantern" GUID="8tLWKzU1cECiV2XuZv6WjA=="/>
<POI MapID="1442" xpos="-910.549" ypos="18.2821" zpos="-434.066" type="leag.eod.sp.isp.lantern" GUID="ht3iG3V/P06QCMm/kKZzVA=="/>
<POI MapID="1442" xpos="-1010.8" ypos="97.9843" zpos="-198.383" type="leag.eod.sp.isp.lantern" GUID="7Z2nXYRZKECfctCHApOjCQ=="/>
<POI MapID="1442" xpos="-1007.06" ypos="98.4425" zpos="-16.9148" type="leag.eod.sp.isp.lantern" GUID="5DdLwXPCvkyq1Qv0+r/rbQ=="/>
<POI MapID="1442" xpos="-862.715" ypos="126.207" zpos="-102.291" type="leag.eod.sp.isp.lantern" GUID="YZeac1XH/kO+xGY2IM3s3A=="/>
<POI MapID="1442" xpos="-886.953" ypos="153.859" zpos="-36.673" type="leag.eod.sp.isp.lantern" GUID="RxMVOlOe6kaCcQcLPTGe2A=="/>
<POI MapID="1442" xpos="-634.418" ypos="166.921" zpos="-68.7075" type="leag.eod.sp.isp.lantern" GUID="2RF+d5m910Oogm6JzFuFWg=="/>
<POI MapID="1442" xpos="-419.22" ypos="103.02" zpos="-212.615" type="leag.eod.sp.isp.lantern" GUID="NWGgjOr+wUOx0stCuuLAhg=="/>
<POI MapID="1442" xpos="-478.247" ypos="145.046" zpos="128.756" type="leag.eod.sp.isp.lantern" GUID="eadDqJ3NgU23ETVYUXNCMg=="/>
<POI MapID="1442" xpos="-417.344" ypos="1.38786" zpos="191.063" type="leag.eod.sp.isp.lantern" GUID="+n7HfNRy8kqv8Sal/xzi/Q=="/>
<POI MapID="1442" xpos="47.6966" ypos="126.926" zpos="254.672" type="leag.eod.sp.isp.lantern" GUID="dhI4a2brPUG4c9EfytKdHA=="/>
<POI MapID="1442" xpos="-36.3505" ypos="139.072" zpos="194.906" type="leag.eod.sp.isp.lantern" GUID="X8idyAtSeUe2K7dWRIeDIw=="/>
<POI MapID="1442" xpos="-67.7201" ypos="220.793" zpos="77.9931" type="leag.eod.sp.isp.lantern" GUID="br9jhN9s5EK0HuaqTPy4Ig=="/>
<POI MapID="1442" xpos="-199.301" ypos="0.272321" zpos="161.01" type="leag.eod.sp.isp.lantern" GUID="vgWmELxjmkedaJBORctsMA=="/>
<POI MapID="1442" xpos="76.9429" ypos="50.0946" zpos="551.32" type="leag.eod.sp.isp.lantern" GUID="mFi+62prHU2/v+kzcVXJAw=="/>
<POI MapID="1442" xpos="94.2021" ypos="2.61887" zpos="598.542" type="leag.eod.sp.isp.lantern" GUID="SoWMzFEd5EWj9L+y43ZcwA=="/>
<POI MapID="1442" xpos="-165.711" ypos="0.551809" zpos="738.48" type="leag.eod.sp.isp.lantern" GUID="UYgERR02ZUWwdW4R1BFqbA=="/>
<POI MapID="1442" xpos="-364.597" ypos="39.9013" zpos="532.207" type="leag.eod.sp.isp.lantern" GUID="gf0h1KhTEECpui3kjFnOGw=="/>
<POI MapID="1442" xpos="-572.876" ypos="2.00244" zpos="562.306" type="leag.eod.sp.isp.lantern" GUID="1ckptVt86k6bb+/wa0mmLQ=="/>
<POI MapID="1442" xpos="-625.513" ypos="64.2577" zpos="591.913" type="leag.eod.sp.isp.lantern" GUID="YLw4+hmFy0OW/xMDylU0xQ=="/>
<POI MapID="1442" xpos="-911.874" ypos="126.708" zpos="698.958" type="leag.eod.sp.isp.lantern" GUID="mnZ99IDzfk+ZYZxunjDZVQ=="/>
<POI MapID="1442" xpos="-986.622" ypos="134.972" zpos="411.153" type="leag.eod.sp.isp.lantern" GUID="EC6ZRRpgqkiVLQiHklVtAw=="/>
<POI MapID="1442" xpos="108.387" ypos="122.168" zpos="179.382" type="leag.eod.sp.isp.lantern" GUID="atE8CmnKuUms+WG0TmXokQ=="/>
<POI MapID="1442" xpos="404.379" ypos="200.607" zpos="52.6134" type="leag.eod.sp.isp.lantern" GUID="EzuhTFkaOUuJY6xF5Z8lTQ=="/>
<POI MapID="1442" xpos="488.568" ypos="25.2847" zpos="-21.48" type="leag.eod.sp.isp.lantern" GUID="glYQvesluU69ReCVecrPrA=="/>
<POI MapID="1442" xpos="479.422" ypos="112.694" zpos="-192.679" type="leag.eod.sp.isp.lantern" GUID="N3Dgf2b0PkGuOo5ioIfDwA=="/>
<POI MapID="1442" xpos="325.34" ypos="60.1994" zpos="-290.387" type="leag.eod.sp.isp.lantern" GUID="d7vTp0iTsUetJbTk8Z2C+w=="/>
<POI MapID="1442" xpos="410.75" ypos="92.0993" zpos="-423.271" type="leag.eod.sp.isp.lantern" GUID="XHjNacuyd0eEfsE9LxeKeA=="/>
<POI MapID="1442" xpos="941.671" ypos="0.633541" zpos="-600.253" type="leag.eod.sp.isp.lantern" GUID="7W1zDhWpWEqw3etR+3qZ5Q=="/>
<POI MapID="1442" xpos="880.403" ypos="17.3787" zpos="-388.447" type="leag.eod.sp.isp.lantern" GUID="4e+pBmPfOE69s8dM5sH3ug=="/>
<POI MapID="1442" xpos="988.818" ypos="101.027" zpos="-370.24" type="leag.eod.sp.isp.lantern" GUID="+nDAF6Z1lESKIX6epRTm8g=="/>
<POI MapID="1442" xpos="801.136" ypos="17.2809" zpos="-265.764" type="leag.eod.sp.isp.lantern" GUID="iIUo959cpkeFC/+MXKhsug=="/>
<POI MapID="1442" xpos="903.197" ypos="67.2033" zpos="-34.9897" type="leag.eod.sp.isp.lantern" GUID="1Y4vUGfdIEC8bRYlBex+iw=="/>
<POI MapID="1442" xpos="883.683" ypos="18.7398" zpos="216.852" type="leag.eod.sp.isp.lantern" GUID="M+/CQjuSR0yT6qimKUGo3g=="/>
<POI MapID="1442" xpos="904.978" ypos="26.9366" zpos="457.458" type="leag.eod.sp.isp.lantern" GUID="3iCGYKYSLEWfgo/fKmmv4w=="/>
<POI MapID="1442" xpos="975.875" ypos="22.4118" zpos="711.829" type="leag.eod.sp.isp.lantern" GUID="6iPeiRdcKEyVzMo7+D7i2Q=="/>
<POI MapID="1442" xpos="616.54" ypos="13.8255" zpos="653.596" type="leag.eod.sp.isp.lantern" GUID="MjHZpqC0iUq3Q3ONptH6eg=="/>
<POI MapID="1442" xpos="372.874" ypos="0.454918" zpos="702.443" type="leag.eod.sp.isp.lantern" GUID="A8GBoTNXCUi9JKUBTULY1g=="/>
<POI MapID="1442" xpos="391.682" ypos="35.6811" zpos="456.134" type="leag.eod.sp.isp.lantern" GUID="AzFYKOpWjku2MUazTlmA+g=="/>
<POI MapID="1442" xpos="440.53" ypos="22.838" zpos="217.789" type="leag.eod.sp.isp.lantern" GUID="ooRf+bHwPEKFz8YTHwFyNQ=="/>
<!-- Jumping Training -->
<Trail type="leag.eod.sp.training" trailData="Data/EoD/Jumping Training.trl" fadeNear="800" fadeFar="1600"/>
<Trail type="leag.eod.sp.training" trailData="Data/EoD/Jumping Training - To.trl"/>
<POI MapID="1442" xpos="-861.178" ypos="115.622" zpos="-128.7" type="leag.eod.sp.author.start" GUID="Rnf7BbDRE0+wHKRym6taBQ=="/>
<!-- Misty Leap -->
<Trail type="leag.eod.sp.misty" trailData="Data/EoD/Misty Leap.trl"/>
<POI MapID="1442" xpos="167.2237" ypos="56.19818" zpos="-524.3533" type="leag.eod.sp.misty" GUID="m+N+fusUzUSXhY4BoB9LVA==" iconFile="Data/Images/Diving Goggles.png" inGameVisibility="0" mapDisplaySize="64"/>
<!-- Spiritual Childcare -->
<Trail type="leag.eod.sp.childcare" trailData="Data/EoD/Spiritual Childcare 1.trl"/>
<Trail type="leag.eod.sp.childcare" trailData="Data/EoD/Spiritual Childcare 2.trl"/>
<Trail type="leag.eod.sp.childcare" trailData="Data/EoD/Spiritual Childcare 3.trl"/>
<Trail type="leag.eod.sp.childcare" trailData="Data/EoD/Spiritual Childcare 4.trl"/>
<POI MapID="1442" xpos="-89.1986" ypos="12.1761" zpos="-175.794" type="leag.eod.sp.childcare.start" GUID="MqdVzH3oRU6XjptUoidsYg=="/>
<POI MapID="1442" xpos="1007.954" ypos="135.8031" zpos="-591.3384" type="leag.eod.sp.childcare.wp" GUID="htXpNqQ/0k2QEPNEPmpJNg==" copy="[&BGUNAAA=]" copy-message="Daigo Ward Waypoint"/>
<POI MapID="1442" xpos="-52.8984" ypos="136.582" zpos="104.777" type="leag.eod.sp.childcare.wp" GUID="+BYh3IrSsEyLSvBvTOYUeg==" copy="[&BGUNAAA=]" copy-message="Daigo Ward Waypoint"/>
<POI MapID="1442" xpos="993.297" ypos="75.2454" zpos="682.872" type="leag.eod.sp.childcare.wp" GUID="cGctutVfp0af1gYktVxRSQ==" copy="[&BGQNAAA=]" copy-message="Haiju Docks Waypoint"/>
<POI MapID="1442" xpos="1007.954" ypos="135.8031" zpos="-591.3384" type="leag.eod.sp.childcare.3" GUID="afWHy+2K10ueu31BgrHxGg=="/>
<POI MapID="1442" xpos="-64.4107" ypos="13.2755" zpos="-141.171" type="leag.eod.sp.childcare.17" GUID="oWZCKIuEmUG76H4o3odZ+g=="/>
<POI MapID="1442" xpos="18.4483" ypos="84.6375" zpos="32.4327" type="leag.eod.sp.childcare.19" GUID="++4tIqkUV0ibmkffb74+Wg=="/>
<POI MapID="1442" xpos="-147.481" ypos="58.3962" zpos="-70.2532" type="leag.eod.sp.childcare.8" GUID="XNJc6AOOYESIWJGKKyB1pA=="/>
<POI MapID="1442" xpos="-347.387" ypos="93.8803" zpos="-30.3984" type="leag.eod.sp.childcare.1" GUID="e79PicP8kU+fJSaGwazSYg=="/>
<POI MapID="1442" xpos="-709.612" ypos="107.67" zpos="-228.039" type="leag.eod.sp.childcare.13" GUID="6VS5peXy7EivaCqiYpGo5w=="/>
<POI MapID="1442" xpos="-664.731" ypos="92.8694" zpos="-109.239" type="leag.eod.sp.childcare.16" GUID="Ey2Uupy4b0qBGWKgpg3ujA=="/>
<POI MapID="1442" xpos="-911.134" ypos="83.4792" zpos="-282.861" type="leag.eod.sp.childcare.25" GUID="PQlfIs5oM0SM4vDYAYIPsQ=="/>
<POI MapID="1442" xpos="-813.895" ypos="97.812" zpos="-1.65327" type="leag.eod.sp.childcare.15" GUID="8945uN0CWkyL8ei6ITUSwQ=="/>
<POI MapID="1442" xpos="-849.357" ypos="0.893112" zpos="-388.042" type="leag.eod.sp.childcare.24" GUID="g06OR7S1BkWnxc6RAm4Ahg=="/>
<POI MapID="1442" xpos="-926.277" ypos="0.427514" zpos="-601.114" type="leag.eod.sp.childcare.22" GUID="vIwm2JslcUuNgzJdGe/DiA=="/>
<POI MapID="1442" xpos="-310.595" ypos="2.88307" zpos="-227.244" type="leag.eod.sp.childcare.26" GUID="QUGig8dGekiCU0dQ7ANhbA=="/>
<POI MapID="1442" xpos="-393.385" ypos="0.799344" zpos="-560.676" type="leag.eod.sp.childcare.7" GUID="Zwk1Tf9rf02fH8guaGHHXQ=="/>
<POI MapID="1442" xpos="-194.695" ypos="1.6646" zpos="-246.084" type="leag.eod.sp.childcare.2" GUID="rt+owVOCBEGuI1bj24hWKg=="/>
<POI MapID="1442" xpos="-211.653" ypos="28.545" zpos="-433.634" type="leag.eod.sp.childcare.12" GUID="PCv6mGzZZEGIadonVTDK9g=="/>
<POI MapID="1442" xpos="161.312" ypos="77.7927" zpos="-321.668" type="leag.eod.sp.childcare.37" GUID="Kbl33ut0e0ihYHqKTMOaaQ=="/>
<POI MapID="1442" xpos="-80.8185" ypos="71.7234" zpos="-440.057" type="leag.eod.sp.childcare.35" GUID="TmNgFvcpPECVJ5j62OAIRg=="/>
<POI MapID="1442" xpos="246.967" ypos="72.9182" zpos="-208.303" type="leag.eod.sp.childcare.21" GUID="bdYUhIrmX0WBp9+zVDmNmA=="/>
<POI MapID="1442" xpos="32.1314" ypos="1.24843" zpos="-672.29" type="leag.eod.sp.childcare.28" GUID="mWintwdpv0WBiGWi2zsWJg=="/>
<POI MapID="1442" xpos="445.048" ypos="11.9354" zpos="-601.708" type="leag.eod.sp.childcare.4" GUID="XV4Ht0dY/0uiuFiupA5diQ=="/>
<POI MapID="1442" xpos="608.082" ypos="90.1028" zpos="-269.207" type="leag.eod.sp.childcare.23" GUID="03RD1AddI0yzWMchguGQlA=="/>
<POI MapID="1442" xpos="839.4" ypos="90.3298" zpos="-101.655" type="leag.eod.sp.childcare.20" GUID="tCmKkOHm00+2Ktn4zRLlkQ=="/>
<POI MapID="1442" xpos="979.033" ypos="126.044" zpos="-393.219" type="leag.eod.sp.childcare.27" GUID="6eIGClrdrk2uGDqjUACb1A=="/>
<POI MapID="1442" xpos="-84.1222" ypos="13.7945" zpos="-180.479" type="leag.eod.sp.childcare.trail.1" GUID="JDkESCNf00qYdsqlaZJnKA=="/>
<POI MapID="1442" xpos="68.5426" ypos="114.561" zpos="245.733" type="leag.eod.sp.childcare.trail.2" GUID="qQT6M8IAx0q6sY/sb1au1Q=="/>
<POI MapID="1442" xpos="-52.8984" ypos="136.582" zpos="104.777" type="leag.eod.sp.childcare.34" GUID="iNiUGXX/sUaK0iF8OFqfVA=="/>
<POI MapID="1442" xpos="74.7263" ypos="114.27" zpos="247.04" type="leag.eod.sp.childcare.trail.3" GUID="qO4ObXZlPUCdRrqmFECU9g=="/>
<POI MapID="1442" xpos="218.56" ypos="167.776" zpos="215.071" type="leag.eod.sp.childcare.38" GUID="qdTAaTIBs0CmRa7ZW5dh9A=="/>
<POI MapID="1442" xpos="226.832" ypos="98.2531" zpos="342.217" type="leag.eod.sp.childcare.10" GUID="kn1t2B84H0ewKftO7Rd9mg=="/>
<POI MapID="1442" xpos="469.551" ypos="2.08337" zpos="70.6106" type="leag.eod.sp.childcare.32" GUID="fT8dK5BspEqWaYC7bVR7yg=="/>
<POI MapID="1442" xpos="441.755" ypos="169.976" zpos="43.658" type="leag.eod.sp.childcare.6" GUID="Klllgkwj10mUCdabHjuf3w=="/>
<POI MapID="1442" xpos="491.915" ypos="74.7436" zpos="403.424" type="leag.eod.sp.childcare.31" GUID="sxY5ms9AEkq2sxlmXRDdeg=="/>
<POI MapID="1442" xpos="334.698" ypos="0.567656" zpos="693.106" type="leag.eod.sp.childcare.trail.4" GUID="lZ8Igrma10CN9Y+MY4DA5w=="/>
<POI MapID="1442" xpos="-132.412" ypos="5.11012" zpos="743.964" type="leag.eod.sp.childcare.11" GUID="aC0phKo3/ECBVvAqjczwZA=="/>
<POI MapID="1442" xpos="-193.208" ypos="3.5629" zpos="761.395" type="leag.eod.sp.childcare.14" GUID="yrqF+wXq7EmfuHNjYJhT3w=="/>
<POI MapID="1442" xpos="-589.906" ypos="1.73193" zpos="642.215" type="leag.eod.sp.childcare.33" GUID="QR/JDf6MSUKqczwKuXRC9Q=="/>
<POI MapID="1442" xpos="-954.152" ypos="179.06" zpos="553.491" type="leag.eod.sp.childcare.30" GUID="1B9vJ/pQMkOTwf6WW3uBTA=="/>
<POI MapID="1442" xpos="-670.822" ypos="154.821" zpos="196.303" type="leag.eod.sp.childcare.29" GUID="hbTvXWH2nkyJP3EXmHMc3A=="/>
<POI MapID="1442" xpos="-731.156" ypos="0.354985" zpos="339.676" type="leag.eod.sp.childcare.5" GUID="SgwTgq8DTUOYnNW1xhRtnw=="/>
<POI MapID="1442" xpos="993.477" ypos="75.2592" zpos="683.743" type="leag.eod.sp.childcare.9" GUID="KfTojSlo9k6yB6bbYzT4kQ=="/>
<POI MapID="1442" xpos="-446.845" ypos="96.5837" zpos="-61.1399" type="leag.eod.sp.childcare.18" GUID="WoYK8lmLWE2zbRyvInn5SA=="/>
<POI MapID="1442" xpos="-936.846" ypos="81.5872" zpos="-302.108" type="leag.eod.sp.childcare.36" GUID="XypDmLFZXESOALw/2BE6vQ=="/>
<!-- Trials of the Tengu -->
<Trail type="leag.eod.sp.trials" trailData="Data/EoD/Jumping Puzzles/Trials of the Tengu.trl"/>
<POI MapID="1442" xpos="-860.2476" ypos="120.4227" zpos="-108.0494" type="leag.eod.sp.trials.sign" GUID="m0Ck45FYGEeC84QvfyMJYw==" iconFile="Data/Images/Jumping Puzzles/Trials of the Tengu.png"/>
<POI MapID="1442" xpos="-593.251" ypos="169.747" zpos="162.216" type="leag.eod.sp.trials.glider" GUID="itSAnYARe06dWmQE6u2Ixw==" fadeNear="1200" fadeFar="1400"/>
<POI MapID="1442" xpos="-745.992" ypos="170.003" zpos="181.25" type="leag.eod.sp.trials.glider" GUID="XZ8A0Y7oEUSKbhlA0J0CJg==" fadeNear="1200" fadeFar="1400"/>
<POI MapID="1442" xpos="-752.235" ypos="193.574" zpos="246.774" type="leag.eod.sp.trials.glider" GUID="RCa7wMQOTUieRsiEEZui9g==" fadeNear="1200" fadeFar="1400"/>
<POI MapID="1442" xpos="-827.669" ypos="187.736" zpos="210.743" type="leag.eod.sp.trials.glider" GUID="oVu9CWmw802pXQjHqyw+OA==" fadeNear="1200" fadeFar="1400"/>
<POI MapID="1442" xpos="-854.439" ypos="177.068" zpos="241.261" type="leag.eod.sp.trials.glider" GUID="wFblINpzEkOj6yBlch8whw==" fadeNear="1200" fadeFar="1400"/>
<POI MapID="1442" xpos="-846.197" ypos="186.778" zpos="328.962" type="leag.eod.sp.trials.glider" GUID="kraEpamBik2xIGp+HUxZNQ==" fadeNear="1200" fadeFar="1400"/>
<POI MapID="1442" xpos="-868.799" ypos="179.287" zpos="354.215" type="leag.eod.sp.trials.glider" GUID="AfghcoiNnEiZPn8J3y186g==" fadeNear="1200" fadeFar="1400"/>
<POI MapID="1442" xpos="-926.613" ypos="194.16" zpos="466.071" type="leag.eod.sp.trials.glider" GUID="OhNwv9xdfku4604GReRGKA==" fadeNear="1200" fadeFar="1400"/>
<!-- Zunraa's Gift -->
<POI MapID="1442" xpos="-237.501" ypos="59.4649" zpos="-316.976" type="leag.eod.sp.zunraa.loc" GUID="Pv7yU9+BIEe8OGiTEu6G8g=="/>
<POI MapID="1442" xpos="-115.783" ypos="21.9749" zpos="-270.826" type="leag.eod.sp.zunraa.loc" GUID="1lMk40ezrUCit64eiXFmBw=="/>
<POI MapID="1442" xpos="-157.446" ypos="18.079" zpos="-219.971" type="leag.eod.sp.zunraa.loc" GUID="gzxYg7VYHEqrFc+8hBd2ig=="/>
<POI MapID="1442" xpos="-189.359" ypos="56.7007" zpos="-476.154" type="leag.eod.sp.zunraa.loc" GUID="pPnG+ChksE2cGUV1/CEgkg=="/>
<!-- NEW KAINENG CITY -->
<Trail type="leag.eod.nkc.cleanup" trailData="Data/EoD/Cleanup Duty 1.trl"/>
<Trail type="leag.eod.nkc.cleanup" trailData="Data/EoD/Cleanup Duty 2 Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.nkc.cleanup" trailData="Data/EoD/Cleanup Duty 2.trl"/>
<POI MapID="1438" xpos="-889.552" ypos="2.84449" zpos="-142.547" type="leag.eod.nkc.cleanup.start" GUID="FiUYh2vOYkKZX4c9vRTdzA=="/>
<POI MapID="1438" xpos="-884.92" ypos="13.9187" zpos="-715.48" type="leag.eod.nkc.cleanup.wp" GUID="Y/QinRVGAE+gGf7fU4ldtw==" copy="[&BMYMAAA=]" copy-message="Promenade Waypoint"/>
<Trail type="leag.eod.nkc.canals" trailData="Data/EoD/Clear the Canals.trl"/>
<POI MapID="1438" xpos="-889.552" ypos="2.84449" zpos="-142.547" type="leag.eod.nkc.canals.start" GUID="Kh0Fx51m9kGoD1kEDf8/cg=="/>
<Trail type="leag.eod.nkc.crow" trailData="Data/EoD/Crow Catcher.trl"/>
<POI MapID="1438" xpos="841.598" ypos="24.3107" zpos="-38.8825" type="leag.eod.nkc.crow.loc" GUID="brQAz9Ul5EKuQDv6z8k/iA=="/>
<POI MapID="1438" xpos="894.665" ypos="62.3479" zpos="-118.469" type="leag.eod.nkc.crow.loc" GUID="OQhZJQoaOUGhGovBMAcQuQ=="/>
<POI MapID="1438" xpos="983.721" ypos="68.2806" zpos="-102.756" type="leag.eod.nkc.crow.loc" GUID="7zKT6C3rUkaOGndmsa1xcQ=="/>
<POI MapID="1438" xpos="999.747" ypos="35.4672" zpos="-35.2112" type="leag.eod.nkc.crow.loc" GUID="U4zSLAk5wEW5GRG4CHLQBw=="/>
<POI MapID="1438" xpos="952.201" ypos="31.6152" zpos="-42.5328" type="leag.eod.nkc.crow.loc" GUID="Eq1y6WLvuEeMLhpp0FcSeQ=="/>
<POI MapID="1438" xpos="978.38" ypos="14.654" zpos="28.5748" type="leag.eod.nkc.crow.loc" GUID="LoiUc/Hr1UaFu2U2KeQmOg=="/>
<Trail type="leag.eod.nkc.guardian.nkfsp" trailData="Data/EoD/New Kaineng's First Spirit Portal Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="FF5016"/>
<Trail type="leag.eod.nkc.guardian.nkfsp" trailData="Data/EoD/New Kaineng's First Spirit Portal.trl" color="FF5016"/>
<Trail type="leag.eod.nkc.guardian.nkssp" trailData="Data/EoD/New Kaineng's Second Spirit Portal Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="FF5016"/>
<Trail type="leag.eod.nkc.guardian.nkssp" trailData="Data/EoD/New Kaineng's Second Spirit Portal.trl" color="FF5016"/>
<POI MapID="1438" xpos="1046.54" ypos="24.403" zpos="579.152" type="leag.eod.nkc.guardian.nkssp.wp" GUID="hbDc4pvuPUCqRiUProoY0w==" copy="[&BMoMAAA=]" copy-message="Waypoint zu Heltzer"/>
<!-- Honorary Plumber -->
<Trail type="leag.eod.nkc.plumber" trailData="Data/EoD/Honorary Plumber 1.trl"/>
<Trail type="leag.eod.nkc.plumber" trailData="Data/EoD/Honorary Plumber 2.trl"/>
<Trail type="leag.eod.nkc.plumber" trailData="Data/EoD/Honorary Plumber 3.trl"/>
<POI MapID="1438" xpos="-889.552" ypos="2.84449" zpos="-142.547" type="leag.eod.nkc.plumber.start" GUID="hoopb4VbEkG7HPnYzfmq/w=="/>
<POI MapID="1438" xpos="-882.388" ypos="1.86571" zpos="-134.9" type="leag.eod.nkc.plumber.1" GUID="/BGwphilnkSdf8wC6shahg=="/>
<POI MapID="1438" xpos="-882.045" ypos="2.86063" zpos="-123.089" type="leag.eod.nkc.plumber.2" GUID="3QtQt4xZzkKiDg0bf2UKyA=="/>
<POI MapID="1438" xpos="582.115" ypos="2.48428" zpos="5.50339" type="leag.eod.nkc.plumber.3" GUID="V7QnGAxLZkeLWoZdkHkZ5w=="/>
<POI MapID="1438" xpos="578.677" ypos="2.23959" zpos="-8.33378" type="leag.eod.nkc.plumber.3" GUID="MSByJLrlrkOBEqjIS/H5xA=="/>
<POI MapID="1438" xpos="583.498" ypos="2.48726" zpos="-7.52969" type="leag.eod.nkc.plumber.4" GUID="ZriF8jgPQUS/tf53hlVGkg=="/>
<POI MapID="1438" xpos="-886.818" ypos="-32.815" zpos="-309.705" type="leag.eod.nkc.plumber.loc" GUID="fTrFSFJ5ukOiETVLg8igAQ=="/>
<POI MapID="1438" xpos="-705.453" ypos="-13.8884" zpos="-567.351" type="leag.eod.nkc.plumber.loc" GUID="vvweZ9dly02hLSPy+34ZbA=="/>
<POI MapID="1438" xpos="-1008.02" ypos="-114.491" zpos="338.537" type="leag.eod.nkc.plumber.loc" GUID="/AAOrz1np0+0rvs9Opap6Q=="/>
<POI MapID="1438" xpos="-668.691" ypos="-44.7264" zpos="593.069" type="leag.eod.nkc.plumber.loc" GUID="QR5B6QzNvEGdfbAn+WJMEQ=="/>
<POI MapID="1438" xpos="1025.63" ypos="-12.5269" zpos="-634.627" type="leag.eod.nkc.plumber.loc" GUID="3gOEZFFv8kmQ8Bb4tCXZ9w=="/>
<POI MapID="1438" xpos="597.274" ypos="-12.7102" zpos="36.4613" type="leag.eod.nkc.plumber.loc" GUID="0KZ0MpmcCUS6rLfFx94qrA=="/>
<POI MapID="1438" xpos="919.2" ypos="-37.6496" zpos="9.16568" type="leag.eod.nkc.plumber.loc" GUID="pmb2MqfhVEGJskl9PC+pag=="/>
<POI MapID="1438" xpos="993.493" ypos="-127.774" zpos="581.799" type="leag.eod.nkc.plumber.loc" GUID="827UdnyfwE6Z8jJL/GWobw=="/>
<POI MapID="1438" xpos="459.629" ypos="-12.7304" zpos="611.837" type="leag.eod.nkc.plumber.loc" GUID="adpiuIjsgkGOIeEMWyW46Q=="/>
<POI MapID="1438" xpos="39.8437" ypos="-11.6153" zpos="436.193" type="leag.eod.nkc.plumber.loc" GUID="ud3mIVPRx0+3ha/R4P0qYg=="/>
<POI MapID="1438" xpos="-86.0736" ypos="-12.7304" zpos="172.305" type="leag.eod.nkc.plumber.loc" GUID="JZHNmRfrOkmqqrrEeFzI5g=="/>
<POI MapID="1438" xpos="-410.093" ypos="-10.9399" zpos="-3.36848" type="leag.eod.nkc.plumber.loc" GUID="AkYd20e+EUuef2KaHDPOhQ=="/>
<POI MapID="1438" xpos="-191.232" ypos="-12.7305" zpos="-203.036" type="leag.eod.nkc.plumber.loc" GUID="NJ3Ngqqnu0i9giUKL5JEsQ=="/>
<POI MapID="1438" xpos="203.102" ypos="-12.4336" zpos="-276.711" type="leag.eod.nkc.plumber.loc" GUID="xuf5Ac9l1kG5g2EeP8mF8w=="/>
<!-- Kaineng Unmade -->
<POI MapID="1438" xpos="741.764" ypos="21.1847" zpos="5.0345" type="leag.eod.nkc.unmade" GUID="c8627i+bOUC92bzcTa5mpQ=="/>
<POI MapID="1438" xpos="-167.988" ypos="120.157" zpos="-468.476" type="leag.eod.nkc.unmade" GUID="QD7yiCPanku+W/gK8lYqww=="/>
<POI MapID="1438" xpos="-548.908" ypos="120.173" zpos="-201.493" type="leag.eod.nkc.unmade" GUID="0TyS2SsAfk+S1+BZQ3IQ8w=="/>
<POI MapID="1438" xpos="-527.097" ypos="129.35" zpos="107.853" type="leag.eod.nkc.unmade" GUID="A9su00oA3UeRsrS6CfR2YA=="/>
<POI MapID="1438" xpos="-144.366" ypos="120.33" zpos="442.85" type="leag.eod.nkc.unmade" GUID="Cmajbre8YE+DDy11XAbaew=="/>
<!-- Light These Streets (Lanterns) -->
<Trail type="leag.eod.nkc.light.1" trailData="Data/EoD/Light These Streets 1a.trl"/>
<Trail type="leag.eod.nkc.light.1" trailData="Data/EoD/Light These Streets 1a Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.nkc.light.1" trailData="Data/EoD/Light These Streets 1b.trl"/>
<Trail type="leag.eod.nkc.light.2" trailData="Data/EoD/Light These Streets 2.trl"/>
<POI MapID="1438" xpos="-889.552" ypos="2.84449" zpos="-142.547" type="leag.eod.nkc.light.start" GUID="FvrVDWKKtk6IaWCk58qyjg=="/>
<POI MapID="1438" xpos="-870.3232" ypos="1.321038" zpos="-618.3548" type="leag.eod.nkc.light.wp" GUID="9wEkV8FTU0i1N2myZNv/kw==" copy="[&BMYMAAA=]" copy-message="Promenade Waypoint"/>
<POI MapID="1438" xpos="-882.497" ypos="2.8632" zpos="-126.386" type="leag.eod.nkc.light.1" GUID="9SsayCXPFkuHmiFM33oDVg=="/>
<POI MapID="1438" xpos="-576.573" ypos="198.182" zpos="-538.341" type="leag.eod.nkc.light.jbwp" GUID="3H0H7TF9OkSND/epEGX8iw==" info="CREATE Jade Bot: Personal Waypoint" infoRange="3"/>
<POI MapID="1438" xpos="-572.659" ypos="198.2088" zpos="-540.7997" type="leag.eod.nkc.light.2" GUID="jt3xSV+nYUyGx38jHoF9fA=="/>
<POI MapID="1438" xpos="-870.04" ypos="1.33205" zpos="-620.367" type="leag.eod.nkc.light.jbpwp" GUID="gQjGnlGUmUCXRn81UuFXkw==" info="RETURN to your Jade Bot: Personal Waypoint" infoRange="3"/>
<POI MapID="1438" xpos="-899.343" ypos="3.04459" zpos="-155.653" type="leag.eod.nkc.light.lantern" GUID="I1gPe6koTkO8IgTKuuzYeQ=="/>
<POI MapID="1438" xpos="-769.947" ypos="3.30365" zpos="-10.5994" type="leag.eod.nkc.light.lantern" GUID="mIg9lcS/tUCqo9NaHOW62Q=="/>
<POI MapID="1438" xpos="-524.066" ypos="6.1374" zpos="9.57748" type="leag.eod.nkc.light.lantern" GUID="tYn8Pech50qZ+G+WOfxYdg=="/>
<POI MapID="1438" xpos="-558.663" ypos="152.322" zpos="0.248778" type="leag.eod.nkc.light.lantern" GUID="Werw1pB4ZE+YylBzyaga9g=="/>
<POI MapID="1438" xpos="-542.272" ypos="120.432" zpos="195.153" type="leag.eod.nkc.light.lantern" GUID="aFkMwIf9gkKyGSAiofTIlQ=="/>
<POI MapID="1438" xpos="-400.32" ypos="120.156" zpos="309.923" type="leag.eod.nkc.light.lantern" GUID="/Fqsk+qn4kGzYpJRbwenOg=="/>
<POI MapID="1438" xpos="-469.42" ypos="157.277" zpos="348.446" type="leag.eod.nkc.light.lantern" GUID="ATmy7uylk0mnTAnfdoHubA=="/>
<POI MapID="1438" xpos="-301.281" ypos="209" zpos="461.794" type="leag.eod.nkc.light.lantern" GUID="dkvqN60kgEGrIC4J6d13qQ=="/>
<POI MapID="1438" xpos="-276.174" ypos="264.373" zpos="528.589" type="leag.eod.nkc.light.lantern" GUID="QNao0Q5jzEmE4y/VH6NBhg=="/>
<POI MapID="1438" xpos="-530.014" ypos="217.314" zpos="430.572" type="leag.eod.nkc.light.lantern" GUID="Ex5O2ObT70qoT+qzYpKqDw=="/>
<POI MapID="1438" xpos="-554.884" ypos="211.839" zpos="442.475" type="leag.eod.nkc.light.lantern" GUID="RmmTUu0jwUWiNLZ6qj+P2g=="/>
<POI MapID="1438" xpos="-589.38" ypos="207.712" zpos="472.666" type="leag.eod.nkc.light.lantern" GUID="amXtow5pUEmYsgWxWmcmGQ=="/>
<POI MapID="1438" xpos="-662.216" ypos="260.998" zpos="177.97" type="leag.eod.nkc.light.lantern" GUID="heaIBy2oUkCwwz1egfLdzg=="/>
<POI MapID="1438" xpos="-534.347" ypos="17.4758" zpos="675.268" type="leag.eod.nkc.light.lantern" GUID="7UrjCB685UCP1JYq1Bjl8w=="/>
<POI MapID="1438" xpos="525.155" ypos="96.1865" zpos="656.367" type="leag.eod.nkc.light.lantern" GUID="il5C/S1fm0mCRgJKq41/TA=="/>
<POI MapID="1438" xpos="459.564" ypos="109.507" zpos="394.228" type="leag.eod.nkc.light.lantern" GUID="kp6UYc+FZEKQf07+IhSoaQ=="/>
<POI MapID="1438" xpos="307.941" ypos="2.62289" zpos="135.974" type="leag.eod.nkc.light.lantern" GUID="+QqP1a5FGUe05E/St0R9hw=="/>
<POI MapID="1438" xpos="225.612" ypos="2.62157" zpos="452.192" type="leag.eod.nkc.light.lantern" GUID="GB/MTt9gi02nc9tw4vSmUQ=="/>
<POI MapID="1438" xpos="220.025" ypos="12.6088" zpos="359.925" type="leag.eod.nkc.light.lantern" GUID="sp1tlNI8SEeeAZIyZOZPfg=="/>
<POI MapID="1438" xpos="-57.3321" ypos="2.63076" zpos="7.10814" type="leag.eod.nkc.light.lantern" GUID="1zupxzx6jEi9k3rNoG3mFQ=="/>
<POI MapID="1438" xpos="-180.807" ypos="2.87652" zpos="-26.2887" type="leag.eod.nkc.light.lantern" GUID="bwNr5HDH20yDVJMyGnHaog=="/>
<POI MapID="1438" xpos="-488.017" ypos="120.156" zpos="-320.575" type="leag.eod.nkc.light.lantern" GUID="OmWf9oj7YUKtwMaOMcfg0g=="/>
<POI MapID="1438" xpos="-466.833" ypos="269.982" zpos="-469" type="leag.eod.nkc.light.lantern" GUID="n8ZFx9EshEqFi5LKHZliLw=="/>
<POI MapID="1438" xpos="-670.505" ypos="198.132" zpos="-310.718" type="leag.eod.nkc.light.lantern" GUID="3wi51JYlT0OubEIaFGnLAQ=="/>
<POI MapID="1438" xpos="-503.921" ypos="206.807" zpos="-459.46" type="leag.eod.nkc.light.lantern" GUID="TsqQOrtJDUCfBlgbbnzrHw=="/>
<POI MapID="1438" xpos="-853.961" ypos="139.008" zpos="-752.72" type="leag.eod.nkc.light.lantern" GUID="W6TN+/oKw0+uS6mFIkRNzw=="/>
<POI MapID="1438" xpos="-870.305" ypos="1.30051" zpos="-619.178" type="leag.eod.nkc.light.lantern" GUID="Sm0eHepuBkmIiZjnQgylmQ=="/>
<POI MapID="1438" xpos="-311.472" ypos="117.003" zpos="-444.729" type="leag.eod.nkc.light.lantern" GUID="ESuOn6HBs0q1LbOdv9FEjg=="/>
<POI MapID="1438" xpos="-108.143" ypos="3.04595" zpos="-642.854" type="leag.eod.nkc.light.lantern" GUID="lkmsollF/EGWe6Yj06tmfw=="/>
<POI MapID="1438" xpos="24.1899" ypos="2.77545" zpos="-540.47" type="leag.eod.nkc.light.lantern" GUID="lymcKxIlbkSoeuiiCkinuA=="/>
<POI MapID="1438" xpos="58.7607" ypos="2.57517" zpos="-470.493" type="leag.eod.nkc.light.lantern" GUID="BESHxHBk40CRS7JT+KbFmg=="/>
<POI MapID="1438" xpos="654.146" ypos="2.70447" zpos="-595.354" type="leag.eod.nkc.light.lantern" GUID="Z67zJ9TIO0qncpIC3pmtvQ=="/>
<POI MapID="1438" xpos="832.23" ypos="55.2022" zpos="-611.446" type="leag.eod.nkc.light.lantern" GUID="LKJHIYcCrUyoW4esPqYuYA=="/>
<POI MapID="1438" xpos="947.054" ypos="2.69113" zpos="-339.084" type="leag.eod.nkc.light.lantern" GUID="O/0AUcRJIU6Psm02cXnf5A=="/>
<POI MapID="1438" xpos="883.131" ypos="94.9022" zpos="-206.18" type="leag.eod.nkc.light.lantern" GUID="SFyOLXT0ZEaxR4Ji8spkKQ=="/>
<POI MapID="1438" xpos="1041.8" ypos="12.0998" zpos="-10.1961" type="leag.eod.nkc.light.lantern" GUID="vj9jqSq87Uue5tNtB7eTGA=="/>
<POI MapID="1438" xpos="832.696" ypos="0.925439" zpos="-42.5948" type="leag.eod.nkc.light.lantern" GUID="+x+pT0F16kmU4pChV6gaIw=="/>
<POI MapID="1438" xpos="561.626" ypos="2.40789" zpos="-5.04693" type="leag.eod.nkc.light.lantern" GUID="us8CT9bHl0S4YNHuph/Ecg=="/>
<POI MapID="1438" xpos="515.319" ypos="2.62332" zpos="28.3135" type="leag.eod.nkc.light.lantern" GUID="YPgDax+o3kSNqJFxll7lFg=="/>
<POI MapID="1438" xpos="886.411" ypos="218.022" zpos="492.386" type="leag.eod.nkc.light.lantern" GUID="cEsogptBskeydlQeRmWTsg=="/>
<POI MapID="1438" xpos="953.941" ypos="92.7546" zpos="433.704" type="leag.eod.nkc.light.lantern" GUID="4jMwiVf/3EmZDgIRdYZIqw=="/>
<POI MapID="1438" xpos="1035.07" ypos="2.67935" zpos="633.587" type="leag.eod.nkc.light.lantern" GUID="Tue1GkXePEOdGutNLzdkxg=="/>
<POI MapID="1438" xpos="941.223" ypos="-48.1999" zpos="571.762" type="leag.eod.nkc.light.lantern" GUID="PT4C1IWDsU65jMrnS5LH2w=="/>
<!-- Little Foxes in the Big City -->
<Trail type="leag.eod.nkc.foxes.1" trailData="Data/EoD/Little Foxes 1.trl"/>
<Trail type="leag.eod.nkc.foxes.2" trailData="Data/EoD/Little Foxes 2.trl"/>
<Trail type="leag.eod.nkc.foxes.2" trailData="Data/EoD/Little Foxes 2 Alt.trl"/>
<Trail type="leag.eod.nkc.foxes.3" trailData="Data/EoD/Little Foxes 3a.trl"/>
<Trail type="leag.eod.nkc.foxes.3" trailData="Data/EoD/Little Foxes 3b.trl"/>
<POI MapID="1438" xpos="-889.552" ypos="2.84449" zpos="-142.547" type="leag.eod.nkc.foxes.start" GUID="2coUJAdNn0WCfKIJcMEoGg=="/>
<POI MapID="1438" xpos="-740.992" ypos="198.038" zpos="-229.272" type="leag.eod.nkc.foxes.jbwp" GUID="Lo/r/Yb24UGwEl/RUiwCpw==" info="CREATE Jade Bot: Personal Waypoint" infoRange="3"/>
<POI MapID="1438" xpos="-845.078" ypos="129.558" zpos="-21.2502" type="leag.eod.nkc.foxes.jbpwp" GUID="z7PvvhUMski5edXSO6dbMQ==" info="RETURN to your Jade Bot: Personal Waypoint" infoRange="3"/>
<POI MapID="1438" xpos="-887.974" ypos="2.86248" zpos="-124.763" type="leag.eod.nkc.foxes.1" GUID="YN6PKxmYO0mq5utIegJv6Q=="/>
<POI MapID="1438" xpos="-881.812" ypos="2.86248" zpos="-123.346" type="leag.eod.nkc.foxes.2" GUID="UNb8gzf43kSNALSbR/6vFA=="/>
<POI MapID="1438" xpos="-741.172" ypos="198.042" zpos="-233.273" type="leag.eod.nkc.foxes.3" GUID="tzBNShVtXE+auQLb6mtpHw=="/>
<!-- Literary Thievery -->
<POI MapID="1438" xpos="986.739" ypos="11.5199" zpos="-618.407" type="leag.eod.nkc.literary" GUID="ds7iClmPA02LYmlrfmZIcw=="/>
<POI MapID="1438" xpos="892.843" ypos="50.6586" zpos="363.355" type="leag.eod.nkc.literary" GUID="XT5jkOakc0WyA+bQHXj7+w=="/>
<POI MapID="1438" xpos="1030.35" ypos="2.62577" zpos="640.52" type="leag.eod.nkc.literary" GUID="SZcF6V+HxE66i3Wcbw4CcQ=="/>
<!-- Read "The Secret of the Vault" -->
<Trail type="leag.eod.nkc.read.trail" trailData="Data/EoD/The Secret of the Vault.trl"/>
<POI MapID="1438" xpos="982.888" ypos="-32.8344" zpos="630.038" type="leag.eod.nkc.read.1" GUID="CICWgH/2C02zBzd7delQ3Q=="/>
<POI MapID="1438" xpos="1012.7" ypos="-52.6647" zpos="646.753" type="leag.eod.nkc.read.3" GUID="O5wQDhr+aE2SNgzEkyERBg=="/>
<POI MapID="1438" xpos="937.735" ypos="-68.9752" zpos="603.914" type="leag.eod.nkc.read.2" GUID="1ARm9JSYCka87x8DC9o6HA=="/>
<POI MapID="1438" xpos="1026.24" ypos="-124.198" zpos="565.365" type="leag.eod.nkc.read.4" GUID="Hmokr47IUkmc62g+ugiPTg=="/>
<POI MapID="1438" xpos="1029.78" ypos="-77.0167" zpos="574.904" type="leag.eod.nkc.read.5" GUID="Vl49S9wqzE6jvj2dvJLh0Q=="/>
<POI MapID="1438" xpos="991.486" ypos="-103.07" zpos="629.05" type="leag.eod.nkc.read.6" GUID="QErelOqaeESCr7K1nKBxyg=="/>
<POI MapID="1438" xpos="1018.51" ypos="-147.508" zpos="502.499" type="leag.eod.nkc.read.7" GUID="35Pkr6OoWEK0BGQs/Yu2dQ=="/>
<POI MapID="1438" xpos="1022.81" ypos="-48.0884" zpos="520.347" type="leag.eod.nkc.read.8" GUID="fuT7espYAU6WI/H2BAUHiw=="/>
<POI MapID="1438" xpos="931.211" ypos="-71.4676" zpos="564.036" type="leag.eod.nkc.read.9" GUID="iEIJByvEVkyG+PAuwrrbCw=="/>
<!-- The History of New Kaineng -->
<POI MapID="1438" xpos="-470.677" ypos="3.13701" zpos="666.434" type="leag.eod.nkc.history.1" GUID="jd6mmUICzUO3EBwIyvTiuw=="/>
<POI MapID="1438" xpos="-57.601" ypos="19.9284" zpos="39.9095" type="leag.eod.nkc.history.2" GUID="HL4yUvdUjkeTQLLPmu4qAQ=="/>
<POI MapID="1438" xpos="-657.215" ypos="198.026" zpos="-289.158" type="leag.eod.nkc.history.3" GUID="TID5kBlNB02iztAg3Z30qw=="/>
<POI MapID="1438" xpos="297.994" ypos="2.92289" zpos="-520.163" type="leag.eod.nkc.history.4" GUID="nNgkG0hmZ0in976pypuFKQ=="/>
<POI MapID="1438" xpos="-768.77" ypos="-21.301" zpos="591.002" type="leag.eod.nkc.history.5" GUID="4dRyTrB8mUOp92Nmm02ZkA=="/>
<POI MapID="1438" xpos="625.79" ypos="-12.8655" zpos="331.848" type="leag.eod.nkc.history.6" GUID="NmuF+jthO0SFyF1aCXH7Og=="/>
<POI MapID="1438" xpos="891.635" ypos="204.246" zpos="479.788" type="leag.eod.nkc.history.7" GUID="ekc7IL5qXUmVuLpggdj4FQ=="/>
<POI MapID="1438" xpos="933.192" ypos="-11.0483" zpos="607.01" type="leag.eod.nkc.history.8" GUID="c6D+buLTVE+OxeuqDhi2UQ=="/>
<!-- Raptor Runner: New Kaineng City -->
<Trail type="leag.eod.nkc.rrnkc" trailData="Data/EoD/Raptor Runner New Kaineng City Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.nkc.rrnkc" trailData="Data/EoD/Raptor Runner New Kaineng City.trl"/>
<POI MapID="1438" xpos="1047.39" ypos="26.8678" zpos="-365.289" type="leag.eod.nkc.rrnkc.start" GUID="aMeJOvqc+EakqcJqKNZjGA=="/>
<!-- Springer Fling: New Kaineng City -->
<Trail type="leag.eod.nkc.sfnkc" trailData="Data/EoD/Springer Fling New Kaineng City Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.nkc.sfnkc" trailData="Data/EoD/Springer Fling New Kaineng City.trl"/>
<POI MapID="1438" xpos="-522.123" ypos="6.07702" zpos="-6.94171" type="leag.eod.nkc.sfnkc.start" GUID="lPMwPiI3BUCVCKum5MiqRQ=="/>
<!-- The Hidden Vault -->
<Trail type="leag.eod.nkc.vault" trailData="Data/EoD/The Hidden Vault.trl"/>
<POI MapID="1438" xpos="933.85" ypos="-90.8932" zpos="559.146" type="leag.eod.nkc.vault" GUID="yWFvQj0YskWOeATwlHEd5g==" iconFile="Data/Images/Swirl - Sea Green.png" alpha="0.8" inGameVisibility="0" mapDisplaySize="64"/>
<POI MapID="1438" xpos="997.42" ypos="-59.5864" zpos="643.126" type="leag.eod.nkc.vault" GUID="SeBVCXG1QESmACZlQzX0WA==" iconFile="Data/Images/Swirl - Sea Green.png" alpha="0.8" inGameVisibility="0" mapDisplaySize="64"/>
<POI MapID="1438" xpos="1036.1" ypos="-98.5539" zpos="562.921" type="leag.eod.nkc.vault" GUID="fi1KxXQH30262AG+7BzkZA==" iconFile="Data/Images/Swirl - Sea Green.png" alpha="0.8" inGameVisibility="0" mapDisplaySize="64"/>
<!-- Wind Through the Walls -->
<Trail type="leag.eod.nkc.wind" trailData="Data/EoD/Jumping Puzzles/Wind Through the Walls Start.trl"/>
<POI MapID="1438" xpos="583.659" ypos="2.48471" zpos="-5.10766" type="leag.eod.nkc.wind.sign" GUID="ZCc1suCS9UytKSLBYAH6YQ==" iconFile="Data/Images/Jumping Puzzles/Wind Through the Walls.png"/>
<Trail type="leag.eod.nkc.wind" trailData="Data/EoD/Jumping Puzzles/Wind Through the Walls Main.trl"/>
<Trail type="leag.eod.nkc.wind.jbglider" GUID="LjXVRbEK5ky8SjuxrabX5Q==" trailData="Data/EoD/Jumping Puzzles/Wind Through the Walls Short.trl" color="00FF00"/>
<POI MapID="1438" xpos="882.439" ypos="94.336" zpos="731.315" type="leag.eod.nkc.wind.jbglider" GUID="nLRjQ63GZUepk7o+aDH2hg==" fadeNear="1200" fadeFar="1400"/>
<POI MapID="1438" xpos="791.093" ypos="101.17" zpos="743.197" type="leag.eod.nkc.wind.jbglider" GUID="rOtk+8P1qEWBdFFO3doh4A==" fadeNear="1200" fadeFar="1400"/>
<POI MapID="1438" xpos="799.313" ypos="107.012" zpos="760.589" type="leag.eod.nkc.wind.jbglider" GUID="l11+96oUgEe/LQnqL6fCUw==" fadeNear="1200" fadeFar="1400"/>
<POI MapID="1438" xpos="1020.26" ypos="176.549" zpos="720.36" type="leag.eod.nkc.wind.jbglider" GUID="bQW1pykVAk6s44/Fef2RqQ==" fadeNear="1200" fadeFar="1400"/>
<POI MapID="1438" xpos="905.666" ypos="116.414" zpos="761.579" type="leag.eod.nkc.wind.jbglider" GUID="ZdN62/Eb/02CUdS//v29Cw==" fadeNear="1200" fadeFar="1400"/>
<POI MapID="1438" xpos="1027.63" ypos="115.221" zpos="766.967" type="leag.eod.nkc.wind.jbglider" GUID="bURZ979xtEWXYCnfUha3lg==" fadeNear="1200" fadeFar="1400"/>
<!-- THE ECHOVALD WILDS -->
<!-- A Guardian Once More -->
<Trail type="leag.eod.tew.guardian.ewfsp" trailData="Data/EoD/Echovald Wild's First Spirit Portal Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="FF5016"/>
<Trail type="leag.eod.tew.guardian.ewfsp" trailData="Data/EoD/Echovald Wild's First Spirit Portal.trl" color="FF5016"/>
<POI MapID="1452" xpos="-743.721" ypos="126.526" zpos="-201.125" type="leag.eod.tew.guardian.ewfsp.wp" GUID="a8vkWnE1hkqB3Wb1urLuSQ==" copy="[&BMwMAAA=]" copy-message="Kropa Waypoint"/>
<Trail type="leag.eod.tew.guardian.ewssp" trailData="Data/EoD/Echovald Wild's Second Spirit Portal Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="FF5016"/>
<Trail type="leag.eod.tew.guardian.ewssp" trailData="Data/EoD/Echovald Wild's Second Spirit Portal.trl" color="FF5016"/>
<POI MapID="1452" xpos="-524.506" ypos="25.6012" zpos="-679.499" type="leag.eod.tew.guardian.ewssp.wp" GUID="scW7mwkBE0CvyJxpw0t4tw==" copy="[&BKIMAAA=]" copy-message="Jade Quarry Waypoint in Dragon's End"/>
<!-- Cryptseeker -->
<Trail type="leag.eod.tew.cryptseeker" trailData="Data/EoD/Cryptseeker 0.trl" texture="Data/Images/Trails/Trail Marker 2 Small.png" color="3895CE"/>
<Trail type="leag.eod.tew.cryptseeker" trailData="Data/EoD/Cryptseeker 1.trl" color="3895CE"/>
<Trail type="leag.eod.tew.cryptseeker" trailData="Data/EoD/Cryptseeker 2.trl" color="3895CE"/>
<Trail type="leag.eod.tew.cryptseeker" trailData="Data/EoD/Cryptseeker 3.trl" color="3895CE"/>
<POI MapID="1452" xpos="-131.939" ypos="232.019" zpos="697.507" type="leag.eod.tew.cryptseeker.start" GUID="ux7J6ElCeE+uLP0AFc1dZw=="/>
<POI MapID="1452" xpos="-331.699" ypos="178.547" zpos="623.279" type="leag.eod.tew.cryptseeker.talk" GUID="yvT/n4NcQUSVKVuyCH2ZvQ=="/>
<POI MapID="1452" xpos="-331.56" ypos="178.506" zpos="623.129" type="leag.eod.tew.cryptseeker.wp" GUID="g1+FsaVg6USVPNHt3yfVmQ==" copy="[&BMwMAAA=]" copy-message="Kropa Waypoint"/>
<POI MapID="1452" xpos="-485.424" ypos="43.4637" zpos="-668.288" type="leag.eod.tew.cryptseeker.wp" GUID="OXVO8U8ZrkW2vtgAKNGGWw==" copy="[&BMcMAAA=]" copy-message="Mori Village Waypoint"/>
<POI MapID="1452" xpos="626.091" ypos="0.57545" zpos="-563.03" type="leag.eod.tew.cryptseeker.wp" GUID="zBHFHpvyK0qidIddoVSakw==" copy="[&BIsMAAA=]" copy-message="Junkyard Waypoint"/>
<POI MapID="1452" xpos="291.071" ypos="247.096" zpos="370.768" type="leag.eod.tew.cryptseeker.wp" GUID="gcBOHEt+FkuQ3RNUwm0PEg==" copy="[&BIsMAAA=]" copy-message="Junkyard Waypoint"/>
<POI MapID="1452" xpos="-126.107" ypos="162.838" zpos="704.079" type="leag.eod.tew.cryptseeker.1" GUID="YL+ZAULgZEuLPbzWpdKsHw=="/>
<POI MapID="1452" xpos="-488.21" ypos="163.026" zpos="-327.331" type="leag.eod.tew.cryptseeker.2" GUID="TKsLaqbi30eFFjZU2X+HjA=="/>
<POI MapID="1452" xpos="1053.53" ypos="6.05121" zpos="-527.235" type="leag.eod.tew.cryptseeker.3" GUID="lN1deFw+7E6MEMPZUhE7xQ=="/>
<POI MapID="1452" xpos="-124.155" ypos="162.828" zpos="704.891" type="leag.eod.tew.cryptseeker.4" GUID="PnohNkIr5E6TdjQWdOZfdQ=="/>
<!-- Dancing Barefoot -->
<POI MapID="1452" xpos="448.3748" ypos="114.6945" zpos="-19.14427" type="leag.eod.tew.barefoot" GUID="Wa/VVbhdhEuGnmoSZUy3cA=="/>
<!-- Dance like Bei Fung is Watching -->
<POI MapID="1452" xpos="-176.663" ypos="150.01" zpos="129.958" type="leag.eod.tew.dlbfiw" GUID="z3XtctqNnUSNj1/+OyXtFg=="/>
<!-- Distant Ancestry -->
<Trail type="leag.eod.tew.ancestry" trailData="Data/EoD/Distant Ancestry.trl"/>
<POI MapID="1452" xpos="1052.82" ypos="4.78146" zpos="-537.796" type="leag.eod.tew.ancestry.start" GUID="+VitCWMKLUyZn3gXXr+CkA=="/>
<POI MapID="1452" xpos="128.617" ypos="0.825804" zpos="-732.29" type="leag.eod.tew.ancestry.talk" GUID="k7VMpzHoD0WHgoolLrSa6Q=="/>
<!-- Echovald Unmade -->
<POI MapID="1452" xpos="-880.186" ypos="177.518" zpos="-483.595" type="leag.eod.tew.unmade" GUID="CrEE/1w9RU6XKy3YP01rww=="/>
<POI MapID="1452" xpos="438.081" ypos="69.053" zpos="-280.191" type="leag.eod.tew.unmade" GUID="AQtsQd8qxEWJVq/jBacUhg=="/>
<POI MapID="1452" xpos="817.826" ypos="96.0356" zpos="-75.3837" type="leag.eod.tew.unmade" GUID="Hw2AN9NghE6dMYpzYxBJ1Q=="/>
<POI MapID="1452" xpos="-826.733" ypos="132.437" zpos="-81.93" type="leag.eod.tew.unmade" GUID="boaNp+PtfUGUQfciBrLtwA=="/>
<POI MapID="1452" xpos="-141.334" ypos="178.424" zpos="346.501" type="leag.eod.tew.unmade" GUID="yX/sMClpwk6SR5E66iGepQ=="/>
<!-- Lighting the Echovald Wilds -->
<Trail type="leag.eod.tew.lanterns.1" trailData="Data/EoD/Lighting the Echovald Wilds 1 Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.tew.lanterns.1" trailData="Data/EoD/Lighting the Echovald Wilds 1.trl"/>
<Trail type="leag.eod.tew.lanterns.2" trailData="Data/EoD/Lighting the Echovald Wilds 2.trl"/>
<Trail type="leag.eod.tew.lanterns.2" trailData="Data/EoD/Lighting the Echovald Wilds 3b.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.tew.lanterns.2" trailData="Data/EoD/Lighting the Echovald Wilds 3c.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.tew.lanterns.2" trailData="Data/EoD/Lighting the Echovald Wilds 3d.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="leag.eod.tew.lanterns.3" trailData="Data/EoD/Lighting the Echovald Wilds 3.trl"/>
<Trail type="leag.eod.tew.lanterns.4" trailData="Data/EoD/Lighting the Echovald Wilds 4.trl"/>
<Trail type="leag.eod.tew.lanterns.5" trailData="Data/EoD/Lighting the Echovald Wilds 5.trl"/>
<Trail type="leag.eod.tew.lanterns.6" trailData="Data/EoD/Lighting the Echovald Wilds 6.trl"/>
<POI MapID="1452" xpos="-131.939" ypos="232.019" zpos="697.507" type="leag.eod.tew.lanterns.start" GUID="LMn00tZPRE2bq+Lx31XqEw=="/>
<POI MapID="1452" xpos="306.147" ypos="193.303" zpos="-40.7041" type="leag.eod.tew.lanterns" GUID="TluDnrqTzU2W+yIkKz4QGA==" iconFile="Data/Images/Icons/Blank.png" info="To pass through the Strange Door

EoD Chapter 10. Empty needs to be your active Story" infoRange="5"/>
<POI MapID="1452" xpos="429.801" ypos="178.354" zpos="-37.6909" type="leag.eod.tew.lanterns.wp" GUID="BGB06Hm+kU+XtQYGSzd26A==" copy="[&BMwMAAA=]" copy-message="Kropa Waypoint"/>
<POI MapID="1452" xpos="-525.3423" ypos="1.269574" zpos="-717.2641" type="leag.eod.tew.lanterns.wp" GUID="Z/ZZd0MhK06iQAMfohdrQg==" copy="[&BMwMAAA=]" copy-message="Kropa Waypoint"/>
<POI MapID="1452" xpos="615.008" ypos="11.5619" zpos="97.5671" type="leag.eod.tew.lanterns.wp" GUID="UYp/tmgvA0a4W96mg469+g==" copy="[&BMcMAAA=]" copy-message="Mori Village Waypoint"/>
<POI MapID="1452" xpos="167.37" ypos="1.07895" zpos="-714.089" type="leag.eod.tew.lanterns.wp" GUID="fdUuPpHAEki0tSV4WfhCBA==" copy="[&BPkMAAA=]" copy-message="Jade Gate Waypoint"/>
<POI MapID="1452" xpos="803.53" ypos="95.1658" zpos="-65.8125" type="leag.eod.tew.lanterns.wp" GUID="Lbv7sbHIdky78UfSaSlA1Q==" copy="[&BNQMAAA=]" copy-message="Qinkai Waypoint Waypoint"/>
<POI MapID="1452" xpos="-122.3133" ypos="163.0503" zpos="710.4022" type="leag.eod.tew.lanterns.1" GUID="lkT97Jros02/K/87nKqg1g=="/>
<POI MapID="1452" xpos="-487.26" ypos="163.177" zpos="-327.669" type="leag.eod.tew.lanterns.2" GUID="BHIK8fEv306vPnas9o5gww=="/>
<POI MapID="1452" xpos="-487.436" ypos="164.139" zpos="-334.792" type="leag.eod.tew.lanterns.3" GUID="m8v7Vrl9sUCa5FDj+ri1zg=="/>
<POI MapID="1452" xpos="1056.71" ypos="8.00521" zpos="-520.572" type="leag.eod.tew.lanterns.4" GUID="eJegXqI0nEqz6OVAfdJDoQ=="/>
<POI MapID="1452" xpos="1012.71" ypos="88.8307" zpos="44.0131" type="leag.eod.tew.lanterns.5" GUID="0THfIxSzXE+lNgwduuwuGQ=="/>
<POI MapID="1452" xpos="959.781" ypos="68.8302" zpos="512.55" type="leag.eod.tew.lanterns.6" GUID="e3C5wwGMx02ooLFYN/HDuA=="/>
<POI MapID="1452" xpos="-350.767" ypos="195.122" zpos="667.01" type="leag.eod.tew.lanterns.lantern" GUID="3YdMB1YF6U+7MeMdo1d+rg=="/>
<POI MapID="1452" xpos="-383.242" ypos="212.38" zpos="686.311" type="leag.eod.tew.lanterns.lantern" GUID="duzZrvTU4kGA1OLqbegq9Q=="/>
<POI MapID="1452" xpos="-588.608" ypos="164.235" zpos="604.023" type="leag.eod.tew.lanterns.lantern" GUID="1XjAvbBob0iDBPLDFsNhfg=="/>
<POI MapID="1452" xpos="-640.576" ypos="177.47" zpos="211.722" type="leag.eod.tew.lanterns.lantern" GUID="+fqtSUGfFEu4+1D0N0GbWA=="/>
<POI MapID="1452" xpos="-1095.76" ypos="175.147" zpos="151.628" type="leag.eod.tew.lanterns.lantern" GUID="arD9u7w7BkC4H20c1scYjw=="/>
<POI MapID="1452" xpos="-835.553" ypos="133.855" zpos="-128.189" type="leag.eod.tew.lanterns.lantern" GUID="UnE0YEyeH06qBDdJb59k8w=="/>
<POI MapID="1452" xpos="-707.696" ypos="194.863" zpos="15.443" type="leag.eod.tew.lanterns.lantern" GUID="UWIpnqhzRUmvX3OzNu4K4Q=="/>
<POI MapID="1452" xpos="-604.707" ypos="166.276" zpos="112.148" type="leag.eod.tew.lanterns.lantern" GUID="d/GX8NL89EGkhO0Ca7APWQ=="/>
<POI MapID="1452" xpos="-424.158" ypos="115.551" zpos="-104.787" type="leag.eod.tew.lanterns.lantern" GUID="1JyuZ0Hdm0i+eoR/9MbYuA=="/>
<POI MapID="1452" xpos="-473.26" ypos="163.147" zpos="-333.783" type="leag.eod.tew.lanterns.lantern" GUID="YothLCWeyU6tT/LXkrZlMA=="/>
<POI MapID="1452" xpos="-422.04" ypos="160.067" zpos="-303.563" type="leag.eod.tew.lanterns.lantern" GUID="5Gbylw5H00KGysMchcHaVQ=="/>
<POI MapID="1452" xpos="-875.625" ypos="222.168" zpos="-480.367" type="leag.eod.tew.lanterns.lantern" GUID="DjDIHtJFo0aHfracMJc3Qw=="/>
<POI MapID="1452" xpos="-869.131" ypos="178.504" zpos="-440.532" type="leag.eod.tew.lanterns.lantern" GUID="okF+x7UqyEqVPidyzUKS7A=="/>
<POI MapID="1452" xpos="-1006.9" ypos="162.162" zpos="-500.794" type="leag.eod.tew.lanterns.lantern" GUID="ID75D5xFxUeSIyEWlJ62fg=="/>
<POI MapID="1452" xpos="-1008.71" ypos="168.73" zpos="-626.264" type="leag.eod.tew.lanterns.lantern" GUID="r+TRr6Si+02HcrnoRt4F4Q=="/>
<POI MapID="1452" xpos="-772.547" ypos="199.817" zpos="-674.589" type="leag.eod.tew.lanterns.lantern" GUID="TkE4K0om7kOLpBHWCU165w=="/>
<POI MapID="1452" xpos="-525.397" ypos="1.27447" zpos="-717.81" type="leag.eod.tew.lanterns.lantern" GUID="LtK7ebJCXE6ks9+7vW4Q0w=="/>
<POI MapID="1452" xpos="-510.919" ypos="315.844" zpos="-525.771" type="leag.eod.tew.lanterns.lantern" GUID="M0bTx0NqN0Cun7ZgSxajIw=="/>
<POI MapID="1452" xpos="-324.397" ypos="139.374" zpos="-447.488" type="leag.eod.tew.lanterns.lantern" GUID="gKYtIv5Myk6DLe1Njz8GLQ=="/>
<POI MapID="1452" xpos="-53.6559" ypos="117.914" zpos="-686.785" type="leag.eod.tew.lanterns.lantern" GUID="PYZTlpdHTUaRSXulWM6xew=="/>
<POI MapID="1452" xpos="100.904" ypos="190.93" zpos="-505.36" type="leag.eod.tew.lanterns.lantern" GUID="jdUzr0fjPUauw19+NT3Aqw=="/>
<POI MapID="1452" xpos="76.1139" ypos="223.125" zpos="-261.341" type="leag.eod.tew.lanterns.lantern" GUID="AsMfwKl4ME2FscmKujLhGQ=="/>
<POI MapID="1452" xpos="292.339" ypos="137.182" zpos="-230.261" type="leag.eod.tew.lanterns.lantern" GUID="xdIyy6JOcE62YjdQwtvVAg=="/>
<POI MapID="1452" xpos="419.495" ypos="61.0882" zpos="-280.959" type="leag.eod.tew.lanterns.lantern" GUID="fRs1RZfw+k2aJbxHtIlrgg=="/>
<POI MapID="1452" xpos="615.047" ypos="11.5621" zpos="97.6136" type="leag.eod.tew.lanterns.lantern" GUID="M7L7VVF7tki54MA7/Mvf4Q=="/>
<POI MapID="1452" xpos="1055.36" ypos="8.38899" zpos="-518.202" type="leag.eod.tew.lanterns.lantern" GUID="k6SGux+l5EaJS6Av6u8B/Q=="/>
<POI MapID="1452" xpos="1013.5" ypos="6.13126" zpos="-528.862" type="leag.eod.tew.lanterns.lantern" GUID="e3RNFTgErk6o80Y2JCsFMA=="/>
<POI MapID="1452" xpos="1040.66" ypos="40.7519" zpos="-627.814" type="leag.eod.tew.lanterns.lantern" GUID="wl+2oqOuy0ONezmANcVSPQ=="/>
<POI MapID="1452" xpos="1037.92" ypos="99.7374" zpos="-665.868" type="leag.eod.tew.lanterns.lantern" GUID="VFMy0sIwzkqk2pe++C4jaQ=="/>
<POI MapID="1452" xpos="850.55" ypos="93.2392" zpos="-620.484" type="leag.eod.tew.lanterns.lantern" GUID="WTSec4WhiEKn69wAdrrGhQ=="/>
<POI MapID="1452" xpos="653.405" ypos="2.98796" zpos="-461.907" type="leag.eod.tew.lanterns.lantern" GUID="UJ5COakQY0Kw652UoRJUnQ=="/>
<POI MapID="1452" xpos="508.584" ypos="4.95085" zpos="-656.225" type="leag.eod.tew.lanterns.lantern" GUID="TeMe0k6ATEG+meibk0pgLg=="/>
<POI MapID="1452" xpos="166.986" ypos="0.87237" zpos="-713.835" type="leag.eod.tew.lanterns.lantern" GUID="x/zYuohaT0+RuLpa9wePnQ=="/>
<POI MapID="1452" xpos="1011.06" ypos="89.2374" zpos="62.3625" type="leag.eod.tew.lanterns.lantern" GUID="Mcky8JhJ5UK177qzszyq1A=="/>
<POI MapID="1452" xpos="1040.82" ypos="23.558" zpos="126.001" type="leag.eod.tew.lanterns.lantern" GUID="ftYxccSTh0mKTxy+bvH03Q=="/>
<POI MapID="1452" xpos="1069.26" ypos="29.2334" zpos="-91.9867" type="leag.eod.tew.lanterns.lantern" GUID="wjVHhqeS+kqetlSGKuxMsg=="/>
<POI MapID="1452" xpos="803.397" ypos="95.3532" zpos="-64.9252" type="leag.eod.tew.lanterns.lantern" GUID="Ep6AyPYH5E60Pf/sHiSpyA=="/>
<POI MapID="1452" xpos="1051.07" ypos="10.9323" zpos="424.312" type="leag.eod.tew.lanterns.lantern" GUID="w6KfVBhmwUGVg5w7u5mILA=="/>
<POI MapID="1452" xpos="1026.686" ypos="3.967957" zpos="737.1854" type="leag.eod.tew.lanterns.lantern" GUID="amQZoK/9KEGYhEuK7i8fjQ=="/>
<POI MapID="1452" xpos="708.364" ypos="263.735" zpos="523.44" type="leag.eod.tew.lanterns.lantern" GUID="EzWuFwCXKkG04ouvgsR9JQ=="/>
<POI MapID="1452" xpos="457.613" ypos="154.595" zpos="231.066" type="leag.eod.tew.lanterns.lantern" GUID="bnezWIkXwECFY6omA47hmg=="/>
<POI MapID="1452" xpos="48.403" ypos="294.307" zpos="496.34" type="leag.eod.tew.lanterns.lantern" GUID="x6IN+XJxwUmQSbsTUciZIA=="/>
<POI MapID="1452" xpos="40.8758" ypos="173.93" zpos="520.513" type="leag.eod.tew.lanterns.lantern" GUID="j5qDo6kObE2Usm0Z07vhtQ=="/>
<POI MapID="1452" xpos="82.4436" ypos="168.299" zpos="626.623" type="leag.eod.tew.lanterns.lantern" GUID="ROOk9ZFe8UWVGfzQ+XmAKw=="/>
<POI MapID="1452" xpos="150.3" ypos="217.039" zpos="678.885" type="leag.eod.tew.lanterns.lantern" GUID="E11PVe68OUWknsPZZ5cFfA=="/>
<POI MapID="1452" xpos="308.688" ypos="204.914" zpos="727.79" type="leag.eod.tew.lanterns.lantern" GUID="3oYD9BDTJkGP4VqHmmsSrA=="/>
<POI MapID="1452" xpos="374.258" ypos="99.7927" zpos="165.395" type="leag.eod.tew.lanterns.lantern" GUID="TSW+oU1eyEKaZTGL7AzO1g=="/>
<POI MapID="1452" xpos="-232.383" ypos="149.815" zpos="-153.669" type="leag.eod.tew.lanterns.lantern" GUID="csnbYc401Uyuqr/tKWPDBA=="/>
<POI MapID="1452" xpos="-106.216" ypos="204.299" zpos="-56.3527" type="leag.eod.tew.lanterns.lantern" GUID="pg/+nCOovUmMJc+lzYDqXg=="/>
<POI MapID="1452" xpos="-265.038" ypos="150.355" zpos="13.0594" type="leag.eod.tew.lanterns.lantern" GUID="Cjhy21SvuE6bSBhXpbTegA=="/>
<POI MapID="1452" xpos="-285.857" ypos="215.664" zpos="276.86" type="leag.eod.tew.lanterns.lantern" GUID="jNTDBXB+bU6UIBFgN1zhJg=="/>
<POI MapID="1452" xpos="-103.178" ypos="91.7346" zpos="0.817216" type="leag.eod.tew.lanterns.lantern" GUID="m6HIo3Q/J0eVcfuv8YF8Yg=="/>
<POI MapID="1452" xpos="-185.708" ypos="150.176" zpos="141.594" type="leag.eod.tew.lanterns.lantern" GUID="mMogha3slESueuvmsI48Qw=="/>
<POI MapID="1452" xpos="-106.325" ypos="204.298" zpos="-56.4624" type="leag.eod.tew.lanterns.lantern" GUID="cykx/a3GiEKkS9Rn3pW71Q=="/>
<POI MapID="1452" xpos="54.6817" ypos="117.715" zpos="30.4282" type="leag.eod.tew.lanterns.lantern" GUID="0QdLpxYJIkWOFgC/y7d1FA=="/>
<POI MapID="1452" xpos="2.74456" ypos="180.969" zpos="138.167" type="leag.eod.tew.lanterns.lantern" GUID="3Njwmho6TEKFy7ZaMVCl8g=="/>
<POI MapID="1452" xpos="278.927" ypos="246.423" zpos="345.309" type="leag.eod.tew.lanterns.lantern" GUID="iHXk0qWwPEW7hv4LrzS+tQ=="/>
<POI MapID="1452" xpos="295.373" ypos="232.566" zpos="118.972" type="leag.eod.tew.lanterns.lantern" GUID="lrHVLAw5UUS1IZeKxiM6sg=="/>
<POI MapID="1452" xpos="429.801" ypos="178.354" zpos="-37.6909" type="leag.eod.tew.lanterns.lantern" GUID="vf+OVkGtUEC0OSeyMPxqSA=="/>
<!-- Raptor Runner -->
<Trail type="leag.eod.tew.rrtew" trailData="Data/EoD/Raptor Runner The Echovald Wilds.trl"/>
<POI MapID="1452" xpos="-872.326" ypos="134.041" zpos="-88.1077" type="leag.eod.tew.rrtew.start" GUID="MMW5sdMVukijLq60YUF9sA=="/>
<!-- Respect Your Elders -->
<POI MapID="1452" xpos="1114.12" ypos="66.2001" zpos="-571.032" type="leag.eod.tew.rye" GUID="t4C6bS1StEiX7LUajIZAUQ=="/>
<POI MapID="1452" xpos="1123.09" ypos="66.2182" zpos="-658.718" type="leag.eod.tew.rye" GUID="rcVvxKnjpkSHZ8QisiD79Q=="/>
<POI MapID="1452" xpos="1129.32" ypos="67.2323" zpos="-642.882" type="leag.eod.tew.rye" GUID="2hl4EZP/EUyPoiDw08t6YA=="/>
<POI MapID="1452" xpos="1069.75" ypos="66.7088" zpos="-665.395" type="leag.eod.tew.rye" GUID="jMqQ1h/4FkiNv2uTNNKMKQ=="/>
<POI MapID="1452" xpos="1060.78" ypos="66.8974" zpos="-685.198" type="leag.eod.tew.rye" GUID="AQdGffn2qkquM8/hokYREw=="/>
<POI MapID="1452" xpos="1073.99" ypos="66.2191" zpos="-700.716" type="leag.eod.tew.rye" GUID="dW9yjMEh7UmhNdExrbObiQ=="/>
<POI MapID="1452" xpos="1041.11" ypos="66.764" zpos="-679.718" type="leag.eod.tew.rye" GUID="tmYfNakRIUuN+bXT6pBmOg=="/>
<POI MapID="1452" xpos="1019.22" ypos="66.5984" zpos="-656.738" type="leag.eod.tew.rye" GUID="ATHgk/GiC0inOLRMx1sSFg=="/>
<POI MapID="1452" xpos="928.917" ypos="67.7113" zpos="-617.147" type="leag.eod.tew.rye" GUID="obZQwMZG3EqP7Xx+pqzTnQ=="/>
<POI MapID="1452" xpos="935.239" ypos="66.4586" zpos="-602.4" type="leag.eod.tew.rye" GUID="fRol/QFa4Uim5bBjluuYsA=="/>
<POI MapID="1452" xpos="950.073" ypos="67.9911" zpos="-537.404" type="leag.eod.tew.rye" GUID="2xiEQVIsREy+oQ/0x3veUg=="/>
<POI MapID="1452" xpos="966.055" ypos="67.9889" zpos="-537.683" type="leag.eod.tew.rye" GUID="mU16kP/5MUKyZJkWzOoO1g=="/>
<POI MapID="1452" xpos="961.622" ypos="67.0488" zpos="-550.221" type="leag.eod.tew.rye" GUID="YYJJBR7p3EGV14tPv8Fg8Q=="/>
<POI MapID="1452" xpos="1013.67" ypos="39.9332" zpos="-585.989" type="leag.eod.tew.rye" GUID="Wm4gE9B+fkGsNsYPjShVjw=="/>
<POI MapID="1452" xpos="1022.07" ypos="39.5684" zpos="-570.347" type="leag.eod.tew.rye" GUID="AAsG7C8qNE6W18Kk2JoiRA=="/>
<POI MapID="1452" xpos="1083.95" ypos="61.4316" zpos="-549.852" type="leag.eod.tew.rye" GUID="R0a5OHU7qk2cN+QJUFhEUA=="/>
<POI MapID="1452" xpos="1129.41" ypos="67.106" zpos="-583.171" type="leag.eod.tew.rye" GUID="0e/Ls+2M7ki/6OVwEfUlYw=="/>
<!-- Springer Fling -->
<Trail type="leag.eod.tew.sftew" trailData="Data/EoD/Springer Fling The Echovald Wilds.trl"/>
<POI MapID="1452" xpos="-584.803" ypos="204.919" zpos="-711.41" type="leag.eod.tew.sftew.start" GUID="ptq7sFtAkkW13UOYFYxkrA=="/>
<!-- What Did the Shrine Guardians Say? -->
<Trail type="leag.eod.tew.wdtsgs" trailData="Data/EoD/What Did the Shrine Guardians Say 1.trl"/>
<Trail type="leag.eod.tew.wdtsgs" trailData="Data/EoD/What Did the Shrine Guardians Say 2.trl"/>
<Trail type="leag.eod.tew.wdtsgs" trailData="Data/EoD/What Did the Shrine Guardians Say 3.trl"/>
<Trail type="leag.eod.tew.wdtsgs" trailData="Data/EoD/What Did the Shrine Guardians Say 4.trl"/>
<Trail type="leag.eod.tew.wdtsgs" trailData="Data/EoD/What Did the Shrine Guardians Say 5.trl"/>
<Trail type="leag.eod.tew.wdtsgs" trailData="Data/EoD/What Did the Shrine Guardians Say 6.trl"/>
<Trail type="leag.eod.tew.wdtsgs" trailData="Data/EoD/What Did the Shrine Guardians Say 7.trl"/>
<Trail type="leag.eod.tew.wdtsgs" trailData="Data/EoD/What Did the Shrine Guardians Say 8.trl"/>
<Trail type="leag.eod.tew.wdtsgs" trailData="Data/EoD/What Did the Shrine Guardians Say 9.trl"/>
<POI MapID="1452" xpos="-131.939" ypos="232.019" zpos="697.507" type="leag.eod.tew.wdtsgs.start" GUID="sxlKD7sSqUKpKPlWM+32jw=="/>
<POI MapID="1452" xpos="-125.866" ypos="162.828" zpos="705.112" type="leag.eod.tew.wdtsgs.1" GUID="MQUzQ2P/kkOx7DaEMY2ppw=="/>
<POI MapID="1452" xpos="-657.987" ypos="166.625" zpos="82.5762" type="leag.eod.tew.wdtsgs.2" GUID="NWGLF4CRlEmkxJxoOsYxXQ=="/>
<POI MapID="1452" xpos="-661.006" ypos="166.917" zpos="83.0347" type="leag.eod.tew.wdtsgs.3" GUID="rst0BqodHEakuWhKuHvQgA=="/>
<POI MapID="1452" xpos="-486.102" ypos="162.627" zpos="-324.825" type="leag.eod.tew.wdtsgs.4" GUID="wdf2KWX5UUiIfcl6t+1+6w=="/>
<POI MapID="1452" xpos="1055.09" ypos="7.26279" zpos="-522.07" type="leag.eod.tew.wdtsgs.5" GUID="1L0bD4AWeEyo8tLLJ10n2w=="/>
<POI MapID="1452" xpos="1018.31" ypos="89.5602" zpos="39.9992" type="leag.eod.tew.wdtsgs.6" GUID="pSEnwwy0m0eJOVPwsxhJ4g=="/>
<POI MapID="1452" xpos="1008.4" ypos="88.7752" zpos="35.3194" type="leag.eod.tew.wdtsgs.7" GUID="23lxw0Gj20GROrymO1Thew=="/>
<POI MapID="1452" xpos="954.612" ypos="68.8302" zpos="510.324" type="leag.eod.tew.wdtsgs.8" GUID="PHTlDqNQ40en3xmnME4kpQ=="/>
<POI MapID="1452" xpos="953.101" ypos="68.8302" zpos="514.229" type="leag.eod.tew.wdtsgs.9" GUID="/dH9LSeFvUqbaaOxc47gDw=="/>
<POI MapID="1452" xpos="-217.61" ypos="179.223" zpos="644.607" type="leag.eod.tew.wdtsgs.wp" GUID="mFdhF5F5/UaykovG+cTrlg==" copy="[&BMoMAAA=]" copy-message="Waypoint zu Heltzer"/>
<POI MapID="1452" xpos="13.4222" ypos="209.914" zpos="245.872" type="leag.eod.tew.wdtsgs.wp" GUID="+FKgcg4bkEyhAyGaUKB9EA==" copy="[&BMoMAAA=]" copy-message="Waypoint zu Heltzer"/>
<POI MapID="1452" xpos="-554.78" ypos="204.919" zpos="-671.604" type="leag.eod.tew.wdtsgs.wp" GUID="un82fsFlHU64/CRpNRbjmQ==" copy="[&BMwMAAA=]" copy-message="Kropa Waypoint"/>
<POI MapID="1452" xpos="-288.984" ypos="177.863" zpos="-458.823" type="leag.eod.tew.wdtsgs.wp" GUID="U5OyK6AAmE+dhf4eXgPuVg==" copy="[&BMcMAAA=]" copy-message="Mori Village Waypoint"/>
<POI MapID="1452" xpos="626.917" ypos="39.6518" zpos="-555.274" type="leag.eod.tew.wdtsgs.wp" GUID="ErRo1uTxcEefvw/H3e4wOw==" copy="[&BPkMAAA=]" copy-message="Jade Gate Waypoint"/>
<POI MapID="1452" xpos="1112.03" ypos="93.4206" zpos="83.7016" type="leag.eod.tew.wdtsgs.wp" GUID="FwpAgQftPEaJG+HrYMX4Ow==" copy="[&BPkMAAA=]" copy-message="Jade Gate Waypoint"/>
<POI MapID="1452" xpos="59.0151" ypos="223.114" zpos="-280.717" type="leag.eod.tew.wdtsgs.wp" GUID="bOWAmZsvCESzWCYXZTz2uQ==" copy="[&BNQMAAA=]" copy-message="Qinkai Waypoint"/>
<POI MapID="1452" xpos="1083.95" ypos="7.11156" zpos="463.777" type="leag.eod.tew.wdtsgs.wp" GUID="JfbULDRlZ0a9wYWjgujGWw==" copy="[&BNQMAAA=]" copy-message="Qinkai Waypoint"/>
<!-- DRAGON'S END -->
<!-- A Guardian Once More -->
<Trail type="leag.eod.de.guardian.defsp" trailData="Data/EoD/Dragon's End First Spirit Portal Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="FF5016"/>
<Trail type="leag.eod.de.guardian.defsp" trailData="Data/EoD/Dragon's End First Spirit Portal.trl" color="FF5016"/>
<POI MapID="1422" xpos="-127.114" ypos="0.526428" zpos="-732.531" type="leag.eod.de.guardian.defsp.wp" GUID="BANVPAj4UEO0n4wSxQSN5g==" copy="[&BPEMAAA=]" copy-message="Frozen Sea Waypoint"/>
<Trail type="leag.eod.de.guardian.dessp" trailData="Data/EoD/Dragon's End Second Spirit Portal Alt.trl" texture="Data/Images/Trails/Dashed Line with Shadow.png" color="FF5016"/>
<Trail type="leag.eod.de.guardian.dessp" trailData="Data/EoD/Dragon's End Second Spirit Portal.trl" color="FF5016"/>
<POI MapID="1422" xpos="-382.5073" ypos="182.3202" zpos="-982.3657" type="leag.eod.de.guardian.defsp.wp" GUID="9r4HdGd4rk2cgAkKTruQYw==" copy="[&BJ4MAAA=]" copy-message="Village Waypoint"/>
<!-- A Strange Diet -->
<POI MapID="1422" xpos="520.4003" ypos="158.8136" zpos="-79.05709" type="leag.eod.de.asd.turtle" GUID="i3QoO5DLmkirtB1sBSA0bw=="/>
<!-- 1 -->
<POI MapID="26" xpos="-418.209" ypos="38.6995" zpos="528.908" type="leag.eod.de.asd.1.shrimplings" GUID="eQ5hCXhDrkaf7skHlYj4wQ=="/>
<!--
<POI MapID="26" xpos="-518.915" ypos="1.3762" zpos="536.515" type="leag.eod.de.asd.1.shrimplings" GUID="K4AqFJdcAUS5wLjTAJZ0Rg=="/>
<POI MapID="26" xpos="-528.678" ypos="1.37717" zpos="500.6" type="leag.eod.de.asd.1.shrimplings" GUID="K9Qev/HhzUqI/xxV1ThY0g=="/>
<POI MapID="26" xpos="-546.199" ypos="1.37639" zpos="470.883" type="leag.eod.de.asd.1.shrimplings" GUID="KkKpwlCH40S4wTrxJCMuLg=="/>
<POI MapID="26" xpos="-575.011" ypos="1.37639" zpos="451.253" type="leag.eod.de.asd.1.shrimplings" GUID="UvMLTqrufkGCBlZyB12hiA=="/>
<POI MapID="26" xpos="-569.462" ypos="1.37639" zpos="485.538" type="leag.eod.de.asd.1.shrimplings" GUID="2PTX/4Mp1U+/YSXmQa2Cig=="/>
<POI MapID="26" xpos="-567.734" ypos="1.37639" zpos="506.089" type="leag.eod.de.asd.1.shrimplings" GUID="q8O5jo5EXkuhnxhZ80czFQ=="/>
<POI MapID="26" xpos="-556.363" ypos="1.37639" zpos="541.982" type="leag.eod.de.asd.1.shrimplings" GUID="luffc0Hk20yREU4ZqOUwtw=="/>
-->
<POI MapID="30" xpos="-633.477" ypos="0.933942" zpos="374.701" type="leag.eod.de.asd.1.shrimplings" GUID="0XQIMkTYf0meAvAA6Fs6vw=="/>
<!-- 2 -->
<POI MapID="51" xpos="710.343" ypos="19.5567" zpos="114.558" type="leag.eod.de.asd.2.leeches" GUID="dzyhy6p0w0ezGlruPgnpdA=="/>
<POI MapID="65" xpos="1025.6" ypos="30.5465" zpos="-366.628" type="leag.eod.de.asd.2.leeches" GUID="arIG1I/lPEmKCiDg6cPbJw=="/>
<POI MapID="62" xpos="111.69" ypos="32.1403" zpos="920.114" type="leag.eod.de.asd.2.leeches" GUID="jFH2uCZxVk2MBazKZ0blOw=="/>
<!-- 3 -->
<POI MapID="24" xpos="251.212" ypos="2.21437" zpos="-463.302" type="leag.eod.de.asd.3.minnows" GUID="6coKq0USSEWKyZgamvDaJA=="/>
<POI MapID="15" xpos="447.749" ypos="36.4758" zpos="141.224" type="leag.eod.de.asd.3.minnows" GUID="kmrEM/A8cESivfSmhjZPvA=="/>
<!-- 4 -->
<POI MapID="34" xpos="-173.21" ypos="4.88394" zpos="-1010.27" type="leag.eod.de.asd.4.sardines" GUID="gI5nWNabWUCpMwl1ocL/RA=="/>
<POI MapID="53" xpos="-599.008" ypos="6.86864" zpos="65.55" type="leag.eod.de.asd.4.sardines" GUID="aoQEbFTbs0iEjP/3zFay8g=="/>
<!-- 5 -->
<POI MapID="19" xpos="766.706" ypos="2.85422" zpos="-452.228" type="leag.eod.de.asd.5.minnows" GUID="Esy1lhIf30WJDZrFUSAgAQ=="/>
<POI MapID="32" xpos="828.06" ypos="7.99738" zpos="-626.933" type="leag.eod.de.asd.5.minnows" GUID="t8vAUwWB5UKttfaL5ZJjTw=="/>
<POI MapID="25" xpos="363.322" ypos="5.02138" zpos="-1032.44" type="leag.eod.de.asd.5.minnows" GUID="pWuJYtUclEW05FbBqymtYw=="/>
<!-- 6 -->
<POI MapID="1263" xpos="338.262" ypos="0.0775119" zpos="492.355" type="leag.eod.de.asd.6.fisheggs" GUID="5Y/4iRr/lE6/DjaldbaJ6g=="/>
<POI MapID="1271" xpos="-123.78" ypos="1.30623" zpos="692.001" type="leag.eod.de.asd.6.fisheggs" GUID="wCMDRZFOUkaCU27eT7/lGA=="/>
<!-- 7 -->
<POI MapID="1442" xpos="340.516" ypos="0.564624" zpos="693.66" type="leag.eod.de.asd.7.sardines" GUID="vNaJQ5dmeUSY6yfbfWImYg=="/>
<!-- 8 -->
<POI MapID="1438" xpos="-882.23" ypos="2.84036" zpos="-129.012" type="leag.eod.de.asd.8.mackeral" GUID="QzRE90gTJkivpaYpwivwkQ=="/>
<!-- 9 -->
<POI MapID="1452" xpos="-127.37" ypos="162.838" zpos="709.964" type="leag.eod.de.asd.9.glowworms" GUID="4yiIM0HkhkS5avguAGeMEw=="/>
<!-- 10 Dragon's End -->
<POI MapID="1422" xpos="520.4003" ypos="158.8136" zpos="-79.05709" type="leag.eod.de.asd.10.shrimplings" GUID="GVRhFjJuykeEzvybDYbbDg=="/>
<!--
<POI MapID="1422" xpos="-372.314" ypos="1.37505" zpos="112.063" type="leag.eod.de.asd.10.shrimplings" GUID="nNQOsFpUpU+3uaqDdaE2gg=="/>
<POI MapID="1422" xpos="-279.599" ypos="1.37639" zpos="39.1457" type="leag.eod.de.asd.10.shrimplings" GUID="OOIxMjFclUmiolCxbvbvvg=="/>
<POI MapID="1422" xpos="-252.34" ypos="1.37639" zpos="-36.0331" type="leag.eod.de.asd.10.shrimplings" GUID="w9y41DM+hkO+5uq6KAVB7A=="/>
<POI MapID="1422" xpos="-275.293" ypos="1.37639" zpos="-109.698" type="leag.eod.de.asd.10.shrimplings" GUID="FW/N2AzoGUeTccgFAgjGFA=="/>
<POI MapID="1422" xpos="-247.745" ypos="1.37639" zpos="-165.322" type="leag.eod.de.asd.10.shrimplings" GUID="Hy6B4eGQBUilscnO9jRpZA=="/>
<POI MapID="1422" xpos="-97.2" ypos="1.37639" zpos="-155.85" type="leag.eod.de.asd.10.shrimplings" GUID="iQFwFX6EVE62NXhhV4Vaww=="/>
<POI MapID="1422" xpos="-36.6675" ypos="1.37639" zpos="-183.125" type="leag.eod.de.asd.10.shrimplings" GUID="7J2IPdVWJEe8SGh+2qa4xg=="/>
<POI MapID="1422" xpos="-94.5628" ypos="1.37639" zpos="-267.63" type="leag.eod.de.asd.10.shrimplings" GUID="VelTkvb77Uq2Ixs+PFtfgA=="/>
<POI MapID="1422" xpos="-73.245" ypos="1.37639" zpos="-314.954" type="leag.eod.de.asd.10.shrimplings" GUID="DTLr+Bb48kyTUWinOTVtDA=="/>
<POI MapID="1422" xpos="5.14019" ypos="1.37639" zpos="-360.717" type="leag.eod.de.asd.10.shrimplings" GUID="Wj7k3ERQL0O6S58N6kzNXA=="/>
<POI MapID="1422" xpos="8.04633" ypos="1.37639" zpos="-433.01" type="leag.eod.de.asd.10.shrimplings" GUID="9j6tkkk6qkCyAHoix666jQ=="/>
<POI MapID="1422" xpos="-17.4075" ypos="1.37639" zpos="-467.628" type="leag.eod.de.asd.10.shrimplings" GUID="u/0gd8+8aEOCyvDwOKWKQg=="/>
<POI MapID="1422" xpos="-77.1018" ypos="1.37639" zpos="-513.422" type="leag.eod.de.asd.10.shrimplings" GUID="mvbeTzODb0uckdEVny7zQA=="/>
<POI MapID="1422" xpos="-155.863" ypos="1.37639" zpos="-538.862" type="leag.eod.de.asd.10.shrimplings" GUID="V0IaKt0o+0mKBrQvw+cJgA=="/>
<POI MapID="1422" xpos="-190.491" ypos="1.37639" zpos="-569.199" type="leag.eod.de.asd.10.shrimplings" GUID="eGnJab+zBEKDyOTjAA6G0Q=="/>
<POI MapID="1422" xpos="-150.722" ypos="1.37639" zpos="-596.602" type="leag.eod.de.asd.10.shrimplings" GUID="nwVxgJxgDEaS8004bmgbfQ=="/>
<POI MapID="1422" xpos="-190.16" ypos="1.37639" zpos="-618.771" type="leag.eod.de.asd.10.shrimplings" GUID="5TcT7936qkWR9vEZs+s+0g=="/>
<POI MapID="1422" xpos="-185.404" ypos="1.37639" zpos="-666.053" type="leag.eod.de.asd.10.shrimplings" GUID="pglwNfsDGEuw66FHg9xYqA=="/>
<POI MapID="1422" xpos="-141.567" ypos="1.37639" zpos="-687.512" type="leag.eod.de.asd.10.shrimplings" GUID="2osMmAdR+UGe/qTgxsxETA=="/>
<POI MapID="1422" xpos="-144.746" ypos="1.37639" zpos="-737.753" type="leag.eod.de.asd.10.shrimplings" GUID="yhiKy18NP0u+cCSv3NWliA=="/>
<POI MapID="1422" xpos="-130.585" ypos="1.37639" zpos="-759.19" type="leag.eod.de.asd.10.shrimplings" GUID="/UWG781LgkOPoeNJUgE6yw=="/>
<POI MapID="1422" xpos="-134.32" ypos="1.37639" zpos="-796.784" type="leag.eod.de.asd.10.shrimplings" GUID="YeiFgg97Q0Wldm5KxzeHpA=="/>
<POI MapID="1422" xpos="-188.352" ypos="1.37639" zpos="-802.265" type="leag.eod.de.asd.10.shrimplings" GUID="Jf966gs9+EWy22NpGtYefw=="/>
<POI MapID="1422" xpos="-191" ypos="1.37639" zpos="-770.789" type="leag.eod.de.asd.10.shrimplings" GUID="zEuV9toq9kiQGsi8k7u88w=="/>
<POI MapID="1422" xpos="-234.951" ypos="1.37639" zpos="-717.275" type="leag.eod.de.asd.10.shrimplings" GUID="XhLFCLQBI0C0E8522q0DVA=="/>
<POI MapID="1422" xpos="-334.759" ypos="1.37639" zpos="-733.542" type="leag.eod.de.asd.10.shrimplings" GUID="SV04VMth0EuAO+/4KWsmIg=="/>
<POI MapID="1422" xpos="-297.843" ypos="1.37639" zpos="-671.998" type="leag.eod.de.asd.10.shrimplings" GUID="Rh6hx1s29UKqov7Lkwc8iA=="/>
<POI MapID="1422" xpos="-239.584" ypos="1.37639" zpos="-648.074" type="leag.eod.de.asd.10.shrimplings" GUID="45BTEwhZck6/7Z1xsXThHg=="/>
<POI MapID="1422" xpos="-193.573" ypos="1.37639" zpos="-621.078" type="leag.eod.de.asd.10.shrimplings" GUID="WCp0SCBOEki2Urh1lnjIuQ=="/>