-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjan96down.xml
3752 lines (3752 loc) · 225 KB
/
jan96down.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
<?xml version="1.0" encoding="iso-8859-1"?>
<LandXML xmlns="http://www.landxml.org/schema/LandXML-1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.landxml.org/schema/LandXML-1.1 http://www.landxml.org/schema/landxml-1.1/LandXML-1.1.xsd" version="1.1" date="2005-02-09" time="20:47:12">
<Project name="rpc108"/>
<Units>
<Metric areaUnit="squareMeter" linearUnit="meter" volumeUnit="cubicMeter" temperatureUnit="celsius" pressureUnit="HPA"/>
</Units>
<Application name="Bentley InRoads 2005 Edition" manufacturer="Bentley Systems, Inc." version="08.09.00.39" manufacturerURL="www.bentley.com"/>
<Alignments>
<Alignment name="jan96down" length="110214.776597" staStart="0.000035" desc="ctrl down line, alp 18/7/96" state="proposed">
<CoordGeom name="jan96down" desc="ctrl down line, alp 18/7/96" state="proposed">
<Line length="532.195261" dir="5.804448132" staStart="0.000035">
<Start code="POB">
62969.158200 10134.120310 0.000000
</Start>
<End code="PC">
63441.522666 9888.959939 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Curve rot="cw" length="129.706120" chord="128.882806" dirStart="5.804448132" dirEnd="6.195129216" staStart="532.195296" radius="332.000000">
<Start code="PC">
63441.522666 9888.959939 0.000000
</Start>
<Center code="CC">
63594.461351 10183.635623 0.000000
</Center>
<End code="CS">
63565.264494 9852.921935 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="17.455000" radiusEnd="INF" radiusStart="332.000000" rot="cw" spiType="clothoid" dirStart="6.195129216" dirEnd="6.221416867" staStart="661.901416" constant="76.125291" theta="0.026287651" totalY="0.152943" totalX="17.453794" tanLong="11.637088" tanShort="5.818716">
<Start code="CS">
63565.264494 9852.921935 0.000000
</Start>
<PI code="PI">
63571.060666 9852.410223 0.000000
</PI>
<End code="ST">
63582.675561 9851.691876 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="84.527740" dir="6.221416867" staStart="679.356416">
<Start code="ST">
63582.675561 9851.691876 0.000000
</Start>
<End code="PC">
63667.042102 9846.474048 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Curve rot="cw" length="38.977052" chord="38.971422" dirStart="6.221416867" dirEnd="6.280294588" staStart="763.884157" radius="662.000000">
<Start code="PC">
63667.042102 9846.474048 0.000000
</Start>
<Center code="CC">
63707.906812 10507.211572 0.000000
</Center>
<End code="PCC">
63705.993159 9845.214338 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Curve rot="cw" length="115.619422" chord="114.880832" dirStart="6.280294588" dirEnd="0.389039524" staStart="802.861208" radius="295.000000">
<Start code="PCC">
63705.993159 9845.214338 0.000000
</Start>
<Center code="CC">
63706.845920 10140.213105 0.000000
</Center>
<End code="PCC">
63818.739387 9867.257336 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Curve rot="cw" length="193.281376" chord="189.955832" dirStart="0.389039524" dirEnd="1.033310776" staStart="918.480630" radius="300.000000">
<Start code="PCC">
63818.739387 9867.257336 0.000000
</Start>
<Center code="CC">
63704.949421 10144.839474 0.000000
</Center>
<End code="CS">
63962.649042 9991.246163 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="30.000000" radiusEnd="INF" radiusStart="300.000000" rot="cw" spiType="clothoid" dirStart="1.033310776" dirEnd="1.083310776" staStart="1111.762005" constant="94.868330" theta="0.050000000" totalY="0.499911" totalX="29.992501" tanLong="20.002620" tanShort="10.002382">
<Start code="CS">
63962.649042 9991.246163 0.000000
</Start>
<PI code="PI">
63967.770038 9999.838196 0.000000
</PI>
<End code="ST">
63977.139382 10017.510780 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="93.661897" dir="1.083310776" staStart="1141.762005">
<Start code="ST">
63977.139382 10017.510780 0.000000
</Start>
<End code="TS">
64021.011160 10100.262324 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Spiral length="30.000000" radiusEnd="645.000000" radiusStart="INF" rot="ccw" spiType="clothoid" dirStart="1.083310776" dirEnd="1.060054962" staStart="1235.423903" constant="139.104277" theta="0.023255814" totalY="0.232549" totalX="29.998378" tanLong="20.000567" tanShort="10.000515">
<Start code="TS">
64021.011160 10100.262324 0.000000
</Start>
<PI code="PI">
64030.379542 10117.933093 0.000000
</PI>
<End code="SC">
64035.268035 10126.657366 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="ccw" length="78.419971" chord="78.371680" dirStart="1.060054962" dirEnd="0.938473612" staStart="1265.423903" radius="645.000000">
<Start code="SC">
64035.268035 10126.657366 0.000000
</Start>
<Center code="CC">
64597.954651 9811.365799 0.000000
</Center>
<End code="CS">
64077.660941 10192.573689 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="30.000000" radiusEnd="INF" radiusStart="645.000000" rot="ccw" spiType="clothoid" dirStart="0.938473612" dirEnd="0.915217798" staStart="1343.843874" constant="139.104277" theta="0.023255814" totalY="0.232549" totalX="29.998378" tanLong="20.000567" tanShort="10.000515">
<Start code="CS">
64077.660941 10192.573689 0.000000
</Start>
<PI code="PI">
64083.571445 10200.640674 0.000000
</PI>
<End code="ST">
64095.764149 10216.495031 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="90.325750" dir="0.915217798" staStart="1373.843874">
<Start code="ST">
64095.764149 10216.495031 0.000000
</Start>
<End code="TS">
64150.828347 10288.095835 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Spiral length="30.000000" radiusEnd="612.000000" radiusStart="INF" rot="cw" spiType="clothoid" dirStart="0.915217798" dirEnd="0.939727602" staStart="1464.169623" constant="135.499077" theta="0.024509804" totalY="0.245088" totalX="29.998198" tanLong="20.000629" tanShort="10.000572">
<Start code="TS">
64150.828347 10288.095835 0.000000
</Start>
<PI code="PI">
64163.021090 10303.950242 0.000000
</PI>
<End code="SC">
64168.921507 10312.024678 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="cw" length="112.717988" chord="112.558737" dirStart="0.939727602" dirEnd="1.123907320" staStart="1494.169623" radius="612.000000">
<Start code="SC">
64168.921507 10312.024678 0.000000
</Start>
<Center code="CC">
63674.794290 10673.109562 0.000000
</Center>
<End code="CS">
64226.693392 10408.626327 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="30.000000" radiusEnd="INF" radiusStart="612.000000" rot="cw" spiType="clothoid" dirStart="1.123907320" dirEnd="1.148417124" staStart="1606.887611" constant="135.499077" theta="0.024509804" totalY="0.245088" totalX="29.998198" tanLong="20.000629" tanShort="10.000572">
<Start code="CS">
64226.693392 10408.626327 0.000000
</Start>
<PI code="PI">
64231.015261 10417.644802 0.000000
</PI>
<End code="ST">
64239.214153 10435.887700 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="585.963864" dir="1.148417124" staStart="1636.887611">
<Start code="ST">
64239.214153 10435.887700 0.000000
</Start>
<End code="TS">
64479.419328 10970.354841 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Spiral length="100.000000" radiusEnd="8000.000000" radiusStart="INF" rot="cw" spiType="clothoid" dirStart="1.148417124" dirEnd="1.154667124" staStart="2222.851475" constant="894.427191" theta="0.006250000" totalY="0.208333" totalX="99.999609" tanLong="66.666803" tanShort="33.333457">
<Start code="TS">
64479.419328 10970.354841 0.000000
</Start>
<PI code="PI">
64506.748165 11031.162713 0.000000
</PI>
<End code="SC">
64520.222316 11061.651508 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="cw" length="62.279123" chord="62.278966" dirStart="1.154667124" dirEnd="1.162452015" staStart="2322.851475" radius="8000.000000">
<Start code="SC">
64520.222316 11061.651508 0.000000
</Start>
<Center code="CC">
57202.938684 14295.435707 0.000000
</Center>
<End code="CS">
64545.174988 11118.713174 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="100.000000" radiusEnd="INF" radiusStart="8000.000000" rot="cw" spiType="clothoid" dirStart="1.162452015" dirEnd="1.168702015" staStart="2385.130598" constant="894.427191" theta="0.006250000" totalY="0.208333" totalX="99.999609" tanLong="66.666803" tanShort="33.333457">
<Start code="CS">
64545.174988 11118.713174 0.000000
</Start>
<PI code="PI">
64558.411382 11149.305939 0.000000
</PI>
<End code="ST">
64584.501200 11210.655625 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="681.221590" dir="1.168702015" staStart="2485.130598">
<Start code="ST">
64584.501200 11210.655625 0.000000
</Start>
<End code="TS">
64851.094869 11837.545305 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Spiral length="69.776000" radiusEnd="2508.000000" radiusStart="INF" rot="cw" spiType="clothoid" dirStart="1.168702015" dirEnd="1.182612700" staStart="3166.352189" constant="418.327871" theta="0.013910686" totalY="0.323540" totalX="69.774650" tanLong="46.517805" tanShort="23.259095">
<Start code="TS">
64851.094869 11837.545305 0.000000
</Start>
<PI code="PI">
64869.299448 11880.353009 0.000000
</PI>
<End code="SC">
64878.103197 11901.881583 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="cw" length="1178.028286" chord="1167.228801" dirStart="1.182612700" dirEnd="1.652320949" staStart="3236.128189" radius="2508.000000">
<Start code="SC">
64878.103197 11901.881583 0.000000
</Start>
<Center code="CC">
62556.703168 12851.179167 0.000000
</Center>
<End code="CS">
65056.373368 13055.416507 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="89.713000" radiusEnd="INF" radiusStart="2508.000000" rot="cw" spiType="clothoid" dirStart="1.652320949" dirEnd="1.670206315" staStart="4414.156475" constant="474.341864" theta="0.017885367" totalY="0.534838" totalX="89.710130" tanLong="59.809669" tanShort="29.905244">
<Start code="CS">
65056.373368 13055.416507 0.000000
</Start>
<PI code="PI">
65053.938054 13085.222427 0.000000
</PI>
<End code="ST">
65048.002163 13144.736809 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="1168.331225" dir="1.670206315" staStart="4503.869475">
<Start code="ST">
65048.002163 13144.736809 0.000000
</Start>
<End code="TS">
64932.049570 14307.299861 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Spiral length="110.176000" radiusEnd="4992.000000" radiusStart="INF" rot="ccw" spiType="clothoid" dirStart="1.670206315" dirEnd="1.659171059" staStart="5672.200701" constant="741.618899" theta="0.011035256" totalY="0.405270" totalX="110.174658" tanLong="73.451135" tanShort="36.725759">
<Start code="TS">
64932.049570 14307.299861 0.000000
</Start>
<PI code="PI">
64924.759814 14380.388360 0.000000
</PI>
<End code="SC">
64921.518408 14416.970797 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="ccw" length="513.537850" chord="513.311438" dirStart="1.659171059" dirEnd="1.556298893" staStart="5782.376701" radius="4992.000000">
<Start code="SC">
64921.518408 14416.970797 0.000000
</Start>
<Center code="CC">
69894.037100 14857.563425 0.000000
</Center>
<End code="CS">
64902.561689 14929.932077 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="110.176000" radiusEnd="INF" radiusStart="4992.000000" rot="ccw" spiType="clothoid" dirStart="1.556298893" dirEnd="1.545263637" staStart="6295.914551" constant="741.618899" theta="0.011035256" totalY="0.405270" totalX="110.174658" tanLong="73.451135" tanShort="36.725759">
<Start code="CS">
64902.561689 14929.932077 0.000000
</Start>
<PI code="PI">
64903.094099 14966.653977 0.000000
</PI>
<End code="ST">
64904.969301 15040.081171 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="848.894697" dir="1.545263637" staStart="6406.090551">
<Start code="ST">
64904.969301 15040.081171 0.000000
</Start>
<End code="TS">
64926.641511 15888.699179 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Spiral length="149.601000" radiusEnd="3008.000000" radiusStart="INF" rot="cw" spiType="clothoid" dirStart="1.545263637" dirEnd="1.570130825" staStart="7254.985248" constant="670.820250" theta="0.024867187" totalY="1.239997" totalX="149.591749" tanLong="99.737231" tanShort="49.869937">
<Start code="TS">
64926.641511 15888.699179 0.000000
</Start>
<PI code="PI">
64929.187794 15988.403901 0.000000
</PI>
<End code="SC">
64929.220982 16038.273827 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="cw" length="559.852638" chord="559.044908" dirStart="1.570130825" dirEnd="1.756252047" staStart="7404.586248" radius="3008.000000">
<Start code="SC">
64929.220982 16038.273827 0.000000
</Start>
<Center code="CC">
61921.221648 16040.275657 0.000000
</Center>
<End code="CS">
64877.641428 16594.934189 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="149.601000" radiusEnd="INF" radiusStart="3008.000000" rot="cw" spiType="clothoid" dirStart="1.756252047" dirEnd="1.781119235" staStart="7964.438886" constant="670.820250" theta="0.024867187" totalY="1.239997" totalX="149.591749" tanLong="99.737231" tanShort="49.869937">
<Start code="CS">
64877.641428 16594.934189 0.000000
</Start>
<PI code="PI">
64868.445688 16643.948972 0.000000
</PI>
<End code="SS">
64847.622978 16741.488348 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Spiral length="150.401000" radiusEnd="2992.000000" radiusStart="INF" rot="ccw" spiType="clothoid" dirStart="1.781119235" dirEnd="1.755985378" staStart="8114.039886" constant="670.820238" theta="0.025133857" totalY="1.259996" totalX="150.391499" tanLong="100.270651" tanShort="50.136683">
<Start code="SS">
64847.622978 16741.488348 0.000000
</Start>
<PI code="PI">
64826.688902 16839.549390 0.000000
</PI>
<End code="SC">
64817.457116 16888.828809 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="ccw" length="508.959785" chord="508.346363" dirStart="1.755985378" dirEnd="1.585878498" staStart="8264.440886" radius="2992.000000">
<Start code="SC">
64817.457116 16888.828809 0.000000
</Start>
<Center code="CC">
67758.298278 17439.752817 0.000000
</Center>
<End code="CS">
64766.638569 17394.628671 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="150.401000" radiusEnd="INF" radiusStart="2992.000000" rot="ccw" spiType="clothoid" dirStart="1.585878498" dirEnd="1.560744641" staStart="8773.400670" constant="670.820238" theta="0.025133857" totalY="1.259996" totalX="150.391499" tanLong="100.270651" tanShort="50.136683">
<Start code="CS">
64766.638569 17394.628671 0.000000
</Start>
<PI code="PI">
64765.882428 17444.759652 0.000000
</PI>
<End code="ST">
64766.890300 17545.025238 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="1359.969589" dir="1.560744641" staStart="8923.801670">
<Start code="ST">
64766.890300 17545.025238 0.000000
</Start>
<End code="TS">
64780.560057 18904.926124 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Spiral length="170.454000" radiusEnd="2992.000000" radiusStart="INF" rot="ccw" spiType="clothoid" dirStart="1.560744641" dirEnd="1.532259681" staStart="10283.771259" constant="714.141700" theta="0.028484960" totalY="1.618365" totalX="170.440170" tanLong="113.640830" tanShort="56.822391">
<Start code="TS">
64780.560057 18904.926124 0.000000
</Start>
<PI code="PI">
64781.702320 19018.561213 0.000000
</PI>
<End code="SC">
64783.891522 19075.341417 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="ccw" length="757.741982" chord="755.718583" dirStart="1.532259681" dirEnd="1.279003671" staStart="10454.225259" radius="2992.000000">
<Start code="SC">
64783.891522 19075.341417 0.000000
</Start>
<Center code="CC">
67773.670128 18960.068309 0.000000
</Center>
<End code="CS">
64908.142799 19820.775651 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="180.482000" radiusEnd="INF" radiusStart="2992.000000" rot="ccw" spiType="clothoid" dirStart="1.279003671" dirEnd="1.248842909" staStart="11211.967241" constant="734.848382" theta="0.030160762" totalY="1.814374" totalX="180.465583" tanLong="120.327067" tanShort="60.165879">
<Start code="CS">
64908.142799 19820.775651 0.000000
</Start>
<PI code="PI">
64925.450691 19878.398302 0.000000
</PI>
<End code="SS">
64963.524607 19992.542859 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Spiral length="179.521000" radiusEnd="3008.000000" radiusStart="INF" rot="cw" spiType="clothoid" dirStart="1.248842909" dirEnd="1.278683501" staStart="11392.449241" constant="734.846357" theta="0.029840592" totalY="1.785557" totalX="179.505015" tanLong="119.686249" tanShort="59.845409">
<Start code="SS">
64963.524607 19992.542859 0.000000
</Start>
<PI code="PI">
65001.395756 20106.079524 0.000000
</PI>
<End code="SC">
65018.629808 20163.389736 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="cw" length="458.140051" chord="457.697359" dirStart="1.278683501" dirEnd="1.430990699" staStart="11571.970241" radius="3008.000000">
<Start code="SC">
65018.629808 20163.389736 0.000000
</Start>
<Center code="CC">
62138.055998 21029.622109 0.000000
</Center>
<End code="CS">
65116.707245 20610.455379 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="178.435000" radiusEnd="INF" radiusStart="3008.000000" rot="cw" spiType="clothoid" dirStart="1.430990699" dirEnd="1.460650772" staStart="12030.110292" constant="732.620284" theta="0.029660073" totalY="1.764021" totalX="178.419303" tanLong="118.962149" tanShort="59.483317">
<Start code="CS">
65116.707245 20610.455379 0.000000
</Start>
<PI code="PI">
65124.996284 20669.358323 0.000000
</PI>
<End code="SS">
65138.072957 20787.599574 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Spiral length="53.186000" radiusEnd="10000.000000" radiusStart="INF" rot="ccw" spiType="clothoid" dirStart="1.460650772" dirEnd="1.457991472" staStart="12208.545292" constant="729.287323" theta="0.002659300" totalY="0.047146" totalX="53.185962" tanLong="35.457346" tanShort="17.728679">
<Start code="SS">
65138.072957 20787.599574 0.000000
</Start>
<PI code="PI">
65141.970534 20822.842053 0.000000
</PI>
<End code="SC">
65143.966176 20840.458053 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="ccw" length="87.428660" chord="87.428381" dirStart="1.457991472" dirEnd="1.449248606" staStart="12261.731292" radius="10000.000000">
<Start code="SC">
65143.966176 20840.458053 0.000000
</Start>
<Center code="CC">
75080.408940 19714.800373 0.000000
</Center>
<End code="CS">
65154.187282 20927.286912 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="60.000000" radiusEnd="INF" radiusStart="10000.000000" rot="ccw" spiType="clothoid" dirStart="1.449248606" dirEnd="1.446248606" staStart="12349.159952" constant="774.596669" theta="0.003000000" totalY="0.060000" totalX="59.999946" tanLong="40.000019" tanShort="20.000017">
<Start code="CS">
65154.187282 20927.286912 0.000000
</Start>
<PI code="PI">
65156.612257 20947.139373 0.000000
</PI>
<End code="ST">
65161.581299 20986.829550 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="307.531768" dir="1.446248606" staStart="12409.159952">
<Start code="ST">
65161.581299 20986.829550 0.000000
</Start>
<End code="TS">
65199.784731 21291.979162 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Spiral length="179.522000" radiusEnd="3008.000000" radiusStart="INF" rot="cw" spiType="clothoid" dirStart="1.446248606" dirEnd="1.476089364" staStart="12716.691720" constant="734.848403" theta="0.029840758" totalY="1.785577" totalX="179.506015" tanLong="119.686916" tanShort="59.845742">
<Start code="TS">
65199.784731 21291.979162 0.000000
</Start>
<PI code="PI">
65214.652954 21410.738978 0.000000
</PI>
<End code="SC">
65220.312294 21470.316530 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="cw" length="988.113675" chord="983.676894" dirStart="1.476089364" dirEnd="1.804584602" staStart="12896.213720" radius="3008.000000">
<Start code="SC">
65220.312294 21470.316530 0.000000
</Start>
<Center code="CC">
62225.792204 21754.769400 0.000000
</Center>
<End code="CS">
65151.961877 22451.615900 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="179.522000" radiusEnd="INF" radiusStart="3008.000000" rot="cw" spiType="clothoid" dirStart="1.804584602" dirEnd="1.834425360" staStart="13884.327395" constant="734.848403" theta="0.029840758" totalY="1.785577" totalX="179.506015" tanLong="119.686916" tanShort="59.845742">
<Start code="CS">
65151.961877 22451.615900 0.000000
</Start>
<PI code="PI">
65138.097750 22509.833584 0.000000
</PI>
<End code="ST">
65106.909026 22625.385397 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="250.165484" dir="1.834425360" staStart="14063.849395">
<Start code="ST">
65106.909026 22625.385397 0.000000
</Start>
<End code="TS">
65041.719425 22866.907829 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Spiral length="70.000000" radiusEnd="10000.000000" radiusStart="INF" rot="ccw" spiType="clothoid" dirStart="1.834425360" dirEnd="1.830925360" staStart="14314.014879" constant="836.660027" theta="0.003500000" totalY="0.081667" totalX="69.999914" tanLong="46.666697" tanShort="23.333361">
<Start code="TS">
65041.719425 22866.907829 0.000000
</Start>
<PI code="PI">
65029.558741 22911.962222 0.000000
</PI>
<End code="SC">
65023.557278 22934.510574 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="ccw" length="37.836242" chord="37.836219" dirStart="1.830925360" dirEnd="1.827141736" staStart="14384.014879" radius="10000.000000">
<Start code="SC">
65023.557278 22934.510574 0.000000
</Start>
<Center code="CC">
74687.125260 25506.563033 0.000000
</Center>
<End code="CS">
65013.894792 22971.092207 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="70.000000" radiusEnd="INF" radiusStart="10000.000000" rot="ccw" spiType="clothoid" dirStart="1.827141736" dirEnd="1.823641736" staStart="14421.851121" constant="836.660027" theta="0.003500000" totalY="0.081667" totalX="69.999914" tanLong="46.666697" tanShort="23.333361">
<Start code="CS">
65013.894792 22971.092207 0.000000
</Start>
<PI code="PI">
65007.978687 22993.663104 0.000000
</PI>
<End code="SS">
64996.304550 23038.846012 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Spiral length="70.000000" radiusEnd="10000.000000" radiusStart="INF" rot="cw" spiType="clothoid" dirStart="1.823641736" dirEnd="1.827141736" staStart="14491.851121" constant="836.660027" theta="0.003500000" totalY="0.081667" totalX="69.999914" tanLong="46.666697" tanShort="23.333361">
<Start code="SS">
64996.304550 23038.846012 0.000000
</Start>
<PI code="PI">
64984.630414 23084.028919 0.000000
</PI>
<End code="SC">
64978.714308 23106.599816 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="cw" length="42.411644" chord="42.411613" dirStart="1.827141736" dirEnd="1.831382900" staStart="14561.851121" radius="10000.000000">
<Start code="SC">
64978.714308 23106.599816 0.000000
</Start>
<Center code="CC">
55305.483840 20571.128990 0.000000
</Center>
<End code="CS">
64967.873994 23147.602651 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="70.000000" radiusEnd="INF" radiusStart="10000.000000" rot="cw" spiType="clothoid" dirStart="1.831382900" dirEnd="1.834882900" staStart="14604.262765" constant="836.660027" theta="0.003500000" totalY="0.081667" totalX="69.999914" tanLong="46.666697" tanShort="23.333361">
<Start code="CS">
64967.873994 23147.602651 0.000000
</Start>
<PI code="PI">
64961.862215 23170.148254 0.000000
</PI>
<End code="ST">
64949.680918 23215.197079 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="65.222160" dir="1.834882900" staStart="14674.262765">
<Start code="ST">
64949.680918 23215.197079 0.000000
</Start>
<End code="TS">
64932.656133 23278.158074 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Spiral length="209.330000" radiusEnd="2508.000000" radiusStart="INF" rot="cw" spiType="clothoid" dirStart="1.834882900" dirEnd="1.876615356" staStart="14739.484926" constant="724.568589" theta="0.041732456" totalY="2.911589" totalX="209.293546" tanLong="139.566066" tanShort="69.788242">
<Start code="TS">
64932.656133 23278.158074 0.000000
</Start>
<PI code="PI">
64896.225535 23412.885571 0.000000
</PI>
<End code="SC">
64875.214089 23479.435687 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="cw" length="826.018439" chord="822.290112" dirStart="1.876615356" dirEnd="2.205968801" staStart="14948.814926" radius="2508.000000">
<Start code="SC">
64875.214089 23479.435687 0.000000
</Start>
<Center code="CC">
62483.583574 22724.341335 0.000000
</Center>
<End code="CS">
64502.446771 24212.378764 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="225.000000" radiusEnd="INF" radiusStart="2508.000000" rot="cw" spiType="clothoid" dirStart="2.205968801" dirEnd="2.250825260" staStart="15774.833365" constant="751.199042" theta="0.044856459" totalY="3.363751" totalX="224.954732" tanLong="150.015812" tanShort="75.014375">
<Start code="CS">
64502.446771 24212.378764 0.000000
</Start>
<PI code="PI">
64457.939515 24272.763039 0.000000
</PI>
<End code="ST">
64363.607243 24389.408513 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="436.924241" dir="2.250825260" staStart="15999.833365">
<Start code="ST">
64363.607243 24389.408513 0.000000
</Start>
<End code="TS">
64088.862499 24729.140933 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Spiral length="170.000000" radiusEnd="3085.626000" radiusStart="INF" rot="ccw" spiType="clothoid" dirStart="2.250825260" dirEnd="2.223278176" staStart="16436.757606" constant="724.262673" theta="0.027547084" totalY="1.560917" totalX="169.987100" tanLong="113.337839" tanShort="56.670762">
<Start code="TS">
64088.862499 24729.140933 0.000000
</Start>
<PI code="PI">
64017.593907 24817.267283 0.000000
</PI>
<End code="SC">
63983.185670 24862.296701 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="ccw" length="1231.841576" chord="1223.677604" dirStart="2.223278176" dirEnd="1.824058836" staStart="16606.757606" radius="3085.626000">
<Start code="SC">
63983.185670 24862.296701 0.000000
</Start>
<Center code="CC">
66434.960424 26735.766308 0.000000
</Center>
<End code="CS">
63447.765557 25962.620372 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="69.436000" radiusEnd="4984.000000" radiusStart="3085.626000" rot="ccw" spiType="clothoid" dirStart="1.824058836" dirEnd="1.805841419" staStart="17838.599182" constant="750.001476" theta="0.018217416" totalY="-1.000000" totalX="-1.000000" tanLong="37.441426" tanShort="31.996473">
<Start code="CS">
63447.765557 25962.620372 0.000000
</Start>
<PI code="PI">
63439.748402 25993.596161 0.000000
</PI>
<End code="SC">
63431.028786 26030.008092 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="ccw" length="449.029872" chord="448.878022" dirStart="1.805841419" dirEnd="1.715747143" staStart="17908.035182" radius="4984.000000">
<Start code="SC">
63431.028786 26030.008092 0.000000
</Start>
<Center code="CC">
68277.987929 27190.716093 0.000000
</Center>
<End code="CS">
63346.255081 26470.808384 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="110.000000" radiusEnd="INF" radiusStart="4984.000000" rot="ccw" spiType="clothoid" dirStart="1.715747143" dirEnd="1.704711830" staStart="18357.065054" constant="740.432306" theta="0.011035313" totalY="0.404625" totalX="109.998660" tanLong="73.333801" tanShort="36.667092">
<Start code="CS">
63346.255081 26470.808384 0.000000
</Start>
<PI code="PI">
63340.958748 26507.090949 0.000000
</PI>
<End code="ST">
63331.167541 26579.768171 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="633.004600" dir="1.704711830" staStart="18467.065054">
<Start code="ST">
63331.167541 26579.768171 0.000000
</Start>
<End code="TS">
63246.651551 27207.105298 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>
</Line>
<Spiral length="110.000000" radiusEnd="5016.000000" radiusStart="INF" rot="cw" spiType="clothoid" dirStart="1.704711830" dirEnd="1.715676742" staStart="19100.069654" constant="742.805493" theta="0.010964912" totalY="0.402043" totalX="109.998677" tanLong="73.333795" tanShort="36.667087">
<Start code="TS">
63246.651551 27207.105298 0.000000
</Start>
<PI code="PI">
63236.860345 27279.782515 0.000000
</PI>
<End code="SC">
63231.566567 27316.065447 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="cw" length="184.248494" chord="184.238136" dirStart="1.715676742" dirEnd="1.752408898" staStart="19210.069654" radius="5016.000000">
<Start code="SC">
63231.566567 27316.065447 0.000000
</Start>
<Center code="CC">
58268.118307 26591.884966 0.000000
</Center>
<End code="CS">
63201.623745 27497.854110 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="110.000000" radiusEnd="INF" radiusStart="5016.000000" rot="cw" spiType="clothoid" dirStart="1.752408898" dirEnd="1.763373810" staStart="19394.318148" constant="742.805493" theta="0.010964912" totalY="0.402043" totalX="109.998677" tanLong="73.333795" tanShort="36.667087">
<Start code="CS">
63201.623745 27497.854110 0.000000
</Start>
<PI code="PI">
63195.001088 27533.918159 0.000000
</PI>
<End code="SS">
63180.965780 27605.896320 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Spiral length="90.000000" radiusEnd="5984.000000" radiusStart="INF" rot="ccw" spiType="clothoid" dirStart="1.763373810" dirEnd="1.755853757" staStart="19504.318148" constant="733.866473" theta="0.007520053" totalY="0.225601" totalX="89.999491" tanLong="60.000178" tanShort="30.000162">
<Start code="SS">
63180.965780 27605.896320 0.000000
</Start>
<PI code="PI">
63169.482384 27664.787346 0.000000
</PI>
<End code="SC">
63163.962264 27694.275276 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Curve rot="ccw" length="157.253602" chord="157.249077" dirStart="1.755853757" dirEnd="1.729574746" staStart="19594.318148" radius="5984.000000">
<Start code="SC">
63163.962264 27694.275276 0.000000
</Start>
<Center code="CC">
69045.789563 28795.349128 0.000000
</Center>
<End code="CS">
63137.061301 27849.206261 0.000000
</End>
<Feature code="Curve">
<Property label="style" value="Default"/>
</Feature>
</Curve>
<Spiral length="90.000000" radiusEnd="INF" radiusStart="5984.000000" rot="ccw" spiType="clothoid" dirStart="1.729574746" dirEnd="1.722054693" staStart="19751.571750" constant="733.866473" theta="0.007520053" totalY="0.225601" totalX="89.999491" tanLong="60.000178" tanShort="30.000162">
<Start code="CS">
63137.061301 27849.206261 0.000000
</Start>
<PI code="PI">
63132.317912 27878.829056 0.000000
</PI>
<End code="ST">
63123.276950 27938.144166 0.000000
</End>
<Feature code="Spiral">
<Property label="style" value="Default"/>
</Feature>
</Spiral>
<Line length="2710.172362" dir="1.722054693" staStart="19841.571750">
<Start code="ST">
63123.276950 27938.144166 0.000000
</Start>
<End code="TS">
62714.902083 30617.372451 0.000000
</End>
<Feature code="Line">
<Property label="style" value="Default"/>
</Feature>