-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLIMO.postman_collection.json
1759 lines (1759 loc) · 813 KB
/
LIMO.postman_collection.json
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
{
"info": {
"_postman_id": "fce5ecb7-3dc6-4319-ad7d-44e9f0c2f641",
"name": "LIMO",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "LIMO Example 1",
"event": [
{
"listen": "test",
"script": {
"id": "53325c96-67a1-41db-8466-a7319a34a621",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"",
"pm.test(\"Body is correct\", function () {",
" pm.response.to.have.body('//OK[4,2,3,2,2,1,[\\\"java.util.ArrayList/4159755760\\\",\\\"java.lang.String/2004016611\\\",\\\"\\\",\\\"MSG,Hello World,-86.9168058978,40.4273633314\\\\n\\\"],0,7]');",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-GWT-Module-Base",
"value": "{{URL}}/gwtmaps/"
},
{
"key": "X-GWT-Permutation",
"value": "4A974DBE2FF476CCD6AEFA48C03077DD"
},
{
"key": "Origin",
"value": "{{URL}}"
},
{
"key": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36"
},
{
"key": "Content-Type",
"value": "text/x-gwt-rpc; charset=UTF-8"
},
{
"key": "Accept",
"value": "*/*"
},
{
"key": "Referer",
"value": "{{URL}}/GWTMaps.html"
},
{
"key": "Accept-Encoding",
"value": "gzip, deflate, br"
},
{
"key": "Accept-Language",
"value": "en-US,en;q=0.9"
},
{
"key": "Cookie",
"value": "JSESSIONID=12heme03gr6fmxt9byj4ctmir"
}
],
"body": {
"mode": "raw",
"raw": "7|0|6|{{URL}}/gwtmaps/|2340FA9687BBBA633B8360439C75EB4C|example.edu.client.service.ExampleService|runScript|java.lang.String/2004016611|# Program 1: Hello World\n# This program prints Hello World at a given address.\naddress = read_address(\"305 N University St\", \"West Lafayette\", \"IN\", \"47907\")\ndisplay_message(\"Hello World\", address)|1|2|3|4|1|5|6|"
},
"url": {
"raw": "{{URL}}/gwtmaps/exampleservice",
"host": [
"{{URL}}"
],
"path": [
"gwtmaps",
"exampleservice"
]
}
},
"response": []
},
{
"name": "LIMO Example 2",
"event": [
{
"listen": "test",
"script": {
"id": "818de24d-1dbc-4e43-85ac-62cb907cfce7",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"pm.test(\"Body is correct\", function () {",
" pm.response.to.have.body(\"//OK[4,2,3,2,2,1,[\\\"java.util.ArrayList/4159755760\\\",\\\"java.lang.String/2004016611\\\",\\\"Hello4\\\\n\\\",\\\"MARKER,-86.9228921858,40.4400029306\\\\nMARKER,-86.917928,40.427255\\\\nPOLYLINE,-86.9228921858;40.4400029306,-86.9228937544;40.4399128402,-86.921984;40.439897,-86.921574;40.439904,-86.921538;40.439905,-86.921216;40.439921,-86.920866;40.439954,-86.920623;40.439983,-86.92047;40.440002,-86.919897;40.440096,-86.919656;40.440136,-86.919357;40.440186,-86.919069;40.440235,-86.918462;40.440336,-86.918373;40.440352,-86.918269;40.440382,-86.918168;40.440406,-86.918056;40.440436,-86.918009;40.44045,-86.91775;40.440534,-86.917725;40.440545,-86.91762;40.440593,-86.917221;40.44037,-86.91715;40.44033,-86.916993;40.440281,-86.916805;40.440241,-86.91669;40.440227,-86.916482;40.440226,-86.916276;40.440241,-86.916137;40.440241,-86.916034;40.440229,-86.91588;40.440195,-86.915664;40.440147,-86.915588;40.440141,-86.91543;40.440143,-86.9153;40.440188,-86.915277;40.440193,-86.914899;40.440268,-86.914603;40.440328,-86.914344;40.440364,-86.914135;40.44038,-86.913682;40.440391,-86.913347;40.440407,-86.913269;40.440418,-86.913196;40.44043,-86.912894;40.440501,-86.912741;40.440553,-86.912439;40.440638,-86.912342;40.440658,-86.912293;40.440669,-86.912184;40.440679,-86.911148;40.440681,-86.911105;40.44068,-86.910693;40.440678,-86.910693;40.440571,-86.910694;40.440251,-86.910695;40.440145,-86.910697;40.439967,-86.910702;40.439701,-86.910704;40.439433,-86.910706;40.439256,-86.910703;40.43902,-86.910698;40.438627,-86.910693;40.438315,-86.910693;40.438263,-86.910685;40.43808,-86.910681;40.437829,-86.910655;40.437095,-86.910647;40.436849,-86.910643;40.436769,-86.910638;40.436585,-86.910633;40.436334,-86.910618;40.436144,-86.9106;40.435796,-86.910587;40.435533,-86.910575;40.435256,-86.910542;40.434427,-86.910531;40.434151,-86.910523;40.433966,-86.9105;40.433413,-86.910493;40.433229,-86.91049;40.433137,-86.910481;40.432862,-86.910478;40.432771,-86.910476;40.432671,-86.910476;40.432658,-86.910461;40.432374,-86.910456;40.432276,-86.910451;40.432176,-86.9104428801;40.4319879925,-86.9104513049;40.4313224342,-86.910654;40.431325,-86.911366;40.431337,-86.911604;40.431341,-86.911841;40.431345,-86.91221;40.431353,-86.912552;40.431358,-86.91279;40.431362,-86.912987;40.431365,-86.913258;40.431371,-86.913421;40.431369,-86.91358;40.431373,-86.913653;40.431375,-86.913778;40.431369,-86.913818;40.431367,-86.913938;40.431361,-86.913979;40.43136,-86.914095;40.431355,-86.914347;40.431343,-86.914375;40.431342,-86.914828;40.431327,-86.914843;40.431327,-86.915308;40.431325,-86.915453;40.431328,-86.915822;40.431337,-86.916111;40.431344,-86.916709;40.431353,-86.917962;40.431377,-86.918208;40.431381,-86.918949;40.431396,-86.919196;40.4314,-86.919188;40.431354,-86.919182;40.431272,-86.919181;40.431178,-86.919176;40.430627,-86.919175;40.430512,-86.919174;40.43029,-86.919172;40.430093,-86.919167;40.429503,-86.919166;40.429307,-86.919164;40.429107,-86.919163;40.428845,-86.919159;40.42851,-86.919157;40.428311,-86.919155;40.428105,-86.919152;40.42749,-86.919151;40.427285,-86.919147;40.427078,-86.9191466627;40.4270537169,-86.9191419464;40.4272848152,-86.918906;40.42728,-86.918304;40.427268,-86.918172;40.427263,-86.917928;40.427255\\\\n\\\"],0,7]\");",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-GWT-Module-Base",
"value": "{{URL}}/gwtmaps/"
},
{
"key": "X-GWT-Permutation",
"value": "4A974DBE2FF476CCD6AEFA48C03077DD"
},
{
"key": "Origin",
"value": "{{URL}}"
},
{
"key": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36"
},
{
"key": "Content-Type",
"value": "text/x-gwt-rpc; charset=UTF-8"
},
{
"key": "Accept",
"value": "*/*"
},
{
"key": "Referer",
"value": "{{URL}}/GWTMaps.html"
},
{
"key": "Accept-Encoding",
"value": "gzip, deflate, br"
},
{
"key": "Accept-Language",
"value": "en-US,en;q=0.9"
},
{
"key": "Cookie",
"value": "JSESSIONID=12heme03gr6fmxt9byj4ctmir"
}
],
"body": {
"mode": "raw",
"raw": "7|0|6|http://127.0.0.1:8888/gwtmaps/|2340FA9687BBBA633B8360439C75EB4C|example.edu.client.service.ExampleService|runScript|java.lang.String/2004016611|# Program 2: Sequential \n# This program moves a Commuter from one location to another showing the route traveled.\naddress = read_address(\"1156 Hillcrest Rd\", \"West Lafayette\", \"IN\", \"47906\")\ndisplay_marker(address)\nstart_at(\"com1\", address,\"EAST\")\nmove_until(\"com1\", \"N Grant St\")\nturn_to(\"com1\", \"N Grant St\", \"right\")\nmove_distance(\"com1\", 0.6)\nturn_to(\"com1\", \"W Stadium Ave\", \"right\")\nmove_until(\"com1\", \"Russell St\")\nturn_to(\"com1\", \"Russell St\", \"left\")\nmove_distance(\"com1\", 0.3)\nturn_to(\"com1\", \"3rd St\", \"left\")\nmove_to_next_intersection(\"com1\")\nlast_location = get_current_point(\"com1\")\ndisplay_marker(last_location)\nprint(\"Hello4\")\nshow_on_map(\"com1\")|1|2|3|4|1|5|6|"
},
"url": {
"raw": "{{URL}}/gwtmaps/exampleservice",
"host": [
"{{URL}}"
],
"path": [
"gwtmaps",
"exampleservice"
]
}
},
"response": []
},
{
"name": "LIMO Example 3",
"event": [
{
"listen": "test",
"script": {
"id": "3f7322fb-22aa-4ebb-b573-e448a44cadc5",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"pm.test(\"Body is correct\", function () {",
" pm.response.to.have.body(\"//OK[4,2,3,2,2,1,[\\\"java.util.ArrayList/4159755760\\\",\\\"java.lang.String/2004016611\\\",\\\"I will bike\\\\n\\\",\\\"MARKER,-86.9228921858,40.4400029306\\\\nMARKER,-86.917928,40.427255\\\\n\\\"],0,7]\");",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-GWT-Module-Base",
"value": "{{URL}}/gwtmaps/"
},
{
"key": "X-GWT-Permutation",
"value": "4A974DBE2FF476CCD6AEFA48C03077DD"
},
{
"key": "Origin",
"value": "{{URL}}"
},
{
"key": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36"
},
{
"key": "Content-Type",
"value": "text/x-gwt-rpc; charset=UTF-8"
},
{
"key": "Accept",
"value": "*/*"
},
{
"key": "Referer",
"value": "{{URL}}/GWTMaps.html"
},
{
"key": "Accept-Encoding",
"value": "gzip, deflate, br"
},
{
"key": "Accept-Language",
"value": "en-US,en;q=0.9"
},
{
"key": "Cookie",
"value": "JSESSIONID=12heme03gr6fmxt9byj4ctmir"
}
],
"body": {
"mode": "raw",
"raw": "7|0|6|http://127.0.0.1:8888/gwtmaps/|2340FA9687BBBA633B8360439C75EB4C|example.edu.client.service.ExampleService|runScript|java.lang.String/2004016611|# Program 3: conditional if-else \r\n# Extends Program 2, \r\n# First, the program moves a Commuter from one location to another showing the route traveled.\r\n# Next, the program computes distance, and prints \"I will bike\" if distance is less than\r\n# 3 miles, otherwise, the program prints \"I will drive\"\r\naddress = read_address(\"1156 Hillcrest Rd\", \"West Lafayette\", \"IN\", \"47906\")\r\ndisplay_marker(address)\r\nstart_at(\"com1\", address,\"EAST\")\r\nmove_until(\"com1\", \"N Grant St\")\r\nturn_to(\"com1\", \"N Grant St\", \"right\")\r\nmove_distance(\"com1\", 0.6)\r\nturn_to(\"com1\", \"W Stadium Ave\", \"right\")\r\nmove_until(\"com1\", \"Russell St\")\r\nturn_to(\"com1\", \"Russell St\", \"left\")\r\nmove_distance(\"com1\", 0.3)\r\nturn_to(\"com1\", \"3rd St\", \"left\")\r\nmove_to_next_intersection(\"com1\")\r\nlast_location = get_current_point(\"com1\")\r\ndisplay_marker(last_location)\r\ndistance = display_distance(\"com1\")\r\nif distance < 3:\r\n print \"I will bike\"\r\nelse:\r\n print \"I will drive\"|1|2|3|4|1|5|6|"
},
"url": {
"raw": "{{URL}}/gwtmaps/exampleservice",
"host": [
"{{URL}}"
],
"path": [
"gwtmaps",
"exampleservice"
]
}
},
"response": []
},
{
"name": "LIMO Example 4",
"event": [
{
"listen": "test",
"script": {
"id": "182838fd-d488-43ab-9f79-9099cdcf27be",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"pm.test(\"Body is correct\", function () {",
" pm.response.to.have.body(\"//OK[4,2,3,2,2,1,[\\\"java.util.ArrayList/4159755760\\\",\\\"java.lang.String/2004016611\\\",\\\"\\\",\\\"MSG,START,-86.9208804407,40.4400434129\\\\nPOLYLINE,-86.9208804407;40.4400434129,-86.9208719574;40.4399534383,-86.920866;40.439954,-86.920623;40.439983,-86.92047;40.440002,-86.919897;40.440096,-86.919656;40.440136,-86.919357;40.440186,-86.919069;40.440235,-86.918462;40.440336,-86.918373;40.440352,-86.918269;40.440382,-86.918168;40.440406,-86.918056;40.440436,-86.918009;40.44045,-86.91775;40.440534,-86.917725;40.440545,-86.91762;40.440593,-86.917221;40.44037,-86.91715;40.44033,-86.916993;40.440281,-86.916805;40.440241,-86.91669;40.440227,-86.916482;40.440226,-86.916276;40.440241,-86.916137;40.440241,-86.916034;40.440229,-86.91588;40.440195,-86.915664;40.440147,-86.915588;40.440141,-86.91543;40.440143,-86.9153;40.440188,-86.915277;40.440193,-86.914899;40.440268,-86.914603;40.440328,-86.914344;40.440364,-86.914135;40.44038,-86.913682;40.440391,-86.913347;40.440407,-86.913269;40.440418,-86.913196;40.44043,-86.912894;40.440501,-86.912741;40.440553,-86.912809;40.440722,-86.913014;40.441229,-86.913083;40.441398,-86.913184;40.441646,-86.913209;40.441708,-86.913362;40.442079,-86.913457;40.442311,-86.913571;40.442538,-86.913626;40.442622,-86.91368;40.442706,-86.913796;40.442855,-86.913827;40.442891,-86.913958;40.44303,-86.914112;40.443171,-86.914284;40.443303,-86.914449;40.44341,-86.914653;40.44352,-86.914871;40.443618,-86.915168;40.443735,-86.915292;40.443785,-86.91543;40.443821,-86.915555;40.443824,-86.91552;40.44364,-86.915506;40.443558,-86.915498;40.443502,-86.915495;40.44337,-86.915512;40.44324,-86.915545;40.443119,-86.915685;40.442782,-86.915745;40.442639,-86.9157749443;40.4425515951,-86.915782;40.442531,-86.915851;40.442543,-86.915961;40.442603,-86.916092;40.442686,-86.916286;40.442782,-86.916401;40.442823,-86.916506;40.44285,-86.916617;40.442868,-86.916738;40.442904,-86.916847;40.442952,-86.916952;40.443019,-86.917052;40.443102,-86.9171867451;40.4432140653,-86.9173201965;40.4433306435,-86.91725;40.443411,-86.917193;40.443504,-86.917177;40.443543,-86.917162;40.443583,-86.917131;40.44371,-86.917117;40.443838,-86.917083;40.444337,-86.917071;40.444533,-86.917071;40.444604,-86.917044;40.444833,-86.917043;40.444844,-86.916998;40.44557,-86.916984;40.445812,-86.916976;40.445926,-86.916973;40.44602,-86.916953;40.446645,-86.916947;40.446854,-86.916941;40.447049,-86.916924;40.447637,-86.916921;40.447767,-86.916922;40.447833,-86.917007;40.447835,-86.917035;40.447839,-86.917442;40.447856,-86.918305;40.447892,-86.919004;40.447918,-86.919525;40.447939,-86.919784;40.447954,-86.920252;40.447968,-86.920665;40.447982,-86.922436;40.448048,-86.922738;40.44806,-86.922993;40.44805,-86.923059;40.448039,-86.923152;40.447992,-86.9232487926;40.4479180856,-86.923222;40.447883,-86.922911;40.447477,-86.922502;40.446938,-86.922287;40.446656,-86.921796;40.446039,-86.92177;40.446006,-86.921247;40.445352,-86.921047;40.445144,-86.920681;40.444687,-86.920587;40.444723,-86.9205148287;40.4445736221,-86.920572;40.444546,-86.920737;40.444469,-86.921436;40.444146,-86.921502;40.444116,-86.921685;40.444035,-86.921757;40.443999,-86.921978;40.443894,-86.922032;40.443869,-86.922645;40.443587,-86.922785;40.443524,-86.922869;40.443487,-86.923042;40.443405,-86.923453;40.443212,-86.923562;40.443157,-86.923604;40.443137,-86.923706;40.443068,-86.923724;40.443054,-86.923708;40.442949,-86.923708;40.442934,-86.92372;40.442571,-86.923725;40.44245,-86.923728;40.442368,-86.923742;40.442176,-86.923769;40.441839,-86.923805;40.441565,-86.923822;40.441359,-86.92383;40.441278,-86.923833;40.441086,-86.92374;40.441084,-86.923492;40.44108,-86.923222;40.441076,-86.92286;40.441067,-86.922469;40.441062,-86.922129;40.441058,-86.922088;40.440984,-86.922009;40.440848,-86.921948;40.440768,-86.921908;40.440715,-86.921794;40.440589,-86.921639;40.440445,-86.921429;40.440306,-86.921183;40.440164,-86.921149;40.440143,-86.921068;40.440092,-86.920866;40.439954\\\\n\\\"],0,7]\");",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-GWT-Module-Base",
"value": "{{URL}}/gwtmaps/"
},
{
"key": "X-GWT-Permutation",
"value": "4A974DBE2FF476CCD6AEFA48C03077DD"
},
{
"key": "Origin",
"value": "{{URL}}"
},
{
"key": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36"
},
{
"key": "Content-Type",
"value": "text/x-gwt-rpc; charset=UTF-8"
},
{
"key": "Accept",
"value": "*/*"
},
{
"key": "Referer",
"value": "{{URL}}/GWTMaps.html"
},
{
"key": "Accept-Encoding",
"value": "gzip, deflate, br"
},
{
"key": "Accept-Language",
"value": "en-US,en;q=0.9"
},
{
"key": "Cookie",
"value": "JSESSIONID=12heme03gr6fmxt9byj4ctmir"
}
],
"body": {
"mode": "raw",
"raw": "7|0|6|http://127.0.0.1:8888/gwtmaps/|2340FA9687BBBA633B8360439C75EB4C|example.edu.client.service.ExampleService|runScript|java.lang.String/2004016611|# Program 4: Sequential\r\n# This program shows the route the Commuter travels to go from one point back to the same point.\r\naddress = read_address(\"1100 Hillcrest Rd\", \"West Lafayette\", \"IN\", \"47906\")\r\ndisplay_message(\"START\", address)\r\nstart_at(\"com1\", address, \"east\")\r\nmove_until(\"com1\", \"Ravinia Rd\")\r\nturn_to(\"com1\", \"Ravinia Rd\", \"north\")\r\nmove_until(\"com1\", \"Woodland Ave\")\r\nturn_to(\"com1\", \"Woodland Ave\", \"left\")\r\nmove_distance (\"com1\", 0.09)\r\nturn_to(\"com1\", \"Elmwood Dr\", \"right\")\r\nmove_distance(\"com1\", 0.09)\r\nturn_to(\"com1\", \"Garden St\", \"right\")\r\nmove_until(\"com1\", \"Windsor Dr\")\r\nturn_to(\"com1\", \"Windsor Dr\", \"left\")\r\nmove_until(\"com1\", \"Northwestern Ave\")\r\nturn_to(\"com1\", \"Northwestern Ave\", \"left\")\r\nmove_until(\"com1\", \"Oakhurst Dr\")\r\nturn_to(\"com1\", \"Oakhurst Dr\", \"west\")\r\nmove_until(\"com1\", \"Western Dr\")\r\nturn_to(\"com1\", \"Western Dr\", \"left\")\r\nmove_until(\"com1\", \"Glenway St\")\r\nturn_to(\"com1\", \"Glenway St\", \"left\")\r\nmove_until(\"com1\", \"Sheridan Rd\")\r\nmove_until(\"com1\", \"Sheridan Rd\")\r\nturn_to(\"com1\", \"Sheridan Rd\", \"right\")\r\nmove_until(\"com1\", \"Hillcrest Rd\")\r\nshow_on_map(\"com1\")|1|2|3|4|1|5|6|"
},
"url": {
"raw": "{{URL}}/gwtmaps/exampleservice",
"host": [
"{{URL}}"
],
"path": [
"gwtmaps",
"exampleservice"
]
}
},
"response": []
},
{
"name": "LIMO Example 5",
"event": [
{
"listen": "test",
"script": {
"id": "be7a384b-9290-4d27-82ee-4d7ef8215252",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"pm.test(\"Body is correct\", function () {",
" pm.response.to.have.body(\"//OK[4,2,3,2,2,1,[\\\"java.util.ArrayList/4159755760\\\",\\\"java.lang.String/2004016611\\\",\\\"home ---\\\\x3E museum 5.2mi\\\\nmuseum ---\\\\x3E zoo 3.3mi\\\\nzoo ---\\\\x3E speedway 3.2mi\\\\nspeedway ---\\\\x3E park 5.5mi\\\\npark ---\\\\x3E home 3.2mi\\\\n\\\",\\\"MARKER,-86.2528312775,39.8213490212\\\\nMARKER,-86.2390688596,39.7875311032\\\\nMARKER,-86.1568248153,39.8101651116\\\\nMARKER,-86.1857121722,39.7674189584\\\\nMARKER,-86.2984095576,39.8526847744\\\\nMSG,Home,-86.2528312775,39.8213490212\\\\nMSG,Motor Speedway,-86.2390688596,39.7875311032\\\\nMSG,The Children\\\\x27s Museum,-86.1568248153,39.8101651116\\\\nMSG,Zoo,-86.1857121722,39.7674189584\\\\nMSG,Eagle Creek Park,-86.2984095576,39.8526847744\\\\n\\\"],0,7]\");",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-GWT-Module-Base",
"value": "{{URL}}/gwtmaps/"
},
{
"key": "X-GWT-Permutation",
"value": "4A974DBE2FF476CCD6AEFA48C03077DD"
},
{
"key": "Origin",
"value": "{{URL}}"
},
{
"key": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36"
},
{
"key": "Content-Type",
"value": "text/x-gwt-rpc; charset=UTF-8"
},
{
"key": "Accept",
"value": "*/*"
},
{
"key": "Referer",
"value": "{{URL}}/GWTMaps.html"
},
{
"key": "Accept-Encoding",
"value": "gzip, deflate, br"
},
{
"key": "Accept-Language",
"value": "en-US,en;q=0.9"
},
{
"key": "Cookie",
"value": "JSESSIONID=12heme03gr6fmxt9byj4ctmir"
}
],
"body": {
"mode": "raw",
"raw": "7|0|6|http://127.0.0.1:8888/gwtmaps/|2340FA9687BBBA633B8360439C75EB4C|example.edu.client.service.ExampleService|runScript|java.lang.String/2004016611|# Program 5: Sequential \r\n# This program performs visualization task, identifies number of points of interests,\r\n# add marker, add message on each location then compute the distance between\r\n# pairs of points in a selected route\r\nimport math\r\n\r\nhome = read_address(\"Ellen Dr\", \"Indianapolis\", \"IN\", \"46224\")\r\nspeedway = read_address(\"4790 W 16th St\", \"Indianapolis\", \"IN\", \"46222\")\r\nmuseum = read_address(\"3000 N Meridian St,\", \"Indianapolis\", \"IN\", \"46208\")\r\nzoo = read_address(\"1200 W Washington St\", \"Indianapolis\", \"IN\", \"46222\")\r\npark = read_address(\"7840 W 56th St\", \"Indianapolis\", \"IN\", \"46278\")\r\n\r\nhome_mk = display_marker(home)\r\nspeedway_mk =display_marker(speedway)\r\nmuseum_mk = display_marker(museum)\r\nzoo_mk = display_marker(zoo)\r\npark_mk = display_marker(park)\r\n\r\ndisplay_message(\"Home\", home_mk)\r\ndisplay_message(\"Motor Speedway\", speedway_mk)\r\ndisplay_message(\"The Children's Museum\", museum_mk)\r\ndisplay_message(\"Zoo\", zoo_mk)\r\ndisplay_message(\"Eagle Creek Park\", park_mk)\r\n\r\nprint \"home ---> museum \" + str(round(compute_distance(home, museum_mk),1)) + \"mi\"\r\nprint \"museum ---> zoo \" + str(round(compute_distance(museum_mk, zoo),1)) + \"mi\"\r\nprint \"zoo ---> speedway \" + str(round(compute_distance(zoo,speedway),1)) + \"mi\"\r\nprint \"speedway ---> park \" + str(round(compute_distance(speedway,park_mk),1)) + \"mi\"\r\nprint \"park ---> home \" + str(round(compute_distance(park_mk,home),1)) + \"mi\"|1|2|3|4|1|5|6|"
},
"url": {
"raw": "{{URL}}/gwtmaps/exampleservice",
"host": [
"{{URL}}"
],
"path": [
"gwtmaps",
"exampleservice"
]
}
},
"response": []
},
{
"name": "LIMO Example 6",
"event": [
{
"listen": "test",
"script": {
"id": "be7a384b-9290-4d27-82ee-4d7ef8215252",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"pm.test(\"Body is correct\", function () {",
" pm.response.to.have.body('//OK[4,2,3,2,2,1,[\"java.util.ArrayList/4159755760\",\"java.lang.String/2004016611\",\"Home ---\\\\x3E museum 5.2mi\\\\nmuseum ---\\\\x3E zoo 3.3mi\\\\nzoo ---\\\\x3E speedway 3.2mi\\\\nspeedway ---\\\\x3E park 5.5mi\\\\npark ---\\\\x3E Home 3.2mi\\\\n\",\"MARKER,-86.2528312775,39.8213490212\\\\nMSG,Home,-86.2528312775,39.8213490212\\\\nMARKER,-86.1568248153,39.8101651116\\\\nMSG,museum,-86.1568248153,39.8101651116\\\\nMARKER,-86.1857121722,39.7674189584\\\\nMSG,zoo,-86.1857121722,39.7674189584\\\\nMARKER,-86.2390688596,39.7875311032\\\\nMSG,speedway,-86.2390688596,39.7875311032\\\\nMARKER,-86.2984095576,39.8526847744\\\\nMSG,park,-86.2984095576,39.8526847744\\\\n\"],0,7]');",
"});",
"",
"// Old: \"//OK[4,2,3,2,2,1,[\\\"java.util.ArrayList/4159755760\\\",\\\"java.lang.String/2004016611\\\",\\\"Home ---\\\\x3E museum 5.2mi\\\\nmuseum ---\\\\x3E zoo 3.3mi\\\\nzoo ---\\\\x3E speedway 3.2mi\\\\nspeedway ---\\\\x3E park 5.5mi\\\\npark ---\\\\x3E Home 3.2mi\\\\n\\\",\\\"MARKER,-86.2528312775,39.8213490212\\\\nMSG,Home,-86.2528312775,39.8213490212\\\\nMARKER,-86.1568248153,39.8101651116\\\\nMSG,museum,-86.1568248153,39.8101651116\\\\nMARKER,-86.1857121722,39.7674189584\\\\nMSG,zoo,-86.1857121722,39.7674189584\\\\nMARKER,-86.2390688596,39.7875311032\\\\nMSG,speedway,-86.2390688596,39.7875311032\\\\n\\\"],0,7]\""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-GWT-Module-Base",
"value": "{{URL}}/gwtmaps/"
},
{
"key": "X-GWT-Permutation",
"value": "4A974DBE2FF476CCD6AEFA48C03077DD"
},
{
"key": "Origin",
"value": "{{URL}}"
},
{
"key": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36"
},
{
"key": "Content-Type",
"name": "Content-Type",
"value": "text/x-gwt-rpc; charset=UTF-8",
"type": "text"
},
{
"key": "Accept",
"value": "*/*"
},
{
"key": "Referer",
"value": "{{URL}}/GWTMaps.html"
},
{
"key": "Accept-Encoding",
"value": "gzip, deflate, br"
},
{
"key": "Accept-Language",
"value": "en-US,en;q=0.9"
},
{
"key": "Cookie",
"value": "JSESSIONID=12heme03gr6fmxt9byj4ctmir"
}
],
"body": {
"mode": "raw",
"raw": "7|0|6|http://ibnkhaldun.cs.purdue.edu:8181/limo/gwtmaps/|2340FA9687BBBA633B8360439C75EB4C|example.edu.client.service.ExampleService|runScript|java.lang.String/2004016611|# Program 6: while loop and conditional if\r\n# Similar to Program 5 but instead of writing sequential programs while loop is utilized \r\n# This program performs visualization task, identifies number of points of interests,\r\n# add marker, add message on each location then compute the distance between\r\n# pairs of points in a selected route\r\nhome = read_address(\"Ellen Dr\", \"Indianapolis\", \"IN\", \"46224\")\r\n\r\nPOI_list = [[\"museum\", [\"3000 N Meridian St,\", \"Indianapolis\", \"IN\", \"46208\"]], \r\n [\"zoo\", [\"1200 W Washington St\", \"Indianapolis\", \"IN\", \"46222\"]], \r\n [\"speedway\",[\"4790 W 16th St\", \"Indianapolis\", \"IN\", \"46222\"]], \r\n [\"park\" , [\"7840 W 56th St\", \"Indianapolis\", \"IN\", \"46278\"]]]\r\n\r\nhome_mk = display_marker(home)\r\ndisplay_message(\"Home\", home_mk)\r\nmarkers = []\r\ni = 0\r\nlength = len(POI_list)\r\nwhile i < length:\r\n location = read_address(POI_list[i][1][0], POI_list[i][1][1], \r\n POI_list[i][1][2], POI_list[i][1][3])\r\n display_marker(location)\r\n markers.append(location)\r\n display_message(POI_list[i][0],location)\r\n if i == 0:\r\n print \"Home\" + \" ---> \" + POI_list [i][0]+ \" \" + \\\\\r\n str(round(compute_distance(markers[i], home_mk),1)) + \"mi\"\r\n else:\r\n print POI_list[i-1][0] + \" ---> \" + POI_list [i][0]+ \" \" + \\\\\r\n str(round(compute_distance(markers[i-1], markers[i]),1)) + \"mi\"\r\n i = i + 1\r\n\r\nprint POI_list [length-1][0] + \" ---> \" + \"Home\"+ \" \" + \\\\\r\n str(round(compute_distance(home_mk,markers[length-1]),1)) + \"mi\"|1|2|3|4|1|5|6|"
},
"url": {
"raw": "{{URL}}/gwtmaps/exampleservice",
"host": [
"{{URL}}"
],
"path": [
"gwtmaps",
"exampleservice"
]
}
},
"response": []
},
{
"name": "LIMO Example 7",
"event": [
{
"listen": "test",
"script": {
"id": "be7a384b-9290-4d27-82ee-4d7ef8215252",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"pm.test(\"Body is correct\", function () {",
" pm.response.to.have.body(\"//OK[4,2,3,2,2,1,[\\\"java.util.ArrayList/4159755760\\\",\\\"java.lang.String/2004016611\\\",\\\"Total distance traveled: 1.01\\\\n\\\",\\\"MSG,Start,-86.9208804407,40.4400434129\\\\nPOLYLINE,-86.9208804407;40.4400434129,-86.9208719574;40.4399534383,-86.920866;40.439954,-86.9206856748;40.4399755203,-86.9206856748;40.4399755203,-86.920623;40.439983,-86.9204994797;40.4399983391,-86.9204994797;40.4399983391,-86.92047;40.440002,-86.9203142001;40.4400275588,-86.9203142001;40.4400275588,-86.9201290859;40.4400579266,-86.9201290859;40.4400579266,-86.9199439717;40.4400882944,-86.9199439717;40.4400882943,-86.919897;40.440096,-86.9197589002;40.4401189211,-86.9197589002;40.4401189211,-86.919656;40.440136,-86.9195738599;40.4401497358,-86.9195738599;40.4401497358,-86.9193888404;40.4401806755,-86.9193888404;40.4401806755,-86.919357;40.440186,-86.9192038941;40.4402120493,-86.9192038941;40.4402120493,-86.919069;40.440235,-86.9190189323;40.4402433309,-86.9190189323;40.4402433309,-86.9188338878;40.4402741208,-86.9188338878;40.4402741208,-86.9186488433;40.4403049107,-86.9186488433;40.4403049108,-86.9184637988;40.4403357007,-86.9184637988;40.4403357007,-86.918462;40.440336,-86.918373;40.440352,-86.9182813967;40.440378424,-86.9182813967;40.440378424,-86.918269;40.440382,-86.918168;40.440406,-86.9180995393;40.4404243377,-86.9180995393;40.4404243377,-86.918056;40.440436,-86.918009;40.44045,-86.9179200858;40.4404788371,-86.9179200858;40.440478837,-86.91775;40.440534,-86.9177419625;40.4405375365,-86.9177419625;40.4405375365,-86.917725;40.440545,-86.91762;40.440593,-86.917573207;40.4405668475,-86.917573207;40.4405668475,-86.9174094579;40.4404753286,-86.9174094579;40.4404753286,-86.9172457088;40.4403838097,-86.9172457088;40.4403838097,-86.917221;40.44037,-86.91715;40.44033,-86.9170757424;40.4403068241,-86.9170757424;40.4403068241,-86.916993;40.440281,-86.9168942994;40.4402599999,-86.9168942994;40.4402599999,-86.916805;40.440241,-86.9167094154;40.4402293636,-86.9167094154;40.4402293636,-86.91669;40.440227,-86.9165219721;40.4402261922,-86.9165219721;40.4402261922,-86.916482;40.440226,-86.9163347738;40.4402367204,-86.9163347738;40.4402367204,-86.916276;40.440241,-86.9161473408;40.440241,-86.916137;40.440241,-86.916034;40.440229,-86.9159621785;40.4402131433,-86.9159621785;40.4402131433,-86.91588;40.440195,-86.9157790319;40.4401725626,-86.9157790319;40.4401725626,-86.915664;40.440147,-86.9155944657;40.4401415105,-86.9155944657;40.4401415105,-86.915588;40.440141,-86.91543;40.440143,-86.9154081802;40.440150553,-86.9154081802;40.440150553,-86.9153;40.440188,-86.915277;40.440193,-86.9152283746;40.4402026479,-86.9152283746;40.4402026479,-86.9150443729;40.4402391562,-86.9150443729;40.4402391562,-86.914899;40.440268,-86.9148604031;40.4402758237,-86.9148604031;40.4402758237,-86.9146765535;40.4403130905,-86.9146765535;40.4403130905,-86.914603;40.440328,-86.9144915324;40.4403434936,-86.9144915324;40.4403434936,-86.914344;40.440364,-86.9143054749;40.4403669493,-86.9143054749;40.4403669493,-86.914135;40.44038,-86.91411839;40.4403804033,-86.91411839;40.4403804033,-86.9139308567;40.4403849571,-86.9139308567;40.4403849571,-86.9137433234;40.4403895109,-86.9137433234;40.4403895109,-86.913682;40.440391,-86.9135558966;40.4403970228,-86.9135558966;40.4403970228,-86.9133685216;40.4404059721,-86.9133685216;40.4404059721,-86.913347;40.440407,-86.913269;40.440418,-86.913196;40.44043,-86.9131830618;40.4404330418,-86.9131830618;40.4404330418,-86.9130004519;40.4404759732,-86.9130004519;40.4404759732,-86.912894;40.440501,-86.9128199269;40.4405261752,-86.9128199269;40.4405261752,-86.912741;40.440553,-86.9126406705;40.4405812384,-86.9126406705;40.4405812384,-86.9124600979;40.4406320618,-86.9124600979;40.4406320618,-86.912439;40.440638,-86.912342;40.440658,-86.912293;40.440669,-86.9122766576;40.4406704993,-86.9122766576;40.4406704993,-86.912184;40.440679,-86.9120894583;40.4406791825,-86.9120894583;40.4406791825,-86.9119018701;40.4406795447,-86.9119018701;40.4406795447,-86.9117142819;40.4406799068,-86.9117142819;40.4406799068,-86.9115266937;40.4406802689,-86.9115266937;40.4406802689,-86.9113391055;40.4406806311,-86.9113391055;40.4406806311,-86.9111515173;40.4406809932,-86.9111515173;40.4406809932,-86.911148;40.440681,-86.911105;40.44068,-86.910963942;40.4406793153,-86.910963942;40.4406793153,-86.9107763556;40.4406784046,-86.9107763556;40.4406784046,-86.910693;40.440678,-86.910693;40.440571,-86.9106931185;40.4405330738,-86.9106931185;40.4405330738,-86.9106935714;40.4403881481,-86.9106935714;40.4403881481,-86.910694;40.440251,-86.9106940734;40.4402432227,-86.9106940734;40.4402432227,-86.910695;40.440145,-86.9106955247;40.4400983036,-86.9106955247;40.4400983036,-86.910697;40.439967,-86.9106972559;40.4399533879,-86.9106972559;40.4399533879,-86.9106999796;40.4398084871,-86.9106999796;40.4398084871,-86.910702;40.439701,-86.9107022792;40.4396635808,-86.9107022792;40.4396635808,-86.9107033608;40.4395186585,-86.9107033608;40.4395186585,-86.910704;40.439433,-86.9107046696;40.4393737383,-86.9107046696;40.4393737383,-86.910706;40.439256,-86.9107056545;40.4392288216,-86.9107056545;40.4392288216,-86.9107038124;40.4390839069,-86.9107038124;40.4390839069,-86.910703;40.43902,-86.9107019694;40.4389389922,-86.9107019694;40.4389389922,-86.9107001257;40.4387940776,-86.9107001257;40.4387940776,-86.910698282;40.438649163,-86.910698282;40.438649163,-86.910698;40.438627,-86.9106960329;40.4385042542,-86.9106960329;40.4385042542,-86.9106937107;40.4383593464,-86.9106937107;40.4383593464,-86.910693;40.438315,-86.910693;40.438263,-86.9106908786;40.4382144721,-86.9106908786;40.4382144721,-86.910685;40.43808,-86.9106848355;40.4380696755,-86.9106848355;40.4380696755,-86.9106825262;40.4379247675,-86.9106825262;40.4379247675,-86.910681;40.437829,-86.9106792602;40.4377798841,-86.9106792602;40.4377798841,-86.9106741298;40.4376350486,-86.9106741298;40.4376350486,-86.9106689994;40.4374902131,-86.9106689994;40.4374902131,-86.910663869;40.4373453776,-86.910663869;40.4373453776,-86.9106587385;40.4372005421,-86.9106587385;40.4372005421,-86.910655;40.437095,-86.910653722;40.4370557027,-86.910653722;40.4370557027,-86.9106490115;40.4369108529,-86.9106490115;40.4369108529,-86.910647;40.436849,-86.910643;40.436769,-86.9106429201;40.4367660602,-86.9106429201;40.4367660602,-86.9106389834;40.4366211873,-86.9106389834;40.4366211873,-86.910638;40.436585,-86.9106358346;40.4364762959,-86.9106358346;40.4364762959,-86.910633;40.436334,-86.9106327952;40.4363314058,-86.9106327952;40.4363314058,-86.9106213891;40.436186929,-86.9106213891;40.436186929,-86.910618;40.436144,-86.9106127382;40.4360422722,-86.9106127382;40.4360422722,-86.910605252;40.4358975393,-86.910605252;40.4358975393,-86.9106;40.435796,-86.9105978647;40.4357528014,-86.9105978647;40.4357528014,-86.9105907098;40.4356080517,-86.9105907098;40.4356080517,-86.910587;40.435533,-86.9105839797;40.4354632823,-86.9105839797;40.4354632823,-86.9105777072;40.4353184917,-86.9105777072;40.4353184917,-86.910575;40.435256,-86.9105717235;40.4351736891,-86.9105717235;40.4351736891,-86.9105659589;40.4350288774,-86.9105659589;40.4350288774,-86.9105601944;40.4348840657,-86.9105601944;40.4348840657,-86.9105544299;40.434739254,-86.9105544299;40.434739254,-86.9105486654;40.4345944423,-86.9105486654;40.4345944423,-86.9105429009;40.4344496306,-86.9105429009;40.4344496306,-86.910542;40.434427,-86.9105371305;40.4343048191,-86.9105371305;40.4343048191,-86.910531359;40.4341600077\\\\nMSG,Finish,-86.910531359,40.4341600077\\\\n\\\"],0,7]\");",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-GWT-Module-Base",
"value": "http://127.0.0.1:8888/gwtmaps/"
},
{
"key": "X-GWT-Permutation",
"value": "4A974DBE2FF476CCD6AEFA48C03077DD"
},
{
"key": "Origin",
"value": "http://127.0.0.1:8888"
},
{
"key": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36"
},
{
"key": "Content-Type",
"value": "text/x-gwt-rpc; charset=UTF-8"
},
{
"key": "Accept",
"value": "*/*"
},
{
"key": "Referer",
"value": "http://127.0.0.1:8888/GWTMaps.html"
},
{
"key": "Accept-Encoding",
"value": "gzip, deflate, br"
},
{
"key": "Accept-Language",
"value": "en-US,en;q=0.9"
},
{
"key": "Cookie",
"value": "JSESSIONID=12heme03gr6fmxt9byj4ctmir"
}
],
"body": {
"mode": "raw",
"raw": "7|0|6|http://127.0.0.1:8888/gwtmaps/|2340FA9687BBBA633B8360439C75EB4C|example.edu.client.service.ExampleService|runScript|java.lang.String/2004016611|# Program 7: while loop and conditional if\r\n# This program moves the Commuter 1 mile showing the route taken by the Commuter.\r\naddress = read_address(\"1100 Hillcrest Rd\", \"West Lafayette\", \"IN\", \"47906\")\r\ndisplay_message(\"Start\", address)\r\nmy_location = get_location(address)\r\nprevious_location = my_location \r\nstart_at(\"com1\", address,\"EAST\")\r\ndistance= 1\r\ndirection =[\"SOUTH\",\"WEST\",\"NORTH\",\"EAST\"]\r\nnext_direction = 0\r\n\r\nwhile( distance > 0.001):\r\n move_distance(\"com1\", 0.01)\r\n current_location = get_current_point(\"com1\")\r\n if(current_location == previous_location ):\r\n road = get_road_names(current_location)\r\n turn_to(\"com1\", road[0],direction[next_direction])\r\n next_direction += 1\r\n if(next_direction==4):\r\n next_direction=0\r\n distance = distance - compute_distance(previous_location , current_location)\r\n previous_location = current_location\r\n\r\nshow_on_map(\"com1\")\r\nFinish_location = get_current_point(\"com1\")\r\ndisplay_message(\"Finish\",Finish_location)\r\nprint \"Total distance traveled: \" +str(display_distance(\"com1\"))|1|2|3|4|1|5|6|"
},
"url": {
"raw": "{{URL}}/gwtmaps/exampleservice",
"host": [
"{{URL}}"
],
"path": [
"gwtmaps",
"exampleservice"
]
}
},
"response": []
},
{
"name": "LIMO Example 8",
"event": [
{
"listen": "test",
"script": {
"id": "be7a384b-9290-4d27-82ee-4d7ef8215252",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"pm.test(\"Body is correct\", function () {",
" pm.response.to.have.body('//OK[4,2,3,2,2,1,[\"java.util.ArrayList/4159755760\",\"java.lang.String/2004016611\",\"\",\"POLYGON,-155.963331;19.08159,-155.943213;19.344227,-156.120001;19.727176,-155.884311;20.018327,-155.960818;20.197729,-155.892413;20.312398,-155.211768;20.038466,-154.759333;19.536462,-154.939663;19.312834,-155.391434;19.14436,-155.649041;18.870503,-155.963331;19.08159\\\\nPOLYGON,-94.46025;34.538384,-94.430662;35.392478,-94.617756;36.499461,-90.15228;36.49795,-90.064169;36.302526,-90.37789;35.995683,-89.733095;36.000608,-89.644838;35.904351,-89.956252;35.733388,-89.851824;35.644261,-89.956532;35.590602,-89.9154;35.515119,-90.03955;35.548557,-90.044582;35.393073,-90.08365;35.478297,-90.168882;35.422206,-90.074992;35.384152,-90.168924;35.28028,-90.064768;35.13894,-90.295596;35.040093,-90.244731;34.921026,-90.309183;34.844994,-90.482356;34.879852,-90.45397;34.736877,-90.522892;34.802265,-90.568081;34.724802,-90.466041;34.674312,-90.588419;34.670963,-90.571145;34.420322,-90.662961;34.314779,-90.764143;34.363396,-90.847808;34.20653,-90.929523;34.244106,-90.808736;34.159416,-90.954299;34.138496,-90.870528;34.080516,-90.987948;34.019038,-90.967632;33.963324,-91.087921;33.975335,-90.988466;33.78453,-91.146351;33.730609,-91.032189;33.676593,-91.229015;33.677543,-91.130445;33.606034,-91.231418;33.560593,-91.182565;33.501061,-91.2358;33.439738,-91.167579;33.498309,-91.117975;33.453806,-91.208113;33.402006,-91.057621;33.445341,-91.142219;33.348989,-91.106142;33.241799,-91.04382;33.275606,-91.088633;33.142213,-91.20178;33.125121,-91.121195;33.059165,-91.166073;33.004106,-94.042964;33.019219,-94.04345;33.552253,-94.386136;33.54481,-94.485878;33.637865,-94.46025;34.538384\\\\nPOLYGON,-109.046156;34.579291,-109.045223;36.999084,-103.002199;37.000104,-103.064422;32.000517,-106.618486;32.000495,-106.635922;31.866237,-106.528242;31.783148,-108.208394;31.783599,-108.208573;31.333395,-109.050039;31.332244,-109.046156;34.579291\\\\nPOLYGON,-114.332887;46.660756,-114.593292;46.632848,-114.666112;46.739325,-114.76689;46.696901,-115.319981;47.25672,-115.759347;47.422233,-115.628695;47.479641,-115.755862;47.548094,-115.68755;47.594653,-115.722629;47.695162,-116.048863;47.976758,-116.049193;49.000912,-104.048736;48.999877,-104.039138;44.99852,-111.055199;45.001321,-111.048974;44.474072,-111.385994;44.755136,-111.516588;44.643707,-111.467951;44.538867,-112.286187;44.568472,-112.386896;44.447635,-112.781294;44.484888,-112.847445;44.358319,-113.003544;44.450814,-113.131453;44.772837,-113.455071;44.865424,-113.45197;45.059247,-113.691984;45.262952,-113.766022;45.520621,-113.834548;45.52081,-113.806729;45.602146,-113.935015;45.694349,-114.333218;45.459316,-114.564838;45.55773,-114.495421;45.703321,-114.566172;45.773864,-114.387674;45.884594,-114.527189;46.14542,-114.444015;46.169254,-114.332887;46.660756\\\\nPOLYGON,-79.645461;41.998859,-79.76162;42.00006,-79.762418;42.516072,-78.905758;42.899957,-79.074459;43.077863,-79.05606;43.254156,-79.200936;43.450422,-78.688295;43.634742,-76.776233;43.629529,-76.312639;44.199045,-75.912985;44.368084,-75.413792;44.772534,-74.992727;44.977469,-73.343124;45.01084,-73.390231;44.618354,-73.293627;44.438903,-73.437905;44.045125,-73.350762;43.771387,-73.431229;43.588285,-73.30644;43.628333,-73.241587;43.534969,-73.264957;42.74594,-73.508142;42.086257,-73.550962;41.295421,-73.482695;41.212772,-73.727775;41.100696,-73.612885;40.950943,-71.929451;41.310387,-71.790972;41.184101,-71.777491;41.067292,-73.274025;40.551314,-74.228153;40.477399,-74.202247;40.630903,-74.055739;40.65176,-73.893979;40.997205,-74.738456;41.430642,-74.982513;41.480319,-75.074613;41.605711,-75.072172;41.813732,-75.260527;41.8638,-75.359579;41.999445,-79.645461;41.998859\\\\nPOLYGON,-104.048377;48.721377,-104.048736;48.999877,-97.228722;49.000562,-97.090313;48.684404,-97.175423;48.561957,-97.146505;48.14222,-96.851021;47.598544,-96.839548;47.006728,-96.753257;46.924563,-96.798195;46.629573,-96.599379;46.329984,-96.562804;45.937095,-104.045441;45.94531,-104.048377;48.721377\\\\nPOLYGON,-104.05458;44.144008,-104.045441;45.94531,-96.563672;45.935245,-96.583684;45.819307,-96.856834;45.605378,-96.692541;45.417338,-96.453097;45.300751,-96.45326;43.50039,-96.603056;43.450793,-96.521734;43.386862,-96.569178;43.2327,-96.476654;43.221941,-96.436472;43.120166,-96.639485;42.736928,-96.445483;42.49063,-96.611488;42.506086,-96.691268;42.656198,-97.237868;42.853139,-97.841966;42.868166,-98.035071;42.764114,-98.49855;42.998559,-104.053028;43.000585,-104.05458;44.144008\\\\nPOLYGON,-112.979261;41.998432,-111.046689;42.001567,-111.046723;40.997959,-109.050076;41.000659,-109.045223;36.999084,-114.0506;37.000396,-114.041723;41.99372,-112.979261;41.998432\\\\nPOLYGON,-122.401202;45.571041,-122.262625;45.544321,-121.533106;45.726541,-121.215779;45.671238,-121.183841;45.606441,-120.634968;45.745847,-120.40396;45.699249,-118.97717;46.000264,-116.91648;45.995475,-116.782139;45.825116,-116.54809;45.752364,-116.463635;45.602785,-116.847944;45.022602,-116.852427;44.887578,-117.062273;44.727143,-117.242873;44.395557,-117.198147;44.273828,-116.894202;44.162317,-117.032578;43.830181,-117.026197;41.99989,-124.338659;42.003256,-124.569509;42.454586,-124.473554;42.614734,-124.703541;42.770369,-124.530606;42.99983,-124.476948;43.329371,-124.328714;43.499835,-124.215152;43.953775,-124.011657;45.676717,-124.09192;45.943455,-124.002783;46.027544,-124.159546;46.261132,-123.501246;46.271014,-123.371433;46.146372,-123.115904;46.185268,-122.813999;45.960983,-122.76381;45.657138,-122.401202;45.571041\\\\nPOLYGON,-117.041741;47.735893,-117.062748;46.353624,-116.92187;46.167808,-116.982479;46.089389,-116.91568;45.995375,-118.987129;45.999855,-120.40396;45.699249,-120.634968;45.745847,-121.167852;45.606098,-121.33777;45.704949,-121.811304;45.706761,-122.294901;45.543541,-122.76381;45.657138,-122.813999;45.960983,-123.115904;46.185268,-123.371433;46.146372,-123.501246;46.271014,-124.159546;46.261132,-124.133291;46.603129,-124.27366;47.165071,-124.41355;47.36873,-124.458973;47.62672,-124.553095;47.643355,-124.534783;47.718756,-124.795204;47.966506,-124.848974;48.181373,-124.761387;48.295688,-124.817912;48.391003,-124.763031;48.499784,-123.679367;48.240022,-123.249034;48.28431,-123.115529;48.422974,-123.274009;48.692969,-123.008865;48.767302,-123.008472;48.831338,-123.32242;49.001962,-117.032351;48.999188,-117.041741;47.735893\\\\nPOLYGON,-170.706229;-14.205096,-170.536778;-14.20434,-170.491495;-14.301691,-170.739019;-14.41995,-170.883698;-14.342694,-170.706229;-14.205096\\\\nPOLYGON,-116.897846;44.152546,-116.975904;44.242843,-117.216974;44.288357,-117.225756;44.480533,-116.852427;44.887578,-116.847944;45.022602,-116.463296;45.61476,-116.54809;45.752364,-116.859795;45.907264,-116.981962;46.084915,-116.92187;46.167808,-117.06263;46.352522,-117.032351;48.999188,-116.049193;49.000912,-116.048863;47.976758,-115.722629;47.695162,-115.68755;47.594653,-115.755862;47.548094,-115.628695;47.479641,-115.759347;47.422233,-115.319981;47.25672,-114.76689;46.696901,-114.665328;46.739245,-114.605269;46.635822,-114.320665;46.646963,-114.470479;46.26732,-114.444015;46.169254,-114.527154;46.145831,-114.387674;45.884594,-114.566172;45.773864,-114.495421;45.703321,-114.564838;45.55773,-114.333218;45.459316,-113.935015;45.694349,-113.806729;45.602146,-113.834548;45.52081,-113.766022;45.520621,-113.691984;45.262952,-113.45197;45.059247,-113.455071;44.865424,-113.131453;44.772837,-113.003544;44.450814,-112.855395;44.359975,-112.781294;44.484888,-112.386896;44.447635,-112.286187;44.568472,-111.467951;44.538867,-111.516588;44.643707,-111.385994;44.755136,-111.048974;44.474072,-111.046689;42.001567,-117.026197;41.99989,-117.032578;43.830181,-116.897846;44.152546\\\\nPOLYGON,145.875984;15.135438,145.75007;15.066604,145.616469;14.800842,145.482681;14.799207,145.562891;14.934284,145.535022;15.089214,145.793021;15.354699,145.907345;15.283903,145.875984;15.135438\\\\nPOLYGON,-66.12461;18.523065,-65.214602;18.392711,-65.205432;18.244702,-65.46154;18.293299,-65.554643;18.184767,-65.278316;18.197918,-65.2179;18.116416,-65.549699;18.028449,-65.61805;18.15418,-65.852531;17.941486,-66.530936;17.831509,-66.574067;17.91314,-67.26068;17.92854,-67.214236;18.211349,-67.323254;18.363875,-67.1686;18.548467,-66.12461;18.523065\\\\nPOLYGON,-98.139072;34.14187,-98.365621;34.156993,-98.483551;34.062277,-98.599789;34.160571,-99.186817;34.213555,-99.206905;34.338277,-99.35897;34.455807,-99.405286;34.372858,-99.694528;34.378218,-99.923211;34.574552,-100.000277;34.56045,-100.000406;36.499702,-103.002434;36.500397,-103.002199;37.000104,-94.617964;36.998905,-94.617919;36.499414,-94.430662;35.392478,-94.489086;33.626778,-94.867544;33.744904,-95.216947;33.962674,-95.288926;33.87307,-95.594085;33.943057,-95.830406;33.834785,-96.002925;33.87359,-96.346859;33.686216,-96.629274;33.8455,-96.587934;33.894784,-96.667187;33.91694,-96.761587;33.824407,-96.981337;33.956378,-97.133915;33.718128,-97.210921;33.916064,-97.426799;33.818641,-97.46142;33.90523,-97.581078;33.899679,-97.671277;33.991553,-97.83432;33.857634,-97.96668;33.881746,-97.946005;33.990297,-98.086828;34.004244,-98.139072;34.14187\\\\nPOLYGON,-75.066815;40.536544,-75.201844;40.615892,-75.196535;40.751631,-75.051029;40.865662,-75.131341;40.98998,-74.753931;41.346135,-73.893979;40.997205,-74.055739;40.65176,-74.188344;40.644264,-74.259089;40.50289,-73.886652;40.489794,-74.049489;39.723785,-74.311135;39.375117,-75.015123;38.788657,-75.563586;39.483048,-75.559737;39.630452,-75.445235;39.779453,-74.722527;40.15029,-75.058575;40.418193,-75.066815;40.536544\\\\nPOLYGON,-71.31777;41.776113,-71.132507;41.660356,-71.088571;41.431315,-71.79148;41.272165,-71.790972;41.184101,-71.907258;41.304483,-71.797745;41.416727,-71.799242;42.008065,-71.381401;42.018798,-71.31777;41.776113\\\\nPOLYGON,-91.591864;29.359375,-91.875032;29.361992,-92.07805;29.531489,-92.632538;29.529718,-93.223168;29.726396,-93.711547;29.690347,-93.814351;29.596576,-93.927992;29.80964,-93.699516;30.058578,-93.740253;30.539569,-93.508039;31.031532,-93.532545;31.183314,-93.687278;31.306068,-93.639222;31.37202,-93.749476;31.46869,-93.711046;31.512161,-93.834918;31.586212,-93.823443;31.775098,-94.042566;31.993502,-94.042964;33.019219,-91.166073;33.004106,-91.170235;32.899391,-91.09693;32.986412,-91.064449;32.901063,-91.165696;32.753399,-91.054749;32.719229,-91.152486;32.620319,-91.0158;32.641644,-91.080411;32.556468,-90.987202;32.495663,-91.093742;32.549127,-91.116008;32.48314,-90.969587;32.439492,-90.993625;32.354047,-90.875638;32.371729,-90.994944;32.193141,-91.164171;32.196888,-91.162822;32.132694,-91.004106;32.146152,-91.080908;32.047855,-91.15851;32.072854,-91.075908;32.016827,-91.254311;31.813662,-91.345214;31.843861,-91.365614;31.760763,-91.263111;31.754764,-91.369375;31.746903,-91.401015;31.620365,-91.515462;31.630372,-91.405415;31.576466,-91.522536;31.522078,-91.474809;31.368646,-91.576265;31.410498,-91.515614;31.27821,-91.654027;31.255753,-91.559907;31.054119,-91.636942;30.999416,-89.731673;31.004817,-89.852203;30.661684,-89.614234;30.221471,-88.854913;30.135532,-88.764495;29.971944,-88.82343;29.714992,-89.142073;29.429465,-89.069426;29.294297,-88.91831;29.236276,-88.921713;29.124971,-89.11485;28.926368,-89.279604;28.977783,-89.409889;28.857683,-89.491134;28.897338,-89.468673;29.107461,-89.599159;29.197877,-90.344319;29.003178,-90.90708;28.991132,-91.017447;29.038653,-90.974925;29.121509,-91.591864;29.359375\\\\nPOLYGON,-73.50793;41.791524,-73.487314;42.049638,-71.800649;42.023569,-71.797745;41.416727,-71.907258;41.304483,-73.612885;40.950943,-73.727775;41.100696,-73.482695;41.212772,-73.550962;41.295421,-73.50793;41.791524\\\\nPOLYGON,-81.044288;39.536612,-80.830829;39.707827,-80.870322;39.763184,-80.599895;40.317666,-80.667813;40.583536,-80.518991;40.638801,-80.519342;39.721403,-79.476662;39.721078,-79.486875;39.205896,-79.102383;39.476394,-78.956573;39.440331,-78.775279;39.645657,-78.689558;39.545824,-78.471942;39.515938,-78.430139;39.623416,-78.176542;39.695979,-77.834145;39.603371,-77.888736;39.55541,-77.76634;39.496238,-77.803205;39.437111,-77.719519;39.321314,-77.828299;39.132426,-78.347087;39.466012,-78.403697;39.167451,-78.868971;38.763139,-78.999752;38.846162,-79.28294;38.4181,-79.649175;38.591415,-79.788945;38.268703,-80.295916;37.692838,-80.220984;37.627767,-80.328504;37.564315,-80.299789;37.508271,-80.770082;37.372363,-80.859457;37.429491,-80.849451;37.346909,-80.951018;37.29497,-81.225104;37.234874,-81.364492;37.337996,-81.678221;37.20154,-81.928462;37.360461,-81.996578;37.476705,-81.943964;37.531282,-82.133247;37.552832,-82.502198;37.933052,-82.464566;37.983876,-82.644539;38.165249,-82.574624;38.263937,-82.596512;38.415892,-82.330335;38.4445,-82.291271;38.578983,-82.177267;38.603784,-82.221566;38.787187,-82.037749;39.023865,-81.933186;38.98766,-81.90297;38.87609,-81.762658;38.924123,-81.813854;39.079678,-81.689483;39.266043,-81.570247;39.267675,-81.456143;39.409274,-81.375961;39.341697,-81.217315;39.38759,-81.044288;39.536612\\\\nPOLYGON,-84.423498;39.051885,-84.458818;39.121479,-84.820157;39.105489,-84.805972;41.696118,-83.415851;41.733794,-83.11246;41.95941,-83.069312;41.864217,-82.681119;41.676328,-82.398348;41.676524,-81.249833;42.216415,-80.519851;42.327132,-80.518991;40.638801,-80.667813;40.583536,-80.599895;40.317666,-80.88036;39.620706,-81.217315;39.38759,-81.375961;39.341697,-81.456143;39.409274,-81.570247;39.267675,-81.683613;39.270947,-81.813854;39.079678,-81.762658;38.924123,-81.90297;38.87609,-81.933186;38.98766,-82.037749;39.023865,-82.221566;38.787187,-82.177267;38.603784,-82.291271;38.578983,-82.330335;38.4445,-82.53769;38.404157,-82.842213;38.588577,-82.88601;38.755194,-83.293019;38.596764,-83.520755;38.703094,-83.668718;38.626542,-83.870199;38.761532,-84.212751;38.805629,-84.309313;39.011743,-84.423498;39.051885\\\\nPOLYGON,-86.490068;38.045772,-86.455742;38.125031,-86.327188;38.133894,-86.357717;38.198807,-86.219504;38.027552,-86.04369;37.958255,-85.943132;38.006622,-85.829216;38.276508,-85.679213;38.298009,-85.606954;38.438574,-85.42065;38.535421,-85.436299;38.728484,-85.173048;38.688022,-84.81472;38.784512,-84.785275;38.880425,-84.877276;38.90948,-84.830049;38.97256,-84.891091;39.064637,-84.750345;39.147622,-84.618734;39.073331,-84.462803;39.121968,-84.306074;39.007753,-84.213115;38.805835,-83.870199;38.761532,-83.668718;38.626542,-83.520755;38.703094,-83.293019;38.596764,-82.879786;38.751584,-82.842213;38.588577,-82.603609;38.459533,-82.574518;38.264505,-82.644539;38.165249,-82.464566;37.983876,-82.502198;37.933052,-82.304314;37.676093,-82.175075;37.647832,-82.132085;37.552366,-81.964788;37.542243,-82.348757;37.267944,-82.721413;37.12083,-82.878683;36.889532,-83.072836;36.854457,-83.13512;36.742629,-83.690789;36.582596,-88.070541;36.678255,-88.053293;36.497058,-89.417275;36.499011,-89.365797;36.625126,-89.236308;36.566881,-89.159118;36.666354,-89.200552;36.732567,-89.118202;36.762326,-89.179201;36.829896,-89.098983;36.958222,-89.182568;37.039001,-89.086712;37.165451,-88.931424;37.227378,-88.460119;37.074576,-88.47409;37.391863,-88.067844;37.485867,-88.15959;37.661704,-88.02964;37.798413,-87.907375;37.807129,-87.903864;37.925537,-87.674851;37.901781,-87.64536;37.826254,-87.597558;37.974254,-87.510864;37.9061,-87.412232;37.944649,-87.111008;37.782354,-87.034166;37.906265,-86.820821;37.999339,-86.632884;37.844191,-86.507089;37.929917,-86.490068;38.045772\\\\nPOLYGON,-84.12944;34.987545,-83.102867;34.997257,-83.306366;34.81567,-83.342004;34.68177,-82.859068;34.455435,-82.556765;33.945324,-81.926336;33.462937,-81.939737;33.344941,-81.752135;33.14855,-81.491954;33.009093,-81.41866;32.629392,-81.187141;32.464149,-81.113343;32.1132,-80.751429;32.033468,-81.056623;31.714875,-81.187675;31.246258,-81.353416;31.037121,-81.304832;30.970774,-81.400482;30.766426,-81.347015;30.712444,-81.949806;30.827764,-82.045527;30.727881,-82.066184;30.355757,-82.192786;30.379065,-82.214677;30.568556,-84.914022;30.752991,-85.107516;31.186451,-85.041361;31.542495,-85.141831;31.839861,-85.061601;32.133412,-84.888246;32.25967,-85.006402;32.326757,-84.96303;32.424244,-85.1844;32.861317,-85.605165;34.984678,-84.12944;34.987545\\\\nPOLYGON,-91.636692;30.999568,-91.559907;31.054119,-91.654027;31.255753,-91.515614;31.27821,-91.576265;31.410498,-91.474809;31.368646,-91.522536;31.522078,-91.405415;31.576466,-91.515462;31.630372,-91.401015;31.620365,-91.369375;31.746903,-91.263111;31.754764,-91.365614;31.760763,-91.345214;31.843861,-91.254311;31.813662,-91.075908;32.016827,-91.15851;32.072854,-91.080908;32.047855,-91.004106;32.146152,-91.162822;32.132694,-91.164171;32.196888,-90.994944;32.193141,-90.875638;32.371729,-90.993625;32.354047,-90.969587;32.439492,-91.116008;32.48314,-91.093742;32.549127,-90.987202;32.495663,-91.080411;32.556468,-91.0158;32.641644,-91.152486;32.620319,-91.054749;32.719229,-91.165696;32.753399,-91.086802;32.976266,-91.213972;32.927197,-91.120318;33.055323,-91.20178;33.125121,-91.091153;33.13826,-91.044527;33.267546,-91.141691;33.300355,-91.057621;33.445341,-91.151161;33.378691,-91.209072;33.407449,-91.135698;33.48068,-91.235549;33.439307,-91.182565;33.501061,-91.231418;33.560593,-91.130445;33.606034,-91.227857;33.683073,-91.03359;33.674142,-91.146351;33.730609,-90.988466;33.78453,-91.087921;33.975335,-90.967632;33.963324,-90.987948;34.019038,-90.870528;34.080516,-90.954299;34.138496,-90.808736;34.159416,-90.929523;34.244106,-90.847808;34.20653,-90.764143;34.363396,-90.662961;34.314779,-90.571145;34.420322,-90.588419;34.670963,-90.466041;34.674312,-90.568081;34.724802,-90.522892;34.802265,-90.45397;34.736877,-90.479864;34.883273,-90.309183;34.844994,-90.244476;34.937596,-90.309289;34.995694,-88.20003;34.99564,-88.097888;34.892202,-88.473227;31.893856,-88.384431;30.158543,-89.576805;30.183225,-89.852203;30.661684,-89.731673;31.004817,-91.636692;30.999568\\\\nPOLYGON,-73.431307;42.296143,-73.264957;42.74594,-71.294205;42.69699,-71.031201;42.859087,-70.735005;42.874685,-70.714324;42.731911,-70.549306;42.724164,-70.502143;42.635471,-70.690393;42.278999,-70.642946;42.178185,-70.067098;42.105327,-69.866525;41.817011,-69.868125;41.656791,-70.023677;41.471948,-70.126677;41.503698,-70.077934;41.612528,-70.508603;41.498965,-70.383449;41.369933,-70.13794;41.346371,-70.006467;41.433898,-69.894472;41.25924,-70.109684;41.189803,-70.606672;41.29941,-70.847746;41.205814,-70.896017;41.370148,-71.088571;41.431315,-71.132507;41.660356,-71.341193;41.798234,-71.381401;42.018798,-73.496879;42.049675,-73.431307;42.296143\\\\nPOLYGON,-75.760074;39.296819,-75.788596;39.722199,-75.618129;39.833965,-75.405414;39.796396,-75.559737;39.630452,-75.560538;39.455645,-75.321021;39.251379,-75.016109;38.79053,-74.986282;38.451632,-75.69367;38.46008,-75.760074;39.296819\\\\nPOLYGON,-73.407413;44.020272,-73.293627;44.438903,-73.390231;44.618354,-73.343124;45.01084,-71.465039;45.013638,-71.63216;44.750985,-71.534543;44.588244,-71.576665;44.501855,-72.032816;44.320446,-72.03049;44.078979,-72.37944;43.574069,-72.443333;43.007835,-72.555503;42.87483,-72.458436;42.72685,-73.276421;42.746019,-73.241587;43.534969,-73.30644;43.628333,-73.430948;43.587036,-73.350762;43.771387,-73.407413;44.020272\\\\nPOLYGON,-80.293756;39.721187,-80.519342;39.721403,-80.519851;42.327132,-79.762418;42.516072,-79.761313;41.998808,-75.359579;41.999445,-75.260527;41.8638,-75.072172;41.813732,-75.074613;41.605711,-74.983341;41.480894,-74.689502;41.363851,-75.131096;40.990464,-75.051029;40.865662,-75.203921;40.691498,-75.058575;40.418193,-74.722527;40.15029,-75.415062;39.801919,-75.626124;39.832308,-75.773786;39.7222,-80.293756;39.721187\\\\nPOLYGON,-77.042022;38.746721,-76.909393;38.892852,-77.041018;38.995548,-77.119759;38.934343,-77.461473;39.075426,-77.527685;39.14465,-77.459497;39.227724,-77.759239;39.336936,-77.76634;39.496238,-77.888736;39.55541,-77.837771;39.605895,-78.176542;39.695979,-78.565392;39.519327,-78.760767;39.582702,-78.766407;39.648432,-78.956573;39.440331,-79.102383;39.476394,-79.473215;39.202107,-79.476662;39.721078,-75.788596;39.722199,-75.69367;38.46008,-74.987945;38.436629,-75.166435;38.027834,-76.236458;37.886605,-76.60543;38.148933,-76.94902;38.208418,-77.041505;38.400692,-77.283796;38.342855,-77.309864;38.495298,-77.042022;38.746721\\\\nPOLYGON,-89.346066;36.503232,-88.053293;36.497058,-88.070541;36.678255,-83.690789;36.582596,-81.6469;36.611918,-81.707438;36.335171,-81.855005;36.337259,-82.033141;36.120422,-82.352457;36.116609,-82.557874;35.953901,-82.637165;36.065805,-82.804997;35.927168,-82.919895;35.9288,-82.991904;35.774013,-83.159208;35.764892,-83.498335;35.56298,-83.880074;35.518745,-84.023307;35.411484,-84.046511;35.274182,-84.29024;35.225572,-84.321869;34.988408,-90.309289;34.995694,-90.064768;35.13894,-90.168924;35.28028,-90.074992;35.384152,-90.179265;35.385194,-90.098734;35.478554,-90.068156;35.46678,-90.069434;35.408163,-90.044582;35.393073,-90.032734;35.553696,-89.909022;35.520548,-89.957495;35.58853,-89.851158;35.657424,-89.956252;35.733388,-89.704387;35.819607,-89.742606;35.906653,-89.645346;35.891419,-89.733095;36.000608,-89.592206;36.15012,-89.702869;36.244446,-89.534745;36.252573,-89.620255;36.323006,-89.513178;36.359897,-89.539232;36.497934,-89.346066;36.503232\\\\nPOLYGON,-88.406201;30.589708,-88.473227;31.893856,-88.097888;34.892202,-88.202959;35.008028,-85.605165;34.984678,-85.1844;32.861317,-84.96303;32.424244,-85.006402;32.326757,-84.888246;32.25967,-85.061601;32.133412,-85.140731;31.857461,-85.041361;31.542495,-85.107676;31.187436,-85.002499;31.000685,-87.598829;30.997455,-87.634744;30.86561,-87.406474;30.675146,-87.450371;30.514462,-87.367441;30.434495,-87.518346;30.229506,-88.046104;30.144689,-88.162022;30.200093,-88.384431;30.158543,-88.406201;30.589708\\\\nPOLYGON,-77.286202;38.347024,-77.041505;38.400692,-76.94902;38.208418,-76.60543;38.148933,-76.236458;37.886605,-75.166435;38.027834,-75.303132;37.838169,-75.460933;37.771356,-75.644386;37.34227,-75.889676;37.054515,-75.928307;36.938179,-75.797497;36.550916,-83.675395;36.600784,-83.13512;36.742629,-83.072836;36.854457,-82.878683;36.889532,-82.721413;37.12083,-82.348757;37.267944,-81.968012;37.538035,-81.928462;37.360461,-81.678221;37.20154,-81.365284;37.337842,-81.225104;37.234874,-80.89916;37.315678,-80.859457;37.429491,-80.770082;37.372363,-80.309333;37.502883,-80.328504;37.564315,-80.220984;37.627767,-80.295916;37.692838,-79.788945;38.268703,-79.649175;38.591415,-79.28294;38.4181,-78.999752;38.846162,-78.868971;38.763139,-78.403697;39.167451,-78.347087;39.466012,-77.828299;39.132426,-77.730697;39.315603,-77.566598;39.306047,-77.45771;39.224979,-77.520092;39.120869,-77.041672;38.872533,-77.043877;38.717674,-77.310558;38.493993,-77.286202;38.347024\\\\nPOLYGON,-94.618159;36.709089,-94.588658;39.151163,-94.831679;39.215938,-94.885026;39.389801,-95.110368;39.544562,-94.963958;39.740361,-94.862735;39.742195,-94.934573;39.772961,-94.875944;39.813294,-94.93016;39.889934,-95.124529;39.872857,-95.410548;40.035628,-95.476241;40.241257,-95.657328;40.310856,-95.655848;40.546609,-95.75711;40.52599,-95.765645;40.585208,-91.729115;40.61364,-91.419422;40.378264,-91.510839;40.126137,-91.369395;39.731163,-90.72996;39.255894,-90.663018;38.926283,-90.561021;38.869476,-90.406367;38.962554,-90.109407;38.843548,-90.370819;38.333554,-90.353414;38.213213,-89.924597;37.959849,-89.947758;37.879847,-89.842638;37.905197,-89.516685;37.692762,-89.420542;37.388007,-89.51834;37.285497,-89.383937;37.046441,-89.278628;36.98867,-89.30829;37.068371,-89.25493;37.072014,-89.098983;36.958222,-89.219035;36.575057,-89.365797;36.625126,-89.464433;36.457747,-89.47993;36.569087,-89.567004;36.565048,-89.509722;36.373626,-89.620255;36.323006,-89.534676;36.252771,-89.701821;36.246004,-89.591632;36.142135,-89.706932;36.000981,-90.37789;35.995683,-90.064169;36.302526,-90.15228;36.49795,-94.617919;36.499414,-94.618159;36.709089\\\\nPOLYGON,-72.32962;43.600201,-72.030182;44.079683,-72.032816;44.320446,-71.576665;44.501855,-71.534543;44.588244,-71.63216;44.750985,-71.49491;44.904299,-71.541262;44.984428,-71.465065;45.012918,-71.443883;45.237061,-71.284396;45.302434,-71.147067;45.239761,-71.083924;45.305451,-70.985984;43.380259,-70.575094;42.917126,-70.694395;42.956754,-70.735005;42.874685,-71.031201;42.859087,-71.294205;42.69699,-72.458436;42.72685,-72.555503;42.87483,-72.443647;43.006649,-72.398563;43.513435,-72.32962;43.600201\\\\nPOLYGON,-71.058247;44.990515,-71.083924;45.305451,-70.951561;45.338823,-70.857403;45.22922,-70.798207;45.426481,-70.634892;45.383492,-70.722427;45.513867,-70.258826;45.89119,-70.318038;46.019027,-70.23624;46.145149,-70.292241;46.191429,-70.056538;46.415555,-69.997213;46.695402,-69.224496;47.459854,-69.043387;47.426786,-69.050817;47.256492,-68.900085;47.177719,-68.234513;47.355295,-67.790328;47.067202,-67.750725;45.917509,-67.818008;45.693819,-67.449977;45.602464,-67.416262;45.501356,-67.503705;45.486661,-67.419286;45.377122,-67.489632;45.282123,-67.429103;45.193338,-67.340924;45.125092,-67.283536;45.191823,-67.158871;45.162035,-66.885444;44.794208,-67.567585;44.397209,-67.77475;44.411314,-67.823728;44.327038,-68.12828;44.264253,-68.20336;44.099587,-68.721478;43.961938,-68.669433;43.869576,-68.826916;43.735711,-69.055894;43.858911,-69.26234;43.815374,-69.238097;43.750084,-69.335093;43.704485,-69.40927;43.810817,-70.155986;43.524444,-70.520831;43.252104,-70.521675;43.154883,-70.404128;43.109356,-70.582163;43.095487,-70.575094;42.917126,-70.985958;43.380141,-71.058247;44.990515\\\\nPOLYGON,-82.741007;34.208862,-82.887398;34.480959,-83.034565;34.483571,-83.353622;34.697792,-83.108614;35.000659,-82.39293;35.215402,-81.033196;35.149197,-81.041489;35.044703,-80.93495;35.107409,-80.782042;34.935785,-80.797491;34.819752,-79.6753;34.804744,-78.499301;33.812852,-78.910541;33.589351,-79.087581;33.369287,-79.082229;33.171325,-79.322257;32.956078,-79.495945;32.931572,-79.967923;32.563709,-80.243074;32.472449,-80.751429;32.033468,-80.89296;32.034951,-81.117225;32.117604,-81.187141;32.464149,-81.41866;32.629392,-81.491954;33.009093,-81.753735;33.15005,-81.939737;33.344941,-81.926336;33.462937,-82.556765;33.945324,-82.741007;34.208862\\\\nPOLYGON,-92.637898;40.590853,-95.765645;40.585208,-95.888907;40.731855,-95.809474;40.891228,-95.882342;41.059419,-95.841616;41.175469,-95.92725;41.197086,-95.927642;41.29844,-95.871141;41.29669,-95.957137;41.345902,-95.921192;41.455138,-96.095109;41.541089,-96.06479;41.794406,-96.161756;41.90182,-96.129505;41.971673,-96.272545;42.046202,-96.417786;42.351449,-96.386003;42.474496,-96.476461;42.490128,-96.639364;42.736435,-96.436472;43.120166,-96.58566;43.269352,-96.521662;43.385905,-96.599191;43.500456,-91.217706;43.50055,-91.20662;43.352524,-91.057918;43.255366,-91.179457;43.067427,-91.065059;42.751338,-90.706303;42.634169,-90.654027;42.478503,-90.443874;42.355218,-90.393151;42.227186,-90.167533;42.122475,-90.181973;41.80707,-90.461432;41.523533,-91.04589;41.414085,-91.113657;41.241401,-90.946625;41.096628,-90.952233;40.954047,-91.092993;40.821079,-91.123928;40.669152,-91.405241;40.554641,-91.384201;40.38643,-91.483153;40.382492,-91.729115;40.61364,-92.637898;40.590853\\\\nPOLYGON,-81.056961;35.087014,-81.033196;35.149197,-82.390253;35.21554,-83.108305;35.000663,-84.321869;34.988408,-84.29024;35.225572,-84.046511;35.274182,-84.023307;35.411484,-83.880074;35.518745,-83.498335;35.56298,-83.159208;35.764892,-82.991904;35.774013,-82.919895;35.9288,-82.804997;35.927168,-82.637165;36.065805,-82.557874;35.953901,-82.352457;36.116609,-82.033141;36.120422,-81.855005;36.337259,-81.707438;36.335171,-81.677459;36.588157,-75.797497;36.550916,-75.40039;35.593512,-75.487685;35.184994,-76.02443;35.005364,-76.514867;34.535142,-76.6928;34.64295,-76.904628;34.632339,-77.516162;34.382443,-77.785555;34.125171,-77.943061;33.75377,-78.145353;33.862734,-78.499301;33.812852,-79.6753;34.804744,-80.797491;34.819752,-80.782042;34.935785,-80.93495;35.107409,-81.056961;35.087014\\\\nPOLYGON,-99.850072;40.001619,-95.30829;39.999998,-95.124529;39.872857,-94.934907;39.893784,-94.875944;39.813294,-94.934573;39.772961,-94.862735;39.742195,-94.963958;39.740361,-95.110368;39.544562,-94.885026;39.389801,-94.831679;39.215938,-94.588413;39.149869,-94.617964;36.998905,-102.042089;36.993016,-102.051744;40.003078,-99.850072;40.001619\\\\nPOLYGON,-95.8974;40.000603,-102.051744;40.003078,-102.051717;41.002359,-104.053249;41.001406,-104.053028;43.000585,-98.49855;42.998559,-98.035071;42.764114,-97.845393;42.86772,-97.306677;42.867604,-96.806213;42.704154,-96.687667;42.653127,-96.625961;42.513578,-96.386003;42.474496,-96.348602;42.168027,-96.240713;41.999351,-96.130355;41.972863,-96.161756;41.90182,-96.065327;41.797173,-96.094437;41.539463,-95.922786;41.457306,-95.957137;41.345902,-95.871871;41.301813,-95.927975;41.200069,-95.842188;41.177421,-95.882342;41.059419,-95.809379;40.893279,-95.885349;40.721093,-95.749685;40.606842,-95.762857;40.528371,-95.655848;40.546609,-95.657328;40.310856,-95.478694;40.243661,-95.415106;40.040341,-95.30829;39.999998,-95.8974;40.000603\\\\nPOLYGON,-110.606801;40.996278,-111.046723;40.997959,-111.055199;45.001321,-104.057697;44.99738,-104.053249;41.001406,-110.606801;40.996278\\\\nPOLYGON,-109.050071;40.540437,-109.050076;41.000659,-102.051717;41.002359,-102.042089;36.993016,-109.045223;36.999084,-109.050071;40.540437\\\\nPOLYGON,-96.453374;44.023773,-96.453097;45.300751,-96.692541;45.417338,-96.856834;45.605378,-96.58117;45.823015,-96.554411;46.084079,-96.599379;46.329984,-96.798175;46.629466,-96.753257;46.924563,-96.839548;47.006728,-96.851012;47.598508,-97.146505;48.14222,-97.175423;48.561957,-97.090313;48.684404,-97.232522;48.998833,-95.153711;48.998903,-95.153314;49.384358,-94.957439;49.370066,-94.816501;49.320997,-94.645387;48.744079,-93.84076;48.628537,-93.794455;48.515986,-93.25487;48.642746,-92.954876;48.631493,-92.634931;48.542873,-92.712562;48.463013,-92.456325;48.414204,-92.369945;48.220155,-92.269742;48.248241,-92.262477;48.354848,-92.055228;48.359212,-91.95829;48.233024,-91.559267;48.108275,-91.567248;48.043726,-91.266381;48.078714,-90.88548;48.245784,-90.751608;48.090968,-90.140863;48.112503,-89.89493;47.98721,-89.483385;48.013716,-89.957102;47.291103,-90.65466;47.309822,-92.020294;46.704041,-92.11659;46.74864,-92.291289;46.668137,-92.294033;46.074377,-92.707702;45.894901,-92.869193;45.717568,-92.883749;45.575483,-92.646505;45.440338,-92.762004;45.288213,-92.808242;44.751083,-92.548889;44.568252,-92.336114;44.554004,-91.966809;44.363986,-91.875158;44.200575,-91.432347;43.99669,-91.244135;43.774667,-91.217706;43.50055,-96.45326;43.50039,-96.453374;44.023773\\\\nPOLYGON,-92.674543;45.382868,-92.726082;45.541112,-92.883749;45.575483,-92.869193;45.717568,-92.707702;45.894901,-92.294033;46.074377,-92.291289;46.668137,-92.11659;46.74864,-92.020294;46.704041,-90.65466;47.309822,-90.500151;47.306329,-89.957102;47.291103,-90.393567;46.532563,-90.216811;46.501768,-90.120572;46.337039,-88.102461;45.921546,-88.130129;45.809708,-87.782226;45.683053,-87.888052;45.354697,-87.65735;45.368754,-87.74181;45.197469,-87.659952;45.107512,-87.442508;45.076434,-87.405694;45.201969,-87.101133;45.44423,-86.754236;45.44361,-86.249548;45.236125,-86.686288;44.881002,-87.013234;44.131905,-87.147166;43.379859,-87.019935;42.493498,-90.639927;42.508202,-90.709204;42.636078,-91.053733;42.738238,-91.144794;42.905997,-91.177932;43.128875,-91.057918;43.255366,-91.21477;43.365874,-91.244135;43.774667,-91.366642;43.937463,-91.875158;44.200575,-91.966809;44.363986,-92.336114;44.554004,-92.548889;44.568252,-92.808242;44.751083,-92.762004;45.288213,-92.674543;45.382868\\\\nPOLYGON,-87.088338;42.235334,-87.019863;42.493763,-87.147166;43.379859,-87.013234;44.131905,-86.686288;44.881002,-86.249548;45.236125,-86.754236;45.44361,-87.101133;45.44423,-87.405694;45.201969,-87.442508;45.076434,-87.659952;45.107512,-87.74181;45.197469,-87.65735;45.368754,-87.888052;45.354697,-87.782226;45.683053,-88.130129;45.809708,-88.102461;45.921546,-90.120572;46.337039,-90.216811;46.501768,-90.395069;46.533768,-89.483385;48.013716,-89.33755;47.974261,-88.369862;48.306063,-87.625091;48.021109,-84.859335;46.888843,-84.762957;46.634324,-84.556962;46.460639,-84.128925;46.530119,-84.108089;46.241238,-83.955424;46.057188,-83.654647;46.122055,-83.433558;45.998895,-83.636867;45.773944,-83.483974;45.771937,-82.52064;45.335902,-82.122971;43.590827,-82.456027;42.925812,-82.521568;42.609849,-82.83025;42.373492,-83.08002;42.307172,-83.11246;41.95941,-83.415851;41.733794,-87.207774;41.760956,-87.088338;42.235334\\\\nPOLYGON,-87.526587;41.16609,-87.523661;41.759907,-84.805885;41.760171,-84.820157;39.105489,-84.897336;39.05742,-84.830049;38.97256,-84.877276;38.90948,-84.785275;38.880425,-84.813238;38.785728,-85.173048;38.688022,-85.435409;38.729094,-85.42339;38.531845,-85.606954;38.438574,-85.679213;38.298009,-85.829216;38.276508,-85.925654;38.021784,-86.040821;37.958366,-86.264692;38.054853,-86.272847;38.140835,-86.361706;38.198698,-86.325551;38.135809,-86.461686;38.120502,-86.507089;37.929917,-86.638009;37.842772,-86.819804;37.999391,-87.034166;37.906265,-87.108333;37.782729,-87.58829;37.975512,-87.615583;37.831848,-87.89546;37.92799,-87.945991;37.773578,-88.077029;37.804993,-88.026053;37.833688,-88.09776;37.904026,-88.013451;37.893951,-88.042132;38.046345,-87.910924;38.162557,-87.988078;38.256717,-87.840984;38.280105,-87.495799;38.740699,-87.512187;38.954417,-87.658745;39.135997,-87.574558;39.218404,-87.620589;39.307046,-87.531646;39.347888,-87.526587;41.16609\\\\nPOLYGON,-135.722551;59.729629,-135.477436;59.799626,-135.231148;59.697176,-135.027456;59.563692,-135.097985;59.427783,-134.961972;59.280376,-134.702383;59.247836,-134.481241;59.128071,-134.250526;58.858046,-133.840392;58.727991,-133.379907;58.427909,-133.461474;58.385522,-132.252187;57.215655,-132.371312;57.095229,-132.051044;57.051155,-132.125934;56.874698,-131.871725;56.804965,-131.835133;56.601849,-131.581221;56.613275,-130.466874;56.23979,-130.425579;56.140678,-130.10277;56.116692,-130.013198;55.916382,-130.150061;55.727099,-129.980058;55.28423,-130.339504;54.921376,-130.657754;54.761828,-130.615397;54.705491,-133.648903;54.632045,-133.790528;55.000581,-133.611481;55.176459,-133.775623;55.282245,-133.771598;55.394323,-133.907153;55.434003,-133.798246;55.633231,-133.887681;55.683639,-133.837978;55.793297,-133.995884;55.795201,-134.026978;55.892,-134.192027;55.693053,-134.602306;55.82251,-134.63848;55.889152,-134.494173;55.999638,-135.865793;56.996246,-136.454479;57.83078,-136.644621;57.883768,-136.650241;58.102629,-136.510268;58.153464,-136.515428;58.180583,-136.814412;58.18879,-137.0145;58.344311,-137.72061;58.570857,-138.291085;59.000384,-140.363094;59.653566,-140.936485;59.686564,-142.397798;59.98485,-144.144078;59.919452,-144.410509;59.746274,-144.67677;59.727395,-144.777798;59.829935,-144.539684;60.010149,-144.607277;60.078347,-145.976568;60.314652,-147.10194;60.081337,-147.334827;59.833874,-147.68724;59.74168,-147.956439;59.744131,-148.218506;59.87564,-148.980202;59.893721,-149.467504;59.733767,-149.6213;59.527516,-150.992194;59.180837,-153.02118;59.002452,-153.184086;58.905729,-153.186964;58.729345,-153.478776;58.641694,-153.461482;58.572608,-153.628003;58.508297,-153.810656;58.515386,-154.133654;58.100141,-154.390744;57.999301,-154.940742;57.975071,-155.300397;57.642894,-155.639486;57.602267,-155.66796;57.508352,-156.167196;57.345852,-156.358967;57.037181,-156.357314;56.822259,-158.237442;55.63499,-159.457991;55.628875,-159.538153;55.532006,-160.041162;55.448879,-159.737892;55.222287,-159.415307;55.315381,-159.410886;55.123496,-159.233423;55.098642,-159.25014;54.9981,-159.113256;54.93033,-159.226601;54.820679,-159.724503;55.017793,-159.816042;54.909532,-159.952976;54.929384,-160.258106;54.806889,-160.343393;54.930881,-160.244364;55.022575,-160.285318;55.124556,-160.130092;55.238675,-160.203577;55.335775,-160.519469;55.025123,-160.607676;55.098361,-160.899676;55.09535,-160.907905;55.420374,-161.239516;55.298458,-161.012925;55.262995,-161.417726;55.066821,-161.384881;54.973964,-161.672281;54.959246,-161.717277;54.895744,-161.576738;54.81421,-161.590314;54.749847,-162.056572;54.704532,-162.048021;54.631914,-162.240473;54.640528,-162.365035;54.507693,-162.479815;54.540932,-162.459877;54.666524,-162.554931;54.749344,-162.483085;54.792724,-162.59998;54.826812,-162.578894;54.908523,-162.642997;54.933322,-163.137298;54.829815,-162.968606;54.708702,-163.025633;54.611155,-164.122671;54.556119,-164.414987;54.368823,-164.776446;54.339084,-164.982813;54.444621,-165.036163;54.576598,-164.78278;54.691702,-164.521182;54.969124,-164.297882;54.95264,-163.141331;55.231961,-161.82575;55.942655,-161.211108;56.06741,-160.616035;56.067421,-160.225416;56.4336,-158.893401;56.945108,-158.062812;58.485518,-158.213032;58.542604,-158.772683;58.354928,-159.07885;58.339257,-159.544685;58.778419,-159.939081;58.717906,-160.089153;58.806303,-160.273449;58.788731,-160.343087;58.880542,-160.608715;58.843621,-160.793303;58.560097,-160.933436;58.496109,-161.140958;58.50334,-161.233978;58.643453,-161.704228;58.496911,-162.230286;58.598551,-162.259755;58.672675,-161.851201;58.807983,-161.902474;58.977602,-162.171006;59.247568,-161.871266;59.524791,-162.178329;59.814842,-162.698375;59.891816,-162.947224;59.768288,-163.993706;59.76376,-163.739949;59.668649,-164.0133;59.637759,-164.415696;59.884867,-164.449658;59.953338,-164.342832;60.002931,-164.597386;60.158238,-165.501449;60.52618,-165.464115;60.613737,-165.123369;60.736627,-165.30215;60.96644,-165.236558;61.05009,-165.66365;61.057809,-166.280754;61.562882,-166.22973;61.798331,-166.112514;61.873144,-166.096216;62.073453,-165.44887;62.391022,-165.338687;62.576038,-165.213091;62.614431,-165.247324;62.709894,-164.986703;62.76074,-165.033767;62.836606,-164.915884;62.902607,-164.880216;63.065445,-164.495673;63.251159,-164.051256;63.317355,-163.118702;63.101558,-162.437773;63.491994,-162.679831;63.491626,-162.826441;63.57636,-162.584319;63.691392,-162.304355;63.672025,-161.840405;63.493288,-161.285188;63.52337,-160.87698;63.796878,-161.04566;64.022467,-161.075402;64.206652,-161.413899;64.358587,-161.59084;64.335541,-162.313491;64.542789,-162.795802;64.275674,-163.814064;64.531186,-165.032205;64.387987,-166.07779;64.520459,-166.133535;64.438212,-166.271959;64.43778,-166.353875;64.506444,-166.281388;64.544956,-166.590163;64.738948,-166.522688;64.871103,-167.072981;65.138385,-166.94893;65.307909,-167.60639;65.385626,-168.152967;65.538889,-168.229243;65.650266,-168.077126;65.756089,-165.777739;66.397362,-164.463535;66.626301,-163.626215;66.624174,-162.832032;66.926813,-163.911385;67.104695,-164.002718;67.172554,-163.882534;67.214976,-164.175429;67.547599,-165.499453;68.018782,-165.855554;68.034825,-166.410026;68.250761,-166.979909;68.313634,-166.445418;68.472684,-166.328027;68.693065,-166.320586;68.915738,-164.044063;69.03327,-163.362881;69.330192,-163.165316;69.824277,-162.21567;70.299506,-161.874858;70.380652,-160.975017;70.40129,-159.712427;70.84683,-159.262601;70.917357,-157.880471;70.910028,-156.539093;71.433803,-155.096302;71.223556,-153.900424;70.930736,-152.98413;70.982633,-152.199518;70.898779,-151.444057;70.480083,-149.694987;70.625558,-148.491072;70.453945,-148.422239;70.527886,-147.935287;70.541067,-147.168428;70.346097,-145.979267;70.244111,-144.678778;70.014434,-143.951321;70.177699,-143.167885;70.193493,-141.002713;69.703632,-141.00184;60.306105,-140.53509;60.224224,-140.472292;60.31059,-139.989142;60.18524,-139.698361;60.340421,-139.086669;60.357654,-139.200346;60.090701,-138.702053;59.910245,-138.620931;59.770559,-137.604277;59.243057,-137.526424;58.906834,-136.826633;59.158389,-136.581521;59.164909,-136.466815;59.284252,-136.474324;59.464193,-136.234229;59.524731,-136.350622;59.599326,-135.722551;59.729629\\\\nPOLYGON,-103.064657;32.959097,-103.041923;36.50035,-100.000406;36.499702,-100.000277;34.56045,-99.923211;34.574552,-99.69497;34.378333,-99.405286;34.372858,-99.368932;34.458461,-99.206905;34.338277,-99.189776;34.214357,-98.757037;34.124633,-98.599789;34.160571,-98.486328;34.062598,-98.365621;34.156993,-98.109462;34.154111,-98.088203;34.005481,-97.94573;33.989839,-97.967752;33.882214,-97.83432;33.857634,-97.671277;33.991553,-97.581078;33.899679,-97.46142;33.90523,-97.426799;33.818641,-97.210921;33.916064,-97.133915;33.718128,-96.981337;33.956378,-96.761587;33.824407,-96.667187;33.91694,-96.587934;33.894784,-96.629274;33.8455,-96.346859;33.686216,-96.002925;33.87359,-95.830406;33.834785,-95.594085;33.943057,-95.288926;33.87307,-95.216947;33.962674,-94.860687;33.741945,-94.448637;33.642766,-94.386768;33.545009,-94.057086;33.568003,-94.042566;31.993502,-93.823443;31.775098,-93.834918;31.586212,-93.711046;31.512161,-93.749476;31.46869,-93.639222;31.37202,-93.687278;31.306068,-93.532545;31.183314,-93.508039;31.031532,-93.740253;30.539569,-93.699516;30.058578,-93.927992;29.80964,-93.814351;29.596576,-94.033565;29.625002,-94.625192;29.397662,-94.65036;29.29189,-95.086398;29.06824,-95.329847;28.828699,-96.199375;28.442278,-96.938546;27.901199,-97.199816;27.500319,-97.319824;27.110023,-97.091121;25.97384,-97.284446;25.959156,-97.368517;25.915326,-97.3641;25.850034,-97.40525;25.837728,-97.662728;26.038078,-98.248737;26.072042,-98.445222;26.224571,-98.669149;26.23653,-98.806618;26.369109,-99.110854;26.426282,-99.268613;26.843213,-99.446123;27.023048,-99.441545;27.249915,-99.538035;27.316961,-99.512132;27.568288,-99.876761;27.797845,-99.931811;27.980968,-100.291397;28.275397,-100.333814;28.499252,-100.500354;28.66196,-100.6752;29.100741,-101.060151;29.458661,-101.254895;29.520341,-101.250383;29.624171,-101.305533;29.577925,-101.402319;29.77119,-102.073187;29.786524,-102.31594;29.879993,-102.387227;29.761392,-102.673997;29.744574,-102.884365;29.347946,-102.867474;29.223883,-102.995618;29.179291,-103.116814;28.984416,-103.286986;28.978172,-103.783626;29.265324,-104.037497;29.319707,-104.508462;29.632697,-104.683272;29.929107,-104.706255;30.234812,-104.859296;30.390253,-104.922677;30.603693,-105.399837;30.852077,-106.645584;31.895328,-106.618486;32.000495,-103.064422;32.000517,-103.064657;32.959097\\\\nPOLYGON,-87.450024;30.514912,-87.396595;30.654467,-87.626679;30.847304,-87.598829;30.997455,-85.0019;31.000681,-84.864693;30.711542,-82.214677;30.568556,-82.161777;30.357111,-82.037218;30.371848,-82.045608;30.727552,-81.949638;30.827845,-81.347015;30.712444,-81.377674;30.54446,-81.186399;29.76008,-80.906836;29.144706,-80.522973;28.608238,-80.499773;28.077233,-79.975425;26.80025,-80.103573;25.640086,-80.043814;25.579119,-80.115671;25.541393,-80.140419;25.326535,-80.462886;24.955937,-81.047648;24.64024,-81.514615;24.564757,-81.697199;24.432314,-81.792362;24.495613,-81.920556;24.396308,-82.067171;24.523715,-82.192292;24.507681,-82.153526;24.634865,-82.026643;24.607666,-81.414294;24.880711,-81.06447;24.791116,-80.888021;24.859064,-80.979533;24.871703,-81.190177;25.133511,-81.205709;25.410751,-81.347231;25.636727,-81.573695;25.805044,-81.718139;25.793033,-81.918716;26.35196,-82.236453;26.4773,-82.338319;26.803318,-82.815377;27.535958,-82.907912;28.212812,-82.795276;28.299764,-82.727392;28.595587,-82.866599;29.045524,-83.14408;29.07284,-83.238679;29.30861,-83.444857;29.473985,-83.46451;29.613319,-83.71917;29.876157,-84.043431;30.039755,-84.251319;29.995969,-84.31123;29.857321,-84.512845;29.832042,-85.060668;29.536462,-85.381684;29.612853,-85.446289;29.901033,-86.18476;30.277966,-86.645861;30.346173,-87.518346;30.229506,-87.366591;30.436648,-87.450024;30.514912\\\\nPOLYGON,-77.119751;38.93435,-77.041018;38.995548,-76.909393;38.892852,-77.039006;38.791645,-77.119751;38.93435\\\\nPOLYGON,-90.715977;39.191468,-91.368418;39.729738,-91.513079;40.178537,-91.372921;40.399108,-91.405241;40.554641,-91.123928;40.669152,-91.092993;40.821079,-90.96256;40.925831,-90.946625;41.096628,-91.113657;41.241401,-91.04589;41.414085,-90.461432;41.523533,-90.180954;41.809354,-90.162895;42.116718,-90.391108;42.225473,-90.640927;42.508302,-87.019935;42.493498,-87.207774;41.760956,-87.523661;41.759907,-87.531646;39.347888,-87.620589;39.307046,-87.574558;39.218404,-87.658745;39.135997,-87.512187;38.954417,-87.495799;38.740699,-87.840984;38.280105,-87.988078;38.256717,-87.910924;38.162557,-88.015916;38.099818,-87.956664;38.086202,-88.042132;38.046345,-88.013451;37.893951,-88.097892;37.901517,-88.028016;37.799188,-88.1601;37.659468,-88.06543;37.48876,-88.469621;37.397489,-88.459268;37.075248,-88.966634;37.230153,-89.173825;37.066308,-89.136093;36.980381,-89.25493;37.072014,-89.30829;37.068371,-89.278628;36.98867,-89.37961;37.040669,-89.51834;37.285497,-89.420542;37.388007,-89.514255;37.689923,-89.842638;37.905197,-89.947758;37.879847,-89.924597;37.959849,-90.360142;38.225659,-90.370819;38.333554,-90.109407;38.843548,-90.439938;38.967383,-90.623356;38.887149,-90.715977;39.191468\\\\nPOLYGON,145.006704;13.580889,144.765032;13.210179,144.60162;13.200357,144.588799;13.493798,144.75;13.551892,144.845293;13.705087,145.006704;13.580889\\\\nPOLYGON,-114.635458;34.876902,-114.646764;35.101868,-114.569258;35.183424,-114.754508;36.086171,-114.405624;36.146983,-114.243865;36.015266,-114.137112;36.038491,-114.043944;36.19335,-114.0506;37.000396,-109.045223;36.999084,-109.050044;31.332502,-111.074825;31.332239,-114.813613;32.494276,-114.70294;32.744793,-114.539224;32.749812,-114.468971;32.845155,-114.511343;33.023455,-114.706488;33.08816,-114.672088;33.258499,-114.731223;33.302433,-114.725282;33.405048,-114.524215;33.553068,-114.535478;33.934651,-114.415908;34.107636,-114.131211;34.26273,-114.386699;34.457911,-114.470477;34.711368,-114.635458;34.876902\\\\nPOLYGON,-119.656579;38.762436,-120.001014;38.999574,-119.999171;41.994836,-114.041723;41.99372,-114.043944;36.19335,-114.15139;36.023133,-114.243865;36.015266,-114.373745;36.143722,-114.753784;36.087807,-114.569258;35.183424,-114.633487;35.001857,-117.000895;36.847694,-119.656579;38.762436\\\\nPOLYGON,-117.320939;32.689847,-117.375872;33.075217,-117.520999;33.268872,-118.1259;33.697151,-118.319135;33.659547,-118.466962;33.725524,-118.447254;33.84876,-118.557356;33.987673,-118.824893;33.949042,-119.217993;34.062491,-119.334462;34.23653,-119.584795;34.36166,-120.462128;34.392479,-120.703968;34.548495,-120.689606;35.098828,-120.917792;35.187378,-120.933292;35.392748,-121.323512;35.624969,-121.727812;36.129009,-121.957666;36.285117,-122.076399;36.910199,-122.464117;37.177848,-122.588174;37.789362,-122.889291;37.974109,-123.067965;37.958669,-123.014817;38.149132,-123.164757;38.388337,-123.784676;38.893728,-123.761965;39.041091,-123.894936;39.348349,-123.834649;39.549194,-123.90097;39.780466,-124.411026;40.225275,-124.480543;40.428493,-124.197619;40.950529,-124.252474;41.134075,-124.160704;41.289293,-124.24242;41.3433,-124.133231;41.432311,-124.211706;41.681193,-124.438909;41.824504,-124.401242;41.885588,-124.285031;41.859487,-124.328835;41.998334,-119.999168;41.99454,-120.001014;38.999574,-117.500117;37.22038,-114.797341;35.134927,-114.633432;35.001773,-114.634382;34.87289,-114.470477;34.711368,-114.386699;34.457911,-114.138282;34.30323,-114.52868;33.947817,-114.524215;33.553068,-114.725282;33.405048,-114.706488;33.08816,-114.468605;32.971649,-114.539224;32.749812,-117.204917;32.528832,-117.320939;32.689847\\\\nPOLYGON,-64.84373;18.393713,-64.640437;18.363997,-64.664259;18.261271,-64.858035;18.179587,-64.946472;18.257223,-65.147723;18.259085,-65.080567;18.452807,-64.895024;18.463364,-64.84373;18.393713\\\\nFullPOLYGON,#00002d,-155.963331;19.08159,-155.943213;19.344227,-156.120001;19.727176,-155.884311;20.018327,-155.960818;20.197729,-155.892413;20.312398,-155.211768;20.038466,-154.759333;19.536462,-154.939663;19.312834,-155.391434;19.14436,-155.649041;18.870503,-155.963331;19.08159\\\\nFullPOLYGON,#0000-d07,-94.46025;34.538384,-94.430662;35.392478,-94.617756;36.499461,-90.15228;36.49795,-90.064169;36.302526,-90.37789;35.995683,-89.733095;36.000608,-89.644838;35.904351,-89.956252;35.733388,-89.851824;35.644261,-89.956532;35.590602,-89.9154;35.515119,-90.03955;35.548557,-90.044582;35.393073,-90.08365;35.478297,-90.168882;35.422206,-90.074992;35.384152,-90.168924;35.28028,-90.064768;35.13894,-90.295596;35.040093,-90.244731;34.921026,-90.309183;34.844994,-90.482356;34.879852,-90.45397;34.736877,-90.522892;34.802265,-90.568081;34.724802,-90.466041;34.674312,-90.588419;34.670963,-90.571145;34.420322,-90.662961;34.314779,-90.764143;34.363396,-90.847808;34.20653,-90.929523;34.244106,-90.808736;34.159416,-90.954299;34.138496,-90.870528;34.080516,-90.987948;34.019038,-90.967632;33.963324,-91.087921;33.975335,-90.988466;33.78453,-91.146351;33.730609,-91.032189;33.676593,-91.229015;33.677543,-91.130445;33.606034,-91.231418;33.560593,-91.182565;33.501061,-91.2358;33.439738,-91.167579;33.498309,-91.117975;33.453806,-91.208113;33.402006,-91.057621;33.445341,-91.142219;33.348989,-91.106142;33.241799,-91.04382;33.275606,-91.088633;33.142213,-91.20178;33.125121,-91.121195;33.059165,-91.166073;33.004106,-94.042964;33.019219,-94.04345;33.552253,-94.386136;33.54481,-94.485878;33.637865,-94.46025;34.538384\\\\nFullPOLYGON,#0000-5f5,-109.046156;34.579291,-109.045223;36.999084,-103.002199;37.000104,-103.064422;32.000517,-106.618486;32.000495,-106.635922;31.866237,-106.528242;31.783148,-108.208394;31.783599,-108.208573;31.333395,-109.050039;31.332244,-109.046156;34.579291\\\\nFullPOLYGON,#0000-25d,-114.332887;46.660756,-114.593292;46.632848,-114.666112;46.739325,-114.76689;46.696901,-115.319981;47.25672,-115.759347;47.422233,-115.628695;47.479641,-115.755862;47.548094,-115.68755;47.594653,-115.722629;47.695162,-116.048863;47.976758,-116.049193;49.000912,-104.048736;48.999877,-104.039138;44.99852,-111.055199;45.001321,-111.048974;44.474072,-111.385994;44.755136,-111.516588;44.643707,-111.467951;44.538867,-112.286187;44.568472,-112.386896;44.447635,-112.781294;44.484888,-112.847445;44.358319,-113.003544;44.450814,-113.131453;44.772837,-113.455071;44.865424,-113.45197;45.059247,-113.691984;45.262952,-113.766022;45.520621,-113.834548;45.52081,-113.806729;45.602146,-113.935015;45.694349,-114.333218;45.459316,-114.564838;45.55773,-114.495421;45.703321,-114.566172;45.773864,-114.387674;45.884594,-114.527189;46.14542,-114.444015;46.169254,-114.332887;46.660756\\\\nFullPOLYGON,#0000-2391,-79.645461;41.998859,-79.76162;42.00006,-79.762418;42.516072,-78.905758;42.899957,-79.074459;43.077863,-79.05606;43.254156,-79.200936;43.450422,-78.688295;43.634742,-76.776233;43.629529,-76.312639;44.199045,-75.912985;44.368084,-75.413792;44.772534,-74.992727;44.977469,-73.343124;45.01084,-73.390231;44.618354,-73.293627;44.438903,-73.437905;44.045125,-73.350762;43.771387,-73.431229;43.588285,-73.30644;43.628333,-73.241587;43.534969,-73.264957;42.74594,-73.508142;42.086257,-73.550962;41.295421,-73.482695;41.212772,-73.727775;41.100696,-73.612885;40.950943,-71.929451;41.310387,-71.790972;41.184101,-71.777491;41.067292,-73.274025;40.551314,-74.228153;40.477399,-74.202247;40.630903,-74.055739;40.65176,-73.893979;40.997205,-74.738456;41.430642,-74.982513;41.480319,-75.074613;41.605711,-75.072172;41.813732,-75.260527;41.8638,-75.359579;41.999445,-79.645461;41.998859\\\\nFullPOLYGON,#0000-4ab,-104.048377;48.721377,-104.048736;48.999877,-97.228722;49.000562,-97.090313;48.684404,-97.175423;48.561957,-97.146505;48.14222,-96.851021;47.598544,-96.839548;47.006728,-96.753257;46.924563,-96.798195;46.629573,-96.599379;46.329984,-96.562804;45.937095,-104.045441;45.94531,-104.048377;48.721377\\\\nFullPOLYGON,#0000-807,-104.05458;44.144008,-104.045441;45.94531,-96.563672;45.935245,-96.583684;45.819307,-96.856834;45.605378,-96.692541;45.417338,-96.453097;45.300751,-96.45326;43.50039,-96.603056;43.450793,-96.521734;43.386862,-96.569178;43.2327,-96.476654;43.221941,-96.436472;43.120166,-96.639485;42.736928,-96.445483;42.49063,-96.611488;42.506086,-96.691268;42.656198,-97.237868;42.853139,-97.841966;42.868166,-98.035071;42.764114,-98.49855;42.998559,-104.053028;43.000585,-104.05458;44.144008\\\\nFullPOLYGON,#0000-1b3,-112.979261;41.998432,-111.046689;42.001567,-111.046723;40.997959,-109.050076;41.000659,-109.045223;36.999084,-114.0506;37.000396,-114.041723;41.99372,-112.979261;41.998432\\\\nFullPOLYGON,#0000-32f,-122.401202;45.571041,-122.262625;45.544321,-121.533106;45.726541,-121.215779;45.671238,-121.183841;45.606441,-120.634968;45.745847,-120.40396;45.699249,-118.97717;46.000264,-116.91648;45.995475,-116.782139;45.825116,-116.54809;45.752364,-116.463635;45.602785,-116.847944;45.022602,-116.852427;44.887578,-117.062273;44.727143,-117.242873;44.395557,-117.198147;44.273828,-116.894202;44.162317,-117.032578;43.830181,-117.026197;41.99989,-124.338659;42.003256,-124.569509;42.454586,-124.473554;42.614734,-124.703541;42.770369,-124.530606;42.99983,-124.476948;43.329371,-124.328714;43.499835,-124.215152;43.953775,-124.011657;45.676717,-124.09192;45.943455,-124.002783;46.027544,-124.159546;46.261132,-123.501246;46.271014,-123.371433;46.146372,-123.115904;46.185268,-122.813999;45.960983,-122.76381;45.657138,-122.401202;45.571041\\\\nFullPOLYGON,#0000-e8d,-117.041741;47.735893,-117.062748;46.353624,-116.92187;46.167808,-116.982479;46.089389,-116.91568;45.995375,-118.987129;45.999855,-120.40396;45.699249,-120.634968;45.745847,-121.167852;45.606098,-121.33777;45.704949,-121.811304;45.706761,-122.294901;45.543541,-122.76381;45.657138,-122.813999;45.960983,-123.115904;46.185268,-123.371433;46.146372,-123.501246;46.271014,-124.159546;46.261132,-124.133291;46.603129,-124.27366;47.165071,-124.41355;47.36873,-124.458973;47.62672,-124.553095;47.643355,-124.534783;47.718756,-124.795204;47.966506,-124.848974;48.181373,-124.761387;48.295688,-124.817912;48.391003,-124.763031;48.499784,-123.679367;48.240022,-123.249034;48.28431,-123.115529;48.422974,-123.274009;48.692969,-123.008865;48.767302,-123.008472;48.831338,-123.32242;49.001962,-117.032351;48.999188,-117.041741;47.735893\\\\nFullPOLYGON,#0000f5,-170.706229;-14.205096,-170.536778;-14.20434,-170.491495;-14.301691,-170.739019;-14.41995,-170.883698;-14.342694,-170.706229;-14.205096\\\\nFullPOLYGON,#0000-393,-116.897846;44.152546,-116.975904;44.242843,-117.216974;44.288357,-117.225756;44.480533,-116.852427;44.887578,-116.847944;45.022602,-116.463296;45.61476,-116.54809;45.752364,-116.859795;45.907264,-116.981962;46.084915,-116.92187;46.167808,-117.06263;46.352522,-117.032351;48.999188,-116.049193;49.000912,-116.048863;47.976758,-115.722629;47.695162,-115.68755;47.594653,-115.755862;47.548094,-115.628695;47.479641,-115.759347;47.422233,-115.319981;47.25672,-114.76689;46.696901,-114.665328;46.739245,-114.605269;46.635822,-114.320665;46.646963,-114.470479;46.26732,-114.444015;46.169254,-114.527154;46.145831,-114.387674;45.884594,-114.566172;45.773864,-114.495421;45.703321,-114.564838;45.55773,-114.333218;45.459316,-113.935015;45.694349,-113.806729;45.602146,-113.834548;45.52081,-113.766022;45.520621,-113.691984;45.262952,-113.45197;45.059247,-113.455071;44.865424,-113.131453;44.772837,-113.003544;44.450814,-112.855395;44.359975,-112.781294;44.484888,-112.386896;44.447635,-112.286187;44.568472,-111.467951;44.538867,-111.516588;44.643707,-111.385994;44.755136,-111.048974;44.474072,-111.046689;42.001567,-117.026197;41.99989,-117.032578;43.830181,-116.897846;44.152546\\\\nFullPOLYGON,#FFFFFF,145.875984;15.135438,145.75007;15.066604,145.616469;14.800842,145.482681;14.799207,145.562891;14.934284,145.535022;15.089214,145.793021;15.354699,145.907345;15.283903,145.875984;15.135438\\\\nFullPOLYGON,#000091,-66.12461;18.523065,-65.214602;18.392711,-65.205432;18.244702,-65.46154;18.293299,-65.554643;18.184767,-65.278316;18.197918,-65.2179;18.116416,-65.549699;18.028449,-65.61805;18.15418,-65.852531;17.941486,-66.530936;17.831509,-66.574067;17.91314,-67.26068;17.92854,-67.214236;18.211349,-67.323254;18.363875,-67.1686;18.548467,-66.12461;18.523065\\\\nFullPOLYGON,#0000-1225,-98.139072;34.14187,-98.365621;34.156993,-98.483551;34.062277,-98.599789;34.160571,-99.186817;34.213555,-99.206905;34.338277,-99.35897;34.455807,-99.405286;34.372858,-99.694528;34.378218,-99.923211;34.574552,-100.000277;34.56045,-100.000406;36.499702,-103.002434;36.500397,-103.002199;37.000104,-94.617964;36.998905,-94.617919;36.499414,-94.430662;35.392478,-94.489086;33.626778,-94.867544;33.744904,-95.216947;33.962674,-95.288926;33.87307,-95.594085;33.943057,-95.830406;33.834785,-96.002925;33.87359,-96.346859;33.686216,-96.629274;33.8455,-96.587934;33.894784,-96.667187;33.91694,-96.761587;33.824407,-96.981337;33.956378,-97.133915;33.718128,-97.210921;33.916064,-97.426799;33.818641,-97.46142;33.90523,-97.581078;33.899679,-97.671277;33.991553,-97.83432;33.857634,-97.96668;33.881746,-97.946005;33.990297,-98.086828;34.004244,-98.139072;34.14187\\\\nFullPOLYGON,#0000-a73,-75.066815;40.536544,-75.201844;40.615892,-75.196535;40.751631,-75.051029;40.865662,-75.131341;40.98998,-74.753931;41.346135,-73.893979;40.997205,-74.055739;40.65176,-74.188344;40.644264,-74.259089;40.50289,-73.886652;40.489794,-74.049489;39.723785,-74.311135;39.375117,-75.015123;38.788657,-75.563586;39.483048,-75.559737;39.630452,-75.445235;39.779453,-74.722527;40.15029,-75.058575;40.418193,-75.066815;40.536544\\\\nFullPOLYGON,#0000-23,-71.31777;41.776113,-71.132507;41.660356,-71.088571;41.431315,-71.79148;41.272165,-71.790972;41.184101,-71.907258;41.304483,-71.797745;41.416727,-71.799242;42.008065,-71.381401;42.018798,-71.31777;41.776113\\\\nFullPOLYGON,#0000-eab,-91.591864;29.359375,-91.875032;29.361992,-92.07805;29.531489,-92.632538;29.529718,-93.223168;29.726396,-93.711547;29.690347,-93.814351;29.596576,-93.927992;29.80964,-93.699516;30.058578,-93.740253;30.539569,-93.508039;31.031532,-93.532545;31.183314,-93.687278;31.306068,-93.639222;31.37202,-93.749476;31.46869,-93.711046;31.512161,-93.834918;31.586212,-93.823443;31.775098,-94.042566;31.993502,-94.042964;33.019219,-91.166073;33.004106,-91.170235;32.899391,-91.09693;32.986412,-91.064449;32.901063,-91.165696;32.753399,-91.054749;32.719229,-91.152486;32.620319,-91.0158;32.641644,-91.080411;32.556468,-90.987202;32.495663,-91.093742;32.549127,-91.116008;32.48314,-90.969587;32.439492,-90.993625;32.354047,-90.875638;32.371729,-90.994944;32.193141,-91.164171;32.196888,-91.162822;32.132694,-91.004106;32.146152,-91.080908;32.047855,-91.15851;32.072854,-91.075908;32.016827,-91.254311;31.813662,-91.345214;31.843861,-91.365614;31.760763,-91.263111;31.754764,-91.369375;31.746903,-91.401015;31.620365,-91.515462;31.630372,-91.405415;31.576466,-91.522536;31.522078,-91.474809;31.368646,-91.576265;31.410498,-91.515614;31.27821,-91.654027;31.255753,-91.559907;31.054119,-91.636942;30.999416,-89.731673;31.004817,-89.852203;30.661684,-89.614234;30.221471,-88.854913;30.135532,-88.764495;29.971944,-88.82343;29.714992,-89.142073;29.429465,-89.069426;29.294297,-88.91831;29.236276,-88.921713;29.124971,-89.11485;28.926368,-89.279604;28.977783,-89.409889;28.857683,-89.491134;28.897338,-89.468673;29.107461,-89.599159;29.197877,-90.344319;29.003178,-90.90708;28.991132,-91.017447;29.038653,-90.974925;29.121509,-91.591864;29.359375\\\\nFullPOLYGON,#0000-1d1,-73.50793;41.791524,-73.487314;42.049638,-71.800649;42.023569,-71.797745;41.416727,-71.907258;41.304483,-73.612885;40.950943,-73.727775;41.100696,-73.482695;41.212772,-73.550962;41.295421,-73.50793;41.791524\\\\nFullPOLYGON,#0000-aff,-81.044288;39.536612,-80.830829;39.707827,-80.870322;39.763184,-80.599895;40.317666,-80.667813;40.583536,-80.518991;40.638801,-80.519342;39.721403,-79.476662;39.721078,-79.486875;39.205896,-79.102383;39.476394,-78.956573;39.440331,-78.775279;39.645657,-78.689558;39.545824,-78.471942;39.515938,-78.430139;39.623416,-78.176542;39.695979,-77.834145;39.603371,-77.888736;39.55541,-77.76634;39.496238,-77.803205;39.437111,-77.719519;39.321314,-77.828299;39.132426,-78.347087;39.466012,-78.403697;39.167451,-78.868971;38.763139,-78.999752;38.846162,-79.28294;38.4181,-79.649175;38.591415,-79.788945;38.268703,-80.295916;37.692838,-80.220984;37.627767,-80.328504;37.564315,-80.299789;37.508271,-80.770082;37.372363,-80.859457;37.429491,-80.849451;37.346909,-80.951018;37.29497,-81.225104;37.234874,-81.364492;37.337996,-81.678221;37.20154,-81.928462;37.360461,-81.996578;37.476705,-81.943964;37.531282,-82.133247;37.552832,-82.502198;37.933052,-82.464566;37.983876,-82.644539;38.165249,-82.574624;38.263937,-82.596512;38.415892,-82.330335;38.4445,-82.291271;38.578983,-82.177267;38.603784,-82.221566;38.787187,-82.037749;39.023865,-81.933186;38.98766,-81.90297;38.87609,-81.762658;38.924123,-81.813854;39.079678,-81.689483;39.266043,-81.570247;39.267675,-81.456143;39.409274,-81.375961;39.341697,-81.217315;39.38759,-81.044288;39.536612\\\\nFullPOLYGON,#0000-18d3,-84.423498;39.051885,-84.458818;39.121479,-84.820157;39.105489,-84.805972;41.696118,-83.415851;41.733794,-83.11246;41.95941,-83.069312;41.864217,-82.681119;41.676328,-82.398348;41.676524,-81.249833;42.216415,-80.519851;42.327132,-80.518991;40.638801,-80.667813;40.583536,-80.599895;40.317666,-80.88036;39.620706,-81.217315;39.38759,-81.375961;39.341697,-81.456143;39.409274,-81.570247;39.267675,-81.683613;39.270947,-81.813854;39.079678,-81.762658;38.924123,-81.90297;38.87609,-81.933186;38.98766,-82.037749;39.023865,-82.221566;38.787187,-82.177267;38.603784,-82.291271;38.578983,-82.330335;38.4445,-82.53769;38.404157,-82.842213;38.588577,-82.88601;38.755194,-83.293019;38.596764,-83.520755;38.703094,-83.668718;38.626542,-83.870199;38.761532,-84.212751;38.805629,-84.309313;39.011743,-84.423498;39.051885\\\\nFullPOLYGON,#0000-b8b,-86.490068;38.045772,-86.455742;38.125031,-86.327188;38.133894,-86.357717;38.198807,-86.219504;38.027552,-86.04369;37.958255,-85.943132;38.006622,-85.829216;38.276508,-85.679213;38.298009,-85.606954;38.438574,-85.42065;38.535421,-85.436299;38.728484,-85.173048;38.688022,-84.81472;38.784512,-84.785275;38.880425,-84.877276;38.90948,-84.830049;38.97256,-84.891091;39.064637,-84.750345;39.147622,-84.618734;39.073331,-84.462803;39.121968,-84.306074;39.007753,-84.213115;38.805835,-83.870199;38.761532,-83.668718;38.626542,-83.520755;38.703094,-83.293019;38.596764,-82.879786;38.751584,-82.842213;38.588577,-82.603609;38.459533,-82.574518;38.264505,-82.644539;38.165249,-82.464566;37.983876,-82.502198;37.933052,-82.304314;37.676093,-82.175075;37.647832,-82.132085;37.552366,-81.964788;37.542243,-82.348757;37.267944,-82.721413;37.12083,-82.878683;36.889532,-83.072836;36.854457,-83.13512;36.742629,-83.690789;36.582596,-88.070541;36.678255,-88.053293;36.497058,-89.417275;36.499011,-89.365797;36.625126,-89.236308;36.566881,-89.159118;36.666354,-89.200552;36.732567,-89.118202;36.762326,-89.179201;36.829896,-89.098983;36.958222,-89.182568;37.039001,-89.086712;37.165451,-88.931424;37.227378,-88.460119;37.074576,-88.47409;37.391863,-88.067844;37.485867,-88.15959;37.661704,-88.02964;37.798413,-87.907375;37.807129,-87.903864;37.925537,-87.674851;37.901781,-87.64536;37.826254,-87.597558;37.974254,-87.510864;37.9061,-87.412232;37.944649,-87.111008;37.782354,-87.034166;37.906265,-86.820821;37.999339,-86.632884;37.844191,-86.507089;37.929917,-86.490068;38.045772\\\\nFullPOLYGON,#0000-1397,-84.12944;34.987545,-83.102867;34.997257,-83.306366;34.81567,-83.342004;34.68177,-82.859068;34.455435,-82.556765;33.945324,-81.926336;33.462937,-81.939737;33.344941,-81.752135;33.14855,-81.491954;33.009093,-81.41866;32.629392,-81.187141;32.464149,-81.113343;32.1132,-80.751429;32.033468,-81.056623;31.714875,-81.187675;31.246258,-81.353416;31.037121,-81.304832;30.970774,-81.400482;30.766426,-81.347015;30.712444,-81.949806;30.827764,-82.045527;30.727881,-82.066184;30.355757,-82.192786;30.379065,-82.214677;30.568556,-84.914022;30.752991,-85.107516;31.186451,-85.041361;31.542495,-85.141831;31.839861,-85.061601;32.133412,-84.888246;32.25967,-85.006402;32.326757,-84.96303;32.424244,-85.1844;32.861317,-85.605165;34.984678,-84.12944;34.987545\\\\nFullPOLYGON,#0000-b63,-91.636692;30.999568,-91.559907;31.054119,-91.654027;31.255753,-91.515614;31.27821,-91.576265;31.410498,-91.474809;31.368646,-91.522536;31.522078,-91.405415;31.576466,-91.515462;31.630372,-91.401015;31.620365,-91.369375;31.746903,-91.263111;31.754764,-91.365614;31.760763,-91.345214;31.843861,-91.254311;31.813662,-91.075908;32.016827,-91.15851;32.072854,-91.080908;32.047855,-91.004106;32.146152,-91.162822;32.132694,-91.164171;32.196888,-90.994944;32.193141,-90.875638;32.371729,-90.993625;32.354047,-90.969587;32.439492,-91.116008;32.48314,-91.093742;32.549127,-90.987202;32.495663,-91.080411;32.556468,-91.0158;32.641644,-91.152486;32.620319,-91.054749;32.719229,-91.165696;32.753399,-91.086802;32.976266,-91.213972;32.927197,-91.120318;33.055323,-91.20178;33.125121,-91.091153;33.13826,-91.044527;33.267546,-91.141691;33.300355,-91.057621;33.445341,-91.151161;33.378691,-91.209072;33.407449,-91.135698;33.48068,-91.235549;33.439307,-91.182565;33.501061,-91.231418;33.560593,-91.130445;33.606034,-91.227857;33.683073,-91.03359;33.674142,-91.146351;33.730609,-90.988466;33.78453,-91.087921;33.975335,-90.967632;33.963324,-90.987948;34.019038,-90.870528;34.080516,-90.954299;34.138496,-90.808736;34.159416,-90.929523;34.244106,-90.847808;34.20653,-90.764143;34.363396,-90.662961;34.314779,-90.571145;34.420322,-90.588419;34.670963,-90.466041;34.674312,-90.568081;34.724802,-90.522892;34.802265,-90.45397;34.736877,-90.479864;34.883273,-90.309183;34.844994,-90.244476;34.937596,-90.309289;34.995694,-88.20003;34.99564,-88.097888;34.892202,-88.473227;31.893856,-88.384431;30.158543,-89.576805;30.183225,-89.852203;30.661684,-89.731673;31.004817,-91.636692;30.999568\\\\nFullPOLYGON,#0000-717,-73.431307;42.296143,-73.264957;42.74594,-71.294205;42.69699,-71.031201;42.859087,-70.735005;42.874685,-70.714324;42.731911,-70.549306;42.724164,-70.502143;42.635471,-70.690393;42.278999,-70.642946;42.178185,-70.067098;42.105327,-69.866525;41.817011,-69.868125;41.656791,-70.023677;41.471948,-70.126677;41.503698,-70.077934;41.612528,-70.508603;41.498965,-70.383449;41.369933,-70.13794;41.346371,-70.006467;41.433898,-69.894472;41.25924,-70.109684;41.189803,-70.606672;41.29941,-70.847746;41.205814,-70.896017;41.370148,-71.088571;41.431315,-71.132507;41\"+\".660356,-71.341193;41.798234,-71.381401;42.018798,-73.496879;42.049675,-73.431307;42.296143\\\\nFullPOLYGON,#0000-1db,-75.760074;39.296819,-75.788596;39.722199,-75.618129;39.833965,-75.405414;39.796396,-75.559737;39.630452,-75.560538;39.455645,-75.321021;39.251379,-75.016109;38.79053,-74.986282;38.451632,-75.69367;38.46008,-75.760074;39.296819\\\\nFullPOLYGON,#0000-34d,-73.407413;44.020272,-73.293627;44.438903,-73.390231;44.618354,-73.343124;45.01084,-71.465039;45.013638,-71.63216;44.750985,-71.534543;44.588244,-71.576665;44.501855,-72.032816;44.320446,-72.03049;44.078979,-72.37944;43.574069,-72.443333;43.007835,-72.555503;42.87483,-72.458436;42.72685,-73.276421;42.746019,-73.241587;43.534969,-73.30644;43.628333,-73.430948;43.587036,-73.350762;43.771387,-73.407413;44.020272\\\\nFullPOLYGON,#0000-1d15,-80.293756;39.721187,-80.519342;39.721403,-80.519851;42.327132,-79.762418;42.516072,-79.761313;41.998808,-75.359579;41.999445,-75.260527;41.8638,-75.072172;41.813732,-75.074613;41.605711,-74.983341;41.480894,-74.689502;41.363851,-75.131096;40.990464,-75.051029;40.865662,-75.203921;40.691498,-75.058575;40.418193,-74.722527;40.15029,-75.415062;39.801919,-75.626124;39.832308,-75.773786;39.7222,-80.293756;39.721187\\\\nFullPOLYGON,#0000-a55,-77.042022;38.746721,-76.909393;38.892852,-77.041018;38.995548,-77.119759;38.934343,-77.461473;39.075426,-77.527685;39.14465,-77.459497;39.227724,-77.759239;39.336936,-77.76634;39.496238,-77.888736;39.55541,-77.837771;39.605895,-78.176542;39.695979,-78.565392;39.519327,-78.760767;39.582702,-78.766407;39.648432,-78.956573;39.440331,-79.102383;39.476394,-79.473215;39.202107,-79.476662;39.721078,-75.788596;39.722199,-75.69367;38.46008,-74.987945;38.436629,-75.166435;38.027834,-76.236458;37.886605,-76.60543;38.148933,-76.94902;38.208418,-77.041505;38.400692,-77.283796;38.342855,-77.309864;38.495298,-77.042022;38.746721\\\\nFullPOLYGON,#0000-9f1,-89.346066;36.503232,-88.053293;36.497058,-88.070541;36.678255,-83.690789;36.582596,-81.6469;36.611918,-81.707438;36.335171,-81.855005;36.337259,-82.033141;36.120422,-82.352457;36.116609,-82.557874;35.953901,-82.637165;36.065805,-82.804997;35.927168,-82.919895;35.9288,-82.991904;35.774013,-83.159208;35.764892,-83.498335;35.56298,-83.880074;35.518745,-84.023307;35.411484,-84.046511;35.274182,-84.29024;35.225572,-84.321869;34.988408,-90.309289;34.995694,-90.064768;35.13894,-90.168924;35.28028,-90.074992;35.384152,-90.179265;35.385194,-90.098734;35.478554,-90.068156;35.46678,-90.069434;35.408163,-90.044582;35.393073,-90.032734;35.553696,-89.909022;35.520548,-89.957495;35.58853,-89.851158;35.657424,-89.956252;35.733388,-89.704387;35.819607,-89.742606;35.906653,-89.645346;35.891419,-89.733095;36.000608,-89.592206;36.15012,-89.702869;36.244446,-89.534745;36.252573,-89.620255;36.323006,-89.513178;36.359897,-89.539232;36.497934,-89.346066;36.503232\\\\nFullPOLYGON,#0000-663,-88.406201;30.589708,-88.473227;31.893856,-88.097888;34.892202,-88.202959;35.008028,-85.605165;34.984678,-85.1844;32.861317,-84.96303;32.424244,-85.006402;32.326757,-84.888246;32.25967,-85.061601;32.133412,-85.140731;31.857461,-85.041361;31.542495,-85.107676;31.187436,-85.002499;31.000685,-87.598829;30.997455,-87.634744;30.86561,-87.406474;30.675146,-87.450371;30.514462,-87.367441;30.434495,-87.518346;30.229506,-88.046104;30.144689,-88.162022;30.200093,-88.384431;30.158543,-88.406201;30.589708\\\\nFullPOLYGON,#0000-118f,-77.286202;38.347024,-77.041505;38.400692,-76.94902;38.208418,-76.60543;38.148933,-76.236458;37.886605,-75.166435;38.027834,-75.303132;37.838169,-75.460933;37.771356,-75.644386;37.34227,-75.889676;37.054515,-75.928307;36.938179,-75.797497;36.550916,-83.675395;36.600784,-83.13512;36.742629,-83.072836;36.854457,-82.878683;36.889532,-82.721413;37.12083,-82.348757;37.267944,-81.968012;37.538035,-81.928462;37.360461,-81.678221;37.20154,-81.365284;37.337842,-81.225104;37.234874,-80.89916;37.315678,-80.859457;37.429491,-80.770082;37.372363,-80.309333;37.502883,-80.328504;37.564315,-80.220984;37.627767,-80.295916;37.692838,-79.788945;38.268703,-79.649175;38.591415,-79.28294;38.4181,-78.999752;38.846162,-78.868971;38.763139,-78.403697;39.167451,-78.347087;39.466012,-77.828299;39.132426,-77.730697;39.315603,-77.566598;39.306047,-77.45771;39.224979,-77.520092;39.120869,-77.041672;38.872533,-77.043877;38.717674,-77.310558;38.493993,-77.286202;38.347024\\\\nFullPOLYGON,#0000-203f,-94.618159;36.709089,-94.588658;39.151163,-94.831679;39.215938,-94.885026;39.389801,-95.110368;39.544562,-94.963958;39.740361,-94.862735;39.742195,-94.934573;39.772961,-94.875944;39.813294,-94.93016;39.889934,-95.124529;39.872857,-95.410548;40.035628,-95.476241;40.241257,-95.657328;40.310856,-95.655848;40.546609,-95.75711;40.52599,-95.765645;40.585208,-91.729115;40.61364,-91.419422;40.378264,-91.510839;40.126137,-91.369395;39.731163,-90.72996;39.255894,-90.663018;38.926283,-90.561021;38.869476,-90.406367;38.962554,-90.109407;38.843548,-90.370819;38.333554,-90.353414;38.213213,-89.924597;37.959849,-89.947758;37.879847,-89.842638;37.905197,-89.516685;37.692762,-89.420542;37.388007,-89.51834;37.285497,-89.383937;37.046441,-89.278628;36.98867,-89.30829;37.068371,-89.25493;37.072014,-89.098983;36.958222,-89.219035;36.575057,-89.365797;36.625126,-89.464433;36.457747,-89.47993;36.569087,-89.567004;36.565048,-89.509722;36.373626,-89.620255;36.323006,-89.534676;36.252771,-89.701821;36.246004,-89.591632;36.142135,-89.706932;36.000981,-90.37789;35.995683,-90.064169;36.302526,-90.15228;36.49795,-94.617919;36.499414,-94.618159;36.709089\\\\nFullPOLYGON,#0000-299,-72.32962;43.600201,-72.030182;44.079683,-72.032816;44.320446,-71.576665;44.501855,-71.534543;44.588244,-71.63216;44.750985,-71.49491;44.904299,-71.541262;44.984428,-71.465065;45.012918,-71.443883;45.237061,-71.284396;45.302434,-71.147067;45.239761,-71.083924;45.305451,-70.985984;43.380259,-70.575094;42.917126,-70.694395;42.956754,-70.735005;42.874685,-71.031201;42.859087,-71.294205;42.69699,-72.458436;42.72685,-72.555503;42.87483,-72.443647;43.006649,-72.398563;43.513435,-72.32962;43.600201\\\\nFullPOLYGON,#0000-5,-71.058247;44.990515,-71.083924;45.305451,-70.951561;45.338823,-70.857403;45.22922,-70.798207;45.426481,-70.634892;45.383492,-70.722427;45.513867,-70.258826;45.89119,-70.318038;46.019027,-70.23624;46.145149,-70.292241;46.191429,-70.056538;46.415555,-69.997213;46.695402,-69.224496;47.459854,-69.043387;47.426786,-69.050817;47.256492,-68.900085;47.177719,-68.234513;47.355295,-67.790328;47.067202,-67.750725;45.917509,-67.818008;45.693819,-67.449977;45.602464,-67.416262;45.501356,-67.503705;45.486661,-67.419286;45.377122,-67.489632;45.282123,-67.429103;45.193338,-67.340924;45.125092,-67.283536;45.191823,-67.158871;45.162035,-66.885444;44.794208,-67.567585;44.397209,-67.77475;44.411314,-67.823728;44.327038,-68.12828;44.264253,-68.20336;44.099587,-68.721478;43.961938,-68.669433;43.869576,-68.826916;43.735711,-69.055894;43.858911,-69.26234;43.815374,-69.238097;43.750084,-69.335093;43.704485,-69.40927;43.810817,-70.155986;43.524444,-70.520831;43.252104,-70.521675;43.154883,-70.404128;43.109356,-70.582163;43.095487,-70.575094;42.917126,-70.985958;43.380141,-71.058247;44.990515\\\\nFullPOLYGON,#0000-9a1,-82.741007;34.208862,-82.887398;34.480959,-83.034565;34.483571,-83.353622;34.697792,-83.108614;35.000659,-82.39293;35.215402,-81.033196;35.149197,-81.041489;35.044703,-80.93495;35.107409,-80.782042;34.935785,-80.797491;34.819752,-79.6753;34.804744,-78.499301;33.812852,-78.910541;33.589351,-79.087581;33.369287,-79.082229;33.171325,-79.322257;32.956078,-79.495945;32.931572,-79.967923;32.563709,-80.243074;32.472449,-80.751429;32.033468,-80.89296;32.034951,-81.117225;32.117604,-81.187141;32.464149,-81.41866;32.629392,-81.491954;33.009093,-81.753735;33.15005,-81.939737;33.344941,-81.926336;33.462937,-82.556765;33.945324,-82.741007;34.208862\\\\nFullPOLYGON,#0000-1199,-92.637898;40.590853,-95.765645;40.585208,-95.888907;40.731855,-95.809474;40.891228,-95.882342;41.059419,-95.841616;41.175469,-95.92725;41.197086,-95.927642;41.29844,-95.871141;41.29669,-95.957137;41.345902,-95.921192;41.455138,-96.095109;41.541089,-96.06479;41.794406,-96.161756;41.90182,-96.129505;41.971673,-96.272545;42.046202,-96.417786;42.351449,-96.386003;42.474496,-96.476461;42.490128,-96.639364;42.736435,-96.436472;43.120166,-96.58566;43.269352,-96.521662;43.385905,-96.599191;43.500456,-91.217706;43.50055,-91.20662;43.352524,-91.057918;43.255366,-91.179457;43.067427,-91.065059;42.751338,-90.706303;42.634169,-90.654027;42.478503,-90.443874;42.355218,-90.393151;42.227186,-90.167533;42.122475,-90.181973;41.80707,-90.461432;41.523533,-91.04589;41.414085,-91.113657;41.241401,-90.946625;41.096628,-90.952233;40.954047,-91.092993;40.821079,-91.123928;40.669152,-91.405241;40.554641,-91.384201;40.38643,-91.483153;40.382492,-91.729115;40.61364,-92.637898;40.590853\\\\nFullPOLYGON,#0000-1293,-81.056961;35.087014,-81.033196;35.149197,-82.390253;35.21554,-83.108305;35.000663,-84.321869;34.988408,-84.29024;35.225572,-84.046511;35.274182,-84.023307;35.411484,-83.880074;35.518745,-83.498335;35.56298,-83.159208;35.764892,-82.991904;35.774013,-82.919895;35.9288,-82.804997;35.927168,-82.637165;36.065805,-82.557874;35.953901,-82.352457;36.116609,-82.033141;36.120422,-81.855005;36.337259,-81.707438;36.335171,-81.677459;36.588157,-75.797497;36.550916,-75.40039;35.593512,-75.487685;35.184994,-76.02443;35.005364,-76.514867;34.535142,-76.6928;34.64295,-76.904628;34.632339,-77.516162;34.382443,-77.785555;34.125171,-77.943061;33.75377,-78.145353;33.862734,-78.499301;33.812852,-79.6753;34.804744,-80.797491;34.819752,-80.782042;34.935785,-80.93495;35.107409,-81.056961;35.087014\\\\nFullPOLYGON,#0000-1293,-99.850072;40.001619,-95.30829;39.999998,-95.124529;39.872857,-94.934907;39.893784,-94.875944;39.813294,-94.934573;39.772961,-94.862735;39.742195,-94.963958;39.740361,-95.110368;39.544562,-94.885026;39.389801,-94.831679;39.215938,-94.588413;39.149869,-94.617964;36.998905,-102.042089;36.993016,-102.051744;40.003078,-99.850072;40.001619\\\\nFullPOLYGON,#0000-e3d,-95.8974;40.000603,-102.051744;40.003078,-102.051717;41.002359,-104.053249;41.001406,-104.053028;43.000585,-98.49855;42.998559,-98.035071;42.764114,-97.845393;42.86772,-97.306677;42.867604,-96.806213;42.704154,-96.687667;42.653127,-96.625961;42.513578,-96.386003;42.474496,-96.348602;42.168027,-96.240713;41.999351,-96.130355;41.972863,-96.161756;41.90182,-96.065327;41.797173,-96.094437;41.539463,-95.922786;41.457306,-95.957137;41.345902,-95.871871;41.301813,-95.927975;41.200069,-95.842188;41.177421,-95.882342;41.059419,-95.809379;40.893279,-95.885349;40.721093,-95.749685;40.606842,-95.762857;40.528371,-95.655848;40.546609,-95.657328;40.310856,-95.478694;40.243661,-95.415106;40.040341,-95.30829;39.999998,-95.8974;40.000603\\\\nFullPOLYGON,#0000-23,-110.606801;40.996278,-111.046723;40.997959,-111.055199;45.001321,-104.057697;44.99738,-104.053249;41.001406,-110.606801;40.996278\\\\nFullPOLYGON,#0000-235,-109.050071;40.540437,-109.050076;41.000659,-102.051717;41.002359,-102.042089;36.993016,-109.045223;36.999084,-109.050071;40.540437\\\\nFullPOLYGON,#0000-1397,-96.453374;44.023773,-96.453097;45.300751,-96.692541;45.417338,-96.856834;45.605378,-96.58117;45.823015,-96.554411;46.084079,-96.599379;46.329984,-96.798175;46.629466,-96.753257;46.924563,-96.839548;47.006728,-96.851012;47.598508,-97.146505;48.14222,-97.175423;48.561957,-97.090313;48.684404,-97.232522;48.998833,-95.153711;48.998903,-95.153314;49.384358,-94.957439;49.370066,-94.816501;49.320997,-94.645387;48.744079,-93.84076;48.628537,-93.794455;48.515986,-93.25487;48.642746,-92.954876;48.631493,-92.634931;48.542873,-92.712562;48.463013,-92.456325;48.414204,-92.369945;48.220155,-92.269742;48.248241,-92.262477;48.354848,-92.055228;48.359212,-91.95829;48.233024,-91.559267;48.108275,-91.567248;48.043726,-91.266381;48.078714,-90.88548;48.245784,-90.751608;48.090968,-90.140863;48.112503,-89.89493;47.98721,-89.483385;48.013716,-89.957102;47.291103,-90.65466;47.309822,-92.020294;46.704041,-92.11659;46.74864,-92.291289;46.668137,-92.294033;46.074377,-92.707702;45.894901,-92.869193;45.717568,-92.883749;45.575483,-92.646505;45.440338,-92.762004;45.288213,-92.808242;44.751083,-92.548889;44.568252,-92.336114;44.554004,-91.966809;44.363986,-91.875158;44.200575,-91.432347;43.99669,-91.244135;43.774667,-91.217706;43.50055,-96.45326;43.50039,-96.453374;44.023773\\\\nFullPOLYGON,#0000-483,-92.674543;45.382868,-92.726082;45.541112,-92.883749;45.575483,-92.869193;45.717568,-92.707702;45.894901,-92.294033;46.074377,-92.291289;46.668137,-92.11659;46.74864,-92.020294;46.704041,-90.65466;47.309822,-90.500151;47.306329,-89.957102;47.291103,-90.393567;46.532563,-90.216811;46.501768,-90.120572;46.337039,-88.102461;45.921546,-88.130129;45.809708,-87.782226;45.683053,-87.888052;45.354697,-87.65735;45.368754,-87.74181;45.197469,-87.659952;45.107512,-87.442508;45.076434,-87.405694;45.201969,-87.101133;45.44423,-86.754236;45.44361,-86.249548;45.236125,-86.686288;44.881002,-87.013234;44.131905,-87.147166;43.379859,-87.019935;42.493498,-90.639927;42.508202,-90.709204;42.636078,-91.053733;42.738238,-91.144794;42.905997,-91.177932;43.128875,-91.057918;43.255366,-91.21477;43.365874,-91.244135;43.774667,-91.366642;43.937463,-91.875158;44.200575,-91.966809;44.363986,-92.336114;44.554004,-92.548889;44.568252,-92.808242;44.751083,-92.762004;45.288213,-92.674543;45.382868\\\\nFullPOLYGON,#0000-1725,-87.088338;42.235334,-87.019863;42.493763,-87.147166;43.379859,-87.013234;44.131905,-86.686288;44.881002,-86.249548;45.236125,-86.754236;45.44361,-87.101133;45.44423,-87.405694;45.201969,-87.442508;45.076434,-87.659952;45.107512,-87.74181;45.197469,-87.65735;45.368754,-87.888052;45.354697,-87.782226;45.683053,-88.130129;45.809708,-88.102461;45.921546,-90.120572;46.337039,-90.216811;46.501768,-90.395069;46.533768,-89.483385;48.013716,-89.33755;47.974261,-88.369862;48.306063,-87.625091;48.021109,-84.859335;46.888843,-84.762957;46.634324,-84.556962;46.460639,-84.128925;46.530119,-84.108089;46.241238,-83.955424;46.057188,-83.654647;46.122055,-83.433558;45.998895,-83.636867;45.773944,-83.483974;45.771937,-82.52064;45.335902,-82.122971;43.590827,-82.456027;42.925812,-82.521568;42.609849,-82.83025;42.373492,-83.08002;42.307172,-83.11246;41.95941,-83.415851;41.733794,-87.207774;41.760956,-87.088338;42.235334\\\\nFullPOLYGON,#0000-1211,-87.526587;41.16609,-87.523661;41.759907,-84.805885;41.760171,-84.820157;39.105489,-84.897336;39.05742,-84.830049;38.97256,-84.877276;38.90948,-84.785275;38.880425,-84.813238;38.785728,-85.173048;38.688022,-85.435409;38.729094,-85.42339;38.531845,-85.606954;38.438574,-85.679213;38.298009,-85.829216;38.276508,-85.925654;38.021784,-86.040821;37.958366,-86.264692;38.054853,-86.272847;38.140835,-86.361706;38.198698,-86.325551;38.135809,-86.461686;38.120502,-86.507089;37.929917,-86.638009;37.842772,-86.819804;37.999391,-87.034166;37.906265,-87.108333;37.782729,-87.58829;37.975512,-87.615583;37.831848,-87.89546;37.92799,-87.945991;37.773578,-88.077029;37.804993,-88.026053;37.833688,-88.09776;37.904026,-88.013451;37.893951,-88.042132;38.046345,-87.910924;38.162557,-87.988078;38.256717,-87.840984;38.280105,-87.495799;38.740699,-87.512187;38.954417,-87.658745;39.135997,-87.574558;39.218404,-87.620589;39.307046,-87.531646;39.347888,-87.526587;41.16609\\\\nFullPOLYGON,#0000-1275,-135.722551;59.729629,-135.477436;59.799626,-135.231148;59.697176,-135.027456;59.563692,-135.097985;59.427783,-134.961972;59.280376,-134.702383;59.247836,-134.481241;59.128071,-134.250526;58.858046,-133.840392;58.727991,-133.379907;58.427909,-133.461474;58.385522,-132.252187;57.215655,-132.371312;57.095229,-132.051044;57.051155,-132.125934;56.874698,-131.871725;56.804965,-131.835133;56.601849,-131.581221;56.613275,-130.466874;56.23979,-130.425579;56.140678,-130.10277;56.116692,-130.013198;55.916382,-130.150061;55.727099,-129.980058;55.28423,-130.339504;54.921376,-130.657754;54.761828,-130.615397;54.705491,-133.648903;54.632045,-133.790528;55.000581,-133.611481;55.176459,-133.775623;55.282245,-133.771598;55.394323,-133.907153;55.434003,-133.798246;55.633231,-133.887681;55.683639,-133.837978;55.793297,-133.995884;55.795201,-134.026978;55.892,-134.192027;55.693053,-134.602306;55.82251,-134.63848;55.889152,-134.494173;55.999638,-135.865793;56.996246,-136.454479;57.83078,-136.644621;57.883768,-136.650241;58.102629,-136.510268;58.153464,-136.515428;58.180583,-136.814412;58.18879,-137.0145;58.344311,-137.72061;58.570857,-138.291085;59.000384,-140.363094;59.653566,-140.936485;59.686564,-142.397798;59.98485,-144.144078;59.919452,-144.410509;59.746274,-144.67677;59.727395,-144.777798;59.829935,-144.539684;60.010149,-144.607277;60.078347,-145.976568;60.314652,-147.10194;60.081337,-147.334827;59.833874,-147.68724;59.74168,-147.956439;59.744131,-148.218506;59.87564,-148.980202;59.893721,-149.467504;59.733767,-149.6213;59.527516,-150.992194;59.180837,-153.02118;59.002452,-153.184086;58.905729,-153.186964;58.729345,-153.478776;58.641694,-153.461482;58.572608,-153.628003;58.508297,-153.810656;58.515386,-154.133654;58.100141,-154.390744;57.999301,-154.940742;57.975071,-155.300397;57.642894,-155.639486;57.602267,-155.66796;57.508352,-156.167196;57.345852,-156.358967;57.037181,-156.357314;56.822259,-158.237442;55.63499,-159.457991;55.628875,-159.538153;55.532006,-160.041162;55.448879,-159.737892;55.222287,-159.415307;55.315381,-159.410886;55.123496,-159.233423;55.098642,-159.25014;54.9981,-159.113256;54.93033,-159.226601;54.820679,-159.724503;55.017793,-159.816042;54.909532,-159.952976;54.929384,-160.258106;54.806889,-160.343393;54.930881,-160.244364;55.022575,-160.285318;55.124556,-160.130092;55.238675,-160.203577;55.335775,-160.519469;55.025123,-160.607676;55.098361,-160.899676;55.09535,-160.907905;55.420374,-161.239516;55.298458,-161.012925;55.262995,-161.417726;55.066821,-161.384881;54.973964,-161.672281;54.959246,-161.717277;54.895744,-161.576738;54.81421,-161.590314;54.749847,-162.056572;54.704532,-162.048021;54.631914,-162.240473;54.640528,-162.365035;54.507693,-162.479815;54.540932,-162.459877;54.666524,-162.554931;54.749344,-162.483085;54.792724,-162.59998;54.826812,-162.578894;54.908523,-162.642997;54.933322,-163.137298;54.829815,-162.968606;54.708702,-163.025633;54.611155,-164.122671;54.556119,-164.414987;54.368823,-164.776446;54.339084,-164.982813;54.444621,-165.036163;54.576598,-164.78278;54.691702,-164.521182;54.969124,-164.297882;54.95264,-163.141331;55.231961,-161.82575;55.942655,-161.211108;56.06741,-160.616035;56.067421,-160.225416;56.4336,-158.893401;56.945108,-158.062812;58.485518,-158.213032;58.542604,-158.772683;58.354928,-159.07885;58.339257,-159.544685;58.778419,-159.939081;58.717906,-160.089153;58.806303,-160.273449;58.788731,-160.343087;58.880542,-160.608715;58.843621,-160.793303;58.560097,-160.933436;58.496109,-161.140958;58.50334,-161.233978;58.643453,-161.704228;58.496911,-162.230286;58.598551,-162.259755;58.672675,-161.851201;58.807983,-161.902474;58.977602,-162.171006;59.247568,-161.871266;59.524791,-162.178329;59.814842,-162.698375;59.891816,-162.947224;59.768288,-163.993706;59.76376,-163.739949;59.668649,-164.0133;59.637759,-164.415696;59.884867,-164.449658;59.953338,-164.342832;60.002931,-164.597386;60.158238,-165.501449;60.52618,-165.464115;60.613737,-165.123369;60.736627,-165.30215;60.96644,-165.236558;61.05009,-165.66365;61.057809,-166.280754;61.562882,-166.22973;61.798331,-166.112514;61.873144,-166.096216;62.073453,-165.44887;62.391022,-165.338687;62.576038,-165.213091;62.614431,-165.247324;62.709894,-164.986703;62.76074,-165.033767;62.836606,-164.915884;62.902607,-164.880216;63.065445,-164.495673;63.251159,-164.051256;63.317355,-163.118702;63.101558,-162.437773;63.491994,-162.679831;63.491626,-162.826441;63.57636,-162.584319;63.691392,-162.304355;63.672025,-161.840405;63.493288,-161.285188;63.52337,-160.87698;63.796878,-161.04566;64.022467,-161.075402;64.206652,-161.413899;64.358587,-161.59084;64.335541,-162.313491;64.542789,-162.795802;64.275674,-163.814064;64.531186,-165.032205;64.387987,-166.07779;64.520459,-166.133535;64.438212,-166.271959;64.43778,-166.353875;64.506444,-166.281388;64.544956,-166.590163;64.738948,-166.522688;64.871103,-167.072981;65.138385,-166.94893;65.307909,-167.60639;65.385626,-168.152967;65.538889,-168.229243;65.650266,-168.077126;65.756089,-165.777739;66.397362,-164.463535;66.626301,-163.626215;66.624174,-162.832032;66.926813,-163.911385;67.104695,-164.002718;67.172554,-163.882534;67.214976,-164.175429;67.547599,-165.499453;68.018782,-165.855554;68.034825,-166.410026;68.250761,-166.979909;68.313634,-166.445418;68.472684,-166.328027;68.693065,-166.320586;68.915738,-164.044063;69.03327,-163.362881;69.330192,-163.165316;69.824277,-162.21567;70.299506,-161.874858;70.380652,-160.975017;70.40129,-159.712427;70.84683,-159.262601;70.917357,-157.880471;70.910028,-156.539093;71.433803,-155.096302;71.223556,-153.900424;70.930736,-152.98413;70.982633,-152.199518;70.898779,-151.444057;70.480083,-149.694987;70.625558,-148.491072;70.453945,-148.422239;70.527886,-147.935287;70.541067,-147.168428;70.346097,-145.979267;70.244111,-144.678778;70.014434,-143.951321;70.177699,-143.167885;70.193493,-141.002713;69.703632,-141.00184;60.306105,-140.53509;60.224224,-140.472292;60.31059,-139.989142;60.18524,-139.698361;60.340421,-139.086669;60.357654,-139.200346;60.090701,-138.702053;59.910245,-138.620931;59.770559,-137.604277;59.243057,-137.526424;58.906834,-136.826633;59.158389,-136.581521;59.164909,-136.466815;59.284252,-136.474324;59.464193,-136.234229;59.524731,-136.350622;59.599326,-135.722551;59.729629\\\\nFullPOLYGON,#0000-1dc9,-103.064657;32.959097,-103.041923;36.50035,-100.000406;36.499702,-100.000277;34.56045,-99.923211;34.574552,-99.69497;34.378333,-99.405286;34.372858,-99.368932;34.458461,-99.206905;34.338277,-99.189776;34.214357,-98.757037;34.124633,-98.599789;34.160571,-98.486328;34.062598,-98.365621;34.156993,-98.109462;34.154111,-98.088203;34.005481,-97.94573;33.989839,-97.967752;33.882214,-97.83432;33.857634,-97.671277;33.991553,-97.581078;33.899679,-97.46142;33.90523,-97.426799;33.818641,-97.210921;33.916064,-97.133915;33.718128,-96.981337;33.956378,-96.761587;33.824407,-96.667187;33.91694,-96.587934;33.894784,-96.629274;33.8455,-96.346859;33.686216,-96.002925;33.87359,-95.830406;33.834785,-95.594085;33.943057,-95.288926;33.87307,-95.216947;33.962674,-94.860687;33.741945,-94.448637;33.642766,-94.386768;33.545009,-94.057086;33.568003,-94.042566;31.993502,-93.823443;31.775098,-93.834918;31.586212,-93.711046;31.512161,-93.749476;31.46869,-93.639222;31.37202,-93.687278;31.306068,-93.532545;31.183314,-93.508039;31.031532,-93.740253;30.539569,-93.699516;30.058578,-93.927992;29.80964,-93.814351;29.596576,-94.033565;29.625002,-94.625192;29.397662,-94.65036;29.29189,-95.086398;29.06824,-95.329847;28.828699,-96.199375;28.442278,-96.938546;27.901199,-97.199816;27.500319,-97.319824;27.110023,-97.091121;25.97384,-97.284446;25.959156,-97.368517;25.915326,-97.3641;25.850034,-97.40525;25.837728,-97.662728;26.038078,-98.248737;26.072042,-98.445222;26.224571,-98.669149;26.23653,-98.806618;26.369109,-99.110854;26.426282,-99.268613;26.843213,-99.446123;27.023048,-99.441545;27.249915,-99.538035;27.316961,-99.512132;27.568288,-99.876761;27.797845,-99.931811;27.980968,-100.291397;28.275397,-100.333814;28.499252,-100.500354;28.66196,-100.6752;29.100741,-101.060151;29.458661,-101.254895;29.520341,-101.250383;29.624171,-101.305533;29.577925,-101.402319;29.77119,-102.073187;29.786524,-102.31594;29.879993,-102.387227;29.761392,-102.673997;29.744574,-102.884365;29.347946,-102.867474;29.223883,-102.995618;29.179291,-103.116814;28.984416,-103.286986;28.978172,-103.783626;29.265324,-104.037497;29.319707,-104.508462;29.632697,-104.683272;29.929107,-104.706255;30.234812,-104.859296;30.390253,-104.922677;30.603693,-105.399837;30.852077,-106.645584;31.895328,-106.618486;32.000495,-103.064422;32.000517,-103.064657;32.959097\\\\nFullPOLYGON,#0000-162b,-87.450024;30.514912,-87.396595;30.654467,-87.626679;30.847304,-87.598829;30.997455,-85.0019;31.000681,-84.864693;30.711542,-82.214677;30.568556,-82.161777;30.357111,-82.037218;30.371848,-82.045608;30.727552,-81.949638;30.827845,-81.347015;30.712444,-81.377674;30.54446,-81.186399;29.76008,-80.906836;29.144706,-80.522973;28.608238,-80.499773;28.077233,-79.975425;26.80025,-80.103573;25.640086,-80.043814;25.579119,-80.115671;25.541393,-80.140419;25.326535,-80.462886;24.955937,-81.047648;24.64024,-81.514615;24.564757,-81.697199;24.432314,-81.792362;24.495613,-81.920556;24.396308,-82.067171;24.523715,-82.192292;24.507681,-82.153526;24.634865,-82.026643;24.607666,-81.414294;24.880711,-81.06447;24.791116,-80.888021;24.859064,-80.979533;24.871703,-81.190177;25.133511,-81.205709;25.410751,-81.347231;25.636727,-81.573695;25.805044,-81.718139;25.793033,-81.918716;26.35196,-82.236453;26.4773,-82.338319;26.803318,-82.815377;27.535958,-82.907912;28.212812,-82.795276;28.299764,-82.727392;28.595587,-82.866599;29.045524,-83.14408;29.07284,-83.238679;29.30861,-83.444857;29.473985,-83.46451;29.613319,-83.71917;29.876157,-84.043431;30.039755,-84.251319;29.995969,-84.31123;29.857321,-84.512845;29.832042,-85.060668;29.536462,-85.381684;29.612853,-85.446289;29.901033,-86.18476;30.277966,-86.645861;30.346173,-87.518346;30.229506,-87.366591;30.436648,-87.450024;30.514912\\\\nFullPOLYGON,#0000d7,-77.119751;38.93435,-77.041018;38.995548,-76.909393;38.892852,-77.039006;38.791645,-77.119751;38.93435\\\\nFullPOLYGON,#0000-282d,-90.715977;39.191468,-91.368418;39.729738,-91.513079;40.178537,-91.372921;40.399108,-91.405241;40.554641,-91.123928;40.669152,-91.092993;40.821079,-90.96256;40.925831,-90.946625;41.096628,-91.113657;41.241401,-91.04589;41.414085,-90.461432;41.523533,-90.180954;41.809354,-90.162895;42.116718,-90.391108;42.225473,-90.640927;42.508302,-87.019935;42.493498,-87.207774;41.760956,-87.523661;41.759907,-87.531646;39.347888,-87.620589;39.307046,-87.574558;39.218404,-87.658745;39.135997,-87.512187;38.954417,-87.495799;38.740699,-87.840984;38.280105,-87.988078;38.256717,-87.910924;38.162557,-88.015916;38.099818,-87.956664;38.086202,-88.042132;38.046345,-88.013451;37.893951,-88.097892;37.901517,-88.028016;37.799188,-88.1601;37.659468,-88.06543;37.48876,-88.469621;37.397489,-88.459268;37.075248,-88.966634;37.230153,-89.173825;37.066308,-89.136093;36.980381,-89.25493;37.072014,-89.30829;37.068371,-89.278628;36.98867,-89.37961;37.040669,-89.51834;37.285497,-89.420542;37.388007,-89.514255;37.689923,-89.842638;37.905197,-89.947758;37.879847,-89.924597;37.959849,-90.360142;38.225659,-90.370819;38.333554,-90.109407;38.843548,-90.439938;38.967383,-90.623356;38.887149,-90.715977;39.191468\\\\nFullPOLYGON,#0000f5,145.006704;13.580889,144.765032;13.210179,144.60162;13.200357,144.588799;13.493798,144.75;13.551892,144.845293;13.705087,145.006704;13.580889\\\\nFullPOLYGON,#0000-113,-114.635458;34.876902,-114.646764;35.101868,-114.569258;35.183424,-114.754508;36.086171,-114.405624;36.146983,-114.243865;36.015266,-114.137112;36.038491,-114.043944;36.19335,-114.0506;37.000396,-109.045223;36.999084,-109.050044;31.332502,-111.074825;31.332239,-114.813613;32.494276,-114.70294;32.744793,-114.539224;32.749812,-114.468971;32.845155,-114.511343;33.023455,-114.706488;33.08816,-114.672088;33.258499,-114.731223;33.302433,-114.725282;33.405048,-114.524215;33.553068,-114.535478;33.934651,-114.415908;34.107636,-114.131211;34.26273,-114.386699;34.457911,-114.470477;34.711368,-114.635458;34.876902\\\\nFullPOLYGON,#0000-6c7,-119.656579;38.762436,-120.001014;38.999574,-119.999171;41.994836,-114.041723;41.99372,-114.043944;36.19335,-114.15139;36.023133,-114.243865;36.015266,-114.373745;36.143722,-114.753784;36.087807,-114.569258;35.183424,-114.633487;35.001857,-117.000895;36.847694,-119.656579;38.762436\\\\nFullPOLYGON,#0000-bbd,-117.320939;32.689847,-117.375872;33.075217,-117.520999;33.268872,-118.1259;33.697151,-118.319135;33.659547,-118.466962;33.725524,-118.447254;33.84876,-118.557356;33.987673,-118.824893;33.949042,-119.217993;34.062491,-119.334462;34.23653,-119.584795;34.36166,-120.462128;34.392479,-120.703968;34.548495,-120.689606;35.098828,-120.917792;35.187378,-120.933292;35.392748,-121.323512;35.624969,-121.727812;36.129009,-121.957666;36.285117,-122.076399;36.910199,-122.464117;37.177848,-122.588174;37.789362,-122.889291;37.974109,-123.067965;37.958669,-123.014817;38.149132,-123.164757;38.388337,-123.784676;38.893728,-123.761965;39.041091,-123.894936;39.348349,-123.834649;39.549194,-123.90097;39.780466,-124.411026;40.225275,-124.480543;40.428493,-124.197619;40.950529,-124.252474;41.134075,-124.160704;41.289293,-124.24242;41.3433,-124.133231;41.432311,-124.211706;41.681193,-124.438909;41.824504,-124.401242;41.885588,-124.285031;41.859487,-124.328835;41.998334,-119.999168;41.99454,-120.001014;38.999574,-117.500117;37.22038,-114.797341;35.134927,-114.633432;35.001773,-114.634382;34.87289,-114.470477;34.711368,-114.386699;34.457911,-114.138282;34.30323,-114.52868;33.947817,-114.524215;33.553068,-114.725282;33.405048,-114.706488;33.08816,-114.468605;32.971649,-114.539224;32.749812,-117.204917;32.528832,-117.320939;32.689847\\\\nFullPOLYGON,#0000f5,-64.84373;18.393713,-64.640437;18.363997,-64.664259;18.261271,-64.858035;18.179587,-64.946472;18.257223,-65.147723;18.259085,-65.080567;18.452807,-64.895024;18.463364,-64.84373;18.393713\\\\n\"],0,7]');",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-GWT-Module-Base",
"value": "{{URL}}/gwtmaps/",
"type": "text"
},
{
"key": "X-GWT-Permutation",
"value": "4A974DBE2FF476CCD6AEFA48C03077DD",
"type": "text"
},
{
"key": "Origin",
"value": "{{URL}}",
"type": "text"
},
{
"key": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36",
"type": "text"
},
{
"key": "Content-Type",
"value": "text/x-gwt-rpc; charset=UTF-8",
"type": "text"
},
{
"key": "Accept",
"value": "*/*",
"type": "text"
},
{
"key": "Referer",
"value": "{{URL}}/GWTMaps.html",
"type": "text"
},
{
"key": "Accept-Encoding",
"value": "gzip, deflate, br",
"type": "text"
},
{
"key": "Accept-Language",
"value": "en-US,en;q=0.9",
"type": "text"
},
{
"key": "Cookie",
"value": "JSESSIONID=12heme03gr6fmxt9byj4ctmir",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "7|0|6|http://127.0.0.1:8888/gwtmaps/|2340FA9687BBBA633B8360439C75EB4C|example.edu.client.service.ExampleService|runScript|java.lang.String/2004016611|# Program 8: get_all (returns geo-points list), for loop\r\n# This program marks all the states.\r\nall_states = get_all(\"STATE\", \"POLYGON\")\r\nfor i in range(len(all_states)):\r\n display_shape(all_states[i])\r\nairport_list = get_all_in_range(\"AIRPORT\",all_states)\r\ncount = get_count(airport_list)\r\ndisplay_Count (all_states, count)|1|2|3|4|1|5|6|"
},
"url": {
"raw": "{{URL}}/gwtmaps/exampleservice",
"host": [
"{{URL}}"
],
"path": [
"gwtmaps",
"exampleservice"
]
}
},
"response": []
},
{
"name": "LIMO Example 9",
"event": [
{
"listen": "test",
"script": {
"id": "be7a384b-9290-4d27-82ee-4d7ef8215252",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"pm.test(\"Body is correct\", function () {",
" pm.response.to.have.body(\"//OK[4,2,3,2,2,1,[\\\"java.util.ArrayList/4159755760\\\",\\\"java.lang.String/2004016611\\\",\\\"\\\",\\\"MARKER,-086.2839503,+39.9030256\\\\nMARKER,-089.1526108,+40.1028754\\\\nMARKER,-085.2929801,+37.5336844\\\\nMARKER,-082.7119975,+40.4149297\\\\nMARKER,-089.7119299,+44.6284840\\\\nMARKER,-092.4567826,+38.3507500\\\\n\\\"],0,7]\");",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-GWT-Module-Base",
"value": "{{URL}}/gwtmaps/",
"type": "text"
},
{
"key": "X-GWT-Permutation",
"value": "4A974DBE2FF476CCD6AEFA48C03077DD",
"type": "text"
},
{
"key": "Origin",
"value": "{{URL}}",
"type": "text"
},
{
"key": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36",
"type": "text"
},
{
"key": "Content-Type",
"value": "text/x-gwt-rpc; charset=UTF-8",
"type": "text"
},
{
"key": "Accept",
"value": "*/*",
"type": "text"
},
{
"key": "Referer",
"value": "{{URL}}/GWTMaps.html",
"type": "text"
},
{
"key": "Accept-Encoding",
"value": "gzip, deflate, br",
"type": "text"
},
{
"key": "Accept-Language",
"value": "en-US,en;q=0.9",
"type": "text"
},
{
"key": "Cookie",
"value": "JSESSIONID=12heme03gr6fmxt9byj4ctmir",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "7|0|6|http://127.0.0.1:8888/gwtmaps/|2340FA9687BBBA633B8360439C75EB4C|example.edu.client.service.ExampleService|runScript|java.lang.String/2004016611|# Program 9: get_all_in_range (returns geo-points list), for loop\r\n# Similar to Program 8 but instead of getting all States\r\n# it gets all states within 300 mile radius from a given address\r\naddress = read_address(\"1100 Hillcrest Rd\", \"West Lafayette\", \"IN\", \"47906\")\r\nmy_location = get_location(address)\r\nall_states = get_all_in_range(\"STATE\", my_location, 300)\r\nfor i in range(len(all_states)):\r\n display_marker(all_states[i])|1|2|3|4|1|5|6|"
},
"url": {
"raw": "{{URL}}/gwtmaps/exampleservice",
"host": [
"{{URL}}"
],
"path": [
"gwtmaps",
"exampleservice"
]
}
},
"response": []
},
{
"name": "LIMO Example 10",
"event": [
{
"listen": "test",
"script": {
"id": "be7a384b-9290-4d27-82ee-4d7ef8215252",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"pm.test(\"Body is correct\", function () {",
" pm.response.to.have.body(\"//OK[4,2,3,2,2,1,[\\\"java.util.ArrayList/4159755760\\\",\\\"java.lang.String/2004016611\\\",\\\"I65 crosses Indiana\\\\nI65 does not cross Iowa\\\\n\\\",\\\"POLYGON,-87.526587;41.16609,-87.523661;41.759907,-84.805885;41.760171,-84.820157;39.105489,-84.897336;39.05742,-84.830049;38.97256,-84.877276;38.90948,-84.785275;38.880425,-84.813238;38.785728,-85.173048;38.688022,-85.435409;38.729094,-85.42339;38.531845,-85.606954;38.438574,-85.679213;38.298009,-85.829216;38.276508,-85.925654;38.021784,-86.040821;37.958366,-86.264692;38.054853,-86.272847;38.140835,-86.361706;38.198698,-86.325551;38.135809,-86.461686;38.120502,-86.507089;37.929917,-86.638009;37.842772,-86.819804;37.999391,-87.034166;37.906265,-87.108333;37.782729,-87.58829;37.975512,-87.615583;37.831848,-87.89546;37.92799,-87.945991;37.773578,-88.077029;37.804993,-88.026053;37.833688,-88.09776;37.904026,-88.013451;37.893951,-88.042132;38.046345,-87.910924;38.162557,-87.988078;38.256717,-87.840984;38.280105,-87.495799;38.740699,-87.512187;38.954417,-87.658745;39.135997,-87.574558;39.218404,-87.620589;39.307046,-87.531646;39.347888,-87.526587;41.16609\\\\nPOLYGON,-92.637898;40.590853,-95.765645;40.585208,-95.888907;40.731855,-95.809474;40.891228,-95.882342;41.059419,-95.841616;41.175469,-95.92725;41.197086,-95.927642;41.29844,-95.871141;41.29669,-95.957137;41.345902,-95.921192;41.455138,-96.095109;41.541089,-96.06479;41.794406,-96.161756;41.90182,-96.129505;41.971673,-96.272545;42.046202,-96.417786;42.351449,-96.386003;42.474496,-96.476461;42.490128,-96.639364;42.736435,-96.436472;43.120166,-96.58566;43.269352,-96.521662;43.385905,-96.599191;43.500456,-91.217706;43.50055,-91.20662;43.352524,-91.057918;43.255366,-91.179457;43.067427,-91.065059;42.751338,-90.706303;42.634169,-90.654027;42.478503,-90.443874;42.355218,-90.393151;42.227186,-90.167533;42.122475,-90.181973;41.80707,-90.461432;41.523533,-91.04589;41.414085,-91.113657;41.241401,-90.946625;41.096628,-90.952233;40.954047,-91.092993;40.821079,-91.123928;40.669152,-91.405241;40.554641,-91.384201;40.38643,-91.483153;40.382492,-91.729115;40.61364,-92.637898;40.590853\\\\nPOLYLINE,-86.069841;37.081749,-86.068758;37.08228,-86.068497;37.082409,-86.06797;37.082667,-86.067706;37.082799,-86.067442;37.082935,-86.067181;37.083078,-86.066924;37.083227,-86.066672;37.083382,-86.066423;37.083543,-86.066178;37.083709,-86.065936;37.083881,-86.065698;37.084058,-86.065464;37.084243,-86.065236;37.08443,-86.065013;37.084623,-86.064797;37.08482,-86.064588;37.08502,-86.064386;37.085224,-86.064193;37.08543,-86.064008;37.085638,-86.063832;37.085848,-86.063666;37.086061,-86.063506;37.086274,-86.063352;37.086488,-86.063204;37.086702,-86.062777;37.087333,-86.062495;37.087744,-86.062356;37.087948,-86.061947;37.088557,-86.061538;37.089161,-86.061269;37.089566,-86.061227;37.089628,-86.061154;37.089736,-86.060993;37.089973,-86.060329;37.090958,-86.060309;37.090989,-86.059776;37.091776,-86.059478;37.092221,-86.059056;37.092847,-86.058914;37.093063,-86.058761;37.093283,-86.058611;37.093506,-86.05846;37.093726,-86.058308;37.093945,-86.058154;37.094162,-86.057997;37.094378,-86.05782;37.094619,-86.057673;37.094811,-86.057502;37.095027,-86.057401;37.095153,-86.057325;37.095247,-86.057149;37.095459,-86.056971;37.095668,-86.056793;37.095874,-86.056613;37.096077,-86.056432;37.096275,-86.05625;37.096471,-86.056065;37.096663,-86.055879;37.096852,-86.055691;37.097037,-86.055501;37.097219,-86.05531;37.097398,-86.055118;37.097575,-86.054924;37.09775,-86.054583;37.098046,-86.05453;37.098092,-86.05433;37.098261,-86.054127;37.09843,-86.05392;37.098598,-86.053707;37.098763,-86.05349;37.098929,-86.053361;37.099026,-86.052823;37.099431,-86.052597;37.099599,-86.051917;37.100101,-86.051687;37.100269,-86.051451;37.100438,-86.05098;37.100799,-86.050921;37.100843,-86.050782;37.100947,-86.0505;37.101153,-86.050258;37.101332,-86.05002;37.101511,-86.049298;37.102034,-86.049052;37.102204,-86.048793;37.102372,-86.048544;37.102536,-86.048031;37.102868,-86.047511;37.103193,-86.047251;37.103352,-86.046991;37.103508,-86.046731;37.103661,-86.046634;37.103717,-86.046471;37.103811,-86.046211;37.103957,-86.045693;37.104243,-86.045182;37.104523,-86.044677;37.104795,-86.044428;37.10493,-86.043941;37.105197,-86.043702;37.10533,-86.043231;37.105587,-86.043001;37.105715,-86.042775;37.105842,-86.042549;37.105967,-86.042321;37.106087,-86.041873;37.106329,-86.041652;37.10645,-86.041433;37.106572,-86.040998;37.106812,-86.040781;37.106933,-86.040564;37.107051,-86.039927;37.1074,-86.039513;37.10761,-86.039299;37.107729,-86.039089;37.107849,-86.038876;37.107967,-86.038024;37.108431,-86.037384;37.108777,-86.03717;37.108894,-86.036954;37.10901,-86.036744;37.109127,-86.036304;37.109361,-86.036091;37.109472,-86.035873;37.10959,-86.035654;37.109706,-86.035432;37.109821,-86.034761;37.110164,-86.034315;37.11039,-86.03416;37.110467,-86.034089;37.110503,-86.033862;37.110618,-86.033633;37.110732,-86.033173;37.110966,-86.031552;37.111783,-86.03108;37.112023,-86.030841;37.112142,-86.030113;37.112509,-86.029865;37.112635,-86.028593;37.113276,-86.028338;37.113406,-86.027078;37.11404,-86.026829;37.114164,-86.026332;37.114415,-86.026084;37.114542,-86.025343;37.114916,-86.025099;37.11504,-86.024856;37.115161,-86.022874;37.11616,-86.022362;37.116417,-86.021834;37.116684,-86.021017;37.117094,-86.020469;37.117368,-86.019928;37.117643,-86.018589;37.118316,-86.017784;37.118718,-86.017518;37.118853,-86.01725;37.118986,-86.01698;37.119114,-86.016705;37.119238,-86.016426;37.119356,-86.016145;37.11947,-86.01586;37.119577,-86.015575;37.119677,-86.015287;37.119772,-86.014997;37.119861,-86.014701;37.119946,-86.014402;37.120024,-86.0141;37.120096,-86.013798;37.120164,-86.013496;37.120225,-86.013193;37.12028,-86.013072;37.1203,-86.012893;37.12033,-86.012594;37.120375,-86.012296;37.120416,-86.011405;37.120533,-86.01022;37.120684,-86.009624;37.120761,-86.009031;37.120835,-86.008735;37.120871,-86.008441;37.120909,-86.007561;37.121017,-86.006686;37.12113,-86.0061;37.121204,-86.005807;37.121242,-86.005219;37.121316,-86.004044;37.121467,-86.002878;37.121614,-86.002017;37.121725,-86.001451;37.121801,-86.001173;37.121841,-86.000625;37.121931,-86.000352;37.121979,-86.00008;37.122028,-85.999809;37.12208,-85.999541;37.122133,-85.999276;37.122188,-85.999015;37.122244,-85.998758;37.122302,-85.998505;37.122361,-85.998257;37.12242,-85.99801;37.12248,-85.997552;37.122628,-85.997317;37.122693,-85.997081;37.122762,-85.996843;37.122834,-85.996602;37.122908,-85.996359;37.122986,-85.996112;37.123067,-85.995862;37.123151,-85.995349;37.123328,-85.995088;37.123423,-85.994823;37.123524,-85.994554;37.12363,-85.994285;37.123739,-85.994016;37.12385,-85.993748;37.123964,-85.993481;37.12408,-85.993216;37.1242,-85.992949;37.124324,-85.992681;37.12445,-85.992414;37.12458,-85.992147;37.124713,-85.991884;37.124849,-85.991621;37.124987,-85.991361;37.125129,-85.991102;37.125273,-85.990842;37.125423,-85.990586;37.125572,-85.990331;37.125725,-85.990079;37.125881,-85.98983;37.126039,-85.989583;37.126198,-85.989339;37.12636,-85.989097;37.126524,-85.988856;37.12669,-85.988675;37.126821,-85.988619;37.126861,-85.988384;37.127033,-85.988151;37.127207,-85.98792;37.127384,-85.987886;37.127412,-85.987786;37.127491,-85.987693;37.127565,-85.987469;37.127749,-85.986802;37.128306,-85.986357;37.128683,-85.986135;37.128873,-85.985685;37.129254,-85.985458;37.129448,-85.985229;37.129642,-85.984771;37.130033,-85.984309;37.130422,-85.983039;37.131499,-85.98229;37.132133,-85.982074;37.132317,-85.981431;37.132862,-85.979724;37.134303,-85.979699;37.134325,-85.979298;37.134669,-85.978651;37.135221,-85.978434;37.135397,-85.978228;37.135572,-85.978187;37.135606,-85.978003;37.135758,-85.977786;37.135941,-85.977283;37.136369,-85.976491;37.137042,-85.976275;37.137229,-85.97606;37.137419,-85.975846;37.137614,-85.975636;37.137813,-85.97543;37.138017,-85.975228;37.138223,-85.975031;37.138429,-85.97484;37.138638,-85.974655;37.138846,-85.974475;37.139056,-85.974302;37.139268,-85.974164;37.13944,-85.974131;37.139482,-85.973964;37.1397,-85.9738;37.139921,-85.973641;37.140145,-85.973487;37.140374,-85.973337;37.140604,-85.973192;37.140835,-85.973113;37.140965,-85.973052;37.141066,-85.972915;37.1413,-85.972667;37.141761,-85.972659;37.141775,-85.972539;37.142015,-85.972421;37.142257,-85.97231;37.142499,-85.972203;37.142742,-85.972102;37.142986,-85.972006;37.143231,-85.971915;37.143476,-85.971829;37.143723,-85.971748;37.143971,-85.971671;37.144221,-85.971598;37.144473,-85.971529;37.144725,-85.971461;37.144978,-85.971402;37.145234,-85.97136;37.145491,-85.971271;37.14623,-85.97119;37.147066,-85.97117;37.147592,-85.971161;37.147853,-85.971137;37.148888,-85.971116;37.149658,-85.97111;37.149916,-85.971093;37.150432,-85.971074;37.151205,-85.971069;37.151461,-85.971055;37.151975,-85.97103;37.153008,-85.971016;37.15352,-85.970998;37.154277,-85.970993;37.154527,-85.970979;37.155027,-85.970893;37.156183\\\\nPOLYLINE,-85.884094;37.49759,-85.88317;37.496594,-85.882932;37.496329,-85.882811;37.49619,-85.882653;37.496001,-85.882488;37.495801,-85.882327;37.495593,-85.882169;37.49538,-85.882012;37.495162,-85.881863;37.49494,-85.88172;37.494714,-85.881582;37.494487,-85.881449;37.494252,-85.881324;37.494015,-85.881209;37.493774,-85.881099;37.493528,-85.880996;37.493279,-85.8809;37.493029,-85.88081;37.492774,-85.880726;37.492517,-85.880651;37.492257,-85.880585;37.491994,-85.880529;37.491727,-85.880481;37.491459,-85.880441;37.491188,-85.880409;37.490915,-85.880385;37.490642,-85.880372;37.490365,-85.880367;37.490087,-85.88037;37.489811,-85.880383;37.489532,-85.880399;37.489252,-85.88042;37.488972,-85.880465;37.488414,-85.880502;37.48786,-85.880522;37.487588,-85.880558;37.487045,-85.880597;37.486505,-85.880618;37.486236,-85.880718;37.484872,-85.880739;37.484598,-85.880777;37.484051,-85.880798;37.483777,-85.880856;37.482962,-85.880877;37.482693,-85.880896;37.482424,-85.880933;37.481891,-85.880973;37.481362,-85.880991;37.481102,-85.88105;37.480324,-85.881067;37.480064,-85.881105;37.479546,-85.881146;37.479025,-85.881183;37.4785,-85.8812;37.478235,-85.881237;37.477699,-85.881255;37.477408,-85.881274;37.477154,-85.881291;37.476879,-85.88131;37.476602,-85.881395;37.475484,-85.881413;37.475206,-85.881434;37.474929,-85.881528;37.473565,-85.881568;37.473021,-85.881611;37.472475,-85.88165;37.471934,-85.881686;37.471396,-85.881743;37.470602,-85.881764;37.470339,-85.881802;37.469819,-85.881819;37.469561,-85.881857;37.469047,-85.881873;37.468792,-85.881909;37.468287,-85.881925;37.468038,-85.881943;37.46779,-85.882001;37.467046,-85.882055;37.466302,-85.882071;37.466054,-85.882106;37.465556,-85.882121;37.465306,-85.882141;37.465056,-85.882159;37.464803,-85.882181;37.464551,-85.882201;37.464298,-85.882218;37.464044,-85.882254;37.463535,-85.882274;37.46328,-85.882295;37.462988,-85.882309;37.462768,-85.882327;37.462511,-85.882366;37.461997,-85.882407;37.461486,-85.882424;37.461234,-85.882442;37.460983,-85.882474;37.460482,-85.882492;37.460233,-85.882531;37.459734,-85.882598;37.458799,-85.882604;37.458738,-85.882622;37.458489,-85.882625;37.458407,-85.882632;37.458243,-85.882693;37.457366,-85.882739;37.456751,-85.882796;37.456011,-85.882812;37.455783,-85.882832;37.455518,-85.882881;37.454781,-85.882911;37.45429,-85.882928;37.454043,-85.882948;37.453797,-85.882949;37.453745,-85.882968;37.45355,-85.88299;37.453301,-85.883031;37.452805,-85.883053;37.452557,-85.883071;37.452311,-85.883112;37.451821,-85.883131;37.451578,-85.883191;37.450851,-85.883266;37.449888,-85.883347;37.448933,-85.883365;37.448697,-85.883387;37.448458,-85.883464;37.447519,-85.883497;37.447057,-85.883552;37.446376,-85.883572;37.446152,-85.883641;37.445266,-85.883733;37.444184,-85.883748;37.443972,-85.883799;37.443353,-85.88383;37.442956,-85.883862;37.442566,-85.883889;37.442187,-85.883912;37.441814,-85.883926;37.441631,-85.883946;37.441278,-85.883958;37.44095,-85.883965;37.440647,-85.883977;37.439978,-85.883941;37.439908,-85.883852;37.439734\\\\nPOLYLINE,-85.884167;37.497178,-85.883343;37.496308,-85.883162;37.496116,-85.883;37.495934,-85.882844;37.495748,-85.882691;37.495562,-85.882545;37.495375,-85.88227;37.494985,-85.88214;37.49479,-85.882014;37.494593,-85.881894;37.494394,-85.88178;37.494192,-85.881671;37.493988,-85.881568;37.493781,-85.881473;37.493574,-85.881381;37.493366,-85.881294;37.493157,-85.881216;37.492944,-85.881141;37.492733,-85.881073;37.492519,-85.88101;37.492305,-85.880952;37.492089,-85.880902;37.491873,-85.880857;37.491654,-85.880816;37.491436,-85.880783;37.491213,-85.880754;37.49099,-85.880731;37.490767,-85.880716;37.490541,-85.880706;37.490315,-85.880701;37.490087,-85.880704;37.48986,-85.880713;37.489632,-85.880739;37.489174,-85.880852;37.487566,-85.880871;37.487335,-85.880888;37.487105,-85.880908;37.486874,-85.88094;37.48641,-85.880995;37.485709,-85.881044;37.484998,-85.881075;37.484524,-85.881131;37.483809,-85.8812;37.48285,-85.881232;37.482364,-85.881252;37.48212,-85.881303;37.481378,-85.881339;37.480877,-85.881358;37.480628,-85.881391;37.480125,-85.881409;37.479872,-85.881429;37.479618,-85.881465;37.479102,-85.881503;37.478581,-85.88152;37.478319,-85.881539;37.478056,-85.881575;37.477527,-85.881614;37.476993,-85.881631;37.476724,-85.881693;37.475918,-85.88171;37.475652,-85.88175;37.475115,-85.881846;37.473777,-85.881864;37.473508,-85.881904;37.472976,-85.881941;37.472452,-85.881994;37.471669,-85.882009;37.471469,-85.882014;37.47141,-85.882031;37.47115,-85.882181;37.469072,-85.882252;37.468036,-85.882292;37.46752,-85.882323;37.467004,-85.882433;37.465471,-85.882472;37.464961,-85.882544;37.463946,-85.882576;37.463479,-85.882579;37.463436,-85.882611;37.462991,-85.882631;37.462674,-85.88265;37.462424,-85.882702;37.461656,-85.88274;37.461142,-85.88282;37.460109,-85.882836;37.45985,-85.882892;37.459074,-85.882926;37.458556,-85.882938;37.45842,-85.882948;37.458293,-85.882975;37.45803,-85.883044;37.457003,-85.883082;37.456495,-85.883189;37.455004,-85.883275;37.453771,-85.883295;37.453522,-85.883359;37.452538,-85.883505;37.450396,-85.883554;37.449687,-85.883674;37.447842,-85.883737;37.44697,-85.883755;37.446754,-85.883769;37.446535,-85.883801;37.446092,-85.883815;37.445867,-85.883893;37.444691,-85.883946;37.443962,-85.883979;37.443472,-85.883994;37.443227,-85.884007;37.442978,-85.884063;37.442252,-85.884091;37.43999,-85.884117;37.43979,-85.884121;37.439752\\\\nPOLYLINE,-86.108815;37.06014,-86.109068;37.060006,-86.109968;37.059535,-86.110266;37.059376,-86.110563;37.059216,-86.110863;37.059058,-86.111762;37.058591,-86.11197;37.05849,-86.112164;37.058396,-86.112353;37.058304,-86.112616;37.058173,-86.112684;37.058139,-86.112992;37.058002,-86.113307;37.05787,-86.113626;37.057742,-86.113948;37.05762,-86.114273;37.057503,-86.114601;37.057391,-86.114762;37.057344,-86.115117;37.057241\\\\nPOLYLINE,-86.108442;37.060066,-86.108532;37.060025,-86.109069;37.059743,-86.109601;37.059461,-86.110136;37.059176,-86.110401;37.059033,-86.110693;37.05889,-86.111264;37.058605,-86.111533;37.058469,-86.111686;37.058387,-86.11171;37.058375,-86.11189;37.058277,-86.112108;37.058158,-86.112396;37.058019,-86.112687;37.057886,-86.112981;37.057758,-86.113276;37.057634,-86.113573;37.057516,-86.113872;37.057404,-86.114171;37.057296,-86.114474;37.057194,-86.11478;37.057097,-86.115227;37.056977\\\\nPOLYLINE,-86.069886;37.081463,-86.06943;37.081698,-86.068315;37.082243,-86.068039;37.082379,-86.067765;37.082516,-86.067493;37.082655,-86.067225;37.082796,-86.066961;37.082942,-86.066704;37.083092,-86.066453;37.083247,-86.066207;37.083406,-86.065968;37.083569,-86.065732;37.083738,-86.065501;37.083911,-86.065276;37.084089,-86.065055;37.084272,-86.064839;37.084458,-86.064628;37.084649,-86.064423;37.084845,-86.064225;37.085043,-86.064034;37.085246,-86.063848;37.08545,-86.063669;37.085657,-86.063496;37.085868,-86.063331;37.086082,-86.063173;37.086299,-86.06302;37.086519,-86.062717;37.086962,-86.062414;37.087408,-86.061959;37.088085,-86.060851;37.089727,-86.060841;37.089742,-86.06024;37.090636,-86.060065;37.090898,-86.059444;37.091816,-86.059249;37.092103,-86.05893;37.092584,-86.058772;37.092819,-86.058301;37.093512,-86.058143;37.093742,-86.057984;37.093971,-86.057821;37.094198,-86.057655;37.094423,-86.057485;37.094644,-86.05742;37.094726,-86.057314;37.094861,-86.057143;37.095074,-86.056972;37.095282,-86.0568;37.095486,-86.056625;37.095687,-86.056448;37.095886,-86.056267;37.096083,-86.056085;37.096278,-86.0559;37.096472,-86.055712;37.096665,-86.05552;37.096856,-86.055325;37.097046,-86.055126;37.097236,-86.054923;37.097425,-86.054713;37.097612,-86.054443;37.097847,-86.054281;37.097985,-86.054059;37.098172,-86.053833;37.098359,-86.053603;37.098545,-86.053368;37.098729,-86.053128;37.098912,-86.052791;37.099163,-86.051898;37.099826,-86.051403;37.100192,-86.050431;37.100914,-86.050408;37.100931,-86.049742;37.101424,-86.049503;37.101599,-86.049259;37.101772,-86.049013;37.101943,-86.048764;37.102112,-86.048515;37.102279,-86.048013;37.102608,-86.047761;37.102769,-86.047509;37.102928,-86.047254;37.103085,-86.046998;37.10324,-86.046739;37.103395,-86.046478;37.103547,-86.046216;37.103699,-86.045954;37.103847,-86.045691;37.103993,-86.045428;37.104136,-86.044896;37.10442,-86.044635;37.104558,-86.044106;37.104827,-86.043578;37.105093,-86.04339;37.105189,-86.043055;37.105357,-86.042794;37.105493,-86.042534;37.105635,-86.041749;37.106051,-86.041486;37.106181,-86.040952;37.106443,-86.040681;37.106575,-86.040137;37.106844,-86.039319;37.107252,-86.038492;37.107667,-86.037647;37.108088,-86.037075;37.108371,-86.036788;37.108515,-86.036215;37.108807,-86.035643;37.109095,-86.035073;37.109379,-86.03479;37.109521,-86.034508;37.109664,-86.033108;37.110366,-86.032542;37.110647,-86.032261;37.11079,-86.031973;37.110934,-86.031399;37.111226,-86.030824;37.111515,-86.030541;37.111659,-86.02943;37.112215,-86.028887;37.112488,-86.028349;37.112762,-86.02808;37.112898,-86.026996;37.113442,-86.026724;37.11358,-86.026175;37.113856,-86.025949;37.113972,-86.025622;37.114134,-86.02507;37.114412,-86.024517;37.114692,-86.023685;37.115111,-86.022313;37.115804,-86.021766;37.116078,-86.021493;37.116217,-86.021219;37.116355,-86.020397;37.116772,-86.019847;37.117049,-86.0193;37.117323,-86.019029;37.11746,-86.018218;37.117866,-86.017673;37.118141,-86.017399;37.118278,-86.016847;37.118556,-86.016291;37.118834,-86.016013;37.11897,-86.015733;37.119101,-86.015451;37.119226,-86.015165;37.119345,-86.014876;37.119457,-86.014583;37.119563,-86.014289;37.119663,-86.013993;37.119757,-86.013695;37.119845,-86.013394;37.119928,-86.01309;37.120003,-86.012782;37.120074,-86.012472;37.120139,-86.01216;37.120198,-86.011845;37.120251,-86.011528;37.120298,-86.01121;37.12034,-86.009936;37.120501,-86.009617;37.120542,-86.009297;37.120582,-86.008976;37.120624,-86.008331;37.120713,-86.008007;37.120749,-86.007683;37.120788,-86.006378;37.120952,-86.005089;37.121117,-86.003797;37.12128,-86.002821;37.121402,-86.002174;37.121487,-86.001533;37.121573,-86.001216;37.12162,-86.0009;37.121668,-86.000586;37.121719,-86.000274;37.121775,-85.999964;37.121835,-85.999656;37.121896,-85.99935;37.12196,-85.999045;37.122027,-85.998742;37.122096,-85.998441;37.122168,-85.998139;37.122243,-85.997837;37.12232,-85.997536;37.122401,-85.997234;37.122486,-85.996931;37.122574,-85.996628;37.122667,-85.996323;37.122762,-85.996018;37.122861,-85.995712;37.122964,-85.995407;37.12307,-85.995103;37.12318,-85.994801;37.123293,-85.994501;37.123409,-85.994203;37.123529,-85.993905;37.123651,-85.99361;37.123775,-85.993318;37.123903,-85.993028;37.124035,-85.99274;37.124169,-85.992455;37.124306,-85.992172;37.124444,-85.991891;37.124586,-85.991613;37.124729,-85.991338;37.124876,-85.991066;37.125026,-85.990797;37.125179,-85.990531;37.125334,-85.990268;37.125491,-85.990006;37.125651,-85.989749;37.125811,-85.989494;37.125974,-85.989244;37.126138,-85.988997;37.126304,-85.988752;37.126474,-85.98851;37.126647,-85.988428;37.126707,-85.98827;37.126822,-85.988019;37.127009,-85.987794;37.12718,-85.98756;37.127362,-85.987388;37.127499,-85.987328;37.127547,-85.9871;37.127735,-85.986873;37.127924,-85.985756;37.128868,-85.985097;37.129427,-85.984446;37.129983,-85.984009;37.130353,-85.983571;37.130726,-85.982415;37.131706,-85.982237;37.131858,-85.980637;37.133208,-85.980171;37.133605,-85.978997;37.134598,-85.978764;37.134796,-85.978303;37.13519,-85.977901;37.13553,-85.976933;37.136351,-85.97648;37.136737,-85.976254;37.136931,-85.976029;37.137129,-85.975805;37.13733,-85.975584;37.137534,-85.975367;37.137742,-85.975153;37.137954,-85.974946;37.138169,-85.974744;37.138387,-85.974549;37.138605,-85.974359;37.138822,-85.974175;37.139039,-85.973997;37.139257,-85.973825;37.139476,-85.973658;37.139696,-85.973526;37.139879,-85.973497;37.139917,-85.973341;37.14014,-85.973189;37.140364,-85.973042;37.140589,-85.9729;37.140817,-85.972762;37.141048,-85.972628;37.14128,-85.972499;37.141516,-85.972343;37.141815,-85.972252;37.141996,-85.972135;37.142241,-85.972022;37.142488,-85.971914;37.142738,-85.971811;37.142992,-85.971713;37.143247,-85.971621;37.143505,-85.971533;37.143764,-85.971451;37.144025,-85.971375;37.144286,-85.971305;37.144549,-85.97124;37.144812,-85.971181;37.145074,-85.971127;37.145335,-85.97108;37.145596,-85.971038;37.145855,-85.971002;37.146114,-85.970971;37.146372,-85.970945;37.146629,-85.970924;37.146885,-85.970908;37.147141,-85.970895;37.147398,-85.970887;37.147654,-85.970881;37.147912,-85.970873;37.14817,-85.970854;37.148948,-85.970843;37.149473,-85.970821;37.15027,-85.970778;37.152114,-85.970771;37.152379,-85.970762;37.152643,-85.970722;37.154223,-85.970706;37.154746,-85.970685;37.155527,-85.970664;37.156051,-85.970656;37.156173\\\\nPOLYLINE,-85.700857;38.0863,-85.700849;38.086188,-85.700826;38.085839,-85.700612;38.082609,-85.700546;38.081748,-85.699962;38.074157,-85.699896;38.0733,-85.699798;38.07197,-85.699692;38.070604,-85.699582;38.069184,-85.699523;38.068418,-85.699454;38.067533,-85.699155;38.063743,-85.699124;38.063291,-85.699118;38.063211,-85.699054;38.062293,-85.698961;38.061077,-85.698815;38.059176,-85.698716;38.057895,-85.698581;38.056131,-85.698248;38.051784,-85.698197;38.051116,-85.698094;38.049716,-85.6979;38.04832,-85.697563;38.046943,-85.696937;38.044702,-85.696789;38.04417,-85.696551;38.043035,-85.696499;38.042786,-85.696375;38.041488,-85.696365;38.041378,-85.696358;38.040493,-85.696357;38.040432,-85.696356;38.040184,-85.696375;38.032939,-85.696378;38.031056,-85.696381;38.028714,-85.696382;38.02851,-85.69639;38.026894,-85.696394;38.025433,-85.696397;38.024302,-85.696403;38.022131,-85.696414;38.018194,-85.696428;38.014724,-85.696431;38.014035,-85.696453;38.013814,-85.696577;38.012572,-85.696924;38.011125,-85.697498;38.009715,-85.697989;38.008862,-85.698027;38.008796,-85.698279;38.008357,-85.698341;38.008263,-85.699159;38.007015,-85.704205;37.999382,-85.704505;37.998887,-85.704641;37.998616,-85.704708;37.998482,-85.704868;37.998122,-85.704961;37.997896,-85.705108;37.997446,-85.705214;37.996765,-85.705255;37.995941,-85.705155;37.995304,-85.70509;37.994987,-85.704943;37.994448,-85.704368;37.993183,-85.704321;37.993078,-85.704273;37.992972,-85.703644;37.991589,-85.701561;37.987149,-85.70089;37.985715,-85.7008;37.985524,-85.700707;37.985324,-85.699227;37.982162,-85.699217;37.982146,-85.697549;37.978567,-85.696972;37.977261,-85.696443;37.975834,-85.695995;37.974401,-85.695711;37.973262,-85.695636;37.97296,-85.69552;37.97234,-85.695362;37.971492,-85.695024;37.96917,-85.694973;37.968816,-85.694707;37.966983,-85.694262;37.963924,-85.694118;37.963118,-85.694052;37.962741,-85.693948;37.961981,-85.693614;37.960433,-85.69332;37.959547,-85.692533;37.958257,-85.691579;37.957064,-85.691055;37.956458,-85.690588;37.955832,-85.690235;37.955266,-85.68988;37.954589,-85.689589;37.953931,-85.689387;37.953313,-85.689099;37.951929,-85.689048;37.951317,-85.688979;37.950498,-85.688288;37.938917,-85.68802;37.934461,-85.68791;37.932628,-85.687662;37.928493,-85.687508;37.925874,-85.687455;37.92496,-85.687277;37.922067,-85.687235;37.921386,-85.687066;37.918465,-85.687004;37.917008,-85.687097;37.915564,-85.687358;37.914134,-85.687777;37.91273,-85.688041;37.912049,-85.688518;37.911058,-85.688854;37.91041,-85.689272;37.909748,-85.689422;37.909531,-85.689723;37.909099,-85.690607;37.907964,-85.690799;37.907721,-85.691242;37.907161,-85.696733;37.900175,-85.697796;37.898796,-85.698;37.898517,-85.698187;37.898214,-85.698345;37.897985,-85.698598;37.897513,-85.698962;37.896684,-85.699152;37.896135,-85.699304;37.895618,-85.699405;37.895243,-85.69949;37.894688,-85.699549;37.89345,-85.69956;37.893225,-85.699412;37.891746,-85.699066;37.888833,-85.698916;37.887392,-85.698901;37.886692,-85.698965;37.88596,-85.699083;37.885267,-85.699329;37.884571,-85.699656;37.883794,-85.700267;37.882786,-85.701296;37.88094,-85.701552;37.880426,-85.701712;37.880002,-85.701949;37.879318,-85.702231;37.877941,-85.70245;37.876542,-85.70276;37.87483,-85.702962;37.87371,-85.703338;37.872297,-85.703484;37.871832,-85.703777;37.870894,-85.703945;37.870368,-85.704637;37.86821,-85.707132;37.860417,-85.707758;37.858457,-85.707817;37.858271,-85.708278;37.856939,-85.708463;37.856564,-85.708504;37.856481,-85.708908;37.855663,-85.709194;37.85518,-85.709748;37.854455,-85.710209;37.853947,-85.710767;37.853332,-85.710987;37.853107,-85.711843;37.852233,-85.712899;37.85111,-85.713339;37.850564,-85.713753;37.84996,-85.71407;37.849396,-85.71409;37.849354,-85.714477;37.848549,-85.71492;37.847159,-85.715196;37.845743,-85.715348;37.844933,-85.715392;37.844698,-85.715554;37.843831,-85.717052;37.83584,-85.717286;37.834614,-85.717618;37.833283,-85.718088;37.831982,-85.718688;37.830734,-85.719417;37.829542,-85.720275;37.82839,-85.721015;37.827563,-85.721253;37.827297,-85.721284;37.827268,-85.722334;37.826285,-85.723521;37.825344,-85.724791;37.824491,-85.726141;37.823701,-85.727473;37.822939,-85.728885;37.822131,-85.730234;37.821297,-85.731474;37.820384,-85.7326;37.819398,-85.73366;37.818357,-85.738698;37.813386,-85.738869;37.813224\\\\nPOLYLINE,-85.701198;38.086329,-85.701196;38.086297,-85.701158;38.0855,-85.701069;38.084214,-85.700028;38.070601,-85.699884;38.068714,-85.699858;38.068375,-85.699786;38.067429,-85.699524;38.064012,-85.699458;38.063227,-85.699452;38.063148,-85.699412;38.062674,-85.699344;38.061736,-85.699315;38.061331,-85.699178;38.059548,-85.698845;38.055228,-85.698696;38.05321,-85.698485;38.050455,-85.698358;38.049052,-85.698097;38.047647,-85.69772;38.046265,-85.697329;38.044874,-85.697058;38.043832,-85.69697;38.043492,-85.696754;38.042105,-85.696695;38.04075,-85.696695;38.040439,-85.696696;38.040289,-85.696717;38.031127,-85.696727;38.027019,-85.696731;38.025305,-85.696739;38.021944,-85.696748;38.018058,-85.696754;38.015193,-85.696786;38.014671,-85.696812;38.01425,-85.696828;38.013979,-85.696919;38.012498,-85.697248;38.011186,-85.697762;38.009897,-85.698333;38.008864,-85.698361;38.008813,-85.69844;38.008671,-85.698646;38.008357,-85.699223;38.007478,-85.700002;38.00631,-85.703014;38.001749,-85.703862;38.000467,-85.704617;37.999306,-85.704886;37.998866,-85.704976;37.998685,-85.705026;37.998585,-85.705051;37.998522,-85.705218;37.998107,-85.705322;37.997777,-85.705415;37.997397,-85.705509;37.996833,-85.705523;37.996238,-85.705469;37.995533,-85.705326;37.994911,-85.705104;37.994275,-85.705039;37.994134,-85.704527;37.993023,-85.70448;37.992921,-85.704449;37.992852,-85.703973;37.991819,-85.703397;37.990588,-85.701338;37.986194,-85.701083;37.985649,-85.700986;37.985442,-85.700895;37.985247,-85.699759;37.982823,-85.698035;37.979139,-85.697774;37.978561,-85.697473;37.977894,-85.69698;37.976621,-85.696547;37.975323,-85.696194;37.974029,-85.695907;37.972718,-85.695774;37.971917,-85.695687;37.971385,-85.695309;37.968797,-85.695042;37.966965,-85.694485;37.963091,-85.694339;37.962079,-85.694256;37.961537,-85.6941;37.960771,-85.693912;37.960148,-85.693654;37.959494,-85.692932;37.958281,-85.692019;37.957112,-85.691408;37.956383,-85.69107;37.955926,-85.690771;37.955489,-85.690293;37.954626,-85.689943;37.953937,-85.689738;37.953261,-85.689534;37.952331,-85.689426;37.951839,-85.689376;37.951209,-85.689313;37.950408,-85.688619;37.938905,-85.68856;37.937986,-85.688354;37.934452,-85.68825;37.932678,-85.688162;37.93122,-85.68784;37.925858,-85.687791;37.925036,-85.687763;37.924563,-85.687613;37.922052,-85.68756;37.921173,-85.687389;37.918369,-85.687337;37.916976,-85.687428;37.915593,-85.687675;37.914225,-85.688078;37.912863,-85.688637;37.911531,-85.689339;37.910248,-85.690817;37.908245,-85.691195;37.907733,-85.691482;37.907363,-85.692153;37.906499,-85.696059;37.901532,-85.697178;37.900108,-85.697999;37.899051,-85.698811;37.897784,-85.699396;37.896453,-85.699762;37.895086,-85.69989;37.893686,-85.699884;37.893586,-85.699802;37.892284,-85.69931;37.888042,-85.699239;37.886617,-85.699457;37.885208,-85.700001;37.883863,-85.700735;37.88258,-85.701475;37.88131,-85.702074;37.879997,-85.702455;37.8786,-85.702694;37.87713,-85.702769;37.876636,-85.702919;37.875655,-85.703105;37.874657,-85.703194;37.874178,-85.703552;37.872735,-85.70378;37.871978,-85.703987;37.871288,-85.704909;37.868422,-85.707449;37.860488,-85.7081;37.858449,-85.708309;37.857799,-85.708551;37.857082,-85.708777;37.856602,-85.708907;37.856327,-85.709134;37.855887,-85.709745;37.854957,-85.710623;37.853929,-85.710794;37.853729,-85.711928;37.852567,-85.713044;37.851396,-85.713991;37.850144,-85.714251;37.84966,-85.714702;37.848822,-85.715176;37.847465,-85.715462;37.846083,-85.715707;37.844785,-85.715753;37.844539,-85.715832;37.844121,-85.717577;37.834836,-85.717935;37.833354,-85.718063;37.83301,-85.718467;37.83192,-85.71917;37.830533,-85.720027;37.829218,-85.721023;37.827988,-85.721328;37.82768,-85.721345;37.827666,-85.721649;37.827358,-85.722166;37.826835,-85.723455;37.825759,-85.724865;37.824785,-85.725246;37.824562,-85.726349;37.823914,-85.727502;37.823254,-85.729312;37.822204,-85.730696;37.821275,-85.731951;37.820266,-85.733093;37.819171,-85.735394;37.816907,-85.738399;37.813939,-85.738847;37.813497,-85.738886;37.81347,-85.739036;37.813363\\\\nPOLYLINE,-86.571442;36.638869,-86.571239;36.639527,-86.57104;36.64017,-86.570954;36.640442,-86.570847;36.640787,-86.570703;36.64125,-86.570449;36.642053,-86.570203;36.642851,-86.569872;36.643914,-86.569534;36.644981,-86.569368;36.645515,-86.568866;36.647113,-86.568613;36.647908,-86.568527;36.648191,-86.568452;36.648438,-86.568367;36.648701,-86.56828;36.648963,-86.568187;36.649224,-86.568089;36.649484,-86.567988;36.649742,-86.567883;36.65,-86.567775;36.650257,-86.567662;36.650512,-86.567545;36.650767,-86.567424;36.65102,-86.567298;36.651273,-86.567168;36.651525,-86.567034;36.651776,-86.566896;36.652026,-86.566753;36.652274,-86.566607;36.652521,-86.566456;36.652765,-86.566302;36.653007,-86.565985;36.653486,-86.565821;36.653722,-86.565653;36.653957,-86.565482;36.65419,-86.565306;36.654419,-86.565126;36.654647,-86.564761;36.6551,-86.563841;36.656226,-86.562356;36.658025,-86.561429;36.659156,-86.560877;36.659824,-86.560345;36.660474,-86.560151;36.660711,-86.560062;36.660819,-86.55889;36.662242,-86.557986;36.663333,-86.557267;36.664216,-86.55683;36.664743,-86.556228;36.665468,-86.556174;36.665533,-86.555806;36.665977,-86.554898;36.667084,-86.554531;36.667527,-86.554349;36.667751,-86.553799;36.668424,-86.552853;36.669571,-86.55217;36.670404,-86.551955;36.670662,-86.551393;36.671342,-86.551284;36.671474,-86.550412;36.672539,-86.550237;36.67275,-86.549026;36.674219,-86.548383;36.675007,-86.548171;36.675262,-86.547824;36.675681,-86.546606;36.677161,-86.546091;36.677791,-86.545721;36.678244,-86.545435;36.678585,-86.545356;36.678679,-86.545025;36.679081,-86.542711;36.681889,-86.541951;36.682809,-86.541187;36.683743,-86.541163;36.683771,-86.540799;36.684212,-86.540026;36.685151,-86.539831;36.685384,-86.539254;36.686086,-86.539064;36.686321,-86.538873;36.686554,-86.538103;36.687486,-86.537912;36.68772,-86.537723;36.687955,-86.537538;36.688193,-86.537355;36.688432,-86.537174;36.688673,-86.536996;36.688915,-86.536648;36.689403,-86.536477;36.689649,-86.53631;36.689895,-86.536144;36.690144,-86.53598;36.690394,-86.535819;36.690645,-86.53566;36.690898,-86.535505;36.691154,-86.535354;36.691412,-86.535206;36.691672,-86.53506;36.691934,-86.534916;36.692197,-86.53405;36.6938,-86.533843;36.694191,-86.53381;36.694252,-86.533776;36.694316,-86.533476;36.69487,-86.532763;36.696198,-86.532623;36.696463,-86.531977;36.697659,-86.531785;36.698015,-86.531347;36.698837,-86.53101;36.699469,-86.530973;36.699539,-86.528822;36.703536,-86.528031;36.705016,-86.527151;36.706659,-86.52694;36.70705,-86.526526;36.707821,-86.526253;36.708331,-86.525678;36.709405,-86.525438;36.709854,-86.524766;36.711106,-86.524493;36.711604,-86.524182;36.712183,-86.52382;36.712858,-86.522874;36.714611,-86.522609;36.715105,-86.52203;36.716189,-86.521698;36.716803,-86.520282;36.719449,-86.519839;36.720276,-86.519299;36.721276,-86.518899;36.722028,-86.518181;36.723363,-86.518003;36.723696,-86.517833;36.724017,-86.51716;36.725264,-86.516756;36.726016,-86.51622;36.727021,-86.515949;36.727521,-86.515417;36.728518,-86.514753;36.729745,-86.514618;36.729989,-86.514479;36.73023,-86.514335;36.730471,-86.514185;36.730709,-86.514027;36.730946,-86.513866;36.731181,-86.5137;36.731414,-86.513529;36.731646,-86.513353;36.731874,-86.513173;36.7321,-86.512988;36.732324,-86.512799;36.732545,-86.512605;36.732762,-86.512406;36.732976,-86.512204;36.733187,-86.511999;36.733395,-86.511789;36.7336,-86.511762;36.733626,-86.511577;36.7338,-86.511447;36.733919,-86.511361;36.733998,-86.511141;36.734192,-86.510917;36.734383,-86.510691;36.73457,-86.510461;36.734754,-86.510226;36.734934,-86.509989;36.73511,-86.509505;36.735456,-86.509212;36.73566,-86.509017;36.735796,-86.508515;36.736143,-86.508274;36.736308,-86.508104;36.736426,-86.507027;36.737169,-86.506775;36.737341,-86.505765;36.738038,-86.504497;36.738915,-86.501962;36.740663,-86.501237;36.741166,-86.500742;36.741507,-86.500496;36.741679,-86.500251;36.741853,-86.499766;36.742205,-86.499526;36.742384,-86.499289;36.742565,-86.499055;36.742749,-86.49859;36.743118,-86.498134;36.743492,-86.49769;36.74387,-86.497473;36.744059,-86.497257;36.74425,-86.497044;36.744441,-86.496832;36.744634,-86.496622;36.744829,-86.496414;36.745026,-86.496207;36.745226,-86.496002;36.745427,-86.495797;36.745631,-86.495392;36.746044,-86.494995;36.746463,-86.494799;36.746674,-86.494606;36.746887,-86.494415;36.747101,-86.494226;36.747318,-86.49404;36.747535,-86.493857;36.747753,-86.493676;36.747972,-86.493497;36.748193,-86.493319;36.748416,-86.493144;36.748639,-86.492971;36.748864,-86.492801;36.749089,-86.492469;36.749545,-86.492305;36.749775,-86.492143;36.750007,-86.491826;36.750472,-86.49167;36.750706,-86.491518;36.750942,-86.491369;36.751178,-86.491223;36.751417,-86.490938;36.751894,-86.490799;36.752133,-86.490662;36.752374,-86.490528;36.752615,-86.490397;36.752858,-86.490142;36.753348,-86.490018;36.753593,-86.489778;36.754084,-86.489662;36.754329,-86.489551;36.754574,-86.489443;36.754821,-86.489337;36.755069,-86.488915;36.756063,-86.488494;36.757062,-86.488327;36.75745,-86.488174;36.757807,-86.487441;36.759536,-86.487128;36.760278,-86.4865;36.761755,-86.486294;36.762243,-86.485781;36.763445,-86.485483;36.764155,-86.485182;36.76486,-86.484683;36.76604,-86.484379;36.766749,-86.483875;36.767938,-86.483361;36.769156,-86.483147;36.769657,-86.482679;36.770758,-86.482398;36.771425,-86.482077;36.772182,-86.481545;36.77343,-86.481234;36.774168,-86.480921;36.774897,-86.480717;36.775384,-86.480304;36.776358,-86.480094;36.77685,-86.479676;36.777838,-86.478417;36.780803,-86.478206;36.781297,-86.477894;36.782036,-86.477684;36.782527,-86.477268;36.783506,-86.47696;36.784239,-86.47665;36.784967,-86.476551;36.785209,-86.476455;36.785451,-86.476363;36.785693,-86.476275;36.785936,-86.47619;36.786179,-86.47611;36.786423,-86.476034;36.786669,-86.475891;36.787164,-86.475824;36.787412,-86.475762;36.78766,-86.475704;36.787908,-86.47565;36.788158,-86.475552;36.788657,-86.475508;36.788907,-86.475468;36.789157,-86.475432;36.789406,-86.4754;36.789654,-86.475373;36.789904,-86.475273;36.79115,-86.475183;36.792389,-86.475048;36.794146,-86.474994;36.794879,-86.474966;36.795263,-86.474932;36.795737,-86.47486;36.796689,-86.474799;36.797525,-86.474714;36.798633,-86.474608;36.800114,-86.47453;36.801115,-86.474401;36.802889,-86.474365;36.803393,-86.474306;36.804145,-86.47416;36.806152,-86.474108;36.806912,-86.474017;36.808069,-86.474011;36.808159,-86.474004;36.808247,-86.473938;36.809255,-86.473865;36.810282,-86.473757;36.811845,-86.473683;36.81287,-86.473651;36.813373,-86.47358;36.814354,-86.473532;36.814831,-86.473505;36.815051,-86.473469;36.815295,-86.473433;36.81552,-86.473393;36.815738,-86.473352;36.81595,-86.473308;36.816162,-86.473279;36.816286,-86.473086;36.816993,-86.473039;36.817135\\\\nPOLYLINE,-86.571184;36.638677,-86.57095;36.639439,-86.570129;36.642052,-86.569343;36.644593,-86.569101;36.645368,-86.568854;36.646142,-86.568372;36.647684,-86.568236;36.648112,-86.568044;36.648712,-86.567958;36.648968,-86.567869;36.649224,-86.567673;36.649733,-86.567568;36.649987,-86.56746;36.650239,-86.567235;36.650737,-86.567117;36.650982,-86.566995;36.651224,-86.566868;36.651464,-86.566739;36.651703,-86.566605;36.651941,-86.566468;36.652179,-86.566328;36.652416,-86.566185;36.652652,-86.566037;36.652888,-86.565885;36.653123,-86.565727;36.653358,-86.565564;36.653592,-86.565397;36.653825,-86.565225;36.654057,-86.565049;36.654287,-86.564869;36.654518,-86.564685;36.654747,-86.562788;36.657055,-86.562403;36.657521,-86.562022;36.657986,-86.561452;36.658678,-86.560881;36.659369,-86.55985;36.660624,-86.559279;36.661319,-86.557618;36.663337,-86.557039;36.664037,-86.556686;36.664468,-86.556255;36.664991,-86.556093;36.665186,-86.556037;36.665254,-86.55571;36.665649,-86.555137;36.666346,-86.554943;36.66658,-86.554167;36.667531,-86.552612;36.669412,-86.55192;36.670256,-86.55171;36.670512,-86.5512;36.671131,-86.550885;36.671512,-86.549143;36.673629,-86.548182;36.674802,-86.547727;36.675353,-86.547214;36.675972,-86.54644;36.676919,-86.54566;36.677863,-86.54518;36.678446,-86.544688;36.679047,-86.544103;36.679753,-86.543525;36.680457,-86.542948;36.681154,-86.542413;36.681806,-86.541621;36.682766,-86.541069;36.683438,-86.540116;36.684593,-86.539377;36.6855,-86.538089;36.687059,-86.537729;36.687501,-86.537375;36.687945,-86.537201;36.688167,-86.537029;36.688392,-86.536859;36.688618,-86.536691;36.688847,-86.536527;36.689077,-86.536364;36.68931,-86.536043;36.689779,-86.535886;36.690015,-86.535731;36.690253,-86.535674;36.690343,-86.535578;36.690493,-86.535426;36.690736,-86.535277;36.690981,-86.53513;36.691228,-86.534841;36.691728,-86.5347;36.69198,-86.534423;36.692488,-86.533702;36.693831,-86.533649;36.693928,-86.533608;36.694005,-86.53357;36.694074,-86.533367;36.694451,-86.533045;36.695052,-86.532357;36.696323,-86.531957;36.697072,-86.531692;36.697571,-86.531157;36.698568,-86.531045;36.69878,-86.530894;36.699072,-86.530756;36.699323,-86.530351;36.700075,-86.530082;36.700577,-86.529274;36.702071,-86.52848;36.703556,-86.528079;36.704301,-86.527273;36.705805,-86.526902;36.706503,-86.5269;36.706506,-86.526066;36.708043,-86.525962;36.708238,-86.525385;36.709314,-86.525043;36.709958,-86.524298;36.71134,-86.524177;36.711569,-86.52347;36.712889,-86.523114;36.713551,-86.522865;36.714004,-86.52249;36.714706,-86.521991;36.715648,-86.521737;36.716117,-86.521485;36.716582,-86.52084;36.717788,-86.520581;36.71828,-86.519912;36.719518,-86.519636;36.720034,-86.518979;36.721256,-86.518847;36.721504,-86.518711;36.721751,-86.51858;36.721999,-86.518372;36.722384,-86.517874;36.723311,-86.517699;36.723638,-86.517238;36.72449,-86.516831;36.72525,-86.516694;36.725503,-86.516289;36.726265,-86.515605;36.727531,-86.515336;36.72804,-86.514792;36.729054,-86.514522;36.72955,-86.514386;36.729796,-86.514247;36.73004,-86.514104;36.730284,-86.513956;36.730526,-86.5138;36.730766,-86.513639;36.731004,-86.513471;36.73124,-86.513299;36.731473,-86.513122;36.731704,-86.51294;36.731932,-86.512755;36.732157,-86.512566;36.732379,-86.512373;36.732599,-86.512175;36.732815,-86.511971;36.733028,-86.511763;36.733236,-86.511551;36.733442,-86.511334;36.733645,-86.511115;36.733846,-86.510891;36.734043,-86.510663;36.734239,-86.510429;36.734432,-86.510192;36.734621,-86.50995;36.734807,-86.509703;36.734989,-86.509451;36.735167,-86.50843;36.735874,-86.508174;36.736045,-86.507919;36.736216,-86.507657;36.736404,-86.506117;36.737473,-86.503491;36.73928,-86.502178;36.740192,-86.501899;36.740384,-86.500855;36.741103,-86.500328;36.741471,-86.500066;36.741656,-86.499806;36.741843,-86.499548;36.742032,-86.499294;36.742223,-86.499041;36.742416,-86.49879;36.742611,-86.49854;36.742808,-86.498292;36.743008,-86.498047;36.743211,-86.497804;36.743415,-86.497318;36.743831,-86.497078;36.744041,-86.496841;36.744254,-86.496606;36.74447,-86.496372;36.744688,-86.496141;36.744908,-86.495912;36.74513,-86.495685;36.745354,-86.495239;36.745806,-86.495019;36.746034,-86.494591;36.746492,-86.494382;36.746723,-86.494176;36.746954,-86.493973;36.747186,-86.493773;36.74742,-86.49338;36.747889,-86.493187;36.748127,-86.492996;36.748367,-86.492809;36.748608,-86.492624;36.748851,-86.492262;36.749339,-86.492086;36.749585,-86.491744;36.750079,-86.491576;36.750326,-86.491412;36.750574,-86.49125;36.750823,-86.491091;36.751073,-86.490935;36.751326,-86.490782;36.75158,-86.490484;36.752094,-86.49034;36.752354,-86.490198;36.752616,-86.489919;36.753142,-86.489653;36.753667,-86.489524;36.75393,-86.489401;36.754194,-86.489281;36.754459,-86.489049;36.754992,-86.48882;36.755527,-86.488592;36.756065,-86.487906;36.757678,-86.486785;36.76032,-86.486668;36.760587,-86.485985;36.762204,-86.485873;36.762475,-86.485527;36.763289,-86.484852;36.764886,-86.484423;36.765892,-86.484108;36.76664,-86.483893;36.76714,-86.483783;36.767391,-86.483356;36.768404,-86.48314;36.76891,-86.48282;36.769669,-86.482384;36.770688,-86.482066;36.771437,-86.481959;36.771685,-86.481546;36.772664,-86.481237;36.773387,-86.480932;36.774108,-86.480828;36.774348,-86.48073;36.77459,-86.480627;36.774832,-86.480521;36.775072,-86.480418;36.775314,-86.480318;36.775558,-86.479799;36.776772,-86.47939;36.777747,-86.47918;36.778235,-86.47908;36.77848,-86.478968;36.778721,-86.478764;36.779213,-86.478555;36.779707,-86.478452;36.779955,-86.477716;36.781689,-86.477407;36.782415,-86.477105;36.783135,-86.476799;36.78385,-86.476696;36.784086,-86.476501;36.78456,-86.476407;36.784797,-86.4763;36.785034,-86.476204;36.785271,-86.47611;36.785511,-86.476025;36.785754,-86.475937;36.785998,-86.475851;36.786245,-86.47569;36.786743,-86.475618;36.786994,-86.475549;36.787248,-86.475485;36.787502,-86.475425;36.787757,-86.475368;36.788013,-86.475315;36.788271,-86.475265;36.788528,-86.47522;36.788786,-86.475178;36.789043,-86.47514;36.7893,-86.475078;36.789813,-86.47505;36.790067,-86.475028;36.790322,-86.475011;36.790578,-86.474972;36.791091,-86.474896;36.792125,-86.474796;36.79344,-86.474773;36.793705,-86.474717;36.794506,-86.474691;36.794863,-86.474661;36.795296,-86.474637;36.795559,-86.474617;36.795825,-86.474607;36.796095,-86.474585;36.796362,-86.474401;36.798835,-86.474337;36.799661,-86.474292;36.800206,-86.474214;36.801289,-86.474157;36.802097,-86.474097;36.802907,-86.474074;36.803177,-86.47397;36.804543,-86.47395;36.804819,-86.473932;36.805097,-86.473888;36.805653,-86.473723;36.80792,-86.473713;36.808078,-86.473707;36.808158,-86.473701;36.808239,-86.473648;36.80897,-86.47361;36.809474,-86.473558;36.810224,-86.473467;36.811468,-86.473467;36.811721,-86.473363;36.812956,-86.473324;36.813452,-86.473265;36.814198,-86.473246;36.814449,-86.473195;36.81495,-86.473163;36.8152,-86.473125;36.81545,-86.473082;36.815698,-86.473032;36.815943,-86.472998;36.81609,-86.472772;36.816956,-86.472725;36.817099\\\\nPOLYLINE,-86.108815;37.06014,-86.108352;37.060382,-86.108115;37.060511,-86.107138;37.06102,-86.106896;37.061149,-86.106651;37.061277,-86.106413;37.061406,-86.106161;37.061533,-86.105916;37.061661,-86.105678;37.061792,-86.105426;37.061918,-86.105179;37.062046,-86.103859;37.062743,-86.103163;37.06311,-86.102656;37.063379,-86.102406;37.063506,-86.102141;37.063645,-86.101406;37.064032,-86.101151;37.064162,-86.100144;37.064688,-86.099399;37.065083,-86.098896;37.065341,-86.098717;37.065435,-86.098151;37.065732,-86.097902;37.065861,-86.097656;37.065991,-86.097421;37.066124,-86.097173;37.066253,-86.096931;37.066385,-86.096451;37.066651,-86.096214;37.066785,-86.095981;37.066921,-86.095749;37.067059,-86.094841;37.067612,-86.094633;37.067749,-86.094406;37.06789,-86.094169;37.068045,-86.093953;37.068182,-86.09373;37.068312,-86.093504;37.068447,-86.092655;37.06898,-86.091976;37.069395,-86.091752;37.069537,-86.091289;37.069824,-86.091053;37.069966,-86.090824;37.070112,-86.090594;37.070255,-86.090357;37.070397,-86.089902;37.070683,-86.089668;37.070824,-86.089438;37.070965,-86.089214;37.071108,-86.088757;37.071393,-86.088522;37.071536,-86.087818;37.071972,-86.086634;37.072702,-86.085021;37.073707,-86.084573;37.073981,-86.084136;37.074254,-86.083912;37.07439,-86.083694;37.074528,-86.08347;37.074665,-86.083251;37.074804,-86.083029;37.074942,-86.082798;37.075077,-86.082574;37.075215,-86.082354;37.075354,-86.082129;37.075492,-86.081684;37.075769,-86.081457;37.075907,-86.081226;37.076044,-86.08075;37.076315,-86.080273;37.076583,-86.080036;37.076714,-86.079799;37.076843,-86.07956;37.076971,-86.079075;37.077222,-86.07883;37.077346,-86.077563;37.077973,-86.077312;37.078099,-86.077052;37.078222,-86.076288;37.078594,-86.07503;37.07921,-86.074527;37.079459,-86.07351;37.079955,-86.07275;37.080328,-86.071234;37.081068,-86.069841;37.081749\\\\nPOLYLINE,-86.108442;37.060066,-86.107353;37.060613,-86.103637;37.062512,-86.101714;37.063472,-86.098535;37.065135,-86.095837;37.06664,-86.093202;37.068285,-86.089846;37.070436,-86.086802;37.072234,-86.084418;37.073703,-86.083163;37.074462,-86.080716;37.076056,-86.078613;37.077146,-86.076352;37.078237,-86.073559;37.079708,-86.069886;37.081463\\\\nPOLYLINE,-85.970893;37.156183,-85.970845;37.156977,-85.970838;37.157005,-85.970552;37.158206,-85.97008;37.159402,-85.96952;37.160395,-85.969432;37.160549,-85.968632;37.161622,-85.967813;37.162664,-85.966986;37.163676,-85.966107;37.164664,-85.965152;37.165627,-85.964097;37.166576,-85.962997;37.167516,-85.960951;37.169249,-85.959937;37.170113,-85.958894;37.17102,-85.957902;37.172009,-85.957202;37.172758,-85.957006;37.172967,-85.956062;37.173989,-85.95516;37.174954,-85.953379;37.176875,-85.952468;37.177851,-85.951562;37.178886,-85.950694;37.179964,-85.949847;37.181037,-85.948993;37.182073,-85.94811;37.183064,-85.947177;37.184038,-85.946269;37.185002,-85.945347;37.185959,-85.9444;37.186949,-85.94246;37.188966,-85.941526;37.189954,-85.941166;37.190337,-85.940592;37.190948,-85.939827;37.192016,-85.939207;37.19314,-85.938799;37.194306,-85.938668;37.194885,-85.938534;37.195481,-85.938466;37.195971,-85.93837;37.196652,-85.93821;37.197823,-85.938052;37.198997,-85.937889;37.20018,-85.937725;37.201439,-85.937659;37.201945,-85.937383;37.20404,-85.937211;37.205294,-85.937073;37.206369,-85.936555;37.210319,-85.936381;37.211567,-85.936219;37.212789,-85.935976;37.214014,-85.935618;37.215229,-85.935238;37.216431,-85.934849;37.217649,-85.934466;37.218871,-85.934079;37.220079,-85.932114;37.226253,-85.93173;37.227493,-85.931349;37.228693,-85.930973;37.229869,-85.9306;37.231067,-85.929819;37.233538,-85.929462;37.23479,-85.929142;37.236004,-85.928725;37.237663,-85.927606;37.24214,-85.927311;37.243335,-85.927149;37.24398,-85.927041;37.24441,-85.92613;37.24806,-85.92583;37.249242,-85.925527;37.250465,-85.925322;37.251277,-85.925267;37.251495,-85.925221;37.251678,-85.924911;37.252911,-85.924597;37.254199,-85.924268;37.255512,-85.923614;37.258104,-85.923272;37.259369,-85.922879;37.260613,-85.922419;37.261844,-85.92189;37.263067,-85.921295;37.264289,-85.920641;37.265486,-85.919948;37.266613,-85.919228;37.267683,-85.918449;37.268739,-85.917596;37.269803,-85.916658;37.270864,-85.915678;37.271928,-85.914693;37.272991,-85.913742;37.274065,-85.913111;37.274898,-85.9129;37.275176,-85.912205;37.276326,-85.911567;37.277518,-85.910268;37.279982,-85.910091;37.280313,-85.909615;37.281206,-85.908974;37.282401,-85.908403;37.283567,-85.907818;37.284686,-85.907731;37.284849,-85.907234;37.285784,-85.90701;37.286185,-85.906789;37.286583,-85.906597;37.286927,-85.906001;37.287894,-85.905915;37.288033,-85.905675;37.288404,-85.90524;37.289075,-85.904598;37.290075,-85.904373;37.290422,-85.904233;37.290637,-85.903948;37.291077,-85.903632;37.29156,-85.903245;37.292149,-85.90254;37.29323,-85.901919;37.294405,-85.901677;37.295195,-85.901647;37.295289,-85.901535;37.295657,-85.901429;37.296949,-85.901579;37.298248,-85.901836;37.299543,-85.902026;37.30049,-85.90264;37.30351,-85.903162;37.306141,-85.903435;37.307478,-85.903705;37.30882,-85.904408;37.312281,-85.904526;37.312866,-85.90479;37.314206,-85.905055;37.315513,-85.905311;37.316791,-85.905561;37.318076,-85.905775;37.319392,-85.905948;37.320707,-85.906105;37.321991,-85.906252;37.323231,-85.906405;37.324435,-85.906552;37.325631,-85.906866;37.328067,-85.907022;37.329331,-85.907344;37.331872,-85.907501;37.333146,-85.907615;37.334456,-85.90761;37.334959,-85.907609;37.335072,-85.907602;37.335777,-85.907452;37.337079,-85.907166;37.33838,-85.906727;37.339685,-85.906145;37.340973,-85.905476;37.342266,-85.904794;37.34356,-85.904117;37.34484,-85.903692;37.345653,-85.902781;37.347394,-85.902506;37.347917,-85.90212;37.348652,-85.90147;37.349902,-85.900811;37.351156,-85.898694;37.355196,-85.897472;37.357518,-85.89699;37.35844,-85.895342;37.361573,-85.894842;37.362529,-85.894218;37.363758,-85.893646;37.365013,-85.893531;37.365303,-85.893143;37.366288,-85.89269;37.367576,-85.892238;37.368888,-85.891793;37.370187,-85.891351;37.371453,-85.890246;37.374664,-85.889658;37.376374,-85.889283;37.377451,-85.888763;37.378977,-85.888732;37.379067,-85.888331;37.380227,-85.887871;37.381535,-85.886757;37.384766,-85.886451;37.385649,-85.886404;37.385788,-85.886075;37.386733,-85.885638;37.388006,-85.885212;37.389257,-85.884958;37.389979,-85.884773;37.390505,-85.884737;37.390615,-85.884361;37.391752,-85.883941;37.393002,-85.88356;37.394244,-85.883216;37.395504,-85.882898;37.396774,-85.882613;37.398045,-85.882361;37.399348,-85.882136;37.400681,-85.88195;37.402013,-85.881797;37.403341,-85.881684;37.404658,-85.881609;37.405978,-85.881561;37.407305,-85.881546;37.408653,-85.881581;37.410012,-85.881644;37.41137,-85.881744;37.412717,-85.881987;37.415368,-85.882367;37.419403,-85.882495;37.420723,-85.882611;37.422006,-85.882851;37.424542,-85.88297;37.425835,-85.883095;37.427126,-85.883211;37.428416,-85.883333;37.4297,-85.883699;37.433636,-85.883826;37.434959,-85.883945;37.436278,-85.884039;37.437431,-85.884053;37.437594,-85.884118;37.438901,-85.884121;37.43971,-85.884121;37.439752\\\\nPOLYLINE,-85.970656;37.156173,-85.970643;37.156369,-85.970554;37.15686,-85.970445;37.157506,-85.970096;37.158635,-85.969586;37.15975,-85.968908;37.160815,-85.968116;37.161837,-85.967308;37.162855,-85.966477;37.16386,-85.965575;37.164836,-85.964614;37.16577,-85.963609;37.16665,-85.961566;37.168388,-85.960494;37.169302,-85.959404;37.170227,-85.95837;37.171151,-85.957443;37.172114,-85.956644;37.172968,-85.956543;37.173076,-85.95564;37.174051,-85.954721;37.175038,-85.953777;37.176055,-85.952809;37.177116,-85.95185;37.178148,-85.950955;37.179213,-85.950098;37.180297,-85.949248;37.181358,-85.948366;37.1824,-85.947392;37.183449,-85.94637;37.184514,-85.945338;37.185597,-85.944296;37.186684,-85.943284;37.187731,-85.942321;37.188734,-85.94139;37.18971,-85.940929;37.190206,-85.940464;37.190704,-85.939672;37.191752,-85.939031;37.192888,-85.938552;37.194085,-85.938257;37.195326,-85.938176;37.195909,-85.938058;37.196759,-85.937912;37.197865,-85.937569;37.200398,-85.937458;37.201284,-85.937411;37.20165,-85.937231;37.202982,-85.936806;37.206173,-85.936541;37.20817,-85.936196;37.210807,-85.936018;37.212127,-85.935815;37.213428,-85.935491;37.214713,-85.935082;37.21598,-85.933449;37.22114,-85.932632;37.223708,-85.932229;37.224971,-85.931839;37.226214,-85.931443;37.227444,-85.931057;37.228682,-85.930669;37.229938,-85.929853;37.232494,-85.929459;37.23378,-85.929089;37.235083,-85.928754;37.236375,-85.928442;37.23761,-85.928128;37.238871,-85.927812;37.240113,-85.926861;37.243933,-85.92619;37.246611,-85.925863;37.24793,-85.925538;37.249246,-85.925207;37.25055,-85.925036;37.251239,-85.924978;37.251472,-85.924927;37.251678,-85.924228;37.254465,-85.923913;37.255745,-85.923628;37.257035,-85.923278;37.25827,-85.922934;37.259547,-85.922514;37.260808,-85.92203;37.262059,-85.921478;37.263299,-85.920866;37.26452,-85.920192;37.265717,-85.919448;37.26689,-85.91863;37.268055,-85.917742;37.269208,-85.916789;37.270328,-85.915796;37.271418,-85.914793;37.272503,-85.9138;37.273591,-85.912892;37.274735,-85.912821;37.274842,-85.91209;37.275947,-85.911429;37.277182,-85.910781;37.278404,-85.910145;37.279635,-85.91003;37.279856,-85.90951;37.280854,-85.908878;37.282055,-85.90824;37.283262,-85.907863;37.283986,-85.9076;37.284493,-85.907451;37.284773,-85.906952;37.285718,-85.906271;37.286929,-85.905716;37.287818,-85.905567;37.288057,-85.905512;37.288142,-85.904853;37.289153,-85.904166;37.290215,-85.903434;37.291347,-85.903391;37.291414,-85.902671;37.292518,-85.90195;37.293685,-85.90144;37.294904,-85.901429;37.294952,-85.901414;37.295027,-85.901176;37.296166,-85.901154;37.297246,-85.901173;37.297434,-85.901374;37.298681,-85.901888;37.30123,-85.902405;37.303767,-85.902659;37.305042,-85.902923;37.306324,-85.903176;37.307636,-85.903455;37.308932,-85.903976;37.311553,-85.904128;37.312305,-85.904493;37.314093,-85.904744;37.315363,-85.904996;37.316626,-85.905242;37.317886,-85.905458;37.319146,-85.905622;37.320394,-85.905783;37.321645,-85.905938;37.322905,-85.906091;37.324194,-85.906263;37.325496,-85.906449;37.326833,-85.906776;37.329599,-85.907124;37.332424,-85.907283;37.333829,-85.90732;37.33485,-85.907323;37.334946,-85.907332;37.335199,-85.907242;37.336537,-85.907005;37.337855,-85.906647;37.339126,-85.906148;37.340339,-85.905566;37.341507,-85.903431;37.345584,-85.901782;37.348719,-85.901122;37.349979,-85.900453;37.351243,-85.899799;37.352498,-85.899146;37.353745,-85.897816;37.356267,-85.897148;37.357553,-85.896464;37.358855,-85.895777;37.360168,-85.89508;37.361494,-85.894405;37.362786,-85.893755;37.364088,-85.893325;37.365084,-85.893188;37.3654,-85.892701;37.366709,-85.892256;37.36799,-85.891382;37.370529,-85.890934;37.371817,-85.890492;37.373099,-85.890053;37.37435,-85.889964;37.374609,-85.889617;37.375621,-85.888955;37.377533,-85.888494;37.378867,-85.888401;37.379135,-85.887877;37.380654,-85.887433;37.381928,-85.886993;37.383197,-85.886548;37.384456,-85.886168;37.385592,-85.886129;37.385703,-85.885707;37.386912,-85.88485;37.389388,-85.884661;37.38995,-85.884421;37.390664,-85.884394;37.390742,-85.883993;37.391923,-85.883589;37.393177,-85.883208;37.39444,-85.88286;37.395738,-85.882537;37.397066,-85.882251;37.398432,-85.882;37.399791,-85.881789;37.401125,-85.881616;37.402447,-85.881471;37.403763,-85.881384;37.405099,-85.881307;37.406474,-85.881276;37.407861,-85.881277;37.409245,-85.88132;37.410612,-85.881407;37.411989,-85.881422;37.412177,-85.881517;37.413327,-85.881636;37.414629,-85.881761;37.415926,-85.881879;37.417212,-85.881994;37.418498,-85.882121;37.419786,-85.882243;37.421086,-85.88236;37.422404,-85.882468;37.423754,-85.882611;37.425086,-85.882736;37.42642,-85.882855;37.42775,-85.882978;37.429021,-85.883095;37.430276,-85.883212;37.43156,-85.883589;37.435528,-85.88376;37.437474,-85.883816;37.43812,-85.88385;37.439358,-85.883852;37.439734\\\\nPOLYLINE,-85.739036;37.813363,-85.739079;37.813324,-85.739522;37.812921,-85.743734;37.808675,-85.744387;37.808024,-85.744764;37.80764,-85.745305;37.807063,-85.745659;37.806673,-85.746182;37.806072,-85.746699;37.805445,-85.74704;37.805012,-85.74724;37.804747,-85.747634;37.804226,-85.74771;37.804126,-85.748006;37.803692,-85.749579;37.801473,-85.75032;37.800366,-85.751503;37.798547,-85.75192;37.797928,-85.752192;37.797533,-85.752436;37.797179,-85.755351;37.793046,-85.755681;37.7926,-85.755856;37.792384,-85.756039;37.792174,-85.756231;37.791968,-85.756433;37.791768,-85.756646;37.791577,-85.756872;37.791396,-85.757109;37.791224,-85.757356;37.791062,-85.757611;37.790911,-85.757876;37.790771,-85.758148;37.790642,-85.758426;37.790522,-85.758711;37.790416,-85.759;37.790321,-85.759294;37.790236,-85.759592;37.790162,-85.759895;37.790096,-85.760201;37.790035,-85.76082;37.789925,-85.764327;37.789359,-85.766578;37.78899,-85.76689;37.788935,-85.767503;37.788807,-85.767806;37.788732,-85.768105;37.788648,-85.768401;37.788555,-85.768692;37.78845,-85.76881;37.788401,-85.768979;37.788331,-85.769259;37.788202,-85.769533;37.78806,-85.7698;37.787907,-85.770059;37.787744,-85.770307;37.787573,-85.770546;37.787393,-85.770772;37.787202,-85.770984;37.787004,-85.771183;37.786797,-85.771372;37.786583,-85.771548;37.786363,-85.771672;37.786188,-85.771711;37.786133,-85.771859;37.785896,-85.771993;37.785653,-85.772111;37.785403,-85.772215;37.785151,-85.772251;37.785054,-85.772309;37.784897,-85.772395;37.784643,-85.772548;37.784128,-85.773207;37.781729,-85.773361;37.781205,-85.773446;37.780948,-85.773538;37.780694,-85.77364;37.780441,-85.773756;37.780191,-85.773885;37.779946,-85.774027;37.779705,-85.774183;37.779468,-85.774351;37.779236,-85.774531;37.779013,-85.774722;37.778796,-85.774922;37.778587,-85.775131;37.778385,-85.775569;37.777997,-85.77602;37.777616,-85.781924;37.772704,-85.782393;37.772324,-85.782633;37.772139,-85.782878;37.771958,-85.783131;37.771785,-85.78339;37.771622,-85.783654;37.77147,-85.783924;37.771329,-85.784199;37.771197,-85.78448;37.771073,-85.784767;37.770959,-85.78506;37.770854,-85.785358;37.770757,-85.785658;37.770667,-85.786268;37.7705,-85.787493;37.77018,-85.7881;37.770013,-85.788396;37.769923,-85.788687;37.769824,-85.788972;37.769718,-85.789252;37.769601,-85.789525;37.769476,-85.78979;37.76934,-85.790047;37.769192,-85.790296;37.769035,-85.790537;37.768868,-85.790771;37.768691,-85.790996;37.768506,-85.791211;37.768309,-85.791413;37.768103,-85.791602;37.767888,-85.791778;37.767665,-85.791941;37.767437,-85.79209;37.767201,-85.792145;37.767105,-85.792227;37.766961,-85.792352;37.766715,-85.792469;37.766467,-85.792682;37.765964,-85.793398;37.764197,-85.793446;37.764092,-85.793623;37.763707,-85.793746;37.763467,-85.794015;37.762996,-85.794159;37.762765,-85.79431;37.762536,-85.794469;37.762308,-85.794804;37.761859,-85.795666;37.760741,-85.795999;37.760281,-85.796154;37.760046,-85.796296;37.759807,-85.796426;37.759566,-85.796548;37.759324,-85.796656;37.75908,-85.796754;37.758835,-85.796845;37.758589,-85.796926;37.758343,-85.796997;37.758094,-85.797056;37.757845,-85.797106;37.757594,-85.797145;37.757343,-85.797174;37.75709,-85.797194;37.756834,-85.797202;37.756577,-85.797201;37.756319,-85.79719;37.75606,-85.797169;37.7558,-85.797137;37.755541,-85.797094;37.755282,-85.79704;37.755025,-85.796974;37.754772,-85.796899;37.754521,-85.796845;37.754363,-85.79673;37.754023,-85.796375;37.753034,-85.794704;37.748563,-85.794519;37.748054,-85.794351;37.747545,-85.794279;37.747291,-85.794219;37.747034,-85.794172;37.746777,-85.794139;37.746518,-85.794136;37.746469,-85.794124;37.74626,-85.794124;37.746,-85.794143;37.745741,-85.794178;37.745482,-85.794232;37.745225,-85.794298;37.744969,-85.79438;37.744715,-85.794479;37.744466,-85.794595;37.744221,-85.794726;37.743981,-85.794874;37.743749,-85.795038;37.743523,-85.795215;37.743303,-85.795404;37.743089,-85.795605;37.742883,-85.795821;37.742687,-85.79605;37.7425,-85.796291;37.742321,-85.796541;37.742152,-85.796797;37.741987,-85.797058;37.741827,-85.798634;37.740919,-85.799142;37.740609,-85.799635;37.740283,-85.799873;37.740114,-85.800109;37.73994,-85.801954;37.738521,-85.802424;37.738177,-85.802666;37.73801,-85.802913;37.737849,-85.803165;37.737693,-85.803422;37.73754,-85.803683;37.737392,-85.804213;37.737109,-85.808498;37.734888,-85.809316;37.734468,-85.815117;37.731466,-85.815948;37.731025,-85.816218;37.730877,-85.816741;37.730572,-85.817252;37.730255,-85.817503;37.73009,-85.817992;37.72975,-85.818469;37.7294,-85.818703;37.729221,-85.819156;37.728854,-85.819832;37.728298,-85.819948;37.728213,-85.820065;37.728127,-85.822049;37.726465,-85.825351;37.723725,-85.825796;37.723345,-85.826226;37.722948,-85.826435;37.722744,-85.826638;37.722536,-85.826689;37.722481,-85.826835;37.722322,-85.827026;37.722103,-85.827212;37.721878,-85.827392;37.721649,-85.827566;37.721413,-85.827733;37.721173,-85.827892;37.720927,-85.828042;37.720677,-85.828132;37.720518,-85.828183;37.720427,-85.828317;37.720175,-85.828443;37.71992,-85.82856;37.719664,-85.828669;37.719407,-85.82877;37.719149,-85.828859;37.71889,-85.829013;37.71837,-85.82908;37.71811,-85.829138;37.71785,-85.829199;37.717496,-85.829259;37.717066,-85.829305;37.716539,-85.829403;37.715197,-85.829499;37.713799,-85.829515;37.713613,-85.82956;37.713075,-85.829649;37.711772,-85.82966;37.711642,-85.829713;37.711009,-85.829738;37.710759,-85.829777;37.710462,-85.829808;37.710258,-85.829853;37.710007,-85.829907;37.709759,-85.829968;37.709513,-85.830037;37.709271,-85.830197;37.708793,-85.830284;37.708557,-85.830379;37.708324,-85.83048;37.708093,-85.830589;37.707866,-85.830704;37.707643,-85.830829;37.707423,-85.830952;37.707206,-85.831215;37.70678,-85.832057;37.70549,-85.833777;37.702877,-85.833866;37.702743,-85.834079;37.702424,-85.837448;37.697302,-85.837493;37.697234,-85.838834;37.69521,-85.841156;37.691675,-85.841583;37.690996,-85.841719;37.690768,-85.841849;37.690539,-85.84197;37.690308,-85.842083;37.690075,-85.842185;37.689837,-85.842276;37.689596,-85.842352;37.689351,-85.842416;37.689105,-85.84247;37.688856,-85.842553;37.688356,-85.842638;37.68761,-85.842673;37.687248,-85.842757;37.686384,-85.842828;37.685694,-85.842941;37.684604,-85.84321;37.683087,-85.843477;37.682516,-85.843755;37.681921,-85.843899;37.681707,-85.844546;37.680894,-85.844584;37.680851,-85.845357;37.679971,-85.845569;37.679729,-85.846037;37.679204,-85.846244;37.678971,-85.84669;37.678467,-85.847072;37.678035,-85.847208;37.677882,-85.847815;37.677188,-85.848376;37.676554,-85.849605;37.675168,-85.85013;37.674559,-85.85047;37.67415,-85.850606;37.673995,-85.850643;37.673952,-85.850755;37.673788,-85.851252;37.673063,-85.851536;37.672618,-85.851803;37.672164,-85.852056;37.671702,-85.852176;37.671465,-85.852291;37.671225,-85.8524;37.670982,-85.852411;37.670955,-85.852603;37.670491,-85.852791;37.669997,-85.852955;37.669503,-85.853099;37.66901,-85.853163;37.668761,-85.853488;37.667269,-85.85395;37.665133,-85.855468;37.65812,-85.855617;37.657428,-85.857218;37.650034,-85.857555;37.648478,-85.857895;37.646891,-85.858285;37.64511,-85.858577;37.643777,-85.858954;37.642019,-85.859726;37.638416,-85.860708;37.633901,-85.862134;37.627303,-85.863165;37.622531,-85.863303;37.621879,-85.86352;37.620787,-85.863646;37.620285,-85.863809;37.619561,-85.865441;37.611987,-85.865562;37.61143,-85.866194;37.60852,-85.8675;37.602504,-85.86834;37.598634,-85.868579;37.597533,-85.868869;37.596167,-85.868937;37.595835,-85.869004;37.595583,-85.869268;37.594359,-85.869414;37.593683,-85.869474;37.593405,-85.870049;37.590739,-85.871614;37.583526,-85.87292;37.577496,-85.873227;37.576053,-85.87339;37.575333,-85.873705;37.573851,-85.873765;37.573594,-85.874087;37.572134,-85.876546;37.560764,-85.876716;37.559975,-85.876736;37.559883,-85.876747;37.559834,-85.878069;37.553703,-85.878239;37.552824,-85.8783;37.552597,-85.878614;37.551182,-85.879122;37.548825,-85.879493;37.547139,-85.879802;37.545691,-85.879966;37.544959,-85.880301;37.543411,-85.880435;37.542793,-85.880514;37.542426,-85.881275;37.538906,-85.881309;37.53877,-85.881332;37.538677,-85.881826;37.53639,-85.88209;37.535194,-85.882808;37.531859,-85.883135;37.530385,-85.88397;37.526519,-85.883995;37.526403,-85.884097;37.525919,-85.884204;37.525417,-85.884908;37.522161,-85.884955;37.521962,-85.88508;37.521436,-85.885607;37.518947,-85.88585;37.517827,-85.885981;37.517227,-85.886006;37.517111,-85.886201;37.516214,-85.886656;37.514114,-85.886868;37.513118,-85.887466;37.51036,-85.887496;37.51022,-85.887579;37.509836,-85.887937;37.508186,-85.887984;37.507929,-85.88806;37.507417,-85.888111;37.506905,-85.888131;37.506648,-85.888144;37.506389,-85.888154;37.505867,-85.888147;37.505342,-85.88812;37.504815,-85.888096;37.504552,-85.888066;37.50429,-85.887988;37.503764,-85.887943;37.503503,-85.887892;37.503243,-85.887772;37.502731,-85.887704;37.502478,-85.887631;37.502229,-85.887548;37.501981,-85.887455;37.501736,-85.887353;37.501491,-85.887245;37.501247,-85.88713;37.501004,-85.887006;37.500763,-85.886875;37.500522,-85.886735;37.500283,-85.886588;37.500047,-85.886432;37.499812,-85.886268;37.499579,-85.886098;37.499348,-85.885919;37.499119,-85.885732;37.498892,-85.885535;37.49867,-85.884734;37.497816,-85.884167;37.497178\\\\nPOLYLINE,-85.884094;37.49759,-85.884769;37.498277,-85.885362;37.498923,-85.885558;37.499152,-85.885745;37.499386,-85.885927;37.499625,-85.886101;37.499868,-85.886268;37.500114,-85.886425;37.500364,-85.886573;37.500618,-85.886715;37.500874,-85.886846;37.501136,-85.886968;37.501399,-85.887082;37.501664,-85.887187;37.501932,-85.887285;37.502203,-85.887371;37.502477,-85.887448;37.502754,-85.887516;37.503034,-85.887576;37.503317,-85.887678;37.503889,-85.887756;37.504467,-85.887785;37.504753,-85.88782;37.505325,-85.887831;37.505613,-85.887833;37.505899,-85.887826;37.506184,-85.887813;37.506467,-85.88777;37.507027,-85.887706;37.507576,-85.887665;37.507851,-85.887618;37.508127,-85.887504;37.508675,-85.887325;37.509491,-85.887276;37.509727,-85.887214;37.510025,-85.887196;37.510107,-85.887147;37.510327,-85.8868;37.511898,-85.886519;37.513215,-85.886403;37.513737,-85.886189;37.514766,-85.886071;37.515277,-85.885867;37.516225,-85.885742;37.516807,-85.885668;37.517163,-85.885646;37.517272,-85.885531;37.517806,-85.885471;37.518088,-85.885238;37.519117,-85.884645;37.521875,-85.884575;37.522252,-85.884126;37.524286,-85.883779;37.525896,-85.883686;37.526328,-85.883646;37.526508,-85\\\"+\\\".883407;37.52758,-85.883107;37.528974,-85.882656;37.531049,-85.882544;37.531545,-85.881856;37.534728,-85.881692;37.535499,-85.881617;37.535849,-85.880986;37.538744,-85.880574;37.540652,-85.880117;37.542746,-85.879841;37.544012,-85.879687;37.544728,-85.879401;37.546064,-85.878805;37.548785,-85.878356;37.550839,-85.877861;37.553127,-85.877745;37.553681,-85.877273;37.55586,-85.876709;37.558436,-85.876432;37.559726,-85.876422;37.559771,-85.876404;37.559853,-85.876211;37.560753,-85.874383;37.569176,-85.873443;37.573525,-85.873389;37.573819,-85.873326;37.574069,-85.872145;37.579506,-85.871481;37.582599,-85.871019;37.584718,-85.869719;37.590722,-85.869088;37.593639,-85.868942;37.594311,-85.868609;37.595846,-85.868562;37.596078,-85.868509;37.596349,-85.868243;37.597583,-85.867957;37.598872,-85.867861;37.599306,-85.867374;37.601573,-85.86667;37.604811,-85.866508;37.605576,-85.86587;37.608489,-85.865594;37.609747,-85.865319;37.611035,-85.865242;37.611388,-85.865153;37.611799,-85.864291;37.615775,-85.86403;37.617004,-85.863919;37.617492,-85.863549;37.61922,-85.86322;37.620719,-85.86286;37.622383,-85.861802;37.627279,-85.860367;37.633918,-85.859777;37.636634,-85.85932;37.638743,-85.858682;37.641711,-85.858563;37.642264,-85.858441;37.642796,-85.857909;37.645279,-85.85786;37.645507,-85.857509;37.647116,-85.857226;37.648438,-85.856869;37.650077,-85.856824;37.650283,-85.856543;37.651598,-85.856137;37.653445,-85.855287;37.657385,-85.855256;37.657532,-85.855239;37.657609,-85.854474;37.661162,-85.854289;37.661997,-85.853995;37.663391,-85.853638;37.665037,-85.853017;37.667955,-85.852993;37.668057,-85.852836;37.66873,-85.852697;37.669248,-85.852621;37.669504,-85.852537;37.669759,-85.852351;37.670267,-85.852146;37.67077,-85.852115;37.670838,-85.851922;37.671261,-85.851683;37.671748,-85.85141;37.67223,-85.851265;37.672469,-85.850963;37.672937,-85.850685;37.673342,-85.850646;37.673398,-85.85055;37.673521,-85.850396;37.67372,-85.849949;37.674295,-85.849769;37.674513,-85.848474;37.675998,-85.847044;37.677607,-85.846812;37.677869,-85.845976;37.678813,-85.845858;37.678946,-85.845144;37.679759,-85.844271;37.680737,-85.843898;37.681185,-85.843729;37.6814,-85.843575;37.68162,-85.843429;37.681843,-85.843296;37.682071,-85.843156;37.682423,-85.842993;37.682835,-85.842818;37.683278,-85.842759;37.68353,-85.842711;37.683784,-85.842672;37.68404,-85.842613;37.684555,-85.842518;37.685534,-85.842417;37.686579,-85.842354;37.687267,-85.842283;37.687916,-85.842225;37.688361,-85.84219;37.688587,-85.842146;37.688814,-85.842096;37.689042,-85.84204;37.68927,-85.841972;37.689497,-85.841891;37.689722,-85.841798;37.689948,-85.841695;37.690173,-85.84158;37.690396,-85.841457;37.690618,-85.841326;37.690839,-85.841047;37.691275,-85.839894;37.693041,-85.839158;37.694149,-85.83749;37.696689,-85.837383;37.696852,-85.835881;37.699125,-85.833485;37.702761,-85.833398;37.702893,-85.831106;37.706369,-85.830824;37.706809,-85.83056;37.707253,-85.830437;37.707476,-85.830392;37.707562,-85.83032;37.707701,-85.830105;37.708153,-85.830007;37.708383,-85.829917;37.708614,-85.829835;37.708847,-85.82976;37.709077,-85.829691;37.709309,-85.829572;37.709774,-85.829541;37.709917,-85.829478;37.71024,-85.829413;37.710707,-85.829367;37.711178,-85.829179;37.713779,-85.829165;37.713964,-85.829013;37.716141,-85.828946;37.716902,-85.82891;37.717228,-85.82886;37.717547,-85.828843;37.717659,-85.828794;37.71791,-85.828736;37.718161,-85.828671;37.718411,-85.828599;37.718659,-85.828518;37.718906,-85.828429;37.71915,-85.828333;37.719393,-85.82823;37.719633,-85.828121;37.719872,-85.828002;37.720107,-85.827877;37.720341,-85.827809;37.720459,-85.827745;37.720572,-85.827607;37.7208,-85.827462;37.721024,-85.827345;37.721194,-85.82731;37.721245,-85.827151;37.721463,-85.826986;37.721678,-85.826815;37.721889,-85.826638;37.722097,-85.826454;37.722299,-85.826264;37.722498,-85.826243;37.722519,-85.825867;37.722884,-85.825797;37.722948,-85.825661;37.723072,-85.824809;37.723805,-85.824607;37.723974,-85.824152;37.724354,-85.822822;37.72545,-85.819591;37.728133,-85.819459;37.72824,-85.81926;37.728413,-85.819055;37.728569,-85.818453;37.72905,-85.818049;37.729362,-85.817841;37.729516,-85.817406;37.729819,-85.816957;37.730116,-85.816857;37.730178,-85.816498;37.7304,-85.81603;37.730672,-85.815303;37.731066,-85.813569;37.731967,-85.81024;37.733686,-85.807837;37.73493,-85.806739;37.735492,-85.803971;37.736933,-85.803422;37.737231,-85.803152;37.737385,-85.802887;37.737544,-85.802627;37.737708,-85.802372;37.737877,-85.802122;37.738053,-85.801632;37.738415,-85.800414;37.739361,-85.799669;37.739922,-85.799414;37.740103,-85.799154;37.74028,-85.798887;37.74045,-85.798339;37.740774,-85.797512;37.741249,-85.796968;37.741569,-85.796436;37.741896,-85.796179;37.742067,-85.795932;37.742246,-85.795695;37.742431,-85.79547;37.742625,-85.795256;37.742827,-85.795057;37.743039,-85.794872;37.743257,-85.7947;37.743482,-85.794542;37.743712,-85.794397;37.743948,-85.794267;37.744191,-85.794154;37.744438,-85.794058;37.744689,-85.793977;37.744944,-85.793912;37.745202,-85.79386;37.745461,-85.793824;37.745723,-85.793805;37.745988,-85.793805;37.746252,-85.793817;37.746457,-85.793821;37.746516,-85.793853;37.746779,-85.7939;37.747041,-85.793959;37.747301,-85.79403;37.74756,-85.79411;37.747817,-85.794289;37.748332,-85.79603;37.753021,-85.796411;37.754062,-85.796503;37.754324,-85.796536;37.754425,-85.796589;37.754586,-85.796668;37.754849,-85.796735;37.755114,-85.796789;37.755382,-85.796831;37.755648,-85.796861;37.755914,-85.796879;37.756179,-85.796886;37.756442,-85.796883;37.756702,-85.796868;37.756962,-85.796842;37.75722,-85.796805;37.757476,-85.796759;37.75773,-85.7967;37.757984,-85.796633;37.758236,-85.796554;37.758486,-85.796465;37.758735,-85.796364;37.75898,-85.796254;37.759223,-85.796134;37.759463,-85.796004;37.759698,-85.795865;37.759932,-85.795716;37.760161,-85.795558;37.760388,-85.795225;37.760838,-85.794366;37.761945,-85.794199;37.762168,-85.794037;37.762394,-85.793885;37.762624,-85.793741;37.762857,-85.793604;37.763092,-85.793471;37.763332,-85.793345;37.763574,-85.793119;37.764064,-85.793102;37.764107,-85.792319;37.766032,-85.792213;37.766276,-85.792101;37.766519,-85.791982;37.766761,-85.791853;37.766999,-85.791769;37.767139,-85.791712;37.767233,-85.791558;37.76746,-85.791389;37.767678,-85.791208;37.767889,-85.791015;37.768092,-85.79081;37.768288,-85.790593;37.768473,-85.790366;37.768649,-85.790127;37.768814,-85.789881;37.768971,-85.789626;37.769119,-85.789363;37.769257,-85.789089;37.769384,-85.788808;37.769499,-85.78852;37.769603,-85.788228;37.769698,-85.787932;37.769789,-85.787635;37.769875,-85.78583;37.770346,-85.785531;37.770429,-85.785236;37.770517,-85.784944;37.770611,-85.784656;37.770714,-85.784373;37.770825,-85.784095;37.770945,-85.78382;37.771074,-85.783552;37.771214,-85.783288;37.771362,-85.783031;37.771519,-85.782781;37.771685,-85.782536;37.771859,-85.782298;37.772039,-85.782062;37.772224,-85.781137;37.772985,-85.7757;37.777515,-85.775227;37.777918,-85.774998;37.778121,-85.774777;37.778327,-85.774566;37.778536,-85.774368;37.77875,-85.774183;37.778969,-85.774011;37.779192,-85.773851;37.77942,-85.773704;37.779652,-85.773568;37.779887,-85.773443;37.780127,-85.773329;37.780371,-85.773228;37.780617,-85.773136;37.780866,-85.773053;37.781119,-85.772903;37.781635,-85.772204;37.78418,-85.772054;37.784666,-85.771969;37.784904,-85.77191;37.785054,-85.771776;37.785371,-85.771665;37.785599,-85.771541;37.785821,-85.771403;37.786037,-85.77134;37.786124,-85.771253;37.786245,-85.771093;37.786447,-85.770922;37.786643,-85.770738;37.786832,-85.770542;37.787014,-85.770335;37.787192,-85.770117;37.787361,-85.769886;37.787523,-85.769646;37.787676,-85.769396;37.787822,-85.769134;37.787959,-85.768864;37.788087,-85.768652;37.788178,-85.768583;37.788207,-85.76829;37.788314,-85.767988;37.788411,-85.767679;37.788496,-85.767365;37.78857,-85.767046;37.788639,-85.766725;37.788703,-85.766078;37.788814,-85.760933;37.789642,-85.760301;37.78975,-85.759684;37.78987,-85.759382;37.789938,-85.759085;37.790018,-85.758791;37.790107,-85.758503;37.790208,-85.75822;37.790318,-85.757943;37.790438,-85.757674;37.790569,-85.757412;37.790707,-85.757159;37.790856,-85.756915;37.791014,-85.756682;37.791181,-85.756458;37.791358,-85.756242;37.791544,-85.756039;37.791737,-85.755849;37.791937,-85.755668;37.792144,-85.755495;37.792355,-85.755169;37.792785,-85.754546;37.793658,-85.752286;37.796869,-85.752007;37.797277,-85.751939;37.797381,-85.751239;37.798461,-85.751195;37.798529,-85.750886;37.799025,-85.750031;37.800396,-85.749639;37.801004,-85.749099;37.801814,-85.748669;37.802438,-85.747987;37.803405,-85.74745;37.804165,-85.747377;37.804266,-85.747098;37.804653,-85.746647;37.80523,-85.746176;37.805805,-85.745852;37.806188,-85.745345;37.806762,-85.744612;37.807545,-85.744231;37.807935,-85.74179;37.810343,-85.73939;37.812711,-85.738902;37.813193,-85.738869;37.813224\\\\nPOLYLINE,-86.141899;39.781253,-86.141464;39.780667,-86.141408;39.780591,-86.14131;39.780262,-86.141273;39.779883,-86.141257;39.779838,-86.141261;39.779748,-86.141267;39.779649,-86.141276;39.77955,-86.141287;39.779446,-86.1413;39.779347,-86.141331;39.779149,-86.141371;39.778947,-86.141393;39.778848,-86.141444;39.778654,-86.141499;39.77847,-86.141536;39.778358,-86.14156;39.77829,-86.141571;39.778268,-86.141596;39.778187,-86.141627;39.778106,-86.14167;39.777998,-86.141704;39.777917,-86.141776;39.777756,-86.141814;39.777675,-86.141859;39.77759,-86.141922;39.777469,-86.142539;39.776329,-86.142579;39.776253,-86.142617;39.776176,-86.142685;39.776019,-86.142709;39.775956,-86.142737;39.775889,-86.142765;39.775808,-86.142814;39.775646,-86.142829;39.775592,-86.142866;39.77543,-86.142877;39.775376,-86.142891;39.775295,-86.142903;39.775214,-86.142913;39.775133,-86.142925;39.774994,-86.142946;39.774548,-86.14298;39.773791,-86.142996;39.773431,-86.143018;39.77267,-86.143026;39.772386,-86.143036;39.772012,-86.143048;39.771688,-86.143072;39.770985,-86.143112;39.769873,-86.143123;39.769603,-86.143131;39.769418,-86.143133;39.769368,-86.14314;39.769202,-86.143186;39.768139,-86.14324;39.766892,-86.143277;39.766027,-86.143287;39.765815,-86.143309;39.765365,-86.143313;39.76527,-86.143348;39.764554,-86.143359;39.764329,-86.143361;39.764293\\\\nPOLYLINE,-86.873047;35.739204,-86.872993;35.739399,-86.872948;35.739578,-86.872946;35.739588,-86.872837;35.740024,-86.872731;35.740475,-86.872676;35.740707,-86.87265;35.740819,-86.872588;35.741085,-86.87257;35.74116,-86.872517;35.741386,-86.872511;35.741414,-86.872498;35.741462,-86.872456;35.741641,-86.87238;35.741975,-86.872333;35.742179,-86.872292;35.742359,-86.872088;35.743228,-86.872085;35.743243,-86.871782;35.744533,-86.87148;35.745837,-86.87128;35.746707,-86.8712;35.747046,-86.871072;35.747593,-86.870944;35.748061,-86.870853;35.748398,-86.870732;35.74878,-86.870629;35.749112,-86.870348;35.749921,-86.870311;35.750029,-86.870206;35.750296,-86.870113;35.750521,-86.869837;35.751199,-86.869755;35.751401,-86.869745;35.751425,-86.869661;35.751621,-86.86941;35.752213,-86.869327;35.75241,-86.869311;35.752445,-86.869266;35.75255,-86.869251;35.752586,-86.869192;35.752724,-86.868991;35.753198,-86.868212;35.755036,-86.867953;35.755649,-86.867934;35.755695,-86.867396;35.756952,-86.86738;35.75699,-86.867147;35.757524,-86.866568;35.758907,-86.866096;35.760145,-86.865855;35.760853,-86.865838;35.760906,-86.865555;35.761827,-86.865437;35.762266,-86.865367;35.762525,-86.865246;35.76298,-86.86517;35.763308,-86.865111;35.763571,-86.865077;35.763718,-86.865036;35.763913,-86.86488;35.764748,-86.864728;35.765774,-86.864692;35.766095,-86.864169;35.770864,-86.864072;35.771761,-86.863859;35.77373,-86.863734;35.774894,-86.863585;35.776276,-86.863579;35.776334,-86.863496;35.777078,-86.863269;35.77914,-86.863263;35.779173,-86.863216;35.779484,-86.86311;35.780185,-86.863091;35.780282,-86.862909;35.781238,-86.862723;35.782056,-86.861522;35.78736,-86.861123;35.789128,-86.861097;35.789237,-86.861024;35.789563,-86.861;35.789673,-86.860948;35.789886,-86.860793;35.790529,-86.860742;35.790743,-86.860585;35.791245,-86.860284;35.79208,-86.860059;35.792608,-86.859742;35.793266,-86.859323;35.794021,-86.85931;35.79404,-86.858941;35.794635,-86.858412;35.795391,-86.857768;35.796205,-86.854048;35.800827,-86.853918;35.800988,-86.852661;35.802562,-86.8515;35.804019,-86.850418;35.805384,-86.850378;35.805433,-86.850339;35.805484,-86.850261;35.805582,-86.850222;35.805632,-86.849962;35.805958,-86.849481;35.806585,-86.849403;35.806688,-86.848153;35.808224,-86.847669;35.808857,-86.847248;35.809434,-86.846538;35.81041,-86.846456;35.810523,-86.846211;35.810859,-86.84613;35.810972,-86.845891;35.811328,-86.845034;35.812506,-86.844618;35.813103,-86.844144;35.813757,-86.844069;35.813859,-86.843895;35.814107,-86.843767;35.814287,-86.842573;35.815972,-86.842206;35.816489,-86.841881;35.816941,-86.841091;35.81804,-86.840761;35.818495,-86.840724;35.818551,-86.840445;35.818952,-86.838533;35.821686,-86.838433;35.821825,-86.838323;35.82198,-86.838247;35.822082,-86.838186;35.822168,-86.837506;35.823113,-86.836845;35.824029,-86.836347;35.824774,-86.836038;35.825285,-86.835521;35.826207,-86.835314;35.826611,-86.835114;35.827003,-86.83475;35.827797,-86.834675;35.827986,-86.834413;35.828639,-86.834337;35.828856,-86.83432;35.828905,-86.834106;35.829522,-86.834096;35.829552,-86.833832;35.830449,-86.833591;35.831402,-86.83326;35.83345,-86.833242;35.833591,-86.833216;35.833865,-86.833122;35.834838,-86.832982;35.83739,-86.832918;35.83835,-86.832896;35.838748,-86.83263;35.843316,-86.832627;35.84336,-86.832531;35.844978,-86.832364;35.847851,-86.832254;35.849352,-86.832217;35.849963,-86.832122;35.851626,-86.832112;35.851784,-86.831836;35.856251,-86.831737;35.857947,-86.831646;35.859487,-86.831613;35.860021,-86.831516;35.861563,-86.831462;35.862494,-86.831415;35.863269,-86.830698;35.875002,-86.830686;35.875209,-86.830587;35.87684,-86.8304;35.879901,-86.830198;35.883213,-86.830059;35.885324,-86.829979;35.886139,-86.829583;35.889062,-86.829274;35.891355,-86.829189;35.891972,-86.829181;35.892027,-86.829172;35.892102,-86.829164;35.892166,-86.82916;35.892191,-86.829156;35.892231,-86.829127;35.892458,-86.829116;35.892547,-86.82896;35.893693,-86.828903;35.894122,-86.828814;35.89473,-86.828678;35.895511,-86.82852;35.896286,-86.828344;35.897009,-86.82832;35.897102,-86.828296;35.897203,-86.828108;35.897889,-86.828058;35.898049,-86.828007;35.898216,-86.8279;35.89856,-86.827855;35.898705,-86.827446;35.899883,-86.827431;35.899918,-86.826287;35.902781,-86.825982;35.903619,-86.825813;35.904156,-86.825586;35.904978,-86.825513;35.905247,-86.825197;35.906681,-86.825187;35.90673,-86.825152;35.906907,-86.825143;35.906957,-86.825055;35.90744,-86.825034;35.907558,-86.825024;35.907619,-86.824905;35.908371,-86.824661;35.910255,-86.824239;35.913573,-86.824221;35.91371,-86.824171;35.91411,-86.824168;35.914123,-86.824161;35.914172,-86.824148;35.914261,-86.824077;35.91481,-86.823761;35.917248,-86.823631;35.918064,-86.823578;35.918488,-86.823433;35.919495,-86.823235;35.920536,-86.823065;35.921282,-86.822782;35.922348,-86.822752;35.92246,-86.822546;35.923122,-86.822483;35.923329,-86.82176;35.925421,-86.821594;35.925903,-86.821495;35.926186,-86.821354;35.92659,-86.821194;35.927048,-86.820294;35.929634,-86.820183;35.929952,-86.819994;35.930497,-86.819776;35.93112,-86.819125;35.93299,-86.818909;35.933614,-86.818802;35.933923,-86.81876;35.93404,-86.818715;35.934169,-86.818702;35.934207,-86.818538;35.93468,-86.817601;35.937379,-86.817426;35.937877,-86.817055;35.938943,-86.817011;35.93907,-86.816955;35.939229,-86.816786;35.939717,-86.816753;35.939813,-86.816364;35.940939,-86.81585;35.942424,-86.815549;35.943295,-86.815277;35.944073,-86.814461;35.946409,-86.81419;35.947188,-86.814172;35.947239,-86.814117;35.947394,-86.8141;35.947446,-86.814078;35.947506,-86.814073;35.947518,-86.814051;35.947585,-86.813999;35.947737,-86.813975;35.947811,-86.813649;35.948748,-86.812988;35.950654,-86.812673;35.951561,-86.812348;35.952499,-86.812323;35.952568,-86.81225;35.952776,-86.812227;35.952846,-86.812132;35.953117,-86.811849;35.95393,-86.811755;35.954202,-86.811486;35.954976,-86.811303;35.9555,-86.809949;35.959397,-86.809575;35.960475,-86.809498;35.960697,-86.809489;35.960723,-86.809476;35.960757,-86.809467;35.960782,-86.809247;35.961422,-86.809207;35.961537,-86.809169;35.961646,-86.809101;35.961839,-86.808064;35.964831,-86.808053;35.964862,-86.808001;35.965008,-86.807892;35.965324,-86.807762;35.965693,-86.80767;35.965953,-86.807631;35.966064,-86.807613;35.966113,-86.80761;35.966125,-86.807589;35.966186,-86.807562;35.966262,-86.807546;35.966312,-86.807228;35.967232,-86.806873;35.968262,-86.806751;35.968622,-86.806276;35.969995,-86.805959;35.970916,-86.804388;35.97543,-86.803589;35.977726,-86.801641;35.983401,-86.801249;35.984535,-86.799711;35.988984,-86.799326;35.990099,-86.799244;35.990336,-86.799095;35.990742,-86.798185;35.993401,-86.79815;35.993502,-86.797863;35.994325,-86.797004;35.996794,-86.796974;35.996883,-86.796745;35.997513,-86.796715;35.997589,-86.796705;35.997613,-86.796509;35.998055,-86.796227;35.998577,-86.796052;35.99884,-86.796028;35.998878,-86.795753;35.999271,-86.795479;35.999607,-86.79525;35.999866,-86.795029;36.000092,-86.793643;36.001447,-86.793198;36.001878,-86.7922;36.002849,-86.792114;36.002933,-86.790846;36.004165,-86.788306;36.006635,-86.786786;36.008117,-86.786382;36.008512,-86.786189;36.008711,-86.785998;36.008923,-86.785801;36.009171,-86.785552;36.009539,-86.785451;36.009712,-86.785268;36.010083,-86.785233;36.010156,-86.785098;36.010515,-86.784958;36.011067,-86.784912;36.011378,-86.784882;36.011871,-86.784883;36.011883,-86.784894;36.012193,-86.78493;36.012483,-86.784938;36.012552,-86.784958;36.012689,-86.785047;36.013089,-86.785354;36.014183,-86.786004;36.016487,-86.786108;36.016855,-86.786685;36.01893,-86.786772;36.019252,-86.786999;36.020104,-86.787066;36.02049,-86.787095;36.020932,-86.787095;36.020971,-86.787094;36.021141,-86.787057;36.021611,-86.78698;36.022022,-86.786934;36.022194,-86.786804;36.022568,-86.786591;36.023045,-86.786369;36.023438,-86.786308;36.023548,-86.784581;36.026555,-86.784439;36.026836,-86.784248;36.027252,-86.784136;36.027551,-86.784019;36.027905,-86.783909;36.028317,-86.783859;36.028561,-86.783783;36.029034,-86.783584;36.030633,-86.783318;36.032788,-86.783264;36.033222,-86.783229;36.033565,-86.783153;36.034265,-86.783127;36.034497,-86.783107;36.034656,-86.783079;36.034886\\\\nPOLYLINE,-86.889133;35.486706,-86.889156;35.486862,-86.889189;35.487112,-86.889336;35.488586,-86.889687;35.49173,-86.889776;35.492359,-86.889891;35.493022,-86.89013;35.4942,-86.890159;35.494341,-86.89033;35.495029,-86.89054;35.495783,-86.890615;35.496028,-86.890658;35.49617,-86.890789;35.496598,-86.890833;35.496741,-86.891145;35.497699,-86.891728;35.499487,-86.892079;35.500574,-86.892389;35.501534,-86.892626;35.502267,-86.892721;35.502561,-86.893012;35.503517,-86.893188;35.504015,-86.893331;35.504469,-86.893564;35.505205,-86.893747;35.505785,-86.89395;35.506429,-86.894301;35.507524,-86.894474;35.508063,-86.894487;35.508104,-86.894609;35.508486,-86.894978;35.509632,-86.895101;35.510014,-86.895419;35.511012,-86.895832;35.512308,-86.895996;35.512795,-86.896384;35.514005,-86.896705;35.515004,-86.896862;35.515469,-86.896944;35.515708,-86.897247;35.51668,-86.897313;35.516871,-86.897408;35.517147,-86.897468;35.517338,-86.897499;35.517436,-86.897592;35.51773,-86.897623;35.517828,-86.89764;35.517883,-86.897692;35.518048,-86.89771;35.518104,-86.897744;35.518214,-86.897847;35.518544,-86.897871;35.518621,-86.897882;35.518654,-86.897954;35.518876,-86.898173;35.519542,-86.898246;35.519765,-86.898308;35.519955,-86.898495;35.520525,-86.898558;35.520716,-86.898567;35.520745,-86.898619;35.520904,-86.898803;35.521471,-86.898843;35.521593,-86.898865;35.52166,-86.899421;35.523346,-86.899815;35.524538,-86.900448;35.526489,-86.900624;35.52698,-86.901083;35.528406,-86.901253;35.52893,-86.901557;35.529925,-86.901613;35.530101,-86.901691;35.530356,-86.902188;35.531809,-86.905485;35.542196,-86.905543;35.542372,-86.905711;35.542886,-86.905745;35.542994,-86.90581;35.543201,-86.905983;35.543751,-86.906218;35.544475,-86.907226;35.547624,-86.907465;35.54861,-86.907633;35.549597,-86.907699;35.550574,-86.907713;35.551048,-86.907686;35.552034,-86.907645;35.552527,-86.907234;35.555495,-86.907034;35.556972,-86.906866;35.558334,-86.906731;35.559425,-86.906647;35.56014,-86.906446;35.561839,-86.906366;35.56246,-86.906307;35.562916,-86.906276;35.563164,-86.906118;35.564283,-86.906054;35.564739,-86.906049;35.564773,-86.906046;35.564791,-86.906043;35.564823,-86.906026;35.56495,-86.906019;35.565003,-86.906012;35.565051,-86.906005;35.565107,-86.905991;35.565198,-86.905984;35.565247,-86.905876;35.565981,-86.905793;35.566608,-86.90532;35.569963,-86.905148;35.571185,-86.904477;35.575951,-86.903932;35.579821,-86.90352;35.582699,-86.903385;35.58364,-86.903321;35.58411,-86.903194;35.585065,-86.902656;35.588826,-86.90264;35.58893,-86.902596;35.589243,-86.902584;35.589329,-86.902581;35.589348,-86.902564;35.589469,-86.902516;35.589834,-86.902501;35.589956,-86.90245;35.590337,-86.902436;35.590449,-86.902332;35.591486,-86.902294;35.591869,-86.902033;35.594624,-86.901925;35.595768,-86.901127;35.603969,-86.901;35.60553,-86.900989;35.605645,-86.900789;35.607743,-86.900533;35.610439,-86.900196;35.61404,-86.9;35.616139,-86.899986;35.616288,-86.899934;35.616842,-86.899829;35.617692,-86.899818;35.617782,-86.899765;35.618095,-86.899536;35.619345,-86.899393;35.619969,-86.899087;35.621167,-86.898981;35.621528,-86.898757;35.622251,-86.898295;35.623745,-86.898268;35.62383,-86.898189;35.624086,-86.898163;35.624172,-86.898126;35.624289,-86.898019;35.62464,-86.897984;35.624758,-86.897795;35.625376,-86.897617;35.625947,-86.897437;35.62653,-86.896552;35.629378,-86.89651;35.629515,-86.896152;35.630708,-86.895932;35.63144,-86.895893;35.631564,-86.895303;35.633475,-86.895108;35.63413,-86.894854;35.634988,-86.894621;35.635771,-86.894528;35.636085,-86.894281;35.637031,-86.894056;35.638155,-86.894033;35.638272,-86.893985;35.638526,-86.893912;35.638914,-86.893906;35.638959,-86.893899;35.639008,-86.89388;35.639156,-86.893874;35.639206,-86.893854;35.639357,-86.893794;35.63981,-86.893775;35.639962,-86.893748;35.640221,-86.893708;35.640607,-86.893677;35.640999,-86.893657;35.641259,-86.893647;35.641386,-86.893617;35.641767,-86.893608;35.641895,-86.893603;35.641957,-86.893591;35.642113,-86.893587;35.642143,-86.893553;35.642247,-86.893561;35.642717,-86.893529;35.643109,-86.893453;35.644243,-86.893427;35.644625,-86.893374;35.64537,-86.893217;35.647605,-86.893166;35.648351,-86.893152;35.648541,-86.893147;35.648628,-86.893113;35.649112,-86.8931;35.649303,-86.893083;35.649547,-86.893071;35.649703,-86.893015;35.650451,-86.892988;35.650905,-86.892966;35.651306,-86.892958;35.651443,-86.892936;35.651856,-86.892916;35.651991,-86.892858;35.652786,-86.892798;35.65364,-86.892645;35.655843,-86.892581;35.656647,-86.89245;35.658584,-86.892363;35.659895,-86.892336;35.660233,-86.892328;35.660324,-86.892306;35.660597,-86.892302;35.660652,-86.892299;35.660689,-86.89229;35.660802,-86.892266;35.661142,-86.892258;35.661256,-86.892199;35.662069,-86.892085;35.663681,-86.892008;35.664509,-86.891962;35.66502,-86.891922;35.665321,-86.89191;35.665411,-86.891864;35.665762,-86.891788;35.666227,-86.891611;35.66715,-86.891458;35.667818,-86.891391;35.668113,-86.889498;35.675187,-86.889164;35.676439,-86.888842;35.677643,-86.88867;35.678284,-86.888396;35.679309,-86.888155;35.680207,-86.887983;35.680848,-86.887729;35.681824,-86.887592;35.682302,-86.887524;35.682555,-86.886155;35.687678,-86.885884;35.688693,-86.885699;35.689386,-86.885671;35.689485,-86.885591;35.689783,-86.885565;35.689883,-86.885559;35.689902,-86.885545;35.689959,-86.88554;35.689979,-86.885523;35.690039,-86.885473;35.690222,-86.885457;35.690284,-86.885435;35.690364,-86.88537;35.690606,-86.885349;35.690687,-86.885025;35.691885,-86.884783;35.692784,-86.884063;35.695482,-86.883782;35.696537,-86.883743;35.696682,-86.88345;35.69776,-86.88257;35.700996,-86.882278;35.702075,-86.88226;35.70214,-86.882173;35.702527,-86.882112;35.70273,-86.882057;35.702915,-86.881754;35.704079,-86.881589;35.70469,-86.881414;35.705343,-86.881388;35.705439,-86.881316;35.705703,-86.881022;35.706785,-86.880925;35.707146,-86.878613;35.715651,-86.877386;35.720565,-86.87713;35.721708,-86.876981;35.722348,-86.876953;35.722467,-86.87682;35.723041,-86.876567;35.724133,-86.876508;35.724391,-86.876243;35.725483,-86.875396;35.729127,-86.875009;35.730793,-86.874974;35.730939,-86.874872;35.731379,-86.874839;35.731526,-86.874809;35.73165,-86.874722;35.732024,-86.874693;35.732149,-86.874547;35.732775,-86.874464;35.73313,-86.873776;35.736076,-86.873548;35.737058,-86.873473;35.737377,-86.873249;35.738337,-86.873179;35.738638,-86.873175;35.738657,-86.873148;35.738766,-86.87307;35.739093,-86.873052;35.739171,-86.873047;35.739204\\\\nPOLYLINE,-86.889398;35.486478,-86.889415;35.486639,-86.889446;35.486935,-86.889626;35.488476,-86.889763;35.489926,-86.889931;35.491356,-86.890089;35.492579,-86.890242;35.493437,-86.890516;35.494648,-86.890674;35.495261,-86.890838;35.495866,-86.891135;35.496761,-86.89246;35.500857,-86.89266;35.501463,-86.893657;35.504525,-86.89415;35.506039,-86.894559;35.507388,-86.894807;35.508175,-86.895441;35.510156,-86.897149;35.51547,-86.897435;35.516336,-86.897637;35.516971,-86.897681;35.517108,-86.89807;35.51831,-86.898234;35.518794,-86.898244;35.518822,-86.898339;35.519154,-86.898852;35.520617,-86.898868;35.520668,-86.899538;35.522796,-86.900644;35.526167,-86.900966;35.527133,-86.901271;35.528105,-86.901754;35.529578,-86.901829;35.529841,-86.90188;35.530021,-86.901892;35.530065,-86.902229;35.53108,-86.902434;35.531677,-86.903228;35.53415,-86.903692;35.535636,-86.90599;35.54286,-86.906008;35.542916,-86.906013;35.54293,-86.90608;35.543136,-86.906212;35.543542,-86.906519;35.544503,-86.907797;35.54847,-86.908018;35.54922,-86.908178;35.549908,-86.908307;35.55063,-86.908395;35.551395,-86.90843;35.55189,-86.908448;35.552399,-86.908444;35.552833,-86.908426;35.553289,-86.908361;35.553987,-86.90832;35.554296,-86.908261;35.554735,-86.908047;35.556081,-86.907746;35.55764,-86.907532;35.558632,-86.907407;35.559122,-86.907306;35.559613,-86.906973;35.561066,-86.906719;35.562394,-86.906429;35.564149,-86.906327;35.564861,-86.906312;35.564964,-86.906292;35.565101,-86.906276;35.565211,-86.90626;35.565323,-86.905378;35.571614,-86.904837;35.575466,-86.904779;35.575868,-86.904494;35.577832,-86.904077;35.580789,-86.903944;35.581779,-86.903835;35.582546,-86.902909;35.589054,-86.902856;35.589463,-86.902853;35.589489,-86.902677;35.590926,-86.902573;35.591944,-86.90221;35.595774,-86.901644;35.601386,-86.901371;35.604437,-86.901267;35.605731,-86.900311;35.615878,-86.900279;35.616165,-86.900262;35.616314,-86.900173;35.617162,-86.900082;35.617815,-86.899978;35.618504,-86.899832;35.619283,-86.899658;35.620041,-86.899408;35.621021,-86.899171;35.621821,-86.898705;35.62335,-86.898474;35.624191,-86.898336;35.624574,-86.897682;35.626689,-86.89682;35.629478,-86.89637;35.630959,-86.895196;35.634774,-86.894861;35.635921,-86.894578;35.637039,-86.89433;35.638211,-86.894176;35.639212,-86.893992;35.640677,-86.893984;35.640753,-86.893909;35.641759,-86.89389;35.64201,-86.893851;35.642727,-86.893674;35.645145,-86.893657;35.64539,-86.89351;35.647475,-86.893489;35.647971,-86.893456;35.648391,-86.893435;35.648664,-86.893416;35.648902,-86.893387;35.649326,-86.893381;35.64942,-86.893266;35.650846,-86.893237;35.651369,-86.893228;35.651535,-86.893207;35.652019,-86.893205;35.65207,-86.893106;35.653215,-86.893043;35.654095,-86.893009;35.654653,-86.892961;35.655132,-86.892838;35.657081,-86.89266;35.659497,-86.892585;35.660669,-86.892583;35.660697,-86.892534;35.661295,-86.892525;35.661401,-86.892458;35.662368,-86.892392;35.663118,-86.892322;35.664182,-86.892218;35.665172,-86.892181;35.665476,-86.89217;35.66557,-86.892133;35.665842,-86.891902;35.66712,-86.891692;35.668064,-86.889578;35.675973,-86.889482;35.676345,-86.889477;35.676363,-86.889341;35.676833,-86.887885;35.68228,-86.886953;35.685727,-86.88682;35.686239,-86.886161;35.688682,-86.885949;35.689466,-86.885853;35.689856,-86.885785;35.690094,-86.885756;35.690199,-86.885668;35.690524,-86.885105;35.692611,-86.884839;35.693639,-86.884522;35.694797,-86.884425;35.695185,-86.884064;35.696493,-86.883979;35.696827,-86.883488;35.6987,-86.882617;35.70184,-86.882605;35.701888,-86.88256;35.702072,-86.882316;35.703022,-86.881705;35.705324,-86.881677;35.705429,-86.881206;35.707155,-86.878888;35.715758,-86.877661;35.720603,-86.877339;35.722058,-86.877282;35.722275,-86.877267;35.722339,-86.877097;35.723068,-86.877085;35.72312,-86.876987;35.72352,-86.876866;35.72406,-86.876172;35.727007,-86.875116;35.731552,-86.874818;35.732815,-86.874491;35.734208,-86.874285;35.735114,-86.874156;35.735633,-86.873983;35.736408,-86.873675;35.737718,-86.873458;35.738638,-86.873452;35.738667,-86.873335;35.739159,-86.873317;35.739233,-86.87331;35.739262\\\\nPOLYLINE,-86.709716;36.33361,-86.709749;36.33373,-86.709808;36.333837,-86.709862;36.333954,-86.709958;36.334148,-86.711548;36.337373,-86.714531;36.343395,-86.71459;36.343515,-86.714769;36.343877,-86.714829;36.343998,-86.714965;36.344273,-86.715374;36.345101,-86.715458;36.34527,-86.715504;36.345362,-86.715512;36.345377,-86.71554;36.345434,-86.715722;36.345805,-86.716352;36.347091,-86.71636;36.347107,-86.716468;36.347324,-86.71652;36.347428,-86.716566;36.347519,-86.716744;36.347869,-86.716783;36.347948,-86.717423;36.349241,-86.717637;36.349672,-86.718;36.350407,-86.718279;36.35097,-86.719012;36.352456,-86.719084;36.352618,-86.719418;36.353369,-86.719502;36.353558,-86.719622;36.353867,-86.719735;36.354206,-86.719752;36.354254,-86.719867;36.354704,-86.720006;36.355393,-86.720043;36.355649,-86.720063;36.35587,-86.720101;36.356476,-86.720097;36.356858,-86.720095;36.357129,-86.720044;36.357752,-86.719975;36.358225,-86.719942;36.358373,-86.719877;36.35867,-86.719742;36.359145,-86.719589;36.35962,-86.719401;36.360091,-86.719366;36.360168,-86.719186;36.360569,-86.719095;36.360736,-86.719038;36.360839,-86.718923;36.361054,-86.718867;36.361149,-86.718808;36.361251,-86.718651;36.36152,-86.717981;36.362411,-86.717861;36.362571,-86.717537;36.362973,-86.716393;36.364248,-86.715153;36.365621,-86.71437;36.36649,-86.714199;36.366682,-86.714076;36.36682,-86.713699;36.36725,-86.713129;36.367947,-86.712778;36.368422,-86.712492;36.368895,-86.712365;36.36914,-86.712145;36.369614,-86.712052;36.369853,-86.711893;36.370332,-86.711776;36.370806,-86.711696;36.371265,-86.711642;36.371949,-86.711647;36.372433,-86.711666;36.372675,-86.711722;36.37316,-86.711769;36.373403,-86.711882;36.373888,-86.712032;36.374371,-86.712858;36.376662,-86.71316;36.37757,-86.713286;36.378001,-86.713478;36.378657,-86.713674;36.379421,-86.713724;36.379633,-86.71396;36.380792,-86.713994;36.380994,-86.714213;36.382525,-86.714357;36.383477,-86.714417;36.384033,-86.714586;36.385179,-86.714901;36.38675,-86.715236;36.388326,-86.715464;36.389275,-86.716248;36.393231,-86.716361;36.393758,-86.716665;36.395218,-86.716962;36.396567,-86.717114;36.397185,-86.717353;36.397862,-86.717542;36.398296,-86.717603;36.398387,-86.717805;36.398752,-86.718162;36.399279,-86.718868;36.400174,-86.719043;36.400423,-86.719066;36.400455,-86.719312;36.400844,-86.719414;36.401032,-86.719499;36.401214,-86.719574;36.401372,-86.71962;36.401494,-86.719724;36.401766,-86.719845;36.402347,-86.719864;36.402839,-86.719802;36.403705,-86.719723;36.404349,-86.719661;36.404863,-86.719632;36.405431,-86.719628;36.405637,-86.719645;36.405831,-86.719657;36.405976,-86.719693;36.406238,-86.719738;36.406424,-86.719836;36.406742,-86.720416;36.408115,-86.72076;36.408857,-86.720994;36.409464,-86.721135;36.409999,-86.721187;36.410347,-86.72121;36.410821,-86.721192;36.411139,-86.721118;36.411544,-86.721006;36.411932,-86.72085;36.412331,-86.720695;36.412658,-86.720684;36.412684,-86.719906;36.413929,-86.719715;36.414218,-86.719264;36.414906,-86.719141;36.4151\\\\nPOLYLINE,-86.719655;36.416316,-86.720778;36.414708,-86.721738;36.413511,-86.72194;36.413247,-86.722092;36.413061,-86.722294;36.412775,-86.722474;36.412454,-86.722636;36.4121,-86.722738;36.411825,-86.72285;36.411438,-86.722901;36.411134,-86.72294;36.410713,-86.722951;36.410426,-86.723052;36.40769,-86.72303;36.407011,-86.722985;36.406544,-86.72285;36.406039,-86.72276;36.405791,-86.722524;36.405224,-86.722283;36.404769,-86.72208;36.404381,-86.721743;36.403825,-86.721254;36.403022,-86.720749;36.402269,-86.720339;36.401696,-86.719886;36.401093,-86.719862;36.401057,-86.71968;36.400805,-86.719241;36.400216,-86.718813;36.399652,-86.718477;36.399209,-86.71837;36.399068,-86.718153;36.398754,-86.717853;36.39827,-86.717715;36.398017,-86.717551;36.397611,-86.717473;36.397379,-86.71735;36.396999,-86.717136;36.396072,-86.716878;36.394887,-86.716698;36.39405,-86.716642;36.393752,-86.716511;36.392971,-86.716191;36.391468,-86.71606;36.390851,-86.715744;36.389366,-86.715516;36.388294,-86.715204;36.386915,-86.714929;36.385584,-86.714783;36.384735,-86.714681;36.383938,-86.714637;36.383468,-86.714605;36.383293,-86.714469;36.38224,-86.71429;36.38102,-86.714247;36.380779,-86.714018;36.379646,-86.713952;36.379372,-86.713624;36.378159,-86.713398;36.377426,-86.713035;36.376354,-86.712293;36.374283,-86.712165;36.373876,-86.712082;36.373564,-86.712014;36.373216,-86.711952;36.372803,-86.711935;36.372621,-86.711919;36.372029,-86.711926;36.371797,-86.711952;36.37147,-86.712058;36.370814,-86.712178;36.370344,-86.712347;36.36985,-86.712547;36.369371,-86.712892;36.368724,-86.713103;36.368404,-86.713458;36.367912,-86.713857;36.367442,-86.714321;36.366936,-86.714464;36.366778,-86.714628;36.366597,-86.716565;36.364437,-86.718116;36.362695,-86.718503;36.362223,-86.718676;36.361981,-86.718998;36.361494,-86.719022;36.361453,-86.719287;36.360999,-86.719417;36.360746,-86.719531;36.360525,-86.719724;36.360087,-86.719745;36.360039,-86.72001;36.359307,-86.720152;36.358812,-86.720266;36.358277,-86.720344;36.357786,-86.720392;36.357329,-86.720412;36.356847,-86.720397;36.356202,-86.720352;36.355697,-86.72028;36.355226,-86.720179;36.354748,-86.720066;36.354267,-86.719903;36.353784,-86.719724;36.353312,-86.719516;36.35284,-86.717918;36.349616,-86.717615;36.349007,-86.717015;36.347798,-86.716785;36.347335,-86.716692;36.347147,-86.716579;36.346958,-86.715657;36.345042,-86.715609;36.344943,-86.715139;36.343997,-86.714777;36.343219,-86.714406;36.342465,-86.714078;36.341819,-86.713808;36.341309,-86.710373;36.334283,-86.710266;36.334064,-86.710074;36.333726\\\\nPOLYLINE,-86.882569;35.306094,-86.882568;35.306191,-86.882565;35.306348,-86.882563;35.306399,-86.882559;35.306551,-86.882558;35.306603,-86.882546;35.306998,-86.882511;35.308182,-86.8825;35.308578,-86.882478;35.309308,-86.882444;35.310509,-86.882433;35.311119,-86.88243;35.311324,-86.882424;35.311502,-86.882404;35.312233,-86.882373;35.313318,-86.882282;35.316575,-86.882255;35.317552,-86.882253;35.317606,-86.882252;35.317661,-86.88225;35.317741,-86.882249;35.317775,-86.88222;35.318823,-86.882124;35.322312,-86.8821;35.323188,-86.88209;35.323475,-86.882079;35.323752,-86.882049;35.324587,-86.88204;35.324849,-86.882002;35.326593,-86.88196;35.327594,-86.881938;35.328132,-86.881882;35.328828,-86.881785;35.329688,-86.881636;35.3307,-86.881485;35.331538,-86.881229;35.332666,-86.881018;35.333471,-86.880843;35.334052,-86.880564;35.334905,-86.88041;35.335338,-86.880315;35.335582,-86.879815;35.336876,-86.879699;35.33717,-86.879448;35.337804,-86.879342;35.338073,-86.879321;35.338126,-86.879182;35.338473,-86.879055;35.338848,-86.878972;35.339098,-86.878929;35.339259,-86.878781;35.340184,-86.878678;35.340611,-86.878631;35.341113,-86.878629;35.341138,-86.878621;35.341435,-86.878622;35.341791,-86.878627;35.341884,-86.878639;35.342122,-86.878671;35.34246,-86.878721;35.342804,-86.878763;35.343093,-86.878824;35.343397,-86.879018;35.344122,-86.879131;35.344462,-86.879263;35.344786,-86.879394;35.34511,-86.879508;35.345364,-86.879549;35.345444,-86.879773;35.345872,-86.879934;35.346155,-86.879997;35.346255,-86.880208;35.34659,-86.880581;35.347112,-86.88113;35.347764,-86.882404;35.34922,-86.883405;35.350365,-86.883748;35.350802,-86.883946;35.351089,-86.884084;35.35131,-86.884286;35.351667,-86.884465;35.352009,-86.884667;35.352459,-86.884793;35.352809,-86.884956;35.35341,-86.885067;35.353993,-86.88525;35.355662,-86.885328;35.356315,-86.885375;35.356788,-86.885707;35.359871,-86.885902;35.36168,-86.886126;35.363674,-86.886146;35.363856,-86.88624;35.364739,-86.886265;35.364972,-86.886436;35.366563,-86.886454;35.367015,-86.886431;35.367656,-86.886403;35.367941,-86.886391;35.368074,-86.886295;35.368578,-86.886178;35.368987,-86.886149;35.369087,-86.886038;35.369401,-86.886003;35.369505,-86.885725;35.370133,-86.885716;35.370148,-86.885543;35.37046,-86.885479;35.370578,-86.884807;35.371633,-86.884604;35.371943,-86.884267;35.372459,-86.884219;35.372533,-86.883999;35.372889,-86.88367;35.373425,-86.883513;35.373724,-86.883404;35.373954,-86.88339;35.373988,-86.883295;35.374243,-86.883256;35.374385,-86.88322;35.374514,-86.883181;35.374657,-86.88314;35.37491,-86.883119;35.375043,-86.883091;35.375302,-86.883076;35.375639,-86.883079;35.376112,-86.883127;35.377077,-86.88319;35.378552,-86.883274;35.380505,-86.883298;35.38143,-86.883272;35.382056,-86.883234;35.382386,-86.883147;35.382872,-86.883059;35.383237,-86.882894;35.383753,-86.882772;35.384072,-86.882471;35.384693,-86.880438;35.388438,-86.879807;35.389603,-86.879559;35.39008,-86.879382;35.39048,-86.879225;35.390893,-86.879098;35.391308,-86.879017;35.391637,-86.878926;35.392174,-86.878883;35.392719,-86.87888;35.393005,-86.878879;35.393258,-86.878892;35.393472,-86.878945;35.393919,-86.879037;35.394403,-86.879503;35.396304,-86.87969;35.397046,-86.879807;35.397511,-86.880009;35.398357,-86.880016;35.398385,-86.880364;35.399719,-86.880468;35.400135,-86.880955;35.402085,-86.881092;35.402693,-86.881152;35.403124,-86.881176;35.403536,-86.881169;35.403781,-86.88113;35.404152,-86.881026;35.404651,-86.880929;35.404969,-86.880762;35.405422,-86.880055;35.407086,-86.879942;35.407351,-86.878496;35.410725,-86.877639;35.412726,-86.877438;35.413214,-86.877289;35.413642,-86.877181;35.414024,-86.877073;35.414605,-86.877042;35.41482,-86.877003;35.415358,-86.87701;35.415894,-86.877082;35.416598,-86.877229;35.417299,-86.877479;35.418495,-86.878027;35.420994,-86.878291;35.422199,-86.878735;35.424218,-86.879136;35.426067,-86.879321;35.426917,-86.879339;35.427001,-86.87944;35.427465,-86.880358;35.431659,-86.880664;35.433058,-86.880674;35.433105,-86.880801;35.433696,-86.881215;35.435613,-86.881353;35.436252,-86.881377;35.436362,-86.88146;35.436745,-86.881783;35.438224,-86.881891;35.438717,-86.882052;35.439453,-86.882157;35.439934,-86.882954;35.443588,-86.882968;35.443651,-86.883496;35.445834,-86.883567;35.446392,-86.883926;35.448031,-86.883979;35.448282,-86.884164;35.449153,-86.884167;35.449167,-86.884176;35.449209,-86.884179;35.449223,-86.884189;35.449269,-86.88421;35.449363,-86.884219;35.449409,-86.88423;35.449456,-86.884237;35.449489,-86.884239;35.449498,-86.884326;35.449898,-86.884587;35.451098,-86.884675;35.451499,-86.884706;35.451648,-86.88485;35.452245,-86.885076;35.45321,-86.885146;35.453547,-86.885671;35.456044,-86.88569;35.456129,-86.885871;35.456996,-86.886108;35.458127,-86.886364;35.459539,-86.886577;35.460996,-86.886752;35.462445,-86.887297;35.467331,-86.887642;35.470482,-86.887849;35.47246,-86.888023;35.474115,-86.88872;35.48031,-86.889036;35.48303,-86.889398;35.486478\\\\nPOLYLINE,-86.889133;35.486706,-86.888452;35.480413,-86.887937;35.475821,-86.88758;35.472485,-86.887333;35.470534,-86.886577;35.464684,-86.885941;35.459832,-86.885796;35.458846,-86.885723;35.45843,-86.88553;35.457372,-86.885457;35.457032,-86.885115;35.455427,-86.884701;35.453534,-86.884608;35.453107,-86.884534;35.452828,-86.884364;35.452169,-86.883833;35.449553,-86.883823;35.449505,-86.883802;35.449412,-86.883771;35.449268,-86.883754;35.449192,-86.883101;35.446312,-86.882911;35.445315,-86.88203;35.441267,-86.881928;35.440774,-86.881845;35.440434,-86.881606;35.43934,-86.88147;35.438717,-86.881004;35.436581,-86.880949;35.436328,-86.880929;35.436236,-86.880245;35.433084,-86.880231;35.433021,-86.879412;35.429278,-86.878994;35.427341,-86.878955;35.427161,-86.878768;35.426304,-86.877598;35.42094,-86.877406;35.420059,-86.876861;35.417536,-86.876794;35.417224,-86.876695;35.41669,-86.876648;35.416249,-86.876631;35.415648,-86.876658;35.415143,-86.87669;35.414862,-86.876765;35.414436,-86.876864;35.414019,-86.876996;35.413598,-86.877112;35.413287,-86.878269;35.410564,-86.879635;35.407372,-86.879787;35.407016,-86.880572;35.405171,-86.880745;35.40465,-86.880832;35.404226,-86.880883;35.403852,-86.880892;35.403462,-86.880864;35.403041,-86.880791;35.402601,-86.880748;35.402387,-86.880233;35.400354,-86.880102;35.399797,-86.879711;35.398336,-86.879527;35.397558,-86.878792;35.394594,-86.878703;35.394167,-86.878644;35.393737,-86.878604;35.393282,-86.878604;35.39281,-86.878643;35.392214,-86.878705;35.39181,-86.878798;35.391362,-86.878802;35.391343,-86.878927;35.390927,-86.879082;35.390494,-86.879262;35.390077,-86.879863;35.388939,-86.882267;35.384511,-86.882499;35.384003,-86.882667;35.383571,-86.882876;35.382834,-86.882938;35.38252,-86.882995;35.382083,-86.883017;35.381642,-86.883012;35.381171,-86.882916;35.378837,-86.882812;35.37653,-86.882776;35.376048,-86.882821;35.375255,-86.882876;35.374806,-86.88295;35.374462,-86.883201;35.373727,-86.883542;35.373063,-86.883868;35.372582,-86.884318;35.371881,-86.884905;35.370928,-86.885132;35.370472,-86.885298;35.369933,-86.885412;35.36956,-86.885511;35.369136,-86.885519;35.369081,-86.885543;35.368878,-86.885605;35.368364,-86.885622;35.367899,-86.885607;35.367472,-86.885454;35.365971,-86.885187;35.363513,-86.885159;35.36326,-86.884877;35.360622,-86.884388;35.35609,-86.884101;35.353565,-86.883925;35.352682,-86.88374;35.352132,-86.883578;35.35177,-86.883553;35.351723,-86.883255;35.35116,-86.882816;35.350416,-86.881864;35.349251,-86.880802;35.348063,-86.880482;35.347696,-86.880155;35.347302,-86.879895;35.34695,-86.879878;35.346927,-86.879653;35.346605,-86.879436;35.346265,-86.879242;35.345932,-86.878902;35.345253,-86.878753;35.344906,-86.878571;35.34442,-86.878416;35.343921,-86.878327;35.343564,-86.878252;35.343209,-86.878178;35.342746,-86.878135;35.342369,-86.878109;35.341972,-86.878108;35.341308,-86.878117;35.34106,-86.878153;35.340618,-86.878307;35.339675,-86.878323;35.339628,-86.878572;35.33877,-86.8789;35.337903,-86.879002;35.337648,-86.880123;35.334849,-86.880309;35.334342,-86.880555;35.333548,-86.880633;35.333258,-86.880778;35.332575,-86.880911;35.331786,-86.880951;35.331356,-86.881041;35.330399,-86.881268;35.327526,-86.881301;35.326733,-86.881474;35.324799,-86.881649;35.322801,-86.881654;35.322736,-86.881886;35.319791,-86.88193;35.318984,-86.881964;35.317818,-86.881967;35.317719,-86.88197;35.317593,-86.882098;35.313061,-86.882113;35.311316,-86.882153;35.311076,-86.882192;35.307891,-86.88225;35.306984,-86.882268;35.306721,-86.882271;35.306529,-86.882277;35.306222,-86.88228;35.306075\\\\nPOLYLINE,-86.115117;37.057241,-86.115408;37.057167,-86.116497;37.056894,-86.117997;37.05664,-86.119516;37.056509,-86.119999;37.056487,-86.121016;37.056439,-86.122508;37.05637,-86.124007;37.056299,-86.124972;37.056243,-86.125476;37.056213,-86.126159;37.056137,-86.126645;37.056072,-86.126905;37.056037,-86.126917;37.056034,-86.12762;37.055906,-86.128144;37.055794,-86.128291;37.055762,-86.129621;37.055412,-86.130943;37.055061,-86.132272;37.054712,-86.133623;37.05436,-86.135003;37.053994,-86.136421;37.053616,-86.137821;37.053195,-86.139186;37.05273,-86.140535;37.052268,-86.141882;37.051797,-86.143235;37.051327,-86.144607;37.050855,-86.147405;37.049884,-86.14882;37.049399,-86.150233;37.048908,-86.151661;37.04843,-86.152431;37.048198,-86.15312;37.04799,-86.15462;37.04758,-86.156167;37.047206,-86.157734;37.046831,-86.159312;37.046463,-86.161196;37.046015,-86.161889;37.045848,-86.1624;37.045725,-86.162958;37.045593,-86.163895;37.045371,-86.165358;37.045026,-86.166787;37.044685,-86.168205;37.044349,-86.169626;37.044015,-86.170102;37.043901,-86.171053;37.043671,-86.172496;37.043333,-86.173955;37.042985,-86.175455;37.042633,-86.177004;37.042267,-86.178607;37.041934,-86.180247;37.041656,-86.18186;37.041438,-86.183465;37.041275,-86.185091;37.041162,-86.186729;37.041109,-86.188346;37.041106,-86.189941;37.041159,-86.191529;37.041239,-86.193129;37.041323,-86.194752;37.041406,-86.196399;37.041493,-86.198059;37.041576,-86.199837;37.041671,-86.201386;37.041747,-86.203071;37.041834,-86.203963;37.041881,-86.204794;37.041925,-86.205675;37.04197,-86.206165;37.041994,-86.2065;37.042012,-86.206797;37.042027,-86.206819;37.042028,-86.207058;37.04204,-86.20941;37.042162,-86.209837;37.042184,-86.210419;37.042214,-86.211809;37.042287,-86.213527;37.042341,-86.215235;37.04227,-86.216227;37.042166,-86.216934;37.042093,-86.217739;37.041971,-86.218608;37.041785,-86.219386;37.041604,-86.220251;37.041369,-86.221852;37.04087,-86.222769;37.040583,-86.225054;37.039866,-86.226654;37.039366,-86.22826;37.038863,-86.229881;37.038352,-86.231516;37.037846,-86.233145;37.03733,-86.233896;37.037073,-86.23474;37.036752,-86.235397;37.036458,-86.236203;37.036047,-86.236896;37.035651,-86.237513;37.035263,-86.238061;37.034891,-86.238665;37.034414,-86.239153;37.034001,-86.239679;37.033501,-86.24056;37.032538,-86.241349;37.031535,-86.241384;37.031489,-86.242132;37.03053,-86.242943;37.029505,-86.244721;37.027214,-86.245107;37.026709,-86.245897;37.02573,-86.246361;37.025226,-86.246804;37.024776,-86.247301;37.024325,-86.247818;37.023877,-86.248353;37.023462,-86.248911;37.02306,-86.249484;37.022686,-86.250079;37.022321,-86.251327;37.02166,-86.252008;37.021354,-86.252634;37.021086,-86.253362;37.020815,-86.254002;37.020607,-86.255403;37.020217,-86.256072;37.020066,-86.256824;37.019925,-86.258248;37.01972,-86.260706;37.019394,-86.261084;37.019343,-86.262526;37.019152,-86.263985;37.018955,-86.265433;37.018755,-86.266919;37.018556,-86.269929;37.018146,-86.271404;37.017959,-86.27278;37.017759,-86.273434;37.017648,-86.274113;37.017509,-86.2754;37.017197,-86.277982;37.016502,-86.279319;37.016135,-86.280678;37.015764,-86.28206;37.015393,-86.283459;37.015015,-86.286159;37.014283,-86.287125;37.01402,-86.287609;37.013888,-86.288886;37.013548,-86.290149;37.013251,-86.291438;37.013025,-86.292764;37.012868,-86.294119;37.01278,-86.295489;37.012773,-86.296866;37.012814,-86.298229;37.012861,-86.299585;37.012905,-86.300958;37.012938,-86.302336;37.012911,-86.303653;37.012815,-86.304982;37.012713,-86.306289;37.01263,-86.306341;37.012627,-86.307081;37.012595,-86.307734;37.012566,-86.308115;37.012552,-86.310622;37.012463,-86.312052;37.012405,-86.312541;37.012387,-86.313448;37.012352,-86.316075;37.012259,-86.318826;37.012149,-86.321508;37.012044,-86.322839;37.011994,-86.324183;37.011945,-86.32546;37.011894,-86.326957;37.011837,-86.328397;37.011784,-86.331352;37.011671,-86.332844;37.011617,-86.334306;37.011556,-86.335747;37.011499,-86.336434;37.011455,-86.337168;37.011408,-86.338573;37.011285,-86.339568;37.011196,-86.341298;37.011045,-86.342643;37.010924,-86.345402;37.01068,-86.346818;37.010556,-86.348252;37.010423,-86.348802;37.010352,-86.349673;37.01024,-86.350738;37.01006,-86.350995;37.010017,-86.351503;37.009928,-86.35224;37.009799,-86.353635;37.00955,-86.35499;37.009306,-86.356351;37.009067,-86.357719;37.008821,-86.35775;37.008816,-86.360462;37.00833,-86.361828;37.008088,-86.362331;37.007998,-86.362971;37.00788,-86.363535;37.007777,-86.363943;37.007697,-86.364273;37.007626,-86.364521;37.007575,-86.364977;37.007459,-86.365491;37.007316,-86.365742;37.007239,-86.365879;37.0072,-86.366246;37.007078,-86.366966;37.006819,-86.36746;37.006615,-86.36802;37.006361,-86.368086;37.006331,-86.368189;37.006278,-86.368796;37.005965,-86.368969;37.005875,-86.369136;37.005789,-86.370117;37.005202,-86.370422;37.005,-86.371027;37.004551,-86.371449;37.00422,-86.371934;37.0038,-86.37281;37.002961,-86.373685;37.002101,-86.375431;37.000358,-86.376651;36.999149,-86.377198;36.998608,-86.377672;36.998136,-86.378467;36.997604,-86.379694;36.996493,-86.381649;36.994525,-86.382804;36.993384,-86.383506;36.992106,-86.383904;36.991385,-86.384632;36.990345,-86.385124;36.989326,-86.385247;36.988825,-86.385301;36.988607,-86.385434;36.988362,-86.385467;36.988298,-86.386;36.987301,-86.386551;36.986282,-86.387675;36.984186,-86.388247;36.983113,-86.388621;36.982399,-86.388782;36.982091,-86.388818;36.982022,-86.389826;36.980147,-86.390372;36.979134,-86.390999;36.977951,-86.391012;36.977927,-86.39135;36.977287,-86.391871;36.976299,-86.392033;36.975992,-86.392624;36.974883,-86.393225;36.973764,-86.393816;36.972659,-86.39383;36.972631,-86.394389;36.971573,-86.394685;36.97102,-86.394973;36.970481,-86.395581;36.969349,-86.396196;36.968192,-86.396822;36.967022,-86.397465;36.965865,-86.39816;36.964757,-86.398895;36.963678,-86.400479;36.961426,-86.401297;36.960408,-86.402116;36.959299,-86.403108;36.957952,-86.403722;36.957123,-86.404492;36.956076,-86.405248;36.955046,-86.405999;36.95403,-86.406747;36.953013,-86.407496;36.952003,-86.408232;36.950999,-86.408966;36.950001,-86.409277;36.949576,-86.409646;36.949071,-86.409697;36.949002,-86.410404;36.947977,-86.411053;36.946935,-86.411676;36.945879,-86.412294;36.944824,-86.41292;36.943758,-86.413252;36.943189,-86.414205;36.941562,-86.414851;36.940454,-86.415211;36.93984,-86.415496;36.939356,-86.415774;36.93888,-86.416131;36.938269,-86.417392;36.936127,-86.417843;36.935354,-86.418013;36.935062,-86.418168;36.934782,-86.41826;36.93462,-86.418582;36.934038,-86.418605;36.933997,-86.419265;36.93294,-86.419883;36.931873,-86.420151;36.931416,-86.420298;36.931165,-86.42052;36.93079,-86.420854;36.930216,-86.421163;36.929687,-86.421821;36.928581,-86.42247;36.92747,-86.423131;36.92635,-86.423506;36.925711,-86.423801;36.92521,-86.424016;36.924841,-86.424475;36.924059,-86.425155;36.922894,-86.425389;36.922495,-86.425851;36.921704,-86.426934;36.919859,-86.427278;36.919275,-86.427982;36.918065,-86.42866;36.916875,-86.429171;36.915953,-86.429309;36.915704,-86.429921;36.914594,-86.430258;36.913976,-86.430508;36.913514,-86.43112;36.912409,-86.431733;36.911274,-86.432034;36.910724,-86.4321;36.910603,-86.432401;36.910054,-86.432491;36.909887,-86.433058;36.908853,-86.434177;36.906807,-86.436398;36.902751,-86.437085;36.901454,-86.437705;36.900139,-86.438246;36.898813,-86.438727;36.897479,-86.439686;36.89478,-86.440164;36.89344,-86.440634;36.892116,-86.440918;36.891305,-86.441092;36.890809,-86.441118;36.890737,-86.441311;36.890196,-86.441551;36.889525,-86.442004;36.888249,-86.442908;36.885736,-86.443401;36.884483,-86.443928;36.883223,-86.444484;36.881963,-86.445041;36.880716,-86.445588;36.879474,-86.446141;36.878239,-86.446688;36.877007,-86.447784;36.874526,-86.447966;36.874118,-86.448341;36.873283,-86.449451;36.870777,-86.450014;36.869515,-86.45058;36.868229,-86.451163;36.866925,-86.451722;36.865659,-86.452543;36.863811,-86.452782;36.863274,-86.453082;36.862596,-86.453998;36.860526,-86.45458;36.859227,-86.45476;36.858822,-86.455163;36.857919,-86.455763;36.856603,-86.456381;36.855287,-86.456996;36.853969,-86.457613;36.852669,-86.458842;36.850038,-86.459464;36.848695,-86.460106;36.847345,-86.460746;36.845987,-86.461378;36.844627,-86.461851;36.84362,-86.462018;36.843261,-86.462653;36.841909,-86.463279;36.840584,-86.464491;36.837983,-86.465086;36.836684,-86.465625;36.835354,-86.46611;36.834,-86.466237;36.833639,-86.46657;36.832696,-86.466592;36.832635,-86.466913;36.831699,-86.46706;36.831271,-86.467532;36.829926,-86.467996;36.828586,-86.468467;36.827234,-86.468983;36.825869,-86.469574;36.82452,-86.47023;36.823188,-86.470895;36.821881,-86.471544;36.820587,-86.472183;36.819305,-86.472746;36.818017,-86.472815;36.817808,-86.473039;36.817135\\\\nPOLYLINE,-86.115227;37.056977,-86.115813;37.056816,-86.116154;37.056723,-86.117789;37.056429,-86.119473;37.056279,-86.120272;37.056239,-86.121163;37.056194,-86.122866;37.056115,-86.124571;37.056039,-86.12497;37.056004,-86.126271;37.055887,-86.126604;37.055829,-86.12796;37.055591,-86.128229;37.055517,-86.129601;37.05514,-86.131145;37.054557,-86.132641;37.053903,-86.134153;37.053239,-86.137196;37.051908,-86.138736;37.051237,-86.140336;37.050632,-86.142011;37.050142,-86.143729;37.049757,-86.145444;37.049388,-86.14715;37.049017,-86.148588;37.048724,-86.148879;37.048665,-86.150582;37.048274,-86.152254;37.047882,-86.152359;37.047858,-86.153899;37.047492,-86.155576;37.047095,-86.157263;37.046698,-86.158954;37.046298,-86.160648;37.045894,-86.160982;37.045815,-86.161645;37.045659,-86.162862;37.045371,-86.163977;37.045105,-86.164997;37.044863,-86.167233;37.044334,-86.16883;37.043958,-86.169387;37.043825,-86.170416;37.043579,-86.172002;37.043203,-86.176685;37.042097,-86.178253;37.041761,-86.179458;37.041546,-86.180278;37.041418,-86.181359;37.041262,-86.182878;37.04109,-86.184389;37.040968,-86.1859;37.040896,-86.187417;37.040864,-86.188945;37.040883,-86.190491;37.040949,-86.192023;37.04103,-86.193538;37.041108,-86.195054;37.041184,-86.196599;37.041263,-86.198156;37.041346,-86.199883;37.041435,-86.202237;37.041555,-86.204176;37.041656,-86.205699;37.041734,-86.206198;37.04176,-86.206537;37.041778,-86.20683;37.041794,-86.207107;37.041808,-86.20719;37.041813,-86.20794;37.041851,-86.209415;37.041927,-86.209854;37.04195,-86.210449;37.04198,-86.211662;37.042042,-86.213152;37.042103,-86.214166;37.042091,-86.214671;37.042073,-86.215341;37.042031,-86.216087;37.041962,-86.216772;37.041875,-86.217556;37.041751,-86.218254;37.041628,-86.218996;37.041455,-86.220401;37.041069,-86.221801;37.040635,-86.222459;37.040429,-86.223212;37.040192,-86.226054;37.039303,-86.227455;37.03886,-86.228846;37.038424,-86.230238;37.037992,-86.231637;37.037551,-86.23305;37.037111,-86.234417;37.036617,-86.235018;37.036359,-86.235691;37.036032,-86.236291;37.035714,-86.236884;37.035361,-86.237449;37.035006,-86.237994;37.034607,-86.238426;37.034275,-86.239009;37.033774,-86.23991;37.032872,-86.240697;37.031925,-86.24105;37.031469,-86.241446;37.03096,-86.242185;37.030004,-86.242944;37.029028,-86.243844;37.027865,-86.24529;37.025996,-86.246123;37.024969,-86.24707;37.023992,-86.24812;37.023085,-86.249268;37.022251,-86.250513;37.021495,-86.251849;37.020815,-86.25327;37.020238,-86.254003;37.019987,-86.254737;37.019762,-86.255476;37.019572,-86.256228;37.019398,-86.257724;37.019147,-86.259174;37.018957,-86.260715;37.018761,-86.261956;37.018603,-86.263332;37.018418,-86.264711;37.018262,-86.266113;37.018083,-86.267557;37.017903,-86.269017;37.017718,-86.270472;37.017532,-86.271939;37.017331,-86.273386;37.017043,-86.274799;37.016681,-86.276168;37.016307,-86.278851;37.015576,-86.280149;37.015215,-86.281454;37.014857,-86.282784;37.014495,-86.28412;37.014135,-86.285442;37.013774,-86.285739;37.013695,-86.286773;37.01342,-86.287284;37.013279,-86.288108;37.013051,-86.289456;37.012703,-86.290838;37.01241,-86.292246;37.012198,-86.29295;37.012127,-86.293673;37.012074,-86.294321;37.012043,-86.295105;37.01203,-86.296525;37.01206,-86.297934;37.012114,-86.299341;37.012171,-86.300747;37.012225,-86.302151;37.012281,-86.303571;37.012335,-86.304994;37.012358,-86.306228;37.012345,-86.30641;37.012343,-86.307063;37.012321,-86.307822;37.012296,-86.308095;37.012285,-86.309226;37.012242,-86.310646;37.012186,-86.312065;37.012134,-86.313729;37.01207,-86.319069;37.011867,-86.321911;37.011761,-86.324741;37.011652,-86.327549;37.011547,-86.328963;37.011491,-86.330386;37.011439,-86.331814;37.011381,-86.333235;37.011326,-86.334646;37.011273,-86.336053;37.011209,-86.337455;37.011112,-86.338831;37.010993,-86.341693;37.010742,-86.342811;37.010643,-86.345441;37.010412,-86.346761;37.010297,-86.34698;37.010277,-86.348094;37.010177,-86.349431;37.010013,-86.350612;37.00982,-86.35075;37.009797,-86.351394;37.00968,-86.352171;37.00954,-86.353352;37.009329,-86.354623;37.0091,-86.355899;37.008876,-86.359771;37.008181,-86.360985;37.007965,-86.362447;37.007707,-86.363774;37.007463,-86.364341;37.007338,-86.365067;37.007161,-86.366298;37.006776,-86.366485;37.006707,-86.366603;37.006665,-86.366966;37.006524,-86.367461;37.006321,-86.36787;37.006129,-86.36822;37.005965,-86.368468;37.005848,-86.368557;37.005807,-86.368649;37.005754,-86.369582;37.005215,-86.370541;37.004562,-86.371463;37.003829,-86.371847;37.00347,-86.372314;37.003033,-86.373137;37.002212,-86.374828;37.000537,-86.375688;36.999689,-86.3764;36.998981,-86.377375;36.998016,-86.37744;36.997953,-86.379191;36.996211,-86.380076;36.995336,-86.38094;36.994478,-86.381743;36.993644,-86.382446;36.99281,-86.383082;36.991951,-86.383157;36.99183,-86.383657;36.99103,-86.384175;36.990077,-86.384685;36.989136,-86.38479;36.988939,-86.384912;36.988715,-86.385039;36.988478,-86.385189;36.988197,-86.386207;36.98628,-86.387384;36.984077,-86.387767;36.98336,-86.388245;36.982458,-86.388441;36.982091,-86.388725;36.981564,-86.3897;36.979737,-86.390198;36.978808,-86.390692;36.977884,-86.390704;36.97786,-86.390742;36.977791,-86.390751;36.977775,-86.391083;36.977172,-86.391226;36.976913,-86.39159;36.976221,-86.391743;36.975934,-86.392268;36.97496,-86.392482;36.974557,-86.393305;36.973012,-86.39332;36.972982,-86.393667;36.972327,-86.393823;36.972033,-86.394367;36.97102,-86.394917;36.969983,-86.396639;36.966754,-86.397265;36.965585,-86.39788;36.964425,-86.398496;36.963293,-86.399162;36.962194,-86.399877;36.961109,-86.400653;36.960031,-86.401498;36.958957,-86.40244;36.957776,-86.403547;36.956377,-86.404096;36.955681,-86.404103;36.955673,-86.404963;36.954588,-86.405829;36.953499,-86.406702;36.952403,-86.407574;36.951297,-86.408449;36.950192,-86.40895;36.949532,-86.409295;36.949079,-86.4094;36.948928,-86.410077;36.94796,-86.410777;36.946853,-86.411426;36.945755,-86.412681;36.943614,-86.412989;36.943095,-86.413304;36.942565,-86.413919;36.941502,-86.414547;36.940435,-86.414827;36.939957,-86.414952;36.939742,-86.415794;36.938311,-86.417605;36.935224,-86.418002;36.934545,-86.41809;36.934395,-86.418313;36.934016,-86.418389;36.933883,-86.419564;36.931877,-86.419882;36.931336,-86.420047;36.931052,-86.420241;36.93072,-86.420813;36.929744,-86.421238;36.929019,-86.421414;36.928717,-86.422039;36.927655,-86.422644;36.926619,-86.423179;36.925708,-86.423756;36.924723,-86.424407;36.923616,-86.424999;36.922604,-86.425135;36.922373,-86.425594;36.921588,-86.426203;36.92055,-86.426721;36.919668,-86.42685;36.919451,-86.427499;36.918343,-86.428118;36.917276,-86.428561;36.916475,-86.428681;36.916259,-86.428901;36.91586,-86.429294;36.915147,-86.429925;36.913991,-86.43057;36.912812,-86.431104;36.911828,-86.431174;36.911699,-86.431438;36.911219,-86.431756;36.910642,-86.431823;36.910521,-86.43224;36.90976,-86.432559;36.909182,-86.433109;36.908177,-86.433745;36.907019,-86.434361;36.90589,-86.434974;36.904771,-86.435583;36.903651,-86.436207;36.902523,-86.436821;36.901366,-86.437384;36.900185,-86.437884;36.898985,-86.438324;36.897785,-86.438747;36.896601,-86.439156;36.895435,-86.439567;36.894282,-86.439977;36.893123,-86.440403;36.891932,-86.440628;36.891278,-86.440805;36.89077,-86.440829;36.890699,-86.44102;36.890163,-86.441275;36.889451,-86.441715;36.888206,-86.442152;36.886974,-86.442588;36.885768,-86.443055;36.884575,-86.443541;36.883392,-86.444059;36.882219,-86.445105;36.879873,-86.445624;36.878698,-86.446146;36.877519,-86.446674;36.876338,-86.447206;36.875136,-86.447713;36.873996,-86.447751;36.873912,-86.448298;36.872682,-86.44884;36.871457,-86.449375;36.870254,-86.449897;36.869075,-86.450418;36.867908,-86.450931;36.866743,-86.45145;36.865571,-86.451976;36.864382,-86.452277;36.863689,-86.452494;36.863186,-86.452554;36.863056,-86.452824;36.862461,-86.453026;36.862015,-86.453564;36.860812,-86.454465;36.858769,-86.454637;36.858379,-86.45518;36.857177,-86.455735;36.855984,-86.456312;36.854759,-86.45689;36.853517,-86.458038;36.851068,-86.458605;36.849865,-86.459172;36.848669,-86.459729;36.847466,-86.461444;36.843815,-86.462018;36.842585,-86.462592;36.841369,-86.46315;36.84017,-86.463697;36.838992,-86.464246;36.837827,-86.464787;36.836657,-86.465266;36.835491,-86.465684;36.834338,-86.465936;36.833605,-86.466083;36.833176,-86.466251;36.832703,-86.466502;36.831993,-86.466589;36.831741,-86.466913;36.830817,-86.46731;36.829654,-86.468105;36.827387,-86.468505;36.826275,-86.469476;36.824066,-86.470042;36.822947,-86.470611;36.821816,-86.471183;36.820674,-86.471761;36.819528,-86.472289;36.818384,-86.472461;36.817899,-86.472725;36.817099\\\\nPOLYLINE,-86.719655;36.416316,-86.718617;36.417903,-86.718383;36.418274,-86.717917;36.419019,-86.717681;36.419387,-86.717446;36.419757,-86.717378;36.419864,-86.717216;36.42012,-86.71653;36.421211,-86.716302;36.421575,-86.716199;36.421736,-86.71589;36.422222,-86.715788;36.422384,-86.715654;36.422595,-86.715251;36.423228,-86.715118;36.42344,-86.714678;36.424133,-86.714444;36.424514,-86.71441;36.424571,-86.713612;36.425829,-86.712818;36.427085,-86.712409;36.42773,-86.711732;36.428802,-86.71169;36.428867,-86.711566;36.429063,-86.711525;36.429129,-86.711481;36.429198,-86.711349;36.429405,-86.711306;36.429475,-86.711112;36.429782,-86.710965;36.430008,-86.710527;36.430703,-86.710502;36.430744,-86.709977;36.431569,-86.708524;36.43387,-86.708188;36.434384,-86.707967;36.434723,-86.707367;36.435584,-86.707322;36.435644,-86.707189;36.435826,-86.707146;36.435887,-86.706557;36.436695,-86.706196;36.437165,-86.706101;36.43729,-86.705394;36.438247,-86.704532;36.439403,-86.704248;36.439792,-86.70367;36.440572,-86.703372;36.440974,-86.703351;36.441001,-86.703068;36.441377,-86.702402;36.44228,-86.702356;36.442342,-86.702143;36.442626,-86.7018;36.443085,-86.701368;36.443665,-86.701111;36.444013,-86.701044;36.444104,-86.700795;36.444432,-86.700118;36.445351,-86.699366;36.44635,-86.694542;36.452974,-86.692536;36.455533,-86.691616;36.45678,-86.691367;36.45711,-86.69134;36.457149,-86.691074;36.457522,-86.687665;36.462111,-86.687262;36.462642,-86.686575;36.463568,-86.686508;36.463659,-86.686307;36.463941,-86.686241;36.464035,-86.686015;36.464339,-86.6855;36.465011,-86.685449;36.465078,-86.683906;36.467146,-86.683491;36.467718,-86.68332;36.467972,-86.683164;36.468205,-86.682907;36.468604,-86.682663;36.469007,-86.682572;36.469162,-86.682325;36.469599,-86.682299;36.469646,-86.682083;36.47006,-86.681883;36.470467,-86.681468;36.471354,-86.681429;36.471438,-86.681287;36.471754,-86.681217;36.472082,-86.681199;36.472116,-86.681145;36.472221,-86.681128;36.472256,-86.680913;36.472678,-86.680524;36.473425,-86.679851;36.474878,-86.67978;36.475032,-86.679446;36.475736,-86.678926;36.476871,-86.678469;36.477851,-86.678206;36.478432,-86.677873;36.479139,-86.677604;36.479732,-86.677285;36.480413,-86.676738;36.481615,-86.676179;36.482824,-86.675902;36.483426,-86.675193;36.484963,-86.674955;36.485472,-86.674651;36.486121,-86.674493;36.486461,-86.673747;36.488073,-86.673446;36.488724,-86.673198;36.489269,-86.672948;36.489833,-86.672579;36.490598,-86.672368;36.491044,-86.672332;36.491123,-86.671929;36.491975,-86.671611;36.49269,-86.67155;36.492834,-86.670889;36.494243,-86.670329;36.495329,-86.670117;36.495723,-86.669861;36.496162,-86.669533;36.496681,-86.669164;36.497221,-86.668832;36.497678,-86.668746;36.497788,-86.668485;36.498127,-86.66798;36.49874,-86.667459;36.499345,-86.667086;36.499733,-86.66655;36.500267,-86.666297;36.500521,-86.664937;36.501866,-86.6644;36.502399,-86.664386;36.502413,-86.662797;36.503984,-86.660817;36.505943,-86.659117;36.50763,-86.65828;36.508454,-86.65799;36.508743,-86.657579;36.509154,-86.65642;36.510298,-86.656388;36.510329,-86.656372;36.510344,-86.656264;36.510449,-86.655896;36.510813,-86.655774;36.510935,-86.655504;36.5112,-86.655236;36.511465,-86.654697;36.512001,-86.654429;36.512269,-86.654072;36.512624,-86.653712;36.512977,-86.652745;36.513929,-86.652212;36.51446,-86.65156;36.515097,-86.651408;36.515247,-86.650845;36.515806,-86.649545;36.517096,-86.648863;36.517774,-86.648587;36.518045,-86.647921;36.518713,-86.647266;36.519436,-86.646547;36.520324,-86.646281;36.520714,-86.645948;36.521226,-86.645679;36.521643,-86.645244;36.522446,-86.64506;36.522826,-86.644778;36.52345,-86.644699;36.523652,-86.643715;36.526173,-86.643544;36.526613,-86.643387;36.527013,-86.643316;36.527194,-86.643102;36.527738,-86.643032;36.52792,-86.642764;36.528605,-86.64212;36.53047,-86.642058;36.530636,-86.641674;36.53136,-86.641255;36.53247,-86.640973;36.533193,-86.640819;36.533587,-86.640774;36.533702,-86.640754;36.533752,-86.640562;36.534247,-86.640498;36.534413,-86.640249;36.535043,-86.639723;36.536377,-86.639501;36.536947,-86.639224;36.537665,-86.638534;36.539419,-86.637737;36.541439,-86.63757;36.541814,-86.637283;36.542409,-86.637065;36.542816,-86.636532;36.543688,-86.636228;36.544142,-86.636095;36.544345,-86.635154;36.545797,-86.634612;36.546629,-86.634436;36.546899,-86.63391;36.547712,-86.633735;36.547983,-86.633589;36.548209,-86.632536;36.549815,-86.631444;36.551483,-86.630927;36.552287,-86.630382;36.553108,-86.629306;36.554779,-86.628949;36.555317,-86.628746;36.555624,-86.627749;36.557149,-86.626947;36.558373,-86.626901;36.558444,-86.626265;36.559437,-86.624944;36.561442,-86.624548;36.562051,-86.623915;36.563028,-86.623751;36.563278,-86.623218;36.564089,-86.622575;36.565088,-86.62196;36.566024,-86.621806;36.566277,-86.62163;36.566513,-86.62147;36.566757,-86.621364;36.566918,-86.621042;36.567416,-86.620375;36.568444,-86.620084;36.568909,-86.618459;36.571403,-86.618179;36.571839,-86.617462;36.572928,-86.616513;36.574389,-86.614795;36.577018,-86.614291;36.577796,-86.614243;36.577868,-86.613512;36.57898,-86.612334;36.58079,-86.611887;36.581478,-86.611864;36.581514,-86.611839;36.581551,-86.611829;36.581565,-86.611727;36.581721,-86.611694;36.581774,-86.611432;36.582176,-86.611123;36.582654,-86.610764;36.5832,-86.610641;36.583379,-86.6\\\"+\\\"1037;36.583775,-86.6103;36.583877,-86.609968;36.584311,-86.609621;36.584737,-86.609484;36.584893,-86.609259;36.585154,-86.608823;36.585624,-86.608475;36.585974,-86.608113;36.586315,-86.607738;36.586646,-86.607351;36.586967,-86.606881;36.587339,-86.606399;36.5877,-86.606316;36.587758,-86.605824;36.588106,-86.605142;36.588569,-86.60513;36.588577,-86.605112;36.588589,-86.605022;36.588652,-86.604993;36.588673,-86.604856;36.588769,-86.604279;36.589137,-86.603353;36.589731,-86.602436;36.590336,-86.602141;36.590533,-86.601726;36.590814,-86.601435;36.591008,-86.601353;36.591063,-86.601328;36.591079,-86.60101;36.591291,-86.600904;36.591363,-86.600852;36.591396,-86.600696;36.591495,-86.600644;36.591528,-86.600556;36.591584,-86.600052;36.591933,-86.599949;36.592001,-86.599641;36.592205,-86.599156;36.592521,-86.597948;36.593325,-86.597846;36.593392,-86.597146;36.593858,-86.596717;36.594142,-86.59628;36.594432,-86.595429;36.594991,-86.595144;36.59518,-86.595003;36.595279,-86.594676;36.595508,-86.594589;36.59557,-86.594154;36.59589,-86.593767;36.596193,-86.593721;36.596229,-86.59341;36.59648,-86.593306;36.596549,-86.592814;36.596918,-86.591268;36.598228,-86.587668;36.601653,-86.587593;36.601676,-86.587499;36.60176,-86.587217;36.602015,-86.587124;36.602101,-86.587074;36.602146,-86.586952;36.60226,-86.586924;36.602283,-86.586873;36.602327,-86.586598;36.602562,-86.58617;36.602949,-86.585941;36.603162,-86.585837;36.60326,-86.585513;36.603559,-86.585121;36.603941,-86.584893;36.604175,-86.58434;36.604765,-86.583672;36.605533,-86.58341;36.605843,-86.583371;36.605892,-86.582735;36.606706,-86.582601;36.606879,-86.581954;36.607849,-86.581797;36.608086,-86.58172;36.608213,-86.581582;36.608447,-86.581418;36.608726,-86.581056;36.609372,-86.580548;36.610341,-86.580283;36.610909,-86.580024;36.611533,-86.579864;36.612003,-86.579733;36.612326,-86.57968;36.612458,-86.579593;36.612723,-86.579512;36.612969,-86.579402;36.61332,-86.579299;36.613654,-86.578917;36.614879,-86.578512;36.616183,-86.578093;36.617539,-86.577776;36.618556,-86.577588;36.619165,-86.577391;36.619781,-86.577338;36.619943,-86.57733;36.61997,-86.577189;36.620434,-86.57714;36.620598,-86.577131;36.620638,-86.577108;36.620706,-86.577005;36.62103,-86.576971;36.621139,-86.5767;36.62199,-86.576679;36.622056,-86.576389;36.623002,-86.575903;36.624548,-86.575822;36.624808,-86.575641;36.625402,-86.57552;36.625798,-86.575253;36.626633,-86.575216;36.62675,-86.574396;36.629396,-86.574154;36.630147,-86.573954;36.630799,-86.573542;36.632151,-86.5735;36.632288,-86.573482;36.632348,-86.573367;36.632697,-86.573323;36.632834,-86.573298;36.632908,-86.573225;36.633133,-86.573201;36.633208,-86.573185;36.633256,-86.573137;36.633402,-86.573122;36.633451,-86.572793;36.634492,-86.572664;36.634919,-86.572523;36.635387,-86.571815;36.637652,-86.571495;36.638694,-86.571442;36.638869\\\\nPOLYLINE,-86.571184;36.638677,-86.571886;36.636468,-86.572481;36.63458,-86.573107;36.632575,-86.573288;36.631992,-86.573675;36.630806,-86.573877;36.630149,-86.574047;36.629553,-86.575363;36.625329,-86.5758;36.623924,-86.576087;36.623023,-86.576365;36.622102,-86.576617;36.621298,-86.576871;36.620522,-86.576881;36.62048,-86.577132;36.619653,-86.578158;36.61638,-86.578342;36.615737,-86.578771;36.614333,-86.578949;36.613733,-86.579127;36.613159,-86.579311;36.612625,-86.579373;36.612471,-86.580198;36.610272,-86.581244;36.608309,-86.582324;36.606812,-86.582815;36.606148,-86.58314;36.60574,-86.58358;36.605204,-86.583839;36.604906,-86.584176;36.604541,-86.584914;36.603781,-86.58562;36.603115,-86.586335;36.602463,-86.586783;36.60206,-86.587598;36.601315,-86.588244;36.600734,-86.588996;36.600075,-86.589675;36.59946,-86.590418;36.598797,-86.591145;36.598141,-86.591735;36.597618,-86.592348;36.597058,-86.593137;36.596359,-86.593567;36.595978,-86.594271;36.595363,-86.594522;36.595163,-86.594731;36.594996,-86.594853;36.594902,-86.595861;36.594137,-86.596198;36.593882,-86.596844;36.593432,-86.596893;36.593397,-86.598211;36.59246,-86.598958;36.591912,-86.599642;36.591412,-86.59971;36.591362,-86.599915;36.591211,-86.599984;36.591162,-86.600117;36.591064,-86.600517;36.590771,-86.600651;36.590674,-86.600912;36.590482,-86.60132;36.590185,-86.601698;36.589909,-86.60196;36.589719,-86.602236;36.589517,-86.603066;36.588913,-86.603343;36.588712,-86.604272;36.588031,-86.604595;36.587795,-86.606688;36.586272,-86.607668;36.58554,-86.608079;36.585209,-86.608319;36.585003,-86.608478;36.584868,-86.608863;36.584519,-86.609309;36.584087,-86.609449;36.583941,-86.609668;36.583713,-86.60988;36.583476,-86.610023;36.583318,-86.610363;36.582915,-86.610625;36.582587,-86.61094;36.58217,-86.611067;36.581989,-86.61118;36.581831,-86.611415;36.581459,-86.611449;36.581405,-86.611478;36.58136,-86.611553;36.581241,-86.611846;36.580816,-86.612737;36.579434,-86.614587;36.576596,-86.615546;36.575135,-86.617437;36.572226,-86.619863;36.568512,-86.62072;36.567175,-86.621054;36.566666,-86.621358;36.566193,-86.621903;36.56536,-86.62242;36.564579,-86.622909;36.563821,-86.623373;36.563114,-86.623832;36.562414,-86.624251;36.561765,-86.624902;36.560777,-86.625293;36.560174,-86.626355;36.558555,-86.626837;36.557797,-86.627236;36.557205,-86.627406;36.556939,-86.629032;36.554431,-86.629542;36.553667,-86.629926;36.55307,-86.631247;36.551054,-86.632358;36.549331,-86.632652;36.548895,-86.633278;36.547941,-86.633609;36.547436,-86.634146;36.5466,-86.634256;36.546429,-86.634354;36.546274,-86.634524;36.546023,-86.635006;36.545288,-86.635761;36.544122,-86.636158;36.543524,-86.636638;36.542783,-86.636818;36.542496,-86.636942;36.542288,-86.637255;36.541722,-86.637449;36.541334,-86.637628;36.540941,-86.638043;36.539927,-86.639513;36.536157,-86.639993;36.534963,-86.640161;36.534504,-86.640242;36.5343,-86.640379;36.533957,-86.640447;36.533775,-86.640609;36.533378,-86.640964;36.532347,-86.641179;36.531758,-86.641511;36.530928,-86.641818;36.530144,-86.642175;36.529265,-86.64249;36.528419,-86.642756;36.527864,-86.643011;36.527121,-86.643454;36.525958,-86.644286;36.523971,-86.644634;36.52303,-86.644944;36.522339,-86.645422;36.521482,-86.645831;36.520814,-86.646521;36.519871,-86.647758;36.518432,-86.648794;36.517431,-86.649605;36.51662,-86.650762;36.515452,-86.652189;36.514097,-86.653158;36.513164,-86.653988;36.512331,-86.654024;36.512297,-86.65406;36.512262,-86.655436;36.5109,-86.655499;36.51084,-86.65565;36.510696,-86.656119;36.51023,-86.656231;36.510085,-86.657483;36.508875,-86.658364;36.508011,-86.661282;36.505126,-86.662047;36.504359,-86.664182;36.502258,-86.664217;36.502223,-86.665353;36.501095,-86.665999;36.500465,-86.666759;36.499692,-86.666999;36.499432,-86.66704;36.499388,-86.667387;36.498991,-86.667863;36.498409,-86.668221;36.497951,-86.668563;36.497486,-86.668993;36.496866,-86.669268;36.496438,-86.669527;36.496003,-86.669769;36.495562,-86.669864;36.495388,-86.670097;36.494956,-86.670315;36.494519,-86.670725;36.493621,-86.671261;36.492485,-86.671677;36.491558,-86.672112;36.490637,-86.672293;36.490248,-86.67249;36.489775,-86.673027;36.488601,-86.673377;36.487854,-86.673854;36.486817,-86.674388;36.485669,-86.674588;36.485235,-86.67534;36.483606,-86.675741;36.482741,-86.676008;36.482154,-86.676589;36.480904,-86.677535;36.47885,-86.678274;36.477271,-86.678749;36.476231,-86.678955;36.475791,-86.679097;36.475461,-86.679623;36.474302,-86.679974;36.47351,-86.680275;36.472849,-86.680344;36.472683,-86.680468;36.472425,-86.680608;36.472111,-86.680665;36.471982,-86.680787;36.471848,-86.681345;36.470647,-86.681856;36.469616,-86.681964;36.469416,-86.682225;36.468957,-86.68254;36.468335,-86.683;36.467625,-86.683544;36.466914,-86.684925;36.465147,-86.685222;36.464729,-86.686014;36.463657,-86.686404;36.463141,-86.686894;36.462475,-86.68715;36.462109,-86.68916;36.459407,-86.690955;36.456992,-86.691037;36.456889,-86.691131;36.45677,-86.692162;36.455359,-86.692368;36.455079,-86.695849;36.450293,-86.699111;36.446037,-86.699258;36.445838,-86.700662;36.443953,-86.702171;36.441928,-86.702487;36.441508,-86.702921;36.440921,-86.703441;36.440225,-86.703587;36.440029,-86.704274;36.439099,-86.706158;36.436563,-86.706534;36.436079,-86.706934;36.435528,-86.707374;36.434893,-86.707578;36.434578,-86.708315;36.433385,-86.708975;36.432348,-86.709333;36.431781,-86.709419;36.431652,-86.709626;36.431322,-86.710299;36.430268,-86.710363;36.430157,-86.710705;36.429625,-86.7109;36.429314,-86.7111;36.429005,-86.711131;36.428955,-86.711258;36.428748,-86.711406;36.428514,-86.711535;36.428313,-86.711582;36.428249,-86.711801;36.427906,-86.71189;36.427757,-86.712088;36.427455,-86.712804;36.426324,-86.713084;36.425895,-86.713364;36.425442,-86.713598;36.425078,-86.713856;36.424665,-86.714257;36.423978,-86.714404;36.423717,-86.714494;36.423567,-86.714771;36.423071,-86.714823;36.422969,-86.71503;36.422564,-86.715345;36.421873,-86.716496;36.419485,-86.717626;36.417493,-86.718365;36.416309,-86.718957;36.415396,-86.719141;36.4151\\\\nPOLYLINE,-86.879239;34.992246,-86.879015;34.992925,-86.878881;34.993514,-86.878824;34.993762,-86.878814;34.993805,-86.878364;34.995477,-86.8783;34.995713,-86.878152;34.996263,-86.878087;34.996677,-86.877945;34.997193,-86.877837;34.997895,-86.877758;34.99874,-86.877738;34.999045,-86.877746;35.000005,-86.877861;35.00056,-86.877913;35.000806,-86.878071;35.001427,-86.878277;35.002211,-86.878422;35.00276,-86.878429;35.002788,-86.878452;35.002875,-86.87846;35.002904,-86.878529;35.003165,-86.878586;35.003387,-86.878701;35.003831,-86.87886;35.004415,-86.878974;35.004835,-86.879039;35.005071,-86.879104;35.005318,-86.879136;35.005441,-86.879232;35.00581,-86.879265;35.005934,-86.879295;35.006046,-86.879302;35.006078,-86.879399;35.006513,-86.879425;35.006625,-86.879431;35.006659,-86.879484;35.006949,-86.87949;35.006977,-86.879513;35.007099,-86.879546;35.007278,-86.879611;35.007827,-86.879646;35.008121,-86.879657;35.008324,-86.879692;35.008915,-86.879692;35.008935,-86.879693;35.009043,-86.879694;35.009139,-86.879695;35.009256,-86.879699;35.009608,-86.8797;35.009663,-86.879697;35.009726,-86.879692;35.009823,-86.879679;35.010113,-86.879675;35.010211,-86.879661;35.010531,-86.879591;35.012479,-86.879538;35.013503,-86.879536;35.013696,-86.879532;35.014275,-86.879532;35.014469,-86.879521;35.014744,-86.879488;35.01557,-86.879478;35.015846,-86.879477;35.015857,-86.879476;35.015891,-86.879476;35.015903,-86.879471;35.016033,-86.879467;35.016141,-86.879446;35.016858,-86.87944;35.017097,-86.879439;35.017116,-86.879437;35.017173,-86.879437;35.017193,-86.879433;35.017296,-86.879423;35.017606,-86.87942;35.01771,-86.879413;35.017903,-86.879394;35.018481,-86.879388;35.018675,-86.879308;35.021338,-86.879263;35.022881,-86.87904;35.029328,-86.878952;35.031891,-86.878946;35.031991,-86.878942;35.032072,-86.878931;35.032277,-86.878928;35.032446,-86.878912;35.033543,-86.87893;35.033813,-86.878961;35.034268,-86.878972;35.034429,-86.878985;35.034559,-86.879039;35.0351,-86.87929;35.037595,-86.879304;35.037734,-86.87937;35.038428,-86.879398;35.038698,-86.879482;35.039508,-86.879511;35.039779,-86.879516;35.03983,-86.879611;35.040795,-86.879737;35.04207,-86.879906;35.043847,-86.879951;35.044308,-86.880007;35.044864,-86.880059;35.045389,-86.880155;35.04635,-86.880163;35.046429,-86.880216;35.046967,-86.880268;35.047494,-86.88027;35.047519,-86.880301;35.047829,-86.880402;35.048807,-86.880404;35.048834,-86.880421;35.049015,-86.880436;35.04917,-86.880459;35.049408,-86.880521;35.050028,-86.88053;35.050123,-86.880541;35.050231,-86.880553;35.050348,-86.880554;35.050362,-86.88056;35.050422,-86.880566;35.050482,-86.880606;35.050885,-86.880654;35.051373,-86.880955;35.054409,-86.881053;35.055386,-86.881057;35.055421,-86.88106;35.055452,-86.881069;35.055543,-86.881073;35.055578,-86.881203;35.056878,-86.881426;35.059102,-86.881477;35.059448,-86.8815;35.059761,-86.881601;35.060778,-86.881731;35.062079,-86.881736;35.062126,-86.881751;35.062267,-86.881756;35.062315,-86.881768;35.062448,-86.881806;35.062849,-86.88181;35.062882,-86.88182;35.062983,-86.882135;35.066127,-86.883075;35.075479,-86.883083;35.07556,-86.883418;35.078703,-86.883425;35.078787,-86.883446;35.079041,-86.883454;35.079126,-86.883494;35.079579,-86.883572;35.08046,-86.88362;35.080939,-86.883666;35.081393,-86.883669;35.081422,-86.883674;35.081474,-86.883701;35.081717,-86.88371;35.081799,-86.883734;35.082063,-86.88378;35.082549,-86.883811;35.082855,-86.883838;35.08312,-86.883848;35.083221,-86.883862;35.083364,-86.883939;35.084098,-86.883965;35.084343,-86.883976;35.084457,-86.88401;35.084799,-86.884022;35.084913,-86.884206;35.086769,-86.884529;35.090005,-86.884652;35.091184,-86.884727;35.092045,-86.884758;35.092337,-86.884883;35.093486,-86.884945;35.094193,-86.884946;35.094208,-86.884954;35.094284,-86.884985;35.094557,-86.884996;35.094648,-86.885007;35.094741,-86.88523;35.097069,-86.885262;35.097397,-86.885732;35.102134,-86.885868;35.103552,-86.885895;35.104107,-86.885888;35.104336,-86.885882;35.104561,-86.885819;35.105103,-86.885697;35.105701,-86.885548;35.106211,-86.885403;35.106611,-86.885364;35.106698,-86.885262;35.106923,-86.885215;35.107028,-86.884907;35.107573,-86.884849;35.107677,-86.884786;35.107788,-86.884749;35.107851,-86.88464;35.108044,-86.884604;35.108108,-86.884042;35.109231,-86.884038;35.10924,-86.883882;35.109529,-86.88282;35.111488,-86.882251;35.112549,-86.881725;35.113533,-86.881657;35.113656,-86.881614;35.113733,-86.881321;35.114261,-86.880338;35.116079,-86.879401;35.117815,-86.879137;35.118342,-86.878838;35.118988,-86.878614;35.119512,-86.87837;35.120154,-86.878063;35.121072,-86.877942;35.121495,-86.87777;35.122189,-86.877635;35.122818,-86.877502;35.123596,-86.877476;35.123782,-86.877419;35.124199,-86.877359;35.124905,-86.877335;35.125511,-86.877319;35.126282,-86.877326;35.126432,-86.877329;35.126534,-86.877339;35.126861,-86.877371;35.127282,-86.877545;35.129525,-86.877555;35.129645,-86.877612;35.130272,-86.877613;35.130284,-86.877614;35.130293,-86.877616;35.130322,-86.877617;35.130335,-86.87762;35.130376,-86.877621;35.130395,-86.877743;35.131883,-86.878067;35.135796,-86.878126;35.13653,-86.878205;35.137513,-86.878251;35.13808,-86.87839;35.139755,-86.878464;35.140633,-86.87854;35.141441,-86.878808;35.14478,-86.878943;35.146456,-86.878973;35.146832,-86.879036;35.147503,-86.879179;35.149323,-86.879223;35.149869,-86.879311;35.15086,-86.879403;35.15207,-86.879485;35.152941,-86.879743;35.156252,-86.879827;35.157154,-86.879884;35.157927,-86.879897;35.158092,-86.880051;35.159832,-86.880095;35.160486,-86.880106;35.160796,-86.880112;35.160975,-86.880119;35.161817,-86.880096;35.162254,-86.88004;35.162874,-86.880025;35.163039,-86.879966;35.163438,-86.879761;35.164574,-86.8795;35.165851,-86.878861;35.169134,-86.878754;35.169685,-86.878647;35.170181,-86.878395;35.171507,-86.878242;35.172286,-86.878235;35.172321,-86.878075;35.173016,-86.877911;35.173478,-86.877753;35.173824,-86.877591;35.174127,-86.877392;35.174426,-86.877344;35.174498,-86.87711;35.174796,-86.876761;35.17517,-86.876396;35.175564,-86.875961;35.176018,-86.875626;35.176403,-86.875404;35.176693,-86.875198;35.177025,-86.875;35.177402,-86.874986;35.177435,-86.874901;35.177639,-86.874771;35.178001,-86.874683;35.178331,-86.874621;35.178657,-86.874543;35.179267,-86.874504;35.179569,-86.874402;35.180484,-86.874383;35.18065,-86.874347;35.180978,-86.874272;35.181441,-86.874239;35.181644,-86.874201;35.181799,-86.874085;35.182199,-86.874009;35.182408,-86.873905;35.182643,-86.873839;35.182794,-86.873617;35.183233,-86.873552;35.183351,-86.873154;35.184069,-86.873142;35.184092,-86.872988;35.184387,-86.872804;35.184817,-86.872713;35.185091,-86.872644;35.18538,-86.872585;35.185696,-86.872552;35.185978,-86.872546;35.186614,-86.872649;35.188795,-86.872664;35.189112,-86.872665;35.189511,-86.87264;35.189847,-86.872563;35.190294,-86.872539;35.190398,-86.872447;35.190734,-86.872314;35.191062,-86.872279;35.191152,-86.872095;35.191526,-86.871302;35.192908,-86.871083;35.19334,-86.870992;35.193539,-86.87052;35.194847,-86.87038;35.195419,-86.870273;35.195823,-86.870262;35.195947,-86.870295;35.197023,-86.870327;35.197608,-86.870362;35.197901,-86.870428;35.198325,-86.870516;35.198743,-86.870689;35.199332,-86.870901;35.199914,-86.871143;35.200451,-86.871461;35.201045,-86.871724;35.20146,-86.872023;35.201883,-86.872131;35.202034,-86.87263;35.202625,-86.872861;35.202891,-86.873522;35.203652,-86.874176;35.204395,-86.87814;35.208894,-86.878359;35.209143,-86.878669;35.209495,-86.87946;35.210396,-86.879734;35.210708,-86.880558;35.211645,-86.880833;35.211958,-86.881247;35.212429,-86.882219;35.213533,-86.884038;35.215599,-86.886372;35.218267,-86.886875;35.218841,-86.88721;35.219257,-86.887544;35.219733,-86.887657;35.219923,-86.887849;35.220246,-86.887906;35.220363,-86.888088;35.220731,-86.88831;35.221282,-86.888414;35.221611,-86.888455;35.221776,-86.888557;35.222178,-86.888573;35.222269,-86.888585;35.222336,-86.888656;35.222937,-86.888674;35.22353,-86.888673;35.223548,-86.888668;35.223887,-86.888606;35.224458,-86.888463;35.22513,-86.887899;35.227314,-86.887578;35.228559,-86.887564;35.228614,-86.887499;35.228872,-86.887262;35.229811,-86.887252;35.229853,-86.887195;35.230127,-86.887119;35.230601,-86.887075;35.230877,-86.887025;35.231545,-86.887017;35.232039,-86.887015;35.232246,-86.887021;35.232396,-86.88703;35.23252,-86.887077;35.233157,-86.887165;35.233768,-86.887305;35.234418,-86.887739;35.23603,-86.887888;35.236669,-86.888019;35.237467,-86.888084;35.238037,-86.88809;35.238134,-86.888128;35.238722,-86.888136;35.239374,-86.888095;35.240213,-86.888006;35.241044,-86.887823;35.242047,-86.887696;35.242568,-86.887447;35.243397,-86.887228;35.244026,-86.886973;35.24462,-86.886683;35.245232,-86.886444;35.245697,-86.886148;35.246209,-86.885681;35.246937,-86.884837;35.248142,-86.883832;35.249563,-86.883512;35.250057,-86.883292;35.250494,-86.883202;35.250716,-86.883061;35.251166,-86.882967;35.251617,-86.882951;35.251776,-86.882923;35.252067,-86.882916;35.252291,-86.88299;35.254022,-86.883031;35.25496,-86.883198;35.258499,-86.883259;35.259165,-86.883319;35.259484,-86.883389;35.259726,-86.883422;35.259839,-86.883466;35.259971,-86.883578;35.260279,-86.883766;35.260664,-86.883932;35.260941,-86.884185;35.261295,-86.884431;35.261603,-86.884828;35.262063,-86.887323;35.264953,-86.88807;35.265832,-86.888809;35.266684,-86.889141;35.267103,-86.889445;35.267521,-86.889818;35.268161,-86.889824;35.268173,-86.889924;35.268364,-86.889998;35.268548,-86.890109;35.268819,-86.890329;35.269484,-86.890424;35.269866,-86.890516;35.270405,-86.890564;35.270967,-86.890574;35.271243,-86.890578;35.271364,-86.890576;35.271387,-86.890557;35.271797,-86.890554;35.27182,-86.890541;35.271965,-86.890438;35.272571,-86.890323;35.273051,-86.890174;35.273517,-86.88998;35.273982,-86.889734;35.274472,-86.889438;35.274964,-86.889072;35.275509,-86.888155;35.27688,-86.887846;35.277373,-86.887587;35.277844,-86.88744;35.278111,-86.887187;35.278604,-86.886868;35.27933,-86.886601;35.280043,-86.886393;35.280707,-86.886269;35.281195,-86.886131;35.281811,-86.885483;35.285179,-86.885248;35.286352,-86.884987;35.287659,-86.884657;35.289378,-86.884506;35.290161,-86.8845;35.290188,-86.884483;35.290269,-86.884478;35.290296,-86.88429;35.291251,-86.883728;35.294117,-86.883541;35.295073,-86.88353;35.29513,-86.883273;35.296459,-86.882957;35.298103,-86.882843;35.298866,-86.882767;35.299614,-86.882736;35.300152,-86.882718;35.300651,-86.882711;35.300868,-86.882686;35.302063,-86.882667;35.302709,-86.882609;35.304647,-86.882591;35.305294,-86.882586;35.305454,-86.882574;35.305933,-86.882569;35.306094\\\\nPOLYLINE,-86.88228;35.306075,-86.882282;35.305987,-86.882294;35.305661,-86.882325;35.30486,-86.882445;35.300274,-86.882501;35.299369,-86.882551;35.29891,-86.882694;35.297976,-86.883244;35.29514,-86.88326;35.295061,-86.883496;35.293858,-86.884164;35.290405,-86.884198;35.290232,-86.884219;35.290124,-86.884427;35.289093,-86.884572;35.288377,-86.885413;35.284066,-86.885534;35.283427,-86.885539;35.283401,-86.885868;35.281667,-86.886086;35.280717,-86.886253;35.280095,-86.886356;35.279767,-86.886713;35.278828,-86.887023;35.278133,-86.887108;35.277953,-86.887143;35.277877,-86.887389;35.277403,-86.887667;35.276913,-86.88796;35.276453,-86.888595;35.275503,-86.88893;35.27502,-86.889228;35.274541,-86.889513;35.273996,-86.889675;35.273627,-86.889846;35.273176,-86.889961;35.272796,-86.890044;35.272396,-86.890083;35.272159,-86.890137;35.27169,-86.890146;35.271508,-86.890159;35.271207,-86.890159;35.271192,-86.890139;35.270585,-86.890056;35.269986,-86.890017;35.269767,-86.889867;35.269222,-86.889705;35.268743,-86.889534;35.268344,-86.889506;35.268279,-86.889293;35.267874,-86.888992;35.267388,-86.88868;35.266957,-86.888171;35.266342,-86.885772;35.263557,-86.884143;35.261654,-86.883888;35.26131,-86.88362;35.260893,-86.883424;35.260504,-86.883306;35.260223,-86.883198;35.259892,-86.88314;35.259715,-86.883083;35.259474,-86.883044;35.259247,-86.883013;35.258957,-86.882944;35.257825,-86.882866;35.255924,-86.882731;35.253075,-86.882712;35.252575,-86.882702;35.252134,-86.882718;35.251845,-86.882731;35.251619,-86.88278;35.251316,-86.882846;35.251023,-86.882909;35.250794,-86.883009;35.250523,-86.883163;35.250179,-86.883386;35.24977,-86.884018;35.248821,-86.884595;35.248012,-86.885354;35.246943,-86.885743;35.246354,-86.886011;35.245918,-86.88623;35.245517,-86.886513;35.244963,-86.886691;35.244584,-86.886973;35.2439,-86.887169;35.243376,-86.887269;35.243072,-86.887463;35.242377,-86.887611;35.241699,-86.887697;35.241213,-86.887764;35.240763,-86.887829;35.240028,-86.887856;35.239348,-86.887839;35.23841,-86.887765;35.237695,-86.887684;35.237125,-86.887524;35.236301,-86.887359;35.235663,-86.887213;35.235169,-86.887082;35.234678,-86.886944;35.23404,-86.886886;35.233694,-86.886829;35.233207,-86.886796;35.232771,-86.886784;35.232343,-86.88678;35.232204,-86.886777;35.232069,-86.886813;35.231431,-86.886885;35.230636,-86.886961;35.230183,-86.886972;35.230122,-86.887237;35.229051,-86.887352;35.228626,-86.888229;35.225256,-86.888371;35.224582,-86.888409;35.224342,-86.888448;35.22396,-86.888459;35.223525,-86.888438;35.222998,-86.888398;35.222644,-86.888347;35.222343,-86.888222;35.221794,-86.888051;35.221263,-86.887972;35.221065,-86.887709;35.220511,-86.887506;35.22015,-86.887434;35.220038,-86.887213;35.219696,-86.887063;35.219491,-86.886832;35.2192,-86.883878;35.215821,-86.880896;35.212427,-86.880533;35.212006,-86.88035;35.211799,-86.879136;35.210428,-86.878832;35.210085,-86.878284;35.209462,-86.874395;35.205039,-86.872835;35.203258,-86.872625;35.203017,-86.872429;35.202791,-86.872121;35.202435,-86.871873;35.202127,-86.871511;35.201643,-86.871259;35.201237,-86.870951;35.20069,-86.870792;35.200374,-86.870533;35.199738,-86.87037;35.199261,-86.870222;35.198711,-86.870076;35.197916,-86.870017;35.197303,-86.870006;35.196996,-86.86997;35.196166,-86.870077;35.195481,-86.870234;35.19483,-86.87052;35.193921,-86.870729;35.19346,-86.870975;35.192952,-86.871463;35.192086,-86.871843;35.191438,-86.871953;35.191217,-86.872095;35.190897,-86.872211;35.190558,-86.872319;35.190087,-86.872362;35.189808,-86.872387;35.189522,-86.872389;35.189247,-86.872365;35.188586,-86.87227;35.186441,-86.872286;35.18585,-86.872303;35.185673,-86.872347;35.185442,-86.872455;35.185012,-86.872589;35.184633,-86.872788;35.18418,-86.873307;35.183224,-86.873535;35.182765,-86.873562;35.182701,-86.873608;35.182591,-86.873753;35.182154,-86.873847;35.181695,-86.873897;35.181235,-86.873921;35.180532,-86.87397;35.178836,-86.874029;35.178357,-86.874105;35.177991,-86.874174;35.177709,-86.874234;35.177514,-86.87441;35.177106,-86.874567;35.176793,-86.874884;35.176277,-86.875085;35.176,-86.875384;35.175642,-86.876763;35.174327,-86.877042;35.173995,-86.877201;35.173779,-86.877319;35.173618,-86.877509;35.173297,-86.877585;35.173154,-86.877671;35.172926,-86.877843;35.172568,-86.878017;35.171938,-86.878152;35.171349,-86.8786;35.169005,-86.878643;35.168779,-86.87961;35.163871,-86.879741;35.163121,-86.87978;35.162775,-86.879793;35.162663,-86.87983;35.162196,-86.879854;35.161705,-86.879853;35.16111,-86.879849;35.161011,-86.879836;35.160805,-86.879806;35.160331,-86.87869;35.146828,-86.878663;35.146495,-86.878397;35.143191,-86.878083;35.139538,-86.878019;35.138599,-86.877978;35.138175,-86.87793;35.137608,-86.877812;35.136215,-86.877644;35.13403,-86.877556;35.133127,-86.877408;35.131246,-86.877322;35.130228,-86.877312;35.130165,-86.877307;35.130093,-86.877266;35.129454,-86.877106;35.127554,-86.877043;35.126574,-86.877043;35.126519,-86.877042;35.126438,-86.877061;35.125147,-86.877142;35.124247,-86.877196;35.12378,-86.877334;35.122911,-86.877419;35.122465,-86.877527;35.121982,-86.877865;35.120766,-86.878148;35.119962,-86.87847;35.119122,-86.878924;35.11818,-86.879401;35.117241,-86.880398;35.11537,-86.881125;35.114066,-86.881532;35.113291,-86.881582;35.113196,-86.882678;35.111194,-86.883197;35.110218,-86.883743;35.109229,-86.883855;35.109004,-86.88423;35.108251,-86.884341;35.108051,-86.884506;35.107753,-86.884568;35.107641,-86.884907;35.107004,-86.885028;35.106776,-86.885066;35.106694,-86.885244;35.106226,-86.885335;35.105946,-86.885408;35.105675,-86.885508;35.105116,-86.88557;35.104682,-86.885599;35.104381,-86.885596;35.103839,-86.885533;35.103033,-86.885471;35.102409,-86.885418;35.101774,-86.884715;35.094673,-86.884709;35.094613,-86.884679;35.094288,-86.884389;35.091401,-86.884285;35.090449,-86.884194;35.089497,-86.88409;35.088541,-86.883899;35.086631,-86.88377;35.085219,-86.883735;35.084879,-86.883591;35.083467,-86.883535;35.082842,-86.883439;35.08196,-86.883426;35.081594,-86.883223;35.079754,-86.883184;35.079365,-86.882961;35.077135,-86.882734;35.07487,-86.882312;35.070662,-86.882208;35.069716,-86.882026;35.067832,-86.881922;35.066883,-86.881511;35.062699,-86.881498;35.062558,-86.881485;35.062426,-86.881465;35.062222,-86.881049;35.058132,-86.880795;35.05562,-86.880321;35.050878,-86.880285;35.050517,-86.880272;35.05038,-86.880258;35.050246,-86.880153;35.049191,-86.880138;35.049043,-86.880114;35.048818,-86.880054;35.04823,-86.87999;35.047595,-86.879981;35.047507,-86.879848;35.046164,-86.879651;35.044182,-86.879322;35.040783,-86.879145;35.039104,-86.879078;35.038392,-86.879019;35.037765,-86.87897;35.037258,-86.878699;35.034525,-86.878663;35.034057,-86.878655;35.03396,-86.878636;35.033292,-86.878643;35.032778,-86.878656;35.032229,-86.878658;35.032163,-86.878808;35.027686,-86.878875;35.025853,-86.879045;35.02032,-86.87909;35.019401,-86.879109;35.018723,-86.879123;35.018195,-86.879128;35.018099,-86.87915;35.017709,-86.87916;35.017518,-86.879175;35.017013,-86.879207;35.015861,-86.879211;35.015728,-86.879213;35.015651,-86.879215;35.015599,-86.879222;35.015426,-86.879248;35.01474,-86.879284;35.013268,-86.879322;35.012445,-86.87935;35.011981,-86.879403;35.010108,-86.879423;35.009168,-86.879426;35.009051,-86.879409;35.008574,-86.879372;35.008084,-86.879292;35.007401,-86.879242;35.007028,-86.879183;35.006708,-86.879113;35.006398,-86.879097;35.006338,-86.87892;35.00565,-86.878281;35.003214,-86.878115;35.002573,-86.877863;35.001603,-86.877688;35.000975,-86.877621;35.000673,-86.877594;35.000552,-86.87749;35.000004,-86.877486;34.99998,-86.87745;34.999681,-86.877419;34.999406,-86.877409;34.99914,-86.877413;34.998917,-86.877443;34.99837,-86.877499;34.997843,-86.87757;34.99749,-86.877823;34.996497,-86.877869;34.99634,-86.878259;34.994884,-86.87834;34.994583,-86.878808;34.992696,-86.878898;34.992238\\\\nPOLYLINE,-86.87331;35.739262,-86.873114;35.740084,-86.873;35.740569,-86.872861;35.741151,-86.872804;35.741391,-86.872413;35.743071,-86.871771;35.745825,-86.871709;35.74612,-86.871581;35.746618,-86.871435;35.74725,-86.871273;35.747869,-86.870916;35.748965,-86.870542;35.75,-86.869934;35.751497,-86.869921;35.751528,-86.869861;35.751657,-86.869526;35.752433,-86.869353;35.752831,-86.868111;35.755759,-86.867588;35.757008,-86.866962;35.75845,-86.866579;35.759404,-86.86631;35.760149,-86.866164;35.760529,-86.865865;35.761493,-86.865643;35.762314,-86.865605;35.762449,-86.865345;35.763571,-86.865314;35.763712,-86.865116;35.764845,-86.865044;35.765362,-86.864392;35.771347,-86.864348;35.771756,-86.864006;35.774951,-86.863869;35.776223,-86.863555;35.779133,-86.863393;35.78022,-86.86321;35.78119,-86.86313;35.781531,-86.861282;35.789708,-86.861053;35.790643,-86.860808;35.791468,-86.860566;35.792117,-86.860299;35.792736,-86.860008;35.793344,-86.859628;35.794031,-86.859299;35.794579,-86.858797;35.795307,-86.858177;35.796111,-86.856287;35.798473,-86.854391;35.800831,-86.851236;35.804756,-86.850596;35.805573,-86.850524;35.805664,-86.850399;35.805824,-86.849567;35.806851,-86.848902;35.80764,-86.848265;35.808437,-86.847581;35.809369,-86.846823;35.810435,-86.846745;35.810545,-86.846321;35.811136,-86.845404;35.81242,-86.844789;35.81328,-86.844393;35.813833,-86.844206;35.814096,-86.844025;35.81435,-86.841146;35.818383,-86.841105;35.81844,-86.840715;35.818986,-86.838794;35.821679,-86.838717;35.821786,-86.838587;35.821968,-86.837522;35.823494,-86.837033;35.824175,-86.836907;35.82436,-86.83614;35.825663,-86.835513;35.826776,-86.834981;35.827951,-86.834616;35.828913,-86.834261;35.829926,-86.834011;35.830797,-86.833913;35.831223,-86.833764;35.831934,-86.833654;35.832593,-86.833641;35.832655,-86.833517;35.833714,-86.83345;35.834409,-86.833001;35.841804,-86.832912;35.843325,-86.832908;35.843387,-86.832537;35.849034,-86.832387;35.8518,-86.832382;35.851874,-86.832119;35.856242,-86.832009;35.858085,-86.831919;35.859512,-86.831806;35.861388,-86.831742;35.862487,-86.831699;35.863203,-86.831483;35.866784,-86.831304;35.869658,-86.830983;35.874934,-86.830968;35.875182,-86.830946;35.875541,-86.830908;35.876222,-86.830859;35.877096,-86.830831;35.87758,-86.830783;35.878367,-86.83076;35.878696,-86.83072;35.87932,-86.830624;35.880922,-86.830545;35.882121,-86.830438;35.883901,-86.830378;35.884874,-86.830339;35.885283,-86.830287;35.885831,-86.830243;35.886279,-86.83016;35.886875,-86.830088;35.887459,-86.830029;35.887916,-86.829787;35.889635,-86.829655;35.8907,-86.829562;35.891324,-86.829471;35.892007,-86.829452;35.892141,-86.829433;35.892279,-86.829392;35.892578,-86.829176;35.894167,-86.829041;35.89505,-86.82888;35.895901,-86.828636;35.896976,-86.828618;35.897045,-86.828486;35.897559,-86.828323;35.898136,-86.828279;35.898273,-86.828249;35.898364,-86.828006;35.899113,-86.827623;35.90016,-86.826565;35.902791,-86.826481;35.903017,-86.826126;35.903965,-86.825763;35.905084,-86.825447;35.90641,-86.825393;35.906676,-86.825246;35.907429,-86.825111;35.908276,-86.824974;35.909374,-86.82486;35.910187,-86.824361;35.914159,-86.824349;35.91422,-86.824333;35.914298,-86.823921;35.917494,-86.823765;35.91886,-86.82361;35.919822,-86.823398;35.920872,-86.823158;35.921871,-86.823007;35.92241,-86.822777;35.923176,-86.822431;35.924197,-86.821821;35.925948,-86.821732;35.926205,-86.821621;35.926527,-86.82042;35.929981,-86.820242;35.930496,-86.820225;35.930544,-86.819152;35.933628,-86.819084;35.933824,-86.818991;35.934088,-86.818979;35.934124,-86.818962;35.934172,-86.818932;35.93426,-86.817264;35.939064,-86.817223;35.939181,-86.817187;35.939283,-86.817006;35.939804,-86.816618;35.940921,-86.816038;35.942586,-86.814393;35.947311,-86.814328;35.947499,-86.814302;35.947572,-86.814277;35.947642,-86.814125;35.948086,-86.81321;35.950719,-86.813127;35.950957,-86.812789;35.951932,-86.811697;35.955085,-86.81162;35.955303,-86.811581;35.955413,-86.80981;35.96051,-86.809726;35.960751,-86.80949;35.961428,-86.809292;35.961997,-86.808969;35.962923,-86.808387;35.964597,-86.808302;35.964842,-86.807886;35.966042,-86.807866;35.9661,-86.807838;35.966179,-86.807804;35.966277,-86.807772;35.966367,-86.80694;35.968778,-86.806373;35.970414,-86.806201;35.970911,-86.804993;35.974384,-86.804226;35.976646,-86.80375;35.977984,-86.803456;35.978818,-86.802939;35.980375,-86.802606;35.981272,-86.802368;35.98194,-86.801894;35.983353,-86.80152;35.984438,-86.79955;35.990155,-86.798427;35.993414,-86.798393;35.993513,-86.797485;35.996124,-86.797256;35.996811,-86.796988;35.99754,-86.79697;35.997588,-86.796947;35.99764,-86.796824;35.997928,-86.796539;35.998493,-86.796204;35.999035,-86.795929;35.999409,-86.795645;35.999758,-86.795295;36.000136,-86.793953;36.00145,-86.79238;36.002978,-86.792326;36.00303,-86.786442;36.008765,-86.786373;36.008841,-86.786087;36.009174,-86.78591;36.00943,-86.785653;36.009841,-86.785471;36.010219,-86.785353;36.010536,-86.785211;36.011071,-86.785151;36.01146,-86.785129;36.011792,-86.785145;36.012239,-86.785176;36.012497,-86.785185;36.012576,-86.785264;36.012996,-86.786116;36.016065,-86.786179;36.016282,-86.786524;36.017472,-86.78725;36.020093,-86.787296;36.020315,-86.787347;36.020813,-86.787353;36.02101,-86.787345;36.021144,-86.787323;36.021553,-86.787239;36.022015,-86.787187;36.022233,-86.787056;36.022636,-86.786934;36.022923,-86.786545;36.023609,-86.784829;36.026585,-86.784714;36.026798,-86.784515;36.027241,-86.784404;36.027507,-86.784282;36.02787,-86.784152;36.028335,-86.784073;36.028759,-86.783943;36.029724,-86.783592;36.032632,-86.783524;36.033245,-86.783495;36.033471,-86.783463;36.033722,-86.783408;36.034113,-86.78335;36.034524,-86.78333;36.034636,-86.783291;36.034858,-86.783268;36.034946\\\\nPOLYLINE,-86.907054;34.579782,-86.906055;34.582396,-86.905943;34.582687,-86.905115;34.58485,-86.902999;34.590377,-86.902403;34.591938,-86.900247;34.597571,-86.899736;34.598931,-86.899645;34.599172,-86.899565;34.599394,-86.899425;34.599784,-86.899276;34.600243,-86.899036;34.601054,-86.898999;34.601178,-86.898871;34.60165,-86.898642;34.602603,-86.89854;34.603086,-86.898367;34.604058,-86.898231;34.605035,-86.898173;34.605528,-86.898165;34.60562,-86.898088;34.606517,-86.898058;34.607012,-86.898035;34.607996,-86.898047;34.608966,-86.898061;34.609299,-86.898088;34.609933,-86.898123;34.610415,-86.898225;34.611369,-86.898355;34.612314,-86.898607;34.613745,-86.899533;34.618778,-86.901175;34.62772,-86.901204;34.627878,-86.901535;34.629699,-86.901692;34.630549,-86.901862;34.631463,-86.902572;34.635291,-86.902793;34.636227,-86.902919;34.636692,-86.903063;34.637177,-86.903351;34.638077,-86.903518;34.638535,-86.903883;34.639442,-86.904284;34.64033,-86.905159;34.642091,-86.905424;34.642609,-86.907163;34.646044,-86.908333;34.648356,-86.909242;34.650134,-86.912865;34.657288,-86.91383;34.659219,-86.916618;34.664715,-86.917759;34.667004,-86.917978;34.667462,-86.918582;34.668837,-86.918961;34.669754,-86.919486;34.671151,-86.919781;34.671999,-86.919978;34.672564,-86.92031;34.673498,-86.921125;34.675863,-86.924196;34.684687,-86.924655;34.686073,-86.924935;34.687,-86.925068;34.687441,-86.925547;34.689247,-86.925872;34.690631,-86.926068;34.691568,-86.926763;34.695229,-86.926927;34.696148,-86.928297;34.70344,-86.929382;34.70929,-86.9297;34.710757,-86.930057;34.712192,-86.930312;34.713151,-86.930737;34.714589,-86.930763;34.714668,-86.931201;34.716016,-86.935702;34.729531,-86.936129;34.730812,-86.937189;34.734004,-86.937495;34.734954,-86.937748;34.735902,-86.93797;34.736847,-86.938158;34.737792,-86.938209;34.738088,-86.938239;34.738264,-86.938368;34.73922,-86.938466;34.740189,-86.938529;34.741165,-86.93855;34.741653,-86.938557;34.742632,-86.938524;34.743619,-86.938432;34.7456,-86.938136;34.751305,-86.938077;34.753204,-86.938077;34.754161,-86.938101;34.755593,-86.938114;34.75582,-86.938183;34.757036,-86.938289;34.758477,-86.938796;34.763405,-86.939123;34.766578,-86.939206;34.767382,-86.939304;34.768332,-86.939495;34.770128,-86.939671;34.771965,-86.939802;34.77393,-86.939825;34.774553,-86.939839;34.774933,-86.939858;34.77591,-86.939862;34.776849,-86.939853;34.777267,-86.939843;34.777775,-86.939786;34.779167,-86.939606;34.782873,-86.939608;34.783032,-86.939585;34.783288,-86.939569;34.783609,-86.939467;34.785696,-86.93907;34.793649,-86.939045;34.794161,-86.939019;34.794679,-86.938967;34.795793,-86.938903;34.797159,-86.938738;34.800461,-86.938673;34.802391,-86.938621;34.804307,-86.938606;34.806215,-86.938613;34.80767,-86.938624;34.810082,-86.938633;34.811005,-86.938637;34.81131,-86.938661;34.814021,-86.938665;34.815961,-86.938681;34.818054,-86.938731;34.824253,-86.938731;34.824292,-86.938732;34.824457,-86.938761;34.828169,-86.938761;34.828316,-86.938734;34.829287,-86.938702;34.829758,-86.938648;34.830226,-86.938576;34.830691,-86.938525;34.830921,-86.938487;34.831152,-86.938382;34.831613,-86.938263;34.832071,-86.938128;34.83253,-86.937973;34.832992,-86.937948;34.833057,-86.937937;34.833085,-86.937795;34.833455,-86.937627;34.833841,-86.937456;34.834235,-86.937274;34.834653,-86.937119;34.834925,-86.937043;34.835083,-86.936813;34.835637,-86.936357;34.836666,-86.936307;34.836801,-86.935598;34.838385,-86.935575;34.838461,-86.933159;34.843876,-86.929253;34.85263,-86.928629;34.854086,-86.928058;34.855554,-86.927806;34.856253,-86.926786;34.859218,-86.925983;34.861509,-86.925746;34.862176,-86.924725;34.865141,-86.922146;34.872542,-86.921633;34.874034,-86.921304;34.874969,-86.92015;34.878253,-86.920063;34.878529,-86.91748;34.88593,-86.916937;34.887405,-86.916728;34.887887,-86.916253;34.888835,-86.915703;34.889752,-86.915398;34.890198,-86.915081;34.890638,-86.914894;34.890875,-86.914743;34.891068,-86.914012;34.891905,-86.912569;34.893475,-86.909094;34.897255,-86.908364;34.898049,-86.907245;34.899285,-86.906904;34.899715,-86.906606;34.900167,-86.906349;34.900638,-86.906141;34.901123,-86.905976;34.901621,-86.905866;34.902128,-86.905809;34.902637,-86.905799;34.903152,-86.905841;34.903664,-86.905931;34.904173,-86.906067;34.904679,-86.906252;34.905167,-86.906296;34.905269,-86.906737;34.906294,-86.907085;34.907101,-86.908345;34.909998,-86.908529;34.910489,-86.908682;34.910987,-86.908809;34.911489,-86.908907;34.911995,-86.908971;34.912502,-86.908998;34.913014,-86.90899;34.91353,-86.908961;34.914041,-86.908911;34.91455,-86.908822;34.915056,-86.908573;34.916067,-86.908491;34.916294,-86.908397;34.916553,-86.908184;34.917031,-86.90797;34.917449,-86.907688;34.91797,-86.906377;34.919949,-86.904693;34.922467,-86.904535;34.922715,-86.903227;34.924668,-86.898466;34.931779,-86.897577;34.933132,-86.897309;34.933596,-86.897081;34.934075,-86.896887;34.934564,-86.896879;34.934588,-86.896723;34.93506,-86.895884;34.939083,-86.894085;34.94771,-86.893975;34.948216,-86.893832;34.948779,-86.89369;34.949212,-86.8935;34.949698,-86.893279;34.950177,-86.893031;34.950649,-86.891485;34.953457,-86.891253;34.953934,-86.891043;34.954415,-86.889473;34.95832,-86.887636;34.962929,-86.887437;34.963427,-86.886985;34.964561,-86.886888;34.964804,-86.886558;34.965633,-86.885191;34.969035,-86.884884;34.969812,-86.884682;34.970296,-86.884457;34.970778,-86.884217;34.971251,-86.88369;34.972177,-86.883398;34.972637,-86.883335;34.972725,-86.883241;34.972858,-86.88119;34.975742,-86.880499;34.976719,-86.8802;34.977141,-86.879906;34.977599,-86.879653;34.978075,-86.879453;34.978566,-86.879305;34.979069,-86.879202;34.979579,-86.8792;34.979597,-86.879157;34.98002,-86.879146;34.980605,-86.879187;34.981047,-86.879263;34.981488,-86.879378;34.981921,-86.879436;34.982061,-86.880162;34.984104,-86.880305;34.984528,-86.880412;34.984884,-86.880479;34.985245,-86.880511;34.985467,-86.880518;34.985815,-86.880518;34.985833,-86.880507;34.986052,-86.880472;34.986343,-86.880319;34.986986,-86.879427;34.990431,-86.879372;34.990657,-86.878994;34.992098,-86.878898;34.992238\\\\nPOLYLINE,-87.615422;31.040726,-87.614697;31.040929,-87.614071;31.041094,-87.613069;31.041369,-87.612447;31.041532,-87.610858;31.041948,-87.609485;31.0423,-87.60812;31.042638,-87.607217;31.04287,-87.606494;31.043065,-87.605772;31.043277,-87.605224;31.043447,-87.604118;31.043817,-87.603476;31.04405,-87.602947;31.04425,-87.602416;31.044458,-87.601791;31.044715,-87.600975;31.045072,-87.600249;31.045405,-87.599367;31.045839,-87.598604;31.046232,-87.598417;31.046336,-87.597972;31.046582,-87.597221;31.047016,-87.596495;31.047454,-87.595792;31.047902,-87.595382;31.048174,-87.594718;31.048634,-87.594261;31.048962,-87.593807;31.049294,-87.593615;31.04944,-87.592905;31.049957,-87.589986;31.052119,-87.589009;31.052835,-87.588347;31.053313,-87.587518;31.053883,-87.5873;31.054023,-87.586646;31.054455,-87.585974;31.054884,-87.584845;31.055578,-87.583925;31.056109,-87.583246;31.056489,-87.582997;31.056628,-87.581929;31.057196,-87.580797;31.057763,-87.579904;31.058193,-87.579223;31.058507,-87.578454;31.058847,-87.577662;31.059185,-87.576932;31.059485,-87.575935;31.059876,-87.56704;31.063179,-87.565178;31.06387,-87.564069;31.064288,-87.563436;31.064548,-87.563138;31.064671,-87.56239;31.064998,-87.562222;31.065068,-87.561488;31.06541,-87.561006;31.065643,-87.560068;31.066129,-87.559528;31.066422,-87.558312;31.06712,-87.557708;31.06749,-87.556963;31.067973,-87.556371;31.068373,-87.553163;31.070609,-87.550896;31.0722,-87.550507;31.072466,-87.55012;31.072737,-87.549735;31.073013,-87.54545;31.075998,-87.543919;31.07707,-87.543539;31.077328,-87.541204;31.078958,-87.538767;31.080659,-87.536471;31.082262,-87.536093;31.082532,-87.535321;31.083065,-87.53508;31.083234,-87.534544;31.083611,-87.534297;31.083778,-87.534152;31.083884,-87.533765;31.084153,-87.533368;31.084436,-87.532974;31.084706,-87.531147;31.08598,-87.530199;31.086642,-87.530124;31.0867,-87.528979;31.087494,-87.528195;31.088046,-87.527463;31.088552,-87.527085;31.08882,-87.526762;31.089048,-87.525958;31.089604,-87.523625;31.091234,-87.515444;31.096949,-87.514734;31.097445,-87.513881;31.098032,-87.513376;31.098359,-87.512448;31.098943,-87.512085;31.099158,-87.511355;31.099576,-87.510617;31.099978,-87.510244;31.100172,-87.509104;31.100732,-87.508715;31.100915,-87.50808;31.101201,-87.507271;31.101547,-87.50689;31.101703,-87.506859;31.101716,-87.506185;31.101977,-87.505507;31.10223,-87.505078;31.102381,-87.504474;31.102583,-87.504045;31.102721,-87.503098;31.103005,-87.502238;31.103245,-87.49667;31.104688,-87.496072;31.104838,-87.495045;31.105103,-87.494873;31.105151,-87.493127;31.1056,-87.492251;31.10583,-87.491717;31.105966,-87.48959;31.106509,-87.488848;31.106703,-87.487775;31.106984,-87.487594;31.107032,-87.486987;31.107188,-87.486543;31.107301,-87.48215;31.108432,-87.481609;31.108573,-87.479675;31.109078,-87.479164;31.109208,-87.478607;31.109349,-87.47828;31.109427,-87.477956;31.10952,-87.47681;31.109813,-87.475179;31.110242,-87.474462;31.110425,-87.474156;31.110504,-87.474131;31.11051,-87.473526;31.110671,-87.471047;31.111303,-87.4696;31.111679,-87.468707;31.111919,-87.467997;31.112123,-87.466934;31.112451,-87.466151;31.112712,-87.46581;31.112832,-87.465348;31.113006,-87.465139;31.113085,-87.464308;31.113406,-87.463852;31.113598,-87.463493;31.11375,-87.462868;31.114028,-87.462803;31.114058,-87.462771;31.114072,-87.46256;31.11417,-87.461965;31.114449,-87.46132;31.114764,-87.46068;31.115094,-87.460122;31.115397,-87.459251;31.115899,-87.458545;31.11632,-87.458003;31.11666,-87.457391;31.117065,-87.456628;31.117591,-87.456026;31.118028,-87.455363;31.118527,-87.454291;31.119348,-87.451293;31.121643,-87.449944;31.122668,-87.449406;31.12306,-87.448849;31.123451,-87.447465;31.124398,-87.446974;31.12472,-87.446704;31.124886,-87.446658;31.124914,-87.446344;31.125107,-87.445399;31.125686,-87.444752;31.126065,-87.444175;31.126389,-87.443227;31.126906,-87.442257;31.127417,-87.441494;31.127801,-87.439887;31.128574,-87.439191;31.128914,-87.43912;31.128948,-87.437486;31.129725,-87.435907;31.130488,-87.435211;31.130821,-87.433759;31.131515,-87.432691;31.132033,-87.429669;31.133484,-87.429025;31.133793,-87.427979;31.134295,-87.426187;31.135159,-87.424763;31.135838,-87.424635;31.135899,-87.422839;31.136769,-87.41961;31.138321,-87.417859;31.139163,-87.416222;31.139944,-87.414618;31.140723,-87.413142;31.141432,-87.411821;31.142067,-87.411447;31.142247,-87.410466;31.142715,-87.40983;31.143019,-87.409665;31.14309,-87.408993;31.143419,-87.408174;31.143819,-87.40159;31.146976,-87.39993;31.14778,-87.39434;31.150461,-87.392701;31.151242,-87.391128;31.152009,-87.389443;31.152814,-87.38777;31.153619,-87.386918;31.154021,-87.385114;31.154896,-87.383508;31.155665,-87.382688;31.156064,-87.379463;31.157604,-87.37789;31.158359,-87.376275;31.159142,-87.374274;31.1601,-87.372959;31.160729,-87.369687;31.162304,-87.36835;31.162936,-87.368063;31.163081,-87.363152;31.165437,-87.363044;31.165489,-87.362971;31.165523,-87.361418;31.166261,-87.358161;31.167826,-87.356919;31.168417,-87.356573;31.168582,-87.355313;31.169189,-87.35307;31.170271,-87.352378;31.170624,-87.351944;31.170845,-87.351625;31.171011,-87.350838;31.171437,-87.350059;31.171876,-87.34857;31.17276,-87.347122;31.173669,-87.345018;31.175121,-87.344263;31.175676,-87.343456;31.176296,-87.343017;31.176642,-87.342792;31.176819,-87.342208;31.177301,-87.341245;31.178124,-87.340257;31.178952,-87.339592;31.179524,-87.338222;31.180679,-87.334324;31.183982,-87.331699;31.186214,-87.331457;31.186419,-87.330384;31.187324,-87.327766;31.189547,-87.326476;31.190633,-87.323943;31.192783,-87.320611;31.195602,-87.318005;31.197819,-87.314998;31.200364,-87.313569;31.201572,-87.313105;31.201965,-87.312407;31.20256,-87.311274;31.203514,-87.310966;31.203774,-87.310418;31.204238,-87.308535;31.205833,-87.30753;31.206694,-87.304441;31.209305,-87.302466;31.210974,-87.299668;31.213347,-87.296744;31.21582,-87.295723;31.216688,-87.295288;31.217057,-87.293854;31.218267,-87.293143;31.218867,-87.292376;31.219516,-87.291017;31.220667,-87.289602;31.221858,-87.288124;31.223067,-87.287253;31.223738,-87.286441;31.22434,-87.286301;31.224439,-87.285835;31.224771,-87.284742;31.225517,-87.284103;31.225937,-87.283307;31.226444,-87.282922;31.226678,-87.282496;31.226937,-87.281341;31.227612,-87.28076;31.227939,-87.279925;31.228389,-87.277114;31.229888,-87.276599;31.230163,-87.275001;31.23101,-87.273429;31.231851,-87.272824;31.232175,-87.272574;31.232308,-87.271665;31.232795,-87.259886;31.239082,-87.258684;31.239723,-87.256496;31.240891,-87.255669;31.241331,-87.254914;31.241732,-87.252881;31.24282,-87.251718;31.243442,-87.250095;31.244305,-87.249723;31.244505,-87.24958;31.244582,-87.249465;31.244644,-87.248324;31.245257,-87.247671;31.245608,-87.246068;31.246459,-87.244474;31.247313,-87.242792;31.248242,-87.242356;31.248494,-87.241902;31.248756,-87.241006;31.249295,-87.239853;31.250012,-87.239094;31.250502,-87.238628;31.250803,-87.237819;31.251343,-87.236941;31.251953,-87.236322;31.252392,-87.236162;31.252506,-87.235626;31.252898,-87.233866;31.254218,-87.23003;31.257144,-87.228944;31.257979,-87.228773;31.258111,-87.228516;31.258308,-87.227122;31.259371,-87.22548;31.260639\\\\nPOLYLINE,-87.615417;31.041002,-87.615153;31.041082,-87.614165;31.041396,-87.613192;31.041716,-87.612588;31.041923,-87.611751;31.042209,-87.610347;31.042714,-87.608923;31.04325,-87.607983;31.043619,-87.606594;31.044177,-87.605692;31.044558,-87.60481;31.044939,-87.603514;31.045518,-87.602254;31.046107,-87.600771;31.046821,-87.59943;31.047491,-87.598697;31.047871,-87.598484;31.047982,-87.598226;31.048123,-87.597961;31.048262,-87.597434;31.04855,-87.597181;31.048694,-87.596924;31.048834,-87.596071;31.049311,-87.59495;31.049953,-87.593698;31.050696,-87.592877;31.051199,-87.59127;31.052213,-87.590885;31.052467,-87.587894;31.054493,-87.586414;31.055503,-87.586037;31.05575,-87.585295;31.056256,-87.584929;31.056515,-87.584478;31.056815,-87.583561;31.057435,-87.582928;31.057848,-87.582441;31.058151,-87.582359;31.0582,-87.581944;31.058447,-87.581781;31.058549,-87.581274;31.05884,-87.58059;31.059216,-87.580414;31.059305,-87.58007;31.059487,-87.579551;31.059753,-87.578858;31.060096,-87.57797;31.060502,-87.577428;31.060738,-87.577241;31.060812,-87.57669;31.061041,-87.575689;31.061434,-87.575042;31.061666,-87.57431;31.061917,-87.572496;31.062498,-87.567028;31.064233,-87.565975;31.064567,-87.56532;31.064782,-87.564763;31.06497,-87.564119;31.065197,-87.563364;31.065475,-87.562795;31.0657,-87.562053;31.066008,-87.561417;31.066284,-87.560791;31.066571,-87.560082;31.066911,-87.559555;31.067176,-87.559033;31.06745,-87.558263;31.067874,-87.557587;31.068265,-87.556853;31.06871,-87.556223;31.069114,-87.555245;31.069766,-87.553015;31.071323,-87.550653;31.07298,-87.549876;31.073518,-87.544381;31.077356,-87.54203;31.078993,-87.54164;31.079272,-87.541585;31.07931,-87.540555;31.080036,-87.539145;31.081013,-87.535397;31.083628,-87.534843;31.084015,-87.534113;31.084526,-87.530461;31.087077,-87.529271;31.08791,-87.528879;31.088179,-87.528096;31.08873,-87.527303;31.089281,-87.527087;31.089431,-87.525495;31.090546,-87.524775;31.091043,-87.52412;31.091501,-87.521832;31.0931,-87.518378;31.095519,-87.517992;31.095783,-87.515841;31.097286,-87.515628;31.097435,-87.514894;31.097938,-87.514406;31.098263,-87.513834;31.098628,-87.513421;31.098883,-87.512657;31.099334,-87.511975;31.099714,-87.511301;31.100078,-87.510634;31.10042,-87.509804;31.100823,-87.509143;31.101123,-87.508308;31.101481,-87.508134;31.101548,-87.50779;31.101688,-87.507262;31.101894,-87.507012;31.101988,-87.50654;31.102166,-87.505816;31.102422,-87.505273;31.102599,-87.504728;31.10277,-87.504001;31.102988,-87.503178;31.103219,-87.501371;31.103689,-87.49957;31.10415,-87.496832;31.104857,-87.495905;31.105102,-87.494962;31.105339,-87.494005;31.105591,-87.492141;31.106072,-87.488933;31.1069,-87.488711;31.106957,-87.487954;31.10716,-87.487764;31.107203,-87.487746;31.107207,-87.487087;31.107375,-87.486832;31.10744,-87.481423;31.108843,-87.480542;31.109067,-87.479629;31.109304,-87.478411;31.109619,-87.477062;31.109961,-87.476325;31.110155,-87.474375;31.110659,-87.473998;31.110757,-87.473284;31.110944,-87.471723;31.111342,-87.469951;31.111799,-87.469138;31.112016,-87.468007;31.112334,-87.466872;31.112691,-87.466351;31.112868,-87.46557;31.113147,-87.465436;31.113198,-87.464791;31.113444,-87.46401;31.11376,-87.463857;31.113826,-87.463428;31.114009,-87.463189;31.114112,-87.463071;31.114163,-87.462334;31.114505,-87.461619;31.114852,-87.460923;31.115209,-87.460315;31.115536,-87.459787;31.115829,-87.459336;31.116091,-87.458674;31.116496,-87.458021;31.116908,-87.457179;31.117472,-87.45644;31.117986,-87.455916;31.118377,-87.455588;31.118632,-87.455252;31.118886,-87.454461;31.119494,-87.454233;31.11967,-87.45389;31.119928,-87.452562;31.120954,-87.45222;31.121211,-87.451526;31.121748,-87.450552;31.122488,-87.450419;31.122596,-87.449567;31.123218,-87.44876;31.123787,-87.447995;31.124301,-87.447528;31.12461,-87.446785;31.125085,-87.446656;31.125167,-87.446587;31.12521,-87.44633;31.12537,-87.445942;31.125611,-87.445706;31.125748,-87.445473;31.125891,-87.444833;31.126262,-87.444346;31.126537,-87.443685;31.126901,-87.443182;31.127172,-87.442149;31.127712,-87.441544;31.128011,-87.439608;31.128944,-87.435276;31.13103,-87.434464;31.131421,-87.430806;31.133172,-87.429668;31.13372,-87.429224;31.133934,-87.428731;31.134172,-87.427932;31.134556,-87.424773;31.136073,-87.419636;31.138541,-87.413247;31.141611,-87.411821;31.142296,-87.410633;31.142867,-87.409786;31.143274,-87.409148;31.14358,-87.403358;31.146357,-87.403022;31.146518,-87.40143;31.147286,-87.40023;31.147859,-87.395495;31.150137,-87.393486;31.151103,-87.388579;31.153455,-87.387458;31.153999,-87.385005;31.155175,-87.380537;31.157316,-87.379342;31.157894,-87.376937;31.159043,-87.374534;31.160196,-87.370346;31.162207,-87.368515;31.163086,-87.368347;31.16316,-87.368092;31.163289,-87.365561;31.16451,-87.3632;31.165639,-87.363095;31.165689,-87.363033;31.165718,-87.362702;31.165872,-87.357228;31.168501,-87.356207;31.168991,-87.355702;31.16923,-87.355392;31.169377,-87.353256;31.170408,-87.353187;31.170441,-87.352823;31.170624,-87.352618;31.170727,-87.351654;31.171229,-87.35079;31.171703,-87.350006;31.172149,-87.349137;31.172659,-87.348423;31.173092,-87.347469;31.173695,-87.346608;31.174266,-87.346145;31.174583,-87.345166;31.175277,-87.344798;31.175546,-87.344078;31.176089,-87.34337;31.176637,-87.343191;31.176782,-87.342674;31.177202,-87.341652;31.178052,-87.33961;31.179789,-87.334392;31.184209,-87.333396;31.18506,-87.331576;31.186603,-87.329175;31.188638,-87.326107;31.191232,-87.320942;31.195612,-87.319909;31.196495,-87.318914;31.197328,-87.315683;31.200071,-87.315062;31.200591,-87.314852;31.200776,-87.314558;31.201023,-87.31433;31.201221,-87.314119;31.201413,-87.313693;31.201775,-87.313531;31.201908,-87.311875;31.203312,-87.311452;31.203665,-87.311113;31.203948,-87.310966;31.204078,-87.310905;31.204123,-87.310545;31.204432,-87.309385;31.205427,-87.308111;31.2065,-87.307441;31.207078,-87.305651;31.208576,-87.304539;31.209518,-87.302504;31.211244,-87.302239;31.211471,-87.30188;31.21178,-87.301228;31.212329,-87.300582;31.21288,-87.298732;31.214441,-87.296905;31.215993,-87.296282;31.216514,-87.295818;31.216907,-87.29473;31.217826,-87.29412;31.218346,-87.293471;31.218899,-87.292558;31.219673,-87.290691;31.221256,-87.28947;31.222282,-87.288851;31.222789,-87.288224;31.223289,-87.287587;31.223778,-87.286944;31.22426,-87.286499;31.22458,-87.28629;31.224731,-87.285626;31.225195,-87.284958;31.225649,-87.284281;31.226095,-87.283594;31.226536,-87.283073;31.226854,-87.282901;31.226959,-87.282199;31.227376,-87.281488;31.227789,-87.280771;31.228187,-87.278003;31.229676,-87.277861;31.229752,-87.277133;31.230137,-87.276404;31.230529,-87.274949;31.231299,-87.273279;31.232194,-87.272761;31.232472,-87.272291;31.232721,-87.272013;31.232868,-87.2662;31.235977,-87.265116;31.236553,-87.264389;31.236944,-87.260323;31.239114,-87.258757;31.239953,-87.257857;31.24043,-87.256398;31.241213,-87.256035;31.241403,-87.255643;31.241612,-87.249538;31.244871,-87.248298;31.245533,-87.246623;31.246427,-87.245092;31.247244,-87.244004;31.247829,-87.243284;31.248228,-87.242218;31.248841,-87.241513;31.24926,-87.240125;31.25011,-87.239436;31.250552,-87.239055;31.2508,-87.238419;31.251214,-87.237416;31.251906,-87.236466;31.252572,-87.236425;31.252601,-87.235777;31.253077,-87.23385;31.254532,-87.233528;31.254782,-87.232577;31.255508,-87.232254;31.255749,-87.230651;31.256971,-87.230337;31.257218,-87.229123;31.258146,-87.228874;31.258336,-87.227298;31.25954,-87.225866;31.260639\\\\nPOLYLINE,-86.879239;34.992246,-86.879292;34.992039,-86.879621;34.990765,-86.88056;34.987183,-86.880682;34.98668,-86.88077;34.986169,-86.880792;34.985756,-86.880798;34.985654,-86.880751;34.985138,-86.880635;34.984632,-86.880472;34.984133,-86.880283;34.983642,-86.879753;34.982169,-86.879481;34.981179,-86.879403;34.980163,-86.879438;34.979655,-86.879456;34.979565,-86.879537;34.979148,-86.879676;34.978653,-86.879858;34.978166,-86.880087;34.977694,-86.880372;34.977239,-86.880775;34.976671,-86.881806;34.975219,-86.881972;34.974991,-86.883508;34.972802,-86.883693;34.972545,-86.884536;34.971168,-86.884952;34.970315,-86.885562;34.968819,-86.887211;34.964689,-86.887737;34.96337,-86.88792;34.962911,-86.889657;34.958563,-86.890121;34.957418,-86.891302;34.954467,-86.891484;34.954053,-86.891682;34.953644,-86.892928;34.951378,-86.893382;34.950546,-86.893627;34.950078,-86.893837;34.949595,-86.894017;34.949104,-86.894099;34.948813,-86.894288;34.948099,-86.896175;34.938985,-86.896594;34.936963,-86.896917;34.935439,-86.897043;34.934938,-86.897159;34.934598,-86.897211;34.934446,-86.897415;34.93396,-86.897658;34.933489,-86.897689;34.933439,-86.89794;34.933032,-86.898828;34.931684,-86.901831;34.927204,-86.903433;34.924814,-86.904485;34.923244,-86.904986;34.922497,-86.9051;34.922333,-86.906688;34.919955,-86.907394;34.9189,-86.908208;34.917561,-86.908407;34.917156,-86.908495;34.916961,-86.908637;34.916593,-86.908683;34.916473,-86.908889;34.915835,-86.909161;34.914608,-86.909222;34.913949,-86.90923;34.913367,-86.909203;34.912703,-86.909133;34.912119,-86.909055;34.911683,-86.90888;34.910959,-86.908666;34.910323,-86.908427;34.909751,-86.908056;34.908865,-86.90688;34.906156,-86.906588;34.905483,-86.9065;34.905271,-86.906385;34.904994,-86.906206;34.904504,-86.906078;34.904004,-86.906003;34.903496,-86.905978;34.902985,-86.906012;34.902472,-86.906094;34.901964,-86.906226;34.901462,-86.906404;34.900972,-86.906635;34.900495,-86.906908;34.900034,-86.907225;34.899594,-86.907584;34.899172,-86.907954;34.898761,-86.909296;34.897311,-86.910219;34.896313,-86.912797;34.893488,-86.914721;34.89138,-86.91513;34.89088,-86.91541;34.89052,-86.915728;34.890077,-86.916307;34.889173,-86.916576;34.888707,-86.91683;34.888234,-86.917055;34.887754,-86.917265;34.887266,-86.917445;34.886775,-86.920042;34.879366,-86.920258;34.878724,-86.920289;34.878671,-86.921019;34.876549,-86.921455;34.875308,-86.922058;34.873588,-86.923078;34.870621,-86.923588;34.869175,-86.924123;34.86766,-86.925661;34.863209,-86.926282;34.861446,-86.92723;34.858768,-86.92791;34.856789,-86.928813;34.854265,-86.929004;34.853776,-86.929404;34.852802,-86.930676;34.849902,-86.931974;34.847014,-86.932612;34.845562,-86.933203;34.844256,-86.933376;34.843868,-86.937403;34.834808,-86.937645;34.834236,-86.937758;34.833968,-86.938016;34.833359,-86.938064;34.833233,-86.93813;34.833059,-86.938384;34.832389,-86.938482;34.832115,-86.938668;34.831408,-86.938813;34.830669,-86.938898;34.830091,-86.938961;34.829511,-86.939005;34.828932,-86.939019;34.82836,-86.939014;34.828097,-86.939013;34.82796,-86.938988;34.824266,-86.938988;34.824239,-86.938985;34.823822,-86.938988;34.823438,-86.938964;34.821691,-86.938969;34.821398,-86.938959;34.820507,-86.938963;34.820109,-86.938943;34.818929,-86.938934;34.81763,-86.938893;34.811289,-86.93889;34.811013,-86.93887;34.808804,-86.938875;34.808499,-86.938865;34.808191,-86.938869;34.807882,-86.938868;34.80773,-86.938861;34.806662,-86.938867;34.805242,-86.938884;34.803801,-86.938907;34.802653,-86.938936;34.802081,-86.93894;34.801794,-86.939043;34.799302,-86.939157;34.797122,-86.939216;34.795776,-86.939272;34.794858,-86.939282;34.794554,-86.939303;34.794251,-86.939307;34.794136,-86.939325;34.793682,-86.939326;34.793647,-86.939374;34.792763,-86.939413;34.791887,-86.939463;34.791013,-86.939511;34.789856,-86.939562;34.788993,-86.939571;34.788703,-86.939684;34.786736,-86.939795;34.784271,-86.939835;34.783508,-86.939856;34.783101,-86.939863;34.782946,-86.939918;34.781829,-86.939954;34.781239,-86.939976;34.780752,-86.940032;34.779502,-86.940074;34.778822,-86.940124;34.777439,-86.940124;34.77732,-86.940124;34.777136,-86.940136;34.776833,-86.940118;34.77538,-86.940095;34.774703,-86.940071;34.774018,-86.940023;34.773033,-86.939895;34.771472,-86.939447;34.767154,-86.939418;34.76684,-86.93906;34.763408,-86.938833;34.761239,-86.93881;34.760948,-86.938662;34.759494,-86.938475;34.757438,-86.938406;34.756267,-86.938385;34.755746,-86.938354;34.754782,-86.938355;34.754485,-86.938344;34.754189,-86.938359;34.752744,-86.938404;34.751199,-86.938452;34.750308,-86.938493;34.749305,-86.938576;34.747666,-86.938622;34.746745,-86.938748;34.744356,-86.938772;34.74405,-86.938816;34.742825,-86.938812;34.741613,-86.93879;34.741001,-86.938703;34.739871,-86.93856;34.738622,-86.938467;34.738086,-86.938351;34.737412,-86.938168;34.736549,-86.938038;34.735974,-86.937804;34.73511,-86.93745;34.733945,-86.937249;34.733363,-86.937157;34.733071,-86.93676;34.731901,-86.936403;34.730816,-86.934431;34.724909,-86.934147;34.724058,-86.93387;34.723189,-86.931597;34.716406,-86.93098;34.714486,-86.930785;34.713835,-86.930764;34.713762,-86.930696;34.713533,-86.930427;34.712576,-86.930176;34.71161,-86.929834;34.710144,-86.92963;34.70918,-86.928812;34.704839,-86.926491;34.692373,-86.926214;34.690969,-86.925894;34.689574,-86.925532;34.68814,-86.925199;34.686989,-86.925193;34.686969,-86.925127;34.68674,-86.924706;34.685371,-86.923277;34.68125,-86.92001;34.671875,-86.91964;34.670813,-86.919104;34.669419,-86.918719;34.668487,-86.918306;34.667565,-86.917871;34.666652,-86.91673;34.664384,-86.913142;34.657291,-86.907415;34.645969,-86.905718;34.642615,-86.905704;34.642587,-86.904481;34.640119,-86.904077;34.639202,-86.903893;34.638742,-86.903556;34.637813,-86.9034;34.637349,-86.903256;34.636883,-86.903003;34.635949,-86.902789;34.635004,-86.902517;34.633569,-86.902387;34.632841,-86.902159;34.631593,-86.901994;34.630691,-86.90179;34.629632,-86.901645;34.628804,-86.901469;34.627875,-86.901444;34.627726,-86.901382;34.627389,-86.900761;34.624017,-86.900656;34.623384,-86.900035;34.620082,-86.898781;34.613266,-86.898617;34.612289,-86.898476;34.611304,-86.898376;34.610306,-86.89834;34.609799,-86.898322;34.60934,-86.8983;34.608789,-86.898298;34.607819,-86.898331;34.606848,-86.898401;34.605885,-86.898421;34.605667,-86.898446;34.605407,-86.898532;34.604744,-86.898569;34.60446,-86.898724;34.603518,-86.898813;34.603048,-86.89903;34.602111,-86.899273;34.601176,-86.899306;34.601058,-86.899404;34.60071,-86.899706;34.599783,-86.899811;34.599482,-86.899901;34.599226,-86.899983;34.599009,-86.900719;34.597055,-86.902771;34.591694,-86.903364;34.590145,-86.905349;34.58496,-86.906197;34.582746,-86.906305;34.582464,-86.907266;34.57995,-86.907288;34.579894,-86.907309;34.579837\\\\nPOLYLINE,-86.369282;32.430638,-86.369047;32.430315,-86.368404;32.429451,-86.367308;32.428041,-86.36706;32.427746,-86.366713;32.427312,-86.366086;32.426561,-86.365486;32.425863,-86.365033;32.42535,-86.364491;32.424762,-86.364175;32.424404,-86.363843;32.424045,-86.363096;32.423268,-86.362807;32.422981,-86.362512;32.422677,-86.362333;32.422507,-86.361755;32.421928,-86.361497;32.421681,-86.360082;32.420364,-86.358936;32.419341,-86.357927;32.41848,-86.357575;32.418197,-86.357361;32.418013,-86.356788;32.417544,-86.353791;32.415031,-86.353408;32.414679,-86.353268;32.414561,-86.3518;32.413338,-86.350235;32.412047,-86.349539;32.411467,-86.34812;32.410266,-86.339313;32.40288,-86.332604;32.397246,-86.332237;32.396945,-86.330988;32.395898,-86.327075;32.392601,-86.326823;32.392397,-86.326552;32.392162,-86.325941;32.391661,-86.325403;32.391199,-86.325125;32.39097,-86.324766;32.390655,-86.324536;32.390439,-86.324395;32.390293,-86.324257;32.390169,-86.324027;32.389906,-86.323879;32.389722,-86.323543;32.38926,-86.323481;32.389176,-86.323433;32.3891,-86.323404;32.389055,-86.323202;32.388733,-86.322982;32.38832,-86.322904;32.388157,-86.322771;32.387822,-86.322639;32.387528,-86.322615;32.387504,-86.322541;32.38729,-86.322419;32.38685,-86.322323;32.386401,-86.322269;32.386024,-86.322238;32.385561,-86.322244;32.385537,-86.322241;32.385393,-86.322249;32.384915,-86.322216;32.384537,-86.322107;32.380242,-86.322101;32.380014,-86.322097;32.379858,-86.322079;32.379134,-86.322069;32.378734,-86.322061;32.37843,-86.322055;32.378192,-86.322056;32.378075,-86.322057;32.378036,-86.322057;32.377981,-86.322058;32.37789,-86.322045;32.37753,-86.322007;32.376483,-86.32197;32.375451,-86.321967;32.375318,-86.321963;32.375005,-86.321974;32.374713,-86.322009;32.374335,-86.322068;32.373942,-86.322082;32.37386,-86.322186;32.373455,-86.3222;32.373372,-86.322411;32.372059,-86.322605;32.370849,-86.322634;32.370669,-86.322672;32.37025,-86.322673;32.370193,-86.322688;32.369625,-86.322693;32.369403,-86.322565;32.368819,-86.322338;32.367261,-86.32228;32.366867,-86.322276;32.366838,-86.322249;32.36665,-86.322225;32.366487,-86.322166;32.366083,-86.322007;32.365006,-86.321935;32.364384,-86.3219;32.363855,-86.321932;32.36329,-86.321913;32.363098,-86.32189;32.362443,-86.321864;32.361575,-86.321823;32.360653,-86.321793;32.359959,-86.321776;32.359484,-86.321756;32.358869,-86.321719;32.358005,-86.321661;32.357024,-86.321596;32.356074,-86.321516;32.355108,-86.321478;32.354641,-86.321466;32.354388,-86.321462;32.354301,-86.321456;32.354168,-86.321368;32.353707,-86.321264;32.352573,-86.321189;32.351957,-86.321175;32.351785,-86.321168;32.351549,-86.321168;32.351214,-86.3212;32.350813,-86.321261;32.350414,-86.321342;32.350063,-86.321464;32.349666,-86.321495;32.349581,-86.321544;32.349449,-86.321668;32.349159,-86.321906;32.348778,-86.322083;32.348455,-86.322211;32.348259,-86.322335;32.348081,-86.322697;32.347605,-86.322801;32.347468,-86.323608;32.346413,-86.323856;32.346123,-86.324125;32.345695,-86.325243;32.344226,-86.326383;32.342726,-86.327939;32.340676,-86.328596;32.339782,-86.329058;32.339128,-86.32962;32.338295,-86.330039;32.337646,-86.330481;32.336931,-86.330583;32.336767,-86.331099;32.33589,-86.331717;32.334792,-86.331757;32.334722,-86.33212;32.334048,-86.332295;32.333702,-86.332757;32.332752,-86.333063;32.332089,-86.333407;32.331303,-86.333986;32.329918,-86.334144;32.329532,-86.334209;32.3294,-86.334243;32.329231,-86.33429;32.329,-86.334566;32.328212,-86.334775;32.327581,-86.334873;32.327261,-86.335106;32.326487,-86.33541;32.325378,-86.335567;32.324897,-86.335602;32.324702,-86.335779;32.323907,-86.335791;32.323855,-86.335927;32.323208,-86.336064;32.322499,-86.336277;32.321243,-86.336425;32.320324,-86.336431;32.320287,-86.33647;32.320011,-86.336662;32.318356,-86.33679;32.316696,-86.336802;32.316543,-86.336806;32.316493,-86.336812;32.316406,-86.336939;32.314763,-86.337;32.313865,-86.337009;32.31328,-86.337152;32.311385,-86.337266;32.30988,-86.337331;32.309016,-86.337401;32.308242,-86.33742;32.307915,-86.337507;32.306762,-86.337523;32.30654,-86.337565;32.305984,-86.337605;32.305214,-86.337669;32.304411,-86.337762;32.303472,-86.337827;32.302903,-86.337837;32.302825,-86.337947;32.301958,-86.338139;32.300675,-86.338312;32.299667,-86.338527;32.298549,-86.338727;32.297607,-86.339001;32.296425,-86.339227;32.295538,-86.33931;32.295229,-86.339431;32.294783,-86.339517;32.29448,-86.339682;32.293903,-86.339924;32.293107,-86.340139;32.292429,-86.340375;32.291722,-86.340405;32.291632,-86.340846;32.290391,-86.341104;32.289707,-86.341376;32.289008,-86.341778;32.28803,-86.342126;32.287219,-86.342428;32.286541,-86.342723;32.285904,-86.343295;32.284733,-86.343606;32.284095,-86.34451;32.282401,-86.345019;32.281498,-86.345629;32.280462,-86.345953;32.279938,-86.346549;32.279017,-86.347248;32.277946,-86.34763;32.277372,-86.349716;32.27442,-86.352328;32.270759,-86.352658;32.270297,-86.352786;32.270117,-86.353211;32.269568,-86.35328;32.269418,-86.353373;32.269283,-86.353848;32.268628,-86.35409;32.268275,-86.355046;32.266942,-86.355909;32.265731,-86.356256;32.265233,-86.356689;32.264635,-86.356916;32.26437,-86.357277;32.263855,-86.357958;32.262891,-86.358883;32.261602,-86.359628;32.260602,-86.361101;\\\"+\\\"32.258682,-86.36258;32.25681,-86.364284;32.254728,-86.36536;32.253428,-86.367373;32.250998,-86.367744;32.250547,-86.36826;32.249921,-86.369327;32.248626,-86.372042;32.245351,-86.372536;32.244746,-86.374015;32.242986,-86.375049;32.24179,-86.375674;32.241078,-86.376551;32.240105,-86.377214;32.239372,-86.37802;32.238497,-86.37882;32.237651,-86.379223;32.237223,-86.379282;32.237163,-86.379986;32.236435,-86.380127;32.236289,-86.381272;32.235132,-86.382556;32.233866,-86.383748;32.232723,-86.384682;32.231848,-86.386242;32.230423,-86.386585;32.230109,-86.389324;32.227686,-86.389812;32.227249,-86.389835;32.227227,-86.389866;32.227201,-86.390172;32.226927,-86.392346;32.225012,-86.394325;32.223247,-86.395047;32.222617,-86.395264;32.222423,-86.397339;32.220571,-86.398329;32.219699,-86.400159;32.218072,-86.401182;32.217173,-86.402485;32.216003,-86.402885;32.215636,-86.403961;32.214615,-86.404115;32.214464,-86.404625;32.213963,-86.404951;32.213637,-86.406039;32.212524,-86.406775;32.21173,-86.407491;32.210939,-86.408313;32.20998\\\\nPOLYLINE,-86.408272;32.208976,-86.407914;32.20939,-86.40775;32.20957,-86.407165;32.210217,-86.406561;32.210859,-86.40592;32.211532,-86.405254;32.212207,-86.404547;32.212899,-86.403759;32.213656,-86.403654;32.213754,-86.402976;32.214388,-86.40217;32.215111,-86.40052;32.216575,-86.39699;32.219704,-86.395893;32.220669,-86.394948;32.221508,-86.394583;32.221838,-86.394342;32.222056,-86.389184;32.226627,-86.389148;32.226658,-86.389114;32.226688,-86.386206;32.229264,-86.385907;32.229537,-86.385419;32.229965,-86.385277;32.230089,-86.384635;32.230674,-86.38364;32.231616,-86.382795;32.232439,-86.381985;32.233257,-86.381175;32.234105,-86.380389;32.234957,-86.379546;32.235908,-86.379331;32.236158,-86.378925;32.236632,-86.37721;32.238698,-86.376381;32.239702,-86.376193;32.239928,-86.374651;32.241791,-86.368379;32.249377,-86.364898;32.253585,-86.363848;32.254854,-86.362679;32.256282,-86.361604;32.257624,-86.360901;32.258518,-86.360106;32.259548,-86.359554;32.260271,-86.358528;32.26164,-86.357355;32.263247,-86.356883;32.263855,-86.356676;32.264125,-86.356642;32.264181,-86.356478;32.264449,-86.355941;32.265234,-86.355397;32.265994,-86.355261;32.266198,-86.354922;32.266669,-86.354126;32.267775,-86.353482;32.268695,-86.353283;32.26897,-86.35311;32.269164,-86.352878;32.269481,-86.352419;32.270142,-86.352325;32.270279,-86.350503;32.272883,-86.349814;32.27384,-86.348131;32.276211,-86.347316;32.277369,-86.346657;32.278381,-86.346232;32.279018,-86.345698;32.27985,-86.345039;32.280954,-86.344526;32.281832,-86.343897;32.28298,-86.343147;32.284436,-86.343;32.284733,-86.342775;32.285184,-86.342431;32.285905,-86.342087;32.286655,-86.341849;32.287191,-86.341544;32.287903,-86.341265;32.288573,-86.341015;32.289201,-86.340746;32.289898,-86.340354;32.29097,-86.340096;32.291725,-86.339936;32.292192,-86.339744;32.292788,-86.339512;32.293539,-86.339241;32.294466,-86.339179;32.294689,-86.339084;32.295028,-86.339035;32.295215,-86.338938;32.29558,-86.33872;32.296441,-86.338468;32.29752,-86.338282;32.298397,-86.338158;32.299014,-86.337947;32.300179,-86.337778;32.301232,-86.337592;32.302598,-86.337566;32.302825,-86.337451;32.303846,-86.337343;32.30507,-86.337216;32.306768,-86.337197;32.30704,-86.337154;32.307358,-86.337112;32.307916,-86.336975;32.309834,-86.336866;32.311284,-86.336705;32.313428,-86.33661;32.314222,-86.336565;32.314782,-86.336544;32.315233,-86.336472;32.316153,-86.336463;32.316271,-86.336459;32.316316,-86.336452;32.316405,-86.336446;32.316474,-86.336318;32.318097,-86.336258;32.319009,-86.336209;32.319559,-86.336134;32.320289,-86.336081;32.320802,-86.335962;32.321647,-86.335775;32.322727,-86.335523;32.323946,-86.335498;32.324052,-86.335268;32.325024,-86.334957;32.326267,-86.334669;32.32723,-86.334382;32.328121,-86.334009;32.329183,-86.333983;32.329237,-86.333944;32.329318,-86.33383;32.32956,-86.33378;32.329667,-86.333689;32.329918,-86.333395;32.33066,-86.333109;32.331342,-86.332617;32.332473,-86.332447;32.332846,-86.332266;32.333221,-86.331849;32.334049,-86.331506;32.334699,-86.331425;32.334854,-86.330833;32.335954,-86.330443;32.336613,-86.330297;32.33685,-86.32995;32.337414,-86.329365;32.33832,-86.328921;32.338977,-86.328425;32.339683,-86.327754;32.340597,-86.326289;32.342523,-86.325001;32.34422,-86.323713;32.345914,-86.323474;32.346181,-86.323079;32.346721,-86.32258;32.347373,-86.322477;32.347509,-86.322234;32.34783,-86.321989;32.348162,-86.321847;32.348367,-86.321705;32.348585,-86.321542;32.348886,-86.321343;32.349359,-86.321279;32.349536,-86.321179;32.34987,-86.321157;32.349959,-86.321082;32.350268,-86.321022;32.350591,-86.320979;32.350935,-86.320958;32.351284,-86.32096;32.351554,-86.320967;32.351779,-86.320982;32.351958,-86.321158;32.353872,-86.321154;32.354253,-86.321169;32.354416,-86.321235;32.355133,-86.321366;32.356555,-86.321434;32.357371,-86.321476;32.358051,-86.32151;32.358874,-86.321529;32.359487,-86.321567;32.360659,-86.321597;32.361576,-86.321618;32.36245,-86.321646;32.363763,-86.321728;32.364559,-86.321927;32.365879,-86.321927;32.366086,-86.32195;32.36618,-86.321995;32.366486,-86.322022;32.366664,-86.32204;32.36679,-86.322072;32.367007,-86.322111;32.367275,-86.322211;32.367959,-86.322358;32.36882,-86.322369;32.369325,-86.322381;32.369458,-86.322383;32.369484,-86.322388;32.36963,-86.322397;32.369968,-86.322392;32.37014,-86.322386;32.370241,-86.322379;32.370367,-86.32235;32.370634,-86.322303;32.370942,-86.32217;32.371745,-86.321912;32.373381,-86.321899;32.373463,-86.321873;32.373865,-86.321847;32.374029,-86.321802;32.374339,-86.321768;32.374698,-86.321756;32.375016,-86.321766;32.375456,-86.321789;32.376489,-86.321813;32.377536,-86.321824;32.378012,-86.321825;32.378062,-86.321824;32.378099,-86.321817;32.378312,-86.32182;32.378414,-86.321828;32.378763,-86.321837;32.379126,-86.321849;32.379614,-86.321854;32.379818,-86.321859;32.380009,-86.321865;32.380243,-86.321991;32.385486,-86.322016;32.385968,-86.322077;32.38657,-86.322207;32.38714,-86.322275;32.387372,-86.322335;32.387541,-86.322504;32.387936,-86.322554;32.388022,-86.32273;32.388413,-86.322877;32.388692,-86.323094;32.389057,-86.323269;32.389321,-86.323371;32.389471,-86.323556;32.389713,-86.323892;32.390123,-86.324311;32.390561,-86.324566;32.3908,-86.324686;32.390904,-86.325663;32.391726,-86.326001;32.392032,-86.327111;32.392966,-86.329929;32.395303,-86.330037;32.3954,-86.336873;32.401133,-86.338788;32.402738,-86.339314;32.40318,-86.343548;32.406737,-86.34529;32.408197,-86.346131;32.408901,-86.346402;32.409123,-86.346805;32.409469,-86.348148;32.4106,-86.348434;32.410832,-86.349371;32.411625,-86.352349;32.414119,-86.353129;32.414814,-86.353151;32.414838,-86.353203;32.41487,-86.353799;32.415336,-86.354077;32.415565,-86.355066;32.416401,-86.355082;32.416415,-86.35718;32.41817,-86.358288;32.419096,-86.35916;32.419855,-86.360238;32.420827,-86.361158;32.421688,-86.361369;32.4219,-86.362452;32.422956,-86.363231;32.423746,-86.363457;32.423994,-86.364073;32.424643,-86.364441;32.425041,-86.364799;32.425438,-86.36541;32.426133,-86.366211;32.427065,-86.366811;32.427801,-86.367902;32.429176,-86.368591;32.430101,-86.368979;32.430636\\\\nPOLYLINE,-86.825055;33.841826,-86.82554;33.843298,-86.825826;33.844034,-86.825945;33.844392,-86.82624;33.845161,-86.826288;33.845279,-86.82691;33.847071,-86.82698;33.847292,-86.827109;33.847747,-86.827181;33.848021,-86.827226;33.848169,-86.827409;33.848745,-86.827557;33.849157,-86.82802;33.850393,-86.828748;33.852458,-86.829322;33.854111,-86.830628;33.857832,-86.83171;33.860939,-86.832292;33.86259,-86.832742;33.86388,-86.834314;33.868381,-86.834615;33.86921,-86.834938;33.870035,-86.835108;33.870444,-86.835285;33.87085,-86.835468;33.871256,-86.835658;33.871657,-86.836057;33.872455,-86.836265;33.872848,-86.836481;33.87324,-86.836818;33.873824,-86.837049;33.87421,-86.837287;33.874595,-86.837532;33.874976,-86.837784;33.875355,-86.83804;33.875729,-86.838577;33.876472,-86.838849;33.876837,-86.839128;33.8772,-86.839413;33.877559,-86.839705;33.877914,-86.840004;33.878266,-86.84031;33.878615,-86.840935;33.879303,-86.841568;33.879984,-86.84381;33.882357,-86.8443;33.882879,-86.844929;33.883549,-86.846623;33.885342,-86.847447;33.886214,-86.848514;33.887354,-86.84927;33.888154,-86.851398;33.890407,-86.854598;33.893795,-86.855554;33.894818,-86.856114;33.895411,-86.857478;33.896853,-86.858104;33.897545,-86.858561;33.89807,-86.859006;33.898603,-86.859435;33.899146,-86.859714;33.899509,-86.860122;33.900062,-86.860643;33.900809,-86.860894;33.901186,-86.86114;33.901568,-86.86161;33.90234,-86.862053;33.903123,-86.862469;33.903914,-86.862862;33.904719,-86.86323;33.905531,-86.863386;33.905907,-86.863571;33.906351,-86.863731;33.906765,-86.863881;33.907178,-86.864096;33.907799,-86.86436;33.908631,-86.864433;33.908906,-86.864479;33.909051,-86.864707;33.909891,-86.864808;33.910315,-86.864899;33.910739,-86.864941;33.910955,-86.865022;33.911378,-86.865067;33.911639,-86.865164;33.912234,-86.865259;33.912892,-86.865298;33.913161,-86.865426;33.914085,-86.865781;33.916598,-86.865988;33.918104,-86.866134;33.91915,-86.866536;33.922023,-86.867332;33.927546,-86.868047;33.932563,-86.868071;33.932721\\\\nPOLYLINE,-88.11802;30.631839,-88.118019;30.631929,-88.118229;30.63479,-88.118497;30.638239,-88.118748;30.641469,-88.11886;30.642808,-88.119047;30.644002,-88.119152;30.644492,-88.119326;30.645156,-88.119549;30.645835,-88.119771;30.646449,-88.12012;30.647245,-88.12092;30.648975,-88.121723;30.650699,-88.122147;30.651649,-88.122346;30.652075,-88.122421;30.652233,-88.122513;30.652426,-88.122646;30.652707,-88.123923;30.655545,-88.124954;30.6578,-88.125537;30.659278,-88.125966;30.660621,-88.126027;30.660811,-88.126178;30.661382,-88.126227;30.66157,-88.126489;30.662634,-88.126694;30.663717,-88.126748;30.664063,-88.126896;30.665021,-88.127038;30.666413,-88.12705;30.666535,-88.127108;30.667757,-88.127109;30.667893,-88.127134;30.673716,-88.127142;30.673888,-88.127164;30.67523,-88.127165;30.675804,-88.127165;30.675881,-88.127166;30.676108,-88.127167;30.676246,-88.127172;30.676853,-88.127185;30.678637,-88.127184;30.678728,-88.127167;30.681397,-88.127139;30.68261,-88.127096;30.683219,-88.12708;30.683386,-88.127022;30.683981,-88.126921;30.684818,-88.126865;30.685231,-88.126801;30.6857,-88.12666;30.686469,-88.12653;30.68706,-88.126293;30.68821,-88.126259;30.688364,-88.126133;30.68895,-88.125646;30.69122,-88.125369;30.692558,-88.125127;30.693676,-88.124094;30.698627,-88.124088;30.698656,-88.123566;30.701071,-88.123334;30.702194,-88.123059;30.703601,-88.123035;30.703722,-88.122767;30.704892,-88.122675;30.705327,-88.122457;30.70636,-88.12244;30.706448,-88.122382;30.706697,-88.122352;30.706823,-88.122303;30.70703,-88.122268;30.707192,-88.122095;30.707993,-88.121745;30.709777,-88.121593;30.710436,-88.121496;30.710861,-88.121346;30.711608,-88.121109;30.712793,-88.120808;30.714505,-88.120639;30.716063,-88.120465;30.719176,-88.120424;30.7199,-88.120382;30.720643,-88.120206;30.723804,-88.120147;30.724859,-88.120126;30.725235,-88.119963;30.72835,-88.119826;30.729879,-88.119528;30.730894,-88.119496;30.730972,-88.119313;30.731421,-88.118782;30.73238,-88.118216;30.733158,-88.117309;30.734064,-88.116016;30.735001,-88.115438;30.735364,-88.114194;30.736144,-88.110838;30.738298,-88.110734;30.738365,-88.109848;30.738931,-88.108028;30.740226,-88.107923;30.74031,-88.107634;30.74054,-88.107528;30.740625,-88.106428;30.7415,-88.104705;30.743068,-88.103408;30.744248,-88.100878;30.746635,-88.098795;30.74857,-88.097041;30.750193,-88.096692;30.750583,-88.096398;30.750911,-88.095971;30.751387,-88.095252;30.752309,-88.095008;30.75265,-88.094806;30.752934,-88.09436;30.753625,-88.094226;30.753866,-88.093905;30.754441,-88.093527;30.755255,-88.093414;30.755543,-88.093151;30.756214,-88.093046;30.756577,-88.092907;30.757061,-88.092653;30.757855,-88.092515;30.758649,-88.092374;30.759825,-88.092355;30.761062,-88.0924;30.762159,-88.092592;30.763359,-88.092626;30.763576,-88.092734;30.763985,-88.092881;30.764547,-88.09358;30.766728,-88.093701;30.767083,-88.093739;30.767194,-88.09438;30.769066,-88.0949;30.770668,-88.095526;30.7726,-88.099134;30.783453,-88.100219;30.786684,-88.100519;30.787571,-88.100577;30.787767,-88.100646;30.788007,-88.10169;30.79117,-88.101862;30.791665,-88.102142;30.79254,-88.102279;30.792931,-88.10253;30.793712,-88.102621;30.793996,-88.103565;30.796853,-88.103734;30.797392,-88.103924;30.798322,-88.104104;30.799177,-88.104167;30.799758,-88.104238;30.800659,-88.104298;30.801394,-88.10431;30.802074,-88.104311;30.80225,-88.104328;30.802467,-88.104291;30.803771,-88.104149;30.805124,-88.104093;30.805307,-88.104057;30.805568,-88.103986;30.806093,-88.103798;30.807068,-88.103597;30.807887,-88.103532;30.808105,-88.103268;30.808996,-88.102845;30.810144,-88.102364;30.811278,-88.102009;30.811993,-88.101665;30.812649,-88.10132;30.813249,-88.100969;30.81381,-88.100651;30.814283,-88.100276;30.814839,-88.099748;30.815565,-88.099438;30.815971,-88.098826;30.816747,-88.098246;30.8175,-88.097755;30.818157,-88.097273;30.818769,-88.096068;30.820346,-88.095864;30.820613,-88.095352;30.821307,-88.094783;30.822026,-88.094388;30.822526,-88.093197;30.824101,-88.092648;30.824795,-88.092629;30.82482,-88.091289;30.826564,-88.090203;30.827994,-88.089385;30.829052,-88.088833;30.829784,-88.088131;30.830677,-88.08781;30.831106,-88.086653;30.832571,-88.086258;30.833108,-88.085629;30.833963,-88.084837;30.834967,-88.083956;30.836127,-88.081277;30.839614,-88.080785;30.840257,-88.079797;30.841616,-88.079232;30.842465,-88.079207;30.842505,-88.07918;30.842543,-88.078701;30.843263,-88.078543;30.843508,-88.078411;30.843714,-88.07789;30.844589,-88.077049;30.846048,-88.076416;30.847259,-88.076091;30.847921,-88.075764;30.848589,-88.075466;30.849231,-88.074643;30.850911,-88.074227;30.851787,-88.073189;30.853945,-88.072675;30.854983,-88.072403;30.855566,-88.07193;30.856514,-88.071875;30.856638,-88.071704;30.857024,-88.07138;30.857675,-88.070948;30.858545,-88.070796;30.858814,-88.070577;30.859201,-88.070184;30.859835,-88.069267;30.861064,-88.068813;30.861615,-88.068042;30.862424,-88.067521;30.862914,-88.067259;30.863133,-88.066985;30.863362,-88.066391;30.863829,-88.065987;30.864136,-88.065921;30.864187,-88.064668;30.86499,-88.063266;30.865829,-88.062474;30.866293,-88.060584;30.867451,-88.059442;30.868131,-88.056979;30.869591,-88.055459;30.870517,-88.052298;30.872383,-88.052105;30.872512,-88.051076;30.873133,-88.050542;30.873437,-88.050276;30.873588,-88.04965;30.873963,-88.049126;30.874302,-88.04869;30.874557,-88.048104;30.874945,-88.046538;30.875859,-88.044655;30.876997,-88.044336;30.877184,-88.043806;30.877502,-88.042835;30.878038,-88.042545;30.878226,-88.042232;30.878426,-88.042159;30.878473,-88.03972;30.879936,-88.039533;30.880047,-88.039414;30.880118,-88.039323;30.880172,-88.039231;30.880227,-88.039054;30.880332,-88.037849;30.881076,-88.036782;30.881708,-88.03605;30.882142,-88.035594;30.882414,-88.034627;30.88302,-88.031589;30.884813,-88.029477;30.886081,-88.026895;30.887631,-88.025012;30.888762,-88.022999;30.889939,-88.021048;30.891094,-88.020616;30.891341,-88.020154;30.89166,-88.018679;30.892583,-88.017716;30.893165,-88.01727;30.893413,-88.01681;30.893733,-88.014225;30.895576,-88.013907;30.895814,-88.011515;30.897605,-88.009798;30.898839,-88.007001;30.900934,-88.006158;30.901545,-88.005745;30.901819,-88.004445;30.902611,-88.003556;30.903073,-88.003082;30.903264,-88.002378;30.903549,-88.001315;30.903944,-88.00098;30.90407,-88.000138;30.904299,-87.999788;30.904394,-87.997678;30.90479,-87.993928;30.905481,-87.989399;30.906267,-87.986924;30.90673,-87.984964;30.907071,-87.984518;30.907142,-87.98075;30.907854,-87.974896;30.908994,-87.973286;30.909467,-87.972483;30.909739,-87.971163;30.910179,-87.969498;30.910855,-87.968066;30.911494,-87.967343;30.911833,-87.966636;30.912194,-87.965415;30.91286,-87.964566;30.913328,-87.964437;30.913404,-87.963276;30.914073,-87.962309;30.914554,-87.954743;30.918679,-87.954498;30.918808\\\\nPOLYLINE,-86.825273;33.841831,-86.825488;33.842486,-86.825925;33.84373,-86.826245;33.844659,-86.826331;33.844911,-86.826433;33.845194,-86.826576;33.845593,-86.827156;33.847251,-86.82733;33.847696,-86.827498;33.848099,-86.827597;33.84837,-86.827895;33.84927,-86.828026;33.84969,-86.828165;33.850107,-86.828884;33.852186,-86.829177;33.853016,-86.830183;33.855921,-86.830761;33.857577,-86.830902;33.857992,-86.831126;33.858618,-86.8317;33.860276,-86.832374;33.862203,-86.832816;33.863448,-86.832938;33.863799,-86.833785;33.866239,-86.834472;33.868216,-86.834767;33.869045,-86.834923;33.869457,-86.835252;33.870272,-86.835513;33.870877,-86.835699;33.871277,-86.836186;33.872272,-86.836395;33.872668,-86.836611;33.87306,-86.836832;33.873447,-86.837059;33.873833,-86.837532;33.874599,-86.837777;33.874977,-86.838029;33.875351,-86.838286;33.875723,-86.838813;33.876462,-86.839086;33.876828,-86.839367;33.87719,-86.839569;33.877442,-86.839655;33.877549,-86.83995;33.877904,-86.840252;33.878256,-86.840876;33.878947,-86.842469;33.880649,-86.842952;33.881155,-86.84447;33.882765,-86.844815;33.883136,-86.847104;33.885558,-86.848603;33.887154,-86.849307;33.887901,-86.851266;33.889979,-86.852736;33.891547,-86.856373;33.895395,-86.856905;33.895957,-86.857377;33.896468,-86.858307;33.897495,-86.858758;33.89802,-86.859194;33.898551,-86.859619;33.899086,-86.859893;33.899446,-86.860428;33.900175,-86.860685;33.900545,-86.861182;33.901297,-86.861543;33.901867,-86.861771;33.902254,-86.861993;33.902643,-86.862424;33.903423,-86.86273;33.904012,-86.863023;33.904608,-86.863207;33.905009,-86.863384;33.905412,-86.863555;33.90582,-86.863573;33.905865,-86.863803;33.906432,-86.863959;33.906843,-86.86411;33.907257,-86.864254;33.907671,-86.864389;33.908087,-86.864669;33.909008,-86.864728;33.909205,-86.8648;33.909481,-86.86503;33.910464,-86.865124;33.91091,-86.865249;33.91157,-86.86528;33.911738,-86.865377;33.912377,-86.865445;33.912856,-86.86554;33.913519,-86.865608;33.913951,-86.865629;33.914129,-86.866346;33.919248,-86.866561;33.920786,-86.866719;33.921956,-86.86798;33.931378,-86.868008;33.931518,-86.868153;33.932612,-86.868171;33.932767\\\\nPOLYLINE,-88.118644;30.633231,-88.118527;30.63392,-88.118483;30.634421,-88.118555;30.635602,-88.118756;30.638301,-88.118984;30.641366,-88.119102;30.642787,-88.119192;30.643425,-88.119325;30.64419,-88.119499;30.644894,-88.119688;30.645494,-88.119859;30.645994,-88.120004;30.646387,-88.121212;30.649108,-88.121437;30.649614,-88.12227;30.651359,-88.122469;30.651775,-88.122543;30.651949,-88.122615;30.652117,-88.122786;30.652515,-88.123088;30.653221,-88.123954;30.655058,-88.12412;30.655409,-88.124763;30.656831,-88.125274;30.658049,-88.125736;30.659264,-88.12609;30.660309,-88.126168;30.660589,-88.126372;30.661322,-88.126424;30.661514,-88.126668;30.662488,-88.1268;30.663142,-88.126986;30.664169,-88.1271;30.664947,-88.127182;30.665714,-88.127184;30.665731,-88.127241;30.666392,-88.127294;30.667202,-88.127305;30.667867,-88.127378;30.672277,-88.127365;30.673723,-88.127405;30.675593,-88.127421;30.676105,-88.127416;30.676246,-88.12741;30.676465,-88.127398;30.678726,-88.127323;30.683388,-88.127305;30.683683,-88.127152;30.684936,-88.127097;30.685231,-88.127076;30.685342,-88.127032;30.685577,-88.127006;30.685715,-88.126506;30.68817,-88.126473;30.688325,-88.126428;30.688536,-88.126336;30.688973,-88.125955;30.69077,-88.125739;30.691881,-88.125314;30.693788,-88.125287;30.69391,-88.124577;30.697295,-88.124295;30.69864,-88.124291;30.698658,-88.12382;30.700952,-88.123402;30.702921,-88.123305;30.703378,-88.123223;30.703763,-88.122952;30.705097,-88.122907;30.705306,-88.122666;30.70643,-88.122634;30.706577,-88.122594;30.706769,-88.122556;30.706957,-88.122511;30.70717,-88.122475;30.70734,-88.122426;30.707576,-88.122403;30.707688,-88.122029;30.709427,-88.121837;30.710389,-88.121619;30.711425,-88.121233;30.713259,-88.121038;30.714263,-88.120875;30.715697,-88.120744;30.717524,-88.120615;30.7199,-88.120571;30.720711,-88.120558;30.720941,-88.120391;30.724005,-88.120345;30.724856,-88.120326;30.725224,-88.1203;30.725724,-88.120142;30.728809,-88.120043;30.729801,-88.119882;30.73042,-88.119739;30.730973,-88.119361;30.731776,-88.11886;30.732616,-88.118206;30.733433,-88.117386;30.734264,-88.116249;30.735062,-88.115705;30.735409,-88.114749;30.736019,-88.111832;30.737881,-88.110967;30.738448,-88.110837;30.738534,-88.108828;30.739852,-88.107752;30.740678,-88.107646;30.74076,-88.107225;30.741083,-88.105487;30.742554,-88.105202;30.742826,-88.104969;30.743049,-88.104153;30.743828,-88.103345;30.7446,-88.102661;30.745253,-88.101803;30.746074,-88.101041;30.746801,-88.098995;30.748755,-88.09872;30.74896,-88.098281;30.749289,-88.096915;30.750638,-88.09675;30.750801,-88.096545;30.751032,-88.096029;30.75161,-88.09533;30.752535,-88.09494;30.753051,-88.094319;30.754131,-88.093953;30.754769,-88.093569;30.755713,-88.093458;30.755986,-88.093234;30.756608,-88.093137;30.756876,-88.092939;30.757595,-88.09285;30.75792,-88.092741;30.758594,-88.092664;30.759067,-88.09264;30.759451,-88.09257;30.760548,-88.092607;30.761846,-88.092717;30.762804,-88.092818;30.763357,-88.092917;30.76384,-88.093041;30.764494,-88.093058;30.764587,-88.093316;30.76532,-88.093595;30.76611,-88.093921;30.767083,-88.09396;30.767197,-88.095347;30.771398,-88.095671;30.772381,-88.10054;30.787,-88.100721;30.787566,-88.100744;30.787639,-88.100768;30.787712,-88.100847;30.787957,-88.101894;30.791166,-88.10211;30.791796,-88.102286;30.792334,-88.102519;30.792994,-88.10274;30.793685,-88.102782;30.793815,-88.102842;30.793998,-88.104062;30.797751,-88.1044;30.799697,-88.104481;30.800323,-88.104536;30.801399,-88.104564;30.802068,-88.104565;30.802246,-88.104569;30.803143,-88.10457;30.803309,-88.104486;30.804402,-88.104415;30.804914,-88.104328;30.80569,-88.104191;30.806419,-88.104175;30.806677,-88.103833;30.808069,-88.103796;30.808219,-88.103448;30.809199,-88.102998;30.810439,-88.102789;30.810932,-88.102395;30.811797,-88.101852;30.812814,-88.10123;30.813862,-88.100948;30.814291,-88.10047;30.815019,-88.098732;30.817301,-88.097717;30.818634,-88.096506;30.820182,-88.096368;30.820363,-88.09568;30.821271,-88.095199;30.821887,-88.095124;30.821982,-88.095096;30.822019,-88.094763;30.822461,-88.09452;30.822784,-88.09237;30.825576,-88.091785;30.826383,-88.091747;30.826432,-88.09156;30.826675,-88.090781;30.827625,-88.089129;30.829802,-88.088052;30.83121,-88.087687;30.83167,-88.087147;30.832385,-88.086767;30.83286,-88.08653;30.833176,-88.086467;30.833259,-88.085424;30.834579,-88.083972;30.836488,-88.083561;30.837023,-88.082543;30.838347,-88.08161;30.839577,-88.081198;30.840122,-88.080549;30.840972,-88.080131;30.841578,-88.079576;30.842357,-88.079316;30.842753,-88.078815;30.843516,-88.078766;30.84359,-88.078272;30.844391,-88.077905;30.84501,-88.077125;30.846416,-88.076483;30.847703,-88.076375;30.84792,-88.07611;30.848462,-88.075872;30.84902,-88.07537;30.850118,-88.074967;30.851134,-88.073906;30.853644,-88.073401;30.854875,-88.072592;30.856806,-88.072482;30.857084,-88.071898;30.858441,-88.071507;30.859211,-88.071144;30.8598,-88.07082;30.860285,-88.070278;30.860996,-88.069514;30.861838,-88.069109;30.862229,-88.068629;30.862655,-88.067747;30.863354,-88.067586;30.863463,-88.067059;30.863823,-88.066071;30.864416,-88.06372;30.865826,-88.062793;30.866382,-88.061712;30.867041,-88.059367;30.868437,-88.056856;30.86995,-88.054663;30.871244,-88.053092;30.872197,-88.05254;30.872544,-88.051774;30.872995,-88.049858;30.874151,-88.049027;30.874646,-88.048341;30.875035,-88.047407;30.875603,-88.047004;30.875835,-88.046449;30.876177,-88.046059;30.876403,-88.045126;30.876982,-88.044616;30.877301,-88.044288;30.877507,-88.044171;30.877563,-88.043581;30.877915,-88.042992;30.878251,-88.042454;30.878578,-88.04216;30.878757,-88.040728;30.879623,-88.0402;30.879925,-88.040085;30.879991,-88.039495;30.880345,-88.039409;30.880397,-88.039328;30.880445,-88.036916;30.881895,-88.036511;30.882138,-88.035328;30.88285,-88.034768;30.883244,-88.034615;30.883334,-88.031679;30.885059,-88.029469;30.886367,-88.028928;30.886687,-88.028085;30.887199,-88.026997;30.887861,-88.026752;30.88801,-88.025972;30.888484,-88.025203;30.888923,-88.02264;30.890484,-88.020621;30.891732,-88.02022;30.891919,-88.019057;30.892623,-88.018107;30.893217,-88.017682;30.893513,-88.017026;30.893959,-88.015202;30.89521,-88.013792;30.896236,-88.011837;30.897659,-88.011403;30.89798,-88.009601;30.899315,-88.007086;30.901231,-88.006086;30.901956,-88.005324;30.90245,-88.004823;30.902753,-88.004552;30.902916,-88.004361;30.903032,-88.003421;30.903497,-88.002752;30.903828,-88.001305;30.904391,-88.00116;30.904448,-88.000304;30.904719,-88.000194;30.904749,-87.998983;30.90506,-87.995453;30.905727,-87.990271;30.906657,-87.984788;30.907661,-87.980707;30.908361,-87.979015;30.908659,-87.975109;30.909478,-87.973558;30.909894,-87.972651;30.910192,-87.971719;30.910489,-87.969834;30.911238,-87.967885;30.912126,-87.966366;30.91288,-87.965305;30.913479,-87.964908;30.913678,-87.963564;30.914471,-87.962651;30.914961,-87.962133;30.915246,-87.954758;30.919212,-87.9544;30.919417\\\\nPOLYLINE,-86.867434;31.558072,-86.867091;31.558346,-86.866889;31.558523,-86.852184;31.571402,-86.848883;31.574303,-86.846191;31.576703,-86.844862;31.577929,-86.843777;31.579012,-86.843321;31.579463,-86.84174;31.581215,-86.840401;31.582736,-86.839756;31.583516,-86.839121;31.584283,-86.838074;31.585615,-86.835812;31.588451,-86.833488;31.591383,-86.831809;31.593481,-86.830972;31.594547,-86.829704;31.596125,-86.828846;31.597165,-86.827961;31.598192,-86.827749;31.598449,-86.827368;31.598879,-86.826639;31.599701,-86.826037;31.600359,-86.825706;31.60072,-86.824296;31.602225,-86.823574;31.602963,-86.822362;31.604177,-86.821623;31.6049,-86.820421;31.606108,-86.820172;31.606344,-86.819437;31.607075,-86.817008;31.60946,-86.816001;31.610448,-86.813736;31.612687,-86.811702;31.614698,-86.807721;31.618634,-86.80405;31.622256,-86.803808;31.6225,-86.803557;31.622739,-86.801026;31.625256,-86.800889;31.625392,-86.800728;31.625548,-86.800003;31.62625,-86.799668;31.626588,-86.799268;31.626983,-86.792122;31.634037,-86.788692;31.637417,-86.787959;31.63815,-86.786454;31.639634,-86.785078;31.64099,-86.782614;31.643418,-86.782377;31.643658,-86.782313;31.643721,-86.781883;31.644138,-86.779444;31.646552,-86.778486;31.647497,-86.7783;31.647681,-86.777227;31.648725,-86.776994;31.648968,-86.776743;31.649206,-86.776122;31.649825,-86.775772;31.650175,-86.775168;31.650769,-86.774341;31.651585,-86.772187;31.65371,-86.770337;31.655535,-86.769905;31.655962,-86.769184;31.656705,-86.768915;31.656993,-86.768721;31.6572,-86.76804;31.657955,-86.767166;31.658988,-86.76654;31.659776,-86.765742;31.660852,-86.765175;31.661676,-86.764452;31.662792,-86.762746;31.665619,-86.761223;31.668172,-86.760878;31.668741,-86.755881;31.677083,-86.755782;31.677249,-86.755562;31.677629,-86.755241;31.678156,-86.75493;31.678667,-86.754597;31.679235,-86.754421;31.679515,-86.754092;31.680081,-86.753235;31.681502,-86.753073;31.681787,-86.752726;31.682353,-86.752562;31.682636,-86.752384;31.682918,-86.751883;31.683764,-86.750834;31.685454,-86.749746;31.687129,-86.74862;31.688793,-86.748033;31.689626,-86.747269;31.690709,-86.745877;31.6926,-86.745282;31.693415,-86.745075;31.693681,-86.742894;31.696653,-86.741305;31.698808,-86.741098;31.699079,-86.74073;31.699591,-86.739486;31.701321,-86.739343;31.701519,-86.738204;31.703154,-86.737651;31.703979,-86.737269;31.704529,-86.736534;31.705642,-86.735816;31.706754,-86.735626;31.707027,-86.733076;31.710928,-86.732519;31.711769,-86.729613;31.716204,-86.729157;31.716901,-86.723779;31.725111,-86.723597;31.725397,-86.723043;31.726233,-86.722227;31.727479,-86.721941;31.727916,-86.720494;31.730122,-86.718894;31.732552,-86.718741;31.732784,-86.718669;31.732894,-86.718637;31.732943,-86.717952;31.734011,-86.717216;31.735124,-86.716858;31.735684,-86.713579;31.740687,-86.713043;31.741515,-86.710906;31.744773,-86.70794;31.749297,-86.705942;31.752365,-86.704842;31.754038,-86.704299;31.75488,-86.70393;31.75544,-86.703404;31.756285,-86.702905;31.757138,-86.702433;31.758007,-86.701982;31.758888,-86.701557;31.75977,-86.701151;31.760667,-86.70001;31.763358,-86.699749;31.763955,-86.699464;31.764546,-86.699157;31.76513,-86.698832;31.765703,-86.698493;31.766267,-86.698135;31.766827,-86.697546;31.767647,-86.696922;31.768447,-86.696481;31.768964,-86.696023;31.769467,-86.695786;31.769712,-86.695548;31.769958,-86.695053;31.770434,-86.694288;31.771134,-86.693765;31.771596,-86.693027;31.772262,-86.69274;31.772522,-86.692164;31.773031,-86.691358;31.773752,-86.687442;31.777255,-86.68269;31.781506,-86.681941;31.782219,-86.681217;31.782956,-86.680751;31.783456,-86.680076;31.784218,-86.67943;31.784994,-86.678798;31.785795,-86.678205;31.78661,-86.677638;31.787442,-86.677274;31.788003,-86.676594;31.789138,-86.676284;31.789712,-86.67612;31.789999,-86.67598;31.790266,-86.675968;31.790289,-86.67554;31.791176,-86.674349;31.793836,-86.673849;31.794966,-86.671846;31.799495,-86.671719;31.799794,-86.671581;31.800089,-86.67026;31.80308,-86.670128;31.803363,-86.669985;31.803672,-86.669721;31.804277,-86.66947;31.804873,-86.669384;31.805062,-86.66906;31.80577,-86.668276;31.807562,-86.667349;31.809654,-86.667;31.810499,-86.666916;31.810702,-86.666855;31.81085,-86.666691;31.811281,-86.666511;31.811756,-86.666089;31.812967,-86.665705;31.814198,-86.665615;31.814505,-86.66554;31.814813,-86.665448;31.815123,-86.665135;31.816369,-86.664867;31.817629,-86.664691;31.818572,-86.664515;31.819605,-86.664455;31.81988,-86.663938;31.822874,-86.663898;31.823106,-86.66386;31.823327,-86.663658;31.824503,-86.663458;31.825442,-86.663297;31.826067,-86.663113;31.826685,-86.662983;31.827078,-86.662798;31.827606,-86.662561;31.828214,-86.662171;31.829106,-86.662082;31.829296,-86.661892;31.829701,-86.661587;31.830285,-86.661262;31.83086,-86.661027;31.83124,-86.660979;31.831317,-86.660742;31.831701,-86.66018;31.832525,-86.660136;31.832585,-86.659782;31.833059,-86.659151;31.833848,-86.658932;31.83411,-86.655836;31.837504,-86.654834;31.838603,-86.654147;31.839344,-86.653461;31.840108,-86.652539;31.841104,-86.651851;31.841857,-86.650896;31.842856,-86.649878;31.843819,-86.649357;31.844286,-86.648829;31.844742,-86.648052;31.845372,-86.648007;31.845409,-86.647566;31.845753,-86.647076;31.846114,-86.646619;31.846451,-86.644844;31.847715,-86.644639;31.847861,-86.644067;31.848259,-86.643682;31.84854,-86.6431;31.848977,-86.641312;31.850247,-86.640866;31.850563,-86.640409;31.850887,-86.639303;31.851673,-86.638771;31.852026,-86.638218;31.852395,-86.637665;31.852781,-86.63722;31.853108,-86.636374;31.85373,-86.635683;31.854282,-86.635413;31.854479,-86.634629;31.855125,-86.633582;31.856032,-86.632579;31.856985,-86.632333;31.857226,-86.63176;31.857822,-86.631627;31.857961,-86.629536;31.860209,-86.629372;31.860392,-86.629311;31.86046,-86.622135;31.868201,-86.622048;31.86829,-86.621901;31.868441,-86.621833;31.868511,-86.621672;31.868688,-86.620757;31.869692,-86.620287;31.870187,-86.618622;31.871987,-86.618274;31.872364,-86.617885;31.872784,-86.617767;31.872911,-86.61613;31.874682,-86.615225;31.875697,-86.614342;31.876729,-86.613906;31.877247,-86.613062;31.8783,-86.61224;31.879369,-86.611444;31.880445,-86.610573;31.881676,-86.609905;31.882634,-86.609138;31.883721,-86.608766;31.884272,-86.608457;31.884691,-86.608419;31.884757,-86.607998;31.885368,-86.607605;31.885915,-86.604545;31.890307,-86.603455;31.891859,-86.602259;31.893562,-86.601996;31.893919,-86.601725;31.894275,-86.601051;31.895162,-86.600635;31.895691,-86.599791;31.896732,-86.598911;31.897764,-86.598012;31.898776,-86.597083;31.899785,-86.596134;31.900773,-86.595174;31.901745,-86.593255;31.903708,-86.591326;31.905661,-86.590161;31.906847,-86.588687;31.908346,-86.587963;31.909083,-86.587258;31.909808,-86.586048;31.911053,-86.585123;31.91206,-86.584215;31.913085,-86.584097;31.913224,-86.583345;31.914109,-86.582914;31.914633,-86.582072;31.915692,-86.581253;31.916765,-86.579749;31.918801,-86.578887;31.919967,-86.576054;31.92382,-86.574459;31.925984,-86.572137;31.929134,-86.571353;31.930207,-86.570954;31.93074,-86.570563;31.93128,-86.564174;31.939945,-86.563756;31.940478,-86.563329;31.941005,-86.562888;31.941525,-86.562439;31.942035,-86.561982;31.942533,-86.561503;31.943029,-86.561014;31.943517,-86.560514;31.943999,-86.560008;31.944465,-86.559251;31.945132,-86.559179;31.945195,-86.558972;31.945377,-86.558607;31.945694,-86.555869;31.948069,-86.554825;31.948991,-86.550537;31.952723,-86.543307;31.959014,-86.542631;31.959603,-86.54188;31.960257,-86.541209;31.960842,-86.540695;31.961303,-86.540485;31.961502,-86.540195;31.961777,-86.540075;31.961898,-86.539712;31.962266,-86.539249;31.962765,-86.538806;31.963274,-86.538477;31.963678\\\\nPOLYLINE,-86.53919;31.963683,-86.539389;31.963388,-86.539998;31.962601,-86.54035;31.962173,-86.54043;31.962077,-86.540891;31.961568,-86.54137;31.961075,-86.541867;31.960595,-86.542102;31.960385,-86.542533;31.96,-86.542744;31.959812,-86.543496;31.959155,-86.545516;31.95739,-86.547355;31.955798,-86.5484;31.954881,-86.550725;31.952856,-86.556252;31.948044,-86.558951;31.945688,-86.559419;31.94528,-86.559569;31.945149,-86.560133;31.944657,-86.561127;31.94373,-86.56185;31.943008,-86.562781;31.942007,-86.563445;31.941235,-86.564077;31.940448,-86.565485;31.938564,-86.568095;31.935027,-86.568691;31.934212,-86.574616;31.926171,-86.574656;31.926116,-86.576326;31.923858,-86.576851;31.923147,-86.57944;31.919616,-86.57993;31.918953,-86.581796;31.916429,-86.582826;31.915106,-86.583687;31.914057,-86.584417;31.9132,-86.584571;31.91302,-86.585713;31.91175,-86.586889;31.910506,-86.587436;31.909947,-86.588128;31.909239,-86.588852;31.908501,-86.590334;31.906992,-86.595771;31.901457,-86.597203;31.899977,-86.598139;31.89898,-86.599042;31.897963,-86.599915;31.896934,-86.600347;31.896414,-86.601598;31.894833,-86.601739;31.894643,-86.601992;31.8943,-86.602239;31.893966,-86.602794;31.893216,-86.603745;31.891859,-86.604327;31.891029,-86.604701;31.890482,-86.606627;31.887741,-86.607515;31.886461,-86.60815;31.885546,-86.609109;31.884184,-86.609695;31.883343,-86.610257;31.882537,-86.611603;31.88062,-86.612195;31.879806,-86.613012;31.878733,-86.613639;31.877938,-86.614716;31.876631,-86.615603;31.875607,-86.616282;31.874847,-86.617683;31.873341,-86.617807;31.873207,-86.61793;31.873073,-86.618328;31.872641,-86.618654;31.872287,-86.620449;31.87034,-86.621752;31.868942,-86.621901;31.868782,-86.622114;31.868552,-86.622289;31.868363,-86.625524;31.864877,-86.625972;31.864382,-86.629679;31.860393,-86.630165;31.859871,-86.631555;31.858366,-86.63192;31.857985,-86.632497;31.857383,-86.632983;31.856895,-86.633484;31.856419,-86.633999;31.85596,-86.635057;31.85506,-86.6356;31.854622,-86.636158;31.854192,-86.636727;31.853772,-86.637321;31.853348,-86.637897;31.852938,-86.640484;31.851095,-86.64093;31.850777,-86.641402;31.850443,-86.642909;31.849374,-86.645068;31.84784,-86.64686;31.846567,-86.647421;31.846148,-86.647485;31.846101,-86.647945;31.845758,-86.64839;31.845406,-86.6485;31.84532,-86.649035;31.844874,-86.649554;31.844426,-86.650072;31.843964,-86.650582;31.843487,-86.651081;31.843004,-86.652037;31.842007,-86.652508;31.8415,-86.652965;31.840993,-86.654349;31.839492,-86.655255;31.838489,-86.65587;31.837821,-86.656179;31.837486,-86.658463;31.834988,-86.659366;31.833965,-86.659798;31.833454,-86.660247;31.832885,-86.660419;31.832667,-86.660817;31.832133,-86.660987;31.831885,-86.661384;31.831309,-86.661428;31.831243,-86.661757;31.830749,-86.662103;31.830182,-86.662259;31.829896,-86.662435;31.829614,-86.662902;31.828749,-86.663329;31.827867,-86.663727;31.826972,-86.663972;31.82637,-86.664204;31.825766,-86.664351;31.825346,-86.664703;31.824227,-86.664952;31.823292,-86.66498;31.82318,-86.665032;31.822964,-86.66508;31.822747,-86.665166;31.822357,-86.665342;31.821411,-86.665641;31.819661,-86.665812;31.818231,-86.666009;31.816972,-86.666248;31.815712,-86.666584;31.814139,-86.666807;31.813203,-86.667136;31.811964,-86.667195;31.811766,-86.667415;31.811021,-86.667437;31.810947,-86.6675;31.810735,-86.667795;31.809816,-86.668333;31.808295,-86.668924;31.806779,-86.669385;31.805672,-86.669427;31.805572,-86.669701;31.804955,-86.669916;31.804472,-86.670357;31.803477,-86.674073;31.795084,-86.675243;31.792442,-86.675777;31.791257,-86.676058;31.790671,-86.676218;31.790367,-86.676664;31.789519,-86.676988;31.788954,-86.677324;31.788397,-86.677675;31.787837,-86.67823;31.786997,-86.67882;31.786174,-86.679436;31.785366,-86.680083;31.784578,-86.680756;31.783808,-86.681454;31.783058,-86.681937;31.782567,-86.682932;31.78162,-86.687624;31.777412,-86.688579;31.776556,-86.691534;31.773911,-86.69235;31.773181,-86.693181;31.772436,-86.6958;31.77009,-86.696139;31.769771,-86.696557;31.769378,-86.697289;31.768657,-86.69776;31.76817,-86.698448;31.767412,-86.699111;31.766636,-86.699535;31.766112,-86.700147;31.765315,-86.700734;31.764504,-86.70147;31.763401,-86.70215;31.762268,-86.702628;31.761404,-86.703402;31.759947,-86.703546;31.759656,-86.70371;31.759369,-86.704518;31.757847,-86.709576;31.748321,-86.71097;31.745711,-86.711767;31.74427,-86.712591;31.742834,-86.713614;31.741129,-86.714494;31.739726,-86.715763;31.737773,-86.718001;31.734351,-86.718487;31.733608,-86.718662;31.733328,-86.718718;31.733247,-86.718853;31.733051,-86.71888;31.73301,-86.719042;31.732763,-86.722145;31.728033,-86.722319;31.727767,-86.722426;31.727595,-86.722859;31.726929,-86.723234;31.726374,-86.724322;31.724703,-86.726688;31.721099,-86.727049;31.72054,-86.728169;31.718868,-86.729129;31.717505,-86.729499;31.717,-86.729706;31.716718,-86.729916;31.716431,-86.730929;31.715105,-86.731758;31.714063,-86.734084;31.711177,-86.734279;31.710954,-86.735239;31.709727,-86.735429;31.709502,-86.736798;31.707726,-86.737975;31.70611,-86.738735;31.705014,-86.739656;31.703635,-86.739769;31.703458,-86.741766;31.700322,-86.742145;31.699728,-86.745346;31.69469,-86.745708;31.694127,-86.746592;31.692725,-86.74695;31.692171,-86.7473;31.691612,-86.749077;31.688811,-86.751334;31.685129,-86.753218;31.682004,-86.754234;31.680303,-86.755084;31.678889,-86.755244;31.678606,-86.755474;31.678228,-86.755569;31.678073,-86.755802;31.677691,-86.756115;31.677167,-86.759662;31.671219,-86.759838;31.670936,-86.760003;31.670649,-86.760179;31.670366,-86.764082;31.663841,-86.764244;31.663555,-86.764942;31.662435,-86.765307;31.661877,-86.766077;31.660785,-86.766675;31.659976,-86.767303;31.659181,-86.768169;31.658151,-86.768852;31.657389,-86.76904;31.65719,-86.769322;31.656892,-86.770522;31.65568,-86.770668;31.655535,-86.772115;31.654099,-86.774513;31.651724,-86.775364;31.650881,-86.775648;31.650614,-86.776301;31.649972,-86.77828;31.648025,-86.778419;31.647888,-86.778495;31.647811,-86.779558;31.646751,-86.782437;31.643911,-86.783959;31.642409,-86.7852;31.641194,-86.785422;31.640977,-86.785659;31.640733,-86.786648;31.639762,-86.787598;31.63883,-86.787828;31.638591,-86.788553;31.637877,-86.789296;31.637153,-86.791487;31.634986,-86.798838;31.627732,-86.799576;31.627008,-86.799595;31.626988,-86.800332;31.62625,-86.801003;31.625591,-86.801153;31.625444,-86.802472;31.62415,-86.803927;31.622706,-86.804659;31.621989,-86.805642;31.621012,-86.807614;31.619071,-86.807853;31.618827,-86.809324;31.617383,-86.810778;31.615938,-86.811916;31.614819,-86.814036;31.612701,-86.814658;31.612122,-86.815133;31.611642,-86.816113;31.610684,-86.816846;31.60995,-86.822227;31.604644,-86.823684;31.603198,-86.823913;31.602951,-86.825116;31.601709,-86.82558;31.60121,-86.825815;31.600964,-86.826333;31.600393,-86.826777;31.599902,-86.827633;31.598942,-86.827681;31.598887,-86.828969;31.597386,-86.830039;31.596087,-86.835965;31.588644,-86.836324;31.588193,-86.836524;31.58793,-86.838835;31.585036,-86.839038;31.584772,-86.839257;31.58451,-86.839886;31.583722,-86.839962;31.583633,-86.840315;31.583198,-86.84142;31.581919,-86.843574;31.579538,-86.844752;31.578363,-86.846327;31.576895,-86.848711;31.574761,-86.852447;31.571483,-86.867065;31.558667,-86.867214;31.558536,-86.867523;31.558289\\\\nPOLYLINE,-86.907309;34.579837,-86.907651;34.578974,-86.908266;34.577405,-86.90835;34.577184,-86.909087;34.575264,-86.909432;34.574344,-86.909698;34.573668,-86.909742;34.573556,-86.909774;34.573443,-86.910116;34.572547,-86.910419;34.571686,-86.910437;34.571636,-86.910699;34.570717,-86.91081;34.570254,-86.91091;34.569793,-86.910983;34.569423,-86.911046;34.569051,-86.911102;34.56868,-86.911149;34.568308,-86.911188;34.567904,-86.911213;34.567651,-86.911239;34.567274,-86.911267;34.566326,-86.911238;34.565369,-86.911161;34.564407,-86.911031;34.563454,-86.910854;34.562514,-86.910624;34.561577,-86.910344;34.560647,-86.910012;34.559733,-86.908502;34.556062,-86.908128;34.555131,-86.907781;34.554186,-86.907467;34.553226,-86.907189;34.552252,-86.907123;34.551975,-86.906956;34.551281,-86.906757;34.550325,-86.906595;34.549375,-86.906473;34.54843,-86.906403;34.547681,-86.906385;34.547494,-86.90633;34.546564,-86.906304;34.54563,-86.906299;34.545363,-86.906279;34.544279,-86.906266;34.543082,-86.906261;34.542829,-86.906218;34.540763,-86.906191;34.539105,-86.906173;34.53873,-86.906171;34.538463,-86.906155;34.538289,-86.90616;34.538205,-86.906156;34.537771,-86.906156;34.537746,-86.906149;34.536868,-86.906109;34.535611,-86.906062;34.534652,-86.906017;34.534006,-86.90599;34.533748,-86.905976;34.533525,-86.905921;34.532851,-86.905815;34.531862,-86.905658;34.530638,-86.905593;34.530095,-86.90553;34.529633,-86.905486;34.529453,-86.905409;34.528995,-86.905158;34.527684,-86.904977;34.526801,-86.90479;34.525918,-86.90457;34.525027,-86.904338;34.524126,-86.904074;34.523217,-86.903803;34.522306,-86.903516;34.521384,-86.902909;34.519523,-86.902593;34.518575,-86.902277;34.517606,-86.901949;34.51663,-86.901626;34.515641,-86.901423;34.515027,-86.900082;34.510982,-86.899451;34.509024,-86.899174;34.508086,-86.899035;34.507555,-86.898937;34.507183,-86.898742;34.506266,-86.898572;34.505348,-86.898436;34.504417,-86.898329;34.503472,-86.898272;34.502535,-86.898237;34.501579,-86.898237;34.501512,-86.898232;34.500622,-86.898238;34.499278,-86.89824;34.49872,-86.898255;34.497768,-86.898271;34.49581,-86.898273;34.49543,-86.898287;34.493088,-86.8983;34.490882,-86.898294;34.490169,-86.898292;34.489906,-86.898311;34.488945,-86.898308;34.488544,-86.898304;34.487984,-86.898322;34.48703,-86.898357;34.480869,-86.898368;34.47892,-86.898368;34.478882,-86.898369;34.478691,-86.898389;34.475078,-86.898383;34.474141,-86.898386;34.473707,-86.898392;34.472563,-86.898393;34.472305,-86.89841;34.471387,-86.898409;34.470458,-86.898434;34.469533,-86.898481;34.468608,-86.898551;34.467683,-86.898646;34.466755,-86.898896;34.464901,-86.899054;34.463978,-86.899331;34.46246,-86.899366;34.462281,-86.89957;34.461236,-86.899727;34.46032,-86.899756;34.460159,-86.899997;34.458834,-86.90006;34.458492,-86.900239;34.45758,-86.900411;34.456657,-86.900502;34.456127,-86.900571;34.455727,-86.900623;34.455449,-86.900688;34.4551,-86.900815;34.454415,-86.900922;34.45384,-86.90099;34.45344,-86.901158;34.452461,-86.901166;34.452401,-86.901192;34.452233,-86.901215;34.452101,-86.901319;34.451505,-86.901418;34.450716,-86.901501;34.450054,-86.90156;34.449463,-86.901587;34.449146,-86.901605;34.448955,-86.901675;34.447876,-86.901704;34.44734,-86.901714;34.447071,-86.90172;34.44669,-86.901722;34.446532,-86.901722;34.446408,-86.901723;34.446371,-86.901726;34.445319,-86.901722;34.445089,-86.90171;34.444431,-86.901636;34.443114,-86.901599;34.4426,-86.901541;34.441991,-86.901533;34.441923,-86.901461;34.441281,-86.901381;34.440653,-86.901226;34.439562,-86.901087;34.438656,-86.900941;34.437757,-86.900203;34.433045,-86.900069;34.432084,-86.89992;34.431143,-86.899617;34.429195,-86.899473;34.428242,-86.899396;34.427674,-86.899373;34.427489,-86.899327;34.427106,-86.899239;34.426246,-86.899129;34.424911,-86.899056;34.423756,-86.899008;34.422766,-86.898973;34.421779,-86.898801;34.417891,-86.898742;34.416911,-86.898733;34.416682,-86.898686;34.415627,-86.898559;34.412739,-86.898543;34.412509,-86.898542;34.412282,-86.898472;34.410646,-86.89847;34.410374,-86.89843;34.409466,-86.898375;34.408451,-86.898363;34.407938,-86.898346;34.407641,-86.898348;34.407542,-86.898286;34.406659,-86.898267;34.406385,-86.898258;34.406249,-86.898248;34.406109,-86.898215;34.405702,-86.898207;34.4056,-86.898153;34.405057,-86.897923;34.403133,-86.897834;34.402425,-86.897648;34.401452,-86.897226;34.39897,-86.897016;34.397953,-86.896123;34.393561,-86.895755;34.391753,-86.895382;34.389901,-86.895299;34.389517,-86.892957;34.377937,-86.892575;34.376015,-86.892395;34.375079,-86.892238;34.374189,-86.892204;34.373974,-86.892108;34.373363,-86.892084;34.373192,-86.892057;34.372995,-86.892027;34.372733,-86.891845;34.371034,-86.891767;34.370197,-86.891746;34.369974,-86.8917;34.369309,-86.891674;34.368924,-86.891638;34.368233,-86.891627;34.36792,-86.891607;34.367336,-86.891599;34.367001,-86.891595;34.366802,-86.891586;34.365994,-86.891589;34.36521,-86.891598;34.364799,-86.8916;34.364695,-86.891634;34.363746,-86.891638;34.363311,-86.891633;34.362938,-86.891638;34.362745,-86.891649;34.362647,-86.891706;34.361517,-86.891786;34.35971,-86.891796;34.359505,-86.891902;34.357378,-86.892011;34.355204,-86.892054;34.354235,-86.892088;34.353587,-86.892146;34.352359,-86.892182;34.351413,-86.892369;34.347635,-86.892411;34.346689,-86.892458;34.346122,-86.892461;34.345837,-86.892514;34.345174,-86.892554;34.344801,-86.892603;34.344423,-86.892661;34.344044,-86.892788;34.343378,-86.892868;34.342999,-86.892957;34.342623,-86.89313;34.341966,-86.893326;34.34132,-86.893452;34.340952,-86.893584;34.340587,-86.893736;34.340228,-86.893872;34.339866,-86.89419;34.339157,-86.894242;34.339041,-86.89461;34.338325,-86.895582;34.336709,-86.896091;34.33592,-86.897675;34.333519,-86.898746;34.331879,-86.899297;34.331063,-86.899563;34.330645,-86.89958;34.330615,-86.899804;34.330205,-86.900024;34.329757,-86.900162;34.329391,-86.900286;34.32903,-86.900397;34.328672,-86.900422;34.328563,-86.90048;34.328304,-86.900545;34.327934,-86.900574;34.32756,-86.900589;34.327282,-86.900592;34.32691,-86.900581;34.326628,-86.900533;34.326156,-86.900351;34.325207,-86.900144;34.324253,-86.899918;34.323295,-86.899705;34.322351,-86.899626;34.321974,-86.899566;34.321597,-86.899545;34.321313,-86.899531;34.32103,-86.899527;34.320562,-86.899561;34.320187,-86.899629;34.319726,-86.8997;34.319386,-86.899809;34.318965,-86.899887;34.318717,-86.900078;34.31823,-86.900189;34.317991,-86.90079;34.31681,-86.900886;34.316623,-86.901395;34.315638,-86.902091;34.314311,-86.902391;34.313745,-86.902571;34.313381,-86.902617;34.313302,-86.902729;34.313075,-86.902855;34.312851,-86.90365;34.311286,-86.90441;34.309822\\\\nPOLYLINE,-86.907054;34.579782,-86.907427;34.578824,-86.907781;34.577938,-86.908003;34.577366,-86.908097;34.577118,-86.908858;34.575127,-86.909183;34.574276,-86.909464;34.573558,-86.909492;34.573486,-86.909535;34.573362,-86.909957;34.572264,-86.910054;34.571993,-86.910155;34.571673,-86.910319;34.571154,-86.91052;34.570377,-86.910632;34.569893,-86.910746;34.569304,-86.910855;34.568612,-86.910913;34.568115,-86.910933;34.567901,-86.910941;34.567817,-86.910986;34.567223,-86.911001;34.566928,-86.911007;34.566139,-86.91099;34.565343,-86.91097;34.565045,-86.910936;34.564647,-86.910894;34.564253,-86.910843;34.563861,-86.9108;34.563569,-86.910718;34.563085,-86.910619;34.562607,-86.910511;34.562136,-86.910389;34.561666,-86.910284;34.561298,-86.91017;34.560928,-86.909847;34.560009,-86.909484;34.559102,-86.909112;34.558195,-86.908734;34.55729,-86.908367;34.556381,-86.908252;34.556113,-86.907876;34.555179,-86.907635;34.554529,-86.907434;34.553959,-86.907309;34.553577,-86.907127;34.552963,-86.906997;34.552523,-86.906784;34.551668,-86.906632;34.551003,-86.906574;34.550721,-86.906466;34.550151,-86.906354;34.549484,-86.906287;34.549008,-86.906171;34.548052,-86.906141;34.547613,-86.906102;34.547053,-86.906062;34.546062,-86.906042;34.545084,-86.906025;34.544275,-86.905998;34.542719,-86.90595;34.539978,-86.905921;34.537737,-86.905914;34.537175,-86.905904;34.535849,-86.905881;34.53543,-86.90576;34.533561,-86.905742;34.533345,-86.905617;34.532065,-86.905515;34.531246,-86.905403;34.530432,-86.905277;34.529623,-86.905131;34.528738,-86.905011;34.528093,-86.904731;34.526847,-86.904684;34.526624,-86.904266;34.524934,-86.904028;34.524042,-86.903771;34.523135,-86.903497;34.522226,-86.903028;34.520748,-86.902931;34.520444,-86.901167;34.51511,-86.900812;34.514035,-86.900121;34.511945,-86.899743;34.510803,-86.899609;34.510397,-86.898988;34.50849,-86.898815;34.50784,-86.898741;34.507559,-86.898529;34.506655,-86.898373;34.505783,-86.898233;34.504934,-86.898121;34.504079,-86.898048;34.503225,-86.897989;34.502371,-86.897975;34.501902,-86.897963;34.501514,-86.89796;34.500654,-86.897968;34.499273,-86.89799;34.495438,-86.897991;34.495269,-86.897986;34.49433,-86.897988;34.493389,-86.897991;34.493098,-86.898007;34.491492,-86.898016;34.490117,-86.898027;34.488432,-86.898031;34.487768,-86.898051;34.486876,-86.898055;34.486008,-86.898048;34.485106,-86.898069;34.484162,-86.898054;34.483217,-86.898075;34.482273,-86.898072;34.48133,-86.898074;34.480883,-86.898082;34.479488,-86.8981;34.478582,-86.898093;34.477679,-86.898102;34.476782,-86.898117;34.474068,-86.89811;34.47388,-86.898134;34.473141,-86.898127;34.472185,-86.898135;34.471232,-86.898159;34.470272,-86.89819;34.469298,-86.898235;34.468325,-86.89833;34.467366,-86.898371;34.466921,-86.898418;34.466413,-86.898456;34.46613,-86.898488;34.465898,-86.898547;34.465467,-86.898692;34.464542,-86.898855;34.463633,-86.899106;34.462272,-86.899492;34.460181,-86.900136;34.45672,-86.900256;34.45607,-86.900418;34.455189,-86.900429;34.455128,-86.900435;34.455095,-86.900563;34.454401,-86.900715;34.453577,-86.900741;34.453491,-86.900751;34.453434,-86.900978;34.452096,-86.901135;34.451252,-86.901243;34.450362,-86.901292;34.449955,-86.901334;34.449454,-86.90136;34.449136,-86.901429;34.448302,-86.901462;34.447672,-86.901485;34.447228,-86.901494;34.4469,-86.901493;34.446699,-86.901493;34.446563,-86.901493;34.446445,-86.9015;34.446219,-86.901465;34.445076,-86.901456;34.444799,-86.901438;34.443913,-86.901379;34.443027,-86.901305;34.442138,-86.901287;34.441961,-86.90121;34.441227,-86.90095;34.439392,-86.900661;34.437551,-86.900509;34.436618,-86.900372;34.435679,-86.900219;34.434745,-86.900081;34.433821,-86.899928;34.432909,-86.899786;34.431998,-86.899658;34.431096,-86.899655;34.431029,-86.899501;34.4302,-86.899366;34.429307,-86.89914;34.42764,-86.899034;34.426834,-86.898888;34.425726,-86.898735;34.423618,-86.898533;34.417672,-86.89852;34.417238,-86.898505;34.416134,-86.898478;34.415639,-86.898444;34.414805,-86.898392;34.41354,-86.898339;34.41251,-86.898185;34.408885,-86.898122;34.408155,-86.898103;34.407784,-86.898055;34.40735,-86.89803;34.40692,-86.897991;34.406575,-86.897981;34.406484,-86.897923;34.405852,-86.897822;34.404939,-86.897723;34.404133,-86.897538;34.402857,-86.897458;34.402375,-86.89744;34.402264,-86.897264;34.401282,-86.89707;34.400303,-86.895705;34.393564,-86.894766;34.38893,-86.894401;34.387098,-86.893663;34.383452,-86.893463;34.382528,-86.893274;34.3816,-86.893097;34.380659,-86.892905;34.379709,-86.892492;34.377746,-86.892095;34.375766,-86.891926;34.374806,-86.891744;34.373817,-86.891722;34.373636,-86.891689;34.373223,-86.891623;34.372555,-86.891582;34.372232,-86.891419;34.370666,-86.891396;34.370446,-86.891377;34.370197,-86.891312;34.369339,-86.891273;34.368818,-86.89124;34.368213,-86.891229;34.367917,-86.891202;34.3672,-86.8912;34.366999,-86.891188;34.365994,-86.891191;34.364873,-86.891192;34.364814,-86.891203;34.364314,-86.89123;34.363591,-86.89123;34.363297,-86.891239;34.362856,-86.891268;34.362165,-86.891272;34.361863,-86.891311;34.360851,-86.891381;34.35944,-86.891461;34.357833,-86.891478;34.357364,-86.891495;34.356922,-86.891537;34.356037,-86.891594;34.355151,-86.891596;34.355102,-86.891667;34.353564,-86.892036;34.345932,-86.892125;34.344999,-86.892263;34.344056,-86.892456;34.34312,-86.89269;34.342196,-86.892972;34.341287,-86.893309;34.340388,-86.893693;34.339496,-86.893726;34.339431,-86.89393;34.339026,-86.89413;34.338622,-86.894611;34.337767,-86.895138;34.336932,-86.89622;34.335268,-86.896779;34.334424,-86.897897;34.332717,-86.898463;34.331839,-86.8992;34.330721,-86.899477;34.330257,-86.899511;34.3302,-86.89969;34.32984,-86.89985;34.329472,-86.90002;34.329001,-86.900152;34.32852,-86.900191;34.328322,-86.900249;34.328029,-86.900288;34.327733,-86.900318;34.327338,-86.900325;34.327038,-86.900313;34.326638,-86.900287;34.32634,-86.900102;34.32534,-86.899661;34.323342,-86.899442;34.322378,-86.899383;34.322099,-86.899321;34.321733,-86.899281;34.321378,-86.899265;34.321118,-86.899266;34.320874,-86.899276;34.320617,-86.899297;34.320272,-86.89934;34.319892,-86.899399;34.319537,-86.899501;34.319192,-86.899635;34.318773,-86.899763;34.318437,-86.899893;34.318125,-86.900075;34.317742,-86.900538;34.316827,-86.900669;34.31654,-86.900772;34.316374,-86.902403;34.313211,-86.902952;34.312133,-86.903138;34.311714,-86.903361;34.311249,-86.903503;34.310983,-86.90398;34.310044,-86.904102;34.309812\\\\nPOLYLINE,-86.412073;32.493105,-86.411436;32.492204,-86.411201;32.491901,-86.411178;32.491867,-86.410877;32.49143,-86.410766;32.491261,-86.410494;32.490892,-86.409138;32.489108,-86.40911;32.489071,-86.40909;32.489047,-86.408935;32.488853,-86.408811;32.488698,-86.408629;32.48846,-86.407902;32.487552,-86.407265;32.48678,-86.407063;32.486562,-86.406701;32.486134,-86.406472;32.485838,-86.401739;32.480224,-86.400256;32.478451,-86.399842;32.477939,-86.399282;32.477248,-86.39833;32.476036,-86.397412;32.474815,-86.396513;32.473584,-86.395636;32.472344,-86.394776;32.47107,-86.394364;32.470461,-86.389927;32.463453,-86.3895;32.462821,-86.389361;32.462614,-86.389291;32.462511,-86.388877;32.46181,-86.388754;32.461595,-86.387966;32.460352,-86.387863;32.460198,-86.387457;32.459549,-86.386512;32.458064,-86.385629;32.456677,-86.385402;32.45637,-86.384858;32.455533,-86.384725;32.455319,-86.38446;32.454894,-86.383652;32.453626,-86.383174;32.452836,-86.382877;32.452345,-86.382135;32.451172,-86.381647;32.4504,-86.381423;32.450045,-86.379648;32.447239,-86.378122;32.44484,-86.374777;32.439579,-86.373748;32.437956,-86.372503;32.435992,-86.371974;32.435156,-86.371444;32.434322,-86.370736;32.433206,-86.37031;32.432558,-86.36946;32.431316,-86.368979;32.430636\\\\nPOLYLINE,-86.369282;32.430638,-86.370052;32.431741,-86.370586;32.432561,-86.37088;32.433,-86.371689;32.43428,-86.371726;32.434337,-86.372497;32.435552,-86.372795;32.43602,-86.372809;32.436042,-86.374024;32.437956,-86.377003;32.442644,-86.378398;32.44484,-86.379782;32.447018,-86.38138;32.449572,-86.382352;32.45111,-86.384211;32.454051,-86.38462;32.454661,-86.384999;32.455224,-86.385059;32.455314,-86.386075;32.45691,-86.386355;32.457386,-86.386604;32.457819,-86.386687;32.457944,-86.386814;32.458135,-86.38804;32.460047,-86.388135;32.460213,-86.388239;32.460358,-86.389374;32.462142,-86.38959;32.46248,-86.389747;32.462681,-86.389936;32.463023,-86.39261;32.467236,-86.393003;32.467844,-86.39425;32.469776,-86.395536;32.471669,-86.396426;32.472907,-86.397332;32.474136,-86.398731;32.475949,-86.39969;32.477144,-86.400044;32.477566,-86.401171;32.478913,-86.401682;32.479498,-86.403244;32.481257,-86.403744;32.48182,-86.404536;32.482673,-86.404754;32.482917,-86.40556;32.483826,-86.406851;32.485261,-86.407258;32.485747,-86.407913;32.486548,-86.408417;32.48713,-86.408858;32.487662,-86.409267;32.488155,-86.409299;32.488194,-86.409423;32.488349,-86.409603;32.48857,-86.409881;32.488911,-86.410357;32.489514,-86.410584;32.489812,-86.410914;32.490248,-86.411146;32.490519,-86.411298;32.490771,-86.411981;32.49174\\\\nPOLYLINE,-86.90441;34.309822,-86.904929;34.308832,-86.904951;34.30879,-86.905045;34.308608,-86.90565;34.307434,-86.907999;34.302914,-86.909025;34.30093,-86.91;34.299056,-86.910787;34.297543,-86.91099;34.297141,-86.911181;34.296736,-86.911342;34.296325,-86.911459;34.295979,-86.911559;34.295629,-86.911623;34.295345,-86.911682;34.294983,-86.911725;34.294618,-86.911744;34.294324,-86.911751;34.29403,-86.911745;34.293739,-86.911734;34.293522,-86.911708;34.293232,-86.91168;34.293014,-86.911643;34.292797,-86.911613;34.292653,-86.911522;34.292295,-86.911389;34.29187,-86.911286;34.29159,-86.911201;34.291382,-86.911076;34.291108,-86.910903;34.29077,-86.910829;34.290637,-86.910627;34.290309,-86.910453;34.290051,-86.910316;34.289862,-86.910023;34.289493,-86.909907;34.289359,-86.909869;34.289314,-86.909766;34.289201,-86.904059;34.283295,-86.903378;34.282579,-86.903147;34.282339,-86.902517;34.281682,-86.902255;34.281395,-86.901956;34.281042,-86.901768;34.2808,-86.90159;34.280552,-86.901422;34.280299,-86.901188;34.27991,-86.901009;34.27958,-86.900873;34.279313,-86.900751;34.279041,-86.900642;34.278765,-86.900495;34.278346,-86.900365;34.277921,-86.900172;34.277136,-86.899634;34.27508,-86.898945;34.272378,-86.898603;34.271085,-86.897764;34.267816,-86.897669;34.267444,-86.897384;34.266381,-86.897258;34.265958,-86.897126;34.265535,-86.896986;34.265114,-86.89684;34.264694,-86.896688;34.264276,-86.896531;34.26386,-86.896363;34.263447,-86.896187;34.263037,-86.896005;34.262627,-86.895816;34.262219,-86.89562;34.261812,-86.895573;34.26172,-86.895213;34.261008,-86.8948;34.26026,-86.894742;34.260154,-86.894279;34.259371,-86.893356;34.257814,-86.892611;34.256579,-86.891699;34.255042,-86.888635;34.249901,-86.888544;34.249749,-86.888431;34.249561,-86.887465;34.247949,-86.88618;34.245789,-86.885124;34.24403,-86.884663;34.243243,-86.884226;34.242454,-86.883808;34.241652,-86.883608;34.241246,-86.883415;34.240838,-86.883227;34.240428,-86.882525;34.238777,-86.881671;34.236715,-86.879108;34.230552,-86.879062;34.230442,-86.878105;34.228153,-86.877021;34.225558,-86.876517;34.224307,-86.876393;34.223957,-86.876287;34.223602,-86.87618;34.223172,-86.87612;34.222884,-86.876048;34.22245,-86.876012;34.222159,-86.875973;34.221721,-86.875962;34.221429,-86.875967;34.220988,-86.875973;34.220853,-86.875977;34.220749,-86.87599;34.220545,-86.876005;34.220384,-86.87602;34.220248,-86.876064;34.219935,-86.876072;34.219874,-86.876137;34.219498,-86.876203;34.219198,-86.876276;34.218908,-86.876362;34.218619,-86.876419;34.218452,-86.87651;34.218183,-86.876618;34.217899,-86.876799;34.217485,-86.877651;34.215613,-86.878019;34.214819,-86.87856;34.213623,-86.878617;34.213484,-86.878672;34.213351,-86.87882;34.212941,-86.878929;34.212593,-86.879015;34.212259,-86.879038;34.212171,-86.879065;34.212047,-86.879116;34.211815,-86.879159;34.211583,-86.879175;34.2115,-86.87925;34.210947,-86.879274;34.210653,-86.879287;34.210292,-86.879287;34.209854,-86.879273;34.209565,-86.879227;34.209053,-86.879164;34.208618,-86.879007;34.207761,-86.878972;34.207535,-86.878929;34.207332,-86.878375;34.20439,-86.878312;34.204028,-86.878265;34.20377,-86.878228;34.203499,-86.878195;34.203256,-86.878109;34.20249,-86.87809;34.202355,-86.878077;34.202265,-86.878072;34.20219,-86.878052;34.202043,-86.878031;34.201749,-86.878022;34.201382,-86.878026;34.200866,-86.878038;34.20059,-86.878042;34.200496,-86.87806;34.200262,-86.878071;34.200125,-86.878139;34.199535,-86.878148;34.199461,-86.878179;34.199198,-86.878254;34.198566,-86.878329;34.197962,-86.878383;34.197517,-86.878508;34.19651,-86.878642;34.195419,-86.87877;34.194398,-86.87882;34.193988,-86.878929;34.1931,-86.878975;34.192661,-86.879012;34.192222,-86.879021;34.192064,-86.879036;34.19178,-86.879047;34.190911,-86.879039;34.190477,-86.879019;34.190041,-86.878989;34.189607,-86.878949;34.189173,-86.878898;34.188778,-86.878866;34.188522,-86.878794;34.188086,-86.87836;34.185869,-86.878269;34.185427,-86.878185;34.184977,-86.877928;34.183689,-86.877511;34.181545,-86.877335;34.180683,-86.87683;34.178084,-86.876784;34.177856,-86.876567;34.176792,-86.876405;34.175936,-86.876149;34.174654,-86.876068;34.174223,-86.876042;34.174092,-86.875867;34.173219,-86.875335;34.170576,-86.875317;34.170473,-86.875206;34.169916,-86.87505;34.16913,-86.874712;34.167386,-86.874553;34.166586,-86.873524;34.161394,-86.873435;34.16096,-86.873267;34.160091,-86.873091;34.159231,-86.87299;34.158803,-86.872883;34.158376,-86.872769;34.157949,-86.872645;34.157524,-86.872522;34.157126,-86.872514;34.1571,-86.872233;34.156253,-86.871648;34.154574,-86.871055;34.152896,-86.870622;34.151629,-86.870487;34.151207,-86.870237;34.150358,-86.870122;34.149933,-86.870014;34.149507,-86.869914;34.149079,-86.869746;34.148289,-86.869653;34.147782,-86.869547;34.147135,-86.869485;34.146703,-86.869176;34.14409,-86.869138;34.143755,-86.868872;34.141438,-86.868829;34.141056,-86.868363;34.137063,-86.868168;34.135396,-86.86795;34.133477,-86.867947;34.133447,-86.867592;34.130422,-86.867567;34.130251,-86.867542;34.129986,-86.867384;34.128682,-86.867237;34.12739,-86.867081;34.126075,-86.866735;34.123004,-86.866628;34.12212,-86.866541;34.121218,-86.866354;34.118903,-86.866324;34.11845,-86.866285;34.11757,-86.866272;34.117028,-86.866254;34.116255,-86.866254;34.115784,-86.866244;34.115387,-86.866253;34.114304,-86.866252;34.113287,-86.866263;34.110955,-86.866272;34.110394,-86.866269;34.109864,-86.866277;34.109429,-86.866276;34.108632,-86.866275;34.108342,-86.866275;34.108127,-86.86628;34.107268,-86.866341;34.095882,-86.866353;34.094482,-86.866377;34.089096,-86.866378;34.088933,-86.866408;34.083645,-86.866415;34.082517,-86.866418;34.081373,-86.86644;34.078185,-86.866444;34.076859,-86.866462;34.075109,-86.866466;34.075027,-86.866464;34.074023,-86.866476;34.072351,-86.866477;34.071909,-86.86648;34.070964,-86.866492;34.069645,-86.866496;34.068314,-86.866505;34.066776,-86.866516;34.064786,-86.866522;34.064175,-86.866525;34.063916,-86.86654;34.061167,-86.866549;34.059305,-86.86656;34.057334,-86.866563;34.056542,-86.86656;34.056096,-86.86657;34.054543,-86.86658;34.052943,-86.866578;34.052499,-86.866597;34.051394,-86.866601;34.051298,-86.866622;34.050762,-86.866629;34.05052,-86.866698;34.049646,-86.866739;34.049209,-86.866791;34.048774,-86.86685;34.048338,-86.866986;34.047481,-86.867065;34.047055,-86.86712;34.046798,-86.867246;34.046204,-86.867348;34.045778,-86.86757;34.044927,-86.867692;34.044506,-86.867822;34.044085,-86.867961;34.043657,-86.868111;34.043219,-86.868274;34.042771,-86.868513;34.042139,-86.869659;34.039258,-86.870061;34.038249,-86.870542;34.037024,-86.870695;34.036614,-86.870837;34.036203,-86.87097;34.035786,-86.871094;34.035367,-86.871211;34.034943,-86.871418;34.034097,-86.871463;34.033884,-86.871486;34.033759,-86.871581;34.03324,-86.871649;34.032809,-86.871711;34.032378,-86.871763;34.031946,-86.871803;34.031507,-86.871832;34.031066,-86.871863;34.030194,-86.871864;34.029757,-86.871858;34.029317,-86.87184;34.028875,-86.871812;34.028443,-86.871776;34.02801,-86.871731;34.027572,-86.871675;34.027135,-86.871587;34.026582,-86.871538;34.026271,-86.871452;34.025846,-86.871358;34.025421,-86.871254;34.024998,-86.871142;34.024571,-86.871019;34.024148,-86.87089;34.023727,-86.870751;34.02331,-86.870747;34.023298,-86.870602;34.022898,-86.870445;34.02249,-86.870281;34.022085,-86.870108;34.021681,-86.869926;34.021283,-86.869736;34.020887,-86.869539;34.020492,-86.86933;34.0201,-86.868449;34.01853,-86.867327;34.016557,-86.866224;34.014592,-86.86557;34.013363,-86.865179;34.012572,-86.864807;34.011782,-86.864451;34.010983,-86.864282;34.010577,-86.864031;34.009976,-86.86387;34.009571,-86.86356;34.008751,-86.863408;34.008334,-86.86312;34.00749,-86.862978;34.007061,-86.862841;34.006626,-86.862583;34.005755,-86.862347;34.004885,-86.862037;34.003591,-86.861943;34.003165,-86.861855;34.00274,-86.861693;34.001881,-86.861544;34.001017,-86.861371;33.999984,-86.86135;33.999852,-86.860699;33.995952,-86.860538;33.994984,-86.86047;33.994551,-86.860184;33.992826,-86.860123;33.992393,-86.860015;33.991519,-86.859933;33.99072,-86.859925;33.990643,-86.859886;33.990204,-86.8598;33.988894,-86.859777;33.988235,-86.859761;33.987579,-86.859759;33.986706,-86.85978;33.985834,-86.859796;33.985397,-86.859846;33.984524,-86.859946;33.983216,-86.860041;33.982348,-86.860096;33.981915,-86.860122;33.98174,-86.860225;33.98105,-86.860262;33.980826,-86.860369;33.980186,-86.860448;33.979746,-86.860571;33.979128,-86.860619;33.978888,-86.860808;33.97804,-86.861121;33.976781,-86.861238;33.976359,-86.861549;33.975311,-86.861743;33.974687,-86.861878;33.974273,-86.862168;33.973449,-86.862319;33.973036,-86.862635;33.972214,-86.862966;33.971405,-86.863257;33.970734,-86.863313;33.970605,-86.863679;33.969813,-86.864053;33.96903,-86.864447;33.96825,-86.864651;33.967863,-86.865282;33.966721,-86.865681;33.96601,-86.866997;33.963663,-86.867209;33.963271,-86.867414;33.962877,-86.867611;33.962479,-86.867992;33.961675,-86.868171;33.961273,-86.868508;33.960461,-86.868819;33.959639,-86.868966;33.959224,-86.869104;33.958808,-86.869358;33.957977,-86.869476;33.957558,-86.869587;33.957136,-86.869692;33.956712,-86.86979;33.956287,-86.869882;33.955861,-86.869967;33.955431,-86.870043;33.954997,-86.870113;33.954562,-86.870175;33.95413,-86.870259;33.953478,-86.870303;33.953039,-86.870341;33.952606,-86.870373;33.952171,-86.870392;33.951805,-86.870414;33.95115,-86.870419;33.95071,-86.87041;33.949834,-86.870373;33.94896,-86.870327;33.948255,-86.870264;33.947654,-86.870125;33.946565,-86.870019;33.945787,-86.8686;33.935573,-86.868457;33.934706,-86.8682;33.932981,-86.868189;33.932903,-86.868171;33.932767\\\\nPOLYLINE,-86.868071;33.932721,-86.868091;33.932867,-86.868198;33.933636,-86.868253;33.93407,-86.868348;33.934932,-86.868383;33.935145,-86.868461;33.935788,-86.868601;33.936836,-86.868691;33.937509,-86.869786;33.945408,-86.869942;33.946557,-86.870072;33.947565,-86.870142;33.948262,-86.870202;33.949073,-86.870221;33.949504,-86.870247;33.950584,-86.870228;33.951519,-86.870209;33.951882,-86.870201;33.952095,-86.870147;33.952812,-86.870056;33.953669,-86.870002;33.954096,-86.869869;33.95496,-86.869793;33.95539,-86.869619;33.956247,-86.869518;33.95668,-86.869298;33.957545,-86.869179;33.957968,-86.868988;33.958595,-86.868781;33.9\\\"+\\\"59216,-86.868637;33.95963,-86.868484;33.96004,-86.868159;33.960852,-86.86799;33.961252,-86.867813;33.96165,-86.867629;33.962048,-86.867437;33.962445,-86.867238;33.96284,-86.866825;33.963625,-86.865507;33.965986,-86.865051;33.966784,-86.864412;33.967953,-86.864207;33.968347,-86.863815;33.969125,-86.863437;33.969912,-86.863112;33.970634,-86.863077;33.970712,-86.862734;33.971511,-86.862405;33.97232,-86.862096;33.973135,-86.861947;33.973544,-86.861662;33.974373,-86.861394;33.975211,-86.861266;33.975628,-86.861025;33.97648,-86.860799;33.977335,-86.860595;33.978188,-86.860403;33.979063,-86.860236;33.979918,-86.860175;33.980273,-86.860126;33.98056,-86.860067;33.980953,-86.860025;33.981206,-86.85993;33.981878,-86.859903;33.982068,-86.859849;33.982501,-86.859801;33.982932,-86.859686;33.984233,-86.859657;33.984667,-86.859617;33.985536,-86.859593;33.9864,-86.859586;33.987262,-86.859608;33.988351,-86.859623;33.988782,-86.859666;33.989647,-86.859696;33.990079,-86.859758;33.990752,-86.859775;33.99094,-86.859869;33.991804,-86.859922;33.992232,-86.860046;33.993092,-86.8604;33.995243,-86.860506;33.995849,-86.861168;33.999831,-86.861473;34.001665,-86.861633;34.002517,-86.861809;34.003379,-86.861902;34.003802,-86.862107;34.004647,-86.862216;34.005071,-86.862449;34.005919,-86.862568;34.006337,-86.862826;34.007173,-86.863107;34.008009,-86.863402;34.008833,-86.86371;34.009644,-86.863873;34.010054,-86.86417;34.01076,-86.864382;34.011264,-86.864744;34.012064,-86.864931;34.012461,-86.865318;34.013244,-86.86572;34.014021,-86.866134;34.014792,-86.866567;34.015566,-86.868324;34.018664,-86.868547;34.019051,-86.869185;34.020204,-86.869393;34.020604,-86.869596;34.021006,-86.869786;34.021403,-86.869969;34.021812,-86.870144;34.022224,-86.870308;34.022633,-86.870463;34.023042,-86.87057;34.023347,-86.870609;34.023456,-86.870746;34.023872,-86.870874;34.024291,-86.870993;34.024709,-86.871102;34.025129,-86.871202;34.02555,-86.871292;34.025973,-86.871372;34.0264,-86.871401;34.026575,-86.871443;34.026832,-86.871507;34.027262,-86.87156;34.02769,-86.871603;34.028119,-86.871637;34.028549,-86.87166;34.02898,-86.871675;34.029412,-86.871681;34.029844,-86.871677;34.030274,-86.871666;34.030702,-86.871643;34.031131,-86.871614;34.031561,-86.871572;34.03199,-86.871522;34.03242,-86.871461;34.032849,-86.871391;34.033277,-86.871312;34.033703,-86.871271;34.033897,-86.871223;34.034128,-86.871124;34.034552,-86.870957;34.035188,-86.870836;34.035609,-86.870639;34.036233,-86.870498;34.036644,-86.870347;34.037055,-86.869707;34.038682,-86.869516;34.039162,-86.868251;34.042343,-86.868092;34.042754,-86.867943;34.043166,-86.867801;34.04358,-86.867667;34.043996,-86.867538;34.044416,-86.867415;34.044838,-86.867191;34.045691,-86.867088;34.046115,-86.866989;34.046546,-86.866939;34.046798,-86.866903;34.046976,-86.866751;34.04783,-86.866684;34.048258,-86.866627;34.048689,-86.866533;34.049549,-86.866493;34.049987,-86.866469;34.050328,-86.866462;34.050534,-86.866426;34.051133,-86.866419;34.051363,-86.866413;34.051572,-86.866406;34.052008,-86.866395;34.054688,-86.866379;34.057543,-86.866375;34.058165,-86.866375;34.058208,-86.866374;34.058281,-86.866368;34.059306,-86.866358;34.061147,-86.866342;34.064157,-86.866327;34.066779,-86.86632;34.06813,-86.866299;34.07087,-86.866296;34.071948,-86.866294;34.072603,-86.866281;34.074774,-86.866272;34.075026,-86.866279;34.075105,-86.866231;34.083644,-86.8662;34.08903,-86.866172;34.093986,-86.866168;34.094421,-86.866181;34.094481,-86.866168;34.094856,-86.866138;34.101469,-86.866126;34.103977,-86.866122;34.104625,-86.866107;34.107294,-86.866102;34.108231,-86.8661;34.108502,-86.86609;34.110243,-86.866089;34.110488,-86.866083;34.110823,-86.866086;34.111354,-86.866073;34.113435,-86.866067;34.115672,-86.866083;34.116721,-86.866093;34.117065,-86.866125;34.118213,-86.866159;34.11908,-86.866206;34.119951,-86.866266;34.120819,-86.866303;34.12125,-86.866439;34.122546,-86.866735;34.125145,-86.867329;34.130245,-86.867708;34.133513,-86.86772;34.133618,-86.868132;34.137171,-86.86827;34.138358,-86.868425;34.139658,-86.868897;34.14375,-86.869047;34.14505,-86.869126;34.145693,-86.869173;34.146122,-86.869253;34.146769,-86.869314;34.147201,-86.869383;34.147633,-86.869502;34.148284,-86.869627;34.148913,-86.869828;34.149757,-86.869936;34.150179,-86.870173;34.15102,-86.870303;34.15144,-86.870443;34.15186,-86.871179;34.153957,-86.87205;34.15646,-86.87219;34.156876,-86.872306;34.157248,-86.87232;34.157294,-86.872566;34.158137,-86.872678;34.158559,-86.872877;34.15941,-86.87297;34.159837,-86.873231;34.161125,-86.87426;34.166368,-86.874407;34.167115,-86.874983;34.170028,-86.87507;34.170467,-86.87509;34.170568,-86.875401;34.172123,-86.875577;34.173051,-86.875787;34.174091,-86.875836;34.174334,-86.876132;34.175838,-86.876435;34.177339,-86.876534;34.177859,-86.8766;34.178202,-86.876689;34.17863,-86.876941;34.179914,-86.877031;34.180343,-86.87711;34.180774,-86.87737;34.182057,-86.877556;34.183005,-86.877676;34.183621,-86.878297;34.186749,-86.8785;34.18782,-86.878575;34.188252,-86.878641;34.188686,-86.878675;34.188956,-86.878696;34.189122,-86.87874;34.189559,-86.878757;34.189778,-86.878782;34.190217,-86.878801;34.190656,-86.878805;34.191094,-86.878791;34.191748,-86.87877;34.192181,-86.878738;34.192613,-86.878695;34.193045,-86.87859;34.193921,-86.878535;34.194341,-86.878326;34.196072,-86.878008;34.198628,-86.877939;34.199188,-86.877844;34.199956,-86.877808;34.200356,-86.877805;34.200389,-86.877795;34.200676,-86.87779;34.200827,-86.877785;34.201264,-86.877789;34.2017,-86.877808;34.202137,-86.877851;34.202613,-86.877896;34.20301,-86.877928;34.203229,-86.877974;34.203493,-86.878073;34.204059,-86.878215;34.204852,-86.87839;34.205755,-86.878554;34.206663,-86.878642;34.207102,-86.878719;34.207513,-86.87888;34.208422,-86.878949;34.208856,-86.879001;34.209288,-86.879038;34.209797,-86.879048;34.210241,-86.879046;34.21039,-86.879036;34.210615,-86.878998;34.211069,-86.878942;34.211434,-86.878918;34.211562,-86.878875;34.211787,-86.878842;34.211959,-86.87877;34.212266,-86.878743;34.212378,-86.878616;34.212796,-86.878472;34.213211,-86.878377;34.21344,-86.878304;34.213618,-86.878256;34.213725,-86.877588;34.215211,-86.876854;34.216799,-86.876492;34.217596,-86.876349;34.217941,-86.876325;34.218,-86.876176;34.218408,-86.876048;34.218825,-86.875943;34.219248,-86.875852;34.219675,-86.875838;34.219765,-86.875787;34.220105,-86.875744;34.22054,-86.875721;34.220974,-86.875718;34.221409,-86.87574;34.221843,-86.875763;34.222132,-86.875786;34.222351,-86.875838;34.222716,-86.875894;34.223008,-86.875941;34.223227,-86.876013;34.223519,-86.876116;34.223878,-86.876138;34.223954,-86.876238;34.224244,-86.876407;34.224674,-86.877397;34.227067,-86.877867;34.22819,-86.878581;34.229898,-86.878911;34.230695,-86.879938;34.233172,-86.881129;34.23602,-86.881302;34.236425,-86.881801;34.237643,-86.882146;34.238456,-86.882567;34.239481,-86.882917;34.2403,-86.883187;34.240911,-86.883378;34.241317,-86.883893;34.242323,-86.884107;34.242721,-86.884327;34.243116,-86.884781;34.243892,-86.885742;34.245502,-86.88826;34.249719,-86.88833;34.249835,-86.888398;34.249949,-86.890765;34.253918,-86.891004;34.254325,-86.891958;34.25591,-86.894106;34.259509,-86.89427;34.259785,-86.894491;34.260167,-86.894617;34.260393,-86.894916;34.26093,-86.895118;34.261318,-86.895376;34.261842,-86.895511;34.262118,-86.895702;34.262524,-86.895975;34.263136,-86.89623;34.263748,-86.896391;34.264157,-86.896544;34.264569,-86.896692;34.264984,-86.896968;34.265822,-86.897156;34.266452,-86.897276;34.266872,-86.897536;34.267857,-86.897834;34.268988,-86.898207;34.270466,-86.898539;34.271735,-86.899472;34.27538,-86.899588;34.275814,-86.899753;34.276468,-86.900148;34.27799,-86.900274;34.278421,-86.900424;34.278848,-86.900536;34.279129,-86.900661;34.279407,-86.900795;34.279681,-86.90094;34.279952,-86.901178;34.28035,-86.90135;34.28061,-86.901532;34.280865,-86.901773;34.281177,-86.902083;34.281539,-86.902354;34.281834,-86.902869;34.282372,-86.903344;34.282867,-86.90507;34.284655,-86.908152;34.287851,-86.908757;34.288474,-86.909361;34.289105,-86.909466;34.289215,-86.90958;34.289346,-86.909719;34.28951,-86.90986;34.289692,-86.909997;34.289878,-86.910127;34.290067,-86.910331;34.290389,-86.910481;34.290651,-86.910587;34.290849,-86.910752;34.291184,-86.910842;34.291388,-86.910975;34.291733,-86.911068;34.292013,-86.911167;34.292366,-86.911216;34.292581,-86.91127;34.29287,-86.911324;34.293235,-86.911354;34.29353,-86.911363;34.293679,-86.911371;34.293979,-86.911368;34.294282,-86.91136;34.294434,-86.911341;34.294664,-86.911305;34.294957,-86.911258;34.295243,-86.911199;34.295533,-86.911163;34.295679,-86.911101;34.295898,-86.910986;34.296254,-86.910885;34.296529,-86.9108;34.296733,-86.910673;34.297006,-86.910259;34.297831,-86.910054;34.298253,-86.909749;34.298844,-86.906947;34.304273,-86.906521;34.305113,-86.904738;34.308577,-86.904654;34.308741,-86.904102;34.309812\\\\nPOLYLINE,-86.524693;32.707057,-86.525762;32.708813,-86.526124;32.70944,-86.527826;32.712339,-86.52801;32.71266,-86.528772;32.713945,-86.528936;32.714227,-86.529336;32.714916,-86.530283;32.716521,-86.532167;32.719743,-86.532391;32.720122,-86.532955;32.721077,-86.533502;32.722015,-86.533863;32.722631,-86.534432;32.723588,-86.534806;32.724235,-86.535153;32.724815,-86.535952;32.726152,-86.53714;32.72806,-86.537664;32.728875,-86.537952;32.729323,-86.539197;32.731195,-86.53941;32.731506,-86.540037;32.732441,-86.540255;32.732774,-86.540448;32.733071,-86.540657;32.733376,-86.541324;32.734384,-86.541829;32.735135,-86.542278;32.735827,-86.542494;32.736151,-86.542904;32.736764,-86.543004;32.736919,-86.543516;32.737682,-86.544369;32.738954,-86.544988;32.739894,-86.545658;32.740889,-86.54624;32.741762,-86.546608;32.742317,-86.547194;32.743204,-86.548466;32.745078,-86.548832;32.745604,-86.549973;32.747239,-86.55206;32.750188,-86.552806;32.751241,-86.553903;32.752782,-86.554334;32.7534,-86.555463;32.754987,-86.555648;32.755246,-86.558707;32.759572,-86.559149;32.760182,-86.559582;32.760804,-86.559897;32.761245,-86.560023;32.761421,-86.560442;32.762014,-86.560982;32.762777,-86.561548;32.763576,-86.562212;32.764502,-86.563067;32.765711,-86.565044;32.768504,-86.565267;32.768831,-86.565893;32.769743,-86.566514;32.770682,-86.567122;32.771625,-86.567921;32.7729,-86.568693;32.774172,-86.569246;32.77514,-86.56981;32.77611,-86.57034;32.77709,-86.570701;32.777737,-86.570732;32.777796,-86.570874;32.778064,-86.571371;32.779055,-86.571714;32.779712,-86.57188;32.780043,-86.571932;32.780152,-86.572524;32.781381,-86.572994;32.782387,-86.573891;32.784398,-86.574037;32.784736,-86.574594;32.786098,-86.574866;32.786777,-86.575393;32.788148,-86.576347;32.790782,-86.576887;32.792271,-86.577129;32.79296,-86.57754;32.794106,-86.577868;32.795022,-86.578922;32.797921,-86.579191;32.798659,-86.579364;32.799135,-86.579711;32.800111,-86.579728;32.800158,-86.579777;32.800306,-86.579923;32.800714,-86.580121;32.801246,-86.580253;32.801603,-86.58039;32.801988,-86.580664;32.802762,-86.58074;32.802979,-86.581121;32.804006,-86.581244;32.804358,-86.581362;32.804695,-86.581925;32.806238,-86.582083;32.806692,-86.582332;32.807378,-86.582592;32.808065,-86.582957;32.809099,-86.58408;32.812196,-86.584181;32.812485,-86.584443;32.813229,-86.584827;32.814261,-86.585311;32.815631,-86.586308;32.818379,-86.586404;32.818652,-86.586548;32.819063,-86.586704;32.819491,-86.58698;32.820262,-86.587292;32.821132,-86.587544;32.821815,-86.587786;32.822504,-86.588286;32.823876,-86.589029;32.825941,-86.590031;32.828698,-86.59052;32.83007,-86.591152;32.831806,-86.591248;32.832068,-86.591523;32.832841,-86.591824;32.833678,-86.593004;32.836956,-86.593243;32.83759,-86.593262;32.83764,-86.59375;32.839022,-86.594284;32.840488,-86.594872;32.842123,-86.595085;32.84267,-86.595231;32.842979,-86.595378;32.843361,-86.59544;32.843562,-86.595639;32.844161,-86.595673;32.844264,-86.596163;32.845639,-86.596236;32.845837,-86.596308;32.846034,-86.596639;32.84693,-86.597169;32.848391,-86.597435;32.849069,-86.597661;32.849663,-86.597695;32.849753,-86.597849;32.85018,-86.597942;32.850437,-86.598066;32.850718,-86.598387;32.851447,-86.59869;32.852114,-86.599173;32.853107,-86.599508;32.853764,-86.599861;32.854411,-86.600224;32.855058,-86.600981;32.85634,-86.601604;32.857315,-86.601643;32.857377,-86.601678;32.857432,-86.601787;32.857602,-86.602205;32.85823,-86.602636;32.858855,-86.603081;32.859468,-86.603533;32.860073,-86.603997;32.86068,-86.604928;32.861883,-86.606807;32.864296,-86.607393;32.865048,-86.607925;32.865732,-86.608063;32.865909,-86.60853;32.866515,-86.609934;32.868316,-86.610861;32.869518,-86.611797;32.870714,-86.61249;32.871611,-86.613189;32.872515,-86.614128;32.87371,-86.615947;32.87606,-86.61646;32.876722,-86.616914;32.877333,-86.61778;32.878566,-86.618621;32.879815,-86.619047;32.880436,-86.62009;32.882005,-86.620724;32.882942,-86.621022;32.883392,-86.62114;32.88357,-86.621985;32.884825,-86.623448;32.887008,-86.624155;32.888061,-86.624575;32.888685,-86.624735;32.888923,-86.626131;32.890997,-86.626543;32.891624,-86.62684;32.892066,-86.62691;32.89217,-86.627006;32.892314,-86.627397;32.892894,-86.629144;32.895488,-86.62956;32.896116,-86.629989;32.896755,-86.631244;32.898618,-86.631668;32.899242,-86.63208;32.899867,-86.633054;32.901307,-86.633342;32.901742,-86.635568;32.905054,-86.635897;32.905541,-86.636431;32.906332,-86.636661;32.906672,-86.637072;32.907302,-86.637739;32.908301,-86.638634;32.909599,-86.638989;32.910086,-86.639036;32.910147,-86.639412;32.910625,-86.639658;32.910904,-86.639946;32.911273,-86.640448;32.911853,-86.640873;32.912309,-86.640913;32.912353,-86.640965;32.912408,-86.641481;32.912992,-86.642507;32.914133,-86.643807;32.915559,-86.646317;32.918339,-86.646907;32.918993,-86.646944;32.91904,-86.647434;32.919558,-86.647568;32.919711,-86.647941;32.920135,-86.648974;32.921275,-86.649501;32.921841,-86.649748;32.92213,-86.650519;32.92299,-86.652072;32.924698,-86.652586;32.925272,-86.653104;32.925841,-86.654134;32.926986,-86.654657;32.927554,-86.654945;32.927875,-86.655686;32.928697,-86.656207;32.929267,-86.656719;32.929841,-86.656757;32.929882,-86.657238;32.93041,-86.657518;32.930721,-86.658787;32.932131,-86.659284;32.93271,-86.659769;32.933303,-86.660234;32.933906,-86.660683;32.934516,-86.661122;32.935133,-86.661544;32.935761,-86.661948;32.936396,-86.662332;32.937038,-86.662697;32.937688,-86.66305;32.938342,-86.663378;32.939003,-86.664018;32.940334,-86.664792;32.941975,-86.664901;32.942197,-86.665134;32.942669,-86.665612;32.943699,-86.666064;32.944671,-86.666131;32.944805,-86.666331;32.945205,-86.666409;32.945372,-86.667241;32.947148,-86.667909;32.948546,-86.668854;32.950557,-86.66891;32.950666,-86.669191;32.951213,-86.669424;32.951649,-86.669713;32.952191,-86.670495;32.953474,-86.670915;32.954096,-86.671323;32.954723,-86.672073;32.955824,-86.672175;32.955973,-86.672591;32.956601,-86.673444;32.957848,-86.674281;32.9591,-86.676385;32.962223,-86.677229;32.963465,-86.677644;32.964094,-86.677997;32.964616,-86.678487;32.965342,-86.679322;32.966597,-86.679747;32.967218,-86.680163;32.967846,-86.681009;32.969096,-86.682265;32.970981,-86.683111;32.972226,-86.683531;32.972858,-86.683952;32.973481,-86.684564;32.974396,-86.684747;32.97467,-86.685213;32.975367,-86.685314;32.975515,-86.685479;32.975755,-86.685638;32.975987,-86.686059;32.976613,-86.686451;32.977189,-86.686816;32.977745,-86.687661;32.97899,-86.687858;32.979287,-86.688076;32.979616,-86.688326;32.979978,-86.688783;32.98066,-86.689757;32.982118,-86.689982;32.982441,-86.690401;32.983043,-86.690475;32.983174,-86.690681;32.983494,-86.691095;32.984119,-86.691929;32.985355,-86.692009;32.985467,-86.69237;32.985975,-86.694648;32.988999,-86.695076;32.989573,-86.695548;32.990206,-86.695988;32.990817,-86.696412;32.991433,-86.697238;32.992677,-86.698474;32.994559,-86.698925;32.99523,-86.699164;32.995579,-86.69938;32.995897,-86.699952;32.996738,-86.700823;32.997971,-86.700994;32.998205,-86.70121;32.9985,-86.701527;32.998927,-86.701721;32.999189,-86.701802;32.999294,-86.702154;32.999747,-86.702185;32.999786,-86.702645;33.000396,-86.702923;33.000749,-86.703582;33.001586,-86.704048;33.002187,-86.704278;33.002498,-86.704749;33.003095,-86.705211;33.003695,-86.705684;33.004284,-86.706148;33.004886,-86.706617;33.005479,-86.707082;33.006082,-86.707552;33.006678,-86.708013;33.007281,-86.708953;33.008473,-86.709851;33.00965,-86.710101;33.009977,-86.710515;33.01061,-86.710914;33.011248,-86.711162;33.011688,-86.71128;33.011896,-86.711637;33.012545,-86.712862;33.014834,-86.714274;33.01746,-86.71462;33.018124,-86.715325;33.019424,-86.71567;33.020086,-86.716377;33.021392,-86.716717;33.022055,-86.717425;33.023348,-86.717493;33.023479,-86.71777;33.024012,-86.719168;33.026638,-86.719523;33.027287,-86.719866;33.027949,-86.720558;33.029252,-86.721096;33.030234,-86.721434;33.030886,-86.721792;33.03154,-86.72249;33.03286,-86.723195;33.034171,-86.723713;33.035161,-86.724594;33.036783,-86.724759;33.037121,-86.724915;33.037457,-86.725212;33.038122,-86.725466;33.038805,-86.725685;33.039493,-86.725871;33.04019,-86.726008;33.0409,-86.726116;33.04161,-86.726211;33.042319,-86.726282;33.043033,-86.726378;33.043749,-86.726467;33.044463,-86.726585;33.045475,-86.726635;33.045899,-86.726982;33.048748,-86.727106;33.049819,-86.727194;33.050534,-86.727273;33.051249,-86.727301;33.051471,-86.727362;33.051958,-86.727701;33.054817,-86.727772;33.055532,-86.728031;33.057677,-86.728127;33.058391,-86.728295;33.05982,-86.728554;33.061962,-86.728712;33.06339,-86.728797;33.064107,-86.728809;33.064185,-86.728904;33.064819,-86.72918;33.066081,-86.729213;33.066229,-86.729402;33.06693,-86.729625;33.067624,-86.729878;33.068308,-86.730252;33.069274\\\\nPOLYLINE,-86.524434;32.707058,-86.525556;32.708931,-86.526191;32.710022,-86.527139;32.711624,-86.527514;32.712269,-86.528458;32.713875,-86.528621;32.714157,-86.52883;32.71452,-86.529778;32.716118,-86.530903;32.718047,-86.531285;32.71869,-86.532219;32.720289,-86.532795;32.721274,-86.533177;32.721914,-86.533289;32.722105,-86.534494;32.724169,-86.534866;32.724815,-86.534903;32.724877,-86.535442;32.725775,-86.536221;32.727041,-86.537019;32.728307,-86.537386;32.728873,-86.53763;32.729252,-86.538668;32.730804,-86.539287;32.731743,-86.539915;32.732677,-86.540256;32.733195,-86.540462;32.733489,-86.541288;32.734741,-86.542294;32.73625,-86.542527;32.736613,-86.542847;32.737079,-86.543159;32.737544,-86.543293;32.737751,-86.543362;32.737857,-86.543992;32.738791,-86.544906;32.740167,-86.545115;32.74049,-86.546436;32.742469,-86.547361;32.743856,-86.547791;32.744473,-86.548424;32.74541,-86.548662;32.745753,-86.549283;32.746645,-86.552329;32.750957,-86.552988;32.75188,-86.55342;32.752499,-86.554737;32.754348,-86.555242;32.755063,-86.556264;32.756509,-86.557573;32.75835,-86.558223;32.759273,-86.558878;32.760193,-86.55953;32.761118,-86.559628;32.761255,-86.560218;32.762079,-86.560751;32.762831,-86.56106;32.763266,-86.561483;32.763885,-86.561914;32.764501,-86.562721;32.765714,-86.562956;32.766067,-86.563563;32.767007,-86.563961;32.767637,-86.564927;32.769235,-86.565305;32.769874,-86.565857;32.77084,-86.566579;32.772142,-86.566929;32.772793,-86.568134;32.775087,-86.568484;32.775737,-86.568996;32.776725,-86.570096;32.778813,-86.570965;32.780465,-86.571074;32.780673,-86.571596;32.781658,-86.571866;32.782183,-86.572105;32.782649,-86.572629;32.783628,-86.572968;32.784284,-86.573639;32.785606,-86.573964;32.78627,-86.574436;32.787264,-86.575043;32.788596,-86.575775;32.790273,-86.575976;32.79076,-86.576194;32.791286,-86.576734;32.792645,-86.577252;32.794018,-86.577284;32.794106,-86.578884;32.798544,-86.57938;32.79992,-86.579483;32.800204,-86.579857;32.801233,-86.580111;32.801933,-86.580416;32.802792,-86.580776;32.803764,-86.580956;32.804266,-86.580962;32.804282,-86.581172;32.804862,-86.581413;32.805546,-86.582032;32.807252,-86.58277;32.809309,-86.583144;32.810339,-86.583386;32.811023,-86.583764;32.812052,-86.584994;32.815482,-86.585504;32.81686,-86.585538;32.816937,-86.586048;32.818346,-86.586109;32.818554,-86.586148;32.818662,-86.586453;32.819499,-86.586726;32.820252,-86.587339;32.821942,-86.587702;32.822964,-86.588932;32.826377,-86.58943;32.827742,-86.590408;32.830469,-86.590782;32.831488,-86.590911;32.831847,-86.591271;32.832848,-86.591575;32.833696,-86.591912;32.834637,-86.592379;32.835935,-86.592757;32.836962,-86.592992;32.837634,-86.593985;32.840376,-86.5941;32.840719,-86.594376;32.84142,-86.594846;32.842827,-86.5949;32.84296,-86.594921;32.843013,-86.595096;32.843533,-86.595203;32.843853,-86.595303;32.84407,-86.595396;32.844245,-86.595983;32.845872,-86.596189;32.846443,-86.59631;32.846787,-86.596317;32.846807,-86.596708;32.847876,-86.596828;32.848217,-86.597076;32.848897,-86.597345;32.849604,-86.59763;32.850304,-86.597845;32.850819,-86.597891;32.850929,-86.598499;32.852263,-86.59882;32.852927,-86.599153;32.853585,-86.5995;32.854244,-86.599858;32.854892,-86.600418;32.855859,-86.600806;32.856496,-86.601395;32.857424,-86.601431;32.85748,-86.601477;32.857551,-86.601817;32.858072,-86.602026;32.858381,-86.602462;32.858997,-86.603129;32.859913,-86.603819;32.860816,-86.606618;32.864418,-86.60723;32.865206,-86.607685;32.865791,-86.612295;32.871715,-86.613368;32.873094,-86.614292;32.874291,-86.615224;32.875489,-86.615733;32.876156,-86.616147;32.876689,-86.617045;32.87791,-86.617476;32.878529,-86.617902;32.879151,-86.619154;32.88102,-86.619568;32.881645,-86.620747;32.883398,-86.621236;32.884127,-86.621898;32.885135,-86.622023;32.885357,-86.622371;32.885785,-86.622726;32.886287,-86.623283;32.887113,-86.623352;32.887219,-86.624029;32.888264,-86.624311;32.888687,-86.624508;32.888981,-86.624977;32.889685,-86.625743;32.89085,-86.626382;32.89181,-86.626753;32.892462,-86.627067;32.892878,-86.62723;32.893124,-86.627391;32.893341,-86.6275;32.893487,-86.628091;32.894367,-86.628977;32.895668,-86.62909;32.89586,-86.629209;32.896051,-86.629609;32.896607,-86.629705;32.896749,-86.631119;32.898851,-86.632496;32.900916,-86.632613;32.901085,-86.632747;32.901293,-86.633168;32.901912,-86.633433;32.902307,-86.635047;32.904716,-86.635427;32.905273,-86.636012;32.906149,-86.636108;32.906298,-86.636134;32.90634,-86.63807;32.909213,-86.638594;32.909951,-86.638863;32.910316,-86.63943;32.911036,-86.639872;32.911563,-86.640331;32.912081,-86.640769;32.912562,-86.640798;32.912594,-86.640857;32.912658,-86.641582;32.913455,-86.642193;32.914141,-86.642815;32.914821,-86.644662;32.916868,-86.645283;32.917547,-86.645896;32.918235,-86.64611;32.918472,-86.646516;32.918919,-86.646664;32.919074,-86.646824;32.919261,-86.647091;32.919557,-86.648991;32.921661,-86.649458;32.922168,-86.65333;32.92645,-86.654749;32.928016,-86.656542;32.929997,-86.65721;32.930743,-86.657305;32.930846,-86.657524;32.931084,-86.658289;32.931942,-86.659045;32.932806,-86.659482;32.933338,-86.660184;32.934238,-86.660712;32.934973,-86.6611;32.935527,-86.661471;32.93609,-86.661938;32.936852,-86.662167;32.937237,-86.662491;32.937818,-86.662909;32.938605,-86.663107;32.939002,-86.664065;32.940995,-86.664153;32.941198,-86.664658;32.942279,-86.664996;32.943002,-86.665601;32.944286,-86.665785;32.944677,-86.66611;32.945365,-86.667068;32.947389,-86.667909;32.949185,-86.668675;32.950778,-86.668979;32.951374,-86.669102;32.951602,-86.6694;32.952154,-86.669622;32.952545,-86.669852;32.952931,-86.670336;32.953691,-86.671082;32.954819,-86.671878;32.956007,-86.672211;32.956505,-86.673096;32.957818,-86.673469;32.958382,-86.67649;32.962865,-86.677739;32.964734,-86.677999;32.965113,-86.678622;32.96605,-86.680269;32.96848,-86.680643;32.969047,-86.681648;32.970548,-86.684038;32.974091,-86.684379;32.974601,-86.684777;32.975198,-86.684788;32.975214,-86.685336;32.976025,-86.685463;32.976213,-86.68603;32.977052,-86.687138;32.978695,-86.687386;32.979072,-86.687657;32.979467,-86.687897;32.979815,-86.688022;32.980003,-86.688091;32.980089,-86.688146;32.980192,-86.688271;32.980381,-86.688384;32.980546,-86.688653;32.980938,-86.689148;32.98169,-86.689641;32.982429,-86.689777;32.982632,-86.690021;32.983007,-86.690453;32.983614,-86.690881;32.984228,-86.691316;32.98484,-86.691681;32.98545,-86.691699;32.985478,-86.691813;32.985681,-86.692243;32.986448,-86.692624;32.987091,-86.693357;32.988387,-86.693707;32.989041,-86.693783;32.989175,-86.694078;32.98969,-86.694456;32.990333,-86.694846;32.990969,-86.695258;32.991597,-86.695334;32.991703,-86.6957;32.99221,-86.69615;32.992821,-86.696621;32.99342,-86.697112;32.994014,-86.697619;32.994597,-86.698113;32.995185,-86.699138;32.996338,-86.699642;32.996916,-86.700133;32.997504,-86.70084;32.998412,-86.701075;32.998713,-86.70122;32.998908,-86.701519;32.999314,-86.701962;32.999929,-86.702383;33.000552,-86.70259;33.000875,-86.702785;33.001182,-86.703178;33.001815,-86.703556;33.002459,-86.703957;33.00309,-86.704334;33.003729,-86.704724;33.004368,-86.705125;33.005001,-86.705555;33.005623,-86.705997;33.006237,-86.706458;33.006841,-86.706926;33.007443,-86.70742;33.008029,-86.707934;33.0086,-86.708473;33.009161,-86.709003;33.009726,-86.709468;33.010216,-86.709536;33.010288,-86.710044;33.010866,-86.710535;33.011453,-86.711002;33.012054,-86.711411;33.012687,-86.711799;33.013331,-86.712153;33.013987,-86.712493;33.014646,-86.712658;33.014953,-86.712846;33.015301,-86.71493;33.019222,-86.715983;33.021183,-86.71634;33.021836,-86.716689;33.022494,-86.717043;33.023147,-86.717289;33.023611,-86.717738;33.024459,-86.71809;33.025109,-86.718779;33.026415,-86.719461;33.027721,-86.719822;33.028374,-86.720159;33.029033,-86.720507;33.029688,-86.720867;33.03034,-86.721217;33.030994,-86.72155;33.031655,-86.721917;33.032305,-86.722266;33.032959,-86.722604;33.03362,-86.722965;33.03427,-86.723312;33.034923,-86.723665;33.035575,-86.724008;33.036233,-86.724354;33.036884,-86.724685;33.037548,-86.724976;33.038221,-86.725229;33.038904,-86.725448;33.039596,-86.72563;33.040295,-86.725768;33.041003,-86.725874;33.041717,-86.726054;33.043145,-86.726227;33.04457,-86.726363;33.045721,-86.72648;33.046709,-86.726569;33.047423,-86.726645;33.048136,-86.726738;33.048851,-86.726814;33.049563,-86.726898;33.050278,-86.727052;33.051467,-86.727083;33.051707,-86.727151;33.052424,-86.727499;33.055287,-86.727595;33.056004,-86.727853;33.058152,-86.728105;33.060304,-86.728194;33.061016,-86.728265;33.061732,-86.728348;33.062451,-86.728448;33.063164,-86.728539;33.063905,-86.72863;33.064594,-86.728757;33.065303,-86.728914;33.066011,-86.728993;33.066316,-86.729097;33.066713,-86.729311;33.067408,-86.72955;33.068098,-86.729705;33.068509,-86.730002;33.069274\\\\nPOLYLINE,-86.730252;33.069274,-86.730306;33.069416,-86.732005;33.07387,-86.734798;33.081097,-86.734858;33.081251,-86.735806;33.083706,-86.735985;33.084183,-86.736144;33.084622,-86.736318;33.085113,-86.736616;33.086046,-86.736767;33.086559,-86.736881;33.086982,-86.737015;33.087511,-86.737113;33.087927,-86.737226;33.088448,-86.737327;33.088988,-86.737435;33.089618,-86.737591;33.090679,-86.73765;33.091115,-86.73766;33.091189,-86.737992;33.093652,-86.738002;33.093725,-86.738052;33.094097,-86.738061;33.094161,-86.738072;33.094246,-86.738084;33.094338,-86.73809;33.094385,-86.738132;33.094699,-86.738174;33.095003,-86.738191;33.095126,-86.738328;33.096079,-86.738334;33.096117,-86.738386;33.096497,-86.738443;33.096908,-86.738636;33.098313,-86.738642;33.098351,-86.738698;33.09879,-86.738754;33.099227,-86.739018;33.101183,-86.73918;33.102385,-86.739298;33.103256,-86.739375;33.103825,-86.739441;33.104318,-86.739521;33.104878,-86.739673;33.106012,-86.739724;33.106358,-86.739847;33.107253,-86.739887;33.107558,-86.739963;33.108136,-86.739977;33.108242,-86.740668;33.113339,-86.742854;33.129461,-86.742975;33.130313,-86.743065;33.13084,-86.743191;33.13147,-86.743339;33.132106,-86.743481;33.132626,-86.743606;33.133041,-86.743823;33.133685,-86.744004;33.134166,-86.744254;33.134774,-86.744525;33.135377,-86.744717;33.135775,-86.744918;33.136167,-86.745188;33.136649,-86.745469;33.137127,-86.745827;33.137698,-86.746016;33.137976,-86.746537;33.138689,-86.746632;33.138818,-86.746867;33.139131,-86.747212;33.139557,-86.747309;33.139676,-86.747472;33.139899,-86.74777;33.140241,-86.748236;33.140743,-86.748643;33.14116,-86.748959;33.141461,-86.749431;33.141894,-86.749746;33.142169,-86.750055;33.142434,-86.750462;33.142769,-86.750767;33.143009,-86.751215;33.143346,-86.751603;33.143625,-86.752378;33.144152,-86.75247;33.144215,-86.757191;33.147295,-86.757267;33.147346,-86.757527;33.147516,-86.757945;33.14779,-86.758533;33.148169,-86.761834;33.150327,-86.761879;33.150356,-86.762481;33.15075,-86.763032;33.15111,-86.764432;33.152025,-86.76483;33.152292,-86.765141;33.152513,-86.765626;33.152872,-86.766017;33.153182,-86.766379;33.153486,-86.766739;33.153804,-86.767086;33.154133,-86.76734;33.154382,-86.767755;33.154814,-86.767988;33.15507,-86.768313;33.155448,-86.768665;33.155884,-86.768964;33.156283,-86.769228;33.156654,-86.769379;33.156878,-86.769727;33.157438,-86.770008;33.157933,-86.770282;33.158437,-86.773653;33.164876,-86.77375;33.165025,-86.773865;33.16528,-86.774273;33.166061,-86.774376;33.166238,-86.774452;33.166381,-86.774545;33.166542,-86.775244;33.167876,-86.775427;33.168219,-86.775514;33.168382,-86.775551;33.168435,-86.775586;33.168571,-86.776545;33.170411,-86.77685;33.171016,-86.777246;33.171832,-86.777741;33.172905,-86.777888;33.17324,-86.777974;33.173436,-86.77804;33.17359,-86.779817;33.177726,-86.782394;33.183728,-86.782668;33.184365,-86.78319;33.18558,-86.783532;33.18641,-86.783596;33.186576,-86.783734;33.186932,-86.783773;33.187033,-86.78394;33.187482,-86.784123;33.187996,-86.784142;33.188051,-86.78424;33.188336,-86.784265;33.188408,-86.784569;33.189363,-86.784674;33.189715,-86.784913;33.190522,-86.78517;33.19139,-86.785211;33.191518,-86.78543;33.192201,-86.785477;33.192345,-86.78563;33.192794,-86.785694;33.192982,-86.785882;33.193502,-86.785998;33.193821,-86.7862;33.194343,-86.78736;33.197287,-86.787435;33.197476,-86.78769;33.198088,-86.787885;33.198515,-86.788079;33.198919,-86.788287;33.199326,-86.78845;33.199629,-86.788618;33.19993,-86.788847;33.200321,-86.789032;33.200624,-86.789213;33.200907,-86.789409;33.201199,-86.789809;33.201768,-86.790204;33.202299,-86.790351;33.202487,-86.790804;33.203045,-86.794033;33.206862,-86.794486;33.207436,-86.796402;33.209711,-86.796453;33.209771,-86.798872;33.212609,-86.799568;33.213437,-86.80009;33.214071,-86.80049;33.214579,-86.800549;33.214654,-86.800686;33.214833,-86.800737;33.214899,-86.80084;33.215038,-86.801292;33.215678,-86.801685;33.21626,-86.802155;33.217002,-86.802368;33.217351,-86.802405;33.217411,-86.802642;33.217813,-86.803321;33.218998,-86.803601;33.219486,-86.803736;33.219721,-86.804545;33.221143,-86.804615;33.221266,-86.804662;33.221347,-86.804784;33.221555,-86.804889;33.221741,-86.804988;33.221916,-86.805132;33.22217,-86.805299;33.222474,-86.805627;33.22305,-86.806218;33.224086,-86.806401;33.224395,-86.80668;33.224916,-86.806779;33.225112,-86.806821;33.225195,-86.806925;33.22542,-86.807025;33.22566,-86.807141;33.22594,-86.807249;33.22625,-86.80735;33.22656,-86.80742;33.226802,-86.807513;33.227176,-86.807592;33.227559,-86.80765;33.227947,-86.807708;33.228457,-86.807727;33.22871,-86.807733;33.228983,-86.807733;33.229291,-86.80772;33.229671,-86.807696;33.229967,-86.807683;33.230087,-86.807666;33.230249,-86.807625;33.230535,-86.807569;33.230859,-86.807534;33.231026,-86.807495;33.231212,-86.807457;33.231356,-86.807423;33.231485,-86.807245;33.232061,-86.807168;33.232276,-86.807057;33.232567,-86.806819;33.233103,-86.806692;33.233361,-86.806519;33.233679,-86.806334;33.23399,-86.806204;33.234189,-86.806134;33.234296,-86.805896;33.234662,-86.804048;33.237431,-86.803018;33.238975,-86.802845;33.239244,-86.802658;33.239523,-86.80247;33.239812,-86.80216;33.240313,-86.801859;33.240848,-86.801667;33.241221,-86.801542;33.241478,-86.801294;33.242035,-86.801087;33.242559,-86.800898;33.243091,-86.80072;33.243685,-86.800642;33.243975,-86.80056;33.244309,-86.800466;33.244764,-86.800361;33.245367,-86.800269;33.245984,-86.800218;33.246288,-86.799788;33.249101,-86.799727;33.24947,-86.799583;33.250442,-86.799427;33.25143,-86.799182;33.253065,-86.799137;33.253366,-86.799071;33.253929,-86.799061;33.254013,-86.798999;33.25468,-86.798946;33.25553,-86.798925;33.256072,-86.798918;33.257044,-86.798936;33.257847,-86.798967;33.258631,-86.799208;33.264696,-86.799211;33.264789,-86.799233;33.265324,-86.799235;33.265378,-86.79931;33.267355,-86.799492;33.271873,-86.799558;33.273128,-86.799646;33.274365,-86.799691;33.274867,-86.799829;33.276218,-86.799946;33.277209,-86.800022;33.277766,-86.800032;33.277836,-86.80009;33.278264,-86.80033;33.280016,-86.800375;33.280347,-86.800403;33.280556,-86.800628;33.282221,-86.80074;33.283051,-86.800807;33.283605,-86.800835;33.283938,-86.800857;33.284267,-86.800866;33.284489,-86.80087;33.285265,-86.800869;33.285361,-86.800847;33.285836,-86.800817;33.286192,-86.80076;33.286679,-86.800695;33.287123,-86.800605;33.287599,-86.800492;33.288117,-86.800403;33.288452,-86.800284;33.288866,-86.800145;33.289291,-86.799992;33.289715,-86.799827;33.290135,-86.799641;33.29056,-86.799446;33.290968,-86.798663;33.29249,-86.797922;33.293909,-86.796252;33.297139,-86.795685;33.298222,-86.795314;33.298901,-86.795022;33.299408,-86.794651;33.300019,-86.794258;33.300637,-86.793829;33.301277,-86.79356;33.301662,-86.793073;33.302323,-86.792564;33.302975,-86.790516;33.30556,-86.789288;33.307102,-86.788827;33.307682,-86.788686;33.30787,-86.788481;33.308155,-86.788449;33.308202,-86.788351;33.308345,-86.788273;33.308467,-86.788131;33.308689,-86.788029;33.308857,-86.787826;33.309233,-86.787723;33.309435,-86.787455;33.310032,-86.787326;33.310367,-86.787263;33.310548,-86.787214;33.310693,-86.787104;33.311069,-86.78709;33.311116,-86.787079;33.311161,-86.786963;33.311645,-86.786941;33.311767,-86.786887;33.312081,-86.786857;33.312255,-86.78681;33.312725,-86.786783;33.313218,-86.786783;33.313233,-86.786782;33.313554,-86.786789;33.313749,-86.786796;33.313938,-86.786816;33.314207,-86.786861;33.314621,-86.786926;33.31507,-86.787106;33.316246,-86.787183;33.316743,-86.787213;33.316937,-86.78732;33.317708,-86.787354;33.31815,-86.787368;33.318438,-86.787367;33.318602,-86.78735;33.318866,-86.787346;33.318936,-86.787329;33.319074,-86.787318;33.319167,-86.787282;33.319405,-86.787213;33.319744,-86.787106;33.320179,-86.787007;33.320507,-86.786933;33.320714,-86.7868;33.32105,-86.786668;33.321342,-86.786565;33.321545,-86.786394;33.321851,-86.78621;33.322145,-86.785946;33.322527,-86.785726;33.322806,-86.78549;33.323082,-86.785229;33.323355,-86.784625;33.323957,-86.782946;33.325612,-86.782834;33.325723,-86.782415;33.326136,-86.782075;33.326503,-86.781924;33.326679,-86.781781;33.326845,-86.781622;33.327046,-86.781565;33.327119,-86.781424;33.327306,-86.781257;33.327544,-86.781225;33.32759,-86.781031;33.327883,-86.780728;33.328397,-86.780589;33.328656,-86.780463;33.328913,-86.780361;33.329137,-86.780244;33.329416,-86.78012;33.329738,-86.780012;33.33005,-86.77998;33.330154,-86.779922;33.33036,-86.779859;33.330622,-86.779801;33.330886,-86.779711;33.331517,-86.779677;33.331816,-86.779656;33.332087,-86.779641;33.332402,-86.779636;33.332611,-86.779631;33.333004,-86.779651;33.333407,-86.779692;33.333748,-86.779696;33.333903,-86.779696;33.333952,-86.779937;33.336602,-86.779958;33.336789,-86.780028;33.337824,-86.780625;33.344881,-86.780641;33.345071,-86.780648;33.345289,-86.780682;33.346518,-86.780632;33.34781,-86.780546;33.34912,-86.780429;33.350235,-86.780289;33.351387,-86.780126;33.35226,-86.779995;33.352933,-86.779778;33.353796,-86.779705;33.354075,-86.779684;33.354167,-86.779336;33.355361,-86.7789;33.356618,-86.777836;33.359555,-86.777718;33.359868,-86.777537;33.360394,-86.777443;33.36065,-86.777187;33.361398,-86.777106;33.361618,-86.776927;33.362139,-86.776818;33.362496,-86.77669;33.363027,-86.776646;33.363234,-86.776564;33.363735,-86.776525;33.364063,-86.7765;33.364398,-86.776487;33.364686,-86.776491;33.365094,-86.776495;33.365265,-86.776529;33.365741,-86.776559;33.365994,-86.776641;33.366554,-86.77674;33.366996,-86.776915;33.367616,-86.777067;33.368053,-86.777791;33.369861,-86.777949;33.370249,-86.77821;33.370884,-86.778293;33.371088,-86.778332;33.371187,-86.778517;33.37165\\\\nPOLYLINE,-86.730002;33.069274,-86.730055;33.069415,-86.731869;33.074209,-86.734554;33.081155,-86.73458;33.081224,-86.734607;33.081291,-86.73556;33.083773,-86.735944;33.084801,-86.73605;33.085093,-86.736228;33.085627,-86.736359;33.086056,-86.736569;33.086799,-86.73677;33.08757,-86.736932;33.08829,-86.737023;33.088744,-86.737122;33.089287,-86.737207;33.089801,-86.737347;33.090781,-86.737391;33.091102,-86.737575;33.09245,-86.737676;33.093232,-86.737737;33.093667,-86.737748;33.093744,-86.737799;33.094106,-86.737808;33.094169,-86.737821;33.094262,-86.737832;33.094347,-86.737839;33.094402,-86.737879;33.094705,-86.737953;33.095269,-86.738066;33.096074,-86.738101;33.096331,-86.738177;33.096902,-86.738367;33.098318,-86.738765;33.101225,-86.738925;33.102397,-86.739046;33.103279,-86.73912;33.103824,-86.739122;33.103834,-86.739197;33.104384,-86.739478;33.106444,-86.739588;33.107242,-86.739628;33.107551,-86.73963;33.107567,-86.739836;33.109118,-86.739955;33.109994,-86.740425;33.113436,-86.741578;33.121899,-86.742138;33.126035,-86.742399;33.127968,-86.742504;33.12874,-86.742745;33.130474,-86.742839;33.131014,-86.742934;33.131475,-86.743087;33.132122,-86.74317;33.132444,-86.74325;33.132731,-86.743339;33.133027,-86.743522;33.133577,-86.743722;33.134127,-86.743972;33.134746,-86.744096;33.13503,-86.74433;33.13554,-86.744598;33.136076,-86.74485;33.136544,-86.745018;33.136839,-86.74537;33.137428,-86.74555;33.137714,-86.745721;33.13797,-86.745932;33.138286,-86.746132;33.13857,-86.746355;33.138875,-86.74648;33.139041,-86.746613;33.139218,-86.746828;33.139493,-86.747144;33.139879,-86.74753;33.140324,-86.747657;33.140476,-86.747746;33.140613,-86.747838;33.140712,-86.747925;33.140757,-86.74825;33.141095,-86.74859;33.141433,-86.74874;33.141576,-86.749343;33.142125,-86.749681;33.142418,-86.749947;33.14264,-86.750203;33.142854,-86.750661;33.143216,-86.751071;33.143524,-86.751462;33.143807,-86.751858;33.144083,-86.752239;33.144334,-86.752742;33.144668,-86.752982;33.144841,-86.753164;33.144962,-86.753321;33.145058,-86.753891;33.145434,-86.754191;33.145621,-86.75433;33.145715,-86.755046;33.146167,-86.757236;33.147596,-86.757314;33.147647,-86.757562;33.147809,-86.761654;33.150478,-86.761707;33.150512,-86.76225;33.150866,-86.762845;33.151255,-86.76345;33.151651,-86.764651;33.152445,-86.764959;33.152662,-86.765256;33.15288,-86.765543;33.1531,-86.766017;33.153484,-86.766288;33.153717,-86.766558;33.153958,-86.766908;33.154286,-86.76716;33.154535,-86.767574;33.154966,-86.767965;33.155406,-86.768192;33.155673,-86.768415;33.155949,-86.768628;33.156227,-86.768957;33.156686,-86.769233;33.157099,-86.769475;33.15749,-86.769702;33.157884,-86.76992;33.158282,-86.770457;33.1593,-86.773616;33.165338,-86.774914;33.167819,-86.775094;33.168163,-86.775164;33.168295,-86.775378;33.168702,-86.775622;33.169165,-86.77576;33.169428,-86.775836;33.16957,-86.775993;33.169876,-86.776234;33.170398,-86.776298;33.170498,-86.776348;33.170558,-86.776758;33.17138,-86.777143;33.172187,-86.77748;33.172924,-86.777647;33.173304,-86.777738;33.17351,-86.777811;33.173681,-86.77815;33.17448,-86.778552;33.175488,-86.778771;33.17606,-86.778786;33.17615,-86.77929;33.177436,-86.779457;33.177854,-86.779593;33.178193,-86.77972;33.178509,-86.779897;33.178931,-86.780745;33.181097,-86.781395;33.182758,-86.781585;33.183242,-86.781649;33.183417,-86.781755;33.183687,-86.781765;33.183711,-86.782014;33.184346,-86.783036;33.18695,-86.783459;33.188031,-86.783576;33.188328,-86.784113;33.189696,-86.784421;33.190483,-86.784823;33.191508,-86.784873;33.191634,-86.785087;33.19218,-86.785091;33.192191,-86.785297;33.192715,-86.785325;33.192787,-86.785441;33.193081,-86.78554;33.193336,-86.785601;33.193493,-86.786571;33.195962,-86.786788;33.196514,-86.786808;33.196567,-86.787215;33.197587,-86.787391;33.198027,-86.787524;33.19833,-86.78781;33.198946,-86.78797;33.199264,-86.788132;33.199575,-86.788349;33.19997,-86.788465;33.200173,-86.788521;33.200271,-86.788701;33.200567,-86.789071;33.201152,-86.789357;33.201573,-86.789419;33.201663,-86.789621;33.20194,-86.789831;33.202223,-86.790044;33.202496,-86.790262;33.202769,-86.790488;33.203041,-86.793728;33.206845,-86.794285;33.207568,-86.796189;33.209829,-86.796232;33.20988,-86.798535;33.212585,-86.79954;33.213767,-86.799756;33.214029,-86.800196;33.214576,-86.800259;33.214658,-86.800469;33.214935,-86.800512;33.214996,-86.800613;33.215131,-86.80108;33.215787,-86.801273;33.216073,-86.801666;33.216673,-86.801972;33.21717,-86.802162;33.217489,-86.802355;33.217808,-86.802474;33.218004,-86.802702;33.218398,-86.803112;33.219124,-86.803226;33.219326,-86.803356;33.219555,-86.804265;33.221152,-86.804384;33.221361,-86.804597;33.221734,-86.804693;33.221903,-86.805555;33.223416,-86.805639;33.223565,-86.806152;33.224473,-86.806449;33.225012,-86.806492;33.225101,-86.806582;33.225284,-86.80668;33.225498,-86.806748;33.225655,-86.806802;33.22578,-86.806924;33.226092,-86.807033;33.226402,-86.807155;33.226816,-86.807202;33.226984,-86.807313;33.227477,-86.80736;33.227725,-86.807399;33.227994,-86.807451;33.228471,-86.807466;33.228755,-86.807472;33.229078,-86.807475;33.229259,-86.807463;33.229574,-86.807445;33.229884,-86.807428;33.230061,-86.807415;33.23019,-86.807369;33.230508,-86.807331;33.230707,-86.807299;33.230873,-86.807265;33.231051,-86.807207;33.231285,-86.807147;33.231524,-86.807017;33.231941,-86.806843;33.232428,-86.806747;33.232653,-86.806646;33.232875,-86.806504;33.233174,-86.806379;33.233415,-86.806261;33.233624,-86.806071;33.233946,-86.805943;33.234144,-86.80591;33.234194,-86.805852;33.234281,-86.805485;33.234838,-86.805352;33.235039,-86.803774;33.237409,-86.802711;33.239007,-86.80233;33.239585,-86.801555;33.240736,-86.801098;33.241435,-86.800753;33.241961,-86.800489;33.242396,-86.800168;33.242983,-86.799858;33.243594,-86.799641;33.244071,-86.799442;33.244555,-86.799267;33.245016,-86.799119;33.245457,-86.798962;33.245965,-86.798783;33.246645,-86.79869;33.247062,-86.798602;33.247518,-86.798519;33.248067,-86.798488;33.248306,-86.798434;33.248851,-86.798405;33.24929,-86.798389;33.249668,-86.798387;33.250039,-86.798386;33.250225,-86.798405;33.251024,-86.798462;33.252339,-86.798495;33.253264,-86.798545;33.254438,-86.798571;33.255094,-86.798634;33.256724,-86.798716;33.258806,-86.798945;33.264572,-86.798949;33.264676,-86.79897;33.265192,-86.798977;33.26537,-86.799069;33.267556,-86.799236;33.271772,-86.79928;33.27266,-86.799346;33.273713,-86.799438;33.274873,-86.799599;33.276421,-86.799706;33.277304,-86.799756;33.277673,-86.799767;33.277752,-86.800076;33.280035,-86.800103;33.280234,-86.800144;33.280529,-86.800336;33.281928,-86.800378;33.282261,-86.800419;33.282586,-86.800465;33.283141,-86.800487;33.283661,-86.800488;33.283922,-86.800488;33.284107,-86.800462;33.284771,-86.800447;33.284995,-86.800419;33.285261,-86.800391;33.285535,-86.800373;33.28566,-86.800332;33.285961,-86.800217;33.286589,-86.800158;33.286851,-86.800023;33.287396,-86.79987;33.287926,-86.799726;33.288355,-86.799568;33.288787,-86.799488;33.288987,-86.799311;33.289398,-86.799123;33.289803,-86.798663;33.290737,-86.796075;33.295929,-86.794837;33.298402,-86.794429;33.299196,-86.794102;33.299793,-86.793727;33.30044,-86.793528;33.300763,-86.793417;33.300944,-86.793064;33.301495,-86.793036;33.301538,-86.792663;33.30209,-86.792257;33.302664,-86.791063;33.304262,-86.78907;33.306927,-86.788302;33.307955,-86.788119;33.30821,-86.787979;33.308405,-86.787791;33.308692,-86.78772;33.308808,-86.787606;33.308995,-86.787489;33.309199,-86.787387;33.309387,-86.787177;33.309813,-86.786913;33.310442,-86.786857;33.310598,-86.786763;33.310868,-86.786697;33.311086,-86.786578;33.31152,-86.786481;33.311976,-86.78644;33.312239,-86.786412;33.312418,-86.786361;33.312863,-86.786345;33.313072,-86.786328;33.31364,-86.786342;33.314065,-86.786368;33.314424,-86.786389;33.314633,-86.786433;33.314957,-86.786538;33.315442,-86.786615;33.315791,-86.786732;33.316694,-86.786839;33.317607,-86.786844;33.31814,-86.786845;33.318609,-86.786831;33.318857,-86.786795;33.31919,-86.786717;33.319623,-86.78661;33.320079,-86.786555;33.320273,-86.78645;33.320593,-86.786367;33.320804,-86.786234;33.321118,-86.786028;33.321531,-86.785863;33.321824,-86.785737;33.322029,-86.785473;33.322415,-86.78526;33.322692,-86.785111;33.322873,-86.784773;33.323248,-86.784278;33.323763,-86.782951;33.325126,-86.782859;33.32522,-86.782127;33.32598,-86.781722;33.326417,-86.781492;33.32669,-86.781422;33.326774,-86.781222;33.327034,-86.7812;33.327063,-86.781066;33.327247,-86.780803;33.32764,-86.780682;33.327834,-86.780439;33.328251,-86.780227;33.32866,-86.780126;33.328877,-86.779957;33.329273,-86.779809;33.32967,-86.779691;33.330035,-86.779664;33.330123,-86.779601;33.330354,-86.779498;33.330785,-86.779439;33.331091,-86.779375;33.331514,-86.77935;33.33175,-86.779334;33.331983,-86.779324;33.332124,-86.779316;33.332242,-86.779307;33.332507,-86.779307;33.332758,-86.779314;33.33298,-86.779342;33.333385,-86.779354;33.333551,-86.77938;33.33384,-86.779394;33.333995,-86.779677;33.336728,-86.779693;33.336912,-86.779737;33.337813,-86.780333;33.344895,-86.780347;33.345062,-86.780344;33.345283,-86.780406;33.346516,-86.780359;33.347389,-86.780297;33.348426,-86.780258;33.349229,-86.780157;33.350266,-86.780024;33.351342,-86.779845;33.352363,-86.779551;33.353766,-86.779497;33.353972,-86.779422;33.354244,-86.779018;33.355685,-86.778653;33.356748,-86.778148;33.358159,-86.777452;33.36003,-86.776805;33.361699,-86.776728;33.361971,-86.776652;33.362185,-86.776572;33.362435,-86.776494;33.362701,-86.776431;33.362944,-86.776373;33.363199,-86.776285;33.363689,-86.776229;33.364163,-86.77621;33.364444,-86.776197;33.364749,-86.776201;33.365053,-86.776216;33.365421,-86.776236;33.36566,-86.776295;33.366137,-86.776337;33.36639,-86.776386;33.366646,-86.776451;33.366941,-86.776504;33.367155,-86.776639;33.367615,-86.776872;33.368246,-86.777076;33.368738,-86.777212;33.369083,-86.777333;33.36937,-86.77743;33.369619,-86.777602;33.370029,-86.777689;33.370247,-86.777905;33.370792,-86.778041;33.371121,-86.778044;33.371129,-86.778114;33.371299,-86.778162;33.371422,-86.778195;33.371508,-86.778275;33.371698,-86.778404;33.372031,-86.778462;33.372171\\\\nPOLYLINE,-86.867523;31.558289,-86.882239;31.545362,-86.884335;31.543531,-86.884832;31.543096,-86.886841;31.541323,-86.890907;31.537747,-86.891784;31.536976,-86.893825;31.535193,-86.895174;31.534003,-86.896511;31.532789,-86.897862;31.53153,-86.898526;31.530898,-86.899064;31.530385,-86.899649;31.529811,-86.899962;31.529504,-86.901529;31.527924,-86.907379;31.522026,-86.907931;31.521468,-86.918597;31.510684,-86.920865;31.5084,-86.923121;31.506112,-86.925299;31.503915,-86.931258;31.497874,-86.932557;31.496517,-86.933318;31.49569,-86.933805;31.495158,-86.934482;31.494418,-86.93636;31.492283,-86.939452;31.488622,-86.941643;31.486017,-86.945305;31.481664,-86.947271;31.479327,-86.949256;31.476967,-86.950211;31.475832,-86.950787;31.47516,-86.95254;31.47307,-86.95534;31.469742,-86.957389;31.467307,-86.958108;31.466452,-86.95873;31.465713,-86.959229;31.46512,-86.959738;31.464514,-86.960458;31.463658,-86.963293;31.460284,-86.963409;31.460155,-86.963462;31.460081,-86.965049;31.458201,-86.965498;31.457669,-86.965882;31.457214,-86.967147;31.455715,-86.968858;31.453685,-86.972405;31.449471,-86.972582;31.449262,-86.973597;31.448089,-86.974203;31.447417,-86.974863;31.446706,-86.975528;31.446018,-86.976206;31.445331,-86.976885;31.444665,-86.977551;31.444026,-86.977874;31.443728,-86.978892;31.442791,-86.980238;31.441617,-86.981087;31.440895,-86.983767;31.438666,-86.985256;31.437412,-86.987432;31.4356,-86.99029;31.433213,-86.995925;31.428507,-86.996;31.428444,-86.996894;31.427698,-86.99982;31.425227,-87.001257;31.423959,-87.00174;31.42351,-87.00264;31.422672,-87.003276;31.422067,-87.003332;31.422014,-87.004662;31.420688,-87.005333;31.420003,-87.005481;31.419846,-87.006283;31.418995,-87.006896;31.41833,-87.007161;31.418043,-87.007756;31.41738,-87.008411;31.416626,-87.00853;31.416502,-87.009115;31.415818,-87.009144;31.415784,-87.010982;31.413686,-87.011599;31.412971,-87.012847;31.411545,-87.014279;31.409902,-87.016936;31.406855,-87.017774;31.405893,-87.024829;31.397799,-87.029912;31.391968,-87.035656;31.385379,-87.03687;31.384027,-87.037505;31.383345,-87.038152;31.382677,-87.039461;31.381369,-87.040126;31.380734,-87.041475;31.379492,-87.042173;31.378878,-87.042357;31.378721,-87.042983;31.378186,-87.043537;31.377723,-87.043629;31.377646,-87.044383;31.377034,-87.046237;31.375587,-87.048474;31.373847,-87.052242;31.370915,-87.05336;31.370046,-87.053738;31.369743,-87.05409;31.36947,-87.05669;31.367458,-87.05717;31.367078,-87.061251;31.363913,-87.064865;31.3611,-87.066938;31.359504,-87.067676;31.358971,-87.06799;31.358744,-87.068698;31.358253,-87.069416;31.357772,-87.070145;31.357304,-87.071642;31.356388,-87.072387;31.355954,-87.07327;31.355458,-87.074021;31.35505,-87.074228;31.354943,-87.074844;31.354627,-87.075651;31.354227,-87.076459;31.353841,-87.078123;31.353087,-87.080042;31.352246,-87.082834;31.351026,-87.095231;31.34559,-87.09958;31.343684,-87.100762;31.343166,-87.101107;31.343015,-87.101424;31.342878,-87.101708;31.342754,-87.102303;31.342495,-87.102935;31.342219,-87.103771;31.341846,-87.105198;31.341225,-87.108728;31.339688,-87.1095;31.339366,-87.111021;31.338689,-87.112515;31.337952,-87.114134;31.337125,-87.114968;31.336674,-87.115811;31.336193,-87.116668;31.335692,-87.123933;31.331285,-87.125536;31.330306,-87.125843;31.330118,-87.126175;31.329929,-87.12651;31.329715,-87.126677;31.329608,-87.128738;31.328355,-87.132466;31.326091,-87.136112;31.323877,-87.137115;31.323263,-87.137766;31.322864,-87.140599;31.32114,-87.149902;31.315481,-87.160374;31.309101,-87.1635;31.307204,-87.163559;31.307168,-87.163637;31.307121,-87.167662;31.304666,-87.169235;31.303656,-87.170012;31.303144,-87.170773;31.302623,-87.171528;31.30209,-87.172124;31.301654,-87.173024;31.300997,-87.177955;31.297234,-87.180341;31.295414,-87.181048;31.294867,-87.183116;31.293297,-87.183782;31.292779,-87.18731;31.29009,-87.190579;31.287593,-87.19123;31.287101,-87.19446;31.284624,-87.195797;31.283608,-87.201591;31.279176,-87.204268;31.277133,-87.205233;31.276397,-87.206057;31.275768,-87.207708;31.274505,-87.212965;31.270487,-87.213285;31.270243,-87.214689;31.269178,-87.216055;31.26813,-87.219371;31.265608,-87.22001;31.265107,-87.222615;31.263125,-87.224679;31.261537,-87.225374;31.261015,-87.225866;31.260639\\\\nPOLYLINE,-87.22548;31.260639,-87.21363;31.269701,-87.212903;31.270255,-87.21091;31.271772,-87.210254;31.272285,-87.209263;31.273034,-87.209188;31.273076,-87.208253;31.273742,-87.20773;31.274141,-87.207108;31.274614,-87.20618;31.275287,-87.205839;31.275556,-87.205387;31.275913,-87.205088;31.276148,-87.204084;31.276947,-87.204018;31.277,-87.203305;31.27752,-87.202642;31.278023,-87.202441;31.278175,-87.201224;31.279163,-87.192642;31.285727,-87.187146;31.289925,-87.182008;31.29385,-87.177845;31.297026,-87.173713;31.300178,-87.172321;31.301232,-87.171968;31.301486,-87.171368;31.301925,-87.169929;31.302925,-87.168967;31.30357,-87.167521;31.304496,-87.163534;31.30692,-87.163413;31.306994,-87.163329;31.307045,-87.158814;31.30979,-87.157245;31.310756,-87.153311;31.31315,-87.152543;31.313609,-87.143743;31.318962,-87.140556;31.320904,-87.137997;31.322464,-87.136867;31.323147,-87.136432;31.32341,-87.13224;31.325964,-87.131627;31.326337,-87.129905;31.32738,-87.126383;31.329533,-87.126026;31.329752,-87.125388;31.330136,-87.124208;31.330846,-87.11722;31.335102,-87.11563;31.336045,-87.11432;31.336777,-87.11374;31.337083,-87.112612;31.337654,-87.112448;31.337737,-87.111125;31.338369,-87.110221;31.338779,-87.107944;31.339776,-87.106725;31.340309,-87.106494;31.340406,-87.105033;31.341051,-87.104045;31.341487,-87.10319;31.341857,-87.102334;31.342234,-87.101608;31.342554,-87.10126;31.342708,-87.100907;31.342863,-87.100518;31.343035,-87.09945;31.343502,-87.097943;31.344162,-87.097023;31.344574,-87.095125;31.345404,-87.094265;31.34578,-87.092494;31.346562,-87.091644;31.346929,-87.090015;31.347646,-87.08299;31.35072,-87.080205;31.351939,-87.079618;31.352197,-87.077717;31.353033,-87.076113;31.353766,-87.074542;31.354544,-87.074138;31.354754,-87.07376;31.35495,-87.07309;31.355317,-87.072275;31.355767,-87.072182;31.355818,-87.070571;31.356773,-87.069758;31.357287,-87.068939;31.35782,-87.068122;31.358376,-87.067582;31.358758,-87.067319;31.358944,-87.066553;31.3595,-87.064404;31.361152,-87.062985;31.362267,-87.061082;31.363745,-87.058386;31.365839,-87.057681;31.366397,-87.055138;31.368368,-87.053922;31.369313,-87.052419;31.370481,-87.050049;31.372324,-87.049357;31.37287,-87.048123;31.373824,-87.047984;31.373931,-87.04404;31.377009,-87.043386;31.377551,-87.042764;31.378068,-87.042183;31.378574,-87.041542;31.379132,-87.040931;31.379676,-87.040319;31.38024,-87.039087;31.381416,-87.038475;31.38202,-87.037261;31.383264,-87.036651;31.383917,-87.035749;31.38492,-87.033969;31.386947,-87.032111;31.389083,-87.029722;31.391829,-87.02867;31.393039,-87.026057;31.396028,-87.024779;31.397502,-87.024651;31.397646,-87.024288;31.398056,-87.022529;31.40008,-87.017646;31.405681,-87.016743;31.406716,-87.014086;31.409763,-87.009735;31.414752,-87.008988;31.415609,-87.007869;31.416892,-87.007125;31.417735,-87.006698;31.418202,-87.005939;31.419031,-87.005285;31.419721,-87.005207;31.419803,-87.003937;31.421086,-87.003118;31.421894,-87.002997;31.422011,-87.002376;31.422612,-87.001369;31.42354,-87.000974;31.423904,-86.999542;31.425168,-86.998064;31.426416,-86.996596;31.427641,-86.995812;31.428299,-86.995135;31.428868,-86.990289;31.432914,-86.985334;31.437052,-86.983972;31.438196,-86.98331;31.438739,-86.980748;31.44089,-86.980026;31.441493,-86.979338;31.442091,-86.977955;31.443333,-86.977837;31.443444,-86.977283;31.443964,-86.975982;31.445235,-86.975352;31.445866,-86.974742;31.446499,-86.973906;31.447407,-86.973561;31.447781,-86.972975;31.448447,-86.972442;31.449072,-86.971183;31.450551,-86.968651;31.45356,-86.967589;31.454822,-86.96743;31.454993,-86.967314;31.45515,-86.965685;31.457089,-86.965337;31.457498,-86.964848;31.458082,-86.963876;31.459243,-86.963731;31.459374,-86.963182;31.460062,-86.96199;31.46147,-86.961384;31.462203,-86.960292;31.463498,-86.959537;31.464393,-86.95903;31.464994,-86.958524;31.465596,-86.957801;31.466454,-86.957208;31.467159,-86.955036;31.46974,-86.95203;31.473313,-86.949152;31.47673,-86.947376;31.478839,-86.947073;31.479199,-86.945788;31.480724,-86.945116;31.481523,-86.941432;31.485897,-86.939839;31.487789,-86.938734;31.489107,-86.936502;31.491756,-86.93481;31.493698,-86.933714;31.49492,-86.933592;31.495052,-86.9331;31.495584,-86.932534;31.496197,-86.931279;31.497508,-86.929966;31.498854,-86.926005;31.502864,-86.925834;31.503023,-86.925684;31.503186,-86.925054;31.503831,-86.923024;31.505879,-86.921934;31.506985,-86.921257;31.507666,-86.918533;31.510428,-86.915857;31.513125,-86.913251;31.515768,-86.91194;31.517086,-86.90777;31.521302,-86.907423;31.521653,-86.9014;31.527729,-86.900048;31.529093,-86.899465;31.529666,-86.898873;31.530247,-86.898323;31.530779,-86.89809;31.531005,-86.896695;31.532311,-86.895296;31.533586,-86.893233;31.535407,-86.890672;31.537656,-86.884068;31.543457,-86.87541;31.551061,-86.870119;31.555709,-86.869428;31.556322,-86.868729;31.556925,-86.867434;31.558072\\\\nPOLYLINE,-86.412073;32.493105,-86.412114;32.493165,-86.412201;32.493299,-86.412381;32.493547,-86.412463;32.493679,-86.413363;32.494988,-86.41459;32.4968,-86.415236;32.49774,-86.416685;32.499883,-86.416926;32.500239,-86.417139;32.500543,-86.417645;32.501288,-86.41782;32.501545,-86.417899;32.501678,-86.41807;32.501932,-86.418193;32.502115,-86.418309;32.502288,-86.418839;32.503074,-86.419555;32.504131,-86.420165;32.50503,-86.420332;32.505272,-86.420768;32.505904,-86.421264;32.50658,-86.421639;32.507064,-86.422023;32.50754,-86.422517;32.508129,-86.422924;32.508594,-86.423447;32.509166,-86.423873;32.509616,-86.424311;32.510058,-86.424874;32.5106,-86.425275;32.510972,-86.425808;32.511446,-86.426875;32.512382,-86.427174;32.512636,-86.427809;32.513187,-86.429155;32.514361,-86.432601;32.517366,-86.437277;32.521445,-86.4381;32.522173,-86.438563;32.522605,-86.438892;32.522936,-86.439208;32.523276,-86.439511;32.523615,-86.43991;32.524091,-86.440371;32.524701,-86.440719;32.525202,-86.441044;32.525712,-86.441273;32.526102,-86.441557;32.526629,-86.441819;32.527166,-86.442277;32.528184,-86.443436;32.530794,-86.443947;32.531945,-86.444292;32.532724,-86.445168;32.534681,-86.445484;32.535352,-86.445705;32.535791,-86.445817;32.536014,-86.446171;32.53667,-86.446469;32.537193,-86.446776;32.537709,-86.447169;32.538347,-86.447498;32.538849,-86.447886;32.539413,-86.448286;32.539963,-86.448699;32.540515,-86.449122;32.541055,-86.449566;32.541592,-86.449831;32.541894,-86.450024;32.542115,-86.450494;32.542636,-86.450759;32.542921,-86.451412;32.543595,-86.451462;32.543645,-86.452245;32.544423,-86.454875;32.546988,-86.454988;32.547092,-86.455197;32.547309,-86.455534;32.547646,-86.455834;32.547939,-86.457777;32.549833,-86.458827;32.550874,-86.459143;32.551219,-86.459443;32.551571,-86.459819;32.552056,-86.46;32.552301,-86.460257;32.552681,-86.460416;32.552937,-86.46064;32.553323,-86.460775;32.553589,-86.461047;32.554144,-86.461268;32.554617,-86.461437;32.555045,-86.461557;32.555394,-86.461686;32.555816,-86.461914;32.556663,-86.462931;32.560533,-86.463492;32.562644,-86.463902;32.564118,-86.464103;32.564818,-86.464167;32.565026,-86.464287;32.565443,-86.464848;32.567276,-86.464894;32.567411,-86.465436;32.569159,-86.465672;32.569867,-86.466126;32.571271,-86.466501;32.572383,-86.466804;32.573213,-86.467097;32.573968,-86.467435;32.57479,-86.467822;32.575679,-86.468199;32.57649,-86.468622;32.577362,-86.469568;32.579231,-86.469665;32.579428,-86.470218;32.580518,-86.470581;32.581234,-86.471276;32.582611,-86.47444;32.588889,-86.475174;32.590356,-86.475341;32.59069,-86.475633;32.591296,-86.47582;32.591701,-86.476081;32.592315,-86.476332;32.592933,-86.476564;32.593555,-86.476827;32.594313,-86.477026;32.594946,-86.477233;32.595653,-86.477418;32.596366,-86.477483;32.596649,-86.47752;32.59679,-86.477616;32.597234,-86.477755;32.597935,-86.477839;32.598439,-86.477974;32.599367,-86.478005;32.599656,-86.478148;32.600727,-86.47869;32.605063,-86.478912;32.606841,-86.479029;32.607715,-86.479084;32.608051,-86.479123;32.608289,-86.479213;32.608714,-86.47932;32.609136,-86.479443;32.609557,-86.479582;32.609975,-86.479736;32.610387,-86.479906;32.610794,-86.480156;32.61133,-86.48036;32.611727,-86.480437;32.611868,-86.480504;32.611989,-86.480736;32.612372,-86.481027;32.61282,-86.481528;32.613577,-86.481901;32.61414,-86.485657;32.61974,-86.487217;32.622073,-86.48728;32.622172,-86.487787;32.622965,-86.487819;32.62303,-86.487903;32.623159,-86.488363;32.623936,-86.488555;32.624284,-86.488798;32.624723,-86.489282;32.625639,-86.489381;32.625838,-86.489669;32.626448,-86.48991;32.626987,-86.490161;32.627594,-86.490404;32.628216,-86.490694;32.629047,-86.490829;32.629466,-86.491016;32.630102,-86.491181;32.630733,-86.491338;32.631375,-86.491461;32.631948,-86.491723;32.633237,-86.49179;32.633597,-86.492302;32.636108,-86.492585;32.637466,-86.492801;32.638396,-86.493015;32.639251,-86.493191;32.63989,-86.493455;32.640807,-86.493832;32.642004,-86.494018;32.642561,-86.495074;32.645623,-86.495665;32.647363,-86.496026;32.648409,-86.496345;32.649289,-86.496406;32.649456,-86.496663;32.650149,-86.497063;32.651189,-86.497395;32.652011,-86.497714;32.652769,-86.498405;32.654337,-86.498751;32.655073,-86.499041;32.65569,-86.499424;32.656476,-86.49972;32.657083,-86.499947;32.657528,-86.500245;32.658088,-86.500379;32.658357,-86.500654;32.658878,-86.501005;32.659543,-86.501683;32.660873,-86.503148;32.663705,-86.504446;32.666218,-86.504615;32.666551,-86.504789;32.666882,-86.505474;32.668213,-86.507705;32.672516,-86.507874;32.672848,-86.508221;32.67351,-86.508976;32.674971,-86.509639;32.676254,-86.509933;32.676826,-86.50996;32.676881,-86.510773;32.6785,-86.511264;32.679508,-86.511906;32.68085,-86.512471;32.682076,-86.513152;32.683553,-86.513768;32.6849,-86.514075;32.685581,-86.515304;32.688257,-86.515627;32.68896,-86.516251;32.690303,-86.518123;32.694387,-86.519041;32.69639,-86.52109;32.700846,-86.521384;32.701469,-86.521774;32.702259,-86.522216;32.703123,-86.522668;32.703981,-86.523104;32.704771,-86.524434;32.707058\\\\nPOLYLINE,-86.411981;32.49174,-86.412449;32.492387,-86.412706;32.492762,-86.41295;32.493139,-86.413457;32.493905,-86.413532;32.494039,-86.414075;32.494866,-86.414288;32.495177,-86.415319;32.496774,-86.415741;32.497414,-86.415942;32.497737,-86.416361;32.498372,-86.416772;32.499011,-86.416984;32.499326,-86.417184;32.499649,-86.417604;32.500282,-86.418058;32.500979,-86.418221;32.501207,-86.418385;32.501463,-86.418928;32.502286,-86.419496;32.5031,-86.420037;32.503839,-86.420454;32.504389,-86.421165;32.505293,-86.4217;32.50595,-86.422199;32.506539,-86.422867;32.507296,-86.423337;32.507813,-86.42387;32.508379,-86.424684;32.509214,-86.425184;32.509707,-86.425349;32.509875,-86.42632;32.510786,-86.426846;32.511263,-86.427557;32.511886,-86.427736;32.512037,-86.428098;32.512345,-86.428828;32.512946,-86.429204;32.513243,-86.43089;32.514542,-86.432417;32.515718,-86.43314;32.516271,-86.435914;32.518393,-86.437873;32.519902,-86.438018;32.520021,-86.438241;32.520204,-86.438598;32.520516,-86.438673;32.520587,-86.438944;32.520839,-86.439273;32.521171,-86.439575;32.521493,-86.439895;32.521864,-86.440181;32.522222,-86.440456;32.522589,-86.440629;32.522835,-86.440876;32.523214,-86.441032;32.523472,-86.441324;32.523994,-86.441523;32.524391,-86.44176;32.524932,-86.442013;32.525554,-86.442161;32.525897,-86.44406;32.530616,-86.444325;32.531277,-86.444919;32.53275,-86.445063;32.533094,-86.445416;32.533982,-86.445504;32.534184,-86.445644;32.534523,-86.445763;32.534793,-86.446014;32.535333,-86.446138;32.535586,-86.446186;32.535684,-86.446309;32.535936,-86.446752;32.5368,-86.44708;32.537388,-86.447418;32.537973,-86.44754;32.538161,-86.447899;32.538736,-86.448272;32.539304,-86.448616;32.539803,-86.449023;32.540365,-86.449442;32.540913,-86.449967;32.541573,-86.45011;32.541747,-86.450309;32.54199,-86.450459;32.542166,-86.450992;32.542755,-86.451183;32.542971,-86.451497;32.543311,-86.451709;32.543532,-86.452034;32.543872,-86.45264;32.544476,-86.453214;32.545031,-86.453322;32.545146,-86.453555;32.545363,-86.453796;32.5456,-86.45449;32.546241,-86.455275;32.547038,-86.455685;32.547483,-86.456643;32.548415,-86.456864;32.548631,-86.457759;32.549509,-86.457924;32.549675,-86.458592;32.550331,-86.459033;32.550773,-86.459348;32.551116,-86.459653;32.551471,-86.459888;32.551768,-86.460252;32.552261,-86.46051;32.552642,-86.460745;32.553026,-86.461003;32.553485,-86.461206;32.553882,-86.461334;32.55415,-86.461453;32.554419,-86.46162;32.554828,-86.461772;32.555242,-86.462271;32.556787,-86.463079;32.559374,-86.463368;32.560295,-86.46743;32.573105,-86.467678;32.573877,-86.467913;32.574575,-86.468285;32.575614,-86.468521;32.576233,-86.468798;32.576915,-86.46909;32.577599,-86.469515;32.578547,-86.469738;32.579016,-86.469872;32.579281,-86.470333;32.580216,-86.470462;32.580472,-86.471052;32.581642,-86.471504;32.582538,-86.474693;32.588856,-86.475427;32.590322,-86.475522;32.590511,-86.475813;32.591118,-86.476209;32.591999,-86.476519;32.59275,-86.476626;32.593026,-86.476881;32.593716,-86.477115;32.594411,-86.477312;32.595045,-86.47755;32.595883,-86.477641;32.59624,-86.477826;32.597022,-86.477856;32.597172,-86.477941;32.597592,-86.478082;32.598383,-86.478138;32.598739,-86.478189;32.599097,-86.478943;32.605052,-86.479102;32.60631,-86.479126;32.60653,-86.479222;32.607186,-86.479267;32.607546,-86.479332;32.607979,-86.479342;32.608035,-86.479425;32.608477,-86.479517;32.6089,-86.479572;32.609113,-86.479632;32.609322,-86.479742;32.60967,-86.479884;32.61009,-86.479992;32.610366,-86.48019;32.610843,-86.480381;32.611244,-86.48055;32.611576,-86.480668;32.611787,-86.480732;32.611902,-86.480966;32.612295,-86.481118;32.612516,-86.481464;32.61305,-86.481759;32.61349,-86.484002;32.61684,-86.484854;32.6181,-86.486543;32.620618,-86.487507;32.622082,-86.48775;32.622452,-86.487868;32.622649,-86.48807;32.622965,-86.488184;32.623161,-86.488681;32.624004,-86.488789;32.624209,-86.488809;32.624245,-86.489296;32.625132,-86.489429;32.625396,-86.489556;32.62566,-86.489657;32.625855,-86.489814;32.626191,-86.490088;32.626797,-86.490262;32.627208,-86.490426;32.627615,-86.490612;32.6281,-86.490835;32.628722,-86.491063;32.629422,-86.49119;32.629843,-86.491367;32.63048,-86.491511;32.631048,-86.49167;32.63176,-86.492524;32.635966,-86.492802;32.637314,-86.492997;32.638164,-86.493205;32.639009,-86.493412;32.639781,-86.493593;32.640414,-86.493846;32.641253,-86.49412;32.642093,-86.495398;32.645836,-86.496502;32.649026,-86.496544;32.64914,-86.496935;32.650199,-86.497042;32.650475,-86.497156;32.650748,-86.497232;32.650957,-86.497534;32.651705,-86.497874;32.652527,-86.498435;32.653816,-86.49877;32.654559,-86.498973;32.654991,-86.499374;32.655842,-86.49967;32.65643,-86.500232;32.657547,-86.500894;32.658831,-86.501304;32.659629,-86.50342;32.663718,-86.507483;32.671568,-86.507652;32.671909,-86.508172;32.6729,-86.509215;32.674909,-86.509764;32.675966,-86.509828;32.676071,-86.509901;32.676229,-86.510209;32.67684,-86.510707;32.677827,-86.511274;32.678964,-86.511952;32.680371,-86.512269;32.681044,-86.512617;32.681801,-86.51335;32.683396,-86.515359;32.687782,-86.515502;32.688091,-86.517523;32.692492,-86.518287;32.694158,-86.520777;32.699592,-86.521529;32.701205,-86.521575;32.701296,-86.522088;32.702347,-86.522494;32.703141,-86.523018;32.704126,-86.52349;32.704974,-86.524693;32.707057\\\\nPOLYLINE,-86.538477;31.963678,-86.538053;31.964216,-86.537778;31.964586,-86.\\\"+\\\"537514;31.964963,-86.537134;31.965534,-86.536892;31.96592,-86.536546;31.966508,-86.536327;31.966904,-86.536119;31.967303,-86.535825;31.967911,-86.535642;31.968321,-86.53547;31.968733,-86.535227;31.969356,-86.535081;31.969774,-86.534944;31.970197,-86.534722;31.970934,-86.534688;31.971047,-86.533326;31.975717,-86.53306;31.976563,-86.532851;31.977196,-86.532635;31.977825,-86.532182;31.979078,-86.531861;31.97991,-86.531673;31.980372,-86.53144;31.980943,-86.531093;31.981754,-86.531019;31.981927,-86.531001;31.98197,-86.530935;31.982103,-86.530785;31.982449,-86.530315;31.983465,-86.529532;31.98507,-86.528319;31.9875,-86.527995;31.98816,-86.527149;31.989857,-86.526654;31.990866,-86.526371;31.991475,-86.5261;31.992091,-86.525847;31.992711,-86.525831;31.992754,-86.525611;31.993335,-86.525387;31.993963,-86.525246;31.994384,-86.524986;31.995231,-86.524754;31.996083,-86.5246;31.996725,-86.523373;32.002117,-86.523124;32.003196,-86.522857;32.004268,-86.522624;32.005122,-86.522314;32.006185,-86.521984;32.007243,-86.521632;32.008296,-86.521336;32.009135,-86.520949;32.010179,-86.520609;32.011032,-86.520453;32.011423,-86.520016;32.012456,-86.51953;32.013551,-86.518921;32.014922,-86.517943;32.017144,-86.517565;32.018002,-86.517191;32.018818,-86.516895;32.019425,-86.516581;32.020026,-86.516256;32.020623,-86.51603;32.021017,-86.515795;32.02141,-86.515305;32.022184,-86.514926;32.022758,-86.514533;32.023325,-86.514126;32.023884,-86.512672;32.025824,-86.511506;32.027389,-86.51124;32.027763,-86.511047;32.028049,-86.510983;32.028143,-86.510608;32.028717,-86.510252;32.0293,-86.509916;32.029891,-86.509595;32.030489,-86.509392;32.03089,-86.509103;32.031498,-86.50883;32.032111,-86.508659;32.032524,-86.508419;32.033147,-86.508199;32.033777,-86.507996;32.03441,-86.507815;32.03505,-86.5076;32.035908,-86.507389;32.036779,-86.507029;32.038269,-86.506858;32.038912,-86.50667;32.039551,-86.506538;32.039972,-86.506324;32.040605,-86.506094;32.041233,-86.505848;32.041856,-86.505502;32.042679,-86.505318;32.04309,-86.505025;32.043695,-86.504921;32.043898,-86.5047;32.044292,-86.504585;32.044486,-86.504339;32.044874,-86.504076;32.045249,-86.503795;32.045614,-86.503649;32.045796,-86.503342;32.046146,-86.50327;32.046224,-86.50302;32.046487,-86.502685;32.046823,-86.500113;32.049272,-86.499252;32.050086,-86.498398;32.050908,-86.497561;32.051743,-86.496909;32.052416,-86.496249;32.053109,-86.496098;32.053267,-86.49535;32.05409,-86.494691;32.054831,-86.49393;32.055712,-86.49319;32.056607,-86.492464;32.057513,-86.491753;32.058428,-86.490928;32.059536,-86.49026;32.060471,-86.489867;32.061036,-86.489225;32.061985,-86.488355;32.06333,-86.487763;32.064301,-86.487296;32.065084,-86.486846;32.065872,-86.486301;32.066865,-86.485005;32.069277,-86.484502;32.070214,-86.484256;32.070673,-86.480903;32.076936,-86.476486;32.085185,-86.476065;32.085983,-86.475554;32.086989,-86.47518;32.087749,-86.474765;32.088607,-86.474295;32.089624,-86.472843;32.092883,-86.471832;32.095153,-86.471444;32.09597,-86.471144;32.096575,-86.47062;32.097578,-86.470591;32.09763,-86.470293;32.098172,-86.469845;32.09896,-86.469493;32.099547,-86.469321;32.099823,-86.46901;32.10032,-86.468383;32.101278,-86.467994;32.101849,-86.467329;32.102784,-86.466974;32.103261,-86.466916;32.103339,-86.466355;32.104073,-86.465771;32.104796,-86.465025;32.105689,-86.464255;32.106566,-86.464075;32.106741,-86.464016;32.106811,-86.463834;32.107027,-86.461318;32.109724,-86.459658;32.111502,-86.459185;32.112009,-86.459123;32.112062,-86.458918;32.112294,-86.453344;32.118256,-86.453156;32.118457,-86.452528;32.119152,-86.452071;32.119683,-86.451629;32.120219,-86.4512;32.120767,-86.450783;32.121321,-86.45038;32.121879,-86.449871;32.122633,-86.449861;32.12265,-86.44962;32.123023,-86.449147;32.123798,-86.448917;32.124192,-86.448794;32.124415,-86.448589;32.124785,-86.447747;32.126385,-86.446509;32.128791,-86.445357;32.13102,-86.443507;32.134597,-86.443306;32.134993,-86.442894;32.135803,-86.442497;32.136609,-86.44201;32.137625,-86.441446;32.138848,-86.441173;32.139462,-86.440639;32.140697,-86.440209;32.141728,-86.439909;32.14248,-86.439464;32.143594,-86.438795;32.145303,-86.438163;32.14692,-86.437835;32.147747,-86.437107;32.149619,-86.436789;32.150455,-86.436487;32.151294,-86.43606;32.15256,-86.435662;32.15383,-86.435357;32.154897,-86.435129;32.155752,-86.434754;32.157252,-86.434574;32.157998,-86.433871;32.160905,-86.433238;32.163506,-86.431852;32.169206,-86.431315;32.171413,-86.431203;32.17184,-86.431011;32.172475,-86.430801;32.173108,-86.430648;32.173524,-86.430483;32.17394,-86.430308;32.174353,-86.430124;32.17476,-86.429828;32.17537,-86.429617;32.175772,-86.429395;32.176167,-86.429166;32.176558,-86.428925;32.176949,-86.428802;32.177142,-86.428547;32.177524,-86.42815;32.178088,-86.426558;32.180267,-86.426421;32.180455,-86.425517;32.181693,-86.423721;32.184151,-86.422848;32.185347,-86.422314;32.186098,-86.421934;32.186653,-86.421672;32.187046,-86.42106;32.188012,-86.420594;32.188795,-86.420042;32.189785,-86.419827;32.19019,-86.419533;32.190767,-86.419521;32.19079,-86.41903;32.191803,-86.41855;32.192819,-86.418453;32.193018,-86.41823;32.193495,-86.417326;32.195399,-86.416757;32.196543,-86.416124;32.197744,-86.415798;32.198341,-86.415615;32.198663,-86.415389;32.199059,-86.415199;32.199389,-86.414738;32.20017,-86.41402;32.201331,-86.413524;32.202096,-86.413011;32.202856,-86.412227;32.203983,-86.411825;32.204543,-86.411413;32.205099,-86.410715;32.206017,-86.410139;32.206745,-86.409703;32.207287,-86.40926;32.207822,-86.408506;32.208709,-86.408272;32.208976\\\\nPOLYLINE,-86.53919;31.963683,-86.538961;31.96401,-86.538585;31.964582,-86.538348;31.96497,-86.538015;31.965562,-86.537801;31.965963,-86.537599;31.966365,-86.537318;31.96698,-86.537145;31.967389,-86.536981;31.967806,-86.53667;31.968646,-86.535844;31.970949,-86.535626;31.971579,-86.535423;31.972137,-86.53454;31.974613,-86.5345;31.974725,-86.534114;31.975774,-86.533794;31.97661,-86.533401;31.977572,-86.533293;31.97785,-86.533104;31.978258,-86.533017;31.978464,-86.532673;31.979234,-86.53265;31.979285,-86.532168;31.980298,-86.531773;31.981113,-86.531457;31.981742,-86.53139;31.981876,-86.531362;31.981932,-86.531233;31.982201,-86.529794;31.985091,-86.529423;31.985843,-86.528321;31.988042,-86.528186;31.988328,-86.527791;31.989137,-86.527503;31.989746,-86.527321;31.990155,-86.527145;31.990569,-86.526895;31.991191,-86.526582;31.992026,-86.526367;31.992656,-86.526333;31.992765,-86.526221;31.993117,-86.526166;31.99329,-86.526041;31.993715,-86.525868;31.994354,-86.52571;31.994999,-86.525568;31.995645,-86.52544;31.996297,-86.525112;31.998258,-86.524974;31.999125,-86.524721;32.000642,-86.524603;32.001289,-86.524415;32.002149,-86.524361;32.002361,-86.524126;32.003214,-86.524;32.003636,-86.523792;32.004267,-86.523566;32.004893,-86.523403;32.005307,-86.522881;32.006538,-86.522498;32.007413,-86.521086;32.010634,-86.520774;32.01135,-86.519866;32.01343,-86.51894;32.015554,-86.518221;32.01718,-86.517853;32.018012,-86.517482;32.018825,-86.517288;32.01923,-86.516877;32.020034,-86.516551;32.020628,-86.516214;32.021217,-86.515861;32.0218,-86.515497;32.022377,-86.514857;32.023322,-86.514452;32.023878,-86.512873;32.02599,-86.512411;32.026612,-86.511702;32.027569,-86.511305;32.028135,-86.51121;32.028278,-86.510926;32.028708,-86.510686;32.029093,-86.510454;32.029483,-86.51012;32.030076,-86.509906;32.030473,-86.509597;32.031078,-86.50931;32.031686,-86.509038;32.032305,-86.508789;32.032928,-86.508484;32.033769,-86.508347;32.03419,-86.508098;32.035041,-86.507985;32.035468,-86.507781;32.036326,-86.507609;32.037034,-86.507261;32.038469,-86.507024;32.039319,-86.506898;32.039741,-86.50669;32.040373,-86.506467;32.040999,-86.506232;32.041625,-86.505982;32.042243,-86.505713;32.042856,-86.505432;32.043467,-86.505027;32.044275,-86.504716;32.044874,-86.504494;32.04527,-86.504149;32.045856,-86.503888;32.046284,-86.503793;32.046442,-86.503563;32.046804,-86.503424;32.047023,-86.502907;32.047781,-86.502641;32.048155,-86.502229;32.04871,-86.501805;32.049259,-86.501364;32.049802,-86.500911;32.050336,-86.500447;32.050859,-86.500132;32.051203,-86.499482;32.051881,-86.499148;32.052213,-86.498122;32.053191,-86.497379;32.053883,-86.496403;32.054794,-86.494654;32.056435,-86.494145;32.056928,-86.493641;32.057431,-86.493148;32.057941,-86.492667;32.058455,-86.492038;32.059151,-86.491577;32.059677,-86.491128;32.060212,-86.490542;32.060929,-86.490368;32.061152,-86.490117;32.061476,-86.489699;32.062026,-86.489159;32.06277,-86.488767;32.063333,-86.488386;32.063903,-86.48789;32.064669,-86.48753;32.065247,-86.487069;32.066029,-86.486624;32.066817,-86.484703;32.070408,-86.484462;32.070859,-86.481195;32.076951,-86.477114;32.084563,-86.476475;32.085763,-86.475957;32.086768,-86.475459;32.087778,-86.475337;32.088046,-86.475069;32.088593,-86.474784;32.089204,-86.473131;32.092905,-86.472226;32.094931,-86.471844;32.095743,-86.47145;32.096548,-86.471143;32.09715,-86.470899;32.09761,-86.470823;32.097752,-86.470158;32.098937,-86.469927;32.099328,-86.469506;32.100018,-86.469451;32.100107,-86.469085;32.100685,-86.468582;32.10145,-86.468193;32.102018,-86.467527;32.102955,-86.467209;32.10338,-86.466405;32.104428,-86.465968;32.104971,-86.465371;32.105685,-86.464759;32.106389,-86.46429;32.106913,-86.464253;32.106952,-86.46381;32.107428,-86.463567;32.107698,-86.463436;32.107827,-86.463172;32.108114,-86.461499;32.109898,-86.459921;32.111589,-86.459435;32.11211,-86.459059;32.112519,-86.4589;32.112682,-86.457938;32.113709,-86.456821;32.114911,-86.45619;32.115611,-86.455728;32.116138,-86.45513;32.116852,-86.45484;32.117212,-86.454412;32.117759,-86.453996;32.11831,-86.453842;32.118523,-86.453534;32.118949,-86.453457;32.119055,-86.453067;32.119619,-86.452687;32.12019,-86.452198;32.120962,-86.451847;32.121546,-86.451503;32.122135,-86.451173;32.122729,-86.451063;32.122937,-86.450749;32.123528,-86.450545;32.123932,-86.45005;32.124969,-86.44982;32.125465,-86.446579;32.132438,-86.44466;32.136567,-86.444078;32.137787,-86.443283;32.139408,-86.442569;32.140815,-86.441638;32.14262,-86.441432;32.14302,-86.440014;32.145749,-86.439349;32.14703,-86.438522;32.148643,-86.438229;32.149253,-86.437947;32.149867,-86.437769;32.150281,-86.437516;32.150903,-86.43728;32.151528,-86.437057;32.15216,-86.436849;32.152794,-86.436659;32.153429,-86.436484;32.154069,-86.436172;32.155355,-86.435518;32.158125,-86.434086;32.164197,-86.432836;32.169497,-86.432463;32.171045,-86.432292;32.171686,-86.432095;32.17232,-86.431874;32.172947,-86.431715;32.173364,-86.431458;32.17398,-86.431274;32.17439,-86.43108;32.174791,-86.430769;32.175392,-86.430547;32.175787,-86.4302;32.176375,-86.429833;32.176952,-86.429575;32.177331,-86.429172;32.177889,-86.428892;32.178255,-86.428457;32.178797,-86.427074;32.180484,-86.425758;32.182094,-86.425511;32.182395,-86.424188;32.184019,-86.423986;32.184278,-86.423615;32.18475,-86.423061;32.18549,-86.422659;32.186053,-86.422269;32.186619,-86.421991;32.187039,-86.421643;32.187581,-86.421283;32.188163,-86.420818;32.18895,-86.420484;32.189548,-86.420164;32.190146,-86.41978;32.190903,-86.419755;32.190952,-86.419267;32.191963,-86.419035;32.192431,-86.418974;32.192571,-86.417717;32.195214,-86.417619;32.195404,-86.417525;32.195621,-86.417043;32.196634,-86.416647;32.197452,-86.416411;32.19792,-86.416234;32.198253,-86.416169;32.198388,-86.416055;32.198603,-86.415639;32.199387,-86.415091;32.200376,-86.414402;32.201555,-86.41393;32.202333,-86.41332;32.2033,-86.412819;32.204065,-86.412688;32.204257,-86.412046;32.205202,-86.411376;32.206138,-86.410693;32.207065,-86.409841;32.208163,-86.409117;32.209069,-86.408964;32.209252,-86.40837;32.209919,-86.408313;32.20998\\\\nPOLYLINE,-86.326212;39.915319,-86.326668;39.915814,-86.326789;39.915951,-86.32757;39.916839,-86.32861;39.918072,-86.331389;39.921424,-86.332198;39.922383,-86.33328;39.923701,-86.333674;39.924169\\\\nPOLYLINE,-86.326212;39.915723,-86.3267;39.916267,-86.327872;39.917622,-86.32899;39.918968,-86.330017;39.920222,-86.332374;39.923059,-86.333261;39.924139\\\\nPOLYLINE,-87.290734;41.211531,-87.290587;41.211353,-87.290424;41.211155,-87.289356;41.209873,-87.28933;41.209842,-87.288478;41.208877,-87.287268;41.20732,-87.286706;41.206499,-87.286208;41.205612,-87.286021;41.20523,-87.285603;41.204229,-87.285387;41.203667,-87.285063;41.202499,-87.284911;41.201808,-87.284782;41.200921,-87.284777;41.198966,-87.284779;41.198642,-87.284784;41.198185,-87.284777;41.196914,-87.284782;41.19574,-87.28478;41.195441,-87.284771;41.194091,-87.28471;41.192824,-87.284685;41.192568,-87.284595;41.19166,-87.284399;41.190353,-87.284292;41.189822,-87.284138;41.189059,-87.283858;41.188029,-87.283787;41.187767,-87.283767;41.187692,-87.283363;41.18643,-87.283146;41.185862,-87.282919;41.185297,-87.28268;41.184734,-87.282431;41.184175,-87.282271;41.18383,-87.281252;41.181878,-87.280226;41.179989,-87.279613;41.17886,-87.277774;41.175475,-87.277161;41.174347,-87.277077;41.174192,-87.276825;41.17373,-87.276742;41.173576,-87.276522;41.173172,-87.275864;41.17196,-87.275645;41.171557,-87.275593;41.171462,-87.275439;41.171178,-87.275388;41.171084\\\\nPOLYLINE,-87.275458;41.169997,-87.275833;41.170709,-87.27696;41.172847,-87.277336;41.17356,-87.27739;41.173663,-87.277553;41.173972,-87.277608;41.174075,-87.277739;41.174324,-87.278006;41.174839,-87.278802;41.17637,-87.279205;41.17713,-87.27961;41.177892,-87.279643;41.177954,-87.279724;41.178106,-87.279743;41.178143,-87.279777;41.178207,-87.2807;41.179971,-87.28078;41.180124,-87.281519;41.181537,-87.282178;41.182804,-87.282708;41.183874,-87.282925;41.184346,-87.283131;41.184821,-87.283326;41.185298,-87.28351;41.185778,-87.283581;41.185976,-87.283683;41.186261,-87.283877;41.186846,-87.284034;41.187339,-87.284164;41.187778,-87.28418;41.187833,-87.284236;41.188039,-87.284314;41.188329,-87.284437;41.188826,-87.28446;41.18893,-87.284549;41.189326,-87.28465;41.189826,-87.284739;41.190328,-87.284832;41.190939,-87.284901;41.19144,-87.284924;41.191647,-87.284958;41.191942,-87.285003;41.192444,-87.285011;41.192562,-87.285037;41.192947,-87.285045;41.193137,-87.28506;41.193451,-87.285071;41.193954,-87.285072;41.194395,-87.285082;41.194865,-87.285091;41.195217,-87.285089;41.195442,-87.285084;41.195943,-87.285084;41.196135,-87.285088;41.197468,-87.285084;41.198214,-87.285083;41.198451,-87.285093;41.198863,-87.285093;41.198907,-87.285094;41.198953,-87.285088;41.199547,-87.285128;41.200709,-87.285244;41.201645,-87.285415;41.202572,-87.285651;41.203414,-87.285997;41.204349,-87.286356;41.20518,-87.286483;41.20542,-87.286764;41.205952,-87.287238;41.206722,-87.287559;41.207223,-87.287951;41.207734,-87.28957;41.20969,-87.289848;41.210025,-87.289921;41.210113,-87.290657;41.210986,-87.29069;41.211026,-87.290824;41.211189,-87.290896;41.211276,-87.290967;41.211364\\\\nPOLYLINE,-85.830152;38.763233,-85.832111;38.767274,-85.832446;38.767939,-85.832618;38.768306,-85.832777;38.768647,-85.833103;38.76938,-85.833294;38.769694,-85.833572;38.770374,-85.833886;38.771254,-85.833893;38.771287,-85.834031;38.771955,-85.834083;38.772431,-85.834096;38.773338,-85.834061;38.773986,-85.833993;38.774294,-85.833717;38.775387,-85.833604;38.775697,-85.833481;38.775994,-85.83339;38.776198,-85.832908;38.777062,-85.832597;38.77752,-85.832336;38.777922,-85.832243;38.778039,-85.83193;38.778377,-85.831678;38.778632,-85.831009;38.779234,-85.830385;38.779818,-85.83031;38.779886,-85.829558;38.780559,-85.82935;38.780745,-85.828319;38.781699,-85.827193;38.782661,-85.82709;38.782757,-85.826346;38.783447,-85.825068;38.784574,-85.824638;38.784952,-85.824263;38.785298,-85.823462;38.786025,-85.822728;38.786731,-85.822044;38.787317,-85.821579;38.787766,-85.820964;38.788434,-85.820492;38.78909,-85.820439;38.789164,-85.820047;38.789873,-85.819655;38.790766,-85.81945;38.791384,-85.819367;38.791741,-85.819331;38.791992,-85.819241;38.792816,-85.819247;38.793593,-85.81925;38.793914,-85.819254;38.794247,-85.819278;38.796079,-85.819276;38.797645,-85.81929;38.797863,-85.819335;38.806993,-85.819367;38.808203,-85.81937;38.808561,-85.819397;38.811499,-85.819394;38.812512,-85.819438;38.815931,-85.819428;38.817165,-85.819347;38.820415,-85.819326;38.823154,-85.819313;38.823419,-85.819286;38.824449,-85.819215;38.829705,-85.81918;38.830692,-85.819132;38.831566,-85.819092;38.832038,-85.819073;38.832256,-85.819062;38.832391,-85.818961;38.833309,-85.818747;38.834541,-85.818705;38.834745,-85.81851;38.835567,-85.818366;38.83614,-85.817916;38.837667,-85.817788;38.838062,-85.817479;38.838893,-85.817161;38.839711,-85.816943;38.840179,-85.816681;38.840727,-85.816155;38.841742,-85.81574;38.842515,-85.81551;38.842969,-85.815369;38.843246,-85.815229;38.843493,-85.814922;38.844038,-85.814437;38.844924,-85.814244;38.845295,-85.814162;38.84544,-85.814134;38.845527,-85.814134;38.845627,-85.813821;38.846179,-85.813525;38.846729,-85.813199;38.847281,-85.812503;38.848593,-85.812485;38.848634,-85.812363;38.848919,-85.812245;38.849181,-85.811963;38.849858,-85.811759;38.850369,-85.811493;38.851092,-85.811384;38.851374,-85.81101;38.852596,-85.810984;38.852683,-85.810729;38.853682,-85.810605;38.8543,-85.810595;38.85434,-85.810479;38.854831,-85.810346;38.855554,-85.810261;38.856155,-85.810143;38.857204,-85.810108;38.857705,-85.81006;38.858668,-85.810035;38.860358,-85.810047;38.861194,-85.810091;38.862059,-85.810117;38.863425,-85.81012;38.864154,-85.81012;38.864238,-85.810204;38.867239,-85.810205;38.867339,-85.810209;38.867882,-85.810348;38.874441,-85.810374;38.875,-85.81047;38.880482,-85.810495;38.881261,-85.810512;38.88217,-85.810616;38.887701,-85.810737;38.888974,-85.810787;38.889323,-85.810848;38.889746,-85.811175;38.890729,-85.811393;38.891353,-85.811778;38.892134,-85.812182;38.892825,-85.812522;38.893382,-85.812703;38.893623,-85.813258;38.894391,-85.813294;38.894434,-85.813606;38.894808,-85.813826;38.895044,-85.814916;38.896122,-85.815984;38.897155,-85.817055;38.898224,-85.81861;38.899756,-85.819366;38.90049,-85.820222;38.901338,-85.820585;38.901724,-85.820805;38.901958,-85.821095;38.902223,-85.821327;38.902434,-85.822845;38.903927,-85.823552;38.904649,-85.824214;38.905294,-85.824988;38.906037,-85.825636;38.906659,-85.826852;38.907921,-85.827158;38.908204,-85.827601;38.908614,-85.828215;38.909235,-85.828896;38.909906,-85.829604;38.910584,-85.830084;38.911064,-85.830383;38.911362,-85.831264;38.912217,-85.831807;38.912775,-85.832399;38.913354,-85.832741;38.913766,-85.83284;38.913885,-85.83324;38.914379,-85.833872;38.915302,-85.834093;38.915644,-85.834454;38.916274,-85.834744;38.916806,-85.834938;38.917183,-85.835172;38.9177,-85.835715;38.919039,-85.836045;38.919854,-85.836727;38.921622,-85.836836;38.921903,-85.836936;38.922145,-85.837505;38.923515,-85.837664;38.923974,-85.838534;38.92609,-85.83893;38.927105,-85.83937;38.928173,-85.839606;38.928787,-85.841126;38.932584,-85.84119;38.932739,-85.841333;38.933086,-85.841514;38.933599,-85.841739;38.934151,-85.841945;38.934788,-85.842125;38.935322,-85.842366;38.936122,-85.842519;38.936715,-85.842685;38.937482,-85.842881;38.938422,-85.843042;38.939461,-85.843128;38.940105,-85.843164;38.940371,-85.843234;38.941145,-85.843426;38.946822,-85.843609;38.95223,-85.843645;38.954652,-85.843648;38.954791,-85.843649;38.954889,-85.843612;38.955326,-85.843615;38.956917,-85.84361;38.957475,-85.843603;38.958104,-85.843601;38.958276,-85.843605;38.958798,-85.843614;38.960055,-85.843613;38.960407,-85.843612;38.960679,-85.84361;38.961642,-85.84361;38.961829,-85.84361;38.962604,-85.843612;38.964951,-85.843614;38.968831,-85.843615;38.969158,-85.843616;38.971605,-85.843617;38.972993,-85.843619;38.974784,-85.84361;38.975347,-85.843593;38.976366,-85.843612;38.978022,-85.843618;38.979701,-85.843634;38.980402,-85.843647;38.980965,-85.843652;38.981183,-85.843664;38.983,-85.843655;38.983621,-85.843652;38.98382,-85.84365;38.983972,-85.84364;38.984695,-85.843646;38.98495,-85.843681;38.986533,-85.843681;38.987509,-85.843735;38.988047,-85.843817;38.988578,-85.843913;38.989071,-85.844034;38.989538,-85.844245;38.990077,-85.844588;38.990886,-85.844877;38.991448,-85.84529;38.992089,-85.845602;38.992513,-85.846004;38.993002,-85.846359;38.993371,-85.846864;38.993884,-85.847277;38.994257,-85.847768;38.994649,-85.848514;38.995139,-85.849278;38.995612,-85.85112;38.996778,-85.851661;38.99714,-85.853152;38.998059,-85.853425;38.998227,-85.853808;38.998469,-85.854398;38.998842,-85.855359;38.99943,-85.856233;38.999995,-85.857252;39.000623,-85.857958;39.001092,-85.859384;39.001991,-85.86015;39.002482,-85.861936;39.003548,-85.862064;39.003624,-85.862184;39.003701,-85.862418;39.003851,-85.863656;39.004646,-85.865004;39.005557,-85.865739;39.006134,-85.867114;39.007274,-85.869356;39.00911,-85.870891;39.010409,-85.871707;39.011115,-85.872577;39.011883,-85.872791;39.012072,-85.872973;39.012233,-85.873769;39.012936,-85.875173;39.014132,-85.876784;39.015514,-85.877682;39.01632,-85.878816;39.017284,-85.880256;39.018504,-85.881151;39.019296,-85.882033;39.020015,-85.882751;39.020685,-85.883174;39.02104,-85.88512;39.022676,-85.886082;39.023509,-85.887271;39.024539,-85.887402;39.024655,-85.888115;39.025285,-85.888229;39.025387,-85.889041;39.026058,-85.889324;39.026297,-85.889785;39.026688,-85.88982;39.026717,-85.890324;39.027199,-85.890623;39.027483,-85.891469;39.028196,-85.892254;39.028826,-85.893381;39.029778,-85.894301;39.030572,-85.894847;39.031076,-85.89515;39.031355,-85.896459;39.032466,-85.897354;39.033243,-85.897564;39.033423,-85.899171;39.034796,-85.89959;39.035154,-85.900447;39.035906,-85.901269;39.036586,-85.901397;39.0367,-85.902044;39.037276,-85.902792;39.037899,-85.903501;39.038519,-85.904333;39.039237,-85.904568;39.039437,-85.90479;39.039625,-85.905627;39.040357\\\\nPOLYLINE,-85.95285;39.40844,-85.952972;39.408533,-85.953338;39.408814,-85.95346;39.408908,-85.95534;39.41035,-85.956046;39.410887,-85.96166;39.41516,-85.96354;39.41671,-85.963742;39.416903,-85.96531;39.4184,-85.966062;39.419189,-85.96612;39.41925,-85.96619;39.419324,-85.966572;39.419733,-85.9667;39.41987,-85.966793;39.419972,-85.967073;39.420278,-85.967167;39.420381,-85.96723;39.42045,-85.96884;39.42217,-85.969892;39.423306,-85.97009;39.42352,-85.97124;39.42474,-85.97325;39.42689,-85.97691;39.43084,-85.978071;39.432077,-85.979836;39.433957,-85.98043;39.43459,-85.980707;39.434891,-85.980756;39.434944,-85.980804;39.434996,-85.980826;39.43502,-85.980892;39.435092,-85.980915;39.435117,-85.982199;39.436512,-85.98229;39.43661,-85.98454;39.43902,-85.98595;39.44052,-85.986086;39.440667,-85.987372;39.442062,-85.987465;39.442163,-85.987746;39.442468,-85.98784;39.44257,-85.987959;39.442696,-85.988319;39.443074,-85.988439;39.443201,-85.98891;39.443698,-85.98912;39.44392,-85.990319;39.445195,-85.99071;39.44561,-85.990789;39.445695,-85.992206;39.447224,-85.99426;39.44944,-85.99525;39.45056,-85.99598;39.45145,-85.996325;39.451924,-85.99739;39.45342,-85.997524;39.45363,-85.997641;39.453814,-85.997992;39.454366,-85.99811;39.45455,-85.9985;39.45512,-85.99925;39.45627,-85.999866;39.457252,-85.99994;39.45737,-86.00101;39.45899,-86.00176;39.46014,-86.0022;39.46084,-86.00368;39.46312,-86.00424;39.46395,-86.00467;39.46461,-86.005143;39.465357,-86.00524;39.46551,-86.00602;39.46672,-86.00661;39.4676,-86.00689;39.468066,-86.00703;39.4683,-86.00765;39.46924,-86.008164;39.470029,-86.00851;39.47056,-86.00912;39.47148,-86.01029;39.47333,-86.01065;39.47388,-86.01103;39.47459,-86.01134;39.47526,-86.011373;39.475336,-86.01165;39.47597,-86.011688;39.476085,-86.01189;39.47668,-86.01214;39.47762,-86.012321;39.478338,-86.012344;39.478432,-86.012416;39.478715,-86.01244;39.47881,-86.012697;39.47969,-86.01275;39.47987,-86.01315;39.48117,-86.01343;39.4822,-86.013468;39.48233,-86.01373;39.48321,-86.013986;39.48412,-86.01469;39.48662,-86.014751;39.486854,-86.01499;39.48777,-86.01522;39.48861,-86.015335;39.489001,-86.01551;39.48959,-86.01585;39.49081,-86.01609;39.4917,-86.0162;39.49203,-86.016381;39.492691,-86.01669;39.49381,-86.016721;39.493924,-86.016821;39.494284,-86.01687;39.49446,-86.01711;39.49527,-86.017135;39.495362,-86.017233;39.495724,-86.017264;39.495839,-86.017358;39.496184,-86.01739;39.4963,-86.017407;39.496361,-86.017458;39.496544,-86.017476;39.496606,-86.01794;39.49825,-86.017959;39.49832,-86.01831;39.49959,-86.01896;39.50186,-86.01926;39.50296,-86.019405;39.503466,-86.01949;39.50376,-86.019887;39.505182,-86.020079;39.505874,-86.02026;39.50652,-86.02048;39.50726,-86.020669;39.507948,-86.02075;39.50824,-86.020867;39.508639,-86.02106;39.5093,-86.02144;39.51066,-86.021593;39.511198,-86.02192;39.51234,-86.0226;39.5148,-86.02368;39.51862,-86.023751;39.518884,-86.02406;39.52002,-86.02446;39.52145,-86.02512;39.52339,-86.025317;39.523894,-86.0255;39.52436,-86.02574;39.52487,-86.02633;39.52603,-86.0268;39.52678,-86.02726;39.52758,-86.02788;39.5286,-86.02838;39.52944,-86.02889;39.53027,-86.029116;39.530664,-86.02936;39.53109,-86.03013;39.53235,-86.030442;39.532891,-86.03081;39.53353,-86.030826;39.533556,-86.03183;39.53523,-86.032013;39.535533,-86.032412;39.536191,-86.032467;39.536282,-86.032634;39.536558,-86.03269;39.53665,-86.033271;39.537616,-86.03358;39.53813,-86.03434;39.53943,-86.03491;39.54037,-86.034998;39.540524,-86.03547;39.54135,-86.035561;39.541502,-86.036048;39.542317,-86.03678;39.54354,-86.03742;39.54462,-86.037507;39.544765,-86.037999;39.545578,-86.038121;39.545779,-86.03823;39.54596,-86.038494;39.54638,-86.03862;39.54658,-86.039114;39.547392,-86.03971;39.54837,-86.04024;39.54933,-86.04056;39.54985,-86.04106;39.55066,-86.041563;39.551404,-86.042;39.55205,-86.04308;39.553632,-86.04327;39.55391,-86.04358;39.55438,-86.04367;39.55453,-86.043909;39.554869,-86.0441;39.55514,-86.04487;39.55621,-86.044938;39.556309,-86.045273;39.556796,-86.0461;39.558,-86.046469;39.558538,-86.04698;39.55928,-86.04795;39.56067,-86.04924;39.56253,-86.050075;39.563754,-86.05012;39.56382,-86.05083;39.56482,-86.05131;39.56547,-86.05167;39.56603,-86.0522;39.56679,-86.052309;39.566944,-86.05298;39.56789,-86.05408;39.56953,-86.05535;39.571339,-86.0554;39.57141,-86.056356;39.572811,-86.05695;39.57368,-86.05774;39.57488,-86.058173;39.575573,-86.05824;39.57568,-86.05868;39.57647,-86.05957;39.57825,-86.05977;39.5787,-86.06006;39.5794,-86.06018;39.57972,-86.06113;39.58207,-86.06146;39.58297,-86.06213;39.584659,-86.063;39.58685,-86.06336;39.58773,-86.06353;39.58815,-86.063888;39.589095,-86.06394;39.58923,-86.06486;39.5915,-86.06514;39.59222,-86.06552;39.59313,-86.065534;39.593167,-86.06598;39.5943,-86.066067;39.594531,-86.06627;39.595068,-86.06655;39.59581,-86.06659;39.595906,-86.06686;39.59655,-86.067465;39.598081,-86.0675;39.59817,-86.068232;39.600006,-86.068778;39.601374,-86.0688;39.60143,-86.068836;39.601526,-86.069012;39.601984,-86.06903;39.60203,-86.069073;39.602136,-86.069156;39.602341,-86.069271;39.602625,-86.069865;39.604094,-86.070063;39.604584,-86.070226;39.604988,-86.07049;39.60564,-86.070711;39.606202,-86.070872;39.606608,-86.070882;39.606633,-86.070912;39.606709,-86.070923;39.606735,-86.071067;39.607101,-86.07145;39.60807,-86.071501;39.608199,-86.071647;39.608565,-86.071735;39.608788,-86.072001;39.609457,-86.07209;39.60968,-86.072462;39.610621,-86.07279;39.61145,-86.0732;39.61259,-86.07329;39.61292,-86.073433;39.613493,-86.07353;39.61388,-86.07366;39.61448,-86.07367;39.614534,-86.073703;39.614696,-86.073714;39.61475,-86.07382;39.61528,-86.073854;39.615553,-86.07394;39.61624,-86.07399;39.61697,-86.07402;39.61788,-86.074021;39.617994,-86.07403;39.61881,-86.07403;39.620153,-86.07403;39.6225,-86.074034;39.624183,-86.074038;39.625527,-86.074038;39.625792,-86.07404;39.62649,-86.07404;39.626589,-86.074042;39.626855,-86.074045;39.627612,-86.074056;39.629883,-86.07406;39.63064,-86.07406;39.631768,-86.07406;39.63213,-86.07407;39.633,-86.07407;39.63481,-86.07408;39.63507,-86.07408;39.635151,-86.07409;39.63628,-86.074081;39.636593\\\\nPOLYLINE,-86.07434;39.636587,-86.074341;39.636437,-86.074339;39.636076,-86.07432;39.62987,-86.07431;39.626914,-86.07431;39.62621,-86.0743;39.62447,-86.0743;39.61995,-86.07429;39.61909,-86.07429;39.6182,-86.07428;39.61759,-86.07422;39.61652,-86.07417;39.616,-86.07406;39.61519,-86.073973;39.614745,-86.07392;39.61447,-86.073465;39.612629,-86.072822;39.610886,-86.07265;39.61033,-86.07224;39.60931,-86.072057;39.608873,-86.07181;39.60828,-86.071183;39.606698,-86.071139;39.606588,-86.07091;39.60601,-86.07035;39.60455,-86.070333;39.604508,-86.069468;39.602329,-86.06933;39.60198,-86.069094;39.601372,-86.06893;39.60095,-86.06778;39.59811,-86.067714;39.597942,-86.06749;39.59737,-86.06667;39.59534,-86.066558;39.595049,-86.066357;39.594526,-86.06624;39.59422,-86.06516;39.59153,-86.06392;39.58837,-86.06365;39.58772,-86.06249;39.58483,-86.06195;39.58344,-86.06047;39.57967,-86.05988;39.57826,-86.05901;39.57646,-86.05873;39.57591,-86.05824;39.57505,-86.05699;39.57316,-86.05637;39.57231,-86.055;39.57032,-86.05448;39.56958,-86.05378;39.56854,-86.05276;39.5671,-86.05218;39.56626,-86.05166;39.56547,-86.05056;39.56392,-86.04812;39.56036,-86.04707;39.55886,-86.04638;39.55789,-86.04625;39.55768,-86.0458;39.55704,-86.045258;39.556248,-86.04519;39.55615,-86.04401;39.5544,-86.04369;39.55403,-86.04325;39.55336,-86.04247;39.55221,-86.04143;39.55065,-86.04109;39.55012,-86.03997;39.5483,-86.03941;39.54734,-86.03893;39.54656,-86.0386;39.54594,-86.03844;39.54567,-86.03765;39.5444,-86.03611;39.5418,-86.035531;39.540831,-86.03519;39.54026,-86.03431;39.53875,-86.03298;39.53656,-86.032713;39.536104,-86.0324;39.53557,-86.03157;39.53418,-86.0309;39.53304,-86.030622;39.532583,-86.03028;39.53202,-86.02966;39.53101,-86.02929;39.53037,-86.02806;39.5283,-86.02739;39.52717,-86.02684;39.52628,-86.02635;39.52536,-86.02604;39.52475,-86.02582;39.52429,-86.02539;39.52327,-86.02524;39.52287,-86.02495;39.52197,-86.02479;39.52144,-86.02465;39.52094,-86.02456;39.52057,-86.02427;39.51958,-86.02402;39.51862,-86.02355;39.51701,-86.02289;39.51464,-86.0226;39.51364,-86.02215;39.51199,-86.02169;39.51043,-86.021209;39.508655,-86.02103;39.50807,-86.02082;39.50725,-86.02021;39.50514,-86.020192;39.50501,-86.020043;39.504491,-86.01943;39.50235,-86.01916;39.50136,-86.01893;39.50057,-86.01826;39.49817,-86.01789;39.49691,-86.01771;39.49624,-86.01737;39.49506,-86.01711;39.49409,-86.017061;39.493921,-86.01698;39.49364,-86.01664;39.49239,-86.01651;39.49198,-86.01628;39.4911,-86.01605;39.49032,-86.01538;39.48798,-86.01479;39.48593,-86.01456;39.48506,-86.01404;39.48321,-86.0138;39.48233,-86.01329;39.48055,-86.01313;39.47993,-86.01284;39.47888,-86.012791;39.478702,-86.0125;39.47765,-86.01225;39.47682,-86.01207;39.47625,-86.01188;39.47569,-86.011737;39.475353,-86.01169;39.47524,-86.01135;39.47452,-86.01092;39.47372,-86.0106;39.47323,-86.01018;39.47254,-86.00774;39.46881,-86.00732;39.46815,-86.007259;39.468057,-86.00623;39.46649,-86.00392;39.46292,-86.00249;39.46073,-86.00211;39.46012,-86.00198;39.45993,-86.00137;39.459,-86.00075;39.45803,-85.9993;39.4558,-85.99869;39.45484,-85.99743;39.45296,-85.99626;39.45132,-85.99485;39.44965,-85.99277;39.4474,-85.990917;39.445404,-85.98824;39.44254,-85.98766;39.44193,-85.98473;39.43877,-85.98271;39.43661,-85.981307;39.435121,-85.9811;39.434901,-85.980985;39.43478,-85.980874;39.434661,-85.98059;39.43436,-85.980176;39.433913,-85.97845;39.43205,-85.97376;39.427,-85.97168;39.42478,-85.97065;39.42366,-85.96949;39.42241,-85.96813;39.42097,-85.96714;39.41989,-85.96665;39.41939,-85.96593;39.41858,-85.96471;39.41735,-85.96333;39.41605,-85.96256;39.41541,-85.96195;39.41492,-85.952847;39.407953\\\\nPOLYLINE,-85.744801;38.267204,-85.745239;38.267994,-85.745796;38.26926,-85.745857;38.269371,-85.745941;38.269524,-85.746109;38.269856,-85.746269;38.270161,-85.746582;38.270767,-85.747147;38.27177,-85.747292;38.272026,-85.747375;38.272167,-85.747482;38.272366,-85.747604;38.272575,-85.747763;38.272854,-85.748413;38.274002,-85.748558;38.274281,-85.74868;38.274529,-85.748756;38.274639,-85.748833;38.274784,-85.748932;38.274967,-85.749023;38.275173,-85.749138;38.275417,-85.749268;38.275806,-85.749298;38.275951,-85.749367;38.276432,-85.749405;38.276817,-85.749413;38.277195,-85.749435;38.277649,-85.749435;38.27784,-85.749443;38.277912,-85.749443;38.277931,-85.749454;38.278076,-85.749458;38.27813,-85.749458;38.278152,-85.749466;38.278179,-85.74947;38.278217,-85.749481;38.278297,-85.749519;38.278454,-85.749588;38.278725,-85.74968;38.27903,-85.749741;38.279209,-85.74984;38.279453,-85.749924;38.279636,-85.749947;38.279671,-85.749962;38.279713,-85.750031;38.279835,-85.750168;38.280109,-85.75025;38.280234,-85.750366;38.280411,-85.750547;38.280672,-85.750572;38.280708,-85.750793;38.281002,-85.750999;38.281223,-85.75116;38.281387,-85.751541;38.281731,-85.752251;38.282326,-85.752434;38.282475,-85.752686;38.2827,-85.752737;38.282739,-85.753098;38.283012,-85.753349;38.283237,-85.753799;38.283638,-85.754036;38.283882,-85.754257;38.284126,-85.754517;38.284458,-85.75457;38.284519,-85.754616;38.284592,-85.754677;38.284672,-85.754906;38.285015,-85.755142;38.285378,-85.755249;38.285538,-85.755836;38.28653,-85.756012;38.286888,-85.756325;38.287521,-85.756599;38.288158,-85.756874;38.288803,-85.757179;38.2896,-85.757256;38.289791,-85.757401;38.290146,-85.757515;38.290421,-85.757858;38.291378,-85.757889;38.291473,-85.757912;38.291595,-85.757922;38.291663,-85.757965;38.291958,-85.75798;38.292374,-85.757957;38.292675,-85.757858;38.293137,-85.757736;38.293514,-85.757652;38.293716,-85.757561;38.293919,-85.757408;38.294197,-85.757271;38.294395,-85.756973;38.294781,-85.756584;38.295174,-85.755425;38.296131,-85.754578;38.296906,-85.754456;38.297066,-85.754288;38.297283,-85.75396;38.297813,-85.753845;38.298038,-85.753822;38.298089,-85.753624;38.298538,-85.753548;38.298737,-85.753464;38.298985,-85.753204;38.299957,-85.753021;38.300697,-85.752991;38.300968,-85.752922;38.301319,-85.752884;38.301582,-85.752835;38.302257,-85.752754;38.303387,-85.75264;38.304798,-85.752594;38.305706,-85.752571;38.30595,-85.752563;38.306232,-85.752502;38.306725,-85.752396;38.307781,-85.752365;38.308258,-85.752335;38.308636,-85.752296;38.308994,-85.752281;38.309322,-85.752281;38.309639,-85.752319;38.310127,-85.752365;38.310574,-85.752495;38.311569,-85.752568;38.312238,-85.752602;38.31255,-85.752726;38.313628,-85.752823;38.314461,-85.75293;38.315365,-85.753044;38.316254,-85.753082;38.316471,-85.753113;38.316692,-85.753159;38.316944,-85.75321;38.317189,-85.753213;38.317209,-85.753242;38.317421,-85.753258;38.317673,-85.753311;38.318527,-85.753342;38.318874,-85.753372;38.319141,-85.753448;38.320019,-85.753485;38.320327,-85.753815;38.323116,-85.75386;38.323578,-85.753967;38.324558,-85.754128;38.325813,-85.754166;38.326206,-85.754189;38.326603,-85.754173;38.327541,-85.75415;38.328632,-85.754056;38.329557,-85.753998;38.330128,-85.753906;38.3311,-85.753746;38.333027,-85.75367;38.333996,-85.753601;38.334991,-85.753587;38.335467,-85.753578;38.335777,-85.753571;38.335983,-85.753571;38.336128,-85.753578;38.336266,-85.753586;38.336594,-85.753601;38.336849,-85.7536;38.336876,-85.753616;38.337135,-85.753731;38.340202,-85.753777;38.340721,-85.753799;38.34103,-85.753845;38.342754,-85.753899;38.343784,-85.753937;38.344761,-85.753952;38.345631,-85.75396;38.345779,-85.753975;38.345909,-85.753995;38.346116,-85.754013;38.346302,-85.754044;38.346752,-85.754074;38.347298,-85.75412;38.348701,-85.754173;38.349518,-85.754189;38.350571,-85.754189;38.351299,-85.754196;38.351383,-85.754197;38.351415,-85.754202;38.35153,-85.754205;38.351612,-85.754207;38.351648,-85.754211;38.35173,-85.754272;38.352444,-85.754372;38.354366,-85.754433;38.355324,-85.754585;38.35907,-85.754623;38.359962,-85.754684;38.36121,-85.754717;38.361926,-85.75475;38.362631,-85.754769;38.363039,-85.754784;38.363289,-85.75487;38.365333,-85.754875;38.365482,-85.754893;38.365758,-85.754898;38.365829,-85.754906;38.365994,-85.754959;38.366505,-85.754982;38.366959,-85.755119;38.367912,-85.75528;38.368847,-85.755432;38.369469,-85.755501;38.369789,-85.755562;38.370044,-85.755638;38.37035,-85.755882;38.371223,-85.756111;38.372028,-85.756172;38.372231,-85.756691;38.374081,-85.756943;38.374943,-85.757172;38.375683,-85.757393;38.376499,-85.757622;38.377281,-85.757851;38.378105,-85.758408;38.379971,-85.758919;38.381737,-85.759506;38.383804,-85.759949;38.385355,-85.76004;38.385674,-85.761101;38.389343,-85.76136;38.390308,-85.761482;38.390732,-85.761528;38.390884,-85.761574;38.391052,-85.761658;38.391315,-85.761705;38.391471,-85.761925;38.392185,-85.762199;38.393131,-85.762268;38.393379,-85.762405;38.393883,-85.762451;38.394024,-85.762466;38.394081,-85.762482;38.394146,-85.762574;38.39448,-85.762589;38.394535,-85.762611;38.394627,-85.76265;38.394768,-85.762733;38.395119,-85.763145;38.396511,-85.763283;38.396942,-85.763313;38.397068,-85.763992;38.399498,-85.764107;38.399944,-85.764282;38.400757,-85.764473;38.401695,-85.764694;38.403255,-85.76474;38.403542,-85.764816;38.404575,-85.764841;38.404898,-85.764877;38.405361,-85.764915;38.407207,-85.764923;38.408363,-85.764893;38.409897,-85.764893;38.410111,-85.764893;38.412678,-85.764862;38.417019,-85.76487;38.41935,-85.764832;38.42403,-85.76481;38.428026,-85.764809;38.42811,-85.764809;38.4282,-85.764802;38.43272,-85.764801;38.433441,-85.764787;38.435162,-85.764786;38.435326,-85.764873;38.436243,-85.764899;38.436568,-85.764941;38.436882,-85.764974;38.437126,-85.765104;38.437919,-85.765234;38.438563,-85.76531;38.438873,-85.765616;38.439987,-85.766125;38.441622,-85.76725;38.445166,-85.767918;38.447183,-85.768507;38.449033,-85.768961;38.450461,-85.769022;38.450647,-85.76947;38.452028,-85.769867;38.453294,-85.770099;38.454105,-85.770259;38.454859,-85.770392;38.455569,-85.770506;38.456344,-85.770561;38.456888,-85.770577;38.457394,-85.770619;38.45828,-85.770515;38.460672,-85.770486;38.461293,-85.770245;38.466373,-85.770131;38.468297,-85.769969;38.471353,-85.769839;38.473665,-85.769806;38.47506,-85.769825;38.475555,-85.769856;38.475899,-85.769971;38.477105,-85.77002;38.47749,-85.770135;38.478184,-85.770521;38.480099,-85.770738;38.481129,-85.77085;38.481656,-85.771154;38.483034,-85.771322;38.483872,-85.771447;38.484552,-85.771602;38.485606,-85.771645;38.486266,-85.771642;38.487555,-85.771655;38.488392,-85.771544;38.489574,-85.771495;38.490229,-85.771414;38.491332,-85.771275;38.492889,-85.771144;38.49436,-85.770965;38.496858,-85.770826;38.498625,-85.770704;38.499884,-85.770653;38.501809,-85.770654;38.501831,-85.770704;38.503118,-85.770771;38.504002,-85.770804;38.504244,-85.770937;38.505194,-85.771103;38.506378,-85.771416;38.508862,-85.771588;38.510171,-85.771787;38.511687,-85.772116;38.514286,-85.772132;38.514397,-85.772499;38.516916,-85.772743;38.51872,-85.772871;38.519669,-85.773588;38.525173,-85.773971;38.527853,-85.774115;38.528625,-85.774151;38.528781,-85.774409;38.529887,-85.774695;38.530923,-85.774984;38.531834,-85.775208;38.532566,-85.775381;38.533103,-85.775635;38.533864,-85.776056;38.535201,-85.77651;38.536681,-85.776836;38.537821,-85.77722;38.53921,-85.777488;38.540263,-85.777506;38.540356,-85.777622;38.54096,-85.777879;38.542243,-85.778081;38.543619,-85.778272;38.544892,-85.778428;38.546125,-85.778459;38.546373,-85.778528;38.546989,-85.778552;38.547361,-85.778677;38.549642,-85.778685;38.550092,-85.778702;38.551012,-85.7787;38.553672,-85.778683;38.556136,-85.778699;38.55806,-85.778695;38.558913,-85.778688;38.563478,-85.778685;38.565662,-85.778688;38.567492,-85.77869;38.568613,-85.778688;38.570012,-85.778686;38.570986,-85.778671;38.572949,-85.778687;38.573813,-85.778685;38.578982,-85.778676;38.580218,-85.778677;38.581277,-85.778679;38.581814,-85.778686;38.583565,-85.778682;38.58484,-85.778667;38.58573,-85.778664;38.585905,-85.778671;38.587671,-85.778685;38.589004,-85.778687;38.589404,-85.778693;38.590741,-85.778696;38.591341,-85.778706;38.593492,-85.778745;38.594076,-85.778792;38.594487,-85.778846;38.594893,-85.778901;38.595256,-85.779059;38.595999,-85.779166;38.596453,-85.779316;38.596946,-85.779494;38.597559,-85.779685;38.598114,-85.780321;38.600046,-85.780989;38.602186,-85.78112;38.602736,-85.781193;38.603097,-85.781259;38.603498,-85.781305;38.604009,-85.781343;38.604292,-85.781349;38.604662,-85.781355;38.605076\\\\nPOLYLINE,-85.744961;38.267196,-85.745399;38.268002,-85.745995;38.26926,-85.746037;38.269343,-85.746254;38.269783,-85.746414;38.270084,-85.746756;38.270698,-85.747078;38.271275,-85.747353;38.27179,-85.747482;38.272038,-85.747528;38.272099,-85.747574;38.272179,-85.747597;38.272217,-85.747681;38.272373,-85.748085;38.273083,-85.748398;38.273636,-85.748627;38.274017,-85.748795;38.274323,-85.748894;38.27449,-85.748947;38.274605,-85.749062;38.274822,-85.749146;38.275047,-85.749184;38.275169,-85.749245;38.275337,-85.74929;38.275558,-85.749352;38.27581,-85.74939;38.276009,-85.749413;38.276104,-85.749481;38.276684,-85.749504;38.27705,-85.749519;38.277481,-85.749535;38.27763,-85.74955;38.277817,-85.749581;38.278082,-85.749588;38.278152,-85.749596;38.278194,-85.749641;38.278465,-85.749786;38.278976,-85.749855;38.279171,-85.749977;38.279461,-85.750137;38.279785,-85.750191;38.279888,-85.750237;38.279968,-85.750465;38.280354,-85.75058;38.280521,-85.750687;38.280666,-85.750893;38.280922,-85.751228;38.281284,-85.751846;38.281826,-85.752686;38.282532,-85.752732;38.282569,-85.75312;38.282883,-85.753326;38.283054,-85.753494;38.283188,-85.753944;38.283607,-85.754173;38.283867,-85.754303;38.284004,-85.754387;38.2841,-85.754433;38.284168,-85.754631;38.284439,-85.754692;38.284527,-85.754745;38.284595,-85.754799;38.284676,-85.754852;38.28476,-85.755005;38.284973,-85.755348;38.285465,-85.755463;38.285628,-85.755798;38.286106,-85.755989;38.286346,-85.756068;38.286448,-85.756187;38.286602,-85.756432;38.2869,-85.756516;38.287003,-85.757133;38.287689,-85.757584;38.288204,-85.757813;38.28849,-85.758003;38.288761,-85.758163;38.289036,-85.758286;38.289272,-85.758446;38.289597,-85.758705;38.290409,-85.758743;38.290615,-85.758766;38.290848,-85.758787;38.291225,-85.758789;38.291252,-85.758797;38.291496,-85.758781;38.291985,-85.758751;38.29216,-85.758667;38.292572,-85.758408;38.293194,-85.758209;38.29361,-85.757904;38.294109,-85.757492;38.29464,-85.757195;38.29493,-85.756447;38.295597,-85.75573;38.296169,-85.755402;38.296444,-85.754997;38.296856,-85.754616;38.297302,-85.754514;38.297451,-85.75441;38.297604,-85.754272;38.29784,-85.754192;38.29797,-85.754128;38.298073,-85.753929;38.298454,-85.753723;38.299038,-85.753609;38.299454,-85.753487;38.29987,-85.753357;38.300377,-85.753242;38.30101,-85.753181;38.301353,-85.753136;38.301777,-85.753098;38.302307,-85.753097;38.302341,-85.753082;38.302677,-85.752953;38.304291,-85.752901;38.304984,-85.752833;38.305899,-85.752739;38.307175,-85.752586;38.308647,-85.752556;38.309097,-85.752556;38.309399,-85.752563;38.309776,-85.752731;38.311066,-85.752853;38.312031,-85.753025;38.313623,-85.753082;38.314152,-85.753311;38.315777,-85.753334;38.315975,-85.753365;38.3162,-85.753395;38.316467,-85.753418;38.316715,-85.753448;38.317013,-85.753502;38.317299,-85.753532;38.317577,-85.753578;38.318012,-85.753609;38.318443,-85.753632;38.318718,-85.75367;38.318974,-85.753792;38.320107,-85.753845;38.320583,-85.753929;38.321449,-85.75412;38.323196,-85.754211;38.323807,-85.754311;38.324696,-85.754333;38.32489,-85.754373;38.325427,-85.754463;38.32663,-85.754486;38.327393,-85.754478;38.327484,-85.754463;38.327957,-85.754425;38.328644,-85.754351;38.329557,-85.754288;38.330338,-85.754196;38.331261,-85.754036;38.333122,-85.753975;38.33408,-85.753899;38.335045,-85.753883;38.335434,-85.75386;38.335918,-85.75386;38.336082,-85.753876;38.336529,-85.753883;38.3367,-85.753899;38.336983,-85.75399;38.338902,-85.754036;38.33976,-85.754074;38.340805,-85.754097;38.34111,-85.75412;38.34251,-85.754143;38.342743,-85.75415;38.34306,-85.754189;38.343781,-85.754242;38.344948,-85.754288;38.345619,-85.754295;38.345776,-85.754295;38.345905,-85.754303;38.346107,-85.754349;38.347004,-85.754402;38.348522,-85.754471;38.349819,-85.754509;38.350971,-85.754509;38.35117,-85.754511;38.35122,-85.754516;38.351356,-85.754517;38.351379,-85.754517;38.351443,-85.754517;38.351493,-85.754517;38.351646,-85.754555;38.352261,-85.75457;38.352592,-85.754662;38.354126,-85.754677;38.354591,-85.754753;38.355995,-85.754837;38.357971,-85.754906;38.359436,-85.754982;38.361202,-85.755001;38.36185,-85.75501;38.362126,-85.755028;38.362709,-85.755042;38.362918,-85.755089;38.363602,-85.755176;38.36525,-85.755193;38.365577,-85.755196;38.365635,-85.755188;38.365688,-85.755203;38.36573,-85.755224;38.366026,-85.755257;38.366501,-85.755325;38.367203,-85.755417;38.367928,-85.755569;38.368744,-85.755768;38.369656,-85.755838;38.3699,-85.755859;38.369972,-85.756012;38.370605,-85.756409;38.372022,-85.756577;38.372623,-85.75676;38.373215,-85.756998;38.374095,-85.757072;38.374367,-85.757324;38.375252,-85.757462;38.375668,-85.757568;38.375996,-85.758682;38.379894,-85.75898;38.38092,-85.759163;38.381527,-85.759178;38.381592,-85.759201;38.381668,-85.759232;38.38176,-85.75956;38.382874,-85.759811;38.383789,-85.760247;38.385313,-85.760376;38.385765,-85.760941;38.387722,-85.761223;38.388676,-85.761482;38.389614,-85.761749;38.390503,-85.761894;38.391022,-85.761982;38.39134,-85.762085;38.391727,-85.762459;38.392982,-85.762657;38.393658,-85.762718;38.393879,-85.762733;38.393929,-85.762749;38.393993,-85.762825;38.394241,-85.76286;38.394377,-85.762901;38.394535,-85.763443;38.396427,-85.763638;38.397113,-85.763657;38.397156,-85.764061;38.39856,-85.764526;38.400482,-85.764725;38.401474,-85.764885;38.402454,-85.764984;38.40321,-85.76506;38.403931,-85.765106;38.404423,-85.765134;38.404811,-85.765175;38.40538,-85.765198;38.407295,-85.765221;38.408291,-85.765221;38.40926,-85.765205;38.409801,-85.765203;38.410033,-85.765182;38.41238,-85.765182;38.412937,-85.76516;38.416973,-85.765144;38.420048,-85.765152;38.421024,-85.765129;38.422001,-85.765121;38.426888,-85.765099;38.427872,-85.765104;38.428095,-85.765106;38.428173,-85.765106;38.42825,-85.765106;38.42886,-85.765091;38.430813,-85.765083;38.432755,-85.765076;38.434685,-85.765087;38.434999,-85.765106;38.435623,-85.765146;38.436234,-85.765162;38.436384,-85.765199;38.436732,-85.765254;38.437111,-85.765438;38.438114,-85.765564;38.438733,-85.765871;38.439807,-85.766391;38.441468,-85.767128;38.443784,-85.76782;38.445937,-85.768804;38.449035,-85.769256;38.450459,-85.770261;38.453624,-85.770619;38.455088,-85.770743;38.455826,-85.770864;38.456737,-85.770882;38.457255,-85.770919;38.458322,-85.770847;38.46039,-85.770793;38.461335,-85.770704;38.462915,-85.770498;38.466999,-85.770382;38.469566,-85.770245;38.471729,-85.770107;38.474511,-85.770109;38.475458,-85.770138;38.475788,-85.770249;38.47702,-85.770254;38.477076,-85.770579;38.478876,-85.770922;38.480634,-85.771066;38.48127,-85.771294;38.482277,-85.771614;38.483791,-85.771797;38.484839,-85.771894;38.485526,-85.771964;38.486249,-85.772;38.486839,-85.771996;38.487605,-85.771985;38.488275,-85.771866;38.489454,-85.771795;38.490409,-85.771759;38.490897,-85.771636;38.492323,-85.771597;38.493276,-85.771443;38.494748,-85.771345;38.496065,-85.771094;38.498912,-85.770998;38.500269,-85.770996;38.501782,-85.770995;38.502588,-85.771033;38.503529,-85.771103;38.504083,-85.771286;38.505509,-85.771371;38.506166,-85.771622;38.507975,-85.77186;38.509968,-85.771909;38.510382,-85.772274;38.513026,-85.772451;38.514384,-85.772588;38.515431,-85.772978;38.518211,-85.773057;38.518804,-85.773349;38.521006,-85.773714;38.52365,-85.77406;38.526322,-85.774272;38.527791,-85.774443;38.528624,-85.774468;38.528752,-85.774532;38.529083,-85.774657;38.529638,-85.774804;38.530226,-85.774948;38.530712,-85.775299;38.531838,-85.775588;38.532715,-85.775685;38.53305,-85.775865;38.533572,-85.776291;38.534928,-85.776499;38.535524,-85.776862;38.53671,-85.776913;38.536879,-85.777132;38.537613,-85.777153;38.5377,-85.777353;38.538534,-85.777775;38.540154,-85.777822;38.540383,-85.777915;38.540843,-85.778085;38.541598,-85.7785;38.544007,-85.778543;38.544257,-85.778603;38.544707,-85.778664;38.54538,-85.778744;38.546025,-85.778762;38.54621,-85.778796;38.546568,-85.778881;38.547625,-85.778905;38.548017,-85.778973;38.549388,-85.778989;38.550272,-85.779001;38.550976,-85.778991;38.552605,-85.779005;38.553584,-85.779003;38.554807,-85.778982;38.557449,-85.77899;38.558972,-85.778996;38.560229,-85.778983;38.561341,-85.77899;38.562745,-85.778989;38.563713,-85.778989;38.563848,-85.778972;38.564879,-85.778981;38.565771,-85.778983;38.566186,-85.778985;38.566551,-85.778989;38.567489,-85.778995;38.568884,-85.778969;38.569724,-85.778971;38.570138,-85.778988;38.572541,-85.778982;38.575028,-85.77899;38.576356,-85.778988;38.577541,-85.778998;38.578781,-85.779004;38.581896,-85.779005;38.582306,-85.779015;38.584222,-85.778993;38.585059,-85.778981;38.585526,-85.778986;38.586667,-85.778981;38.587664,-85.77899;38.58902,-85.778991;38.589223,-85.779001;38.589897,-85.779011;38.590573,-85.779009;38.590706,-85.778995;38.591488,-85.778985;38.592454,-85.779003;38.593155,-85.779003;38.593509,-85.779099;38.594695,-85.779233;38.595389,-85.779295;38.595671,-85.779334;38.595905,-85.779407;38.596209,-85.779476;38.596453,-85.779591;38.596821,-85.779781;38.597469,-85.78003;38.59821,-85.780382;38.599318,-85.780815;38.600624,-85.781086;38.601501,-85.781173;38.60175,-85.781259;38.602061,-85.78131;38.602304,-85.781446;38.602858,-85.78153;38.603269,-85.781566;38.603652,-85.781625;38.604153,-85.78163;38.604563,-85.781631;38.604589,-85.781644;38.604817,-85.781646;38.605068\\\\nPOLYLINE,-86.695209;40.28352,-86.695364;40.283588,-86.695784;40.283774,-86.69583;40.283794,-86.695986;40.283863,-86.697173;40.28439,-86.697729;40.284646,-86.698599;40.285065,-86.699437;40.285492,-86.700035;40.285811,-86.700793;40.286235,-86.701397;40.286586,-86.701542;40.286671,-86.70216;40.287049,-86.702429;40.287218,-86.703012;40.287594,-86.703737;40.288082,-86.704306;40.288482,-86.704845;40.288875,-86.705506;40.289376,-86.70686;40.290438,-86.715901;40.297542,-86.720668;40.301289,-86.722957;40.303087,-86.729459;40.308196,-86.729829;40.308476,-86.730101;40.308683,-86.730631;40.309066,-86.731209;40.309465,-86.731639;40.309748,-86.732216;40.31011,-86.732231;40.310119,-86.732389;40.310213,-86.732766;40.31044,-86.732864;40.310496,-86.732982;40.310564,-86.733024;40.310588,-86.733205;40.310692,-86.733344;40.310772,-86.733755;40.310995,-86.733939;40.311095,-86.734297;40.31129,-86.734717;40.311516,-86.737056;40.312775,-86.737185;40.312845,-86.737836;40.313196,-86.73937;40.314023,-86.741249;40.315036,-86.743974;40.316503,-86.744819;40.316958,-86.745336;40.317239,-86.745508;40.317332,-86.745795;40.317488,-86.745836;40.31751,-86.746204;40.317718,-86.746434;40.317858,-86.746752;40.318076,-86.747053;40.318298,-86.747337;40.318538,-86.747403;40.318598,-86.747617;40.318794,-86.74788;40.319065,-86.748082;40.319301,-86.748296;40.319577,-86.748777;40.320256,-86.751487;40.324095,-86.752775;40.325919,-86.752808;40.325962,-86.75284;40.326003,-86.752848;40.326021,-86.755131;40.32925,-86.758141;40.333506,-86.762104;40.339114,-86.763114;40.340543,-86.764257;40.342177,-86.764416;40.342411,-86.765366;40.343805,-86.7656;40.344156,-86.76911;40.349419,-86.770281;40.351174,-86.770938;40.35216,-86.771953;40.353681,-86.772112;40.353919,-86.774348;40.35727,-86.775724;40.359331,-86.776972;40.361201,-86.778645;40.363708,-86.779847;40.365511,-86.781504;40.367996,-86.781762;40.368411,-86.782066;40.368941,-86.782298;40.369383,-86.782511;40.36983,-86.782711;40.370288,-86.782888;40.370754,-86.783022;40.371156,-86.783084;40.37134,-86.783277;40.371994,-86.783371;40.372361,-86.783448;40.372731,-86.783594;40.373246,-86.78364;40.373411,-86.783646;40.373429,-86.78378;40.373907,-86.783791;40.373944,-86.783828;40.374073,-86.783872;40.37423,-86.783925;40.374421,-86.784098;40.375047,-86.784181;40.375405,-86.784198;40.375473,-86.784286;40.375825,-86.784293;40.375853,-86.784314;40.375938,-86.784321;40.375967,-86.784509;40.376458,-86.784605;40.376812,-86.784665;40.37703,-86.785075;40.378511,-86.785161;40.37881,-86.785297;40.379292,-86.785321;40.379392,-86.785415;40.379777,-86.785516;40.380264,-86.785573;40.38045,-86.785679;40.380792,-86.785743;40.381011,-86.785799;40.381199,-86.785892;40.381516,-86.786034;40.381994,-86.786196;40.382474,-86.786368;40.382927,-86.786449;40.383112,-86.786705;40.383662,-86.786889;40.384025,-86.787251;40.384681,-86.787562;40.385192,-86.788227;40.386152,-86.788458;40.386456,-86.789023;40.387164,-86.789274;40.387469,-86.789319;40.387517,-86.789331;40.387538,-86.789723;40.388048,-86.790098;40.388525,-86.790271;40.388746,-86.795691;40.395643,-86.795798;40.39578,-86.795845;40.39584,-86.795942;40.395964,-86.796563;40.396755,-86.798428;40.399128,-86.79905;40.39992,-86.799063;40.399937,-86.799104;40.399988,-86.799118;40.400006,-86.799384;40.400345,-86.799654;40.400679,-86.79968;40.400711,-86.800037;40.401126,-86.800215;40.401322,-86.800704;40.401833,-86.801434;40.402519,-86.801449;40.402532,-86.801866;40.402895,-86.802104;40.403091,-86.802371;40.40331,-86.80278;40.403612,-86.80323;40.40393,-86.803602;40.404175,-86.804153;40.404538,-86.808297;40.407139,-86.809865;40.408123,-86.810632;40.408605,-86.811948;40.409431,-86.812929;40.410061,-86.812961;40.410082,-86.813208;40.410249,-86.813246;40.410275,-86.813618;40.410539,-86.813675;40.410577,-86.813736;40.410618,-86.814043;40.410848,-86.814152;40.41094,-86.814242;40.410999,-86.814493;40.411211,-86.814588;40.411287,-86.815087;40.411714,-86.815383;40.411985,-86.815564;40.41217,-86.815658;40.412257,-86.816089;40.412708,-86.816426;40.413068,-86.816568;40.413241,-86.8167;40.413394,-86.81671;40.413405,-86.817091;40.413815,-86.817254;40.41398,-86.817315;40.414048,-86.817412;40.414148,-86.817432;40.41417,-86.817495;40.414235,-86.817517;40.414258,-86.817681;40.414425,-86.817706;40.414452,-86.818451;40.41525,-86.818816;40.415655,-86.81891;40.415748,-86.819342;40.416219,-86.819418;40.416311,-86.819509;40.416397,-86.819861;40.416776,-86.820301;40.417256,-86.820393;40.417351,-86.82054;40.417512,-86.820612;40.417591,-86.820658;40.417642,-86.820916;40.417928,-86.821277;40.418318,-86.821737;40.418801,-86.821832;40.418905,-86.822135;40.419237,-86.822253;40.419366,-86.822607;40.419755,-86.822726;40.419885,-86.822992;40.420176,-86.823484;40.420716,-86.823748;40.421005,-86.82379;40.421051,-86.824057;40.421343,-86.824189;40.421476,-86.825294;40.42265,-86.826262;40.423679,-86.827387;40.424902,-86.827747;40.425304,-86.828206;40.425841,-86.828652;40.426384,-86.828884;40.426685,-86.828962;40.426786,-86.829441;40.42742,-86.829874;40.428015,-86.829953;40.428134,-86.830063;40.428298,-86.830562;40.429063,-86.830593;40.429113,-86.831182;40.430063,-86.831709;40.430932,-86.832431;40.432104,-86.832478;40.432181,-86.833035;40.433107,-86.833093;40.433204,-86.833174;40.433332,-86.833271;40.433485,-86.833591;40.434009,-86.83373;40.434236,-86.833799;40.43435,-86.833908;40.434516,-86.834039;40.434731,-86.834951;40.436227,-86.835255;40.436726,-86.83539;40.436947,-86.835796;40.437613,-86.835932;40.437835,-86.836238;40.438337,-86.83631;40.438456,-86.836445;40.438664,-86.836537;40.438805,-86.836583;40.438874,-86.836755;40.439113,-86.836961;40.439389,-86.837124;40.439596,-86.837159;40.439639,-86.837355;40.43987,-86.83744;40.439966,-86.837548;40.440086,-86.837885;40.440433,-86.838073;40.440617,-86.838259;40.440789,-86.838665;40.44114,-86.838867;40.441306,-86.839151;40.441541,-86.839747;40.442038,-86.83979;40.442074,-86.839873;40.442143,-86.839923;40.442182,-86.839968;40.442218,-86.840363;40.44253,-86.840739;40.442834,-86.840979;40.443031,-86.842204;40.444035,-86.842596;40.444373,-86.8429;40.444663,-86.843202;40.444981,-86.843457;40.44528,-86.843661;40.445543,-86.843779;40.445712,-86.843892;40.445874,-86.844071;40.446161,-86.844279;40.446539,-86.844422;40.446838,-86.84446;40.446919,-86.844607;40.44729,-86.844798;40.447855,-86.844807;40.447881,-86.845399;40.449721,-86.845471;40.449991,-86.845561;40.450285,-86.845731;40.450805,-86.845763;40.450899,-86.845784;40.45096,-86.845788;40.45097,-86.84588;40.451212,-86.846131;40.451989,-86.846172;40.452119,-86.846253;40.452368,-86.846298;40.452509,-86.846341;40.452639,-86.846558;40.453311,-86.84721;40.455327,-86.847398;40.455907,-86.847428;40.456,-86.847876;40.457383,-86.848709;40.459967,-86.848775;40.46024,-86.848888;40.460582,-86.848901;40.460632,-86.849101;40.461222,-86.849192;40.461507,-86.849277;40.461773,-86.849328;40.461916,-86.849401;40.462122,-86.849736;40.463146,-86.849871;40.463557,-86.85;40.463952,-86.850333;40.464983,-86.850757;40.466295,-86.851714;40.469266,-86.852174;40.470694,-86.852204;40.470788,-86.852295;40.471072,-86.852326;40.471167,-86.852359;40.471268,-86.852366;40.47129,-86.852372;40.471309,-86.852462;40.471586,-86.852511;40.471738,-86.852558;40.471882,-86.853547;40.474927,-86.853885;40.475967,-86.854259;40.477125,-86.854635;40.478247,-86.855013;40.479327,-86.855883;40.481693,-86.85653;40.483335,-86.85679;40.483967,-86.857522;40.485745,-86.857998;40.486934,-86.858365;40.487852,-86.859253;40.490067,-86.859324;40.490264,-86.859462;40.490608,-86.859578;40.490896,-86.859654;40.491053,-86.859895;40.491497,-86.859935;40.491565,-86.860056;40.491769,-86.860097;40.491838,-86.860113;40.491865,-86.860165;40.491944,-86.860329;40.492192,-86.860378;40.492258,-86.860453;40.492361,-86.860558;40.492504,-86.860639;40.492605,-86.860836;40.49285,-86.861109;40.493157,-86.861246;40.493297,-86.861367;40.493421,-86.861464;40.493514,-86.861624;40.493666,-86.861724;40.493755,-86.861883;40.493896,-86.862155;40.494119,-86.862418;40.494321,-86.863075;40.494786,-86.863648;40.49515,-86.864082;40.495449,-86.864231;40.495531,-86.867798;40.49679,-86.86792;40.496816,-86.868038;40.496853,-86.868187;40.4969,-86.868214;40.496908,-86.868295;40.496934,-86.868323;40.496943,-86.868465;40.496987,-86.868511;40.497001,-86.868911;40.497124,-86.869002;40.497153,-86.870418;40.497612,-86.870668;40.497692,-86.871255;40.497882,-86.871911;40.498094,-86.872619;40.498323,-86.873883;40.498719,-86.874178;40.498812,-86.87454;40.498929,-86.876156;40.499452,-86.877472;40.499878,-86.878193;40.500119,-86.881;40.501033,-86.881849;40.50131,-86.882217;40.501437,-86.882245;40.501449,-86.882601;40.501598,-86.882818;40.501689,-86.883138;40.501837,-86.883175;40.501855,-86.883446;40.50199,-86.883844;40.502207,-86.884124;40.502374,-86.884475;40.502599,-86.884793;40.502825,-86.884806;40.502834,-86.885108;40.503071,-86.885282;40.503222,-86.88543;40.503351,-86.885458;40.503375,-86.885728;40.503619,-86.885862;40.503754,-86.885955;40.503848,-86.885999;40.503897,-86.886102;40.504012,-86.886184;40.504103,-86.886404;40.504369,-86.886497;40.504491,-86.886675;40.504725,-86.888389;40.507062,-86.889091;40.508024,-86.893206;40.513659,-86.895405;40.516689,-86.896838;40.518652,-86.897456;40.519498,-86.899423;40.522193,-86.899844;40.52277,-86.900358;40.523457,-86.900872;40.524161,-86.90147;40.52498,-86.902068;40.525781,-86.902498;40.526337,-86.903124;40.527131,-86.905394;40.529933,-86.906383;40.531154,-86.906938;40.531829,-86.906973;40.531872,-86.907293;40.532276,-86.908398;40.533637,-86.909244;40.534682,-86.910619;40.536379,-86.91145;40.537399,-86.911904;40.537932,-86.912328;40.538387,-86.912775;40.538836,-86.912904;40.538953,-86.913611;40.539596,-86.914287;40.540148,-86.914674;40.54046,-86.916734;40.542121,-86.922914;40.547104,-86.923734;40.547765,-86.924921;40.548722,-86.924974;40.548765,-86.9253;40.549028,-86.925851;40.549484,-86.926082;40.549675,-86.926836;40.550347,-86.927372;40.550858,-86.927544;40.551032,-86.927723;40.551212,-86.928067;40.551571,-86.928397;40.55193,-86.928718;40.552293,-86.929091;40.552731,-86.929448;40.55317,-86.931226;40.555393,-86.934086;40.558968,-86.936003;40.561364,-86.936206;40.561663\\\\nPOLYLINE,-86.936621;40.561662,-86.936365;40.561369,-86.934373;40.558878,-86.931351;40.555099,-86.931108;40.554794,-86.929371;40.552628,-86.929001;40.552188,-86.928466;40.551593,-86.928051;40.551152,-86.927632;40.550732,-86.927525;40.550624,-86.926981;40.550111,-86.926416;40.549608,-86.925924;40.549193,-86.92574;40.549038,-86.924973;40.54842,-86.924932;40.548387,-86.923891;40.547548,-86.917917;40.542735,-86.915089;40.540455,-86.914441;40.539933,-86.913332;40.538988,-86.912953;40.538632,-86.912683;40.538363,-86.912363;40.538026,-86.912011;40.537633,-86.911559;40.537095,-86.910089;40.535279,-86.909295;40.534298,-86.908291;40.53306,-86.907277;40.53181,-86.905928;40.530146,-86.905771;40.529957,-86.903485;40.52713,-86.902879;40.526369,-86.902208;40.525501,-86.901537;40.524594,-86.900924;40.523752,-86.900676;40.523419,-86.900431;40.523065,-86.8998;40.522201,-86.897369;40.518872,-86.896927;40.518258,-86.895627;40.51648,-86.887125;40.504825,-86.88676;40.504331,-86.886571;40.504099,-86.886395;40.503899,-86.886347;40.503844,-86.8862;40.503685,-86.885895;40.503377,-86.885594;40.503103,-86.885267;40.502833,-86.884914;40.502568,-86.884546;40.502316,-86.884267;40.502141,-86.883974;40.501968,-86.883684;40.50181,-86.883237;40.501586,-86.882936;40.501448,-86.882921;40.501442,-86.882566;40.501294,-86.882405;40.501234,-86.882135;40.501133,-86.880339;40.500546,-86.877473;40.499608,-86.876759;40.499384,-86.876257;40.499211,-86.875883;40.499094,-86.873847;40.498411,-86.873446;40.498268,-86.873179;40.498204,-86.872628;40.498053,-86.871424;40.497658,-86.871082;40.497545,-86.870542;40.497366,-86.869878;40.497152,-86.869266;40.49695,-86.86859;40.496738,-86.868512;40.496713,-86.86846;40.496696,-86.86832;40.49665,-86.867893;40.496533,-86.867031;40.496236,-86.86635;40.496017,-86.865692;40.495749,-86.865157;40.495603,-86.864609;40.495311,-86.864397;40.495224,-86.864354;40.495177,-86.863963;40.494949,-86.863502;40.494727,-86.863027;40.49441,-86.86265;40.494167,-86.8621;40.49369,-86.861846;40.493473,-86.861566;40.49323,-86.861286;40.492938,-86.861067;40.492694,-86.860734;40.492254,-86.860613;40.492091,-86.860361;40.491705,-86.860345;40.491678,-86.860146;40.491336,-86.860115;40.491274,-86.859952;40.490945,-86.859733;40.490432,-86.859377;40.489558,-86.859201;40.48914,-86.85825;40.486765,-86.856171;40.48157,-86.855768;40.480523,-86.855363;40.479427,-86.854908;40.478122,-86.854633;40.477301,-86.854306;40.476271,-86.854107;40.475699,-86.853403;40.473517,-86.852863;40.471834,-86.852675;40.47125,-86.852668;40.471227,-86.852621;40.471082,-86.852486;40.470667,-86.851292;40.466994,-86.850624;40.464927,-86.850442;40.464359,-86.850145;40.463441,-86.849648;40.461905,-86.847689;40.455842,-86.847656;40.455741,-86.847601;40.455569,-86.847401;40.454949,-86.846944;40.453533,-86.846694;40.452758,-86.846479;40.452089,-86.846408;40.451868,-86.846252;40.451383,-86.846178;40.451088,-86.845613;40.449353,-86.845484;40.449017,-86.845256;40.448301,-86.84489;40.447192,-86.84478;40.44691,-86.844746;40.446836,-86.844622;40.446564,-86.844443;40.446227,-86.844286;40.445961,-86.84404;40.445584,-86.8438;40.445259,-86.843597;40.44501,-86.843299;40.444682,-86.84302;40.4444,-86.842807;40.444202,-86.84232;40.443793,-86.84131;40.442964,-86.840921;40.442643,-86.84021;40.442063,-86.83992;40.441826,-86.839097;40.441154,-86.838672;40.440799,-86.838428;40.44058,-86.838165;40.440328,-86.837934;40.440094,-86.837651;40.439788,-86.837501;40.439612,-86.837424;40.439523,-86.837241;40.439296,-86.837037;40.439027,-86.836875;40.438797,-86.836686;40.438505,-86.83658;40.438339,-86.836512;40.438234,-86.836214;40.437744,-86.835781;40.437034,-86.835533;40.436627,-86.83423;40.434488,-86.833999;40.43409,-86.833753;40.433691,-86.833422;40.433155,-86.833321;40.432988,-86.832777;40.43209,-86.832289;40.431304,-86.832054;40.430912,-86.831839;40.430568,-86.831461;40.42993,-86.831059;40.429295,-86.830861;40.428986,-86.83073;40.428761,-86.830429;40.428302,-86.830307;40.428122,-86.829622;40.427166,-86.829043;40.426411,-86.828975;40.426323,-86.828843;40.426172,-86.828327;40.425556,-86.827796;40.424948,-86.827251;40.424347,-86.825271;40.422208,-86.824378;40.421227,-86.824099;40.420921,-86.824001;40.42085,-86.823902;40.420716,-86.823143;40.419913,-86.82299;40.419775,-86.821041;40.417646,-86.820992;40.417593,-86.820916;40.417511,-86.81896;40.415384,-86.818313;40.41468,-86.817716;40.414031,-86.817192;40.413469,-86.817125;40.413389,-86.816535;40.412758,-86.816259;40.412468,-86.815934;40.41214,-86.81582;40.412031,-86.815747;40.411967,-86.815551;40.411779,-86.815031;40.41132,-86.814717;40.411053,-86.81462;40.410978,-86.814557;40.410919,-86.814295;40.410722,-86.814195;40.410637,-86.814118;40.410579,-86.813736;40.410289,-86.812987;40.409768,-86.811365;40.408744,-86.809861;40.407801,-86.805225;40.404901,-86.80462;40.404526,-86.804042;40.404154,-86.803155;40.403543,-86.802552;40.403087,-86.80253;40.40307,-86.802344;40.402924,-86.801839;40.402501,-86.801428;40.402131,-86.800982;40.401701,-86.800658;40.401371,-86.800427;40.40112,-86.800009;40.400641,-86.799589;40.40012,-86.799086;40.39948,-86.79623;40.395845,-86.796175;40.395775,-86.796064;40.395634,-86.790477;40.388523,-86.790279;40.388272,-86.790056;40.387988,-86.78992;40.387814,-86.789053;40.386738,-86.788231;40.385626,-86.787651;40.384741,-86.787491;40.384477,-86.787338;40.384211,-86.787193;40.383943,-86.787055;40.383672,-86.786924;40.3834,-86.786801;40.383125,-86.786685;40.382848,-86.786577;40.38257,-86.786476;40.38229,-86.786383;40.382007,-86.786247;40.381522,-86.786163;40.381199,-86.786102;40.380965,-86.785849;40.379913,-86.785727;40.37949,-86.785618;40.379241,-86.78552;40.378981,-86.785437;40.378718,-86.784986;40.37706,-86.784833;40.376523,-86.784822;40.376464,-86.784787;40.376322,-86.784611;40.375623,-86.784224;40.374234,-86.784177;40.374064,-86.784141;40.373932,-86.783953;40.37325,-86.78383;40.372803,-86.783512;40.371727,-86.783369;40.371244,-86.783206;40.370764,-86.783029;40.370296,-86.782853;40.369879,-86.782651;40.369442,-86.782414;40.368977,-86.782181;40.368557,-86.781933;40.368142,-86.781585;40.367603,-86.779168;40.363983,-86.778982;40.363708,-86.776299;40.359679,-86.773169;40.35499,-86.772001;40.353239,-86.770614;40.35116,-86.768492;40.347977,-86.767595;40.346628,-86.767249;40.346108,-86.765422;40.343381,-86.764746;40.34239,-86.753024;40.325\\\"+\\\"777,-86.752316;40.324774,-86.750187;40.321763,-86.748761;40.319746,-86.748477;40.31935,-86.748264;40.319084,-86.748012;40.318808,-86.747797;40.318594,-86.747544;40.31836,-86.747335;40.318186,-86.747002;40.317932,-86.746707;40.317731,-86.746374;40.317524,-86.746088;40.317364,-86.745968;40.317299,-86.745751;40.317182,-86.745489;40.31704,-86.745087;40.316823,-86.742818;40.315599,-86.738052;40.31303,-86.73804;40.313024,-86.736454;40.312166,-86.733981;40.310833,-86.733871;40.310774,-86.733132;40.31036,-86.733023;40.310295,-86.73299;40.310276,-86.732612;40.310052,-86.731979;40.309653,-86.731207;40.309149,-86.730609;40.308729,-86.730086;40.308344,-86.729272;40.307714,-86.724304;40.303811,-86.721074;40.301276,-86.719374;40.299938,-86.714894;40.296418,-86.71283;40.294796,-86.708044;40.291034,-86.705493;40.289031,-86.704838;40.28854,-86.70421;40.28809,-86.70358;40.287659,-86.702927;40.287227,-86.702664;40.287058,-86.699506;40.285213,-86.696848;40.283977,-86.695208;40.283278\\\\nPOLYLINE,-85.781355;38.605076,-85.781345;38.605538,-85.781344;38.606559,-85.781322;38.610144,-85.781309;38.611663,-85.781305;38.612445,-85.781303;38.613187,-85.781353;38.614207,-85.781462;38.615215,-85.781618;38.61621,-85.781858;38.617204,-85.782146;38.61818,-85.782477;38.619135,-85.78282;38.620004,-85.782851;38.620081,-85.783217;38.621036,-85.78351;38.622016,-85.783715;38.623014,-85.783844;38.624022,-85.783895;38.625035,-85.783882;38.626064,-85.783864;38.626975,-85.783851;38.627592,-85.783832;38.629119,-85.783758;38.633741,-85.783709;38.636771,-85.783549;38.647462,-85.783538;38.648751,-85.783432;38.655115,-85.78337;38.656138,-85.783265;38.657135,-85.783264;38.657147,-85.78312;38.658155,-85.782933;38.659156,-85.782864;38.659509,-85.782541;38.66115,-85.782375;38.662157,-85.782271;38.663172,-85.782249;38.663596,-85.782218;38.664181,-85.78223;38.665201,-85.782295;38.666217,-85.782379;38.666886,-85.782421;38.667225,-85.782602;38.668225,-85.782841;38.669218,-85.783138;38.670198,-85.783406;38.670943,-85.783482;38.671153,-85.783873;38.672088,-85.784323;38.673013,-85.784817;38.673921,-85.784933;38.674122,-85.785154;38.674502,-85.785335;38.674815,-85.785399;38.674931,-85.785834;38.675717,-85.786076;38.676222,-85.786276;38.67664,-85.786659;38.677589,-85.786849;38.678156,-85.78698;38.678548,-85.787245;38.679541,-85.787438;38.680545,-85.787501;38.681056,-85.787599;38.682164,-85.787643;38.682567,-85.787696;38.683362,-85.787736;38.683804,-85.78786;38.685476,-85.787864;38.685509,-85.787931;38.686177,-85.788046;38.687179,-85.788142;38.688306,-85.788176;38.688655,-85.788275;38.689651,-85.78836;38.690668,-85.788427;38.691173,-85.788466;38.691608,-85.788565;38.692694,-85.788592;38.692939,-85.78862;38.693202,-85.788684;38.693706,-85.788759;38.694209,-85.788845;38.694708,-85.788939;38.695206,-85.789044;38.695705,-85.789155;38.696193,-85.789283;38.696687,-85.789292;38.696718,-85.7894;38.697108,-85.789566;38.697673,-85.789883;38.698639,-85.790058;38.699121,-85.79043;38.700082,-85.790625;38.700539,-85.790837;38.701004,-85.791052;38.701462,-85.791281;38.70192,-85.791515;38.702372,-85.791757;38.702822,-85.792268;38.703714,-85.792541;38.704178,-85.793043;38.705032,-85.793577;38.705918,-85.794209;38.706988,-85.794344;38.707209,-85.796321;38.710522,-85.79686;38.711399,-85.797418;38.712261,-85.798016;38.713119,-85.798642;38.713963,-85.799291;38.714795,-85.799954;38.715603,-85.800618;38.716375,-85.801262;38.717149,-85.801957;38.717965,-85.805405;38.722012,-85.808768;38.725949,-85.809598;38.72692,-85.809931;38.727334,-85.810255;38.727752,-85.810414;38.727965,-85.810573;38.728178,-85.811191;38.729033,-85.811777;38.729912,-85.812016;38.730301,-85.812317;38.730791,-85.813582;38.732884,-85.814862;38.735,-85.815419;38.735922,-85.815543;38.736127,-85.815797;38.736579,-85.816525;38.737788,-85.816661;38.73799,-85.81687;38.738356,-85.816965;38.738473,-85.817498;38.739358,-85.817981;38.740147,-85.818355;38.74076,-85.818374;38.740794,-85.819386;38.742465,-85.819609;38.742869,-85.82005;38.743603,-85.820188;38.743834,-85.820708;38.744699,-85.821217;38.745601,-85.821475;38.746041,-85.821493;38.746077,-85.821937;38.746956,-85.823046;38.749253,-85.824393;38.752017,-85.825056;38.753396,-85.825252;38.753798,-85.827069;38.757555,-85.828394;38.760321,-85.829741;38.763099,-85.830007;38.763652\\\\nPOLYLINE,-85.830152;38.763233,-85.829881;38.76268,-85.828553;38.759923,-85.82654;38.755782,-85.823874;38.750259,-85.821862;38.746122,-85.82087;38.744306,-85.820587;38.743819,-85.820346;38.743417,-85.82018;38.743127,-85.819787;38.742542,-85.819517;38.742097,-85.819237;38.741578,-85.818993;38.741197,-85.818725;38.740749,-85.818705;38.740716,-85.818523;38.740402,-85.818447;38.74028,-85.818183;38.73988,-85.817256;38.738349,-85.817214;38.738257,-85.815798;38.735898,-85.815775;38.73586,-85.815486;38.735436,-85.815223;38.735003,-85.814139;38.733216,-85.813563;38.732258,-85.813336;38.731879,-85.81266;38.730762,-85.812535;38.730556,-85.811977;38.729666,-85.811691;38.729228,-85.811392;38.728798,-85.810777;38.727945,-85.810688;38.72783,-85.810126;38.727106,-85.809443;38.726282,-85.809175;38.725968,-85.804212;38.720147,-85.803172;38.718921,-85.802356;38.717969,-85.802119;38.717692,-85.800039;38.715241,-85.799034;38.71399,-85.798402;38.713137,-85.797799;38.712278,-85.797215;38.711401,-85.796665;38.710518,-85.795604;38.708738,-85.794662;38.707146,-85.794451;38.706793,-85.792887;38.704168,-85.792692;38.703841,-85.792178;38.702958,-85.791683;38.702049,-85.79123;38.701133,-85.790811;38.7002,-85.790429;38.699253,-85.790078;38.698293,-85.78978;38.697324,-85.789698;38.697029,-85.789609;38.696705,-85.789506;38.696332,-85.789277;38.69534,-85.789088;38.694331,-85.788943;38.693322,-85.788903;38.692939,-85.788838;38.692314,-85.788699;38.690785,-85.788659;38.69028,-85.788635;38.689763,-85.788545;38.688748,-85.788512;38.688307,-85.788475;38.68808,-85.788436;38.687733,-85.788304;38.686217,-85.788297;38.686075,-85.788296;38.68594,-85.788258;38.685471,-85.788255;38.685441,-85.788208;38.68489,-85.788163;38.684579,-85.788072;38.683658,-85.788027;38.683157,-85.788001;38.682566,-85.787915;38.681626,-85.787858;38.681121,-85.78779;38.680618,-85.787697;38.680116,-85.787455;38.679132,-85.787319;38.678641,-85.78716;38.678157,-85.787001;38.67767,-85.786621;38.676724,-85.786386;38.676218,-85.786194;38.675804,-85.785711;38.674902,-85.785456;38.674464,-85.785188;38.674003,-85.78468;38.673097,-85.784225;38.672183,-85.783816;38.671242,-85.783702;38.670939,-85.783634;38.670767,-85.783463;38.670281,-85.783303;38.669793,-85.783026;38.668813,-85.782817;38.667833,-85.782652;38.666826,-85.782553;38.665811,-85.782512;38.664791,-85.782523;38.663761,-85.782597;38.662736,-85.782726;38.661734,-85.782916;38.660732,-85.783115;38.659738,-85.783323;38.658637,-85.783469;38.657731,-85.7836;38.656718,-85.783682;38.655691,-85.783726;38.654673,-85.783746;38.653648,-85.78381;38.648751,-85.783927;38.640376,-85.783954;38.63885,-85.783973;38.637329,-85.784021;38.634284,-85.78403;38.633513,-85.784039;38.632749,-85.784069;38.631218,-85.784087;38.629681,-85.784129;38.62698,-85.784134;38.626629,-85.784149;38.625099,-85.784114;38.624081,-85.783992;38.623079,-85.78379;38.622078,-85.783507;38.621099,-85.783157;38.620143,-85.783069;38.619917,-85.782785;38.619191,-85.782428;38.618224,-85.782135;38.617247,-85.781903;38.616252,-85.781735;38.615247,-85.781623;38.614229,-85.781576;38.613207,-85.781575;38.612428,-85.781577;38.61218,-85.781627;38.607589,-85.781646;38.605068\\\\nPOLYLINE,-85.905231;39.040358,-85.904522;39.039749,-85.904316;39.039569,-85.903822;39.039136,-85.902874;39.038337,-85.901183;39.036878,-85.898891;39.034908,-85.89735;39.033584,-85.895001;39.031565,-85.894793;39.031391,-85.894065;39.030783,-85.892367;39.029312,-85.891412;39.028508,-85.891347;39.028449,-85.89072;39.027881,-85.890011;39.027271,-85.889961;39.027228,-85.88959;39.026898,-85.889165;39.026519,-85.889031;39.026406,-85.888135;39.025643,-85.887746;39.025327,-85.887178;39.024868,-85.887066;39.02477,-85.886236;39.02404,-85.885243;39.023187,-85.88438;39.022425,-85.88357;39.021697,-85.882728;39.020995,-85.881908;39.020283,-85.881024;39.019552,-85.880195;39.018814,-85.878616;39.017439,-85.878361;39.017216,-85.877197;39.016239,-85.876034;39.015222,-85.874975;39.014317,-85.872772;39.012403,-85.872572;39.012228,-85.872361;39.012043,-85.870829;39.010706,-85.868794;39.008964,-85.868066;39.008419,-85.866966;39.007511,-85.865729;39.006476,-85.86452;39.005562,-85.863869;39.005115,-85.863177;39.004647,-85.862193;39.004042,-85.86195;39.003893,-85.861664;39.00371,-85.861253;39.003448,-85.860237;39.002823,-85.859205;39.002198,-85.85823;39.001578,-85.856999;39.000782,-85.855983;39.000165,-85.855793;39.00002,-85.853626;38.998676,-85.85355;38.998628,-85.853137;38.998369,-85.852867;38.998199,-85.851472;38.997322,-85.850549;38.996721,-85.84926;38.995926,-85.84782;38.994999,-85.847284;38.994606,-85.846965;38.994344,-85.846454;38.993867,-85.845957;38.993354,-85.8454;38.992692,-85.845022;38.992213,-85.844739;38.991773,-85.844252;38.990905,-85.843977;38.990252,-85.843783;38.989668,-85.843598;38.989055,-85.843491;38.98851,-85.843416;38.987775,-85.843378;38.986032,-85.843368;38.984874,-85.84336;38.983982,-85.843358;38.98382,-85.843356;38.983632,-85.843341;38.982221,-85.843319;38.980717,-85.843316;38.980613,-85.843311;38.980411,-85.84335;38.980259,-85.843347;38.980012,-85.843309;38.97908,-85.843323;38.977951,-85.843299;38.976635,-85.843297;38.975814,-85.843294;38.974787,-85.843289;38.972983,-85.843285;38.971603,-85.843279;38.969174,-85.843279;38.968895,-85.843276;38.967879,-85.843305;38.966352,-85.843295;38.964985,-85.843291;38.964389,-85.843303;38.962607,-85.843308;38.96183,-85.843312;38.961311,-85.843319;38.961109,-85.843315;38.960661,-85.843313;38.9604,-85.843299;38.958857,-85.843294;38.958279,-85.843294;38.958106,-85.843304;38.957555,-85.84331;38.957245,-85.84331;38.957235,-85.843329;38.956183,-85.843328;38.954803,-85.843328;38.954697,-85.843327;38.954643,-85.843283;38.951399,-85.843132;38.946806,-85.842959;38.941514,-85.842869;38.940391,-85.842832;38.940112,-85.842777;38.939692,-85.842613;38.938568,-85.842399;38.937495,-85.842266;38.936916,-85.841999;38.935891,-85.841794;38.935212,-85.841551;38.93456,-85.841081;38.93324,-85.84087;38.932713,-85.837446;38.924144,-85.836644;38.922185,-85.83653;38.921907,-85.836438;38.921677,-85.836159;38.920978,-85.835723;38.919839,-85.835387;38.919004,-85.834916;38.917833,-85.834343;38.916562,-85.834104;38.916137,-85.83364;38.915385,-85.833348;38.914957,-85.832744;38.914177,-85.832475;38.913849,-85.832418;38.91378,-85.832025;38.913327,-85.831012;38.91236,-85.830147;38.911484,-85.82973;38.911067,-85.828098;38.909437,-85.827156;38.908527,-85.826893;38.908264,-85.82572;38.907091,-85.825042;38.906457,-85.824665;38.906071,-85.824112;38.905505,-85.823268;38.904661,-85.822633;38.904071,-85.822538;38.903982,-85.822125;38.903565,-85.820938;38.902411,-85.820856;38.902331,-85.8207;38.902174,-85.820443;38.901915,-85.819606;38.901072,-85.816038;38.897549,-85.814687;38.896244,-85.814025;38.89556,-85.813805;38.895345,-85.81341;38.894992,-85.812814;38.894277,-85.812511;38.893846,-85.812057;38.893221,-85.811485;38.892258,-85.811104;38.891445,-85.810681;38.890204,-85.810479;38.889475,-85.810455;38.889325,-85.81041;38.889036,-85.810377;38.888759,-85.810302;38.887839,-85.81023;38.883023,-85.810205;38.882174,-85.810146;38.880178,-85.810064;38.875002,-85.809942;38.869255,-85.80994;38.868577,-85.809924;38.867779,-85.809931;38.867157,-85.80987;38.865176,-85.809855;38.864322,-85.809846;38.863853,-85.809807;38.862854,-85.809746;38.859708,-85.809788;38.857768,-85.809839;38.857205,-85.809996;38.855805,-85.810244;38.854449,-85.810266;38.854359,-85.810618;38.852919,-85.810833;38.852161,-85.81107;38.851424,-85.811331;38.850662,-85.811602;38.849995,-85.812225;38.848537,-85.812264;38.848447,-85.812945;38.847038,-85.813221;38.846528,-85.8134;38.84621,-85.813848;38.845432,-85.814186;38.84481,-85.814607;38.844022,-85.814933;38.843423,-85.815057;38.843196,-85.815205;38.842915,-85.815558;38.842247,-85.816048;38.841342,-85.816289;38.84078,-85.81633;38.840684,-85.81661;38.840114,-85.816939;38.839332,-85.817377;38.838267,-85.817608;38.837601,-85.817958;38.836461,-85.818199;38.835596,-85.81835;38.834952,-85.818463;38.834424,-85.818673;38.833145,-85.818761;38.83234,-85.818778;38.832184,-85.818784;38.83206,-85.818861;38.83064,-85.818901;38.829548,-85.818932;38.827475,-85.818966;38.826353,-85.81897;38.824227,-85.819003;38.823378,-85.819006;38.823159,-85.819041;38.820135,-85.819075;38.819405,-85.819107;38.815928,-85.819088;38.81535,-85.819094;38.814787,-85.819077;38.812506,-85.819065;38.812329,-85.819075;38.811127,-85.819046;38.809684,-85.81905;38.809629,-85.819037;38.808569,-85.819022;38.807348,-85.818999;38.806645,-85.818976;38.806522,-85.81897;38.805429,-85.818992;38.80429,-85.818954;38.803021,-85.818967;38.799262,-85.818937;38.798081,-85.818944;38.797073,-85.818924;38.794239,-85.818922;38.79392,-85.818922;38.7936,-85.818922;38.79351,-85.818943;38.792682,-85.819041;38.791809,-85.819089;38.791459,-85.819173;38.791201,-85.81927;38.790849,-85.819477;38.790348,-85.819673;38.789916,-85.819993;38.789323,-85.820158;38.789052,-85.820231;38.788951,-85.820641;38.788387,-85.820954;38.787989,-85.821292;38.787634,-85.821625;38.78731,-85.822353;38.786671,-85.82427;38.784872,-85.824932;38.784305,-85.8254;38.783878,-85.825646;38.783675,-85.826104;38.783297,-85.8265;38.78296,-85.827376;38.782173,-85.827765;38.781803,-85.827993;38.781587,-85.828283;38.78133,-85.828812;38.780808,-85.828972;38.780643,-85.829368;38.780293,-85.829634;38.780059,-85.830136;38.779631,-85.830568;38.779263,-85.83121;38.778668,-85.83153;38.778316,-85.831903;38.777931,-85.832402;38.777294,-85.832872;38.776471,-85.833142;38.77596,-85.833291;38.775626,-85.833406;38.775247,-85.833531;38.774811,-85.8336;38.774421,-85.833722;38.773805,-85.83379;38.773289,-85.833737;38.772266,-85.833684;38.771845,-85.83364;38.77158,-85.833572;38.771376,-85.833386;38.770681,-85.833248;38.770322,-85.833117;38.77002,-85.833012;38.769805,-85.832688;38.769182,-85.832388;38.768512,-85.832306;38.768351,-85.831999;38.767751,-85.831834;38.767392,-85.830828;38.765308,-85.830088;38.763825,-85.830007;38.763652\\\\nPOLYLINE,-86.141672;39.777516,-86.141632;39.777588,-86.141576;39.777687,-86.141522;39.777785,-86.14147;39.777884,-86.141428;39.777969,-86.14135;39.77814,-86.141249;39.778392,-86.141221;39.778472,-86.141194;39.778553,-86.141145;39.778715,-86.14112;39.778801,-86.141096;39.778899,-86.141091;39.778908,-86.141047;39.779084,-86.141022;39.779205,-86.141007;39.779286,-86.140981;39.779448,-86.14097;39.779534,-86.140957;39.779655,-86.14095;39.779736,-86.140941;39.779898,-86.140938;39.779984,-86.140937;39.780065,-86.140942;39.780268,-86.140947;39.780349,-86.14097;39.780663,-86.141009;39.781192,-86.141014;39.781246,-86.141019;39.781305,-86.141026;39.781359,-86.14104;39.78144,-86.141066;39.781548,-86.141082;39.781602,-86.1411;39.781657,-86.14112;39.781711,-86.141131;39.781738,-86.141165;39.781815,-86.141204;39.781892,-86.141232;39.781941,-86.141262;39.781991,-86.141294;39.782041,-86.141328;39.782091,-86.141346;39.782113,-86.141381;39.782163,-86.14148;39.782277,-86.141543;39.782345,-86.141588;39.782385,-86.141634;39.782431,-86.141682;39.782472,-86.141731;39.782508,-86.141782;39.782549,-86.14186;39.782604,-86.141969;39.782677,-86.141998;39.782695,-86.142058;39.782727,-86.142087;39.782741,-86.142148;39.782773,-86.142274;39.782828,-86.14247;39.782897,-86.142709;39.782961,-86.142779;39.782975,-86.142849;39.782985,-86.142921;39.782999,-86.142991;39.783009,-86.143207;39.783024,-86.143424;39.783025,-86.143465;39.78303,-86.143495;39.783021,-86.143568;39.783013,-86.143639;39.783009,-86.143711;39.783,-86.143782;39.782987,-86.143817;39.782983,-86.143887;39.78297,-86.144056;39.782935,-86.144707;39.7828,-86.144763;39.782787,-86.145109;39.782713,-86.145275;39.782683,-86.145359;39.78267,-86.145452;39.782653,-86.145536;39.78264,-86.14563;39.782627,-86.145798;39.782601,-86.145893;39.782588,-86.145977;39.78258,-86.146072;39.782567,-86.146241;39.78255,-86.146337;39.782538,-86.146422;39.782534,-86.146698;39.782509,-86.146783;39.782505,-86.146842;39.78251,-86.146879;39.782506,-86.146938;39.782502,-86.146975;39.782502,-86.147044;39.782498,-86.147071;39.782493,-86.14714;39.782489,-86.147177;39.78249,-86.147353;39.782478,-86.14746;39.782474,-86.147566;39.782466,-86.147598;39.782466,-86.147673;39.782462,-86.147887;39.782463,-86.148004;39.782469,-86.148092;39.782469,-86.148532;39.782481,-86.149419;39.782506,-86.1495;39.782507,-86.150842;39.782553,-86.151555;39.78258,-86.152119;39.782598,-86.15215;39.782598,-86.153134;39.782623,-86.153951;39.782643,-86.155599;39.782682,-86.155756;39.782688,-86.157489;39.782727,-86.157996;39.78274,-86.158026;39.782745,-86.158228;39.782746,-86.159417;39.782755,-86.160004;39.782759,-86.161024;39.782753,-86.16115;39.782751,-86.161208;39.78275,-86.162395;39.78274,-86.163006;39.782731,-86.163303;39.782729,-86.163466;39.78273,-86.163658;39.78274,-86.163754;39.782746,-86.163838;39.782755,-86.163923;39.78276,-86.163945;39.782765,-86.164007;39.782774,-86.164091;39.782784,-86.164341;39.782826,-86.164423;39.782845,-86.164515;39.782868,-86.164601;39.782887,-86.164657;39.782905,-86.164686;39.78291,-86.164804;39.782951,-86.164958;39.783006,-86.165008;39.783025,-86.165057;39.783048,-86.165106;39.783066,-86.165345;39.78318,-86.165391;39.783208,-86.165437;39.783231,-86.165526;39.783285,-86.165655;39.783367,-86.165698;39.783399,-86.165739;39.783427,-86.16578;39.783458,-86.16582;39.783486,-86.165898;39.783549,-86.165974;39.783613,-86.16601;39.783649,-86.166066;39.783699,-86.166105;39.783745,-86.166139;39.783776,-86.166181;39.783822,-86.166214;39.783853,-86.166276;39.783926,-86.166305;39.783962,-86.166334;39.784003,-86.166394;39.784084,-86.166478;39.784207,-86.166505;39.784252,-86.16656;39.784351,-86.16661;39.784451,-86.166631;39.784496,-86.166654;39.78455,-86.166675;39.784609,-86.166692;39.784654,-86.166728;39.784767,-86.166747;39.784839,-86.166782;39.784993,-86.166803;39.785101,-86.16681;39.785155,-86.166816;39.785214,-86.166823;39.785322,-86.166824;39.785381,-86.166818;39.78552,-86.166725;39.786691,-86.166704;39.786952,-86.166688;39.787227,-86.166619;39.788366,-86.166607;39.788568,-86.166559;39.789302,-86.166546;39.789442,-86.166536;39.789537,-86.166524;39.789627,-86.166494;39.789816,-86.166486;39.789861,-86.166448;39.790045,-86.166403;39.790229,-86.166378;39.790319,-86.166338;39.790454,-86.166308;39.790544,-86.166287;39.790611,-86.166262;39.790683,-86.166229;39.790773,-86.166138;39.790993,-86.166099;39.791083,-86.166059;39.791168,-86.166024;39.79124,-86.165995;39.791303,-86.16588;39.791519,-86.165832;39.791604,-86.165782;39.791689,-86.16573;39.791774,-86.165347;39.792429,-86.165164;39.792743,-86.165096;39.792869,-86.165049;39.792963,-86.16502;39.793026,-86.164964;39.793156,-86.164926;39.793251,-86.164915;39.793287,-86.164892;39.793349,-86.164881;39.793381,-86.164851;39.79348,-86.164832;39.793547,-86.164815;39.793615,-86.164793;39.793714,-86.164774;39.793813,-86.164749;39.793979,-86.164737;39.794087,-86.164734;39.79415,-86.164732;39.794173,-86.164739;39.794218,-86.164727;39.794285,-86.164726;39.794384,-86.164727;39.794452,-86.16473;39.79452,-86.164738;39.794623,-86.164747;39.794722,-86.164763;39.794835,-86.164778;39.794921,-86.164789;39.79497,-86.1648;39.795034,-86.164828;39.795146,-86.165125;39.796212,-86.165258;39.796686,-86.165274;39.796744,-86.165294;39.796817,-86.165422;39.797277,-86.165555;39.797751,-86.165743;39.798428,-86.165773;39.798541,-86.165799;39.798645,-86.165821;39.798744,-86.165843;39.798848,-86.165862;39.798947,-86.165896;39.799141,-86.165924;39.799348,-86.165932;39.799421,-86.165945;39.799542,-86.165954;39.799651,-86.16596;39.79975,-86.166015;39.801106,-86.166034;39.801602,-86.166097;39.802801,-86.166129;39.803409,-86.16616;39.804288,-86.166239;39.806523,-86.166285;39.807965,-86.166292;39.808077,-86.166298;39.808149,-86.166302;39.808185,-86.166312;39.808258,-86.166316;39.808294,-86.166321;39.808321,-86.166328;39.808366,-86.166349;39.808474,-86.166373;39.808582,-86.166411;39.808722,-86.166432;39.808795,-86.166456;39.808862,-86.16648;39.808935,-86.166534;39.809075,-86.166595;39.80921,-86.166645;39.809314,-86.166716;39.80945,-86.166794;39.809581,-86.166857;39.809676,-86.1669;39.809744,-86.166991;39.809871,-86.167039;39.809934,-86.167088;39.809993,-86.167186;39.81012,-86.167227;39.810156,-86.167268;39.810202,-86.167332;39.81027,-86.167376;39.81031,-86.16742;39.810356,-86.167557;39.810483,-86.167604;39.810528,-86.167676;39.810587,-86.16775;39.810651,-86.16782;39.810706,-86.167866;39.810737,-86.167912;39.810774,-86.167958;39.810806,-86.168006;39.810842,-86.168102;39.810906,-86.168252;39.811002,-86.168302;39.811033,-86.168406;39.811088,-86.168421;39.811097,-86.168458;39.81112,-86.168672;39.81123,-86.168727;39.811257,-86.168838;39.811303,-86.168894;39.81133,-86.169016;39.811381,-86.169065;39.811399,-86.169081;39.811404,-86.169123;39.811422,-86.16918;39.811441,-86.169239;39.811464,-86.169297;39.811482,-86.169357;39.811505,-86.169476;39.811542,-86.169536;39.811556,-86.169657;39.811593,-86.169965;39.811663,-86.170089;39.81169,-86.170277;39.811719,-86.170467;39.811747,-86.170531;39.811752,-86.170594;39.811762,-86.170915;39.811786,-86.171043;39.811787,-86.171107;39.811792,-86.171171;39.811793,-86.17466;39.811777,-86.174711;39.811777,-86.175297;39.811777,-86.176;39.811769,-86.177371;39.811751,-86.177614;39.811753,-86.177712;39.811758,-86.177761;39.811759,-86.177858;39.811764,-86.177895;39.811764,-86.177955;39.811769,-86.177995;39.811774,-86.178101;39.811783,-86.178149;39.811784,-86.178246;39.811794,-86.178342;39.811808,-86.178439;39.811817,-86.178534;39.811832,-86.17863;39.81185,-86.178725;39.811864,-86.178867;39.811893,-86.178961;39.811911,-86.179055;39.811934,-86.179148;39.811953,-86.179241;39.811976,-86.179318;39.811999,-86.179331;39.812004,-86.179431;39.812032,-86.179521;39.812055,-86.17961;39.812087,-86.179698;39.812115,-86.179958;39.812211,-86.180014;39.812234,-86.180043;39.812248,-86.180126;39.81228,-86.18021;39.812321,-86.180292;39.812358,-86.180373;39.812399,-86.180484;39.812463,-86.180585;39.812508,-86.180645;39.812545,-86.180713;39.812581,-86.180838;39.812659,-86.180903;39.812704,-86.180959;39.812741,-86.181077;39.812823,-86.181157;39.812882,-86.181855;39.813396,-86.18233;39.813742,-86.182736;39.814037,-86.182838;39.814112,-86.183287;39.814442,-86.184041;39.814934,-86.184861;39.815467,-86.185017;39.815558,-86.185352;39.815754,-86.186112;39.816151,-86.186252;39.816224,-86.187017;39.816608,-86.188008;39.817102,-86.188132;39.817165,-86.188501;39.817353,-86.189075;39.817641,-86.189422;39.817814,-86.190756;39.818486,-86.191283;39.818751,-86.191802;39.819011,-86.192585;39.819404,-86.193842;39.820041,-86.196779;39.821534,-86.19953;39.822916,-86.199743;39.823026,-86.199842;39.823072,-86.199942;39.823117,-86.200034;39.823163,-86.200126;39.823204,-86.200229;39.823246,-86.200323;39.823287,-86.200706;39.823434,-86.201;39.82353,-86.201108;39.823562,-86.201208;39.823595,-86.201309;39.823622,-86.20151;39.823678,-86.201714;39.823724,-86.202026;39.823797\\\\nPOLYLINE,-86.141672;39.777516,-86.141753;39.777377,-86.141778;39.777332,-86.141952;39.777027,-86.142335;39.776341,-86.142362;39.776287,-86.142389;39.776238,-86.142427;39.776161,-86.142452;39.776107,-86.142476;39.776058,-86.142499;39.776004,-86.142541;39.775896,-86.142561;39.775847,-86.142598;39.775739,-86.142639;39.775604,-86.142674;39.775469,-86.142708;39.775307,-86.142717;39.775253,-86.142737;39.775114,-86.142747;39.775006,-86.142751;39.774952,-86.142756;39.774866,-86.142797;39.773804,-86.142798;39.773785,-86.14285;39.772385,-86.142876;39.771678,-86.142903;39.77098,-86.142954;39.769669,-86.142961;39.76948,-86.142963;39.76943,-86.142969;39.769282,-86.143012;39.768138,-86.14306;39.766895,-86.143102;39.765814,-86.14312;39.765363,-86.143124;39.765269,-86.143124;39.765267,-86.143156;39.764427,-86.143212;39.762999,-86.143231;39.762499,-86.14324;39.762265,-86.143265;39.761702,-86.143282;39.761454,-86.14329;39.761369,-86.143336;39.760968,-86.143393;39.760568,-86.143406;39.760493,-86.143531;39.759803,-86.143546;39.759717,-86.143627;39.759272,-86.143704;39.758876,-86.143797;39.758476,-86.143881;39.75817,-86.144031;39.757604,-86.144073;39.757473,-86.144138;39.757271,-86.144249;39.756925,-86.144393;39.756475,-86.144407;39.756431,-86.144467;39.756242,-86.1447;39.75541,-86.144876;39.754821,-86.145115;39.75412,-86.14516;39.753976,-86.145189;39.753873,-86.145217;39.753765,-86.145249;39.753621,-86.145269;39.753513,-86.145281;39.753441,-86.145302;39.753293,-86.14531;39.753221,-86.145317;39.753185,-86.145317;39.753149,-86.145323;39.753077,-86.145327;39.753005,-86.145331;39.752892,-86.145333;39.752784,-86.145332;39.752676,-86.145327;39.752568,-86.14532;39.752455,-86.145314;39.752383,-86.145302;39.752275,-86.145287;39.752166,-86.145269;39.752058,-86.145228;39.75185,-86.145204;39.751751,-86.145164;39.751607,-86.145158;39.751589,-86.145128;39.751489,-86.145103;39.751413,-86.145069;39.751318,-86.145033;39.751223,-86.145013;39.751173,-86.144973;39.751083,-86.144952;39.751033,-86.144908;39.750938,-86.144863;39.750848,-86.144789;39.750707,-86.144738;39.750617,-86.144684;39.750527,-86.144614;39.750413,-86.144447;39.750173,-86.144415;39.750133,-86.144382;39.750087,-86.144315;39.750006,-86.144247;39.74992,-86.144176;39.749838,-86.144103;39.749756,-86.143989;39.749634,-86.143911;39.749557,-86.143831;39.749475,-86.143666;39.749325,-86.143605;39.749271,-86.143526;39.749203,-86.143402;39.749098,-86.143276;39.748998,-86.143148;39.748898,-86.143013;39.748798,-86.14238;39.748356,-86.141844;39.747992,-86.140453;39.74707,-86.140118;39.746848,-86.139971;39.746753,-86.139958;39.746743,-86.139902;39.746707,-86.139795;39.746634,-86.139767;39.746611,-86.139714;39.746575,-86.139636;39.746516,-86.13946;39.746375,-86.139411;39.746329,-86.139371;39.746298,-86.139255;39.746189,-86.139141;39.74608,-86.139069;39.746003,-86.139033;39.745966,-86.138962;39.745889,-86.138927;39.745853,-86.138896;39.745817,-86.13886;39.745776,-86.138794;39.745694,-86.13873;39.745617,-86.138667;39.745536,-86.138625;39.745477,-86.138607;39.745454,-86.138492;39.745291,-86.138413;39.745164,-86.138385;39.745123,-86.13838;39.745114,-86.138334;39.745038,-86.138239;39.744866,-86.138195;39.74478,-86.138111;39.744603,-86.138073;39.744513,-86.138037;39.744423,-86.138002;39.744332,-86.137941;39.744152,-86.137913;39.744061,-86.137887;39.743971,-86.137864;39.743881,-86.137828;39.743723,-86.137806;39.743615,-86.137775;39.743421,-86.137765;39.743339,-86.137751;39.743227,-86.137741;39.743114,-86.137733;39.743001,-86.137729;39.74292,-86.137714;39.742542,-86.137682;39.741753,-86.137678;39.741649,-86.137665;39.741356,-86.137647;39.740928,-86.13762;39.740338,-86.137552;39.738905,-86.13753;39.738427,-86.137526;39.738324,-86.137494;39.737616,-86.137493;39.737589,-86.137472;39.737138,-86.137412;39.735858,-86.137379;39.735142,-86.137377;39.735079,-86.137343;39.734425,-86.137335;39.734299,-86.137325;39.734177,-86.137321;39.734141,-86.137301;39.733929,-86.137276;39.733727,-86.13727;39.733618,-86.137258;39.733573,-86.137254;39.733515,-86.137239;39.733461,-86.137235;39.733415,-86.1372;39.733212,-86.137199;39.733203,-86.137166;39.733023,-86.137103;39.732712,-86.13695;39.732075,-86.136916;39.731935,-86.136888;39.731827,-86.136774;39.731443,-86.136675;39.731141,-86.136666;39.731118,-86.136628;39.73101,-86.136549;39.730797,-86.136466;39.730581,-86.136367;39.730337,-86.136358;39.730314,-86.136262;39.730097,-86.136084;39.729713,-86.135951;39.729432,-86.135729;39.728962,-86.135507;39.728492,-86.135114;39.727665,-86.135025;39.727475,-86.13478;39.726955,-86.134417;39.726195,-86.134377;39.72611,-86.133892;39.725083,-86.133767;39.724821,-86.133486;39.724238,-86.133461;39.724188,-86.132886;39.72299,-86.132502;39.722175,-86.132477;39.722122,-86.132134;39.721397,-86.13203;39.721177,-86.131991;39.721105,-86.131959;39.721041,-86.131936;39.721001,-86.131909;39.720951,-86.131836;39.720824,-86.131774;39.720725,-86.131693;39.720602,-86.131608;39.72048,-86.131572;39.720435,-86.131536;39.720385,-86.131462;39.720294,-86.131405;39.720222,-86.131327;39.720131,-86.13131;39.720113,-86.131266;39.720063,-86.131183;39.719972,-86.131119;39.719909,-86.131035;39.719823,-86.130972;39.719764,-86.130886;39.719682,-86.130878;39.719673,-86.130788;39.719595,-86.130755;39.719568,-86.130707;39.719527,-86.130688;39.719509,-86.130629;39.719464,-86.13062;39.719455,-86.130551;39.7194,-86.130408;39.719291,-86.130391;39.719277,-86.130293;39.719209,-86.13015;39.719113,-86.130112;39.719086,-86.130055;39.719054,-86.129996;39.719013,-86.129918;39.718967,-86.129678;39.71883,-86.129633;39.718807,-86.129596;39.718789,-86.129513;39.718744,-86.129472;39.718725,-86.129302;39.718643,-86.129217;39.718606,-86.12913;39.718565,-86.129043;39.718528,-86.128955;39.718496,-86.128822;39.718441,-86.128744;39.718413,-86.128687;39.718395,-86.128505;39.71833,-86.127539;39.717999,-86.126169;39.717529,-86.123064;39.716465,-86.12189;39.71606,-86.120676;39.715645,-86.115887;39.714005,-86.115443;39.713853,-86.11509;39.713728,-86.114945;39.713678,-86.114802;39.713623,-86.114696;39.713577,-86.11459;39.713535,-86.11438;39.713444,-86.114105;39.713316,-86.114004;39.713265,-86.11391;39.713219,-86.11377;39.713146,-86.113712;39.713114,-86.113573;39.713037,-86.113348;39.712909,-86.113128;39.712772,-86.113015;39.712704,-86.112717;39.712499,-86.112525;39.712362,-86.112246;39.712144,-86.112155;39.712071,-86.112065;39.711993,-86.111892;39.711839,-86.111722;39.711685,-86.11164;39.711603,-86.11156;39.711521,-86.11148;39.711444,-86.111288;39.711235,-86.111214;39.711149,-86.111158;39.711081,-86.111141;39.711063,-86.11107;39.710977,-86.110932;39.710804,-86.110866;39.710718,-86.1108;39.710628,-86.110622;39.71037,-86.110432;39.710057,-86.110385;39.709976,-86.110339;39.709894,-86.11028;39.709781,-86.110182;39.709587,-86.110092;39.709388,-86.110008;39.709189,-86.109933;39.708986,-86.109864;39.708783,-86.109837;39.708692,-86.109821;39.708634,-86.10975;39.708399,-86.109192;39.706385,-86.109032;39.705812,-86.10849;39.703857,-86.108482;39.70383,-86.108465;39.703767,-86.108294;39.703157,-86.108287;39.70313,-86.108262;39.703035,-86.108256;39.703013,-86.108036;39.702205,-86.107641;39.70076,-86.107002;39.698431,-86.106761;39.697548,-86.105828;39.694124,-86.105784;39.693961,-86.104968;39.691162,-86.102732;39.684292,-86.102152;39.682508,-86.101737;39.681239,-86.101373;39.680133,-86.101306;39.679927,-86.101298;39.679902,-86.09936;39.67399,-86.09932;39.673882,-86.099293;39.673805,-86.099204;39.673584,-86.09914;39.673439,-86.099107;39.673367,-86.099055;39.673258,-86.099002;39.67315,-86.098888;39.672932,-86.098767;39.67272,-86.098638;39.672511,-86.098571;39.672407,-86.09843;39.672204,-86.098357;39.672104,-86.098238;39.671945,-86.098121;39.671796,-86.09804;39.6717,-86.097958;39.671605,-86.097874;39.67151,-86.097788;39.671415,-86.097611;39.671229,-86.097521;39.671138,-86.097428;39.671047,-86.097334;39.670961,-86.097238;39.67087,-86.096966;39.670633,-86.096916;39.670592,-86.096761;39.67047,-86.096476;39.670242,-86.094424;39.668821,-86.093436;39.668124,-86.093013;39.667832,-86.092744;39.66765,-86.089992;39.665741,-86.08979;39.665599,-86.087824;39.664228,-86.086193;39.663098,-86.085894;39.66289,-86.085352;39.662515,-86.084872;39.662182,-86.08336;39.661129,-86.082543;39.660564,-86.082215;39.660336,-86.081723;39.659995,-86.077862;39.657315,-86.077322;39.656923,-86.077152;39.65678,-86.077074;39.656714,-86.076868;39.656546,-86.076632;39.656323,-86.076291;39.655983,-86.076078;39.655747,-86.07589;39.655515,-86.075737;39.655316,-86.075586;39.655112,-86.075431;39.654881,-86.075268;39.654605,-86.075159;39.654415,-86.075059;39.65422,-86.074947;39.653981,-86.074846;39.653741,-86.074753;39.653502,-86.074672;39.65324,-86.074597;39.652978,-86.074532;39.652716,-86.074491;39.652535,-86.074452;39.652301,-86.07444;39.652193,-86.074419;39.652057,-86.074402;39.6518,-86.074394;39.651309,-86.07439;39.650809,-86.074386;39.649692,-86.074376;39.646926,-86.074372;39.646173,-86.074369;39.645389,-86.074366;39.644479,-86.074364;39.64406,-86.074341;39.636937,-86.07434;39.63664\\\\nPOLYLINE,-86.141644;39.777597,-86.141672;39.777516\\\\nPOLYLINE,-86.20204;39.823794,-86.202127;39.823813,-86.202231;39.823832,-86.202335;39.823846,-86.202429;39.823864,-86.202524;39.823879,-86.202934;39.823931,-86.203075;39.823941,-86.203182;39.823951,-86.203466;39.823971,-86.203574;39.823976,-86.204396;39.823982,-86.204894;39.823976,-86.20617;39.823967,-86.207319;39.823961,-86.21138;39.823917,-86.211727;39.823914,-86.216379;39.823847,-86.216735;39.823845,-86.221102;39.823793,-86.223685;39.823765,-86.224332;39.823756,-86.224473;39.823762,-86.224615;39.823763,-86.224756;39.823768,-86.225179;39.823798,-86.225459;39.823827,-86.225599;39.823846,-86.225776;39.823878,-86.225879;39.823879,-86.225932;39.823893,-86.226004;39.823902,-86.226016;39.823903,-86.226154;39.82393,-86.226563;39.824014,-86.226834;39.824079,-86.227085;39.824148,-86.227233;39.824194,-86.227494;39.824277,-86.227623;39.824319,-86.227751;39.824369,-86.227879;39.824415,-86.228129;39.824516,-86.228254;39.824571,-86.228376;39.824626,-86.228452;39.824662,-86.228497;39.82468,-86.228617;39.824735,-86.228682;39.824767,-86.228736;39.824795,-86.228853;39.824858,-86.229084;39.824986,-86.229196;39.82505,-86.229308;39.825118,-86.229418;39.825187,-86.229593;39.8253,-86.22966;39.825346,-86.229729;39.825391,-86.229809;39.825446,-86.229914;39.825523,-86.230017;39.8256,-86.230118;39.825682,-86.230218;39.825759,-86.230315;39.825841,-86.230481;39.825991,-86.230706;39.826204,-86.230793;39.826295,-86.232463;39.828094,-86.239901;39.836122,-86.240995;39.837309,-86.241987;39.838383,-86.242061;39.83846,-86.242125;39.838528,-86.24218;39.838583,-86.242302;39.838701,-86.242335;39.838732,-86.242439;39.838828,-86.242509;39.838887,-86.242569;39.838941,-86.242714;39.839059,-86.242927;39.839227,-86.243005;39.839282,-86.243083;39.839341,-86.243309;39.839496,-86.243391;39.839546,-86.243474;39.8396,-86.243713;39.839742,-86.243799;39.839792,-86.243886;39.839837,-86.243959;39.839878,-86.244047;39.839924,-86.244121;39.83996,-86.244302;39.840052,-86.244485;39.840134,-86.244562;39.840171,-86.244656;39.840207,-86.24475;39.840248,-86.244925;39.840317,-86.245021;39.840354,-86.245117;39.840386,-86.245214;39.840423,-86.245492;39.840514,-86.245592;39.840542,-86.245692;39.840574,-86.245791;39.840602,-86.245977;39.840653,-86.246077;39.840676,-86.246164;39.840699,-86.246266;39.840722,-86.246369;39.840741,-86.246558;39.840783,-86.246767;39.84082,-86.246871;39.840834,-86.246976;39.840853,-86.247063;39.840863,-86.247151;39.840877,-86.247238;39.840886,-86.247487;39.840915,-86.251777;39.841321,-86.252145;39.841355,-86.253249;39.841461,-86.253357;39.841475,-86.253429;39.84148,-86.253786;39.841528,-86.253893;39.841546,-86.253963;39.84156,-86.25407;39.841579,-86.254141;39.841589,-86.254245;39.841612,-86.254315;39.841626,-86.25442;39.841649,-86.25449;39.841663,-86.254595;39.841691,-86.254663;39.841704,-86.254734;39.841723,-86.254835;39.841751,-86.254939;39.841778,-86.255042;39.841811,-86.255111;39.841829,-86.255213;39.841861,-86.255281;39.84188,-86.255382;39.841916,-86.255449;39.841935,-86.255615;39.841994,-86.255714;39.842031,-86.255779;39.842054,-86.255877;39.842091,-86.256038;39.842159,-86.256102;39.842182,-86.256165;39.84221,-86.256261;39.842251,-86.256354;39.842296,-86.256423;39.842319,-86.256484;39.842351,-86.256557;39.842392,-86.256666;39.842447,-86.256761;39.842493,-86.256926;39.842584,-86.257121;39.842693,-86.257217;39.842753,-86.25728;39.842789,-86.257466;39.842907,-86.257527;39.842948,-86.257618;39.843007,-86.257678;39.843053,-86.257766;39.843112,-86.257854;39.84318,-86.258025;39.843307,-86.258192;39.843443,-86.258273;39.843512,-86.258352;39.843584,-86.258431;39.843652,-86.258577;39.843793,-86.258645;39.843856,-86.258711;39.84392,-86.258777;39.843988,-86.258905;39.844124,-86.259028;39.84426,-86.259088;39.844328,-86.259166;39.844423,-86.25926;39.844541,-86.259351;39.844663,-86.259386;39.844708,-86.259438;39.844785,-86.26005;39.845667,-86.260881;39.846866,-86.262747;39.849536,-86.263387;39.850459,-86.265106;39.852934,-86.265352;39.853287,-86.265702;39.853785,-86.265789;39.853912,-86.266744;39.855265,-86.26698;39.855577,-86.267557;39.856315,-86.26798;39.856836,-86.268686;39.857642,-86.269361;39.858376,-86.269826;39.858852,-86.269961;39.858993,-86.270259;39.859296,-86.271005;39.860044,-86.274293;39.863349,-86.274472;39.863539,-86.274628;39.863698,-86.274769;39.863848,-86.274899;39.863984,-86.275197;39.864301,-86.275262;39.864369,-86.275439;39.864541,-86.275646;39.864736,-86.275883;39.864945,-86.27598;39.865026,-86.276055;39.865086,-86.276105;39.865122,-86.276156;39.865163,-86.276313;39.865272,-86.276448;39.865363,-86.276531;39.865417,-86.276758;39.865549,-86.276994;39.865672,-86.277084;39.865718,-86.277207;39.865773,-86.277426;39.865869,-86.277678;39.865983,-86.278056;39.866148,-86.278101;39.866166,-86.278529;39.866353,-86.278777;39.866463,-86.278899;39.866522,-86.278959;39.866554,-86.279049;39.8666,-86.279168;39.866659,-86.279316;39.866737,-86.279377;39.866773,-86.279403;39.866787,-86.27966;39.866937,-86.279707;39.866969,-86.279771;39.867005,-86.279905;39.867096,-86.279984;39.867155,-86.280035;39.867192,-86.280112;39.867251,-86.280162;39.867291,-86.280211;39.867328,-86.280379;39.867473,-86.280494;39.867577,-86.280538;39.867623,-86.280582;39.867663,-86.280668;39.867754,-86.280831;39.867935,-86.280907;39.868026,-86.280944;39.868076,-86.280981;39.868121,-86.281016;39.868171,-86.281051;39.868216,-86.281316;39.868592,-86.28168;39.869121,-86.282412;39.870166,-86.28268;39.870573,-86.283323;39.871505,-86.283813;39.872143,-86.284384;39.872832,-86.284908;39.87342,-86.285383;39.873914,-86.285405;39.873937,-86.285537;39.874064,-86.285802;39.874304,-86.286275;39.874726,-86.28679;39.875194,-86.28752;39.875811,-86.288025;39.876228,-86.288485;39.876605,-86.288827;39.876868,-86.289307;39.877277,-86.290019;39.87788,-86.290457;39.878252,-86.291003;39.878706,-86.291442;39.879069,-86.291981;39.879523,-86.292455;39.879909,-86.292563;39.88,-86.293225;39.880553,-86.293583;39.880848,-86.294032;39.881225,-86.294322;39.881465,-86.294479;39.881593,-86.294873;39.881906,-86.295221;39.882183,-86.295511;39.882455,-86.300156;39.886299,-86.300417;39.886512,-86.301301;39.887242,-86.301704;39.887578,-86.302119;39.887923,-86.304492;39.889897,-86.304626;39.89001,-86.304764;39.890128,-86.305713;39.890967,-86.306346;39.891575,-86.306454;39.891688,-86.306563;39.891797,-86.306755;39.892001,-86.306995;39.892259,-86.307097;39.892372,-86.30723;39.892526,-86.307428;39.892753,-86.307652;39.89302,-86.307747;39.893138,-86.307872;39.893291,-86.308055;39.893527,-86.308352;39.89392,-86.308467;39.894079,-86.309351;39.895354,-86.31261;39.900149,-86.314013;39.90223,-86.314131;39.902406,-86.314201;39.902506,-86.314465;39.902886,-86.314671;39.903175,-86.314776;39.90332,-86.315024;39.903655,-86.315096;39.903754,-86.31559;39.904383,-86.31577;39.90461,-86.31586;39.904718,-86.315952;39.904831,-86.316044;39.90494,-86.316137;39.905053,-86.316324;39.905271,-86.316694;39.905696,-86.3169;39.905927,-86.317176;39.906222,-86.317309;39.906362,-86.317592;39.906657,-86.317859;39.906928,-86.318223;39.907295,-86.321291;39.910341,-86.32474;39.913762,-86.325871;39.914953,-86.326032;39.915117,-86.326212;39.915319\\\\nPOLYLINE,-86.137208;39.737587,-86.13723;39.738114,-86.137283;39.739079,-86.137349;39.740318,-86.137355;39.740431,-86.137383;39.741098,-86.137395;39.741359,-86.137403;39.741557,-86.137429;39.742161,-86.137447;39.742544,-86.137473;39.743094,-86.137482;39.743229,-86.13749;39.743315,-86.137493;39.743337,-86.137502;39.743423,-86.137518;39.743536,-86.137531;39.743617,-86.137552;39.743725,-86.13757;39.743811,-86.137609;39.743973,-86.137672;39.74419,-86.137699;39.744271,-86.137727;39.744348,-86.137778;39.744484,-86.137799;39.744538,-86.137856;39.744674,-86.137931;39.744836,-86.137998;39.744972,-86.138042;39.745049,-86.138059;39.745081,-86.138071;39.745103,-86.138164;39.745257,-86.138185;39.745293,-86.138247;39.745384,-86.138298;39.745461,-86.138352;39.745538,-86.138385;39.745583,-86.138503;39.745733,-86.138624;39.745878,-86.138637;39.745891,-86.138686;39.74595,-86.138812;39.746086,-86.138898;39.746172,-86.138964;39.746241,-86.13903;39.746304,-86.139098;39.746372,-86.139166;39.746436,-86.139236;39.746499,-86.139307;39.746558,-86.139403;39.746645,-86.1395;39.746727,-86.139575;39.746786,-86.139675;39.746863,-86.139778;39.74694,-86.139794;39.746954,-86.139829;39.746981,-86.139908;39.747036,-86.139961;39.747077,-86.140071;39.74715,-86.140452;39.747396,-86.141536;39.748094,-86.142431;39.748672,-86.142629;39.748813,-86.142668;39.748849,-86.142813;39.748967,-86.142883;39.749031,-86.143018;39.749158,-86.143153;39.749294,-86.143274;39.74943,-86.143337;39.749507,-86.143398;39.749585,-86.143467;39.74968,-86.143559;39.749811,-86.14361;39.749888,-86.143705;39.750042,-86.143749;39.750119,-86.143791;39.750196,-86.143831;39.750277,-86.14385;39.750318,-86.143921;39.75048,-86.143953;39.750562,-86.143983;39.750643,-86.144011;39.750724,-86.144036;39.75081,-86.14407;39.750932,-86.144089;39.751018,-86.144106;39.751103,-86.144121;39.751185,-86.144139;39.751315,-86.144148;39.751397,-86.144155;39.751482,-86.144155;39.751496,-86.144159;39.751568,-86.144159;39.751595,-86.14416;39.751613,-86.144161;39.751653,-86.14416;39.751784,-86.144153;39.75191,-86.144145;39.751996,-86.144136;39.752081,-86.14413;39.752122,-86.144105;39.752275,-86.144001;39.752905,-86.143896;39.753548,-86.143803;39.754079,-86.143671;39.75488,-86.143645;39.755037,-86.143559;39.755609,-86.143553;39.755658,-86.143444;39.756509,-86.143349;39.757107,-86.143267;39.757679,-86.143255;39.757769,-86.143238;39.757891,-86.143184;39.758372,-86.143132;39.758957,-86.143093;39.759556,-86.143082;39.759732,-86.143059;39.760346,-86.143045;39.760759,-86.143032;39.761263,-86.143026;39.761452,-86.143;39.762493,-86.142994;39.7627,-86.142983;39.762993,-86.142982;39.76302,-86.142937;39.764285,-86.142899;39.765255,-86.142899;39.765357,-86.142883;39.765812,-86.142845;39.766898,-86.142802;39.768091,-86.1428;39.768136,-86.142751;39.769384,-86.142745;39.769523,-86.142743;39.769573,-86.142736;39.769753,-86.142687;39.770973,-86.142633;39.772379,-86.142601;39.773216,-86.142593;39.773356,-86.142587;39.773437,-86.14258;39.773509,-86.142556;39.773698,-86.142549;39.773739,-86.142545;39.773779,-86.142532;39.773824,-86.14253;39.773878,-86.142499;39.774044,-86.142482;39.774125,-86.142443;39.774287,-86.142391;39.774481,-86.142363;39.774575,-86.142286;39.774804,-86.142247;39.774912,-86.142215;39.774993,-86.142171;39.775101,-86.142137;39.775182,-86.142089;39.775285,-86.1414;39.776793,-86.141243;39.777184,-86.141159;39.777422,-86.141137;39.77749,-86.14111;39.77758,-86.141073;39.777706,-86.141035;39.777849,-86.141018;39.777921,-86.140987;39.778061,-86.140973;39.778133,-86.140967;39.778209,-86.140942;39.778304,-86.140921;39.778407,-86.140886;39.778592,-86.140856;39.778781,-86.140824;39.779001,-86.140798;39.779226,-86.140787;39.779339,-86.140778;39.779451,-86.140765;39.779636,-86.140761;39.779712,-86.140753;39.779902,-86.140749;39.780163,-86.14075;39.780311,-86.140751;39.780352,-86.140753;39.78046,-86.14076;39.780661,-86.140783;39.781244,-86.140814;39.782055,-86.140818;39.782109,-86.140824;39.782164,-86.140831;39.782218,-86.140841;39.782276,-86.140858;39.782358,-86.14088;39.782439,-86.140898;39.782493,-86.140938;39.782597,-86.140961;39.782651,-86.140974;39.782674,-86.140999;39.782728,-86.141013;39.782751,-86.141041;39.782805,-86.141072;39.782855,-86.141104;39.7829,-86.141138;39.78295,-86.141192;39.783022,-86.14125;39.78309,-86.141291;39.783136,-86.141334;39.783181,-86.141355;39.783199,-86.1414;39.783245,-86.141495;39.783326,-86.141545;39.783363,-86.14157;39.783385,-86.141621;39.783422,-86.141728;39.783495,-86.141784;39.783527,-86.141841;39.783563,-86.141899;39.783591,-86.142018;39.783655,-86.14208;39.783682,-86.142142;39.783705,-86.14221;39.783733,-86.14227;39.783756,-86.142335;39.783779,-86.1424;39.783797,-86.142467;39.78382,-86.142536;39.783839,-86.142813;39.783895,-86.143027;39.783923,-86.14317;39.783933,-86.143386;39.783935,-86.143529;39.783927,-86.143547;39.783927,-86.143601;39.783923,-86.143717;39.78391,-86.143744;39.783906,-86.14385;39.783893,-86.14392;39.78388,-86.143954;39.783872,-86.144024;39.783859,-86.144058;39.78385,-86.144101;39.783841,-86.144167;39.783824,-86.144228;39.783806,-86.144267;39.783797,-86.144298;39.783784,-86.144366;39.783762,-86.144424;39.78374,-86.144712;39.783625,-86.14624;39.783014,-86.146307;39.782992,-86.146375;39.782966,-86.146512;39.782922,-86.146592;39.7829,-86.146662;39.782878,-86.146823;39.782834,-86.146905;39.782817,-86.146987;39.782795,-86.147059;39.782782,-86.147141;39.782764,-86.147214;39.782751,-86.147465;39.782713,-86.147538;39.782704,-86.147596;39.7827,-86.147625;39.7827,-86.14767;39.782692,-86.14771;39.782692,-86.147785;39.782679,-86.147867;39.782671,-86.147976;39.782662,-86.148086;39.782659,-86.148308;39.782651,-86.148419;39.782652,-86.148534;39.782654,-86.14904;39.782666,-86.14942;39.782677,-86.150306;39.782702,-86.150821;39.782719,-86.151513;39.782738,-86.152125;39.782756,-86.152151;39.782756,-86.153121;39.782777,-86.153952;39.782796,-86.155597;39.782831,-86.155757;39.782832,-86.157482;39.782876,-86.157761;39.782882,-86.159418;39.782962,-86.159724;39.782973,-86.159929;39.782979,-86.160153;39.782994,-86.160366;39.783005,-86.160578;39.78302,-86.160791;39.78303,-86.161211;39.783065,-86.161513;39.783085,-86.161757;39.783114,-86.16183;39.783119,-86.161998;39.783147,-86.162082;39.783157,-86.162165;39.783171,-86.162248;39.78319,-86.16232;39.783204,-86.162403;39.783218,-86.162486;39.783236,-86.162669;39.783278,-86.1629;39.783339,-86.163011;39.783371,-86.163966;39.78363,-86.164335;39.783732,-86.164424;39.783755,-86.164544;39.783792,-86.164612;39.783815,-86.16467;39.783838,-86.164738;39.783861,-86.164804;39.783888,-86.164869;39.783916,-86.164934;39.783948,-86.164998;39.783975,-86.165174;39.784067,-86.165234;39.784103,-86.165395;39.784203,-86.165477;39.784258,-86.16553;39.784295,-86.165557;39.784317,-86.165608;39.784354,-86.165659;39.784395,-86.165732;39.784458,-86.165756;39.784476,-86.16585;39.784567,-86.165865;39.784585,-86.165893;39.784608,-86.165997;39.784721,-86.166037;39.784767,-86.166056;39.784794,-86.166142;39.784907,-86.166159;39.784934,-86.166193;39.784984,-86.166225;39.785034,-86.166256;39.785088,-86.166286;39.785138,-86.166314;39.785192,-86.166327;39.785215,-86.166354;39.785269,-86.166401;39.785377,-86.166454;39.785513,-86.166472;39.785567,-86.166488;39.785621,-86.166496;39.785653,-86.166511;39.785707,-86.16653;39.785788,-86.166541;39.785847,-86.16655;39.785901,-86.166565;39.786014,-86.16657;39.786072,-86.166574;39.786131,-86.166576;39.786185,-86.166576;39.786271,-86.166573;39.786356,-86.166569;39.786415,-86.166545;39.786676,-86.166544;39.786683,-86.1665;39.787185,-86.166396;39.788364,-86.16638;39.788558,-86.166331;39.789296,-86.166323;39.789386,-86.166313;39.789476,-86.166298;39.789598,-86.166284;39.789688,-86.166264;39.789805,-86.166215;39.790048,-86.166193;39.790138,-86.166163;39.790255,-86.166093;39.790493,-86.166062;39.790583,-86.166034;39.790659,-86.166016;39.790695,-86.166004;39.790731,-86.165979;39.790812,-86.165886;39.791037,-86.165827;39.791171,-86.165802;39.791221,-86.165764;39.791301,-86.165738;39.791351,-86.165697;39.791427,-86.16567;39.791481,-86.165613;39.79158,-86.165555;39.791683,-86.165509;39.791759,-86.165185;39.792325,-86.164967;39.792706,-86.16492;39.792791,-86.164897;39.792836,-86.164875;39.792876,-86.164795;39.793051,-86.164776;39.793096,-86.164725;39.793227,-86.164694;39.793316,-86.164665;39.793406,-86.164627;39.793541,-86.164586;39.793721,-86.16457;39.793811,-86.16455;39.793951,-86.16454;39.794041,-86.164533;39.794135,-86.164528;39.794225,-86.164527;39.79427,-86.164527;39.794365,-86.164529;39.794455,-86.164534;39.79455,-86.164552;39.79473,-86.164573;39.79487,-86.164593;39.794974,-86.164621;39.795095,-86.164633;39.795141,-86.164827;39.795831,-86.164983;39.796382,-86.165098;39.796793,-86.165235;39.797276,-86.165356;39.79775,-86.16544;39.798075,-86.165546;39.798467,-86.165573;39.798571,-86.165597;39.79867,-86.16562;39.798774,-86.165659;39.798968,-86.165676;39.799067,-86.165692;39.799167,-86.165706;39.799266,-86.165718;39.799365,-86.165738;39.799559,-86.165745;39.799658,-86.165756;39.799874,-86.165758;39.799937,-86.165849;39.802109,-86.165898;39.802885,-86.165934;39.803588,-86.165963;39.804286,-86.166122;39.808153,-86.166128;39.808229,-86.166139;39.808324,-86.166146;39.808378,-86.166158;39.808455,-86.166175;39.80854,-86.166186;39.808604,-86.166213;39.808725,-86.166236;39.808816,-86.166281;39.808965,-86.166323;39.809082,-86.166358;39.809172,-86.166409;39.80929,-86.166479;39.809435,-86.166509;39.809493,-86.166542;39.809548,-86.166574;39.809606,-86.166608;39.809661,-86.166643;39.809715,-86.166698;39.809797,-86.166775;39.809905,-86.166832;39.809982,-86.166928;39.8101,-86.166944;39.810118,-86.166967;39.810145,-86.167028;39.810213,-86.167091;39.810281,-86.167181;39.810372,-86.167228;39.810422,-86.167276;39.810463,-86.167373;39.810554,-86.167423;39.810599,-86.167526;39.810681,-86.167578;39.810726,-86.167685;39.810808,-86.16774;39.810849,-86.167795;39.810886,-86.167852;39.810927,-86.167908;39.810963,-86.167938;39.810981,-86.167966;39.810999,-86.168024;39.81104,-86.168083;39.811077,-86.168143;39.811109,-86.168244;39.81117,-86.168264;39.811182,-86.168308;39.811205,-86.16845;39.811278,-86.168642;39.811374,-86.168906;39.811484,-86.169041;39.811539,-86.169078;39.811552,-86.169178;39.811585,-86.169247;39.811612,-86.169316;39.811635,-86.169386;39.811654,-86.169456;39.811677,-86.169527;39.811695,-86.169598;39.811718,-86.169741;39.811756,-86.169813;39.81177,-86.169886;39.811788,-86.170251;39.811858,-86.170326;39.811868,-86.1704;39.811882,-86.170549;39.811901,-86.170623;39.811906,-86.170695;39.81192,-86.170742;39.81192,-86.170849;39.81193,-86.170924;39.811931,-86.171213;39.811946,-86.171459;39.811948,-86.174731;39.811922,-86.177545;39.811901,-86.177786;39.811907,-86.177902;39.811913,-86.177979;39.811918,-86.178017;39.811918,-86.178171;39.811937,-86.178248;39.811942,-86.178401;39.811961,-86.178477;39.811975,-86.178591;39.811994,-86.178741;39.812022,-86.178854;39.812046,-86.178929;39.81206,-86.179113;39.812106,-86.179223;39.812138,-86.179296;39.812157,-86.179511;39.812226,-86.179722;39.8123,-86.179862;39.812355,-86.179927;39.812382,-86.180146;39.812478,-86.180419;39.812615,-86.180484;39.812652,-86.180565;39.812697,-86.180737;39.812798,-86.180821;39.812852,-86.18093;39.812925,-86.180987;39.812966,-86.18101;39.81298,-86.181719;39.813498,-86.182264;39.813894,-86.18278;39.814274,-86.18284;39.814315,-86.183253;39.814602,-86.183948;39.815055,-86.184745;39.815579,-86.18493;39.815688,-86.185071;39.815765,-86.185237;39.815861,-86.185839;39.816185,-86.185873;39.816202,-86.187171;39.816848,-86.18758;39.817053,-86.187886;39.817209,-86.188487;39.817515,-86.189023;39.817784,-86.189409;39.817976,-86.189859;39.818205,-86.190766;39.818661,-86.19128;39.818922,-86.193863;39.820228,-86.196893;39.821749,-86.197311;39.82196,-86.199393;39.823006,-86.199765;39.823193,-86.200013;39.823303,-86.200144;39.823362,-86.200266;39.823413,-86.200408;39.823468,-86.200676;39.823569,-86.200826;39.823624,-86.200901;39.823656,-86.201019;39.823688,-86.201136;39.823725,-86.201292;39.823771,-86.201411;39.823803,-86.20157;39.823849,-86.20165;39.823868,-86.201716;39.823882,-86.201771;39.823896,-86.201852;39.823914,-86.202054;39.823961,-86.202136;39.823975,-86.202258;39.823998,-86.20234;39.824012,-86.202464;39.824031,-86.202628;39.824059,-86.202794;39.824079,-86.20301;39.824107,-86.203226;39.824127,-86.203298;39.824132,-86.203407;39.824141,-86.203732;39.824157,-86.203805;39.824158,-86.203914;39.824163,-86.204132;39.824164,-86.205071;39.824153,-86.206334;39.824139,-86.211384;39.824083,-86.21628;39.824024,-86.216336;39.824024,-86.223189;39.823947,-86.223856;39.823942,-86.224142;39.823944,-86.224213;39.823949,-86.224319;39.82395,-86.224461;39.82396,-86.224568;39.823965,-86.224675;39.823975,-86.224781;39.82398,-86.224888;39.82399,-86.224993;39.824004,-86.225064;39.824009,-86.225114;39.824018,-86.225498;39.824066,-86.225701;39.824094,-86.225779;39.824108,-86.225816;39.824113,-86.225983;39.824141,-86.226008;39.824146,-86.22612;39.824169,-86.226223;39.824188,-86.226389;39.824225,-86.22646;39.824239,-86.226532;39.824257,-86.226614;39.824276,-86.226684;39.824294,-86.226766;39.824313,-86.226837;39.824331,-86.226907;39.82435,-86.226987;39.824373,-86.227057;39.824396,-86.227127;39.824414,-86.227196;39.824437,-86.227276;39.824461,-86.227559;39.824557,-86.227636;39.824585,-86.227703;39.824612,-86.22777;39.824635,-86.227836;39.824662,-86.227912;39.824695,-86.228091;39.824768,-86.228109;39.824777,-86.228183;39.824809,-86.228248;39.824841,-86.228295;39.824859,-86.228376;39.8249,-86.228439;39.824928,-86.22875;39.825088,-86.228811;39.825124,-86.22888;39.82516,-86.22894;39.825197,-86.228999;39.825229,-86.229241;39.825379,-86.229299;39.825416,-86.229355;39.825456,-86.229697;39.825688,-86.229749;39.825729,-86.229801;39.825766,-86.229904;39.825848,-86.229954;39.825884,-86.230151;39.826047,-86.230198;39.826093,-86.230292;39.826174,-86.230362;39.826242,-86.230407;39.826283,-86.230451;39.826329,-86.230496;39.826374,-86.230539;39.826415,-86.230625;39.826506,-86.232748;39.828799,-86.235453;39.831714,-86.239588;39.836183,-86.240621;39.837298,-86.240686;39.837366,-86.241761;39.838535,-86.241824;39.838598,-86.241888;39.838666,-86.241942;39.838721,-86.242053;39.83883,-86.24212;39.838893,-86.242177;39.838943,-86.242247;39.839007,-86.24227;39.839029,-86.242317;39.83907,-86.242437;39.83917,-86.242711;39.839388,-86.242853;39.839488,-86.242932;39.839547,-86.243011;39.839602,-86.243079;39.839647,-86.24316;39.839697,-86.243242;39.839752,-86.243325;39.839802,-86.243395;39.839848,-86.243622;39.83998,-86.243709;39.840025,-86.243797;39.840075,-86.243945;39.840148,-86.244125;39.84024,-86.2442;39.840276,-86.244385;39.840359,-86.244462;39.840391,-86.244556;39.840432,-86.24465;39.840468,-86.244729;39.8405,-86.244825;39.840537,-86.244905;39.840569,-86.244985;39.840597,-86.245082;39.840633,-86.245163;39.840661,-86.24536;39.840725,-86.245443;39.840753,-86.245626;39.840804,-86.245894;39.840877,-86.245996;39.840901,-86.246081;39.840924,-86.246372;39.840989,-86.246458;39.841003,-86.246562;39.841026,-86.246649;39.84104,-86.246753;39.841059,-86.246858;39.841073,-86.246946;39.841087,-86.247207;39.841129,-86.247331;39.841139,-86.247473;39.841154,-86.247561;39.841159,-86.247632;39.841168,-86.251757;39.841555,-86.252043;39.841584,-86.252275;39.841604,-86.253166;39.84169,-86.253242;39.841695,-86.253618;39.841743,-86.253693;39.841757,-86.253768;39.841766,-86.253916;39.841794,-86.254028;39.841813,-86.254139;39.841836,-86.254212;39.84185,-86.254323;39.841873,-86.254396;39.841887,-86.254831;39.841998,-86.254938;39.842026,-86.255009;39.842049,-86.255116;39.842081,-86.255186;39.842104,-86.255292;39.842137,-86.255582;39.842246,-86.255645;39.842269,-86.255741;39.842306,-86.256053;39.842443,-86.256266;39.84254,-86.256327;39.842571,-86.256414;39.842612,-86.256495;39.842662,-86.256542;39.842681,-86.256584;39.842699,-86.256961;39.842913,-86.257054;39.842972,-86.257299;39.843131,-86.257389;39.843191,-86.257536;39.843295,-86.257623;39.843359,-86.257681;39.8434,-86.257765;39.843468,-86.25785;39.843531,-86.258014;39.843668,-86.258094;39.843736,-86.258172;39.843804,-86.258301;39.843922,-86.258468;39.84408,-86.258519;39.84413,-86.258553;39.844167,-86.258606;39.844216,-86.25875;39.844375,-86.25887;39.844511,-86.258909;39.844561,-86.258947;39.844606,-86.259132;39.844846,-86.259185;39.844918,-86.259254;39.845014,-86.259709;39.845674,-86.260729;39.847149,-86.262587;39.849801,-86.264774;39.852937,-86.265366;39.853787,-86.265551;39.854059,-86.266153;39.854919,-86.266684;39.855638,-86.267203;39.856308,-86.267924;39.857191,-86.268783;39.858161,-86.269158;39.858555,-86.270396;39.859815,-86.274264;39.863727,-86.274418;39.863881,-86.27553;39.865006,-86.276827;39.866298,-86.277367;39.866842,-86.277463;39.866937,-86.277805;39.867277,-86.278965;39.868442,-86.280345;39.869824,-86.28055;39.870028,-86.280731;39.870205,-86.280938;39.870409,-86.281147;39.870609,-86.28133;39.870786,-86.281641;39.87108,-86.282258;39.871683,-86.282653;39.872055,-86.283228;39.872568,-86.28348;39.872781,-86.283672;39.872953,-86.284009;39.873235,-86.284429;39.873584,-86.284969;39.874029,-86.285021;39.874074,-86.285939;39.874841,-86.286393;39.875214,-86.287718;39.876321,-86.288359;39.876874,-86.288833;39.877269,-86.289365;39.877696,-86.289882;39.878114,-86.290234;39.878404,-86.290642;39.878754,-86.291052;39.879085,-86.292114;39.879965,-86.292272;39.880097,-86.292453;39.880247,-86.292958;39.880673,-86.29362;39.881222,-86.294238;39.88174,-86.294818;39.882225,-86.295094;39.882457,-86.298966;39.885647,-86.300231;39.886704,-86.300778;39.887163,-86.301799;39.888007,-86.304376;39.89014,-86.304481;39.890226,-86.304616;39.890339,-86.304657;39.890376,-86.304787;39.890484,-86.305045;39.890711,-86.305268;39.890911,-86.305393;39.891029,-86.305609;39.891228,-86.305732;39.891346,-86.305974;39.891582,-86.306181;39.89179,-86.306269;39.891881,-86.306385;39.892003,-86.306473;39.892094,-86.306704;39.892347,-86.306846;39.892501,-86.306959;39.892628,-86.30707;39.89276,-86.30718;39.892886,-86.307288;39.893013,-86.307396;39.893144,-86.307501;39.893276,-86.307606;39.893402,-86.30771;39.893534,-86.308012;39.893932,-86.308118;39.894077,-86.308222;39.894222,-86.308324;39.894366,-86.30902;39.895357,-86.311271;39.898682,-86.312258;39.900142,-86.313317;39.901712,-86.313786;39.902399,-86.313865;39.902513,-86.314036;39.902757,-86.314549;39.903481,-86.314781;39.903797,-86.314854;39.903892,-86.314947;39.904015,-86.315345;39.904517,-86.315451;39.904653,-86.315553;39.90478,-86.31577;39.905042,-86.315992;39.905305,-86.316217;39.905567,-86.316332;39.905694,-86.316447;39.905825,-86.316674;39.906075,-86.316923;39.906342,-86.316982;39.906401,-86.317088;39.906514,-86.317193;39.906627,-86.3173;39.906736,-86.317407;39.906849,-86.317602;39.907049,-86.317798;39.907248,-86.320995;39.910411,-86.322962;39.91236,-86.324229;39.913624,-86.325117;39.914544,-86.325651;39.915123,-86.326009;39.915495,-86.326212;39.915723\\\\nPOLYLINE,-85.942347;39.347599,-85.942374;39.348295,-85.942404;39.350276,-85.94243;39.353525,-85.942439;39.353943,-85.94246;39.354881,-85.942465;39.35508,-85.942475;39.355521,-85.942497;39.356499,-85.942532;39.357779,-85.942593;39.360014,-85.942597;39.362182,-85.942597;39.362616,-85.942708;39.368241,-85.942785;39.372054,-85.942827;39.375051,-85.942849;39.376094,-85.942863;39.376763,-85.942871;39.377217,-85.943014;39.384914,-85.943066;39.387212,-85.943076;39.388489,-85.943087;39.389973,-85.943127;39.391383,-85.943135;39.391656,-85.943139;39.39179,-85.943144;39.39196,-85.943172;39.392948,-85.943179;39.393401,-85.943214;39.395564,-85.943249;39.396081,-85.943344;39.396806,-85.943555;39.397701,-85.943883;39.398645,-85.944287;39.399488,-85.94462;39.400051,-85.945095;39.400731,-85.945841;39.401612,-85.946184;39.401977,-85.947542;39.403104,-85.949208;39.404456,-85.951396;39.406242,-85.952402;39.407073,-85.95285;39.40844\\\\nPOLYLINE,-85.905627;39.040357,-85.905857;39.040553,-85.905885;39.040576,-85.906161;39.040819,-85.906357;39.040976,-85.90721;39.041732,-85.907664;39.042151,-85.908007;39.042469,-85.908632;39.043068,-85.909399;39.043853,-85.910117;39.044634,-85.910368;39.044923,-85.910595;39.045185,-85.911068;39.045742,-85.91151;39.046289,-85.911946;39.046851,-85.912499;39.047598,-85.912904;39.048169,-85.913611;39.049255,-85.914146;39.050131,-85.91465;39.05103,-85.917475;39.056234,-85.918693;39.058463,-85.919253;39.059512,-85.91929;39.059582,-85.920317;39.061456,-85.920589;39.061953,-85.920959;39.06264,-85.921481;39.063609,-85.922638;39.065734,-85.923562;39.067432,-85.923685;39.067637,-85.923937;39.068132,-85.924171;39.068537,-85.926147;39.072184,-85.927685;39.075012,-85.928708;39.076892,-85.929371;39.078103,-85.929447;39.078243,-85.929678;39.078665,-85.929755;39.078806,-85.929794;39.078877,-85.929911;39.079091,-85.929951;39.079163,-85.929977;39.079211,-85.930432;39.080051,-85.930568;39.080301,-85.931036;39.081115,-85.931331;39.081596,-85.931645;39.082086,-85.932008;39.08264,-85.932088;39.082762,-85.932585;39.083471,-85.932703;39.083638,-85.933157;39.084236,-85.934893;39.086522,-85.935472;39.087284,-85.936713;39.088918,-85.937023;39.089326,-85.941315;39.094977,-85.94168;39.095452,-85.941813;39.095624,-85.943234;39.097494,-85.943405;39.09772,-85.944282;39.098877,-85.944414;39.09905,-85.945066;39.099901,-85.947432;39.103023,-85.947944;39.103698,-85.948485;39.104404,-85.948768;39.104774,-85.949028;39.105117,-85.950656;39.107259,-85.951199;39.107974,-85.951282;39.108083,-85.951532;39.108413,-85.951616;39.108523,-85.9517;39.108633,-85.951952;39.108966,-85.952037;39.109077,-85.952502;39.109688,-85.953473;39.110964,-85.95367;39.111235,-85.953893;39.111525,-85.954362;39.112135,-85.954679;39.112548,-85.955024;39.113024,-85.955362;39.1135,-85.955452;39.113643,-85.955861;39.11429,-85.956144;39.114794,-85.956551;39.115584,-85.956953;39.116518,-85.957188;39.117161,-85.957473;39.118113,-85.957573;39.118532,-85.957619;39.118756,-85.957754;39.1194,-85.957843;39.120057,-85.957887;39.120491,-85.957893;39.120596,-85.95792;39.121114,-85.957927;39.121234,-85.957956;39.12267,-85.957967;39.123189,-85.957981;39.12388,-85.957985;39.124187,-85.958016;39.12606,-85.958035;39.127182,-85.958053;39.128181,-85.958061;39.128623,-85.958062;39.12867,-85.958109;39.12989,-85.958109;39.129951,-85.958117;39.130394,-85.958118;39.130519,-85.958124;39.130896,-85.958126;39.131022,-85.958112;39.131075,-85.958116;39.131468,-85.95813;39.132496,-85.958137;39.132729,-85.958137;39.132813,-85.958139;39.133158,-85.958142;39.133262,-85.958148;39.133444,-85.958153;39.133592,-85.958158;39.13399,-85.958161;39.134173,-85.958172;39.134767,-85.958205;39.136549,-85.958213;39.136978,-85.958216;39.13709,-85.958247;39.137133,-85.958251;39.137695,-85.958259;39.138516,-85.958254;39.13873,-85.958256;39.139383,-85.958257;39.139488,-85.958271;39.139926,-85.958271;39.139946,-85.958279;39.140465,-85.958274;39.140799,-85.958295;39.141223,-85.958301;39.14171,-85.958313;39.142675,-85.958369;39.14587,-85.958378;39.147003,-85.958393;39.148768,-85.958393;39.150189,-85.958393;39.15022,-85.958403;39.151066,-85.958409;39.152605,-85.958417;39.153144,-85.958422;39.154575,-85.958429;39.156028,-85.958431;39.156471,-85.958438;39.157129,-85.95844;39.157229,-85.958437;39.158001,-85.958448;39.159212,-85.958453;39.160413,-85.958453;39.160436,-85.958461;39.160747,-85.95846;39.161538,-85.95846;39.161953,-85.95846;39.162187,-85.958468;39.164137,-85.958471;39.164787,-85.958473;39.165161,-85.95848;39.165996,-85.958484;39.16639,-85.958497;39.169626,-85.958503;39.170837,-85.958508;39.172101,-85.958514;39.17242,-85.958539;39.173631,-85.958566;39.174374,-85.95861;39.176176,-85.958648;39.177168,-85.958658;39.177425,-85.958701;39.178751,-85.958757;39.180511,-85.958767;39.180816,-85.958799;39.181598,-85.958809;39.182023,-85.958913;39.185166,-85.95894;39.185791,-85.958971;39.186506,-85.958987;39.187552,-85.959038;39.188534,-85.959066;39.189386,-85.959075;39.18966,-85.95912;39.190529,-85.959168;39.192291,-85.959182;39.193467,-85.959172;39.194336,-85.959145;39.194892,-85.959143;39.194947,-85.959082;39.195802,-85.958988;39.196467,-85.95895;39.196717,-85.958935;39.196815,-85.95889;39.197112,-85.958876;39.197211,-85.958728;39.197838,-85.958602;39.198534,-85.958354;39.199734,-85.958264;39.200175,-85.958246;39.200266,-85.958225;39.200382,-85.958223;39.200395,-85.958215;39.200435,-85.958213;39.200449,-85.958201;39.200512,-85.958124;39.200885,-85.958088;39.201062,-85.958018;39.201379,-85.957987;39.201521,-85.957883;39.202199,-85.957832;39.202467,-85.957791;39.202759,-85.95751;39.204116,-85.957341;39.204953,-85.957321;39.205052,-85.957301;39.205151,-85.957284;39.205234,-85.957268;39.205318,-85.957118;39.206062,-85.956865;39.207217,-85.956096;39.211109,-85.955609;39.213509,-85.955411;39.214521,-85.955286;39.215138,-85.955212;39.215544,-85.955106;39.216052,-85.955038;39.216382,-85.954976;39.216731,-85.954827;39.217422,-85.95473;39.21794,-85.954274;39.220289,-85.95422;39.220653,-85.954203;39.220774,-85.954161;39.221155,-85.954122;39.221576,-85.954084;39.222185,-85.954083;39.222209,-85.954071;39.22266,-85.954104;39.223478,-85.954108;39.223674,-85.954121;39.224219,-85.954163;39.225468,-85.954203;39.22639,-85.954244;39.227157,-85.954266;39.228071,-85.954282;39.228674,-85.954316;39.229258,-85.954325;39.229537,-85.954363;39.23065,-85.954398;39.231486,-85.954432;39.23248,-85.954448;39.23291,-85.954462;39.233535,-85.954478;39.233888,-85.954495;39.23454,-85.95455;39.235712,-85.954561;39.236394,-85.95459;39.237141,-85.954602;39.237759,-85.954678;39.239452,-85.954693;39.240116,-85.954722;39.240777,-85.954739;39.241312,-85.954762;39.242033,-85.954807;39.243129,-85.954848;39.243953,-85.954852;39.244256,-85.954882;39.245071,-85.954899;39.245665,-85.954917;39.246572,-85.954917;39.246729,-85.954918;39.247553,-85.954909;39.248196,-85.954888;39.248642,-85.954825;39.249754,-85.954744;39.250481,-85.95472;39.250936,-85.954661;39.251538,-85.954575;39.252587,-85.954527;39.252999,-85.954466;39.253812,-85.95443;39.254132,-85.954371;39.25467,-85.954324;39.25535,-85.954263;39.256024,-85.954206;39.256596,-85.954187;39.256783,-85.954164;39.257093,-85.954157;39.257198,-85.954101;39.257777,-85.954036;39.258375,-85.954017;39.258585,-85.953973;39.259083,-85.953939;39.259453,-85.953925;39.259621,-85.95383;39.260563,-85.953794;39.260934,-85.953788;39.260993,-85.953707;39.261978,-85.9536\\\"+\\\"26;39.26278,-85.95356;39.26349,-85.953473;39.264431,-85.953353;39.265681,-85.953291;39.266179,-85.953199;39.267246,-85.953154;39.267656,-85.953132;39.267934,-85.953116;39.268269,-85.953106;39.268844,-85.95311;39.269114,-85.953129;39.269469,-85.95316;39.269843,-85.953214;39.270307,-85.953256;39.270581,-85.953319;39.270888,-85.95336;39.271155,-85.953366;39.271194,-85.953532;39.271884,-85.953594;39.272083,-85.953659;39.272343,-85.95386;39.272925,-85.954004;39.273305,-85.954131;39.273599,-85.954237;39.273837,-85.954354;39.274101,-85.954516;39.27444,-85.954574;39.274544,-85.954703;39.274772,-85.95505;39.275383,-85.955264;39.275733,-85.955467;39.276058,-85.957023;39.278541,-85.957375;39.279115,-85.957845;39.279868,-85.958056;39.280205,-85.958654;39.281129,-85.958885;39.281486,-85.959135;39.281911,-85.959639;39.282741,-85.960406;39.283961,-85.960525;39.284149,-85.960809;39.284613,-85.961783;39.28617,-85.962176;39.286815,-85.963174;39.288399,-85.963611;39.289118,-85.964497;39.290517,-85.96486;39.291107,-85.965573;39.292247,-85.965696;39.292439,-85.965843;39.292667,-85.966371;39.293515,-85.966629;39.293944,-85.966811;39.294256,-85.966994;39.294604,-85.967088;39.294833,-85.967288;39.295355,-85.967404;39.295765,-85.967457;39.296007,-85.967511;39.296288,-85.967553;39.296589,-85.967565;39.296761,-85.96759;39.297121,-85.967594;39.297399,-85.967553;39.297963,-85.967519;39.298246,-85.967405;39.298848,-85.967238;39.299386,-85.967112;39.299737,-85.966751;39.300517,-85.966548;39.300848,-85.966534;39.300869,-85.966386;39.301102,-85.966172;39.301394,-85.965954;39.301671,-85.965746;39.301925,-85.965664;39.302011,-85.965615;39.302062,-85.96547;39.302214,-85.965422;39.302266,-85.965089;39.30252,-85.96468;39.302899,-85.963711;39.303773,-85.963075;39.304361,-85.962776;39.304661,-85.962675;39.30476,-85.962564;39.304868,-85.962456;39.304967,-85.962374;39.30504,-85.962134;39.305258,-85.962027;39.305356,-85.961676;39.305676,-85.961524;39.305809,-85.961063;39.306214,-85.960416;39.306806,-85.96001;39.307163,-85.959829;39.307324,-85.959513;39.307622,-85.958918;39.30816,-85.958552;39.308498,-85.958398;39.308641,-85.956844;39.310035,-85.95649;39.310362,-85.956011;39.310791,-85.955658;39.311115,-85.954945;39.311772,-85.954708;39.312004,-85.95451;39.312198,-85.954095;39.312591,-85.95348;39.313191,-85.952942;39.313717,-85.951619;39.315024,-85.950571;39.316057,-85.950341;39.316277,-85.949917;39.316702,-85.949831;39.316786,-85.949464;39.317147,-85.948983;39.317628,-85.948617;39.317987,-85.948077;39.318524,-85.946552;39.320015,-85.946205;39.320368,-85.94619;39.320385,-85.945504;39.321062,-85.944543;39.322037,-85.944311;39.322285,-85.944038;39.322609,-85.943792;39.322927,-85.943348;39.32358,-85.94312;39.32397,-85.942865;39.324444,-85.942565;39.325164,-85.942412;39.325588,-85.942219;39.326279,-85.942171;39.326528,-85.94208;39.32709,-85.942054;39.327344,-85.942016;39.327862,-85.942025;39.328741,-85.942033;39.329182,-85.942069;39.331023,-85.942078;39.331944,-85.942101;39.332517,-85.942101;39.332571,-85.942102;39.33342,-85.942119;39.334061,-85.942124;39.334781,-85.942135;39.335157,-85.94214;39.335576,-85.942159;39.336839,-85.942176;39.337405,-85.942184;39.33812,-85.942203;39.339085,-85.942208;39.339744,-85.942231;39.340486,-85.942276;39.343728,-85.942296;39.344593,-85.942304;39.344917,-85.94231;39.345614,-85.942332;39.346853,-85.942346;39.347366,-85.942347;39.347599\\\\nPOLYLINE,-85.942041;39.347599,-85.942039;39.347114,-85.942011;39.346031,-85.941984;39.344356,-85.941978;39.343659,-85.941979;39.343081,-85.941956;39.342452,-85.94193;39.341017,-85.941929;39.340605,-85.941896;39.338886,-85.941866;39.337186,-85.941854;39.335825,-85.94183;39.334899,-85.941818;39.333842,-85.94179;39.332875,-85.941789;39.332579,-85.941788;39.332375,-85.941763;39.330374,-85.941747;39.330009,-85.941732;39.329258,-85.941716;39.328003,-85.941724;39.327718,-85.941771;39.327095,-85.941816;39.326799,-85.94187;39.326491,-85.941999;39.325958,-85.942161;39.325414,-85.942325;39.324948,-85.942472;39.324614,-85.94262;39.324308,-85.942889;39.32381,-85.943065;39.323499,-85.943242;39.323232,-85.943465;39.322907,-85.943671;39.322633,-85.943927;39.322322,-85.944208;39.322,-85.944565;39.321614,-85.945079;39.321097,-85.94579;39.320407,-85.946836;39.319372,-85.947497;39.318704,-85.947982;39.318228,-85.948278;39.317946,-85.948668;39.317556,-85.949303;39.316941,-85.950319;39.315935,-85.950717;39.315545,-85.951097;39.315161,-85.95295;39.313325,-85.954296;39.312007,-85.954651;39.31168,-85.956065;39.310379,-85.95668;39.309827,-85.95864;39.308022,-85.959334;39.307398,-85.959514;39.307199,-85.961739;39.30516,-85.961929;39.305025,-85.96222;39.304751,-85.962423;39.30456,-85.963518;39.303525,-85.964243;39.302926,-85.965021;39.302232,-85.965494;39.301812,-85.965749;39.301427,-85.966106;39.30096,-85.966285;39.300692,-85.966465;39.300388,-85.966612;39.3001,-85.966765;39.299778,-85.966886;39.299472,-85.966975;39.299221,-85.967059;39.298958,-85.967125;39.298711,-85.967191;39.298435,-85.967244;39.29805,-85.967281;39.297712,-85.967294;39.297422,-85.967287;39.297144,-85.967274;39.296886,-85.967247;39.296616,-85.967202;39.296286,-85.967127;39.295931,-85.967056;39.29565,-85.966982;39.295395,-85.966926;39.295209,-85.966835;39.294987,-85.966782;39.29487,-85.966523;39.294338,-85.966429;39.294171,-85.966268;39.2939,-85.965259;39.292279,-85.963689;39.28977,-85.963026;39.288692,-85.962589;39.288007,-85.962267;39.287485,-85.961841;39.286813,-85.961422;39.286131,-85.961137;39.285687,-85.960765;39.285079,-85.960527;39.284702,-85.958412;39.281253,-85.955362;39.276596,-85.953995;39.274027,-85.953807;39.273605,-85.953672;39.273247,-85.953439;39.272588,-85.95328;39.272073,-85.95312;39.271428,-85.953034;39.271039,-85.95298;39.27074,-85.952932;39.270421,-85.952842;39.269624,-85.952823;39.269321,-85.952812;39.26873,-85.952818;39.2682,-85.952837;39.267858,-85.952865;39.267505,-85.952899;39.267217,-85.95294;39.266719,-85.953116;39.264882,-85.953169;39.264241,-85.953228;39.263671,-85.953262;39.263246,-85.953417;39.261741,-85.953664;39.259094,-85.953681;39.258912,-85.953766;39.258208,-85.953871;39.257053,-85.954025;39.255191,-85.954059;39.254917,-85.954103;39.254333,-85.954248;39.252818,-85.95427;39.25251,-85.954409;39.250866,-85.954443;39.250576,-85.954524;39.249622,-85.95456;39.249142,-85.954581;39.248622,-85.954616;39.247358,-85.954609;39.246194,-85.95454;39.244277,-85.954493;39.242844,-85.954464;39.242153,-85.954436;39.241094,-85.954323;39.238219,-85.954276;39.236838,-85.954238;39.235986,-85.954224;39.235391,-85.954172;39.234121,-85.954145;39.2332,-85.9541;39.232129,-85.954039;39.230134,-85.95401;39.229552,-85.954001;39.229364,-85.953985;39.228839,-85.953962;39.228323,-85.953935;39.227363,-85.953906;39.226612,-85.953871;39.225874,-85.95386;39.225482,-85.953811;39.224196,-85.953788;39.223492,-85.953784;39.223075,-85.953764;39.222686,-85.95378;39.222239,-85.953793;39.221878,-85.953818;39.221547,-85.95388;39.220931,-85.95401;39.22007,-85.954204;39.21906,-85.95486;39.215737,-85.954982;39.215152,-85.95509;39.214586,-85.955747;39.211228,-85.95599;39.20994,-85.956206;39.208828,-85.956381;39.207898,-85.956737;39.206195,-85.956881;39.205426,-85.956892;39.205369,-85.956927;39.20519,-85.956966;39.204992,-85.957299;39.203205,-85.957427;39.202519,-85.957551;39.202022,-85.957879;39.200517,-85.957892;39.200453,-85.957906;39.200376,-85.957922;39.200291,-85.957945;39.200169,-85.958054;39.199601,-85.958394;39.19761,-85.958462;39.197217,-85.958491;39.197133,-85.958636;39.196365,-85.958696;39.195977,-85.958746;39.195549,-85.958816;39.194759,-85.958851;39.194218,-85.958866;39.193509,-85.958849;39.192173,-85.958812;39.191102,-85.958795;39.190414,-85.958759;39.189513,-85.958716;39.188143,-85.958687;39.187537,-85.958652;39.186047,-85.958617;39.185361,-85.958573;39.184037,-85.958521;39.182658,-85.958504;39.181965,-85.958452;39.180815,-85.958455;39.180607,-85.958438;39.18005,-85.958434;39.179771,-85.958399;39.178688,-85.958328;39.176463,-85.958266;39.17469,-85.95823;39.173365,-85.958225;39.172178,-85.958207;39.170844,-85.958169;39.164797,-85.958156;39.162779,-85.958152;39.161544,-85.958143;39.158198,-85.95813;39.156021,-85.958087;39.148898,-85.958086;39.148769,-85.958017;39.142678,-85.957985;39.140752,-85.957965;39.139957,-85.957949;39.139337,-85.957935;39.139017,-85.957891;39.137182,-85.957915;39.137101,-85.957913;39.137018,-85.957862;39.134172,-85.957811;39.131215,-85.957787;39.131162,-85.957763;39.129794,-85.957774;39.129527,-85.957752;39.128264,-85.957715;39.126076,-85.957677;39.123955,-85.957666;39.123199,-85.957643;39.121668,-85.95763;39.121439,-85.957616;39.120991,-85.957551;39.120128,-85.957457;39.119475,-85.957338;39.118832,-85.95722;39.118294,-85.95694;39.117341,-85.956662;39.116598,-85.956409;39.115984,-85.956075;39.115275,-85.955792;39.114751,-85.955385;39.114061,-85.954948;39.11339,-85.954003;39.11213,-85.95381;39.111872,-85.951275;39.108532,-85.950507;39.107528,-85.949578;39.106301,-85.948914;39.105439,-85.948711;39.105163,-85.9483;39.104621,-85.946897;39.10277,-85.946097;39.101733,-85.944953;39.10021,-85.944025;39.099002,-85.943843;39.098762,-85.943157;39.097841,-85.942918;39.097531,-85.936467;39.089052,-85.935301;39.087525,-85.933727;39.085446,-85.933168;39.084722,-85.932947;39.084418,-85.932319;39.083578,-85.932207;39.083427,-85.932184;39.083395,-85.931594;39.082524,-85.931089;39.081748,-85.930616;39.080958,-85.930271;39.080348,-85.929746;39.079388,-85.929467;39.078878,-85.925958;39.072226,-85.922426;39.065792,-85.920273;39.061971,-85.918565;39.058913,-85.917614;39.057253,-85.91577;39.054078,-85.914072;39.051182,-85.912449;39.048434,-85.911322;39.046708,-85.910802;39.046017,-85.910573;39.04573,-85.909747;39.044719,-85.909434;39.044362,-85.909096;39.043996,-85.90871;39.043567,-85.90828;39.04313,-85.907507;39.042369,-85.907219;39.042107,-85.907012;39.041913,-85.906956;39.04186,-85.905926;39.040956,-85.905798;39.040846,-85.905231;39.040358\\\\nPOLYLINE,-86.333674;39.924169,-86.333876;39.92443,-86.33414;39.92477,-86.334502;39.9252,-86.33457;39.92528,-86.33472;39.92545,-86.33534;39.92615,-86.335676;39.926563,-86.33604;39.92701,-86.33657;39.92764,-86.33702;39.9282,-86.33794;39.92929,-86.338491;39.929949,-86.33871;39.93021,-86.339465;39.931101,-86.33976;39.93146,-86.34037;39.932184,-86.34077;39.93266,-86.342182;39.934373,-86.34317;39.935521,-86.34376;39.93623,-86.344742;39.937416,-86.34522;39.937973,-86.345454;39.938204,-86.345486;39.938244,-86.34554;39.93831,-86.346404;39.939366,-86.34711;39.94023,-86.34841;39.94172,-86.34915;39.94254,-86.35002;39.94347,-86.350793;39.944243,-86.35082;39.94427,-86.351169;39.944612,-86.35139;39.94483,-86.35208;39.94547,-86.35239;39.94574,-86.352535;39.945917,-86.352731;39.94609,-86.3534;39.94672,-86.353616;39.946919,-86.35393;39.94721,-86.35434;39.94757,-86.35489;39.94804,-86.355407;39.948467,-86.355444;39.948498,-86.35564;39.94866,-86.356098;39.949015,-86.356119;39.949034,-86.35644;39.94931,-86.358765;39.951188,-86.359613;39.951874,-86.361013;39.95303,-86.362608;39.954318,-86.364459;39.95581,-86.36615;39.95718,-86.3672;39.95803,-86.36813;39.9588,-86.36951;39.9599,-86.370318;39.96058,-86.371344;39.961403,-86.373494;39.963133,-86.374422;39.963907,-86.374982;39.964375,-86.375826;39.965048,-86.376712;39.965757,-86.377589;39.966484,-86.378713;39.96738,-86.37902;39.96766,-86.379103;39.967728,-86.380826;39.969105,-86.383186;39.971027,-86.38431;39.971932,-86.384931;39.972445,-86.385719;39.973089,-86.387501;39.97453,-86.387993;39.974915,-86.388258;39.975146,-86.388592;39.975416,-86.389814;39.976405,-86.391344;39.977641,-86.392569;39.978632,-86.392653;39.978699,-86.393052;39.979017,-86.393253;39.9792,-86.394022;39.979844,-86.39415;39.979943,-86.394427;39.980156,-86.394578;39.980274,-86.395086;39.980688,-86.395248;39.980815,-86.395523;39.981033,-86.395849;39.981306,-86.395931;39.981371,-86.396581;39.981892,-86.397157;39.982388,-86.397203;39.982427,-86.397503;39.982653,-86.397718;39.982817,-86.397738;39.982841,-86.397788;39.982885,-86.39784;39.98293,-86.399009;39.983878,-86.40059;39.98516,-86.40152;39.98593,-86.402048;39.986398,-86.40362;39.987669,-86.405217;39.988966,-86.405973;39.989604,-86.406952;39.990393,-86.408151;39.991344,-86.408916;39.991974,-86.411029;39.993728,-86.412078;39.994563,-86.412741;39.995122,-86.413711;39.995915,-86.414126;39.996302,-86.414252;39.996413,-86.41567;39.997674,-86.416104;39.998047,-86.417549;39.999343,-86.418286;40.00001,-86.419518;40.001088,-86.420345;40.001815,-86.421276;40.002669,-86.421547;40.002907,-86.421924;40.003238,-86.422895;40.004119,-86.423342;40.004487,-86.424606;40.005631,-86.426141;40.006988,-86.426696;40.007454,-86.427825;40.008471,-86.429714;40.010164,-86.430628;40.010957,-86.431701;40.011899,-86.433734;40.013709,-86.434285;40.014185,-86.43481;40.01459,-86.43595;40.0156,-86.436444;40.016033,-86.43709;40.0166,-86.437736;40.017178,-86.4385;40.01786,-86.43981;40.01902,-86.44038;40.01954,-86.441602;40.020627,-86.44283;40.02172,-86.442893;40.021775,-86.44361;40.0224,-86.444425;40.023136,-86.44453;40.02323,-86.44523;40.02383,-86.446;40.02446,-86.44642;40.02478,-86.446968;40.025161,-86.44701;40.02519,-86.44787;40.02573,-86.4486;40.02616,-86.44949;40.0266,-86.45026;40.02697,-86.45088;40.02722,-86.451026;40.027299,-86.451272;40.027406,-86.45147;40.02749,-86.45163;40.02754,-86.45172;40.027574,-86.4524;40.02783,-86.452991;40.028011,-86.45328;40.0281,-86.453421;40.028138,-86.453609;40.028188,-86.4538;40.02824,-86.454172;40.028346,-86.454472;40.028399,-86.45487;40.028524,-86.455579;40.028697,-86.45567;40.02872,-86.45616;40.02885,-86.4564;40.02891,-86.456911;40.029039,-86.45771;40.02924,-86.45917;40.029597,-86.46004;40.02981,-86.4612;40.03011,-86.46271;40.03049,-86.46367;40.03077,-86.46483;40.03114,-86.4654;40.03133,-86.465994;40.031505,-86.466988;40.03187,-86.467727;40.032158,-86.468001;40.032282,-86.468624;40.032557,-86.46882;40.03264,-86.468882;40.032667,-86.469085;40.032758,-86.46949;40.032939,-86.46967;40.03302,-86.47057;40.03343,-86.470701;40.033494,-86.4711;40.03369,-86.472123;40.034213,-86.47284;40.0346,-86.472859;40.034611,-86.47349;40.034958,-86.474;40.03526,-86.47463;40.035623,-86.47504;40.03586,-86.47651;40.03668,-86.47771;40.03736,-86.478663;40.037893,-86.47973;40.03849,-86.480009;40.038649,-86.480402;40.038874,-86.48043;40.03889,-86.48101;40.03923,-86.48154;40.03955,-86.48157;40.039569,-86.481953;40.039813,-86.48242;40.04011,-86.4831;40.04057,-86.483239;40.040672,-86.48395;40.04119,-86.48466;40.04174,-86.48523;40.04221,-86.48599;40.04284,-86.48682;40.04362,-86.48745;40.04426,-86.487902;40.044719,-86.488158;40.045032,-86.488401;40.045316,-86.48855;40.04549,-86.48898;40.04601,-86.489112;40.046183,-86.48934;40.04648,-86.48944;40.0466,-86.489617;40.046833,-86.48969;40.04693,-86.49011;40.04752,-86.490395;40.047934,-86.49042;40.04797,-86.490637;40.048314,-86.490692;40.048401,-86.49071;40.04843,-86.490819;40.048567,-86.49105;40.048946,-86.491212;40.04922,-86.49137;40.04955,-86.491477;40.049751,-86.491897;40.050547,-86.49225;40.05132,-86.49244;40.0518,-86.492737;40.052546,-86.4929;40.05303,-86.4931;40.05363,-86.493203;40.053999,-86.493209;40.054022,-86.493229;40.054092,-86.493236;40.054116,-86.493247;40.054155,-86.493258;40.054193,-86.49328;40.054272,-86.493291;40.054312,-86.493293;40.054321,-86.493302;40.05435,-86.493305;40.05436,-86.493311;40.054382,-86.493314;40.054394,-86.493317;40.054403,-86.49335;40.05452,-86.493475;40.054998,-86.49356;40.055296,-86.49367;40.05589,-86.493788;40.056684,-86.49385;40.0571,-86.493866;40.057262,-86.493872;40.057327,-86.493891;40.057524,-86.493898;40.05759,-86.49393;40.05791,-86.493939;40.058044,-86.49404;40.05939,-86.494041;40.059409,-86.49408;40.059864,-86.494157;40.060787,-86.4942;40.0613,-86.49428;40.062,-86.49438;40.06259,-86.49453;40.0632,-86.494626;40.063519,-86.49469;40.06373,-86.49482;40.06418,-86.494933;40.064464,-86.49499;40.064622,-86.495041;40.064762,-86.49516;40.06509,-86.495468;40.065838,-86.49551;40.06594,-86.495617;40.066195,-86.495659;40.066297,-86.495788;40.066604,-86.495831;40.066707,-86.495844;40.066739,-86.495886;40.066838,-86.4959;40.066871,-86.495914;40.066904,-86.49595;40.06699,-86.495956;40.067005,-86.49597;40.067039,-86.496081;40.06731,-86.496132;40.067436,-86.496415;40.068124,-86.496527;40.068396,-86.496551;40.068455,-86.49661;40.0686,-86.496624;40.068632,-86.496651;40.068691,-86.496699;40.068796,-86.496742;40.06889,-86.496762;40.068934,-86.49687;40.06917,-86.497013;40.069491,-86.497103;40.069692,-86.497139;40.069765,-86.497165;40.069809,-86.497198;40.069889,-86.497411;40.07046,-86.49761;40.07095,-86.497703;40.071179,-86.49823;40.07247,-86.498274;40.072581,-86.498397;40.072893,-86.498446;40.073015,-86.498679;40.073546,-86.49876;40.07373,-86.49897;40.07417,-86.49922;40.07473,-86.499341;40.075034,-86.4994;40.07518,-86.4995;40.07548,-86.499527;40.075545,-86.50006;40.07684,-86.500145;40.07704,-86.50034;40.0775,-86.50067;40.07832,-86.50104;40.07922,-86.50134;40.07991,-86.502003;40.081525,-86.50205;40.08164,-86.50237;40.08248,-86.5026;40.08303,-86.50269;40.08326,-86.502966;40.083892,-86.503466;40.085065,-86.503797;40.085916,-86.504;40.08639,-86.50428;40.08709,-86.50462;40.08788,-86.50535;40.08965,-86.506219;40.091712,-86.50675;40.09306,-86.507253;40.094221,-86.5076;40.09512,-86.507956;40.095936,-86.50821;40.09657,-86.508471;40.097181,-86.508597;40.097472,-86.508769;40.09789,-86.509094;40.098698,-86.509184;40.098928,-86.509414;40.099456,-86.50959;40.09991,-86.50989;40.1006,-86.51017;40.10127,-86.510215;40.101385,-86.51034;40.1017,-86.510795;40.102746,-86.511151;40.10363,-86.51139;40.10435,-86.511524;40.104698,-86.511553;40.104803,-86.51162;40.10499,-86.511651;40.105091,-86.511681;40.105189,-86.51209;40.10653,-86.51241;40.10761,-86.512446;40.107741,-86.5126;40.10829,-86.513033;40.109754,-86.513448;40.111171,-86.513981;40.113061,-86.514116;40.113499,-86.51445;40.11474,-86.51465;40.115426,-86.51476;40.1158,-86.51486;40.11619,-86.515299;40.117601,-86.51539;40.117987,-86.51544;40.11815,-86.515491;40.118326,-86.51573;40.11914,-86.515788;40.119347,-86.51587;40.11964,-86.515885;40.119689,-86.516078;40.120347,-86.5163;40.1211,-86.51653;40.12178,-86.516687;40.122313,-86.51674;40.12249,-86.51678;40.122653,-86.516793;40.122673,-86.51698;40.12344,-86.517097;40.123849,-86.517673;40.125855,-86.51768;40.12588,-86.51788;40.12652,-86.51793;40.12672,-86.518055;40.127166,-86.51823;40.12779,-86.5185;40.12871,-86.518603;40.1291,-86.51863;40.1292,-86.51911;40.130777,-86.519196;40.130971,-86.51929;40.13132,-86.51944;40.13187,-86.51952;40.13219,-86.519618;40.132445,-86.51977;40.13284,-86.52004;40.1334,-86.5203;40.13388,-86.520769;40.134585,-86.52115;40.13507,-86.52166;40.13561,-86.52212;40.13612,-86.52227;40.13627,-86.52313;40.13721,-86.5238;40.13793,-86.52434;40.13853,-86.524832;40.139061,-86.52573;40.14003,-86.52627;40.14063,-86.526735;40.141124,-86.52727;40.14172,-86.528058;40.14257,-86.52828;40.14281,-86.528918;40.143507,-86.529275;40.143895,-86.53006;40.14472,-86.530552;40.145276,-86.53117;40.14593,-86.532006;40.146842,-86.53237;40.14724,-86.53298;40.14789,-86.533325;40.148264,-86.534031;40.149029,-86.53441;40.14944,-86.53576;40.15089,-86.536161;40.151309,-86.536732;40.151945,-86.536798;40.152016,-86.536865;40.152087,-86.536926;40.152151,-86.536986;40.152215,-86.53792;40.15324,-86.53835;40.15374,-86.538664;40.154134,-86.53953;40.15522,-86.54022;40.15618,-86.54069;40.15685,-86.54124;40.15768,-86.54144;40.158,-86.54196;40.15879,-86.54257;40.15975,-86.54329;40.16084,-86.543305;40.160863,-86.54438;40.16254,-86.544776;40.16315,-86.54494;40.1634,-86.54522;40.163832,-86.54529;40.16394,-86.545972;40.165001,-86.546537;40.165862,-86.54666;40.16606,-86.546979;40.166538,-86.547076;40.166685,-86.54737;40.167126,-86.547469;40.167273,-86.547844;40.167837,-86.54792;40.16795,-86.54824;40.16844,-86.54857;40.16896,-86.54882;40.16933,-86.548952;40.169543,-86.549121;40.169777,-86.549668;40.170619,-86.54991;40.17097,-86.550098;40.171219,-86.55073;40.17206,-86.55104;40.17243,-86.55202;40.17358,-86.552707;40.174328,-86.55304;40.17469,-86.553993;40.175718,-86.554746;40.176472,-86.55501;40.176785,-86.55529;40.17712,-86.555431;40.177268,-86.555844;40.177702\\\\nPOLYLINE,-86.333261;39.924139,-86.333435;39.924349,-86.333957;39.92498,-86.33404;39.92508,-86.33412;39.9252,-86.33447;39.92559,-86.335004;39.926209,-86.335213;39.926462,-86.33587;39.92725,-86.33637;39.92785,-86.33733;39.92902,-86.338085;39.929905,-86.33826;39.93011,-86.339115;39.931101,-86.33961;39.93173,-86.3405;39.93278,-86.341235;39.933671,-86.34163;39.93415,-86.341814;39.934387,-86.342125;39.934805,-86.34245;39.93518,-86.3433;39.93618,-86.343687;39.936645,-86.344329;39.937361,-86.34524;39.93845,-86.34604;39.93943,-86.34613;39.939542,-86.3467;39.94025,-86.346726;39.940279,-86.346876;39.940449,-86.347326;39.940961,-86.347477;39.941132,-86.34773;39.94142,-86.348293;39.942047,-86.34887;39.94269,-86.34981;39.94367,-86.350842;39.944702,-86.35102;39.94488,-86.351471;39.945345,-86.351602;39.94548,-86.352104;39.945917,-86.35212;39.94593,-86.3529;39.94666,-86.353267;39.946988,-86.35366;39.94734,-86.353984;39.947623,-86.35437;39.94796,-86.354989;39.948434,-86.355325;39.948723,-86.355419;39.948836,-86.355442;39.948858,-86.355864;39.949219,-86.35691;39.95004,-86.35937;39.95205,-86.36213;39.95428,-86.36347;39.95538,-86.36511;39.95671,-86.36685;39.95809,-86.36911;39.95991,-86.370103;39.960778,-86.370863;39.961384,-86.37422;39.96413,-86.37613;39.96569,-86.37727;39.96661,-86.378302;39.967427,-86.37852;39.9676,-86.378536;39.967613,-86.380484;39.969125,-86.382598;39.970945,-86.38799;39.97527,-86.392197;39.9787,-86.393036;39.979361,-86.393368;39.979656,-86.39364;39.97989,-86.394008;39.980183,-86.394089;39.980247,-86.39432;39.98043,-86.39527;39.98121,-86.39567;39.98154,-86.39666;39.98233,-86.397037;39.982641,-86.39723;39.9828,-86.397598;39.983128,-86.39826;39.98365,-86.39988;39.98493,-86.40082;39.9857,-86.40129;39.9861,-86.40228;39.98689,-86.40306;39.98753,-86.403251;39.98769,-86.403977;39.988257,-86.40534;39.98937,-86.40657;39.99037,-86.409252;39.992571,-86.4103;39.9934,-86.411309;39.994255,-86.412946;39.995589,-86.41363;39.99616,-86.413795;39.996326,-86.413911;39.99642,-86.414914;39.997305,-86.4158;39.99807,-86.416174;39.998443,-86.420129;40.001951,-86.42101;40.00271,-86.421799;40.003429,-86.42299;40.00445,-86.423152;40.004596,-86.42392;40.00529,-86.425063;40.006335,-86.42695;40.00797,-86.42815;40.00905,-86.42925;40.01003,-86.43063;40.01124,-86.433086;40.013429,-86.434313;40.01453,-86.435269;40.015411,-86.436209;40.01619,-86.43663;40.01656,-86.43788;40.0177,-86.440362;40.019903,-86.441351;40.020785,-86.44235;40.02163,-86.442807;40.02204,-86.44341;40.02258,-86.44408;40.02317,-86.444135;40.023224,-86.44462;40.023602,-86.44585;40.02463,-86.44633;40.02499,-86.446588;40.025166,-86.44677;40.02529,-86.44731;40.02564,-86.44779;40.02594,-86.44867;40.02644,-86.44938;40.0268,-86.45044;40.02729,-86.45087;40.02748,-86.45187;40.02786,-86.452748;40.028164,-86.45306;40.028266,-86.4535;40.02841,-86.45444;40.02865,-86.45647;40.02915,-86.45765;40.02943,-86.46211;40.03055,-86.46313;40.03082,-86.46451;40.03125,-86.46531;40.03151,-86.467501;40.032351,-86.468418;40.032715,-86.469282;40.033076,-86.47104;40.0339,-86.47258;40.03471,-86.47305;40.03499,-86.47337;40.03517,-86.47426;40.03569,-86.47507;40.03613,-86.4761;40.03672,-86.47712;40.03728,-86.478626;40.03811,-86.47932;40.03852,-86.480013;40.038911,-86.48074;40.03932,-86.48145;40.03976,-86.48242;40.04038,-86.48358;40.04119,-86.48448;40.04188,-86.48506;40.04236,-86.4856;40.04282,-86.48619;40.04336,-86.48658;40.04375,-86.48682;40.04402,-86.48718;40.04439,-86.487289;40.044487,-86.487714;40.04491,-86.488536;40.045836,-86.48905;40.04649,-86.48915;40.0466,-86.4893;40.04682,-86.48971;40.04737,-86.49034;40.0483,-86.49052;40.0486,-86.490697;40.048895,-86.49112;40.04964,-86.49152;40.05039,-86.49194;40.05126,-86.4923;40.05212,-86.492656;40.05297,-86.49279;40.05344,-86.492931;40.053902,-86.492986;40.054083,-86.493017;40.054185,-86.493037;40.054251,-86.493048;40.054298,-86.49339;40.05585,-86.49351;40.05657,-86.493616;40.057336,-86.49362;40.05736,-86.49364;40.05759,-86.493651;40.057719,-86.49367;40.05794,-86.49371;40.05869,-86.493706;40.058934,-86.4937;40.05949,-86.49364;40.06028,-86.4936;40.06071,-86.49361;40.06145,-86.493665;40.061953,-86.49377;40.062569,-86.49383;40.06283,-86.49395;40.06329,-86.49413;40.06373,-86.49418;40.06388,-86.49436;40.06423,-86.4944;40.064316,-86.49454;40.06461,-86.49484;40.06516,-86.49504;40.06558,-86.49521;40.06597,-86.495243;40.066043,-86.49531;40.066164,-86.495497;40.066532,-86.49561;40.066825,-86.495723;40.067102,-86.495804;40.067302,-86.496177;40.068202,-86.496644;40.069292,-86.496714;40.069506,-86.497052;40.070325,-86.49717;40.070647,-86.497259;40.070854,-86.497343;40.071089,-86.49752;40.07153,-86.49784;40.07227,-86.498073;40.07286,-86.498107;40.072947,-86.49836;40.0735,-86.498581;40.074,-86.49887;40.07467,-86.49908;40.07517,-86.499213;40.075518,-86.49922;40.075537,-86.49942;40.07606,-86.49979;40.07697,-86.50005;40.07757,-86.50022;40.07802,-86.50042;40.0785,-86.50072;40.0792,-86.50103;40.07997,-86.50125;40.08044,-86.50154;40.08118,-86.501794;40.081789,-86.50205;40.08245,-86.50229;40.08303,-86.502677;40.083941,-86.502871;40.084402,-86.503015;40.08474,-86.503182;40.08516,-86.50363;40.08624,-86.50391;40.08697,-86.50428;40.0878,-86.50463;40.08868,-86.50497;40.08949,-86.50572;40.09131,-86.50612;40.092254,-86.50633;40.09278,-86.50669;40.09369,-86.507266;40.09502,-86.508277;40.097472,-86.508976;40.099181,-86.509261;40.099812,-86.50954;40.1005,-86.509897;40.101382,-86.510411;40.102597,-86.510664;40.103179,-86.510921;40.103847,-86.511237;40.104712,-86.511282;40.104835,-86.511521;40.105566,-86.511675;40.106013,-86.511968;40.107005,-86.512194;40.107818,-86.512347;40.108373,-86.512555;40.109113,-86.512799;40.109921,-86.513268;40.111599,-86.51359;40.11281,-86.51402;40.11429,-86.51429;40.1153,-86.51457;40.11623,-86.51478;40.11698,-86.515055;40.117862,-86.51507;40.11791,-86.515572;40.119667,-86.51561;40.1198,-86.51586;40.12069,-86.516088;40.121511,-86.516174;40.121823,-86.516192;40.12189,-86.516242;40.12205,-86.516327;40.122303,-86.51756;40.12651,-86.51796;40.12796,-86.51825;40.12891,-86.51842;40.12956,-86.518614;40.130246,-86.518662;40.130412,-86.518695;40.130592,-86.51889;40.1312,-86.51906;40.13179,-86.51916;40.13205,-86.5194;40.13274,-86.51971;40.13347,-86.52001;40.134,-86.52028;40.13442,-86.52057;40.13483,-86.52096;40.13532,-86.52182;40.13629,-86.52294;40.13753,-86.52354;40.13822,-86.52393;40.13864,-86.52452;40.13932,-86.52508;40.13994,-86.5256;40.14053,-86.526124;40.141111,-86.52746;40.14264,-86.528548;40.143859,-86.52936;40.14475,-86.530019;40.145524,-86.53149;40.14717,-86.532064;40.147825,-86.532699;40.148527,-86.533364;40.149265,-86.53443;40.15046,-86.534997;40.151097,-86.535352;40.151507,-86.535965;40.152169,-86.536031;40.152241,-86.536094;40.152308,-86.53631;40.152568,-86.5365;40.152807,-86.536658;40.152983,-86.53719;40.15356,-86.537359;40.153762,-86.537574;40.154075,-86.538034;40.154558,-86.53865;40.15529,-86.53907;40.15584,-86.53914;40.155936,-86.53983;40.15689,-86.54065;40.15804,-86.541234;40.158924,-86.541989;40.160039,-86.542316;40.160576,-86.54265;40.161025,-86.54323;40.16184,-86.543697;40.162498,-86.54377;40.1626,-86.54413;40.16315,-86.54428;40.16338,-86.544632;40.163865,-86.544934;40.164301,-86.54529;40.16484,-86.5459;40.16572,-86.54611;40.16603,-86.54649;40.16659,-86.546603;40.166753,-86.546687;40.166874,-86.54694;40.167239,-86.547025;40.167361,-86.548639;40.169739,-86.54985;40.171408,-86.550613;40.172374,-86.551376;40.173286,-86.552555;40.17461,-86.553348;40.175402,-86.554083;40.176205,-86.555446;40.177693\\\\nPOLYLINE,-86.936206;40.561663,-86.936901;40.56249,-86.94181;40.568643,-86.94355;40.5708,-86.94415;40.57158,-86.94526;40.57295,-86.94624;40.57418,-86.94726;40.5754,-86.94777;40.57596,-86.94824;40.57644,-86.94887;40.57707,-86.94956;40.57769,-86.95024;40.57827,-86.95121;40.57903,-86.95226;40.57981,-86.95323;40.58052,-86.95541;40.5821,-86.95832;40.58424,-86.96026;40.58567,-86.961133;40.586296,-86.96164;40.58666,-86.9629;40.5876,-86.96382;40.58827,-86.96612;40.58996,-86.96737;40.59086,-86.96841;40.59163,-86.96938;40.59241,-86.97031;40.59329,-86.97122;40.59426,-86.971705;40.594858,-86.97195;40.59516,-86.97282;40.59639,-86.973338;40.597109,-86.97354;40.59739,-86.97438;40.59857,-86.97481;40.59915,-86.97583;40.60057,-86.97662;40.60168,-86.977;40.60217,-86.97864;40.60446,-86.97935;40.60546,-86.98031;40.60679,-86.98106;40.60785,-86.98162;40.60863,-86.98188;40.609,-86.98292;40.61043,-86.983443;40.611124,-86.983528;40.611238,-86.98356;40.61128,-86.98424;40.61211,-86.98471;40.61265,-86.9852;40.6132,-86.98571;40.61376,-86.98652;40.61461,-86.98762;40.6158,-86.98865;40.61689,-86.98953;40.61783,-86.99035;40.61868,-86.99129;40.61968,-86.991524;40.619933,-86.991853;40.620291,-86.99224;40.62071,-86.99338;40.62193,-86.99427;40.62287,-86.99492;40.62358,-86.99717;40.62597,-86.99831;40.62717,-86.99918;40.62811,-87.00067;40.62967,-87.0023;40.63143,-87.00325;40.63243,-87.00428;40.63354,-87.00573;40.63506,-87.0063;40.63567,-87.00706;40.63647,-87.00989;40.6395,-87.01173;40.64145,-87.01323;40.64307,-87.01503;40.64497,-87.01723;40.64731,-87.018584;40.648743,-87.02065;40.65092,-87.02151;40.65186,-87.02303;40.6535,-87.02443;40.65497,-87.02562;40.65624,-87.02626;40.65689,-87.02745;40.65817,-87.03025;40.66114,-87.03059;40.66149,-87.03086;40.66175,-87.0313;40.66214,-87.03189;40.66264,-87.03262;40.66321,-87.03303;40.66349,-87.03351;40.66381,-87.03425;40.66426,-87.03498;40.66472,-87.03566;40.66504,-87.03606;40.66525,-87.03684;40.66564,-87.03736;40.66591,-87.03807;40.66629,-87.03904;40.6668,-87.03996;40.6673,-87.04073;40.6677,-87.04082;40.66775,-87.04119;40.66794,-87.04144;40.66805,-87.04227;40.66848,-87.04282;40.66877,-87.04443;40.66967,-87.04553;40.67021,-87.04603;40.67047,-87.0468;40.67085,-87.04743;40.67119,-87.04802;40.67149,-87.04848;40.67173,-87.04872;40.67186,-87.04965;40.67246,-87.05005;40.67274,-87.05084;40.67342,-87.05141;40.67406,-87.0518;40.67457,-87.05246;40.67579,-87.05273;40.67658,-87.05322;40.67797,-87.053238;40.678016,-87.0535;40.67867,-87.05421;40.68066,-87.05461;40.68167,-87.05499;40.68278,-87.0555;40.68421,-87.05599;40.68561,-87.05647;40.68695,-87.05679;40.68774,-87.05705;40.68851,-87.057116;40.688662,-87.05724;40.68895,-87.05745;40.68956,-87.05775;40.69032,-87.05812;40.6911,-87.05824;40.69134,-87.05845;40.69178,-87.05897;40.6927,-87.05925;40.69313,-87.05943;40.69347,-87.06046;40.69503,-87.06075;40.69542,-87.06121;40.69593,-87.06184;40.69673,-87.06207;40.69705,-87.0628;40.69794,-87.0634;40.69872,-87.06405;40.69951,-87.06442;40.69999,-87.06469;40.70033,-87.06498;40.70068,-87.06511;40.70089,-87.06523;40.70105,-87.06552;40.70134,-87.06584;40.70178,-87.06623;40.70228,-87.06645;40.70255,-87.06675;40.70294,-87.06723;40.70353,-87.06743;40.70379,-87.067641;40.704041,-87.0678;40.70423,-87.0679;40.70437,-87.06817;40.70472,-87.0683;40.70487,-87.06843;40.70505,-87.06861;40.70528,-87.06888;40.7056,-87.06906;40.70585,-87.06934;40.70619,-87.06969;40.70663,-87.06984;40.70683,-87.06989;40.70688,-87.072362;40.710027,-87.074561;40.712771,-87.07666;40.715399,-87.07795;40.717036,-87.07872;40.71802,-87.07938;40.71885,-87.07957;40.71911,-87.07983;40.7194,-87.08004;40.71969,-87.08046;40.72018,-87.08081;40.72065,-87.08106;40.72097,-87.08122;40.7212,-87.081265;40.721255,-87.08139;40.72141,-87.08166;40.72172,-87.081778;40.72187,-87.0827;40.72304,-87.08396;40.72462,-87.08473;40.72561,-87.08629;40.72757,-87.08648;40.7278,-87.08671;40.7281,-87.08742;40.72898,-87.0876;40.72923,-87.08811;40.72986,-87.08845;40.7303,-87.08869;40.73059,-87.08932;40.73137,-87.08958;40.73172,-87.089695;40.731857,-87.08985;40.73204,-87.09057;40.73299,-87.0907;40.73314,-87.0931;40.73611,-87.09342;40.736475,-87.095704;40.738915,-87.098467;40.741786\\\\nPOLYLINE,-87.275458;41.169997,-87.275231;41.169484,-87.275145;41.169357,-87.274556;41.168254,-87.273035;41.165325,-87.272663;41.164609,-87.269012;41.157631,-87.268698;41.15703,-87.268186;41.15607,-87.268076;41.15584,-87.26791;41.15549,-87.267642;41.15489,-87.267365;41.15422,-87.26726;41.153938,-87.267051;41.153324,-87.266684;41.152172,-87.266406;41.151024,-87.266308;41.150516,-87.266224;41.149964,-87.266173;41.149556,-87.266129;41.149249,-87.266084;41.148938,-87.266021;41.147677,-87.265991;41.14698,-87.265977;41.146175,-87.265957;41.144479,-87.265933;41.142671,-87.265934;41.142298,-87.26594;41.142066,-87.265985;41.141592,-87.265934;41.140398,-87.265852;41.134383,-87.265837;41.134278,-87.265849;41.134187,-87.265854;41.133781,-87.265808;41.129859,-87.265808;41.129839,-87.265808;41.129825,-87.265799;41.129042,-87.26579;41.127411,-87.265782;41.126736,-87.265757;41.1255,-87.265679;41.118155,-87.265675;41.117,-87.265664;41.115949,-87.265657;41.115673,-87.265662;41.115323,-87.265662;41.115195,-87.26567;41.113199,-87.265587;41.106003,-87.265574;41.105218,-87.26557;41.104071,-87.26557;41.104051,-87.26553;41.099703,-87.265482;41.095632,-87.265461;41.093396,-87.265459;41.092266,-87.26547;41.091814,-87.265482;41.091681,-87.265535;41.091343,-87.265609;41.09101,-87.265761;41.090424,-87.265827;41.090242,-87.265853;41.090169,-87.266324;41.089206,-87.266631;41.088639,-87.267077;41.087883,-87.267347;41.087426,-87.267966;41.086358,-87.26909;41.08439,-87.269314;41.083986,-87.269515;41.083586,-87.269862;41.082806,-87.270148;41.081985,-87.270328;41.081433,-87.270487;41.080854,-87.270536;41.080625,-87.270689;41.079742,-87.270768;41.078897,-87.27078;41.078666,-87.270801;41.077333,-87.270811;41.071146,-87.270809;41.069175,-87.270822;41.066675,-87.270819;41.06363,-87.270829;41.061872,-87.270827;41.060619,-87.270848;41.056082,-87.270852;41.053911,-87.270887;41.052697,-87.270932;41.051094,-87.27097;41.049723,-87.271115;41.045752,-87.271141;41.04479,-87.271208;41.042748,-87.271218;41.042017,-87.271234;41.040769,-87.271266;41.0367,-87.271258;41.034693,-87.271253;41.029937,-87.271264;41.028156,-87.271256;41.02749,-87.271162;41.023866,-87.27107;41.020924,-87.270984;41.018416,-87.27094;41.016615,-87.27094;41.016602,-87.270934;41.015953,-87.270934;41.014253,-87.270939;41.014006,-87.270943;41.012967,-87.270942;41.011472,-87.270923;41.010258,-87.270859;41.009403,-87.27074;41.008438,-87.270693;41.008105,-87.270572;41.007471,-87.270388;41.006637,-87.270323;41.006379,-87.270097;41.005624,-87.269832;41.004801,-87.269423;41.003765,-87.269356;41.003608,-87.268898;41.002632,-87.268367;41.001648,-87.267958;41.000969,-87.267502;41.000253,-87.266927;40.999401,-87.266224;40.998375,-87.26383;40.99488,-87.262681;40.993186,-87.260564;40.990105,-87.258679;40.987341,-87.256708;40.984465,-87.25521;40.98228,-87.254166;40.980742,-87.25325;40.979419,-87.2525;40.978381,-87.252314;40.978143,-87.251506;40.977158,-87.250942;40.97649,-87.250387;40.97588,-87.249539;40.975003,-87.249077;40.974541,-87.247256;40.972765,-87.24498;40.970533,-87.243527;40.969102,-87.240427;40.966069,-87.238058;40.963758,-87.236954;40.962664,-87.234662;40.960412,-87.232271;40.958077,-87.230078;40.955914,-87.227822;40.953706,-87.226275;40.95221,-87.225582;40.951504,-87.22491;40.950862,-87.224483;40.950432,-87.22433;40.95027,-87.223957;40.949846,-87.2237;40.949516,-87.223388;40.949073,-87.223162;40.948737,-87.223081;40.948604,-87.22287;40.948227,-87.222738;40.947971,-87.222631;40.947739,-87.22247;40.947359,-87.222335;40.947006,-87.222293;40.946871,-87.222162;40.946386,-87.222047;40.945874,-87.221916;40.945194,-87.22188;40.944971,-87.221758;40.944387,-87.221611;40.943641,-87.221152;40.941134,-87.221083;40.940778,-87.221068;40.940727,-87.220604;40.938128,-87.220506;40.937624,-87.220516;40.937394,-87.220465;40.937193,-87.220168;40.93563,-87.220004;40.934814,-87.219657;40.932966,-87.219518;40.932167,-87.219137;40.929982,-87.218746;40.927923,-87.218602;40.927128,-87.218453;40.926266,-87.218124;40.92452,-87.217858;40.923036,-87.217742;40.922466,-87.217623;40.92194,-87.217548;40.921645,-87.217501;40.921485,-87.21742;40.921178,-87.217252;40.920603,-87.217112;40.920185,-87.216845;40.91947,-87.216744;40.919225,-87.216296;40.918188,-87.215812;40.917222,-87.21429;40.91422,-87.213028;40.911753,-87.211438;40.908611,-87.210685;40.907138,-87.210273;40.906319,-87.210221;40.906217,-87.209732;40.905281,-87.209561;40.904942,-87.209441;40.904704,-87.209197;40.904205,-87.207866;40.901629,-87.206455;40.898821,-87.202788;40.891621,-87.202174;40.890407,-87.201161;40.888373,-87.200946;40.88793,-87.200297;40.886583,-87.199621;40.885153,-87.19836;40.88246,-87.197064;40.87968,-87.196124;40.877682,-87.196062;40.877562,-87.195249;40.875977,-87.195097;40.875681,-87.194633;40.874854,-87.194083;40.873953,-87.193053;40.872293,-87.191411;40.869688,-87.19029;40.867883,-87.189221;40.866182,-87.187668;40.863719,-87.186362;40.861617,-87.184683;40.858938,-87.182848;40.856009,-87.182091;40.854783,-87.179689;40.850933,-87.178431;40.848916,-87.178371;40.848814,-87.176977;40.846257,-87.17264;40.837178,-87.17062;40.832912,-87.167869;40.827128,-87.167034;40.825389,-87.16644;40.824115,-87.165865;40.822931,-87.165822;40.82284,-87.164716;40.820518,-87.164064;40.819137,-87.162592;40.816051,-87.162329;40.815489,-87.162077;40.815043,-87.16201;40.814937,-87.161678;40.814454,-87.161588;40.814338,-87.161183;40.813871,-87.161148;40.813831,-87.160629;40.813366,-87.160057;40.81291,-87.159172;40.812351,-87.157912;40.811535,-87.157643;40.811361,-87.157152;40.811114,-87.15534;40.809994,-87.154429;40.80942,-87.154147;40.809238,-87.152921;40.808488,-87.152152;40.80801,-87.151399;40.807548,-87.151194;40.807418,-87.15028;40.806809,-87.149659;40.806432,-87.14964;40.806459,-87.149075;40.80608,-87.148892;40.805957,-87.148318;40.805562,-87.148107;40.805409,-87.147506;40.804931,-87.147019;40.804508,-87.146422;40.80387,-87.146301;40.803733,-87.146091;40.803475,-87.145596;40.802837,-87.144344;40.801182,-87.14321;40.7997,-87.142436;40.798668,-87.140862;40.796586,-87.139632;40.794973,-87.139597;40.794927,-87.138556;40.793549,-87.137391;40.791996,-87.136657;40.791039,-87.136047;40.790242,-87.134392;40.788044,-87.132934;40.786129,-87.13213;40.78505,-87.131452;40.784097,-87.13067;40.782941,-87.129963;40.781853,-87.129031;40.780372,-87.12826;40.779146,-87.126672;40.776637,-87.124147;40.77261,-87.123511;40.771582,-87.123086;40.770875,-87.122542;40.769994,-87.122009;40.769104,-87.121376;40.76819,-87.119832;40.765746,-87.119637;40.765437,-87.11906;40.76449,-87.118309;40.763307,-87.117891;40.76267,-87.117456;40.761915,-87.117006;40.761239,-87.116775;40.760902,-87.116275;40.760206,-87.116026;40.75988,-87.115829;40.759622,-87.115558;40.75928,-87.114763;40.758341,-87.114127;40.757619,-87.11354;40.75699,-87.112688;40.756109,-87.111512;40.75488,-87.110733;40.754083,-87.109745;40.753051,-87.108817;40.752098,-87.107875;40.751116,-87.107537;40.750764,-87.106933;40.750144,-87.104015;40.747124,-87.103257;40.746334,-87.102058;40.745099,-87.100343;40.743312,-87.099644;40.742591,-87.098981;40.741893,-87.098466;40.741365\\\\nPOLYLINE,-86.936621;40.561662,-86.937238;40.562454,-86.942183;40.568646,-86.94228;40.56877,-86.94301;40.56966,-86.9438;40.57068,-86.944228;40.571208,-86.94582;40.57317,-86.94657;40.57411,-86.94743;40.57515,-86.94835;40.57615,-86.94964;40.57737,-86.95057;40.57817,-86.950886;40.578409,-86.95188;40.57916,-86.953521;40.580361,-86.95475;40.58126,-86.95594;40.58215,-86.95749;40.58327,-86.95941;40.58469,-86.961249;40.586037,-86.96259;40.58702,-86.96382;40.58789,-86.96428;40.58827,-86.96539;40.58908,-86.96679;40.59011,-86.96789;40.5909,-86.96902;40.59176,-86.96987;40.59246,-86.97056;40.59313,-86.9712;40.59379,-86.97177;40.59445,-86.972079;40.594868,-86.97329;40.59651,-86.973637;40.596991,-86.97425;40.597843,-86.97592;40.60016,-86.976094;40.600398,-86.976716;40.601245,-86.97682;40.601388,-86.977135;40.601817,-86.97724;40.60196,-86.9778;40.60279,-86.9784;40.60361,-86.97906;40.60455,-86.97973;40.60547,-86.98045;40.60647,-86.98104;40.60731,-86.98195;40.60859,-86.98249;40.60931,-86.982811;40.609775,-86.98287;40.60986,-86.983416;40.61061,-86.98346;40.61067,-86.98348;40.610695,-86.983683;40.610947,-86.983751;40.611031,-86.9847;40.61221,-86.985301;40.612883,-86.98579;40.61343,-86.98677;40.61446,-86.98844;40.61625,-86.98922;40.61707,-86.990258;40.618174,-86.99145;40.61944,-86.991912;40.619937,-86.991979;40.620009,-86.99218;40.620225,-86.992248;40.620298,-86.99317;40.62129,-86.99424;40.62241,-86.995027;40.623249,-86.99873;40.6272,-87.00176;40.63041,-87.003356;40.632112,-87.00613;40.63507,-87.00668;40.63566,-87.00825;40.63731,-87.008704;40.637794,-87.00978;40.63894,-87.01163;40.64092,-87.01453;40.64399,-87.016396;40.645995,-87.01654;40.64615,-87.01896;40.64873,-87.01911;40.64889,-87.01973;40.649549,-87.0212;40.65111,-87.02151;40.65142,-87.022049;40.651998,-87.022816;40.652821,-87.02494;40.6551,-87.025437;40.655625,-87.02602;40.65624,-87.02715;40.65745,-87.02785;40.65819,-87.0291;40.6595,-87.02961;40.66005,-87.03022;40.66073,-87.03205;40.66244,-87.033;40.66316,-87.0337;40.663596,-87.03454;40.66412,-87.03547;40.66463,-87.03705;40.66547,-87.03733;40.6656,-87.03773;40.66584,-87.037796;40.665875,-87.03885;40.66644,-87.03927;40.66666,-87.040059;40.667057,-87.04082;40.66744,-87.041637;40.667869,-87.04181;40.66796,-87.04274;40.66844,-87.04344;40.66882,-87.044092;40.669152,-87.04448;40.66935,-87.04493;40.66954,-87.04579;40.66999,-87.047148;40.670753,-87.04716;40.67076,-87.0491;40.67178,-87.04977;40.67218,-87.05044;40.67271,-87.05085;40.67311,-87.05127;40.6735,-87.05169;40.67398,-87.05235;40.67492,-87.05264;40.67549,-87.052703;40.675652,-87.05305;40.67653,-87.05318;40.67688,-87.05349;40.67776,-87.05359;40.67802,-87.05407;40.67938,-87.05421;40.67974,-87.054352;40.680152,-87.0544;40.68029,-87.0545;40.68055,-87.05501;40.68197,-87.05512;40.68226,-87.05534;40.68291,-87.05547;40.68323,-87.05568;40.68383,-87.05585;40.68426,-87.05595;40.68456,-87.05607;40.68496,-87.05659;40.68635,-87.05667;40.68653,-87.05676;40.68679,-87.05687;40.68713,-87.05714;40.68786,-87.057432;40.68867,-87.05762;40.68919,-87.057964;40.690018,-87.05821;40.69061,-87.05846;40.69115,-87.05871;40.69163,-87.05898;40.69213,-87.05936;40.69281,-87.05975;40.69343,-87.060024;40.693838,-87.06028;40.69422,-87.060876;40.695011,-87.06089;40.69503,-87.061041;40.695222,-87.06152;40.69583,-87.061538;40.695855,-87.0617;40.69607,-87.06234;40.69692,-87.062444;40.697051,-87.0646;40.69976,-87.064743;40.699942,-87.065506;40.70091,-87.065809;40.701295,-87.06672;40.70245,-87.06687;40.70264,-87.06703;40.70283,-87.0672;40.703035,-87.067713;40.703651,-87.06777;40.70372,-87.067879;40.703861,-87.068195;40.70427,-87.069145;40.705499,-87.069462;40.705909,-87.069614;40.706107,-87.06964;40.70614,-87.07009;40.706686,-87.07025;40.70688,-87.07027;40.70692,-87.07057;40.70731,-87.07107;40.70792,-87.07145;40.7084,-87.071963;40.709057,-87.07238;40.70959,-87.07272;40.70999,-87.07407;40.71166,-87.07625;40.71445,-87.07715;40.715558,-87.07729;40.71573,-87.07856;40.71737,-87.07886;40.71774,-87.07932;40.71833,-87.079411;40.718444,-87.08008;40.71928,-87.08059;40.71991,-87.081078;40.72055,-87.08117;40.72067,-87.081633;40.721253,-87.081716;40.721357,-87.081965;40.72167,-87.082049;40.721775,-87.08245;40.72228,-87.08284;40.72276,-87.08344;40.72354,-87.083643;40.723785,-87.08432;40.7246,-87.08483;40.72527,-87.08507;40.72556,-87.08588;40.72661,-87.08731;40.72839,-87.08802;40.72931,-87.088424;40.729816,-87.090026;40.731822,-87.0904;40.73229,-87.09076;40.73273,-87.09078;40.732757,-87.0913;40.73343,-87.09172;40.73393,-87.09203;40.73434,-87.09275;40.73526,-87.093026;40.735576,-87.093817;40.736482,-87.09392;40.7366,-87.09449;40.73724,-87.09496;40.73776,-87.095962;40.738788,-87.098466;40.741365\\\\nPOLYLINE,-86.555446;40.177693,-86.562411;40.185213,-86.564281;40.187224,-86.564876;40.187864,-86.56727;40.190448,-86.571121;40.1946,-86.573297;40.196951,-86.574203;40.197931,-86.574708;40.198457,-86.575405;40.199147,-86.576299;40.199959,-86.577003;40.200549,-86.577902;40.201247,-86.578762;40.201861,-86.580378;40.202992,-86.581145;40.203524,-86.585549;40.206579,-86.591058;40.210412,-86.593273;40.211951,-86.595074;40.213204,-86.597938;40.215196,-86.598805;40.215795,-86.600888;40.217248,-86.602021;40.21803,-86.603017;40.218729,-86.605235;40.220264,-86.606991;40.221488,-86.611639;40.224719,-86.612618;40.225397,-86.612925;40.225611,-86.613691;40.22614,-86.615801;40.227619,-86.616444;40.228087,-86.617094;40.228571,-86.618435;40.229623,-86.619474;40.230468,-86.620743;40.231501,-86.622879;40.233238,-86.623496;40.233744,-86.624339;40.234426,-86.625066;40.235021,-86.625774;40.235592,-86.627811;40.237256,-86.632274;40.240885,-86.633072;40.241534,-86.633292;40.241713,-86.633842;40.242166,-86.634472;40.242679,-86.635547;40.243555,-86.636487;40.24432,-86.637436;40.245127,-86.638424;40.246019,-86.640055;40.247578,-86.64173;40.249166,-86.642601;40.250003,-86.643413;40.25077,-86.644377;40.251689,-86.645103;40.252367,-86.645599;40.252845,-86.64813;40.255253,-86.648999;40.256074,-86.649977;40.257011,-86.650642;40.257645,-86.650901;40.25789,-86.651135;40.258158,-86.652026;40.258932,-86.655207;40.261985,-86.655821;40.262567,-86.656955;40.263647,-86.6589;40.265494,-86.659046;40.265633,-86.65939;40.265929,-86.660493;40.267009,-86.660969;40.267454,-86.661457;40.267912,-86.661797;40.268198,-86.662154;40.268481,-86.662581;40.268795,-86.662977;40.269067,-86.663036;40.269106,-86.663058;40.269114,-86.66346;40.269365,-86.663894;40.269617,-86.664323;40.269849,-86.664592;40.269986,-86.665261;40.270295,-86.665642;40.270461,-86.666786;40.270972,-86.667993;40.2715,-86.671218;40.272924,-86.675669;40.274891,-86.675729;40.274918,-86.678204;40.276007,-86.678374;40.276083,-86.68004;40.276901,-86.687139;40.280106,-86.695209;40.28352\\\\nPOLYLINE,-87.290734;41.211531,-87.292501;41.213542,-87.29364;41.215119,-87.293981;41.215688,-87.29442;41.216615,-87.294694;41.217324,-87.294745;41.217497,-87.294822;41.217771,-87.295022;41.218538,-87.295217;41.219497,-87.295257;41.219692,-87.295314;41.220025,-87.295314;41.220562,-87.295314;41.220887,-87.295322;41.22457,-87.295327;41.232292,-87.295328;41.233463,-87.295331;41.237607,-87.295337;41.246539,-87.295337;41.246855,-87.295344;41.257534,-87.295345;41.258703,-87.295352;41.259301,-87.295375;41.259899,-87.295411;41.260496,-87.295463;41.261093,-87.295529;41.261689,-87.295609;41.262284,-87.295623;41.262373,-87.29564;41.26248,-87.295704;41.262877,-87.295813;41.26347,-87.295936;41.26406,-87.296074;41.264649,-87.296227;41.265236,-87.296393;41.265821,-87.296574;41.266403,-87.296769;41.266983,-87.299367;41.274402,-87.299521;41.274861,-87.299528;41.274884,-87.299726;41.275515,-87.299885;41.276075,-87.300029;41.276637,-87.300159;41.277201,-87.300275;41.277767,-87.300376;41.278335,-87.300462;41.278903,-87.300535;41.279473,-87.300593;41.280044,-87.300636;41.280616,-87.300664;41.281188,-87.300676;41.28157,-87.300843;41.283818,-87.300841;41.284469,-87.300835;41.289308,-87.301056;41.294386,-87.300941;41.294482,-87.301105;41.302502,-87.301132;41.303814,-87.301196;41.306931,-87.30133;41.313475,-87.301409;41.317295,-87.301428;41.317881,-87.301462;41.318466,-87.301511;41.319051,-87.301574;41.319636,-87.301651;41.320219,-87.301743;41.320801,-87.30185;41.321382,-87.301937;41.321805,-87.302092;41.322482,-87.302255;41.323113,-87.302419;41.323686,-87.302597;41.324257,-87.302789;41.324825,-87.302995;41.32539,-87.308782;41.34008,-87.311568;41.34715,-87.312142;41.348608,-87.313963;41.353224,-87.314521;41.354639,-87.314569;41.354791,-87.315733;41.35771,-87.317557;41.362335,-87.320274;41.369222,-87.320552;41.369926,-87.320772;41.370485,-87.322646;41.375234,-87.324587;41.380155,-87.324754;41.380482,-87.32603;41.383815,-87.326186;41.384224,-87.326283;41.384521,-87.326365;41.38482,-87.326432;41.385121,-87.326486;41.385423,-87.326525;41.385727,-87.326549;41.386032,-87.326559;41.386337,-87.326554;41.386643,-87.32653;41.386991,-87.326431;41.387706,-87.32634;41.388234,-87.326184;41.388693,-87.325999;41.389134,-87.325664;41.389839,-87.324478;41.392345,-87.324361;41.392549,-87.323938;41.393258,-87.323896;41.393344,-87.323776;41.393589,-87.323615;41.393917,-87.323201;41.394761,-87.322972;41.395246,-87.322756;41.395733,-87.322554;41.396224,-87.322367;41.396718,-87.322193;41.397215,-87.322035;41.397708,-87.321888;41.398217,-87.321757;41.398722,-87.32164;41.399228,-87.321538;41.399736,-87.32145;41.400246,-87.321376;41.400757,-87.321317;41.401269,-87.321273;41.401782,-87.321243;41.402295,-87.321228;41.402809,-87.321226;41.403154,-87.32126;41.412901,-87.32127;41.415674,-87.321276;41.417553,-87.321285;41.420153,-87.3213;41.424439,-87.321332;41.433683,-87.321337;41.434976,-87.321338;41.435258,-87.321386;41.449055,-87.321387;41.449273,-87.321394;41.451122,-87.321404;41.451908,-87.321428;41.452694,-87.321468;41.453479,-87.321521;41.454264,-87.32159;41.455048,-87.321673;41.455831,-87.32177;41.456613,-87.321882;41.457395,-87.322279;41.459852,-87.322628;41.462009,-87.323538;41.467045,-87.323805;41.468525,-87.323891;41.469263,-87.323978;41.47038,-87.323872;41.470903,-87.323874;41.471007,-87.323884;41.471256,-87.323884;41.471381,-87.323884;41.471615,-87.32387;41.472244,-87.323846;41.47269,-87.323838;41.472801,-87.323636;41.474534,-87.323451;41.475476,-87.322912;41.477824,-87.322644;41.478868,-87.322509;41.479393,-87.321174;41.48459,-87.321149;41.484687,-87.320613;41.486774,-87.32045;41.487441,-87.3203;41.48811,-87.320165;41.488781,-87.320044;41.489453,-87.319938;41.490126,-87.319847;41.490801,-87.319801;41.491202,-87.31977;41.491477,-87.319707;41.492153,-87.319659;41.492831,-87.319626;41.493508,-87.319607;41.494186,-87.319602;41.494744,-87.319604;41.49773,-87.319719;41.501635,-87.319736;41.502582,-87.319601;41.505447,-87.319612;41.507231,-87.319612;41.507321,-87.319612;41.507369,-87.319613;41.508136,-87.319614;41.508723,-87.319691;41.51023,-87.319671;41.512197,-87.319642;41.513016,-87.319537;41.514608,-87.319469;41.515114,-87.319407;41.515503,-87.319283;41.51598,-87.319275;41.516015,-87.31922;41.516326,-87.319224;41.516608,-87.31881;41.518518,-87.318011;41.520924,-87.317514;41.522056,-87.316941;41.523264,-87.316683;41.523885,-87.314003;41.529285,-87.313041;41.531267,-87.312823;41.531681,-87.312231;41.533036,-87.311629;41.534304,-87.311296;41.535093,-87.311011;41.535898,-87.310881;41.536553,-87.310791;41.537028,-87.310736;41.537483,-87.310741;41.537832,-87.310808;41.540063,-87.310827;41.541309,-87.310892;41.543229,-87.310868;41.543758,-87.310915;41.545623,-87.310945;41.547315,-87.310955;41.547512,-87.310954;41.547606,-87.31101;41.54917,-87.311106;41.550813,-87.311114;41.551141,-87.311097;41.551683,-87.311089;41.551922,-87.311103;41.552687,-87.311146;41.554727,-87.311146;41.554996,-87.311122;41.555427,-87.311057;41.55576,-87.310963;41.556222,-87.310766;41.557122,-87.310408;41.558065,-87.310007;41.558738,-87.309508;41.559443,-87.308944;41.560137,-87.308076;41.561105,-87.307737;41.561516,-87.306893;41.56235,-87.306379;41.56286,-87.306026;41.563241,-87.305495;41.563814,-87.304808;41.56458,-87.303882;41.565636,-87.303694;41.565785,-87.303457;41.56602,-87.303129;41.566389,-87.302133;41.567508,-87.301538;41.568197,-87.300671;41.568954,-87.300512;41.569144,-87.300481;41.569181,-87.300379;41.569305,-87.299663;41.570058,-87.299523;41.570218,-87.298574;41.571314,-87.298246;41.571617,-87.298179;41.571683,-87.29758;41.572253,-87.297411;41.572442,-87.297369;41.572489,-87.297283;41.572595,-87.297173;41.572732,-87.296988;41.572981,-87.296816;41.573234,-87.296657;41.573493,-87.296512;41.573755,-87.29638;41.574022,-87.296262;41.574292,-87.296158;41.574566,-87.296068;41.574842,-87.295992;41.575121,-87.295931;41.575402,-87.295884;41.575684,-87.295852;41.575968,-87.295834;41.576252,-87.295831;41.576536,-87.295843;41.576821,-87.295844;41.57683,-87.295859;41.577001,-87.295869;41.577105,-87.295909;41.577388,-87.295966;41.577672,-87.296021;41.577897,-87.296118;41.578226,-87.296216;41.578501,-87.296328;41.578773,-87.296454;41.579041,-87.296594;41.579306,-87.296605;41.579324,-87.296747;41.579566,-87.296914;41.579821,-87.296998;41.579938,-87.297093;41.580072,-87.297285;41.580317,-87.29749;41.580557,-87.297707;41.58079,-87.297936;41.581017,-87.298176;41.581237,-87.298322;41.581361,-87.30359;41.584518,-87.304632;41.585205,-87.304987;41.585498,-87.305264;41.585759,-87.305551;41.58617,-87.305737;41.586528,-87.306315;41.587323,-87.306362;41.587513,-87.30657;41.588185,-87.306663;41.588393,-87.306748;41.588988,-87.306748;41.589544,-87.306682;41.590734,-87.306696;41.591989,-87.306715;41.594312,-87.306732;41.594385,-87.306773;41.594561,-87.306835;41.5949,-87.30713;41.596526,-87.307155;41.596708,-87.307164;41.596881,-87.307158;41.597055,-87.307137;41.597228,-87.307102;41.597399,-87.307053;41.597569,-87.306989;41.597736,-87.306855;41.59805\\\\nPOLYLINE,-87.307205;41.598143,-87.30723;41.597863,-87.307349;41.597316,-87.307354;41.596983,-87.307339;41.596765,-87.307323;41.596519,-87.307284;41.596243,-87.307025;41.594899,-87.307015;41.594846,-87.306909;41.594275,-87.306891;41.594174,-87.306854;41.593877,-87.306832;41.593579,-87.306824;41.593281,-87.30683;41.592982,-87.306877;41.591992,-87.306892;41.591495,-87.306998;41.58943,-87.307002;41.589122,-87.306989;41.588864,-87.306962;41.588607,-87.30692;41.588352,-87.306863;41.588098,-87.306793;41.587846,-87.306708;41.587596,-87.30659;41.587324,-87.306496;41.587107,-87.306369;41.586867,-87.306229;41.586632,-87.306126;41.586476,-87.306076;41.586402,-87.305909;41.586177,-87.305731;41.585957,-87.305539;41.585743,-87.305336;41.585536,-87.305121;41.585335,-87.304896;41.585141,-87.304659;41.584955,-87.304412;41.584776,-87.30434;41.584727,-87.304155;41.584605,-87.303888;41.584443,-87.303126;41.583999,-87.299578;41.581931,-87.299459;41.581857,-87.29928;41.581745,-87.299006;41.581558,-87.298742;41.581364,-87.298489;41.581162,-87.298322;41.581018,-87.298246;41.580953,-87.298015;41.580736,-87.297992;41.580713,-87.297795;41.580513,-87.297587;41.580284,-87.297391;41.580049,-87.297312;41.579945,-87.297208;41.579808,-87.297124;41.579686,-87.297038;41.579561,-87.296881;41.57931,-87.296737;41.579054,-87.29672;41.57902,-87.296607;41.578795,-87.296491;41.578531,-87.296388;41.578265,-87.296336;41.578105,-87.2963;41.577995,-87.296243;41.577788,-87.296234;41.577756,-87.296211;41.577652,-87.296166;41.57745,-87.296134;41.577244,-87.296113;41.577107,-87.296094;41.576936,-87.29609;41.576898,-87.296074;41.57662,-87.296072;41.576343,-87.296086;41.576066,-87.296103;41.575891,-87.296113;41.575789,-87.296156;41.575513,-87.296212;41.575239,-87.296283;41.574967,-87.296369;41.574697,-87.296468;41.57443,-87.296582;41.574166,-87.296709;41.573905,-87.29685;41.573649,-87.297005;41.573397,-87.297172;41.573149,-87.297328;41.572941,-87.297353;41.572907,-87.297522;41.5727,-87.297546;41.57267,-87.297593;41.572616,-87.297751;41.57244,-87.298419;41.57172,-87.298482;41.571651,-87.298672;41.571447,-87.298736;41.571379,-87.299869;41.570237,-87.300199;41.569905,-87.300845;41.569218,-87.30091;41.569149,-87.300988;41.569067,-87.301;41.569054,-87.301169;41.568874,-87.301423;41.568606,-87.302018;41.567845,-87.302834;41.566966,-87.303204;41.566569,-87.303366;41.566394,-87.303648;41.566088,-87.30381;41.565915,-87.303852;41.56587,-87.304015;41.565696,-87.304345;41.56534,-87.305336;41.564272,-87.305667;41.563917,-87.305833;41.563737,-87.306334;41.563198,-87.306501;41.563019,-87.306893;41.562595,-87.307027;41.562451,-87.308607;41.56075,-87.309134;41.560184,-87.309344;41.55995,-87.309357;41.559936,-87.30958;41.559667,-87.309791;41.559393,-87.309989;41.559114,-87.310036;41.559041,-87.310175;41.558829,-87.310328;41.558571,-87.310505;41.558247,-87.31065;41.557949,-87.310781;41.557648,-87.310898;41.557344,-87.311001;41.557037,-87.31109;41.556728,-87.311164;41.556416,-87.311224;41.556103,-87.311257;41.555867,-87.311269;41.555788,-87.3113;41.555472,-87.311317;41.555156,-87.311316;41.554727,-87.311279;41.552637,-87.311274;41.552356,-87.31127;41.552114,-87.311264;41.551782,-87.31125;41.551141,-87.311175;41.549201,-87.311141;41.547908,-87.311126;41.54751,-87.311118;41.547297,-87.311118;41.547213,-87.311132;41.546454,-87.311147;41.545614,-87.311139;41.545245,-87.311117;41.544139,-87.31111;41.543771,-87.3111;41.543279,-87.3111;41.543252,-87.311071;41.541803,-87.311062;41.541312,-87.311057;41.54107,-87.311042;41.540345,-87.311038;41.540104,-87.311023;41.539392,-87.311005;41.538428,-87.311004;41.538053,-87.311011;41.537838,-87.311013;41.537819,-87.311019;41.537677,-87.311048;41.537302,-87.311053;41.537259,-87.311092;41.536928,-87.31115;41.536554,-87.311222;41.536183,-87.31131;41.535813,-87.311411;41.535445,-87.311527;41.53508,-87.311546;41.535025,-87.311656;41.534717,-87.3118;41.534357,-87.311958;41.534001,-87.313242;41.531348,-87.313543;41.530725,-87.314234;41.529303,-87.314759;41.528219,-87.316334;41.524968,-87.31686;41.523885,-87.31689;41.523821,-87.316982;41.523631,-87.317014;41.523568,-87.317159;41.523267,-87.31722;41.523143,-87.317542;41.522467,-87.31759;41.522361,-87.31773;41.522058,-87.317875;41.52173,-87.318128;41.521125,-87.318192;41.520959,-87.31835;41.520554,-87.318558;41.519981,-87.318752;41.519404,-87.318932;41.518825,-87.319098;41.518243,-87.319249;41.517659,-87.319273;41.517554,-87.319386;41.517074,-87.319508;41.516486,-87.319526;41.51639,-87.319598;41.516005,-87.31971;41.515306,-87.319727;41.515176,-87.319789;41.514714,-87.319854;41.514121,-87.319904;41.513528,-87.319939;41.512934,-87.31995;41.512631,-87.31996;41.512339,-87.319966;41.511699,-87.319965;41.511497,-87.319961;41.510267,-87.31996;41.510033,-87.319957;41.509334,-87.319957;41.509101,-87.319955;41.508744,-87.319951;41.507676,-87.31995;41.507374,-87.319949;41.50732,-87.319949;41.507251,-87.319945;41.506365,-87.319944;41.505783,-87.319934;41.503501,-87.319931;41.502547,-87.319927;41.501593,-87.319916;41.498731,-87.319913;41.497778,-87.319904;41.495254,-87.319904;41.495139,-87.319909;41.494551,-87.319928;41.493848,-87.319962;41.493145,-87.32001;41.492442,-87.320073;41.49174,-87.320131;41.491207,-87.320243;41.490339,-87.320349;41.489641,-87.320471;41.488943,-87.320606;41.488247,-87.320756;41.487553,-87.320817;41.487293,-87.320921;41.48686,-87.321464;41.484735,-87.321485;41.484654,-87.321758;41.483586,-87.322642;41.480138,-87.322937;41.47899,-87.322997;41.478754,-87.323178;41.478047,-87.323239;41.477812,-87.32334;41.477414,-87.323477;41.476884,-87.323615;41.476316,-87.323636;41.476219,-87.323723;41.475818,-87.323728;41.475796,-87.323739;41.475746,-87.323742;41.475725,-87.323747;41.475702,-87.323848;41.475174,-87.323856;41.475123,-87.323931;41.474672,-87.324023;41.474026,-87.324089;41.47345,-87.324095;41.473373,-87.32414;41.472874,-87.324146;41.472787,-87.324163;41.472505,-87.324177;41.472297,-87.324196;41.471816,-87.324199;41.471719,-87.324199;41.471659,-87.324202;41.471522,-87.324203;41.471467,-87.324214;41.471378,-87.324213;41.471368,-87.32421;41.471329,-87.324208;41.471313,-87.324206;41.471279,-87.324206;41.471266,-87.324206;41.471251,-87.324206;41.471054,-87.324206;41.471033,-87.324205;41.471003,-87.324204;41.470905,-87.3242;41.470568,-87.324196;41.470464,-87.324189;41.470268,-87.324118;41.469354,-87.324002;41.468402,-87.323756;41.467007,-87.323154;41.463602,-87.322636;41.45986,-87.32226;41.457621,-87.322102;41.456596,-87.322005;41.455852,-87.321922;41.455107,-87.321854;41.454361,-87.3218;41.453614,-87.321761;41.452867,-87.321737;41.452119,-87.321727;41.451371,-87.32172;41.449274,-87.321719;41.449054,-87.321709;41.446276,-87.321682;41.437942,-87.321673;41.435165,-87.321672;41.43512,-87.321672;41.434986,-87.321672;41.434942,-87.321671;41.434682,-87.321668;41.433904,-87.321668;41.433645,-87.321661;41.431825,-87.321643;41.426366,-87.321637;41.424547,-87.321634;41.423668,-87.321625;41.421031,-87.321622;41.420153,-87.32162;41.419646,-87.321615;41.418126,-87.321614;41.41762,-87.32161;41.416676,-87.321605;41.415097,-87.321601;41.413844,-87.321598;41.412901,-87.321584;41.40899,-87.321565;41.403073,-87.32157;41.40256,-87.32159;41.402048,-87.321625;41.401537,-87.321674;41.401026,-87.321738;41.400516,-87.321816;41.400007,-87.321909;41.399499,-87.322016;41.398993,-87.322138;41.398489,-87.322274;41.397987,-87.322321;41.397831,-87.322331;41.39779,-87.322424;41.397488,-87.322467;41.397354,-87.322588;41.39699,-87.322767;41.396496,-87.322959;41.396005,-87.323165;41.395517,-87.323386;41.395032,-87.323635;41.394519,-87.323707;41.394378,-87.324014;41.393768,-87.324038;41.393719,-87.324112;41.393573,-87.324137;41.393525,-87.324204;41.393392,-87.324224;41.393352,-87.324257;41.393288,-87.324405;41.392994,-87.324472;41.392862,-87.324704;41.392401,-87.325401;41.391019,-87.325634;41.390559,-87.325865;41.390099,-87.326049;41.389736,-87.326194;41.389434,-87.326324;41.389129,-87.326441;41.38882,-87.326485;41.388686,-87.326544;41.388508,-87.326634;41.388194,-87.326707;41.387878,-87.326767;41.38756,-87.3268;41.387318,-87.326812;41.38724,-87.326843;41.38692,-87.32686;41.386599,-87.326861;41.386278,-87.326849;41.385957,-87.326821;41.385636,-87.326779;41.385317,-87.326723;41.384998,-87.326652;41.384682,-87.326646;41.384662,-87.326567;41.384367,-87.326468;41.384054,-87.326383;41.383823,-87.326379;41.383812,-87.32611;41.383134,-87.325306;41.3811,-87.325038;41.380422,-87.325016;41.380366,-87.32495;41.380199,-87.324928;41.380144,-87.324162;41.378209,-87.323016;41.375309,-87.321867;41.372404,-87.321103;41.37047,-87.321052;41.37034,-87.320899;41.369954,-87.320848;41.369825,-87.3208;41.369704,-87.320656;41.369341,-87.320609;41.369221,-87.320064;41.367844,-87.31843;41.363714,-87.317886;41.362338,-87.317866;41.362286,-87.31753;41.361436,-87.316461;41.358733,-87.316105;41.357833,-87.315856;41.357205,-87.315111;41.355321,-87.314863;41.354693,-87.314275;41.353204,-87.314258;41.353162,-87.312443;41.348571,-87.312425;41.348524,-87.31184;41.347041,-87.311356;41.345816,-87.309904;41.342141,-87.309421;41.340917,-87.309355;41.340749,-87.309157;41.340248,-87.309091;41.340081,-87.309058;41.339999,-87.308961;41.339753,-87.308929;41.339671,-87.306911;41.334565,-87.303529;41.326007,-87.303309;41.325414,-87.303102;41.324819,-87.30291;41.324221,-87.302732;41.323621,-87.302568;41.323018,-87.302426;41.322445,-87.302313;41.321945,-87.302162;41.321198,-87.302055;41.320588,-87.301963;41.319977,-87.301885;41.319365,-87.301843;41.31896,-87.301822;41.318751,-87.301774;41.318137,-87.30174;41.317523,-87.30172;41.316907,-87.301652;41.313475,-87.301636;41.312674,-87.301588;41.310271,-87.301573;41.309471,-87.301561;41.308887,-87.301526;41.307136,-87.301517;41.306637,-87.301515;41.306553,-87.301507;41.306149,-87.301504;41.306005,-87.301471;41.304361,-87.301461;41.303813,-87.301456;41.303588,-87.301443;41.302914,-87.301439;41.30269,-87.301406;41.301064,-87.30131;41.296188,-87.301278;41.294563,-87.301257;41.293512,-87.301194;41.290358,-87.301174;41.289308,-87.301164;41.288823,-87.301135;41.28737,-87.301126;41.286886,-87.301116;41.286416,-87.301088;41.285007,-87.301079;41.284538,-87.30104;41.282581,-87.301018;41.281427,-87.300989;41.280662,-87.300951;41.280104,-87.300898;41.279546,-87.300831;41.278989,-87.300749;41.278434,-87.300653;41.277879,-87.300542;41.277326,-87.300417;41.276775,-87.300413;41.276761,-87.300278;41.276226,-87.300124;41.275679,-87.299956;41.275134,-87.299871;41.274882,-87.299774;41.274592,-87.299001;41.272382,-87.297065;41.266838,-87.296897;41.266341,-87.296716;41.265765,-87.29655;41.265187,-87.296464;41.26486,-87.296398;41.264607,-87.29626;41.264024,-87.296137;41.26344,-87.296027;41.262854,-87.295938;41.262299,-87.295934;41.262269,-87.295853;41.261679,-87.295813;41.261328,-87.295787;41.261089,-87.295736;41.260499,-87.295699;41.259908,-87.295677;41.259317,-87.29567;41.258725,-87.295669;41.258488,-87.295669;41.25754,-87.295668;41.255487,-87.295665;41.249329,-87.295664;41.247277,-87.295664;41.247189,-87.295664;41.246929,-87.295664;41.246842,-87.295664;41.246781,-87.295664;41.246599,-87.295664;41.246539,-87.295664;41.246441,-87.295664;41.246149,-87.295664;41.246052,-87.295663;41.244348,-87.29566;41.239238,-87.29566;41.237535,-87.295659;41.236524,-87.295658;41.233491,-87.295658;41.233478,-87.295658;41.232481,-87.295654;41.225254,-87.295654;41.225116,-87.295654;41.224704,-87.295654;41.224567,-87.295654;41.224467,-87.295654;41.224167,-87.295654;41.224067,-87.295653;41.222762,-87.295653;41.221553,-87.29564;41.220993,-87.295613;41.220575,-87.295571;41.220157,-87.295516;41.21974,-87.295445;41.219324,-87.295361;41.21891,-87.295351;41.21887,-87.295262;41.218498,-87.295148;41.218087,-87.295052;41.217779,-87.295021;41.21768,-87.294998;41.217615,-87.294879;41.217274,-87.294834;41.217158,-87.294729;41.216891,-87.29455;41.216474,-87.294365;41.21608,-87.294166;41.215689,-87.293954;41.215302,-87.293729;41.214919,-87.293489;41.214542,-87.293237;41.214168,-87.292972;41.213801,-87.292696;41.213439,-87.292405;41.213082,-87.291113;41.211539,-87.29104;41.211451,-87.290967;41.211364\\\\nPOLYLINE,-86.695208;40.283278,-86.692361;40.282017,-86.687827;40.280007,-86.68319;40.277951,-86.681213;40.277072,-86.678638;40.275934,-86.678512;40.275878,-86.675674;40.27462,-86.675376;40.274488,-86.672675;40.273301,-86.672519;40.273231,-86.671331;40.272704,-86.665468;40.270114,-86.66484;40.269823,-86.664414;40.269609,-86.664041;40.269407,-86.663667;40.26919,-86.663378;40.26901,-86.663155;40.268866,-86.663022;40.26878,-86.662682;40.268544,-86.662323;40.268276,-86.661509;40.267593,-86.661201;40.267303,-86.660517;40.266657,-86.660176;40.266334,-86.66012;40.26628,-86.660028;40.26619,-86.65929;40.265488,-86.657151;40.263453,-86.656185;40.262547,-86.655571;40.261957,-86.655148;40.261553,-86.653418;40.259906,-86.652766;40.259292,-86.651763;40.258332,-86.651669;40.258244,-86.651388;40.25798,-86.651322;40.257918,-86.651295;40.257893,-86.648373;40.255104,-86.648216;40.254955,-86.645575;40.252442,-86.644874;40.251786,-86.643613;40.250582,-86.64203;40.249082,-86.638964;40.246161,-86.638674;40.245885,-86.637868;40.245149,-86.6\\\"+\\\"36718;40.244159,-86.635754;40.243371,-86.635697;40.243325,-86.635557;40.243212,-86.634967;40.242735,-86.634771;40.242576,-86.634494;40.242351,-86.63377;40.241764,-86.633664;40.241678,-86.633389;40.241453,-86.630964;40.239474,-86.630622;40.239198,-86.630238;40.238887,-86.629309;40.238127,-86.62705;40.236291,-86.62608;40.235497,-86.622318;40.232439,-86.621323;40.231631,-86.620671;40.231098,-86.61955;40.230187,-86.618255;40.22914,-86.618033;40.22896,-86.617172;40.228295,-86.616325;40.227667,-86.6154;40.227013,-86.614226;40.226194,-86.614036;40.226061,-86.612858;40.225247,-86.612547;40.225032,-86.610974;40.223934,-86.609373;40.222826,-86.607852;40.221774,-86.606923;40.221124,-86.605774;40.220327,-86.604636;40.219529,-86.601415;40.217291,-86.600411;40.216602,-86.598923;40.21556,-86.598884;40.215533,-86.595438;40.213142,-86.595389;40.213108,-86.594227;40.212294,-86.593284;40.211641,-86.592581;40.211152,-86.589066;40.208708,-86.587484;40.207612,-86.584227;40.205343,-86.584006;40.20519,-86.582635;40.204241,-86.581147;40.203205,-86.580521;40.202769,-86.579481;40.202043,-86.578721;40.201513,-86.578535;40.201382,-86.577972;40.200967,-86.577408;40.200531,-86.576935;40.200143,-86.576334;40.199627,-86.575652;40.199008,-86.575076;40.198447,-86.574806;40.19816,-86.574274;40.197597,-86.573421;40.196677,-86.572471;40.195651,-86.571833;40.194958,-86.571624;40.194733,-86.569611;40.192563,-86.568532;40.191407,-86.567353;40.190135,-86.566223;40.188915,-86.564425;40.186974,-86.564366;40.18691,-86.562705;40.185116,-86.55755;40.179544,-86.555844;40.177702\\\\nPOLYLINE,-87.098467;40.741786,-87.099084;40.742432,-87.100567;40.743962,-87.10203;40.745484,-87.102674;40.746147,-87.104075;40.747602,-87.104748;40.748293,-87.105539;40.749121,-87.107464;40.751114,-87.108595;40.752283,-87.109371;40.753095,-87.110095;40.753839,-87.112812;40.756664,-87.113249;40.757113,-87.113698;40.757585,-87.114252;40.758202,-87.114821;40.758852,-87.115191;40.759299,-87.115628;40.75987,-87.115864;40.76018,-87.115921;40.76028,-87.116546;40.761161,-87.116762;40.761495,-87.117002;40.761878,-87.117259;40.762301,-87.117995;40.763401,-87.118396;40.764021,-87.119059;40.76509,-87.119318;40.765486,-87.119473;40.765741,-87.119696;40.766107,-87.120345;40.767136,-87.121045;40.768261,-87.12152;40.769104,-87.121737;40.769417,-87.12332;40.771871,-87.124792;40.774204,-87.128232;40.779708,-87.128662;40.780373,-87.129041;40.780959,-87.130036;40.782549,-87.130227;40.782844,-87.130952;40.783918,-87.131822;40.785138,-87.132535;40.786106,-87.132915;40.78661,-87.133606;40.787513,-87.134223;40.788337,-87.13498;40.789333,-87.135606;40.790167,-87.136139;40.790866,-87.136454;40.791283,-87.13756;40.792749,-87.138263;40.793666,-87.138978;40.794609,-87.139263;40.795,-87.139363;40.79513,-87.140486;40.796585,-87.14134;40.797729,-87.14214;40.798781,-87.142883;40.799771,-87.145434;40.803122,-87.145873;40.803673,-87.146008;40.803835,-87.146554;40.804447,-87.14673;40.804622,-87.146744;40.80464,-87.146958;40.804841,-87.147284;40.805128,-87.147515;40.80532,-87.147889;40.805613,-87.148188;40.805858,-87.148609;40.806136,-87.149152;40.806495,-87.150501;40.807363,-87.150706;40.807503,-87.151194;40.807746,-87.152741;40.808705,-87.153795;40.809349,-87.154065;40.809501,-87.154149;40.809553,-87.154451;40.809751,-87.157364;40.81158,-87.157693;40.811828,-87.158151;40.812097,-87.158566;40.812348,-87.159076;40.812657,-87.159938;40.813204,-87.160086;40.813308,-87.160367;40.81352,-87.160541;40.813667,-87.160765;40.813871,-87.160844;40.813944,-87.160978;40.814078,-87.161276;40.814419,-87.161369;40.814541,-87.161693;40.814991,-87.16193;40.815404,-87.162378;40.816346,-87.162768;40.817132,-87.163117;40.817905,-87.163332;40.81834,-87.164755;40.821352,-87.165251;40.822367,-87.165485;40.822861,-87.165821;40.823569,-87.166316;40.824644,-87.168668;40.829537,-87.170823;40.834081,-87.172305;40.837179,-87.173035;40.838739,-87.174085;40.840924,-87.176337;40.845668,-87.17656;40.846115,-87.177851;40.848531,-87.17835;40.849384,-87.179198;40.850742,-87.179531;40.851275,-87.181336;40.854188,-87.184104;40.858603,-87.184311;40.85893,-87.185306;40.8605,-87.187302;40.863688,-87.188854;40.866181,-87.191393;40.870253,-87.191928;40.871133,-87.192681;40.872471,-87.193177;40.87341,-87.193794;40.874598,-87.19494;40.876838,-87.195379;40.877696,-87.195468;40.877871,-87.195854;40.878652,-87.196977;40.880861,-87.197783;40.88246,-87.200018;40.886856,-87.200469;40.887736,-87.20057;40.887933,-87.200774;40.888332,-87.201405;40.889564,-87.201843;40.890442,-87.204087;40.89487,-87.204111;40.894907,-87.20879;40.904125,-87.209103;40.904757,-87.209244;40.905029,-87.209447;40.905421,-87.209899;40.906319,-87.209956;40.906433,-87.211233;40.908936,-87.212363;40.911164,-87.212663;40.911755,-87.212882;40.912186,-87.21369;40.913777,-87.21441;40.915179,-87.215798;40.917909,-87.215919;40.918163,-87.216336;40.919096,-87.216443;40.919349,-87.216674;40.919933,-87.216778;40.920221,-87.21701;40.920937,-87.217108;40.92128,-87.2173;40.922002,-87.217452;40.922697,-87.217543;40.923164,-87.218112;40.926267,-87.218395;40.927836,-87.218964;40.930914,-87.219151;40.931997,-87.219182;40.932202,-87.219434;40.933596,-87.219893;40.936239,-87.220035;40.937153,-87.220058;40.937303,-87.220088;40.937538,-87.220205;40.937801,-87.220385;40.938767,-87.220647;40.940229,-87.220741;40.940726,-87.220804;40.941055,-87.220926;40.941754,-87.221023;40.942254,-87.221255;40.943545,-87.221364;40.944333,-87.22138;40.944453,-87.221474;40.945013,-87.221617;40.945682,-87.221823;40.946519,-87.222075;40.94723,-87.222284;40.947735,-87.22236;40.947919,-87.222414;40.948026,-87.22257;40.948333,-87.222704;40.94857,-87.222837;40.948805,-87.223215;40.949361,-87.223637;40.949915,-87.223695;40.949985,-87.224236;40.950585,-87.225369;40.951725,-87.225959;40.95229,-87.226631;40.952946,-87.230388;40.956643,-87.234649;40.960814,-87.236562;40.96269,-87.238054;40.964154,-87.241663;40.967704,-87.243295;40.969278,-87.24388;40.969853,-87.245116;40.97108,-87.248129;40.974037,-87.249186;40.975062,-87.249306;40.975186,-87.25068;40.976684,-87.251286;40.977369,-87.251668;40.977819,-87.252296;40.97864,-87.253701;40.980611,-87.256339;40.984468,-87.259478;40.989062,-87.261593;40.992169,-87.262509;40.9935,-87.265845;40.998379,-87.267271;41.000465,-87.267659;41.001082,-87.26788;41.001451,-87.26821;41.002026,-87.268599;41.002753,-87.268922;41.003428,-87.269091;41.003804,-87.269295;41.0043,-87.269518;41.004893,-87.269874;41.005976,-87.269961;41.006279,-87.270117;41.00692,-87.270266;41.007608,-87.270412;41.00844,-87.270461;41.008758,-87.270558;41.009633,-87.270581;41.009939,-87.270592;41.010239,-87.27061;41.011833,-87.270612;41.012965,-87.270604;41.014437,-87.270582;41.016512,-87.270558;41.017764,-87.270548;41.018044,-87.270495;41.019504,-87.270406;41.022179,-87.270282;41.025486,-87.270246;41.026626,-87.270208;41.028116,-87.270206;41.030362,-87.270196;41.032156,-87.270201;41.036144,-87.270191;41.038128,-87.270186;41.04048,-87.270198;41.042017,-87.2702;41.04227,-87.270193;41.042457,-87.270271;41.044698,-87.270286;41.044945,-87.27032;41.046428,-87.270448;41.050312,-87.270468;41.051114,-87.270508;41.052663,-87.270518;41.056059,-87.27052;41.05694,-87.270517;41.058469,-87.270496;41.061041,-87.270497;41.063621,-87.270488;41.065043,-87.270473;41.071144,-87.270465;41.074999,-87.270467;41.078073,-87.270439;41.07888,-87.270369;41.079648,-87.270339;41.079888,-87.270262;41.08035,-87.270141;41.080893,-87.269996;41.081432,-87.269773;41.082152,-87.269659;41.082464,-87.269364;41.083166,-87.269243;41.083423,-87.268908;41.084068,-87.268474;41.084839,-87.267605;41.086357,-87.267088;41.087276,-87.266878;41.087635,-87.266058;41.089035,-87.265824;41.08946,-87.265757;41.089602,-87.2655;41.090234,-87.26546;41.090331,-87.265422;41.090443,-87.265262;41.091028,-87.265221;41.091226,-87.265135;41.091799,-87.265115;41.092079,-87.265113;41.092426,-87.265167;41.096969,-87.265187;41.099517,-87.265229;41.102838,-87.265237;41.104052,-87.265252;41.106347,-87.265283;41.108555,-87.265302;41.110966,-87.265331;41.113654,-87.265335;41.115195,-87.265337;41.115956,-87.265347;41.117574,-87.265417;41.122521,-87.265464;41.127702,-87.265484;41.129366,-87.265493;41.129833,-87.265493;41.12986,-87.265513;41.130999,-87.265536;41.134191,-87.265545;41.134297,-87.265542;41.134431,-87.265566;41.137052,-87.265576;41.138136,-87.26558;41.139322,-87.265556;41.141396,-87.265612;41.142065,-87.26564;41.144482,-87.265656;41.146179,-87.265654;41.146784,-87.265651;41.146843,-87.265645;41.146959,-87.265648;41.147684,-87.265649;41.148069,-87.265684;41.149346,-87.265759;41.150018,-87.265892;41.15087,-87.265973;41.151387,-87.266076;41.151959,-87.26614;41.152262,-87.266158;41.152383,-87.266197;41.152553,-87.266344;41.153127,-87.26646;41.153546,-87.266675;41.154253,-87.266866;41.154812,-87.267103;41.155447,-87.267417;41.156224,-87.26764;41.156723,-87.267773;41.156994,-87.268103;41.157629,-87.26937;41.160016,-87.269856;41.16094,-87.270227;41.161688,-87.270389;41.161991,-87.270425;41.162049,-87.270663;41.162374,-87.270775;41.162573,-87.270952;41.162885,-87.272888;41.16647,-87.272974;41.166637,-87.273024;41.166733,-87.273216;41.167142,-87.273372;41.167433,-87.273574;41.167799,-87.275388;41.171084\\\\nPOLYLINE,-85.952825;39.408423,-85.952204;39.407954,-85.951977;39.407781,-85.949141;39.405619,-85.946527;39.403578,-85.946017;39.403153,-85.945447;39.402583,-85.944939;39.402004,-85.944421;39.401285,-85.943906;39.400373,-85.943425;39.399268,-85.943189;39.398441,-85.943048;39.397865,-85.942949;39.397024,-85.942908;39.396445,-85.942856;39.39342,-85.942831;39.392065,-85.942826;39.391811,-85.942823;39.391647,-85.942815;39.391245,-85.942758;39.388535,-85.942669;39.384636,-85.942626;39.380938,-85.942571;39.377984,-85.94256;39.377215,-85.942553;39.376778,-85.942543;39.376065,-85.942528;39.375029,-85.942461;39.371225,-85.942381;39.367054,-85.942314;39.363699,-85.942292;39.36219,-85.942286;39.361821,-85.94229;39.359113,-85.942239;39.356347,-85.942222;39.355506,-85.942213;39.35507,-85.942209;39.354887,-85.94219;39.353977,-85.942156;39.352306,-85.942106;39.34941,-85.942083;39.348311,-85.942083;39.348296,-85.942041;39.347599\\\\nPOLYLINE,-87.9544;30.919417,-87.954109;30.919548,-87.953221;30.920048,-87.951878;30.920785,-87.946086;30.924001,-87.94475;30.924737,-87.943392;30.925427,-87.942008;30.926061,-87.94101;30.926475,-87.940602;30.926645,-87.939175;30.92717,-87.937726;30.927643,-87.936268;30.928061,-87.931855;30.929241,-87.928909;30.930039,-87.925293;30.931011,-87.92382;30.931405,-87.923606;30.931462,-87.922356;30.931797,-87.919275;30.932624,-87.918279;30.932892,-87.917081;30.933213,-87.915616;30.933619,-87.914142;30.934014,-87.911195;30.934796,-87.909734;30.935203,-87.902688;30.93709,-87.902261;30.937205,-87.90185;30.937315,-87.90144;30.937426,-87.900423;30.937699,-87.890557;30.940352,-87.888936;30.94078,-87.887608;30.941135,-87.885878;30.941606,-87.885443;30.941722,-87.8832;30.942326,-87.882795;30.942434,-87.878286;30.943635,-87.876815;30.944035,-87.873872;30.94482,-87.867977;30.94641,-87.865041;30.947194,-87.864838;30.94726,-87.864137;30.947459,-87.861396;30.948197,-87.861297;30.948229,-87.860129;30.948515,-87.858449;30.948967,-87.85747;30.94923,-87.854506;30.950024,-87.852376;30.950618,-87.851973;30.950716,-87.851824;30.950743,-87.850697;30.951043,-87.849221;30.951417,-87.847733;30.951742,-87.846229;30.952007,-87.844704;30.952218,-87.843174;30.952378,-87.841648;30.952485,-87.841054;30.952503,-87.840113;30.952531,-87.831867;30.952642,-87.82983;30.952731,-87.828657;30.952818,-87.828528;30.952827,-87.827225;30.952964,-87.826011;30.95313,-87.824475;30.953375,-87.823091;30.953656,-87.822516;30.953786,-87.820914;30.954148,-87.819211;30.95455,-87.817939;30.954834,-87.817787;30.954853,-87.817353;30.954946,-87.815873;30.955288,-87.814385;30.955615,-87.81398;30.955707,-87.811552;30.956257,-87.808426;30.956966,-87.806929;30.9573,-87.805438;30.957623,-87.803936;30.957899,-87.802416;30.958123,-87.801905;30.958186,-87.800376;30.958334,-87.798849;30.95844,-87.793649;30.958775,-87.792702;30.958836,-87.791167;30.95894,-87.789623;30.959066,-87.788088;30.959216,-87.787476;30.959287,-87.786553;30.959395,-87.785023;30.959601,-87.784361;30.959703,-87.783505;30.959835,-87.781987;30.9601,-87.780484;30.960389,-87.771448;30.962214,-87.768439;30.962825,-87.767791;30.962947,-87.766585;30.963201,-87.766162;30.963301,-87.765305;30.963478,-87.763164;30.963911,-87.762237;30.964077,-87.759696;30.964593,-87.757641;30.965005,-87.755662;30.965421,-87.755002;30.965553,-87.754026;30.965765,-87.753955;30.965776,-87.753729;30.965811,-87.753305;30.965906,-87.752319;30.966137,-87.750836;30.966513,-87.749355;30.966915,-87.747887;30.967341,-87.746427;30.967795,-87.74498;30.968278,-87.743531;30.96877,-87.742297;30.969194,-87.742086;30.969267,-87.740637;30.969757,-87.732738;30.972452,-87.73055;30.973199,-87.7291;30.973703,-87.727646;30.974187,-87.727325;30.974296,-87.726195;30.974678,-87.724772;30.975171,-87.723347;30.975695,-87.721918;30.976245,-87.720498;30.976823,-87.719095;30.977423,-87.71771;30.97805,-87.716338;30.978701,-87.714979;30.979379,-87.714883;30.979429,-87.713623;30.980092,-87.712287;30.980834,-87.710965;30.981598,-87.709664;30.98239,-87.708381;30.983203,-87.707107;30.984053,-87.705854;30.984922,-87.703374;30.986708,-87.703058;30.986937,-87.699669;30.989399,-87.698435;30.99029,-87.691027;30.995664,-87.689791;30.996554,-87.687839;30.997972,-87.687318;30.998349,-87.686091;30.999262,-87.684879;31.00018,-87.683674;31.001104,-87.683209;31.001468,-87.678872;31.004859,-87.677684;31.005796,-87.676484;31.006734,-87.675259;31.007652,-87.674024;31.008535,-87.67276;31.009386,-87.671473;31.010205,-87.670155;31.01099,-87.668828;31.011733,-87.667483;31.01245,-87.664782;31.013877,-87.662872;31.014924,-87.662752;31.015008,-87.662312;31.015264,-87.661791;31.015574,-87.660995;31.016046,-87.660258;31.016501,-87.660061;31.016617,-87.659693;31.016852,-87.659556;31.016916,-87.658293;31.017739,-87.657447;31.018309,-87.657326;31.018399,-87.655894;31.019384,-87.655539;31.019629,-87.655053;31.019954,-87.653319;31.021152,-87.653033;31.021373,-87.652629;31.021654,-87.652443;31.021778,-87.651903;31.022151,-87.651521;31.022391,-87.651409;31.022472,-87.646406;31.025919,-87.641998;31.028956,-87.640411;31.030049,-87.639164;31.030913,-87.637204;31.032262,-87.636245;31.032922,-87.634967;31.033747,-87.633651;31.03452,-87.632763;31.035005,-87.631397;31.035688,-87.630474;31.036117,-87.629539;31.036517,-87.629067;31.036708,-87.627754;31.037204,-87.627648;31.037244,-87.626209;31.037727,-87.624758;31.038171,-87.619877;31.03965,-87.616014;31.040816,-87.615417;31.041002\\\\nPOLYLINE,-87.954498;30.918808,-87.954197;30.918946,-87.949167;30.921739,-87.945164;30.923965,-87.943816;30.924683,-87.942447;30.925345,-87.941043;30.925955,-87.940702;30.926088,-87.939621;30.92651,-87.938184;30.927005,-87.936727;30.927452,-87.935256;30.927853,-87.93084;30.929037,-87.92937;30.929435,-87.925023;30.930602,-87.923528;30.931004,-87.923477;30.931018,-87.922084;30.931391,-87.919072;30.9322,-87.918101;30.932459,-87.911647;30.934194,-87.910165;30.934586,-87.902137;30.93674,-87.901199;30.936992,-87.900248;30.937247,-87.896869;30.938154,-87.888045;30.940526,-87.886573;30.940917,-87.885094;30.941318,-87.881333;30.942327,-87.876267;30.943685,-87.874798;30.944089,-87.870374;30.945268,-87.867432;30.94606,-87.865966;30.946462,-87.864498;30.946858,-87.863536;30.947112,-87.862944;30.947256,-87.862706;30.94732,-87.862467;30.947396,-87.860841;30.947832,-87.857698;30.948675,-87.855164;30.949355,-87.85362;30.949738,-87.85333;30.949823,-87.853046;30.94989,-87.851974;30.950124,-87.851323;30.950251,-87.850232;30.950446,-87.849722;30.950516,-87.84921;30.950578,-87.848698;30.950633,-87.848186;30.95068,-87.847163;30.950749,-87.845617;30.950803,-87.84115;30.950908,-87.839465;30.950954,-87.837927;30.951017,-87.83536;30.951206,-87.833822;30.951368,-87.832289;30.951569,-87.830768;30.951805,-87.830265;30.951893,-87.828756;30.952176,-87.828182;30.952301,-87.826769;30.952608,-87.826619;30.952635,-87.826185;30.952724,-87.82549;30.952876,-87.825076;30.952987,-87.823736;30.95329,-87.823033;30.953457,-87.822945;30.953476,-87.822342;30.95361,-87.820755;30.953962,-87.820257;30.954077,-87.819264;30.954281,-87.819115;30.954319,-87.817398;30.954705,-87.816323;30.954959,-87.81597;30.955051,-87.814195;30.955445,-87.813962;30.955494,-87.813204;30.955654,-87.812201;30.955838,-87.81155;30.955943,-87.811194;30.956,-87.809669;30.956195,-87.809443;30.956215,-87.808131;30.956333,-87.807108;30.956392,-87.806083;30.956439,-87.801453;30.956602,-87.799922;30.956669,-87.798395;30.956782,-87.796875;30.956951,-87.795363;30.957174,-87.793859;30.957454,-87.792336;30.957757,-87.79193;30.957838,-87.788956;30.958445,-87.787466;30.958742,-87.78665;30.958908,-87.778465;30.960568,-87.776969;30.960867,-87.764653;30.963362,-87.764502;30.963379,-87.764356;30.963404,-87.763502;30.963575,-87.763287;30.963613,-87.76189;30.963921,-87.759749;30.964356,-87.759391;30.964429,-87.758454;30.964611,-87.757089;30.964887,-87.756324;30.96501,-87.753768;30.965569,-87.753295;30.965676,-87.752947;30.965765,-87.752456;30.965882,-87.750979;30.96625,-87.749511;30.966643,-87.74804;30.967065,-87.746579;30.967513,-87.745133;30.967991,-87.742109;30.969022,-87.73361;30.971921,-87.732633;30.972252,-87.731697;30.97257,-87.72724;30.974091,-87.725933;30.974537,-87.724482;30.97504,-87.723057;30.975559,-87.721646;30.976118,-87.720232;30.976693,-87.718826;30.977291,-87.717437;30.977923,-87.716057;30.978584,-87.714749;30.979248,-87.714695;30.979275,-87.713798;30.979742,-87.712452;30.980478,-87.711566;30.980981,-87.71025;30.981758,-87.708958;30.982557,-87.707682;30.983379,-87.706421;30.984238,-87.705181;30.985118,-87.702836;30.986814,-87.702294;30.987206,-87.694884;30.992582,-87.693654;30.993467,-87.690985;30.9954,-87.687631;30.997829,-87.686231;30.998836,-87.68498;30.999714,-87.683735;31.00057,-87.683002;31.001067,-87.682482;31.00142,-87.681218;31.002262,-87.679947;31.003094,-87.67879;31.003845,-87.670111;31.00948,-87.667559;31.011148,-87.666282;31.011991,-87.663744;31.013696,-87.661537;31.015207,-87.661224;31.015421,-87.659847;31.016374,-87.659715;31.01645,-87.658497;31.017275,-87.657811;31.017774,-87.655614;31.01929,-87.653984;31.020416,-87.653447;31.020783,-87.653148;31.020974,-87.65111;31.022381,-87.650885;31.022556,-87.646163;31.025812,-87.643514;31.027639,-87.641867;31.028779,-87.639092;31.030683,-87.637064;31.032084,-87.636582;31.032417,-87.63616;31.032704,-87.634882;31.03353,-87.633567;31.034308,-87.632221;31.03503,-87.630854;31.035694,-87.629921;31.036112,-87.628506;31.036686,-87.627505;31.03705,-87.627067;31.03721,-87.625617;31.037676,-87.621228;31.039003,-87.619871;31.039418,-87.616853;31.040319,-87.615422;31.040726\\\\nPOLYLINE,-86.778514;33.372298,-86.779031;33.373671,-86.779363;33.374451,-86.780984;33.378453,-86.781446;33.379975,-86.781782;33.381214,-86.782249;33.383223,-86.78235;33.383657,-86.782903;33.386035,-86.783131;33.387054,-86.783494;33.388674,-86.783618;33.389176,-86.783868;33.390186,-86.784605;33.393168,-86.784708;33.393583,-86.78477;33.393836,-86.785041;33.394959,-86.785092;33.395168,-86.785586;33.397214,-86.785789;33.397917,-86.785935;33.39831,-86.785996;33.398473,-86.786159;33.398882,-86.786651;33.399839,-86.787135;33.400703,-86.787512;33.401195,-86.787975;33.401735,-86.78872;33.402472,-86.790388;33.403816,-86.791614;33.404711,-86.79421;33.406666,-86.795032;33.407285,-86.79523;33.407434,-86.796153;33.408012,-86.796992;33.408496,-86.799512;33.409543,-86.799887;33.409677,-86.802433;33.41073,-86.803645;33.411231,-86.804262;33.41149,-86.806115;33.412266,-86.806937;33.412608,-86.807542;33.412858,-86.807979;33.41304,-86.808813;33.413386,-86.809196;33.413553,-86.80944;33.413693,-86.809914;33.413956,-86.810466;33.414374,-86.810848;33.414716,-86.810932;33.414809,-86.81134;33.415263,-86.81163;33.415694,-86.811912;33.416258,-86.812038;33.41666,-86.812091;33.416829,-86.812298;33.417413,-86.812343;33.417541,-86.812503;33.417986,-86.812626;33.418335,-86.812922;33.419167,-86.813234;33.420107,-86.814011;33.422348,-86.814075;33.422475,-86.814143;33.42261,-86.8143;33.422922,-86.814654;33.423444,-86.815197;33.424084,-86.815868;33.424641,-86.816593;33.425177,-86.818166;33.42634,-86.819636;33.427433,-86.820477;33.42805,-86.820641;33.428182,-86.821072;33.428568,-86.821262;33.428753,-86.821356;33.428846,-86.821529;33.429034,-86.821883;33.429446,-86.822167;33.42982,-86.822705;33.430677,-86.823349;33.431704,-86.82392;33.432679,-86.824039;33.432907,-86.824254;33.433317,-86.824355;33.433577,-86.824417;33.433818,-86.824413;33.434095,-86.824449;33.434275,-86.824515;33.434433,-86.824537;33.434798,-86.824537;33.435295,-86.824492;33.435796,-86.824465;33.435878,-86.824452;33.435969,-86.824337;33.436382,-86.824072;33.437001,-86.822958;33.43929,-86.822704;33.439822,-86.822635;33.439943,-86.822481;33.440216,-86.822256;33.440559,-86.821926;33.441059,-86.821463;33.441696,-86.821233;33.441934,-86.820654;33.442529,-86.819769;33.443441,-86.819069;33.444163,-86.818614;33.444729,-86.818225;33.445391,-86.817936;33.446036,-86.817732;33.4468,-86.817711;33.44688,-86.81769;33.446959,-86.817686;33.446979,-86.817606;33.44809,-86.817687;33.448832,-86.817884;33.449964,-86.817909;33.450114,-86.818212;33.451854,-86.818267;33.452171,-86.818586;33.454112,-86.818679;33.454678,-86.818702;33.454752,-86.819039;33.455861,-86.819463;33.456857,-86.819921;33.457746,-86.820153;33.458107,-86.820398;33.458486,-86.820521;33.458678,-86.820984;33.459331,-86.821666;33.460292,-86.822134;33.460951,-86.822301;33.461187,-86.824123;33.463807,-86.824225;33.463943,-86.827132;33.468155,-86.827827;33.469451,-86.82791;33.46967,-86.827962;33.469806,-86.828093;33.470153,-86.828139;33.470317,-86.8283;33.470891,-86.828318;33.470987,-86.828478;33.471831,-86.828508;33.472127,-86.828558;33.472627,-86.828553;33.473168,-86.82855;33.473578,-86.828352;33.474789,-86.828311;33.47504,-86.82789;33.476726,-86.827723;33.477393,-86.827035;33.480161,-86.826885;33.480766,-86.826563;33.482059,-86.826183;33.483644,-86.826152;33.483769,-86.826018;33.484311,-86.825743;33.485408,-86.825496;33.486162,-86.825217;33.486776,-86.825013;33.487087,-86.824454;33.488016,-86.823825;33.488839,-86.823323;33.489362,-86.82268;33.489979,-86.822514;33.490136,-86.822153;33.490482,-86.821222;33.49136,-86.821076;33.491494,-86.816743;33.495573,-86.816041;33.496234,-86.815556;33.496719,-86.815167;33.497174,-86.814789;33.497711,-86.814554;33.498161,-86.814378;33.498654,-86.81419;33.499374,-86.814119;33.500078,-86.814162;33.50059,-86.814307;33.501365,-86.814524;33.501933,-86.814749;33.502386,-86.815047;33.502845,-86.81582;33.503991,-86.816059;33.504398,-86.81627;33.504688,-86.817151;33.505982,-86.817925;33.5071,-86.818731;33.508263,-86.81884;33.508426,-86.81933;33.509152,-86.819966;33.510097,-86.820571;33.510996,-86.821185;33.511909,-86.821956;33.513053,-86.822543;33.513925,-86.822808;33.514319,-86.823389;33.515405,-86.824361;33.517198,-86.824565;33.517453,-86.824678;33.517637,-86.824916;33.518023,-86.825232;33.518538,-86.825308;33.518661,-86.825547;33.518988,-86.82586;33.519419\\\\nPOLYLINE,-86.82586;33.519419,-86.825888;33.518679,-86.825847;33.518152,-86.825829;33.51793,-86.825579;33.51742,-86.825519;33.517296,-86.825287;33.51697,-86.823847;33.515186,-86.823418;33.514598,-86.823108;33.514241,-86.822674;33.513638,-86.822605;33.513542,-86.822445;33.51332,-86.822188;33.51294,-86.821415;33.511802,-86.820797;33.51089,-86.820189;33.509994,-86.819552;33.509054,-86.819111;33.508405,-86.818966;33.508152,-86.818161;33.506971,-86.817493;33.505992,-86.817313;33.505727,-86.816521;33.504559,-86.816302;33.504237,-86.816096;33.503943,-86.815272;33.502775,-86.814959;33.502293,-86.814737;33.501832,-86.814651;33.501596,-86.814454;33.500982,-86.814385;33.500483,-86.814365;33.499938,-86.814403;33.499419,-86.814504;33.498939,-86.814603;33.498637,-86.814732;33.498275,-86.814916;33.497905,-86.815263;33.497369,-86.815668;33.496882,-86.81641;33.496164,-86.816739;33.495877,-86.821358;33.4915,-86.821492;33.491368,-86.822155;33.490751,-86.822501;33.490411,-86.822573;33.490339,-86.822675;33.490243,-86.823663;33.489285,-86.824206;33.4887,-86.825021;33.487563,-86.82576;33.486133,-86.826059;33.485065,-86.82623;33.484316,-86.82639;33.483666,-86.826422;33.483534,-86.827096;33.480795,-86.827189;33.480548,-86.827202;33.480493,-86.827909;33.477395,-86.828281;33.475887,-86.828523;33.474724,-86.828675;33.473992,-86.828723;33.473148,-86.828736;33.47291,-86.828718;33.472755,-86.828705;33.472612,-86.828613;33.471593,-86.828425;33.470775,-86.82831;33.470273,-86.828296;33.470214,-86.828117;33.469778,-86.828051;33.469617,-86.827491;33.468426,-86.826581;33.467022,-86.824389;33.46387,-86.824299;33.463735,-86.824117;33.463484,-86.823821;33.463054,-86.822457;33.46108,-86.822362;33.460946,-86.821155;33.459255,-86.820751;33.458688,-86.820371;33.458108,-86.819998;33.45754,-86.819466;33.456542,-86.819211;33.45579,-86.818951;33.45467,-86.818776;33.453702,-86.818123;33.45009,-86.818097;33.449939,-86.817966;33.449178,-86.817915;33.448881,-86.817867;33.448109,-86.817871;33.44737,-86.817949;33.446928,-86.817963;33.446847,-86.817977;33.446768,-86.818022;33.446511,-86.818337;33.445681,-86.818837;33.444798,-86.819372;33.44418,-86.821603;33.441851,-86.821714;33.441702,-86.822298;33.440921,-86.822529;33.440569,-86.822835;33.440102,-86.823253;33.439231,-86.82437;33.436943,-86.824577;33.436438,-86.824709;33.435954,-86.82472;33.435858,-86.824803;33.435079,-86.824784;33.434534,-86.824682;33.433973,-86.824604;33.433827,-86.824421;33.433304,-86.824122;33.43273,-86.824091;33.432671,-86.823453;33.43163,-86.823036;33.430948,-86.822902;33.43074,-86.82201;33.429349,-86.821774;33.428902,-86.821698;33.428787,-86.821036;33.427777,-86.820333;33.427021,-86.819924;33.426651,-86.819519;33.426333,-86.819015;33.425987,-86.817752;33.425162,-86.816894;33.42459,-86.816391;33.42418,-86.81583;33.423679,-86.815309;33.423127,-86.814789;33.42251,-86.814104;33.421542,-86.813634;33.420651,-86.813495;33.420372,-86.813365;33.420028,-86.81305;33.419103,-86.812131;33.416463,-86.812011;33.416158,-86.811685;33.415566,-86.811393;33.415135,-86.811097;33.41481,-86.810896;33.414589,-86.810514;33.414254,-86.809986;33.413818,-86.809589;33.413586,-86.809315;33.413446,-86.809071;33.413336,-86.807854;33.412836,-86.80769;33.412768,-86.807063;33.412512,-86.806166;33.412143,-86.804619;33.41149,-86.803732;33.411116,-86.803537;33.411035,-86.802799;33.410729,-86.79998;33.40956,-86.797903;33.40869,-86.797235;33.408372,-86.796402;33.407932,-86.795495;33.407289,-86.795282;33.407128,-86.793624;33.405879,-86.793501;33.405786,-86.791884;33.40457,-86.790658;33.403674,-86.788989;33.40233,-86.788262;33.401573,-86.78744;33.400596,-86.786946;33.399855,-86.786668;33.399326,-86.78634;33.39873,-86.786066;33.397992,-86.786057;33.397968,-86.785875;33.397286,-86.785424;33.395321,-86.78505;33.39369,-86.784991;33.393433,-86.784586;33.391819,-86.783802;33.388694,-86.783207;33.386052,-86.782633;33.383685,-86.782501;33.383142,-86.781963;33.380942,-86.781619;33.379689,-86.78115;33.378153,-86.779509;33.374109,-86.778735;33.372192,-86.778517;33.37165\\\\nPOLYLINE,-86.827086;33.523767,-86.827049;33.523711,-86.826724;33.523217,-86.826149;33.522179,-86.826085;33.521954,-86.825964;33.521529,-86.825919;33.521217,-86.825861;33.520812,-86.82586;33.519419\\\\nPOLYLINE,-86.825217;33.841691,-86.825061;33.841173,-86.824943;33.840751,-86.824764;33.840059,-86.824686;33.839738,-86.824564;33.839204,-86.824437;33.838599,-86.82423;33.837333,-86.824149;33.836689,-86.824146;33.836654,-86.824036;33.835417,-86.824002;33.834889,-86.823973;33.833607,-86.824007;33.832333,-86.824032;33.831896,-86.824132;33.83085,-86.824253;33.829872,-86.82469;33.8268,-86.824853;33.825532,-86.824957;33.824469,-86.825022;33.823612,-86.825216;33.818608,-86.825274;33.817307,-86.825305;33.816373,-86.825325;33.815941,-86.825349;33.815426,-86.825373;33.814546,-86.825386;33.814244,-86.825394;33.813614,-86.825395;33.813547,-86.825384;33.812749,-86.825336;33.8112,-86.825338;33.811035,-86.825273;33.809212,-86.82527;33.809136,-86.825258;33.80859,-86.825246;33.808271,-86.825223;33.80764,-86.825221;33.807384,-86.825164;33.80573,-86.8251;33.803556,-86.825047;33.801788,-86.825015;33.800723,-86.825007;33.80058,-86.825008;33.800349,-86.824996;33.800152,-86.824942;33.798501,-86.824928;33.798023,-86.824827;33.794702,-86.824693;33.790256,-86.824683;33.789724,-86.824681;33.789617,-86.824684;33.788957,-86.824707;33.78826,-86.824748;33.7875,-86.824813;33.78675,-86.824901;33.785994,-86.824941;33.785554,-86.824968;33.785392,-86.825122;33.784483,-86.825247;33.783839,-86.825339;33.783418,-86.825413;33.783103,-86.825458;33.782888,-86.825754;33.781786,-86.826026;33.780878,-86.826312;33.779985,-86.829464;33.76996,-86.82986;33.768715,-86.829925;33.768505,-86.830318;33.767242,-86.830541;33.766509,-86.830623;33.766193,-86.830726;33.765763,-86.83086;33.765012,-86.830917;33.76458,-86.830953;33.764257,-86.830995;33.763712,-86.831009;33.763386,-86.831014;33.762948,-86.831009;33.762621,-86.830981;33.762085,-86.830935;33.761541,-86.830864;33.761013,-86.830806;33.760674,-86.830536;33.759341,-86.83047;33.759064,-86.830465;33.75904,-86.82907;33.752584,-86.829016;33.752337,-86.827861;33.746991,-86.827829;33.746828,-86.827212;33.743992,-86.826793;33.742028,-86.826344;33.739961,-86.825782;33.737339,-86.825709;33.737014,-86.824935;33.733411,-86.824798;33.732753,-86.824729;33.732335,-86.824726;33.732314,-86.824678;33.731981,-86.824626;33.73143,-86.824611;33.731211,-86.824586;33.730563,-86.824603;33.729655,-86.824629;33.729325,-86.824662;33.72899,-86.824732;33.728432,-86.824764;33.728217,-86.82482;33.727895,-86.824937;33.727359,-86.825111;33.726698,-86.825312;33.726054,-86.825512;33.725523,-86.825557;33.725411,-86.825679;33.725109,-86.825817;33.724798,-86.826117;33.724181,-86.82692;33.722616,-86.82811;33.720298,-86.828823;33.718989,-86.82904;33.718608,-86.829571;33.717684,-86.830352;33.716401,-86.830787;33.715714,-86.831368;33.714836,-86.831958;33.713971,-86.832376;33.713366,-86.834199;33.710699,-86.834337;33.710507,-86.835125;33.70936,-86.835387;33.70897,-86.835477;33.708827,-86.835743;33.708363,-86.835817;33.708216,-86.835952;33.707954,-86.83614;33.707543,-86.836324;33.707091,-86.836422;33.7068,-86.836522;33.706475,-86.836608;33.706144,-86.836635;33.706044,-86.836726;33.705606,-86.836762;33.705387,-86.836824;33.704944,-86.836868;33.704386,-86.836876;33.703832,-86.836864;33.703503,-86.83685;33.703278,-86.836781;33.702669,-86.836737;33.702389,-86.836645;33.70196,-86.836563;33.701636,-86.836503;33.701418,-86.836438;33.701203,-86.836365;33.700988,-86.836249;33.700672,-86.836022;33.700151,-86.835358;33.698716,-86.834224;33.696263,-86.833862;33.695481,-86.829949;33.687008,-86.829139;33.685247,-86.829038;33.685039,-86.828967;33.684907,-86.828938;33.684849,-86.828799;33.684519,-86.828522;33.683895,-86.828356;33.683476,-86.828247;33.683155,-86.828123;33.682725,-86.828044;33.682393,-86.827938;33.681849,-86.827913;33.681699,-86.82784;33.681081,-86.827827;33.680856,-86.827827;33.680304,-86.827844;33.679963,-86.82788;33.679524,-86.827984;33.678751,-86.82818;33.678,-86.828326;33.677568,-86.828522;33.67704,-86.828705;33.676505,-86.828874;33.676029,-86.829161;33.675225,-86.829476;33.674382,-86.829824;33.673417,-86.829871;33.673284,-86.830124;33.672568,-86.830322;33.672142,-86.830359;33.672026,-86.830422;33.671824,-86.830443;33.671762,-86.830611;33.671274,-86.831184;33.669695,-86.831414;33.668946,-86.831637;33.668016,-86.831777;33.666947,-86.831805;33.666191,-86.831791;33.665633,-86.831741;33.664972,-86.831692;33.664531,-86.831616;33.664089,-86.831494;33.663536,-86.83079;33.660563,-86.830458;33.658749,-86.830394;33.65834,-86.830295;33.657618,-86.830218;33.657019,-86.830211;33.656949,-86.830158;33.656445,-86.830109;33.655973,-86.829804;33.652659,-86.829798;33.652594,-86.829779;33.652306,-86.829715;33.651659,-86.829658;33.650998,-86.829637;33.65076,-86.829607;33.650319,-86.829593;33.650108,-86.82939;33.64784,-86.829303;33.646644,-86.8291;33.645301,-86.829026;33.644963,-86.828929;33.644721,-86.828755;33.643895,-86.828444;33.642946,-86.826925;33.639044,-86.826917;33.639026,-86.826367;33.637744,-86.82571;33.636308,-86.825565;33.636016,-86.825193;33.635268,-86.8242;33.633421,-86.82414;33.633321,-86.822231;33.63014,-86.821807;33.629458,-86.821093;33.62826,-86.818394;33.623817,-86.817683;33.622707,-86.817609;33.622596,-86.817345;33.622199,-86.816186;33.620408,-86.81487;33.618374,-86.813819;33.61676,-86.81336;33.616054,-86.812791;33.61518,-86.81169;33.613492,-86.811112;33.612595,-86.810961;33.612361,-86.810781;33.612064,-86.810694;33.611907,-86.810525;33.611599,-86.810261;33.611075,-86.8101;33.610741,-86.809892;33.610258,-86.809805;33.610042,-86.809671;33.609673,-86.809503;33.609166,-86.809431;33.608951,-86.809281;33.608378,-86.809259;33.608275,-86.808892;33.606632,-86.808511;33.604928,-86.808339;33.604176,-86.80832;33.604065,-86.808242;33.60375,-86.806941;33.598036,-86.806828;33.597513,-86.806717;33.597072,-86.806618;33.596648,-86.806491;33.596003,-86.806416;33.595567,-86.806137;33.593503,-86.805912;33.591642,-86.80583;33.591009,-86.805747;33.590364,-86.805693;33.589625,-86.805737;33.588623,-86.805843;33.587883,-86.806002;33.587304,-86.806222;33.586646,-86.806415;33.586275,-86.80683;33.585439,-86.806904;33.58529,-86.807369;33.584658,-86.808016;33.583842,-86.80839;33.583383,-86.808605;33.583118,-86.808952;33.582717,-86.808971;33.582695,-86.8092;33.582412,-86.812471;33.57836,-86.813524;33.576984,-86.813946;33.5765,-86.814416;33.57595,-86.814728;33.575599,-86.814795;33.575523,-86.815678;33.574617,-86.81602;33.57426,-86.816421;33.57384,-86.817122;33.573163,-86.819178;33.571176,-86.819386;33.57096,-86.819627;33.57071,-86.821081;33.569164,-86.822196;33.567908,-86.822248;33.567849,-86.82596;33.563646,-86.826579;33.562932,-86.826787;33.562692,-86.827547;33.561815,-86.829096;33.560027,-86.830238;33.558709,-86.83066;33.558145,-86.831003;33.557505,-86.831203;33.556955,-86.831336;33.556341,-86.831397;33.555796,-86.831394;33.555349,-86.831248;33.554305,-86.831077;33.553852,-86.83101;33.553674,-86.830894;33.553365,-86.83011;33.551519,-86.829694;33.550527,-86.829094;33.549115,-86.828853;33.548547,-86.828467;33.547578,-86.82816;33.546864,-86.827806;33.546044,-86.82751;33.545357,-86.827051;33.544291,-86.826595;33.543219,-86.825904;33.541594,-86.825837;33.541449,-86.825199;33.53991,-86.824683;33.538665,-86.824627;33.538528,-86.824573;33.538399,-86.824114;33.537242,-86.823935;33.536562,-86.823926;33.536515,-86.823851;33.536116,-86.823803;33.535218,-86.823851;33.534342,-86.823933;33.533859,-86.824077;33.533271,-86.824286;33.532727,-86.824489;33.532247,-86.824883;33.531534,-86.825454;33.530638,-86.825536;33.530509,-86.826529;33.52885,-86.827505;33.527234,-86.82763;33.526926,-86.827744;33.526535,-86.827815;33.526004,-86.827802;33.525328,-86.82774;33.525004,-86.827579;33.524617,-86.827477;33.524428,-86.8273;33.524099,-86.827086;33.523767\\\\nPOLYLINE,-86.82586;33.519419,-86.825975;33.519607,-86.826318;33.520169,-86.826807;33.521107,-86.826987;33.521701,-86.827006;33.521836,-86.827088;33.522283,-86.827117;33.522607,-86.827125;33.523051,-86.827091;33.523677,-86.827086;33.523767\\\\nPOLYLINE,-86.827086;33.523767,-86.827086;33.523811,-86.827091;33.524614,-86.827025;33.525543,-86.827001;33.526685,-86.826911;33.527375,-86.826785;33.5278,-86.826703;33.528081,-86.82662;33.528272,-86.826278;33.528861,-86.825945;33.529412,-86.825589;33.530001,-86.824469;33.531855,-86.824083;33.532657,-86.82384;33.533389,-86.823739;33.533793,-86.823637;33.534404,-86.823596;33.53486,-86.823591;33.535542,-86.823683;33.536184,-86.823758;33.536606,-86.823789;33.536782,-86.823959;33.537374,-86.824408;33.538458,-86.824458;33.538579,-86.824513;33.538711,-86.824896;33.539625,-86.825699;33.541537,-86.825769;33.541685,-86.826644;33.543816,-86.826862;33.544348,-86.827311;33.545411,-86.827603;33.546103,-86.827966;33.546962,-86.828254;33.547643,-86.828449;33.548152,-86.828685;33.548662,-86.82878;33.54889,-86.829491;33.550584,-86.829919;33.551575,-86.830704;33.55342,-86.830957;33.554091,-86.831058;33.554358,-86.831204;33.555403,-86.831207;33.555851,-86.831146;33.556396,-86.831013;33.55701,-86.830813;33.55756,-86.83047;33.5582,-86.830048;33.558764,-86.829812;33.559033,-86.828856;33.560123,-86.827336;33.561854,-86.826583;33.562701,-86.826002;33.563353,-86.825704;33.563689,-86.82398;33.56566,-86.822867;33.566933,-86.822203;33.567692,-86.821467;33.568553,-86.820589;33.56951,-86.820139;33.56998,-86.819344;33.570797,-86.819324;33.570818,-86.816998;33.573107,-86.815925;33.574163,-86.815569;33.574513,-86.814713;33.575441,-86.814024;33.576224,-86.81346;33.57689,-86.812325;33.578269,-86.81198;33.578649,-86.809817;33.581308,-86.808991;33.582323,-86.808901;33.582434,-86.808163;33.583348,-86.807788;33.583812,-86.807134;33.584644,-86.80669;33.58532,-86.806576;33.585522,-86.806452;33.585739,-86.806168;33.586256,-86.806032;33.586546,-86.805838;33.587048,-86.805817;33.587131,-86.805643;33.587802,-86.8055;33.588599,-86.805443;33.589119,-86.805439;33.589609,-86.805456;33.590387,-86.805538;33.59099,-86.805629;33.591665,-86.805859;33.593528,-86.806114;33.595435,-86.806136;33.595601,-86.806211;33.596038,-86.806358;33.596813,-86.80653;33.597567,-86.806873;33.599082,-86.807979;33.603774,-86.808237;33.604898,-86.808624;33.606585,-86.808936;33.607967,-86.808985;33.608285,-86.809023;33.608385,-86.809178;33.60895,-86.809405;33.609665,-86.809443;33.609761,-86.80955;33.610036,-86.809626;33.610259,-86.809853;33.6108,-86.810021;33.611135,-86.810161;33.611427,-86.810285;33.61166,-86.810399;33.611866,-86.810542;33.612125,-86.810718;33.612425,-86.811065;33.612964,-86.811446;33.613556,-86.812548;33.615244,-86.813026;33.61598,-86.813516;33.616733,-86.814557;33.618335,-86.8149;33.61885,-86.81497;33.618957,-86.815808;33.620248,-86.817064;33.622183,-86.817325;33.622586,-86.817395;33.622693,-86.818105;33.623803,-86.821931;33.630103,-86.823826;33.633264,-86.823912;33.633407,-86.824904;33.635254,-86.825375;33.6362,-86.825422;33.636294,-86.82609;33.637725,-86.826646;33.639028,-86.828165;33.642931,-86.828476;33.64388,-86.82873;33.644925,-86.828755;33.645039,-86.828803;33.64526,-86.829029;33.64661,-86.829088;33.647278,-86.82935;33.650243,-86.829368;33.650446,-86.829406;33.650876,-86.829413;33.650978,-86.829469;33.651792,-86.829522;33.652294,-86.829556;33.652715,-86.829593;33.653165,-86.82982;33.655975,-86.829869;33.656437,-86.829922;33.656949,-86.82993;33.657022,-86.830029;33.657806,-86.830157;33.658671,-86.830299;33.659531,-86.830502;33.660566,-86.831265;33.663805,-86.831422;33.664558,-86.831476;33.664979,-86.831492;33.665203,-86.831514;33.665621,-86.831525;33.666179,-86.831484;33.666942,-86.831383;33.667695,-86.831324;33.668022,-86.831304;33.668082,-86.831233;33.668437,-86.831178;33.668661,-86.83112;33.668867,-86.831054;33.66908,-86.830854;33.669652,-86.830769;33.669916,-86.830537;33.670542,-86.830413;33.670896,-86.830291;33.671243,-86.830218;33.671433,-86.830191;33.671503,-86.830083;33.671806,-86.830051;33.671897,-86.829992;33.672109,-86.829634;33.673098,-86.828938;33.675023,-86.828785;33.675448,-86.828488;33.676284,-86.82843;33.676434,-86.828365;33.6766,-86.827973;33.677736,-86.827789;33.678365,-86.827692;33.678805,-86.827627;33.679226,-86.827543;33.6801,-86.827536;33.680533,-86.827555;33.68107,-86.827576;33.681399,-86.827682;33.68204,-86.827768;33.682468,-86.827817;33.682683,-86.82797;33.683214,-86.828075;33.683522,-86.828192;33.683835,-86.828319;33.684144,-86.828601;33.684767,-86.828687;33.684942,-86.829648;33.687025,-86.830526;33.688928,-86.831789;33.691665,-86.832156;33.69246,-86.833889;33.696208,-86.834638;33.697829,-86.834785;33.698132,-86.834919;33.69844,-86.83497;33.698536,-86.835854;33.700463,-86.83598;33.700778,-86.836117;33.701146,-86.836282;33.701685,-86.836332;33.701886,-86.836357;33.701983,-86.836454;33.702469,-86.836523;33.702907,-86.836564;33.703334,-86.83658;33.703661,-86.83659;33.703997,-86.836584;33.704309,-86.836574;33.704424,-86.836564;33.704632,-86.836543;33.704856,-86.836486;33.705294,-86.83643;33.705612,-86.836314;33.706147,-86.836229;33.706467,-86.836093;33.706885,-86.835922;33.707333,-86.835708;33.707812,-86.835611;33.708013,-86.835526;33.708173,-86.83545;33.708321,-86.835228;33.708706,-86.834907;33.709186,-86.834158;33.710284,-86.833809;33.710782,-86.831037;33.714837,-86.83094;33.714984,-86.829785;33.716796,-86.828711;33.718631,-86.828494;33.719007,-86.827903;33.720095,-86.827029;33.72179,-86.826673;33.722491,-86.826462;33.722893,-86.825755;33.724284,-86.82556;33.724696,-86.825498;33.724802,-86.825281;33.725313,-86.82524;33.725417,-86.8252;33.725517,-86.825051;33.725939,-86.824911;33.726369,-86.824782;33.726801,-86.824648;33.727341,-86.824528;33.727891,-86.824472;33.728212,-86.824395;33.728764,-86.82437;33.728986,-86.82433;33.729424,-86.82431;33.729751,-86.824294;33.730548,-86.824322;33.731302,-86.824405;33.732098,-86.824443;33.732347,-86.824506;33.732754,-86.824641;33.733411,-86.825183;33.735928,-86.825305;33.736478,-86.825489;33.737349,-86.825611;33.737896,-86.826409;33.741606,-86.826429;33.741717,-86.826504;33.742048,-86.826855;33.743688,-86.826905;33.743905,-86.827516;33.746751,-86.828776;33.752572,-86.828823;33.752789,-86.828971;33.753475,-86.829459;33.75573,-86.829977;33.75814,-86.830156;33.759017,-86.830229;33.759309,-86.830271;33.759509,-86.830505;33.760631,-86.83055;33.760902,-86.830559;33.760954,-86.830622;33.761385,-86.830649;33.761603,-86.830704;33.762252,-86.830725;33.762792,-86.830725;33.762822,-86.830721;33.763219,-86.830702;33.763761,-86.830669;33.764194,-86.830622;33.764629,-86.830562;33.765061,-86.830482;33.765484,-86.830461;33.765598,-86.830344;33.766127,-86.830167;33.766762,-86.829627;33.768499,-86.829481;33.768969,-86.829186;33.769894,-86.826027;33.779941,-86.825714;33.780944,-86.82548;33.781718,-86.82531;33.782318,-86.825121;33.783075,-86.825014;33.78357,-86.824979;33.783714,-86.824858;33.784353,-86.824745;33.785,-86.824687;33.78539,-86.824677;33.785457,-86.824607;33.785967,-86.824557;33.786401,-86.824536;33.786621,-86.824496;33.787179,-86.824487;33.787303,-86.824477;33.787571,-86.824444;33.788473,-86.824437;33.789123,-86.824452;33.789628,-86.824478;33.790432,-86.824497;33.790748,-86.82462;33.794702,-86.824687;33.796876,-86.824721;33.797941,-86.824723;33.798022,-86.824738;33.798504,-86.824761;33.799365,-86.824781;33.799912,-86.824781;33.800149,-86.824783;33.80037,-86.824804;33.800668,-86.824839;33.8018,-86.824879;33.803105,-86.82494;33.805362,-86.825037;33.808223,-86.825039;33.808278,-86.825063;33.809099,-86.825086;33.809898,-86.825096;33.810205,-86.825113;33.81068,-86.825111;33.810787,-86.825132;33.811183,-86.825133;33.811333,-86.825157;33.812054,-86.825156;33.81212,-86.82516;33.812711,-86.825185;33.813376,-86.825179;33.814093,-86.825178;33.81423,-86.82508;33.816932,-86.825055;33.817234,-86.825047;33.817615,-86.824967;33.819819,-86.824934;33.820389,-86.824832;33.822985,-86.824819;33.823561,-86.824711;33.824931,-86.824614;33.825806,-86.824151;33.829099,-86.823919;33.830881,-86.823861;33.831419,-86.823811;33.832238,-86.823778;33.832631,-86.82378;33.833114,-86.823766;33.83389,-86.823773;33.834329,-86.823792;33.834665,-86.823811;33.835267,-86.823845;33.835746,-86.823967;33.836881,-86.823986;33.837053,-86.824151;33.838128,-86.824289;33.838862,-86.82442;33.839483,-86.824631;33.840338,-86.824673;33.840542,-86.824743;33.840748,-86.825023;33.841687,-86.825055;33.841826\\\\nPOLYLINE,-86.775344;36.149142,-86.775324;36.149145,-86.775267;36.149155,-86.775248;36.149159,-86.77523;36.149162,-86.775176;36.149171,-86.775159;36.149175,-86.775035;36.149197,-86.774775;36.149256,-86.774508;36.149318,-86.773989;36.14945,-86.773635;36.149551,-86.773555;36.149575,-86.773261;36.149671,-86.773027;36.14975,-86.772654;36.149871,-86.770534;36.150748,-86.76967;36.151132,-86.769481;36.151216,-86.768542;36.151623,-86.767943;36.151885,-86.766149;36.152671,-86.765551;36.152934,-86.765527;36.152945,-86.765454;36.152979,-86.765431;36.152991,-86.765323;36.153042,-86.764999;36.153198,-86.764892;36.15325,-86.764783;36.153302,-86.764459;36.153457,-86.764352;36.15351,-86.764337;36.153516,-86.764294;36.153536,-86.76428;36.153544\\\\nPOLYLINE,-86.759806;36.157347,-86.759831;36.157485,-86.759838;36.157556,-86.759906;36.158189,-86.759929;36.158401,-86.759944;36.158552,-86.759993;36.159005,-86.760009;36.159156,-86.760025;36.159307,-86.760045;36.15949,-86.760079;36.15976,-86.760099;36.159912,-86.76012;36.160078,-86.760183;36.160578,-86.76019;36.160631,-86.760209;36.160745,-86.760218;36.1608,-86.760246;36.160967,-86.760256;36.161023,-86.76033;36.161273,-86.760404;36.161519,-86.760535;36.161757,-86.760665;36.161976,-86.760728;36.16208,-86.760821;36.162185,-86.760909;36.162337,-86.760995;36.162485,-86.761237;36.162747,-86.761357;36.162877,-86.761475;36.162998,-86.761831;36.163362,-86.76195;36.163484,-86.762197;36.163601,-86.762424;36.163812,-86.762718;36.164085,-86.763377;36.164707,-86.763658;36.165051,-86.764028;36.165504,-86.764177;36.16573,-86.764627;36.166408,-86.764777;36.166634,-86.765315;36.167449,-86.765692;36.168104,-86.766629;36.169638,-86.767426;36.170777,-86.767432;36.170785,-86.76745;36.17081,-86.767457;36.170819,-86.767606;36.171005,-86.768056;36.171563,-86.768206;36.171749,-86.768248;36.171788,-86.768323;36.171866,-86.768668;36.172225,-86.768784;36.172345,-86.769055;36.172616,-86.769626;36.173187,-86.769854;36.173444,-86.77011;36.173731,-86.770211;36.173845,-86.770296;36.173941,-86.770513;36.174191,-86.770574;36.174262,-86.770616;36.174305,-86.770641;36.174331,-86.770648;36.174338,-86.770662;36.174352,-86.770704;36.174396,-86.770718;36.174411,-86.770747;36.174441,-86.770773;36.174468,-86.7708;36.174496,-86.770807;36.174503,-86.770841;36.174538,-86.770861;36.174559,-86.770915;36.174615,-86.77094;36.174647,-86.770971;36.174686,-86.771154;36.17492,-86.77164;36.175543,-86.771694;36.175631,-86.771851;36.175885,-86.771961;36.176064,-86.771974;36.176084,-86.772234;36.176412,-86.772335;36.176571,-86.772449;36.176749,-86.772504;36.17684,-86.772669;36.177116,-86.772725;36.177208,-86.772896;36.177492,-86.772921;36.177533,-86.773058;36.1778,-86.773254;36.178163,-86.773355;36.178376,-86.773498;36.178676,-86.773652;36.179033,-86.774054;36.179962,-86.774105;36.180112,-86.774125;36.180169,-86.774179;36.180325,-86.774233;36.180481,-86.7743;36.180655,-86.774328;36.180749,-86.774585;36.181333,-86.774704;36.18172,-86.774777;36.182026,-86.774897;36.182532,-86.774978;36.182975,-86.775026;36.183271,-86.775043;36.183376,-86.775149;36.184587,-86.775253;36.186237,-86.775302;36.186854,-86.775312;36.187072,-86.775347;36.187828,-86.775371;36.187998,-86.775381;36.188341,-86.775401;36.189539,-86.77543;36.191209,-86.775465;36.191725,-86.775535;36.19313,-86.775596;36.194327,-86.775561;36.194483,-86.775563;36.194529,-86.775564;36.194563,-86.775568;36.194664,-86.775571;36.194979,-86.775567;36.195286,-86.775566;36.195446,-86.77555;36.195526,-86.775566;36.195756,-86.775617;36.196446,-86.775634;36.196676,-86.775649;36.196886,-86.775762;36.197405,-86.776235;36.199582,-86.776383;36.20026,-86.776393;36.200308,-86.776439;36.20054,-86.776471;36.200755,-86.776563;36.201353,-86.776627;36.202107,-86.776629;36.202131,-86.776653;36.202561,-86.776655;36.202603,-86.776661;36.202711,-86.77666;36.202732,-86.77666;36.202775,-86.776657;36.202901,-86.77665;36.20328,-86.776649;36.203407,-86.776598;36.203898,-86.776506;36.204787,-86.776446;36.205222,-86.776425;36.205374,-86.776434;36.205437,-86.776379;36.205863,-86.776362;36.205988,-86.776313;36.206364,-86.776297;36.20649,-86.776277;36.206636,-86.77622;36.207076,-86.776201;36.207223,-86.776164;36.2075,-86.776149;36.20762,-86.77601;36.208814,-86.775964;36.209212,-86.775834;36.210284,-86.775678;36.211584,-86.775535;36.212759,-86.775447;36.213502,-86.775398;36.213922,-86.775313;36.214574,-86.775258;36.214989,-86.775097;36.216234,-86.775043;36.21665,-86.775038;36.21668,-86.775027;36.216772,-86.775023;36.216803,-86.774841;36.218206,-86.774712;36.218808,-86.77445;36.219584,-86.77423;36.220163,-86.774024;36.220763,-86.773773;36.221355\\\\nPOLYLINE,-86.774761;36.220608,-86.774779;36.220478,-86.77479;36.220401,-86.774831;36.220159,-86.774864;36.219853,-86.774967;36.218903,-86.775118;36.217581,-86.775206;36.216825,-86.775208;36.216798,-86.775218;36.216717,-86.775221;36.216691,-86.775269;36.216265,-86.775416;36.214987,-86.775466;36.214562,-86.775504;36.214228,-86.775543;36.213889,-86.775626;36.213229,-86.775669;36.212897,-86.775693;36.212703,-86.775767;36.212123,-86.775792;36.21193,-86.775855;36.21143,-86.776045;36.209933,-86.776062;36.209801,-86.776106;36.209434,-86.776163;36.208986,-86.776336;36.207646,-86.776394;36.207199,-86.776411;36.20706,-86.776463;36.206646,-86.776481;36.206508,-86.776497;36.206355,-86.776548;36.205899,-86.776565;36.205747,-86.776594;36.205434,-86.776599;36.205389,-86.776602;36.205344,-86.776608;36.205277,-86.776612;36.205238,-86.776698;36.204624,-86.776784;36.203874,-86.776838;36.203406,-86.77684;36.20336,-86.776842;36.203263,-86.776854;36.202834,-86.776858;36.202709,-86.776858;36.202692,-86.77684;36.201309,-86.776832;36.20126,-86.7762;36.19722,-86.776174;36.197014,-86.776122;36.196592,-86.776122;36.195819,-86.776148;36.195587,-86.776163;36.194789,-86.776168;36.194682,-86.776193;36.194017,-86.776232;36.193354,-86.776269;36.192947,-86.776267;36.192496,-86.776262;36.191144,-86.776261;36.190694,-86.776236;36.190148,-86.776161;36.18851,-86.776137;36.187965,-86.776063;36.187022,-86.776028;36.18675,-86.776007;36.18658,-86.775971;36.186233,-86.77586;36.185567,-86.775803;36.185262,-86.775792;36.185166,-86.775718;36.184839,-86.775635;36.184432,-86.775539;36.184029,-86.775308;36.183169,-86.77505;36.182209,-86.774979;36.181996,-86.774848;36.181607,-86.77467;36.181079,-86.774429;36.180453,-86.774283;36.180071,-86.774232;36.179945,-86.774182;36.179819,-86.774093;36.179599,-86.774011;36.179394,-86.773496;36.178196,-86.773296;36.177729,-86.772688;36.176755,-86.772646;36.176686,-86.77252;36.176481,-86.772478;36.176413,-86.772382;36.176289,-86.772237;36.17609,-86.772189;36.176025,-86.771779;36.175436,-86.771565;36.175154,-86.771532;36.175112,-86.771285;36.174795,-86.771224;36.174722,-86.771182;36.174671,-86.771078;36.174547,-86.771042;36.174505,-86.77102;36.174478,-86.770982;36.174433,-86.770955;36.1744,-86.77093;36.17437,-86.770901;36.174335,-86.770855;36.174281,-86.770823;36.174243,-86.770742;36.174146,-86.770724;36.174124,-86.77067;36.174059,-86.770652;36.174038,-86.770498;36.173854,-86.770072;36.173407,-86.769839;36.173162,-86.769101;36.172416,-86.768661;36.171981,-86.768383;36.171674,-86.768229;36.171492,-86.767769;36.170947,-86.767616;36.170766,-86.767306;36.170359,-86.767267;36.170307,-86.767059;36.17001,-86.766566;36.169215,-86.766478;36.169069,-86.766214;36.168632,-86.765989;36.168255,-86.765794;36.167926,-86.765284;36.167145,-86.765045;36.166779,-86.765017;36.166738,-86.764933;36.166618,-86.764906;36.166578,-86.764851;36.166471,-86.764689;36.16615,-86.764635;36.166043,-86.764361;36.165657,-86.764104;36.165295,-86.763442;36.16458,-86.763121;36.164234,-86.763071;36.16418,-86.762773;36.163909,-86.762624;36.163774,-86.762223;36.163407,-86.761728;36.162937,-86.761593;36.16281,-86.7614;36.162594,-86.761331;36.162517,-86.761305;36.162488,-86.761145;36.16227,-86.761085;36.162188,-86.760944;36.161978,-86.760898;36.16191,-86.760777;36.161616,-86.760718;36.161436,-86.760683;36.161272,-86.760632;36.161026,-86.760619;36.160972,-86.760583;36.160813,-86.760571;36.16076,-86.760528;36.160572,-86.760503;36.160461,-86.760489;36.16,-86.760484;36.159809,-86.760479;36.15966,-86.760467;36.159213,-86.760463;36.159064,-86.760458;36.158913,-86.760446;36.15846,-86.760442;36.158309,-86.760436;36.158115,-86.760419;36.157535,-86.760414;36.157342\\\\nPOLYLINE,-86.775344;36.149142,-86.775639;36.149019,-86.77615;36.148807,-86.776487;36.14858,-86.776753;36.148402,-86.776898;36.148247,-86.777089;36.148044,-86.777281;36.147741,-86.777396;36.147562,-86.777428;36.147223,-86.777526;36.146206,-86.777559;36.145868,-86.777481;36.145323,-86.777249;36.143689,-86.777172;36.143145,-86.777152;36.143007,-86.777124;36.142893,-86.77701;36.142416,-86.776972;36.142273,-86.776932;36.142151,-86.776908;36.142074,-86.77686;36.141906,-86.776694;36.141352,-86.776306;36.14005,-86.776239;36.1398,-86.776212;36.139689,-86.77616;36.139464,-86.77609;36.139125,-86.776043;36.138926,-86.776015;36.138804,-86.775945;36.138323,-86.775928;36.138199,-86.775919;36.138122,-86.775889;36.137855,-86.77588;36.137749,-86.775843;36.137305,-86.775845;36.136626,-86.775847;36.136252,-86.775797;36.135851,-86.775649;36.13465,-86.7756;36.13425,-86.775408;36.133745,-86.775081;36.132884,-86.774712;36.13229,-86.774427;36.131832,-86.774399;36.13179,-86.774318;36.131664,-86.774291;36.131622,-86.774171;36.131435,-86.773953;36.131114,-86.773776;36.130785,-86.773459;36.130148,-86.773206;36.12953,-86.773002;36.128899,-86.772848;36.12826,-86.772745;36.127614,-86.772692;36.126964,-86.7727;36.126723,-86.772708;36.126516,-86.772693;36.126339,-86.772723;36.125908,-86.772745;36.125772,-86.77277;36.125498,-86.772824;36.125171,-86.772878;36.124899,-86.772949;36.124581,-86.773105;36.123697,-86.773273;36.122706,-86.773327;36.122376,-86.773351;36.122281,-86.773369;36.122206,-86.773439;36.121456,-86.773455;36.121289,-86.773499;36.121064,-86.773514;36.120991,-86.773527;36.120879,-86.773565;36.120678,-86.773566;36.120665,-86.773597;36.120453,-86.773637;36.120262,-86.773648;36.120043,-86.773682;36.119824,-86.773686;36.119572,-86.773692;36.11946,-86.773716;36.119057,-86.773717;36.119039,-86.773725;36.118736,-86.773727;36.118489,-86.773728;36.118388,-86.773711;36.117974,-86.773657;36.117318,-86.773604;36.116897,-86.773587;36.116794,-86.773538;36.116482,-86.773494;36.116235,-86.773463;36.116094,-86.773453;36.116037,-86.773446;36.115993,-86.773441;36.115973,-86.773437;36.115949,-86.77343;36.115913,-86.773427;36.115894,-86.773422;36.115869,-86.773408;36.115794,-86.773404;36.11577,-86.773369;36.115579,-86.773323;36.115357,-86.773238;36.11503,-86.773218;36.11495,-86.77317;36.114827,-86.772959;36.114191,-86.772848;36.113894,-86.772722;36.113508,-86.772448;36.11291,-86.772195;36.112384,-86.772114;36.112223,-86.772064;36.112122,-86.771634;36.111372,-86.771552;36.111213,-86.771405;36.110991,-86.771345;36.110902,-86.771281;36.110805,-86.771253;36.110762,-86.768726;36.107189,-86.768536;36.106907,-86.767892;36.105952,-86.767335;36.105187,-86.766886;36.104575,-86.766427;36.103882,-86.765825;36.102942,-86.765013;36.101475,-86.764986;36.101417,-86.764518;36.10041,-86.764297;36.099777,-86.763856;36.098516,-86.763626;36.097781,-86.763259;36.096606,-86.762982;36.095214,-86.762873;36.094392,-86.7627;36.092605,-86.762752;36.091565,-86.762842;36.089819,-86.762851;36.089641,-86.762859;36.089463,-86.762892;36.088776,-86.762895;36.088716,-86.763239;36.086744,-86.763358;36.086068,-86.763398;36.085838,-86.763518;36.085149,-86.763559;36.08492,-86.763642;36.084445,-86.76389;36.083023,-86.763974;36.082549,-86.763977;36.082507,-86.763988;36.082383,-86.763992;36.082342,-86.764082;36.081739,-86.764145;36.081416,-86.764183;36.081272,-86.764245;36.081041,-86.764299;36.080862,-86.764771;36.079745,-86.765198;36.079042,-86.765515;36.078604,-86.765686;36.07841,-86.766326;36.077691,-86.766408;36.077597,-86.766649;36.077321,-86.766925;36.077007,-86.76739;36.076508,-86.76764;36.07624,-86.767763;36.07607,-86.767896;36.075915,-86.768131;36.075642,-86.768386;36.075294,-86.768607;36.074949,-86.768627;36.074914,-86.768727;36.074748,-86.76883;36.074553,-86.768882;36.074454,-86.768932;36.074361,-86.76903;36.074156,-86.769051;36.074113,-86.769075;36.074055,-86.769152;36.073868,-86.769165;36.073824,-86.769184;36.073782,-86.769319;36.073408,-86.769372;36.07324,-86.769419;36.073071,-86.769497;36.07273,-86.769555;36.07249,-86.769718;36.071829,-86.770122;36.07011,-86.770698;36.067705,-86.770976;36.06655,-86.77107;36.066156,-86.771081;36.066111,-86.771091;36.066068,-86.771571;36.064034,-86.771746;36.063297,-86.771936;36.06251,-86.772101;36.061754,-86.772295;36.061001,-86.772394;36.060679,-86.772512;36.060362,-86.772722;36.059887,-86.772942;36.059457,-86.773118;36.059142,-86.773455;36.058507,-86.773545;36.058329,-86.773705;36.058043,-86.77383;36.057822,-86.774089;36.057341,-86.774448;36.056688,-86.774737;36.056176,-86.77475;36.056152,-86.774789;36.056074,-86.774935;36.055791,-86.774945;36.055766,-86.774993;36.055662,-86.775102;36.055419,-86.775221;36.055115,-86.77532;36.054806,-86.77543;36.05436,-86.775489;36.05404,-86.775518;36.053803,-86.775542;36.053367,-86.775554;36.052322,-86.775617;36.049545,-86.775711;36.04906,-86.776097;36.048339,-86.7765;36.047749,-86.777026;36.04719,-86.77829;36.046122,-86.779873;36.045116,-86.780579;36.044715,-86.781215;36.044197,-86.781828;36.043514,-86.782252;36.042666,-86.782386;36.041851,-86.782406;36.041784,-86.782458;36.041527,-86.782492;36.041356,-86.78257;36.040464,-86.782711;36.039451,-86.782811;36.038888,-86.782835;36.03874,-86.782955;36.037806,-86.783044;36.037216,-86.783092;36.036763,-86.783208;36.035692,-86.783243;36.035408,-86.7833;36.034957,-86.783463;36.03501\\\\nPOLYLINE,-86.76428;36.153544,-86.763982;36.153763,-86.76368;36.153923,-86.763517;36.154015,-86.762791;36.154466,-86.762578;36.154607,-86.762373;36.154753,-86.762307;36.154802,-86.762053;36.154989,-86.761744;36.155206,-86.761519;36.155386,-86.761309;36.155578,-86.761078;36.155819,-86.760984;36.155923,-86.760916;36.155998,-86.760889;36.156036,-86.760824;36.156124,-86.760736;36.15626,-86.760731;36.156269,-86.760634;36.156453,-86.760598;36.156536,-86.76047;36.156978,-86.760456;36.157063,-86.760414;36.157342\\\\nPOLYLINE,-86.762781;36.154074,-86.762548;36.154189,-86.762011;36.154457,-86.761863;36.154554,-86.761647;36.154697,-86.76145;36.154827,-86.761357;36.154895,-86.760769;36.155328,-86.760339;36.155778,-86.760293;36.155861,-86.760286;36.155871,-86.760269;36.155902,-86.760264;36.155913,-86.760117;36.156179,-86.760079;36.156249,-86.759909;36.156669,-86.759851;36.157045,-86.759806;36.157347\\\\nPOLYLINE,-86.764912;36.152968,-86.764877;36.152982,-86.764774;36.153026,-86.76474;36.153042,-86.76462;36.153093,-86.764263;36.153248,-86.764144;36.153301,-86.764044;36.153344,-86.763843;36.153428,-86.762941;36.153807,-86.762641;36.153934\\\\nPOLYLINE,-86.764951;36.153026,-86.765632;36.152698,-86.765687;36.152678,-86.765739;36.152659,-86.766519;36.152333,-86.767755;36.151791,-86.767803;36.15177,-86.768467;36.151499,-86.769276;36.151148,-86.769479;36.151064,-86.770476;36.150654,-86.771369;36.150268,-86.772255;36.149878,-86.772909;36.14958,-86.772953;36.14956,-86.772981;36.149548,-86.773084;36.1495,-86.773128;36.14948,-86.773435;36.149333,-86.773547;36.14928,-86.774392;36.148979,-86.774713;36.148865,-86.774769;36.148847,-86.774784;36.148843,-86.774857;36.148819,-86.775079;36.14875,-86.775153;36.148728\\\\nPOLYLINE,-86.773773;36.221355,-86.773542;36.22217,-86.773464;36.222728,-86.773441;36.222773,-86.77313;36.224622,-86.773102;36.224783,-86.773079;36.224919,-86.773014;36.225266,-86.772984;36.225427,-86.772955;36.22558,-86.772868;36.226041,-86.77284;36.226195,-86.772784;36.226492,-86.772748;36.226684,-86.772622;36.227384,-86.772569;36.227682,-86.772553;36.227728,-86.772402;36.228163,-86.772255;36.228593,-86.772059;36.228899,-86.77173;36.229412,-86.771675;36.229497,-86.771401;36.229926,-86.771371;36.229972,-86.77128;36.230113,-86.771251;36.23016,-86.77114;36.230303,-86.771081;36.230381,-86.770798;36.230722,-86.770776;36.230749,-86.770678;36.230857,-86.77056;36.230987,-86.770416;36.231124,-86.770053;36.231501,-86.769524;36.232002,-86.769217;36.232293,-86.768322;36.233038,-86.767632;36.233535,-86.766516;36.234257,-86.765549;36.234805,-86.765349;36.234919,-86.764347;36.235385,-86.764215;36.235446,-86.764083;36.235508,-86.763888;36.235599,-86.762919;36.235997,-86.762886;36.236008,-86.7624;36.236177,-86.76159;36.236431,-86.760833;36.236677,-86.759782;36.236998,-86.759176;36.237175,-86.758985;36.237232,-86.758125;36.237476,-86.757934;36.237544,-86.757821;36.237583,-86.757484;36.237702,-86.757372;36.237743,-86.756986;36.237879,-86.75634;36.238108,-86.75622;36.238155,-86.755836;36.238306,-86.755771;36.238333,-86.755449;36.238437,-86.755066;36.238618,-86.754909;36.238693,-86.753936;36.239195,-86.753744;36.239295,-86.753564;36.239396,-86.753209;36.239594,-86.753191;36.239605,-86.752803;36.239885,-86.752196;36.240274,-86.751855;36.240495,-86.751797;36.240531,-86.751626;36.240641,-86.751569;36.240678,-86.751481;36.240747,-86.751352;36.240848,-86.750292;36.241701,-86.749592;36.242264,-86.749405;36.242413,-86.747439;36.244025,-86.744629;36.246303,-86.743931;36.246883,-86.743571;36.247204,-86.743397;36.247369,-86.74322;36.247545,-86.742852;36.247935,-86.742669;36.248146,-86.742389;36.248469,-86.742207;36.248687,-86.741932;36.249081,-86.741392;36.249871,-86.741359;36.249915,-86.74133;36.249952,-86.741308;36.249993,-86.741285;36.250033,-86.740638;36.250978,-86.739954;36.251979,-86.739545;36.252588,-86.73943;36.25281,-86.739323;36.253005,-86.739222;36.253202,-86.739035;36.253601,-86.738871;36.253997,-86.738801;36.25419,-86.73872;36.254415,-86.738652;36.254626,-86.738571;36.254905,-86.73846;36.255379,-86.73841;36.255593,-86.738347;36.255993,-86.738304;36.256395,-86.738294;36.256564,-86.73829;36.256634,-86.738275;36.257485,-86.738276;36.258088,-86.738284;36.258613,-86.738287;36.259709,-86.73828;36.260159,-86.738278;36.260375,-86.738237;36.260808,-86.738191;36.261218,-86.738183;36.261353,-86.73818;36.261395,-86.738074;36.261974,-86.737981;36.262492,-86.737725;36.263705,-86.737623;36.264196,-86.737605;36.264282,-86.737587;36.264364,-86.737533;36.26461,-86.737515;36.264692,-86.737213;36.266212,-86.736686;36.268867,-86.736399;36.270294,-86.736297;36.270773,-86.735978;36.272291,-86.735805;36.273112,-86.735697;36.27367,-86.735674;36.273794,-86.735657;36.273877,-86.73547;36.274787,-86.735352;36.275385,-86.735214;36.275927,-86.735088;36.276352,-86.734914;36.276867,-86.734718;36.27739,-86.734566;36.277728,-86.734409;36.278079,-86.734212;36.278482,-86.733957;36.278968,-86.733944;36.278991,-86.733681;36.27944,-86.733597;36.279573,-86.733393;36.279897,-86.733102;36.280326,-86.732614;36.280981,-86.732411;36.281222,-86.732093;36.281602,-86.731971;36.281738,-86.731676;36.282064,-86.731591;36.282144,-86.730383;36.283297,-86.729981;36.283682,-86.72799;36.285582,-86.725503;36.287957,-86.725425;36.288031,-86.724532;36.288877,-86.723014;36.290195,-86.721859;36.291105,-86.721595;36.291314,-86.720663;36.292066,-86.719707;36.292821,-86.718488;36.293783,-86.717647;36.294448,-86.716269;36.295544,-86.714892;36.296628,-86.714835;36.296675,-86.713648;36.297677,-86.713586;36.297764,-86.713131;36.298266,-86.711553;36.30001,-86.711027;36.300592,-86.710949;36.300677,-86.710716;36.300935,-86.710639;36.301021,-86.710056;36.301681,-86.70831;36.303664,-86.70792;36.304107,-86.707731;36.304328,-86.707465;36.304639,-86.706657;36.305528,-86.706429;36.30578,-86.706388;36.305828,-86.706264;36.30597,-86.706154;36.306099,-86.705893;36.306397,-86.705769;36.306539,-86.705454;36.306898,-86.704509;36.307978,-86.704195;36.308338,-86.703862;36.308719,-86.703805;36.308784,-86.702777;36.309995,-86.702656;36.31014,-86.70228;36.310598,-86.702136;36.310767,-86.701776;36.311417,-86.701453;36.312138,-86.70132;36.312621,-86.701138;36.313283,-86.701026;36.31411,-86.701044;36.315003,-86.701144;36.315739,-86.701259;36.316255,-86.701447;36.316838,-86.701874;36.317797,-86.702499;36.319072,-86.703492;36.321098,-86.704925;36.323938,-86.704951;36.323989,-86.705069;36.324197,-86.705537;36.325183,-86.705685;36.325495,-86.705833;36.325806,-86.705896;36.325899,-86.709689;36.333556,-86.709716;36.33361\\\\nPOLYLINE,-86.774761;36.220608,-86.774674;36.221141,-86.774627;36.221462,-86.774343;36.223625,-86.774291;36.224105,-86.774226;36.224621,-86.773803;36.22606,-86.773718;36.226263,-86.773651;36.226486,-86.773508;36.226973,-86.773183;36.227759,-86.773011;36.228178,-86.772988;36.228208,-86.772919;36.228299,-86.772897;36.22833,-86.772674;36.228626,-86.772215;36.229236,-86.772004;36.229514,-86.771998;36.229524,-86.771782;36.229811,-86.771549;36.23012,-86.770938;36.230825,-86.770646;36.231162,-86.770221;36.231605,-86.76938;36.232401,-86.768468;36.233163,-86.768123;36.233411,-86.767518;36.233804,-86.766642;36.234396,-86.76546;36.235065,-86.764237;36.235634,-86.763736;36.235866,-86.76372;36.235874,-86.763353;36.236036,-86.762713;36.23628,-86.761988;36.236521,-86.761654;36.236624,-86.760901;36.236855,-86.758645;36.237549,-86.758329;36.237647,-86.757898;36.237795,-86.757763;36.237842,-86.757235;36.238009,-86.756442;36.238262,-86.756294;36.238322,-86.755488;36.238651,-86.755282;36.238742,-86.755052;36.238846,-86.754659;36.239052,-86.754111;36.23934,-86.753182;36.239844,-86.752665;36.240173,-86.75186;36.240703,-86.751652;36.240867,-86.751261;36.241151,-86.750903;36.24142,-86.750359;36.24186,-86.750294;36.241912,-86.749474;36.242564,-86.749144;36.242848,-86.748229;36.243619,-86.747345;36.244318,-86.74672;36.244834,-86.745338;36.245956,-86.74397;36.247077,-86.743743;36.247278,-86.743462;36.247543,-86.743081;36.247933,-86.742954;36.248072,-86.742866;36.248173,-86.742785;36.248264,-86.74262;36.248459,-86.742304;36.248856,-86.741747;36.249647,-86.741598;36.24987,-86.741517;36.250006,-86.74094;36.250819,-86.740805;36.251013,-86.740109;36.252024,-86.73967;36.25272,-86.73947;36.253084,-86.739296;36.253436,-86.739118;36.253842,-86.738974;36.254215,-86.73896;36.254254,-86.738822;36.25467,-86.738672;36.255174,-86.738618;36.255396,-86.738592;36.255504,-86.738543;36.2558,-86.73844;36.257218,-86.738442;36.257891,-86.738448;36.257996,-86.738453;36.260215,-86.738432;36.260687,-86.738413;36.260923,-86.738358;36.261394,-86.73835;36.261445,-86.738283;36.261863,-86.738187;36.262317,-86.737859;36.263964,-86.737843;36.264051,-86.737734;36.264645,-86.73\\\"+\\\"7711;36.264761,-86.737692;36.264853,-86.737636;36.265132,-86.737618;36.265225,-86.737607;36.265283,-86.737513;36.265663,-86.737475;36.265845,-86.737409;36.266174,-86.737091;36.26761,-86.737072;36.267711,-86.736958;36.268337,-86.736725;36.269425,-86.736504;36.270525,-86.736452;36.270788,-86.736137;36.2723,-86.736124;36.272358,-86.735968;36.273111,-86.735834;36.273793,-86.735823;36.273844,-86.735568;36.275087,-86.735418;36.275688,-86.735258;36.2763,-86.735081;36.276842,-86.735001;36.277055,-86.734882;36.277376,-86.734661;36.277901,-86.734421;36.278413,-86.734167;36.278907,-86.73407;36.279085,-86.733825;36.2795,-86.733698;36.279695,-86.733569;36.279896,-86.73328;36.280327,-86.733019;36.28069,-86.732721;36.28107,-86.732565;36.281256,-86.732424;36.281418,-86.732047;36.281853,-86.731953;36.281956,-86.731855;36.282063,-86.731592;36.28232,-86.730494;36.283398,-86.730129;36.283758,-86.728125;36.285658,-86.725704;36.287955,-86.725632;36.288022,-86.725367;36.28827,-86.724849;36.288764,-86.724542;36.289051,-86.723861;36.289658,-86.723257;36.290159,-86.722721;36.290597,-86.722195;36.291003,-86.721967;36.291192,-86.721703;36.291414,-86.719917;36.292814,-86.719802;36.292906,-86.718599;36.293865,-86.718532;36.293919,-86.717946;36.294378,-86.717384;36.294832,-86.716725;36.295352,-86.714989;36.29674,-86.714869;36.296837,-86.713867;36.29772,-86.71383;36.297751,-86.713797;36.297789,-86.713268;36.298382,-86.712926;36.298767,-86.711568;36.300263,-86.711;36.300889,-86.710411;36.301536,-86.709979;36.302013,-86.708687;36.303514,-86.708117;36.304178,-86.707634;36.304739,-86.70739;36.305024,-86.706178;36.306416,-86.705692;36.306975,-86.705618;36.307058,-86.7054;36.30731,-86.705327;36.307394,-86.705119;36.307623,-86.704516;36.308288,-86.704493;36.308309,-86.704271;36.308524,-86.704189;36.308626,-86.703945;36.308932,-86.703864;36.309035,-86.703536;36.309445,-86.70339;36.309629,-86.702564;36.310688,-86.702242;36.311103,-86.702099;36.311313,-86.701828;36.311946,-86.701583;36.312658,-86.70149;36.313096,-86.701382;36.313608,-86.701325;36.314247,-86.701323;36.314658,-86.70141;36.315657,-86.701659;36.316557,-86.702374;36.318141,-86.702906;36.319197,-86.703871;36.321112,-86.705096;36.323621,-86.705206;36.32384,-86.705493;36.324414,-86.70578;36.324987,-86.705916;36.325259,-86.706051;36.32553,-86.706163;36.325773,-86.710017;36.333611,-86.710074;36.333726\\\\nPOLYLINE,-86.764845;36.101532,-86.765455;36.102855,-86.767237;36.105513,-86.768311;36.1071,-86.768396;36.107225,-86.76929;36.108533,-86.770295;36.110028,-86.770542;36.110334,-86.770647;36.11049,-86.770778;36.110685,-86.770963;36.110961,-86.771013;36.111035,-86.771069;36.111118,-86.771115;36.111186,-86.771213;36.111332,-86.77165;36.111982,-86.771777;36.112199,-86.771894;36.112399,-86.772025;36.112589,-86.772171;36.112831,-86.772384;36.113246,-86.772775;36.114226,-86.772929;36.114671,-86.772966;36.114828,-86.772992;36.114901,-86.773011;36.114953,-86.773069;36.115151,-86.773185;36.11562,-86.773199;36.115679,-86.773244;36.115859,-86.773259;36.115919,-86.773269;36.115961,-86.7733;36.116087,-86.773311;36.116129,-86.773358;36.116446,-86.773402;36.116641,-86.773457;36.116922,-86.773459;36.116938,-86.773511;36.117335,-86.773543;36.117671,-86.773553;36.118042,-86.773577;36.118389,-86.773576;36.118441,-86.773574;36.118944,-86.773573;36.118972,-86.773573;36.119065,-86.773572;36.119088,-86.773546;36.119483,-86.773544;36.119494,-86.773509;36.119853,-86.773484;36.120207,-86.773402;36.120709,-86.773338;36.121112,-86.773273;36.121516,-86.773071;36.12237,-86.773052;36.122496,-86.773043;36.122598,-86.773013;36.122769,-86.772939;36.122984,-86.772843;36.123546,-86.772824;36.123695,-86.772693;36.124431,-86.772657;36.124703,-86.772556;36.125197,-86.77252;36.125412,-86.772497;36.125724,-86.772481;36.126088,-86.772476;36.126493,-86.77247;36.126689,-86.772501;36.127351,-86.772585;36.128009,-86.77272;36.128663,-86.772756;36.128788,-86.772905;36.129308,-86.772943;36.129411,-86.773141;36.129942,-86.773225;36.130126,-86.77376;36.131182,-86.773818;36.131295,-86.774125;36.13172,-86.774425;36.132203,-86.774896;36.132961,-86.775225;36.133709,-86.775311;36.133904,-86.775378;36.134255,-86.775463;36.134707,-86.775481;36.134799,-86.775584;36.136083,-86.775621;36.136542,-86.77564;36.136859,-86.775687;36.137627,-86.775707;36.137811,-86.775742;36.138128,-86.775755;36.138243,-86.775769;36.138331,-86.775847;36.138796,-86.775869;36.13894,-86.7759;36.139144,-86.775965;36.139403,-86.776009;36.139579,-86.776115;36.140003,-86.776167;36.14018,-86.776244;36.140437,-86.776333;36.140736,-86.776361;36.14083,-86.776546;36.141477,-86.776585;36.14164,-86.776659;36.141944,-86.776681;36.14204,-86.7767;36.142208,-86.776708;36.142275,-86.776803;36.142715,-86.776821;36.143003,-86.776838;36.143271,-86.776871;36.143795,-86.77697;36.145367,-86.777003;36.145892,-86.776959;36.146176,-86.776937;36.146594,-86.776933;36.146616,-86.776886;36.146881,-86.776802;36.147194,-86.776711;36.147416,-86.776627;36.147575,-86.776578;36.147657,-86.776401;36.147884,-86.776151;36.148132,-86.77603;36.148235,-86.775873;36.14835,-86.7758;36.148393,-86.775702;36.148453,-86.775518;36.148542,-86.775153;36.148728\\\\nPOLYLINE,-86.783079;36.034886,-86.783029;36.03528,-86.782979;36.035675,-86.782975;36.035706,-86.782806;36.037133,-86.782682;36.038174,-86.782633;36.038591,-86.782608;36.038794,-86.782582;36.038997,-86.782528;36.039421,-86.782369;36.04024,-86.78224;36.041253,-86.782075;36.041877,-86.782092;36.042021,-86.782084;36.042047,-86.782075;36.042072,-86.782037;36.042186,-86.781639;36.042855,-86.781522;36.042972,-86.780603;36.044174,-86.779826;36.044786,-86.779213;36.045022,-86.778698;36.04542,-86.777612;36.045987,-86.776764;36.0466,-86.776305;36.047176,-86.775727;36.047848,-86.775421;36.048531,-86.775233;36.049167,-86.775227;36.049614,-86.775184;36.049921,-86.775181;36.050227,-86.775162;36.052017,-86.775166;36.053365,-86.775163;36.05341,-86.775162;36.053601,-86.775162;36.053669,-86.775151;36.053805,-86.775144;36.054018,-86.775144;36.054031,-86.775124;36.054206,-86.775067;36.054552,-86.77499;36.054896,-86.774917;36.055154,-86.774884;36.055241,-86.774794;36.055491,-86.774736;36.055632,-86.774726;36.055657,-86.774695;36.055722,-86.774572;36.055985,-86.774523;36.056079,-86.774488;36.056147,-86.774342;36.056404,-86.77376;36.057479,-86.773492;36.057968,-86.772881;36.059085,-86.772446;36.059889,-86.772356;36.060104,-86.772249;36.060346,-86.77216;36.060599,-86.772124;36.060727,-86.771898;36.06165,-86.771336;36.064004,-86.770837;36.066098,-86.770792;36.06629,-86.770746;36.066483,-86.770456;36.067707,-86.770383;36.06802,-86.770165;36.068901,-86.769877;36.070131,-86.769302;36.072531,-86.769233;36.07282,-86.769126;36.073222,-86.769082;36.07337,-86.769032;36.073518,-86.76894;36.073759,-86.768909;36.073842,-86.768845;36.073997,-86.768796;36.074102,-86.768759;36.074178,-86.768651;36.074407,-86.768615;36.074484,-86.768534;36.074615,-86.768494;36.074691,-86.768258;36.075103,-86.76809;36.07534,-86.767881;36.075602,-86.76756;36.075999,-86.76702;36.076592,-86.766495;36.077215,-86.765384;36.078395,-86.764692;36.07937,-86.764311;36.080192,-86.764035;36.080956,-86.763968;36.081197,-86.763868;36.081616,-86.763811;36.081921,-86.763717;36.082518,-86.763673;36.082757,-86.763381;36.08453,-86.763291;36.084907,-86.763247;36.085156,-86.763237;36.08521,-86.763208;36.085374,-86.763199;36.085429,-86.76317;36.085589,-86.763085;36.086069,-86.763057;36.08623,-86.762959;36.086783,-86.762953;36.086811,-86.76265;36.088558,-86.76262;36.088731,-86.762503;36.08913,-86.762357;36.092131,-86.762638;36.094773,-86.762736;36.095374,-86.762822;36.095787,-86.762922;36.09634,-86.763068;36.096936,-86.763451;36.098302,-86.763594;36.098753,-86.763679;36.099,-86.764839;36.101518\\\\nPOLYLINE,-85.700857;38.0863,-85.700859;38.086363,-85.700871;38.086705,-85.700894;38.088248,-85.70089;38.088584,-85.700876;38.089949,-85.700851;38.090479,-85.700827;38.091292,-85.700817;38.09161,-85.700792;38.092132,-85.70068;38.095575,-85.700677;38.0967,-85.700695;38.097085,-85.700705;38.097591,-85.700748;38.09869,-85.700807;38.099999,-85.700842;38.100767,-85.700845;38.100845,-85.700873;38.101514,-85.700963;38.103704,-85.701008;38.104643,-85.701154;38.108084,-85.701185;38.1089,-85.701289;38.110955,-85.7013;38.11129,-85.701302;38.111363,-85.701305;38.111424,-85.701338;38.112385,-85.701356;38.112915,-85.701386;38.113788,-85.701405;38.113967,-85.701449;38.114717,-85.701463;38.115038,-85.701568;38.11745,-85.701591;38.118032,-85.70164;38.119238,-85.701696;38.120391,-85.701723;38.121221,-85.701676;38.121572,-85.701701;38.122193,-85.701772;38.123205,-85.70179;38.123721,-85.701815;38.124158,-85.701834;38.124827,-85.701867;38.125369,-85.701929;38.126955,-85.70195;38.127194,-85.702;38.127605,-85.702078;38.12804,-85.702132;38.128292,-85.702282;38.12885,-85.702424;38.129307,-85.702572;38.129735,-85.702899;38.130437,-85.703031;38.130622,-85.703494;38.131423,-85.703963;38.132265,-85.704468;38.133151,-85.704946;38.133965,-85.705212;38.134436,-85.705304;38.134598,-85.705974;38.135781,-85.706682;38.137048,-85.707263;38.138094,-85.707485;38.138432,-85.707789;38.138954,-85.708349;38.139952,-85.708739;38.140667,-85.709223;38.141581,-85.70945;38.142026,-85.710536;38.14415,-85.710863;38.14479,-85.711197;38.14542,-85.711599;38.146217,-85.712464;38.147904,-85.713073;38.14907,-85.713508;38.149868,-85.714106;38.150906,-85.714335;38.151298,-85.714371;38.151359,-85.714445;38.151487,-85.714533;38.151637,-85.714895;38.152222,-85.715433;38.153068,-85.715961;38.15394,-85.715999;38.154066,-85.716552;38.15495,-85.716628;38.155071,-85.716652;38.15511,-85.716768;38.1553,-85.717187;38.155983,-85.717991;38.157263,-85.71815;38.157505,-85.718288;38.157715,-85.718448;38.157957,-85.719169;38.159141,-85.719314;38.159359,-85.719447;38.159582,-85.719548;38.159741,-85.719732;38.160061,-85.71998;38.160513,-85.720096;38.16077,-85.720173;38.16097,-85.720183;38.160994,-85.720303;38.16133,-85.720402;38.161637,-85.720472;38.161925,-85.720497;38.16203,-85.720523;38.162262,-85.720598;38.162923,-85.720641;38.163767,-85.720552;38.167063,-85.720533;38.168124,-85.720514;38.168754,-85.720477;38.169942,-85.720454;38.170871,-85.72044;38.171409,-85.720427;38.17157,-85.720337;38.172195,-85.720301;38.172397,-85.720248;38.172645,-85.720181;38.172908,-85.720097;38.173187,-85.720028;38.173388,-85.719957;38.173639,-85.719908;38.173789,-85.71971;38.174388,-85.719665;38.174509,-85.71963;38.174636,-85.719559;38.17484,-85.719545;38.17489,-85.719491;38.175089,-85.719375;38.175415,-85.719271;38.175851,-85.719211;38.176181,-85.71917;38.176681,-85.719177;38.177038,-85.719255;38.177601,-85.719323;38.177885,-85.719439;38.178062,-85.719478;38.178187,-85.719557;38.178357,-85.719627;38.178546,-85.719727;38.178743,-85.719955;38.179155,-85.720123;38.179445,-85.720415;38.17989,-85.720745;38.180421,-85.721371;38.181383,-85.721767;38.182002,-85.722346;38.182909,-85.722579;38.183254,-85.72263;38.18332,-85.722953;38.183742,-85.723187;38.184022,-85.723435;38.184295,-85.723767;38.184644,-85.724001;38.18487,-85.725176;38.185924,-85.725563;38.186282,-85.725806;38.186518,-85.726222;38.186946,-85.726445;38.187189,-85.727002;38.187818,-85.727684;38.18861,-85.727783;38.188725,-85.728034;38.189043,-85.72813;38.189121,-85.728966;38.190081,-85.729118;38.190253,-85.729268;38.190426,-85.729418;38.190599,-85.729563;38.190766,-85.729807;38.191054,-85.73006;38.191343,-85.730767;38.192148,-85.730938;38.192351,-85.731093;38.192518,-85.731703;38.193229,-85.731815;38.193364,-85.732136;38.193727,-85.732443;38.19413,-85.732598;38.194362,-85.732781;38.194665,-85.732964;38.195007,-85.733135;38.195373,-85.733166;38.195456,-85.733246;38.195818,-85.733457;38.196423,-85.733517;38.196628,-85.73355;38.196764,-85.73361;38.197043,-85.733702;38.197562,-85.733825;38.198299,-85.733911;38.198706,-85.733976;38.198957,-85.734074;38.199256,-85.734197;38.199562,-85.734341;38.199867,-85.734503;38.200167,-85.734685;38.200459,-85.734882;38.200734,-85.735094;38.201001,-85.735318;38.201257,-85.735559;38.201505,-85.735816;38.201742,-85.736002;38.201906,-85.736395;38.202213,-85.736713;38.202427,-85.736943;38.202566,-85.737316;38.202773,-85.7377;38.202967,-85.738399;38.203306,-85.738918;38.203567,-85.74256;38.205429,-85.743177;38.205718,-85.743617;38.205899,-85.744021;38.206034,-85.744695;38.206249,-85.744961;38.206309,-85.745572;38.206446,-85.746757;38.206622,-85.748091;38.206723,-85.748994;38.206819,-85.749347;38.206889,-85.749768;38.206981,-85.749935;38.207029,-85.750065;38.207079,-85.750904;38.207453,-85.750973;38.207492,-85.751198;38.207624,-85.751292;38.207685,-85.751428;38.207783,-85.751624;38.207936,-85.751801;38.208099,-85.752038;38.208346,-85.752083;38.208397,-85.752246;38.208594,-85.7524;38.208799,-85.752541;38.20901,-85.752665;38.209245,-85.752811;38.209613,-85.752878;38.209838,-85.752899;38.209929,-85.752919;38.210019,-85.752944;38.210204,-85.752954;38.210382,-85.752957;38.210653,-85.752962;38.210908,-85.752944;38.211093,-85.752916;38.211275,-85.752794;38.211951,-85.752737;38.212229,-85.752705;38.212499,-85.75259;38.213198,-85.752394;38.214333,-85.752309;38.214874,-85.752264;38.215197,-85.752252;38.215405,-85.752229;38.215638,-85.752201;38.21594,-85.75218;38.216351,-85.752185;38.216966,-85.752186;38.217005,-85.752191;38.217655,-85.752141;38.218319,-85.751969;38.219004,-85.751725;38.219772,-85.751614;38.220139,-85.751439;38.220711,-85.751212;38.221839,-85.750948;38.223482,-85.750939;38.223761,-85.750959;38.224049,-85.75103;38.224544,-85.751278;38.22553,-85.751338;38.225802,-85.751366;38.225929,-85.751374;38.225966,-85.751429;38.22621,-85.751459;38.226345,-85.751485;38.226606,-85.751518;38.226705,-85.751525;38.226792,-85.751525;38.227022,-85.751492;38.227273,-85.751504;38.227403,-85.751385;38.228101,-85.75121;38.229123,-85.750977;38.230462,-85.750859;38.231304,-85.750735;38.232222,-85.750712;38.232444,-85.7507;38.232713,-85.750698;38.232849,-85.750702;38.23301,-85.750704;38.233063,-85.750708;38.233121,-85.750727;38.233394,-85.75077;38.233776,-85.750833;38.233961,-85.750864;38.234033,-85.750908;38.234156,-85.750937;38.234237,-85.751004;38.234425,-85.751164;38.234791,-85.751278;38.235019,-85.751458;38.235353,-85.752004;38.236367,-85.752071;38.236479,-85.752113;38.236572,-85.752629;38.23753,-85.752807;38.237895,-85.75282;38.238013,-85.7529;38.238201,-85.752973;38.238416,-85.752993;38.238478,-85.753058;38.238761,-85.753093;38.239015,-85.753106;38.239275,-85.753096;38.239562,-85.753077;38.239777,-85.753059;38.239938,-85.752852;38.241212,-85.752815;38.241439,-85.75265;38.242258,-85.752652;38.242418,-85.752569;38.242986,-85.752414;38.244051,-85.752382;38.244244,-85.752307;38.244702,-85.752276;38.244904,-85.752167;38.245626,-85.752064;38.246264,-85.752038;38.246465,-85.752018;38.246622,-85.752065;38.246815,-85.752072;38.246985,-85.752081;38.247193,-85.752078;38.247831,-85.752083;38.248308,-85.752086;38.248554,-85.752078;38.248732,-85.752042;38.24897,-85.751977;38.249201,-85.751862;38.249476,-85.751718;38.249721,-85.751675;38.249779,-85.75158;38.249907,-85.7514;38.250109,-85.751198;38.250298,-85.751027;38.25043,-85.750974;38.25047,-85.75074;38.250619,-85.750492;38.250747,-85.750221;38.250859,-85.749732;38.251032,-85.749263;38.251176,-85.748841;38.251324,-85.748723;38.251387,-85.748635;38.251418,-85.747618;38.251773,-85.746721;38.252086,-85.746582;38.252124,-85.74643;38.252149,-85.746301;38.252199,-85.745292;38.25256,-85.744242;38.252936,-85.743887;38.253065,-85.743691;38.25315,-85.743489;38.253251,-85.743331;38.253343,-85.743165;38.253455,-85.742899;38.253654,-85.742846;38.25371,-85.742688;38.253859,-85.7425;38.254084,-85.742322;38.254339,-85.742207;38.254561,-85.742118;38.254783,-85.742078;38.254906,-85.742046;38.255035,-85.742011;38.25529,-85.74198;38.255446,-85.741886;38.255941,-85.741809;38.25634,-85.741822;38.256406,-85.741822;38.256472,-85.741806;38.256596,-85.74174;38.256965,-85.741633;38.25757,-85.7416;38.257757,-85.741584;38.257846,-85.741566;38.257942,-85.741417;38.25882,-85.741402;38.25897,-85.741374;38.259289,-85.741375;38.259532,-85.741396;38.259854,-85.741409;38.259966,-85.741423;38.260082,-85.741455;38.260236,-85.741487;38.260392,-85.741531;38.260557,-85.741572;38.26071,-85.741606;38.260813,-85.74164;38.260913,-85.741691;38.261109,-85.741788;38.261311,-85.741885;38.261493,-85.742114;38.261962,-85.74215;38.262035,-85.74359;38.264834,-85.74457;38.266773,-85.744801;38.267204\\\\nPOLYLINE,-85.701198;38.086329,-85.701201;38.086469,-85.701218;38.087293,-85.701229;38.088273,-85.701226;38.088599,-85.701222;38.089074,-85.701173;38.091034,-85.701162;38.091327,-85.701089;38.093189,-85.70098;38.096699,-85.700998;38.098383,-85.701021;38.099029,-85.70107;38.099883,-85.701074;38.099999,-85.701112;38.100974,-85.70116;38.102057,-85.701201;38.102822,-85.701229;38.103713,-85.701255;38.104244,-85.701306;38.105512,-85.701398;38.107137,-85.701426;38.10777,-85.701474;38.108651,-85.701452;38.108826,-85.70152;38.110421,-85.70157;38.111425,-85.701573;38.111482,-85.701588;38.11178,-85.701604;38.112324,-85.701612;38.112402,-85.701649;38.112782,-85.701657;38.112936,-85.701682;38.113415,-85.701714;38.114259,-85.701697;38.11443,-85.701712;38.114769,-85.701726;38.115091,-85.701799;38.116879,-85.701806;38.117057,-85.701855;38.118175,-85.701902;38.119231,-85.701915;38.119447,-85.701949;38.120326,-85.702007;38.12161,-85.70208;38.122049,-85.702131;38.123519,-85.702245;38.125916,-85.702259;38.126467,-85.702291;38.126992,-85.70236;38.127557,-85.702448;38.128035,-85.702468;38.128181,-85.702516;38.128387,-85.702572;38.128601,-85.702745;38.129155,-85.702834;38.129399,-85.703083;38.129986,-85.703195;38.130222,-85.703326;38.130453,-85.703568;38.130896,-85.703986;38.131615,-85.7042;38.132045,-85.704522;38.132635,-85.704974;38.133425,-85.705246;38.133915,-85.705493;38.134338,-85.70555;38.134439,-85.705676;38.134661,-85.705853;38.134973,-85.706074;38.135374,-85.706497;38.136114,-85.706862;38.136781,-85.707015;38.137043,-85.707714;38.138263,-85.708337;38.139333,-85.70839;38.139516,-85.708868;38.140377,-85.709432;38.141451,-85.709723;38.142013,-85.710199;38.142933,-85.710619;38.143762,-85.710831;38.144171,-85.711106;38.144701,-85.711919;38.146294,-85.712602;38.147621,-85.713268;38.148903,-85.713558;38.149423,-85.714063;38.150352,-85.714404;38.150938,-85.714561;38.151181,-85.714627;38.151293,-85.714676;38.151375,-85.71495;38.151838,-85.71533;38.152458,-85.715688;38.153024,-85.716078;38.153659,-85.716655;38.154582,-85.716723;38.154692,-85.716791;38.154802,-85.716908;38.154992,-85.717466;38.155895,-85.71769;38.156245,-85.718027;38.156798,-85.718154;38.156927,-85.718497;38.157507,-85.718649;38.157752,-85.719157;38.158573,-85.719353;38.158867,-85.719579;38.159264,-85.719707;38.159462,-85.7198;38.159607,-85.720085;38.160113,-85.72041;38.160766,-85.720503;38.161003,-85.720551;38.161124,-85.720655;38.161433,-85.720784;38.161935,-85.720788;38.161957,-85.720846;38.162243,-85.7209;38.1626,-85.720927;38.162937,-85.720941;38.163367,-85.720945;38.16381,-85.720938;38.1642,-85.720939;38.164521,-85.720882;38.166302,-85.720863;38.167354,-85.720812;38.168708,-85.720803;38.16896,-85.720799;38.169631,-85.720798;38.169746,-85.720761;38.17087,-85.72075;38.171213,-85.720714;38.171748,-85.720672;38.172035,-85.720631;38.172385,-85.720519;38.172937,-85.720407;38.173332,-85.720289;38.173655,-85.720188;38.173952,-85.720128;38.174126,-85.719975;38.174573,-85.719925;38.174757,-85.719837;38.174932,-85.719723;38.175265,-85.719557;38.175893,-85.719513;38.176162,-85.719496;38.176305,-85.719467;38.176691,-85.719465;38.176813,-85.719479;38.177015,-85.719498;38.177169,-85.719591;38.177614,-85.719601;38.177665,-85.719674;38.177982,-85.719824;38.178372,-85.719902;38.178544,-85.719917;38.178578,-85.720182;38.179061,-85.720315;38.179275,-85.720457;38.17949,-85.721379;38.180934,-85.721847;38.181682,-85.721961;38.181849,-85.721989;38.181894,-85.722207;38.182242,-85.722533;38.182711,-85.722706;38.182996,-85.722889;38.183257,-85.723104;38.18355,-85.723436;38.183949,-85.723754;38.184298,-85.724039;38.184587,-85.724239;38.184773,-85.724941;38.185403,-85.725264;38.185686,-85.725344;38.185807,-85.725661;38.186097,-85.725954;38.186387,-85.726366;38.186805,-85.726566;38.187024,-85.727933;38.18859,-85.728954;38.189767,-85.729221;38.190067,-85.729372;38.190239,-85.729447;38.190326,-85.729523;38.190412,-85.72967;38.190582,-85.729816;38.190749,-85.729986;38.190942,-85.730155;38.191136,-85.730198;38.191184,-85.730257;38.191261,-85.730826;38.191909,-85.731002;38.192115,-85.731442;38.192612,-85.73169;38.192899,-85.731811;38.193011,-85.731996;38.193239,-85.732423;38.193765,-85.732607;38.194016,-85.732804;38.194308,-85.732984;38.194606,-85.733169;38.194948,-85.733334;38.195295,-85.733481;38.195659,-85.733556;38.195888,-85.733654;38.196238,-85.733755;38.196669,-85.733791;38.196821,-85.733834;38.197191,-85.733879;38.197479,-85.734006;38.198279,-85.734064;38.198568,-85.734124;38.198817,-85.734156;38.19893,-85.73422;38.199129,-85.734339;38.199435,-85.734477;38.199738,-85.734635;38.200037,-85.734812;38.20033,-85.735012;38.20062,-85.735161;38.200814,-85.735401;38.201098,-85.735571;38.201281,-85.735754;38.201461,-85.735947;38.201637,-85.736251;38.201892,-85.736572;38.202132,-85.736919;38.202364,-85.737162;38.202511,-85.737412;38.202651,-85.738258;38.20309,-85.739523;38.20373,-85.740883;38.204449,-85.742647;38.205346,-85.743413;38.2057,-85.744155;38.205963,-85.744907;38.206181,-85.745397;38.206293,-85.74586;38.206381,-85.746151;38.206428,-85.746737;38.206499,-85.747111;38.206534,-85.748327;38.206619,-85.749032;38.206695,-85.74956;38.206789,-85.750108;38.206958,-85.750615;38.207162,-85.750939;38.207312,-85.751412;38.207619,-85.75171;38.207847,-85.751878;38.207987,-85.752005;38.208112,-85.752284;38.2084,-85.752331;38.208447,-85.752406;38.208525,-85.752532;38.208703,-85.752685;38.208946,-85.75278;38.209121,-85.752858;38.209283,-85.752947;38.209504,-85.753027;38.209768,-85.753047;38.209892,-85.753077;38.210064,-85.753116;38.210395,-85.753123;38.210505,-85.753106;38.210963,-85.752904;38.212369,-85.752886;38.212449,-85.752745;38.213126,-85.752536;38.214348,-85.752486;38.214641,-85.752413;38.215197,-85.752376;38.215571,-85.75237;38.215663,-85.75234;38.216149,-85.752327;38.21663,-85.75233;38.216905,-85.752368;38.217034,-85.752364;38.217438,-85.752349;38.217751,-85.752322;38.217948,-85.752283;38.218336,-85.75218;38.218796,-85.752153;38.21889,-85.75178;38.220038,-85.751736;38.220278,-85.75166;38.22052,-85.751589;38.220853,-85.751524;38.221117,-85.751478;38.221341,-85.751435;38.22148,-85.751346;38.221886,-85.751117;38.223272,-85.7511;38.223483,-85.751095;38.223799,-85.751109;38.224044,-85.751178;38.224378,-85.751463;38.225461,-85.751529;38.225731,-85.751559;38.225856,-85.751568;38.225892,-85.75165;38.226233,-85.751699;38.226494,-85.751687;38.226671,-85.751693;38.226927,-85.751679;38.227171,-85.751646;38.227434,-85.751537;38.228107,-85.751364;38.229136,-85.751153;38.230386,-85.751036;38.231324,-85.750939;38.232101,-85.750914;38.232364,-85.750863;38.232712,-85.750861;38.232811,-85.750871;38.233059,-85.750873;38.233121,-85.750894;38.23338,-85.750947;38.233694,-85.751004;38.233921,-85.751086;38.234172,-85.751158;38.234385,-85.751224;38.23454,-85.751317;38.234738,-85.751502;38.235098,-85.751665;38.235413,-85.751721;38.235517,-85.752301;38.236593,-85.752656;38.237254,-85.752886;38.237705,-85.752989;38.23792,-85.753038;38.23804,-85.753095;38.238177,-85.75311;38.238225,-85.753196;38.238487,-85.753276;38.238821,-85.753298;38.238969,-85.753303;38.239116,-85.7533;38.239475,-85.753294;38.239583,-85.753268;38.239797,-85.753231;38.2401,-85.753037;38.241237,-85.752904;38.242034,-85.752812;38.242681,-85.752731;38.243006,-85.752609;38.243814,-85.75255;38.244263,-85.752463;38.244923,-85.752371;38.245636,-85.752323;38.246067,-85.752314;38.246203,-85.752304;38.246228,-85.752278;38.246484,-85.752277;38.246571,-85.752271;38.247009,-85.752271;38.247098,-85.752271;38.248331,-85.752264;38.248542,-85.75223;38.249011,-85.752203;38.249128,-85.752119;38.249295,-85.752056;38.249449,-85.751953;38.249656,-85.751823;38.249863,-85.751748;38.249962,-85.751617;38.250113,-85.751571;38.250167,-85.751373;38.250359,-85.751253;38.250454,-85.751123;38.250556,-85.750802;38.250756,-85.750563;38.250878,-85.75029;38.250991,-85.748605;38.251582,-85.747787;38.251869,-85.746677;38.252259,-85.746536;38.252316,-85.746386;38.252402,-85.746306;38.252425,-85.745771;38.252612,-85.745467;38.252718,-85.74484;38.252925,-85.744207;38.253139,-85.743956;38.253234,-85.743749;38.253327,-85.743588;38.253411,-85.743375;38.253539,-85.743162;38.253692,-85.74311;38.253739,-85.742981;38.253855,-85.742758;38.254081,-85.742574;38.254329,-85.742463;38.254523,-85.742442;38.254568,-85.742371;38.254724,-85.742304;38.254915,-85.742266;38.255059,-85.742215;38.255337,-85.742137;38.255765,-85.742106;38.255937,-85.742045;38.256126,-85.742022;38.256185,-85.741879;38.256979,-85.741826;38.257276,-85.741772;38.257572,-85.741738;38.257758,-85.741724;38.257839,-85.741707;38.257925,-85.741566;38.258735,-85.741543;38.258911,-85.741528;38.259021,-85.741511;38.259245,-85.74151;38.259368,-85.741502;38.259478,-85.741521;38.259824,-85.74153;38.259901,-85.741551;38.260082,-85.741568;38.260179,-85.741643;38.260501,-85.7417;38.26071,-85.741722;38.260776,-85.741768;38.260914,-85.741868;38.26105,-85.741954;38.261276,-85.74201;38.261395,-85.742276;38.26192,-85.74375;38.264832,-85.744715;38.266757,-85.744961;38.267196\\\\nPOLYLINE,-86.074081;39.636593,-86.074082;39.636652,-86.074084;39.636891,-86.074092;39.638224,-86.074114;39.644477,-86.074114;39.645378,-86.074118;39.646135,-86.074118;39.646153,-86.074131;39.649739,-86.074136;39.651312,-86.074138;39.651591,-86.07415;39.65183,-86.074172;39.652109,-86.07421;39.65238,-86.074238;39.65256,-86.07427;39.652732,-86.07435;39.65303,-86.074425;39.653287,-86.07446;39.65345,-86.074555;39.653707,-86.074644;39.653929,-86.074743;39.654137,-86.074838;39.654331,-86.07492;39.654489,-86.07505;39.654729,-86.075223;39.655014,-86.075331;39.655164,-86.07545;39.655341,-86.075539;39.655467,-86.07596;39.655962,-86.076106;39.656121,-86.076238;39.65627,-86.076369;39.656398,-86.076559;39.656579,-86.076802;39.656785,-86.076952;39.656911,-86.077131;39.657057,-86.077867;39.65759,-86.081525;39.660128,-86.082212;39.660607,-86.082541;39.660834,-86.083234;39.661313,-86.084049;39.661874,-86.085825;39.663109,-86.085924;39.663177,-86.085973;39.663212,-86.086046;39.663263,-86.087183;39.664061,-86.087583;39.664343,-86.089314;39.665551,-86.089604;39.665751,-86.092442;39.667715,-86.092818;39.667975,-86.096188;39.670307,-86.096316;39.670399,-86.096441;39.670494,-86.096565;39.67059,-86.096686;39.670685,-86.09676;39.670749,-86.096805;39.670785,-86.096922;39.670881,-86.097036;39.670985,-86.097148;39.671085,-86.097259;39.67119,-86.097366;39.671299,-86.097471;39.671403,-86.097574;39.671512,-86.097673;39.671621,-86.097772;39.671734,-86.097959;39.671961,-86.098049;39.672074,-86.098137;39.672192,-86.098222;39.67231,-86.098383;39.672546,-86.09846;39.672668,-86.098534;39.67279,-86.098605;39.672912,-86.098674;39.673034,-86.098739;39.673161,-86.098802;39.673288,-86.098862;39.673414,-86.098919;39.673541,-86.098973;39.673667,-86.099025;39.673794,-86.099073;39.673925,-86.099136;39.67411,-86.101036;39.679934,-86.101105;39.680144,-86.10467;39.691065,-86.104768;39.691376,-86.104865;39.691688,-86.10496;39.692,-86.105145;39.692627,-86.105235;39.692939,-86.105324;39.693255,-86.10541;39.693566,-86.105562;39.694131,-86.106288;39.69683,-86.106488;39.697549,-86.107382;39.700763,-86.108015;39.70307,-86.108025;39.703106,-86.108046;39.703182,-86.108206;39.703765,-86.10822;39.703814,-86.108241;39.703896,-86.108246;39.703914,-86.108825;39.706067,-86.108904;39.706361,-86.109338;39.707977,-86.109509;39.708573,-86.109532;39.70864,-86.10961;39.708875,-86.109692;39.709097,-86.109776;39.709309,-86.109868;39.709517,-86.109924;39.709634,-86.109969;39.709725,-86.110029;39.709843,-86.110125;39.710014,-86.110193;39.710132,-86.110317;39.710331,-86.11045;39.710531,-86.110519;39.710626,-86.110554;39.710671,-86.110643;39.710793,-86.110774;39.710956,-86.110936;39.711147,-86.111032;39.711256,-86.11113;39.711365,-86.11123;39.711469,-86.111402;39.711642,-86.11158;39.711814,-86.111801;39.712014,-86.112031;39.712205,-86.112228;39.712364,-86.112348;39.712455,-86.112471;39.712546,-86.112595;39.712633,-86.112722;39.712724,-86.11285;39.71281,-86.113095;39.712965,-86.113179;39.713016,-86.113235;39.713052,-86.113433;39.713166,-86.113541;39.713226,-86.113664;39.713294,-86.113751;39.713344,-86.114109;39.713523,-86.11423;39.713582,-86.114505;39.713706,-86.114629;39.713761,-86.114723;39.713798,-86.114817;39.713839,-86.114947;39.71389,-86.1153;39.714032,-86.115889;39.71423,-86.116216;39.714341,-86.120679;39.71587,-86.121976;39.716317,-86.123053;39.716686,-86.125852;39.717644,-86.12855;39.718565,-86.128726;39.718629,-86.128823;39.718666,-86.128856;39.71868,-86.128941;39.718712,-86.129027;39.718749,-86.129111;39.71879,-86.129236;39.718845,-86.129399;39.718927,-86.12948;39.718969,-86.129559;39.719014,-86.129615;39.719042,-86.129831;39.719169,-86.129894;39.71921,-86.129906;39.719219,-86.129981;39.71927,-86.130054;39.719315,-86.130126;39.719365,-86.130162;39.719393,-86.130233;39.719443,-86.130268;39.71947,-86.130336;39.719525,-86.130405;39.719579,-86.130438;39.719602,-86.130504;39.719661,-86.130569;39.719715,-86.130683;39.719815,-86.130849;39.719974,-86.130888;39.720015,-86.130931;39.720056,-86.131058;39.720192,-86.131099;39.720238,-86.131139;39.720287,-86.131198;39.720355,-86.131221;39.720383,-86.131255;39.720423,-86.131293;39.720473,-86.131329;39.720523,-86.131383;39.720591,-86.131452;39.720691,-86.131503;39.720763,-86.131535;39.720813,-86.131613;39.72094,-86.131671;39.721039,-86.131713;39.721116,-86.13174;39.72117,-86.131767;39.72122,-86.131805;39.721297,-86.131853;39.721399,-86.132214;39.722161,-86.132609;39.722992,-86.133376;39.72461,-86.133485;39.724841,-86.134133;39.726197,-86.134296;39.726537,-86.135054;39.728137,-86.135222;39.728494,-86.135466;39.72901,-86.135663;39.72943,-86.135896;39.729923,-86.135945;39.730032,-86.135994;39.730136,-86.136081;39.730339,-86.136086;39.730348,-86.136207;39.730642,-86.13626;39.730777,-86.136369;39.731075,-86.136405;39.731179,-86.136426;39.731238,-86.136489;39.731428,-86.136514;39.731509,-86.136575;39.731721,-86.136657;39.732015,-86.13668;39.7321,-86.136702;39.732186,-86.136787;39.732507,-86.136812;39.73261,-86.136859;39.732822,-86.136882;39.732935,-86.136904;39.733053,-86.136922;39.733156,-86.136957;39.733377,-86.136987;39.733598,-86.137012;39.733824,-86.137034;39.734144,-86.137062;39.73453,-86.137105;39.735135,-86.137208;39.737569\\\\n\\\"],0,7]\");",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-GWT-Module-Base",
"value": "{{URL}}/gwtmaps/",
"type": "text"
},
{
"key": "X-GWT-Permutation",
"value": "4A974DBE2FF476CCD6AEFA48C03077DD",
"type": "text"
},
{
"key": "Origin",
"value": "{{URL}}",
"type": "text"
},
{
"key": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36",
"type": "text"
},
{
"key": "Content-Type",
"value": "text/x-gwt-rpc; charset=UTF-8",
"type": "text"
},
{
"key": "Accept",
"value": "*/*",
"type": "text"
},
{
"key": "Referer",
"value": "{{URL}}/GWTMaps.html",
"type": "text"
},
{
"key": "Accept-Encoding",
"value": "gzip, deflate, br",
"type": "text"
},
{
"key": "Accept-Language",
"value": "en-US,en;q=0.9",
"type": "text"
},
{
"key": "Cookie",
"value": "JSESSIONID=12heme03gr6fmxt9byj4ctmir",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "7|0|6|http://127.0.0.1:8888/gwtmaps/|2340FA9687BBBA633B8360439C75EB4C|example.edu.client.service.ExampleService|runScript|java.lang.String/2004016611|# Program 10: get (returns polyline segments list), for loop\r\n# This program draws the Interstate 65.\r\nInd_pol = get(\"Indiana\", \"STATE\", \"POLYGON\")\r\ndisplay_shape(Ind_pol)\r\nInd_cross_flag=0\r\nIowa_pol = get(\"Iowa\", \"STATE\", \"POLYGON\")\r\ndisplay_shape(Iowa_pol)\r\nIowa_cross_flag=0\r\nI65= get(\"I- 65\", \"PRIMARY-ROAD\", \"POLYLINE\")\r\nfor i in range(len(I65)):\r\n display_shape(I65[i])\r\n if(crosses(I65[i],Ind_pol)):\r\n Ind_cross_flag=1\r\n if (crosses(I65[i],Iowa_pol)):\r\n Iowa_cross_flag=1\r\nif(Ind_cross_flag==1):\r\n print \"I65 crosses Indiana\"\r\nelse:\r\n print \"I65 does not cross Indiana\"\r\n \r\nif(Iowa_cross_flag==1):\r\n print \"I65 crosses Iowa\"\r\nelse:\r\n print \"I65 does not cross Iowa\"|1|2|3|4|1|5|6|"
},
"url": {
"raw": "{{URL}}/gwtmaps/exampleservice",
"host": [
"{{URL}}"
],
"path": [
"gwtmaps",
"exampleservice"
]
},
"description": "620,500 char verification..."
},
"response": []
},
{
"name": "LIMO Example 11",
"event": [
{
"listen": "test",
"script": {
"id": "be7a384b-9290-4d27-82ee-4d7ef8215252",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"pm.test(\"Body is correct\", function () {",
" pm.response.to.have.body('//OK[4,2,3,2,2,1,[\"java.util.ArrayList/4159755760\",\"java.lang.String/2004016611\",\"Indiana contains West Lafayette\\\\nLafayette and West Lafayette do not intersect\\\\n\",\"POLYGON,-86.945563;40.448617,-86.94327;40.450884,-86.942021;40.446048,-86.938597;40.446055,-86.938642;40.45093,-86.942939;40.450887,-86.943229;40.464765,-86.937427;40.465245,-86.935495;40.462941,-86.936405;40.464977,-86.933866;40.464996,-86.93387;40.466768,-86.934065;40.472789,-86.939001;40.472781,-86.938906;40.475371,-86.915689;40.476183,-86.915724;40.479003,-86.906206;40.47898,-86.906253;40.482365,-86.911015;40.482376,-86.91114;40.489602,-86.898728;40.489575,-86.897956;40.486097,-86.887288;40.487499,-86.887203;40.474916,-86.895086;40.47492,-86.896676;40.470948,-86.899254;40.470512,-86.899529;40.467829,-86.901306;40.467819,-86.901442;40.459896,-86.898818;40.460595,-86.90075;40.45844,-86.897369;40.458427,-86.900213;40.451203,-86.898642;40.444704,-86.896244;40.444453,-86.898809;40.443342,-86.898576;40.440141,-86.896559;40.43982,-86.896509;40.435135,-86.897999;40.43442,-86.896312;40.434137,-86.89756;40.425679,-86.901097;40.426709,-86.902579;40.424297,-86.897585;40.424846,-86.897214;40.421713,-86.899929;40.416899,-86.901739;40.415905,-86.924268;40.416983,-86.923093;40.420687,-86.916729;40.420504,-86.916497;40.417399,-86.913821;40.417338,-86.913729;40.424134,-86.910337;40.424019,-86.910386;40.428046,-86.913979;40.43136,-86.916111;40.431344,-86.916666;40.424187,-86.919603;40.424216,-86.920031;40.432395,-86.915065;40.431444,-86.915626;40.437035,-86.917271;40.438892,-86.924613;40.438817,-86.924504;40.446114,-86.92177;40.446006,-86.926419;40.451746,-86.931721;40.451703,-86.931741;40.453329,-86.93487;40.453376,-86.933883;40.44244,-86.943289;40.442334,-86.945563;40.448617\\\\nPOLYGON,-86.925993;40.396947,-86.910109;40.403135,-86.898709;40.415535,-86.896009;40.421035,-86.893469;40.451439,-86.884801;40.450729,-86.884196;40.455624,-86.880392;40.455617,-86.880396;40.45427,-86.876426;40.454252,-86.877631;40.449477,-86.874465;40.449652,-86.872604;40.447525,-86.866813;40.446381,-86.865446;40.445204,-86.868303;40.443999,-86.86267;40.44131,-86.854799;40.448194,-86.857331;40.44111,-86.851839;40.441112,-86.848949;40.443199,-86.848938;40.439557,-86.838452;40.439586,-86.834092;40.431839,-86.824382;40.420716,-86.818576;40.420793,-86.818622;40.42293,-86.814723;40.423354,-86.814777;40.417735,-86.809937;40.41777,-86.809791;40.410236,-86.814181;40.4103,-86.809369;40.407195,-86.80942;40.403129,-86.803382;40.403392,-86.796513;40.395771,-86.78948;40.395842,-86.790294;40.387862,-86.78545;40.381198,-86.790362;40.381195,-86.790512;40.373803,-86.831005;40.374295,-86.828994;40.36971,-86.828606;40.3711,-86.811619;40.356356,-86.818922;40.356366,-86.818953;40.359979,-86.82974;40.359926,-86.833203;40.358205,-86.833236;40.359659,-86.838003;40.361695,-86.838088;40.367006,-86.856955;40.366997,-86.856897;40.36135,-86.86067;40.363988,-86.864132;40.364105,-86.862823;40.357711,-86.875681;40.357125,-86.87569;40.355757,-86.894101;40.356082,-86.893605;40.359799,-86.890009;40.359774,-86.890114;40.3668,-86.904557;40.366856,-86.904534;40.37413,-86.923709;40.374322,-86.923909;40.395335,-86.926025;40.394723,-86.925993;40.396947\\\\n\"],0,7]');",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-GWT-Module-Base",
"value": "{{URL}}/gwtmaps/",
"type": "text"
},
{
"key": "X-GWT-Permutation",
"value": "4A974DBE2FF476CCD6AEFA48C03077DD",
"type": "text"
},
{
"key": "Origin",
"value": "{{URL}}",
"type": "text"
},
{
"key": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36",
"type": "text"
},
{
"key": "Content-Type",
"value": "text/x-gwt-rpc; charset=UTF-8",
"type": "text"
},
{
"key": "Accept",
"value": "*/*",
"type": "text"
},
{
"key": "Referer",
"value": "{{URL}}/GWTMaps.html",
"type": "text"
},
{
"key": "Accept-Encoding",
"value": "gzip, deflate, br",
"type": "text"
},
{
"key": "Accept-Language",
"value": "en-US,en;q=0.9",
"type": "text"
},
{
"key": "Cookie",
"value": "JSESSIONID=12heme03gr6fmxt9byj4ctmir",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "7|0|6|http://127.0.0.1:8888/gwtmaps/|2340FA9687BBBA633B8360439C75EB4C|example.edu.client.service.ExampleService|runScript|java.lang.String/2004016611|# Program 11: get (returns polygon), spatial operators\r\n# contains and intersects, and conditional if/else.\r\n# This program displays the geometric shapes of cities West Lafayette and Lafayette.\r\nWL_pol = get(\"West Lafayette\", \"CITY\", \"POLYGON\")\r\ndisplay_shape(WL_pol)\r\nLaf_pol = get(\"Lafayette\", \"CITY\", \"POLYGON\")\r\ndisplay_shape(Laf_pol)\r\nIndiana_pol= get(\"Indiana\", \"STATE\", \"POLYGON\")\r\n\r\n# Here it tests if Indiana contains West Lafayette and if Lafayette and West Lafayette intersect\r\nif(contains(Indiana_pol,WL_pol)):\r\n print \"Indiana contains West Lafayette\"\r\nelse:\r\n print \"Indiana does not contain West Lafayette\"\r\nif(intersects(Laf_pol,WL_pol)):\r\n print \"Lafayette and West Lafayette intersect\"\r\nelse:\r\n print \"Lafayette and West Lafayette do not intersect\"|1|2|3|4|1|5|6|"
},
"url": {
"raw": "{{URL}}/gwtmaps/exampleservice",
"host": [
"{{URL}}"
],
"path": [
"gwtmaps",
"exampleservice"
]
}
},
"response": []
},
{
"name": "LIMO Example 12",
"event": [
{
"listen": "test",
"script": {
"id": "be7a384b-9290-4d27-82ee-4d7ef8215252",
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"pm.test(\"Body is correct\", function () {",
" pm.response.to.have.body(\"//OK[4,2,3,2,2,1,[\\\"java.util.ArrayList/4159755760\\\",\\\"java.lang.String/2004016611\\\",\\\"Indiana touches Ohio\\\\nIndiana and Iowa are disjoint\\\\n\\\",\\\"POLYGON,-87.526587;41.16609,-87.523661;41.759907,-84.805885;41.760171,-84.820157;39.105489,-84.897336;39.05742,-84.830049;38.97256,-84.877276;38.90948,-84.785275;38.880425,-84.813238;38.785728,-85.173048;38.688022,-85.435409;38.729094,-85.42339;38.531845,-85.606954;38.438574,-85.679213;38.298009,-85.829216;38.276508,-85.925654;38.021784,-86.040821;37.958366,-86.264692;38.054853,-86.272847;38.140835,-86.361706;38.198698,-86.325551;38.135809,-86.461686;38.120502,-86.507089;37.929917,-86.638009;37.842772,-86.819804;37.999391,-87.034166;37.906265,-87.108333;37.782729,-87.58829;37.975512,-87.615583;37.831848,-87.89546;37.92799,-87.945991;37.773578,-88.077029;37.804993,-88.026053;37.833688,-88.09776;37.904026,-88.013451;37.893951,-88.042132;38.046345,-87.910924;38.162557,-87.988078;38.256717,-87.840984;38.280105,-87.495799;38.740699,-87.512187;38.954417,-87.658745;39.135997,-87.574558;39.218404,-87.620589;39.307046,-87.531646;39.347888,-87.526587;41.16609\\\\nMARKER,-86.2839503,39.9030256\\\\nPOLYGON,-84.423498;39.051885,-84.458818;39.121479,-84.820157;39.105489,-84.805972;41.696118,-83.415851;41.733794,-83.11246;41.95941,-83.069312;41.864217,-82.681119;41.676328,-82.398348;41.676524,-81.249833;42.216415,-80.519851;42.327132,-80.518991;40.638801,-80.667813;40.583536,-80.599895;40.317666,-80.88036;39.620706,-81.217315;39.38759,-81.375961;39.341697,-81.456143;39.409274,-81.570247;39.267675,-81.683613;39.270947,-81.813854;39.079678,-81.762658;38.924123,-81.90297;38.87609,-81.933186;38.98766,-82.037749;39.023865,-82.221566;38.787187,-82.177267;38.603784,-82.291271;38.578983,-82.330335;38.4445,-82.53769;38.404157,-82.842213;38.588577,-82.88601;38.755194,-83.293019;38.596764,-83.520755;38.703094,-83.668718;38.626542,-83.870199;38.761532,-84.212751;38.805629,-84.309313;39.011743,-84.423498;39.051885\\\\nMARKER,-82.7119975,40.4149297\\\\nPOLYGON,-92.637898;40.590853,-95.765645;40.585208,-95.888907;40.731855,-95.809474;40.891228,-95.882342;41.059419,-95.841616;41.175469,-95.92725;41.197086,-95.927642;41.29844,-95.871141;41.29669,-95.957137;41.345902,-95.921192;41.455138,-96.095109;41.541089,-96.06479;41.794406,-96.161756;41.90182,-96.129505;41.971673,-96.272545;42.046202,-96.417786;42.351449,-96.386003;42.474496,-96.476461;42.490128,-96.639364;42.736435,-96.436472;43.120166,-96.58566;43.269352,-96.521662;43.385905,-96.599191;43.500456,-91.217706;43.50055,-91.20662;43.352524,-91.057918;43.255366,-91.179457;43.067427,-91.065059;42.751338,-90.706303;42.634169,-90.654027;42.478503,-90.443874;42.355218,-90.393151;42.227186,-90.167533;42.122475,-90.181973;41.80707,-90.461432;41.523533,-91.04589;41.414085,-91.113657;41.241401,-90.946625;41.096628,-90.952233;40.954047,-91.092993;40.821079,-91.123928;40.669152,-91.405241;40.554641,-91.384201;40.38643,-91.483153;40.382492,-91.729115;40.61364,-92.637898;40.590853\\\\nMARKER,-93.4933473,42.0700243\\\\n\\\"],0,7]\");",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-GWT-Module-Base",
"value": "{{URL}}/gwtmaps/",
"type": "text"
},
{
"key": "X-GWT-Permutation",
"value": "4A974DBE2FF476CCD6AEFA48C03077DD",
"type": "text"
},
{
"key": "Origin",
"value": "{{URL}}",
"type": "text"
},
{
"key": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36",
"type": "text"
},
{
"key": "Content-Type",
"value": "text/x-gwt-rpc; charset=UTF-8",
"type": "text"
},
{
"key": "Accept",
"value": "*/*",
"type": "text"
},
{
"key": "Referer",
"value": "{{URL}}/GWTMaps.html",
"type": "text"
},
{
"key": "Accept-Encoding",
"value": "gzip, deflate, br",
"type": "text"
},
{
"key": "Accept-Language",
"value": "en-US,en;q=0.9",
"type": "text"
},