-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsen_tracks_with_narrative.dpf
More file actions
4773 lines (4773 loc) · 258 KB
/
sen_tracks_with_narrative.dpf
File metadata and controls
4773 lines (4773 loc) · 258 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<plot xmlns="http://www.debrief.info/plot" Created="Fri Oct 05 15:49:41 GMT 2018" Name="Debrief Plot" PlotId="1538753057403">
<details Text="Saved with Debrief version dated Wed Oct 03 12:37:59 GMT 2018"/>
<session>
<layers>
<track ColorMode="Per-fix Shades" EndTimeLabels="true" InterpolatePoints="false" LineStyle="0" LineThickness="3" LinkPositions="true" Name="Frigate" NameAtStart="true" NameLocation="Auto" NameVisible="true" PlotArrayCentre="false" PositionsVisible="true" SensorsVisible="true" SolutionsVisible="true" Symbol="Unknown" Visible="true">
<colour Value="BLUE"/>
<SymbolColor Value="BLUE"/>
<font Bold="false" Family="Arial" Italic="false" Size="12"/>
<TrackSegment LineStyle="Solid" Name="030134.25" PlotRelative="false" Visible="true">
<fix ArrowShowing="false" Course="149.300" Dtg="700103 013425" Label="030134" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4730900" Long="8.1202679"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 013525" Label="0135" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4702234" Long="8.1236189"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 013625" Label="0136" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4673595" Long="8.1269654"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 013725" Label="0137" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4644928" Long="8.1303160"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 013825" Label="0138" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4616289" Long="8.1336649"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 013925" Label="0139" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4587622" Long="8.1370151"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 014025" Label="0140" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4558956" Long="8.1403651"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 014125" Label="0141" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4530317" Long="8.1437107"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 014225" Label="0142" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4501650" Long="8.1470602"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 014325" Label="0143" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4473011" Long="8.1504082"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 014425" Label="0144" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4444345" Long="8.1537574"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 014525" Label="0145" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4415706" Long="8.1571022"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 014625" Label="0146" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4387039" Long="8.1604510"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 014725" Label="0147" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4358400" Long="8.1637981"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 014825" Label="0148" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4329734" Long="8.1671438"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 014925" Label="0149" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4301095" Long="8.1704906"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 015025" Label="0150" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4272428" Long="8.1738386"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 015125" Label="0151" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4243789" Long="8.1771822"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 015225" Label="0152" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4215122" Long="8.1805298"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 015325" Label="0153" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4186484" Long="8.1838730"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 015425" Label="0154" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4157817" Long="8.1872202"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 015525" Label="0155" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4129178" Long="8.1905631"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 015625" Label="0156" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4100511" Long="8.1939099"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 015725" Label="0157" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4071872" Long="8.1972523"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 015825" Label="0158" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4043206" Long="8.2005988"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 015925" Label="0159" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.4014567" Long="8.2039408"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 020025" Label="0200" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3985900" Long="8.2072869"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 020125" Label="0201" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3957261" Long="8.2106285"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 020225" Label="0202" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3928595" Long="8.2139742"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 020325" Label="0203" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3899956" Long="8.2173154"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 020425" Label="0204" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3871289" Long="8.2206579"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 020525" Label="0205" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3842650" Long="8.2240016"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 020625" Label="0206" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3813984" Long="8.2273437"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 020725" Label="0207" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3785345" Long="8.2306842"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 020825" Label="0208" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3756678" Long="8.2340286"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 020925" Label="0209" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3728039" Long="8.2373687"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 021025" Label="0210" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3699372" Long="8.2407100"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 021125" Label="0211" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3670706" Long="8.2440539"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 021225" Label="0212" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3642067" Long="8.2473934"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 021325" Label="0213" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3613400" Long="8.2507341"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 021425" Label="0214" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3584761" Long="8.2540732"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 021525" Label="0215" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3556095" Long="8.2574136"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 021625" Label="0216" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3527456" Long="8.2607551"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 021725" Label="0217" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3498789" Long="8.2640950"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 021825" Label="0218" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3470150" Long="8.2674333"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 021925" Label="0219" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3441484" Long="8.2707729"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 022025" Label="0220" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3412845" Long="8.2741108"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 022125" Label="0221" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3384178" Long="8.2774500"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 022225" Label="0222" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3355539" Long="8.2807875"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 022325" Label="0223" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3326872" Long="8.2841263"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 022425" Label="0224" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3298234" Long="8.2874634"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 022525" Label="0225" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3269567" Long="8.2908018"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 022625" Label="0226" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3240928" Long="8.2941386"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 022725" Label="0227" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3212261" Long="8.2974766"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 022825" Label="0228" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3183622" Long="8.3008129"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 022925" Label="0229" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3154956" Long="8.3041505"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 023025" Label="0230" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3126317" Long="8.3074865"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 023125" Label="0231" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3097650" Long="8.3108237"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 023225" Label="0232" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3069011" Long="8.3141593"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 023325" Label="0233" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3040345" Long="8.3174961"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 023425" Label="0234" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.3011706" Long="8.3208313"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 023525" Label="0235" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2983039" Long="8.3241677"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 023625" Label="0236" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2954400" Long="8.3275026"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 023725" Label="0237" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2925734" Long="8.3308358"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 023825" Label="0238" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2897095" Long="8.3341702"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 023925" Label="0239" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2868428" Long="8.3375059"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 024025" Label="0240" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2839789" Long="8.3408399"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 024125" Label="0241" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2811122" Long="8.3441751"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 024225" Label="0242" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2782456" Long="8.3475074"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 024325" Label="0243" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2753817" Long="8.3508409"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="149.300" Dtg="700103 024425" Label="0244" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2725150" Long="8.3541755"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="129.200" Dtg="700103 024525" Label="0245" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2702456" Long="8.3579778"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="122.500" Dtg="700103 024625" Label="0246" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2684372" Long="8.3619909"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 024725" Label="0247" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2668150" Long="8.3660498"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 024825" Label="0248" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2651900" Long="8.3701072"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 024925" Label="0249" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2635678" Long="8.3741659"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 025025" Label="0250" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2619428" Long="8.3782231"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 025125" Label="0251" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2603206" Long="8.3822817"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 025225" Label="0252" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2586956" Long="8.3863389"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 025325" Label="0253" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2570734" Long="8.3903973"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 025425" Label="0254" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2554511" Long="8.3944529"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 025525" Label="0255" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2538261" Long="8.3985127"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 025625" Label="0256" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2522039" Long="8.4025682"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 025725" Label="0257" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2505789" Long="8.4066278"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 025825" Label="0258" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2489567" Long="8.4106831"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 025925" Label="0259" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2473317" Long="8.4147398"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 030025" Label="0300" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2457095" Long="8.4187979"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 030125" Label="0301" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2440845" Long="8.4228544"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 030225" Label="0302" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2424622" Long="8.4269096"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 030325" Label="0303" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2408400" Long="8.4309674"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 030425" Label="0304" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2392150" Long="8.4350238"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 030525" Label="0305" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2375928" Long="8.4390787"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 030625" Label="0306" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2359678" Long="8.4431350"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 030725" Label="0307" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2343456" Long="8.4471926"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 030825" Label="0308" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2327206" Long="8.4512487"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 030925" Label="0309" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2310984" Long="8.4553034"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 031025" Label="0310" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2294761" Long="8.4593580"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 031125" Label="0311" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2278511" Long="8.4634139"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 031225" Label="0312" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2262289" Long="8.4674712"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 031325" Label="0313" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2246039" Long="8.4715270"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 031425" Label="0314" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2229817" Long="8.4755814"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 031525" Label="0315" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2213567" Long="8.4796371"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 031625" Label="0316" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2197345" Long="8.4836914"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 031725" Label="0317" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2181122" Long="8.4877455"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 031825" Label="0318" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2164872" Long="8.4918010"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 031925" Label="0319" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2148650" Long="8.4958551"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 032025" Label="0320" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2132400" Long="8.4999105"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 032125" Label="0321" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2116178" Long="8.5039644"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 032225" Label="0322" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2099928" Long="8.5080197"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 032325" Label="0323" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2083706" Long="8.5120735"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 032425" Label="0324" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2067456" Long="8.5161286"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 032525" Label="0325" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2051234" Long="8.5201823"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 032625" Label="0326" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2035011" Long="8.5242359"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 032725" Label="0327" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2018761" Long="8.5282909"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 032825" Label="0328" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.2002539" Long="8.5323444"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 032925" Label="0329" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1986289" Long="8.5363992"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 033025" Label="0330" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1970067" Long="8.5404526"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 033125" Label="0331" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1953817" Long="8.5445045"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 033225" Label="0332" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1937595" Long="8.5485577"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 033325" Label="0333" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1921372" Long="8.5526109"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 033425" Label="0334" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1905122" Long="8.5566654"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 033525" Label="0335" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1888900" Long="8.5607185"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 033625" Label="0336" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1872650" Long="8.5647701"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 033725" Label="0337" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1856428" Long="8.5688231"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 033825" Label="0338" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1840178" Long="8.5728773"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 033925" Label="0339" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1823956" Long="8.5769301"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 034025" Label="0340" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1807706" Long="8.5809815"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 034125" Label="0341" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1791484" Long="8.5850342"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 034225" Label="0342" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1775261" Long="8.5890868"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 034325" Label="0343" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1759011" Long="8.5931380"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 034425" Label="0344" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1742789" Long="8.5971905"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 034525" Label="0345" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1726539" Long="8.6012443"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 034625" Label="0346" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1710317" Long="8.6052939"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 034725" Label="0347" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1694067" Long="8.6093476"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 034825" Label="0348" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1677845" Long="8.6133971"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 034925" Label="0349" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1661622" Long="8.6174493"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 035025" Label="0350" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1645372" Long="8.6215000"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 035125" Label="0351" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1629150" Long="8.6255521"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 035225" Label="0352" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1612900" Long="8.6296027"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 035325" Label="0353" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1596678" Long="8.6336546"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 035425" Label="0354" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1580428" Long="8.6377051"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 035525" Label="0355" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1564206" Long="8.6417569"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 035625" Label="0356" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1547984" Long="8.6458059"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 035725" Label="0357" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1531734" Long="8.6498590"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 035825" Label="0358" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1515511" Long="8.6539078"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 035925" Label="0359" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1499261" Long="8.6579580"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 040025" Label="0400" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1483039" Long="8.6620095"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 040125" Label="0401" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1466789" Long="8.6660595"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 040225" Label="0402" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1450567" Long="8.6701081"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 040325" Label="0403" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1434317" Long="8.6741608"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 040425" Label="0404" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1418095" Long="8.6782093"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 040525" Label="0405" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1401872" Long="8.6822577"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 040625" Label="0406" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1385622" Long="8.6863102"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 040725" Label="0407" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1369400" Long="8.6903585"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 040825" Label="0408" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1353150" Long="8.6944082"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 040925" Label="0409" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1336928" Long="8.6984563"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 041025" Label="0410" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1320678" Long="8.7025086"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 041125" Label="0411" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1304456" Long="8.7065566"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 041225" Label="0412" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1288234" Long="8.7106046"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 041325" Label="0413" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1271984" Long="8.7146539"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 041425" Label="0414" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1255761" Long="8.7187018"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 041525" Label="0415" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1239511" Long="8.7227509"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 041625" Label="0416" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1223289" Long="8.7268015"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="119.100" Dtg="700103 041725" Label="0417" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="0.000" Lat="54.1207039" Long="8.7308505"/>
</centre>
</fix>
</TrackSegment>
</track>
<track ColorMode="Per-fix Shades" EndTimeLabels="true" InterpolatePoints="false" LineStyle="0" LineThickness="3" LinkPositions="true" Name="New_SSK" NameAtStart="true" NameLocation="Auto" NameVisible="true" PlotArrayCentre="false" PositionsVisible="true" SensorsVisible="true" SolutionsVisible="true" Symbol="Unknown" Visible="true">
<colour Value="RED"/>
<SymbolColor Value="RED"/>
<font Bold="false" Family="Arial" Italic="false" Size="12"/>
<TrackSegment LineStyle="Solid" Name="030134.25" PlotRelative="false" Visible="true">
<fix ArrowShowing="false" Course="243.100" Dtg="700103 013425" Label="030134" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.3037537" Long="8.9350469"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 013525" Label="0135" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.3022482" Long="8.9324933"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 013625" Label="0136" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.3007426" Long="8.9299397"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 013725" Label="0137" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2992343" Long="8.9273902"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 013825" Label="0138" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2977287" Long="8.9248365"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 013925" Label="0139" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2962232" Long="8.9222827"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 014025" Label="0140" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2947176" Long="8.9197289"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 014125" Label="0141" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2932093" Long="8.9171764"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 014225" Label="0142" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2917037" Long="8.9146252"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 014325" Label="0143" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2901982" Long="8.9120712"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 014425" Label="0144" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2886898" Long="8.9095186"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 014525" Label="0145" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2871843" Long="8.9069645"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 014625" Label="0146" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2856787" Long="8.9044131"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 014725" Label="0147" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2841704" Long="8.9018603"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 014825" Label="0148" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2826648" Long="8.8993060"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 014925" Label="0149" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2811593" Long="8.8967545"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 015025" Label="0150" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2796509" Long="8.8942015"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 015125" Label="0151" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2781454" Long="8.8916471"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 015225" Label="0152" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2766398" Long="8.8890954"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 015325" Label="0153" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2751315" Long="8.8865423"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 015425" Label="0154" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2736259" Long="8.8839877"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 015525" Label="0155" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2721204" Long="8.8814358"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 015625" Label="0156" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2706148" Long="8.8788811"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 015725" Label="0157" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2691065" Long="8.8763306"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 015825" Label="0158" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2676009" Long="8.8737758"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 015925" Label="0159" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2660954" Long="8.8712237"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 020025" Label="0200" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2645871" Long="8.8686702"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 020125" Label="0201" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2630815" Long="8.8661180"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 020225" Label="0202" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2615759" Long="8.8635630"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 020325" Label="0203" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2600676" Long="8.8610121"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 020425" Label="0204" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2585621" Long="8.8584570"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 020525" Label="0205" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2570565" Long="8.8559046"/>
</centre>
</fix>
<fix ArrowShowing="false" Course="243.100" Dtg="700103 020625" Label="0206" LabelLocation="Right" LabelShowing="false" LineShowing="true" Speed="12.000" SymbolShowing="false" Visible="true">
<centre>
<shortLocation Depth="40.000" Lat="54.2555482" Long="8.8533535"/>