-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting.html
More file actions
813 lines (653 loc) · 981 KB
/
testing.html
File metadata and controls
813 lines (653 loc) · 981 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
<!DOCTYPE html>
<html>
<head>
<title>SAWGraph - Testing Gaps</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<!--Leaflet dependencies-->
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<!--Map Frames styles-->
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=yes" />
<style>
.folium-map {
position: relative;
width: 100.0%;
height: 700px;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<style>
.foliumtooltip {
margin: auto;
}
.foliumtooltip table{
margin: auto;
}
.foliumtooltip tr{
text-align: left;
}
.foliumtooltip th{
padding: 2px; padding-right: 8px;
}
</style>
</head>
<body style="font-family:Verdana, sans-serif;
font-size: 15px;">
<!-- Navbar (sit on top) -->
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card">
<script src="menu.js"></script>
</div>
</div>
<!-- Header -->
<header class="w3-display-container w3-content w3-wide" style="max-width:1500px;" id="home">
</header>
<!-- Page content -->
<div class="w3-content w3-padding-32" style="max-width:1564px">
<!-- Intro Section -->
<div class="w3-container w3-padding-32 w3-margin-right" id="intro">
<h1 class="w3-xlarge w3-text-black">Testing: Waterbodies Near Facilities</h1>
<!-- <div>
<div class="w3-twothird w3-padding-32 w3-large w3-margin-right w3-large">
<p>The first use case of the SAWGraph project is to support identifying gaps in testing for PFAs and understanding the sampling that does exist. This use case contains a number of competency questions which answer the following types of questions:</p>
<ul>
<li>Where (locations/towns) should we prioritize environmental/water testing?</li>
<li>Which wells are within 5 miles of suspected sources (landfills/airports/biosludge application sites, etc.) ?</li>
<li>Which wells are near locations with a reported PFOA contamination above 4ppt and have not been tested?
</li></ul>
<p> The goal of this use case is to support state and federal agencies and researchers in prioritizing where to test.</p>
<p>We demonstrate this use case by providing visual results for a number of example competency questions that exemplify specific querying tasks. Each example is also available as a linked jupyter notebook that contains the python code to generate the maps and the SPARQL queries.
</p>
</div> -->
<!-- Right Card -->
<!-- <div class="w3-container w3-rest w3-card w3-padding-32 w3-light-blue w3-margin-left">
<h3>User Persona - Early Eric</h3>
<p>State Environmental Toxicologist with a focus on drinking water. </br>From a state/region that has not yet done comprehensive water testing</p>
<h4>Goals</h4><ul>
<li>Understand which locations are already known to have high contamination
</li>
<li>Understand which locations have done the least amount of testing</li>
<li>Prioritize water testing in correlation to where the highest contamination risks are
</li>
</ul>
<h4>Responsibilities</h4>
<ul><li>Ensure that all people in the state have reasonably clean drinking water and more specifically:
</li>
<ul>
<li>Devise and put in action test plans to monitor drinking water quality</li>
<li>Take remedial action</li>
</ul>
</ul>
</div>
</div>
-->
<!-- Use Case 1-->
<h2 class="w3-border-bottom w3-border-light-grey w3-padding-16">What Surface Water Bodies are near landfills or Department of Defense Sites?</h2>
<div class="w3-row-padding w3-large">
<p>The first stage of testing prioritization for many states involves identifying facilities that are likely to be utilizing PFAs chemicals. This competency question addresses features of environmental concern (surface water bodies) that are near potential contamination sources. </p>
<ul>
<li>Landfills are sites of PFAS contamination resulting from both industrial usage and prevalence in consumer products that accumulate in landfills. </li>
<li>Department of Defense sites are frequently on the list PFAs contamination primarily because of the usage of Fire Fighting Foam (AFFF).</li> </ul>
<p>The query could easily be modified to identify other features of concern (water supply wells, streams, etc.) or other potential contamination sources. This query would inform testing prioritization as it would help identify surface water bodies that may be at risk of contamination.</p>
<p>The map was generated by querying the SAWGraph for facilities of the specified type in the state of Maine (that are suspected pfas sources), and then finding the nearby surface water bodies based on the S2 Cell spatial indexing.</p>
<p>The full code is available: <a href="https://github.com/SAWGraph/public/blob/main/UseCases/UC1-Testing/UC1-CQ2/UC1_CQ2_query.ipynb">here</a> and <a href="https://github.com/SAWGraph/public/blob/main/UseCases/UC1-Testing/UC1-CQ2b/UC1_CQ2b_query.ipynb">here</a></p>
<div class=" w3-col w3-container w3-padding-32 w3-half">
<h3>Lakes & Ponds</h3>
<div class="folium-map w3-container w3-padding-32 w3-margin" id="map_319ef58b6accc74cb0bf25aa64620bd1" ></div>
</div>
<div class="w3-container w3-rest w3-padding-32">
<h3>Rivers (Flowlines)</h3>
<div class="folium-map w3-container w3-padding-32 w3-margin" id="map_065b1d422d5592f6b50181ac87f1dc76" > </div>
</div>
</div>
</body>
<!--Lakes Map-->
<script>
var map_319ef58b6accc74cb0bf25aa64620bd1 = L.map(
"map_319ef58b6accc74cb0bf25aa64620bd1",
{
center: [44.9741435, -69.37226799999999],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
L.control.scale().addTo(map_319ef58b6accc74cb0bf25aa64620bd1);
var tile_layer_d937a0900502c454a57a9f846caa67d0 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_d937a0900502c454a57a9f846caa67d0.addTo(map_319ef58b6accc74cb0bf25aa64620bd1);
map_319ef58b6accc74cb0bf25aa64620bd1.fitBounds(
[[43.084167, -70.741666], [46.86412, -68.00287]],
{}
);
function geo_json_3f1492165c4603558411c5ff9322fe8f_styler(feature) {
switch(feature.id) {
default:
return {"color": "red", "fillColor": "red", "fillOpacity": 0.5, "weight": 5};
}
}
function geo_json_3f1492165c4603558411c5ff9322fe8f_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_3f1492165c4603558411c5ff9322fe8f_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_3f1492165c4603558411c5ff9322fe8f_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_3f1492165c4603558411c5ff9322fe8f_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_3f1492165c4603558411c5ff9322fe8f.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_3f1492165c4603558411c5ff9322fe8f_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_3f1492165c4603558411c5ff9322fe8f = L.geoJson(null, {
onEachFeature: geo_json_3f1492165c4603558411c5ff9322fe8f_onEachFeature,
style: geo_json_3f1492165c4603558411c5ff9322fe8f_styler,
pointToLayer: geo_json_3f1492165c4603558411c5ff9322fe8f_pointToLayer,
});
function geo_json_3f1492165c4603558411c5ff9322fe8f_add (data) {
geo_json_3f1492165c4603558411c5ff9322fe8f
.addData(data);
}
geo_json_3f1492165c4603558411c5ff9322fe8f_add({"bbox": [-70.741666, 43.084167, -68.00287, 46.86412], "features": [{"bbox": [-68.58, 45.655556, -68.58, 45.655556], "geometry": {"coordinates": [-68.58, 45.655556], "type": "Point"}, "id": "0", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110058407941", "faclabel": "DOLBY LANDFILL"}, "type": "Feature"}, {"bbox": [-69.81191, 43.92676, -69.81191, 43.92676], "geometry": {"coordinates": [-69.81191, 43.92676], "type": "Point"}, "id": "1", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110067529142", "faclabel": "BATH SNOW DUMP"}, "type": "Feature"}, {"bbox": [-69.82, 43.94, -69.82, 43.94], "geometry": {"coordinates": [-69.82, 43.94], "type": "Point"}, "id": "2", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110039666073", "faclabel": "BATH LANDFILL"}, "type": "Feature"}, {"bbox": [-69.402782, 44.600914, -69.402782, 44.600914], "geometry": {"coordinates": [-69.402782, 44.600914], "type": "Point"}, "id": "4", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110039671174", "faclabel": "CASELLA ORGANICS"}, "type": "Feature"}, {"bbox": [-68.869458, 44.769686, -68.869458, 44.769686], "geometry": {"coordinates": [-68.869458, 44.769686], "type": "Point"}, "id": "12", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110032749177", "faclabel": "PINE TREE LANDFILL"}, "type": "Feature"}, {"bbox": [-68.668097, 44.878144, -68.668097, 44.878144], "geometry": {"coordinates": [-68.668097, 44.878144], "type": "Point"}, "id": "13", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110055618577", "faclabel": "ORONO WATER POLLUTION CONTROL FACILITY"}, "type": "Feature"}, {"bbox": [-68.727187, 44.897279, -68.727187, 44.897279], "geometry": {"coordinates": [-68.727187, 44.897279], "type": "Point"}, "id": "16", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110039664342", "faclabel": "ORONO CDD LANDFILL"}, "type": "Feature"}, {"bbox": [-68.724728, 44.980464, -68.724728, 44.980464], "geometry": {"coordinates": [-68.724728, 44.980464], "type": "Point"}, "id": "23", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110038020049", "faclabel": "JUNIPER RIDGE LANDFILL"}, "type": "Feature"}, {"bbox": [-68.70436, 44.99658, -68.70436, 44.99658], "geometry": {"coordinates": [-68.70436, 44.99658], "type": "Point"}, "id": "24", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110070072188", "faclabel": "JUNIPER RIDGE LANDFILL"}, "type": "Feature"}, {"bbox": [-69.713686, 44.317863, -69.713686, 44.317863], "geometry": {"coordinates": [-69.713686, 44.317863], "type": "Point"}, "id": "33", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110008433971", "faclabel": "HATCH HILL SOLID WASTE DISPOSAL FACILITY"}, "type": "Feature"}, {"bbox": [-70.239408, 44.197057, -70.239408, 44.197057], "geometry": {"coordinates": [-70.239408, 44.197057], "type": "Point"}, "id": "40", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110014022921", "faclabel": "AUBURN LANDFILL"}, "type": "Feature"}, {"bbox": [-70.359644, 43.645986, -70.359644, 43.645986], "geometry": {"coordinates": [-70.359644, 43.645986], "type": "Point"}, "id": "43", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110007274074", "faclabel": "ECOMAINE LANDFILL"}, "type": "Feature"}, {"bbox": [-70.658539, 43.436363, -70.658539, 43.436363], "geometry": {"coordinates": [-70.658539, 43.436363], "type": "Point"}, "id": "45", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110041461511", "faclabel": "SACO LANDFILL"}, "type": "Feature"}, {"bbox": [-70.658539, 43.436363, -70.658539, 43.436363], "geometry": {"coordinates": [-70.658539, 43.436363], "type": "Point"}, "id": "46", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110041461520", "faclabel": "BIDDEFORD LANDFILL"}, "type": "Feature"}, {"bbox": [-68.304086, 46.517382, -68.304086, 46.517382], "geometry": {"coordinates": [-68.304086, 46.517382], "type": "Point"}, "id": "51", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110010426976", "faclabel": "FRENCHVILLE LANDFILL"}, "type": "Feature"}, {"bbox": [-68.0497, 46.62691, -68.0497, 46.62691], "geometry": {"coordinates": [-68.0497, 46.62691], "type": "Point"}, "id": "52", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110043178343", "faclabel": "AROOSTOOK WASTE SOLUTIONS"}, "type": "Feature"}, {"bbox": [-68.03935, 46.5978, -68.03935, 46.5978], "geometry": {"coordinates": [-68.03935, 46.5978], "type": "Point"}, "id": "55", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110013694742", "faclabel": "PRESQUE ISLE LANDFILL"}, "type": "Feature"}, {"bbox": [-68.03935, 46.5978, -68.03935, 46.5978], "geometry": {"coordinates": [-68.03935, 46.5978], "type": "Point"}, "id": "56", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110070697819", "faclabel": "AROOSTOOK WASTE SOLUTIONS - PRESQUE ISLE LANDFILL"}, "type": "Feature"}, {"bbox": [-70.27478, 44.0808, -70.27478, 44.0808], "geometry": {"coordinates": [-70.27478, 44.0808], "type": "Point"}, "id": "68", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110046237050", "faclabel": "MG OLIVER OTIS HOWARD USARC"}, "type": "Feature"}, {"bbox": [-70.282545, 44.085015, -70.282545, 44.085015], "geometry": {"coordinates": [-70.282545, 44.085015], "type": "Point"}, "id": "69", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110037143150", "faclabel": "MAINE NATIONAL GUARD TRAINING SITE"}, "type": "Feature"}, {"bbox": [-70.3056, 43.62117, -70.3056, 43.62117], "geometry": {"coordinates": [-70.3056, 43.62117], "type": "Point"}, "id": "71", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110002083316", "faclabel": "MAINE AIR NATIONAL GUARD"}, "type": "Feature"}, {"bbox": [-68.00287, 46.86412, -68.00287, 46.86412], "geometry": {"coordinates": [-68.00287, 46.86412], "type": "Point"}, "id": "72", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110000797371", "faclabel": "MAINE ARMY NATIONAL GUARD OMS #5"}, "type": "Feature"}, {"bbox": [-70.741666, 43.084167, -70.741666, 43.084167], "geometry": {"coordinates": [-70.741666, 43.084167], "type": "Point"}, "id": "74", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110040852459", "faclabel": "PORTSMOUTH NAVAL SHIPYARD"}, "type": "Feature"}, {"bbox": [-68.8422, 44.80848, -68.8422, 44.80848], "geometry": {"coordinates": [-68.8422, 44.80848], "type": "Point"}, "id": "79", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110037143221", "faclabel": "U.S. ARMY MAINE NATIONAL GUARD BANGOR TRAINING SITE RANGE"}, "type": "Feature"}, {"bbox": [-68.313051, 44.276035, -68.313051, 44.276035], "geometry": {"coordinates": [-68.313051, 44.276035], "type": "Point"}, "id": "82", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110061087201", "faclabel": "US COAST GUARD SOUTHWEST HARBOR"}, "type": "Feature"}, {"bbox": [-70.27478, 44.0808, -70.27478, 44.0808], "geometry": {"coordinates": [-70.27478, 44.0808], "type": "Point"}, "id": "84", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110042247128", "faclabel": "AMSA 160"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_3f1492165c4603558411c5ff9322fe8f.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["fac", "faclabel"];
let aliases = ["fac", "faclabel"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
geo_json_3f1492165c4603558411c5ff9322fe8f.addTo(map_319ef58b6accc74cb0bf25aa64620bd1);
function geo_json_e657c36c3f695a33f615ed6e70a04af8_styler(feature) {
switch(feature.id) {
default:
return {"color": "darkred", "fillColor": "darkred", "fillOpacity": 0.5, "weight": 5};
}
}
function geo_json_e657c36c3f695a33f615ed6e70a04af8_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_e657c36c3f695a33f615ed6e70a04af8_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_e657c36c3f695a33f615ed6e70a04af8_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_e657c36c3f695a33f615ed6e70a04af8_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_e657c36c3f695a33f615ed6e70a04af8.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_e657c36c3f695a33f615ed6e70a04af8_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_e657c36c3f695a33f615ed6e70a04af8 = L.geoJson(null, {
onEachFeature: geo_json_e657c36c3f695a33f615ed6e70a04af8_onEachFeature,
style: geo_json_e657c36c3f695a33f615ed6e70a04af8_styler,
pointToLayer: geo_json_e657c36c3f695a33f615ed6e70a04af8_pointToLayer,
});
function geo_json_e657c36c3f695a33f615ed6e70a04af8_add (data) {
geo_json_e657c36c3f695a33f615ed6e70a04af8
.addData(data);
}
geo_json_e657c36c3f695a33f615ed6e70a04af8_add({"bbox": [-70.75252985211851, 43.08031133092864, -67.99561657259103, 46.86897227608834], "features": [{"bbox": [-68.58854147365815, 45.64743436744896, -68.56903097065974, 45.65851492128119], "geometry": {"coordinates": [[[-68.56903097065974, 45.65600765632614], [-68.5818137677613, 45.65851492128119], [-68.58854147365815, 45.64994014876079], [-68.57576191390145, 45.64743436744896], [-68.56903097065974, 45.65600765632614]]], "type": "Polygon"}, "id": "0", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5522903995024146432"}, "type": "Feature"}, {"bbox": [-69.81207079471478, 43.92438124407106, -69.7937825937837, 43.93495703007057], "geometry": {"coordinates": [[[-69.7937825937837, 43.932723970427716], [-69.80592946729593, 43.93495703007057], [-69.81207079471478, 43.92661297818042], [-69.79992698185445, 43.92438124407106], [-69.7937825937837, 43.932723970427716]]], "type": "Polygon"}, "id": "1", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525219085475905536"}, "type": "Feature"}, {"bbox": [-69.83022271935637, 43.93718860521329, -69.81193508772165, 43.94776656313693], "geometry": {"coordinates": [[[-69.81193508772165, 43.94553514767906], [-69.82408469434678, 43.94776656313693], [-69.83022271935637, 43.93941869582057], [-69.81807617635748, 43.93718860521329], [-69.81193508772165, 43.94553514767906]]], "type": "Polygon"}, "id": "2", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525229977512968192"}, "type": "Feature"}, {"bbox": [-69.41113236193212, 44.59489245666479, -69.39239997519576, 44.605661845808314], "geometry": {"coordinates": [[[-69.39239997519576, 44.60333379160921], [-69.40478760822702, 44.605661845808314], [-69.41113236193212, 44.597219129494775], [-69.39874786358303, 44.59489245666479], [-69.39239997519576, 44.60333379160921]]], "type": "Polygon"}, "id": "4", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525387963589984256"}, "type": "Feature"}, {"bbox": [-68.88311003125447, 44.76479852118742, -68.86411737915193, 44.77564213976646], "geometry": {"coordinates": [[[-68.86411737915193, 44.773231342078894], [-68.8765939989121, 44.77564213976646], [-68.88311003125447, 44.76720789414851], [-68.87063653576402, 44.76479852118742], [-68.86411737915193, 44.773231342078894]]], "type": "Polygon"}, "id": "12", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525435242589978624"}, "type": "Feature"}, {"bbox": [-68.68488807935688, 44.871900494852795, -68.66577801316883, 44.88278272830626], "geometry": {"coordinates": [[[-68.66577801316883, 44.880337887338946], [-68.67830144477372, 44.88278272830626], [-68.68488807935688, 44.8743438929146], [-68.67236777396592, 44.871900494852795], [-68.66577801316883, 44.880337887338946]]], "type": "Polygon"}, "id": "13", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525830276501995520"}, "type": "Feature"}, {"bbox": [-68.7409189375219, 44.89254637619939, -68.72181822899594, 44.90343046302656], "geometry": {"coordinates": [[[-68.72181822899594, 44.900992040521984], [-68.73434489972568, 44.90343046302656], [-68.7409189375219, 44.89498335869832], [-68.7283954001135, 44.89254637619939], [-68.72181822899594, 44.900992040521984]]], "type": "Polygon"}, "id": "16", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525835980218564608"}, "type": "Feature"}, {"bbox": [-68.73184978475908, 44.97838601451513, -68.71270575085316, 44.98929211503527], "geometry": {"coordinates": [[[-68.71270575085316, 44.986847013925946], [-68.72526076136248, 44.98929211503527], [-68.73184978475908, 44.98082967122551], [-68.71929791981464, 44.97838601451513], [-68.71270575085316, 44.986847013925946]]], "type": "Polygon"}, "id": "23", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525838076162605056"}, "type": "Feature"}, {"bbox": [-68.70611051299286, 44.992860947282615, -68.68695092634609, 45.00377219428022], "geometry": {"coordinates": [[[-68.68695092634609, 45.00132262068079], [-68.69951220442057, 45.00377219428022], [-68.70611051299286, 44.995309074091324], [-68.6935523808076, 44.992860947282615], [-68.68695092634609, 45.00132262068079]]], "type": "Polygon"}, "id": "24", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525838179241820160"}, "type": "Feature"}, {"bbox": [-69.71727653181492, 44.316076295177666, -69.69877825190999, 44.326757043726815], "geometry": {"coordinates": [[[-69.69877825190999, 44.32448748136629], [-69.71105573909362, 44.326757043726815], [-69.71727653181492, 44.31834450895667], [-69.70500215727307, 44.316076295177666], [-69.69877825190999, 44.32448748136629]]], "type": "Polygon"}, "id": "33", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526480328392179712"}, "type": "Feature"}, {"bbox": [-70.24996228484976, 44.193790979305966, -70.23170689453306, 44.20440853987788], "geometry": {"coordinates": [[[-70.23170689453306, 44.20221779792168], [-70.24390689438174, 44.20440853987788], [-70.24996228484976, 44.19598041420685], [-70.23776541164398, 44.193790979305966], [-70.23170689453306, 44.20221779792168]]], "type": "Polygon"}, "id": "40", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526549838142898176"}, "type": "Feature"}, {"bbox": [-70.37387227289662, 43.639495732579036, -70.35590812922527, 43.64996513567825], "geometry": {"coordinates": [[[-70.35590812922527, 43.647823631799504], [-70.36792432161904, 43.64996513567825], [-70.37387227289662, 43.64163596080895], [-70.36185913222408, 43.639495732579036], [-70.35590812922527, 43.647823631799504]]], "type": "Polygon"}, "id": "43", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526648553671229440"}, "type": "Feature"}, {"bbox": [-70.67050154862068, 43.42988128147077, -70.65273487925603, 43.44027917594756], "geometry": {"coordinates": [[[-70.65273487925603, 43.43818889653937], [-70.66466284944276, 43.44027917594756], [-70.67050154862068, 43.431970313879056], [-70.65857661577985, 43.42988128147077], [-70.65273487925603, 43.43818889653937]]], "type": "Polygon"}, "id": "45", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526680680026603520"}, "type": "Feature"}, {"bbox": [-68.30929329941597, 46.51121881297046, -68.28926612033996, 46.522526449760676], "geometry": {"coordinates": [[[-68.28926612033996, 46.51992522189144], [-68.30235498123146, 46.522526449760676], [-68.30929329941597, 46.5138184997549], [-68.29620779094951, 46.51121881297046], [-68.28926612033996, 46.51992522189144]]], "type": "Polygon"}, "id": "51", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529113796179656704"}, "type": "Feature"}, {"bbox": [-68.05335667043079, 46.621655233037465, -68.03318717894751, 46.63300496181964], "geometry": {"coordinates": [[[-68.03318717894751, 46.630359988826484], [-68.0463277657, 46.63300496181964], [-68.05335667043079, 46.62429864209037], [-68.04021943282052, 46.621655233037465], [-68.03318717894751, 46.630359988826484]]], "type": "Polygon"}, "id": "52", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529480723825688576"}, "type": "Feature"}, {"bbox": [-68.04816892865036, 46.59026408048062, -68.0280133008931, 46.60160657600666], "geometry": {"coordinates": [[[-68.0280133008931, 46.598962849913924], [-68.04114345786715, 46.60160657600666], [-68.04816892865036, 46.59290624366221], [-68.03504211531437, 46.59026408048062], [-68.0280133008931, 46.598962849913924]]], "type": "Polygon"}, "id": "55", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529481514099671040"}, "type": "Feature"}, {"bbox": [-70.27980017175186, 44.07564571083815, -70.26160846048873, 44.08623161535899], "geometry": {"coordinates": [[[-70.26160846048873, 44.08405184309812], [-70.27376879466206, 44.08623161535899], [-70.27980017175186, 44.077824182982816], [-70.26764294829859, 44.07564571083815], [-70.26160846048873, 44.08405184309812]]], "type": "Polygon"}, "id": "68", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526595777113096192"}, "type": "Feature"}, {"bbox": [-70.29195716915723, 44.077824182982816, -70.27376879466206, 44.08840989699857], "geometry": {"coordinates": [[[-70.27376879466206, 44.08623161535899], [-70.28592890381623, 44.08840989699857], [-70.29195716915723, 44.08000116524621], [-70.27980017175186, 44.077824182982816], [-70.27376879466206, 44.08623161535899]]], "type": "Polygon"}, "id": "69", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526596155070218240"}, "type": "Feature"}, {"bbox": [-70.30775326161925, 43.618304790161034, -70.28977515198608, 43.62877277216548], "geometry": {"coordinates": [[[-70.28977515198608, 43.62662381629423], [-70.30178975229171, 43.62877277216548], [-70.30775326161925, 43.62045246680105], [-70.29574170623906, 43.618304790161034], [-70.28977515198608, 43.62662381629423]]], "type": "Polygon"}, "id": "71", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526654291747536896"}, "type": "Feature"}, {"bbox": [-68.01591681289158, 46.857563769686124, -67.99561657259103, 46.86897227608834], "geometry": {"coordinates": [[[-67.99561657259103, 46.86630694202021], [-68.00884000725256, 46.86897227608834], [-68.01591681289158, 46.86022752672355], [-68.00269676257766, 46.857563769686124], [-67.99561657259103, 46.86630694202021]]], "type": "Polygon"}, "id": "72", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529497147780628480"}, "type": "Feature"}, {"bbox": [-70.75252985211851, 43.08031133092864, -70.74063584905018, 43.091742865087575], "geometry": {"coordinates": [[[-70.7525298521185, 43.091742865087575], [-70.75252985211851, 43.082383857963606], [-70.74063584905018, 43.08031133092864], [-70.74063584905018, 43.089670292749176], [-70.7525298521185, 43.091742865087575]]], "type": "Polygon"}, "id": "74", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9935713854912724992"}, "type": "Feature"}, {"bbox": [-68.85049961219373, 44.80697339778193, -68.83147618909132, 44.817829534705076], "geometry": {"coordinates": [[[-68.83147618909132, 44.81541160119154], [-68.84396844224861, 44.817829534705076], [-68.85049961219373, 44.80938990250324], [-68.83801048732167, 44.80697339778193], [-68.83147618909132, 44.81541160119154]]], "type": "Polygon"}, "id": "79", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525435964144484352"}, "type": "Feature"}, {"bbox": [-68.32620304258184, 44.26969604707978, -68.30725273449885, 44.280447000066545], "geometry": {"coordinates": [[[-68.30725273449885, 44.27799166910905], [-68.3196050160918, 44.280447000066545], [-68.32620304258184, 44.27214993789456], [-68.31385377323872, 44.26969604707978], [-68.30725273449885, 44.27799166910905]]], "type": "Polygon"}, "id": "82", "properties": {"__folium_color": "darkred", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525561755146649600"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_e657c36c3f695a33f615ed6e70a04af8.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["fac_s2"];
let aliases = ["fac_s2"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
function geo_json_6f3c918beeea03c0f6a1f313c42fbf6e_styler(feature) {
switch(feature.id) {
default:
return {"color": "black", "fillColor": "black", "fillOpacity": 0.5, "weight": 5};
}
}
function geo_json_6f3c918beeea03c0f6a1f313c42fbf6e_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_6f3c918beeea03c0f6a1f313c42fbf6e_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_6f3c918beeea03c0f6a1f313c42fbf6e_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_6f3c918beeea03c0f6a1f313c42fbf6e_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_6f3c918beeea03c0f6a1f313c42fbf6e.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_6f3c918beeea03c0f6a1f313c42fbf6e_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_6f3c918beeea03c0f6a1f313c42fbf6e = L.geoJson(null, {
onEachFeature: geo_json_6f3c918beeea03c0f6a1f313c42fbf6e_onEachFeature,
style: geo_json_6f3c918beeea03c0f6a1f313c42fbf6e_styler,
pointToLayer: geo_json_6f3c918beeea03c0f6a1f313c42fbf6e_pointToLayer,
});
function geo_json_6f3c918beeea03c0f6a1f313c42fbf6e_add (data) {
geo_json_6f3c918beeea03c0f6a1f313c42fbf6e
.addData(data);
}
geo_json_6f3c918beeea03c0f6a1f313c42fbf6e_add({"bbox": [-70.76442355005291, 43.07302313753865, -68.00269676257766, 46.86288953994832], "features": [{"bbox": [-68.60804239162118, 45.641366406390816, -68.58854147365815, 45.65244429433821], "geometry": {"coordinates": [[[-68.58854147365815, 45.64994014876079], [-68.6013211006405, 45.65244429433821], [-68.60804239162118, 45.6438690699411], [-68.5952660025144, 45.641366406390816], [-68.58854147365815, 45.64994014876079]]], "type": "Polygon"}, "id": "0", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5522903582707286016"}, "type": "Feature"}, {"bbox": [-69.7937825937837, 43.93048942632063, -69.77548528429747, 43.941067861015], "geometry": {"coordinates": [[[-69.77548528429747, 43.93883198988064], [-69.78763538108406, 43.941067861015], [-69.7937825937837, 43.932723970427716], [-69.78163555743272, 43.93048942632063], [-69.77548528429747, 43.93883198988064]]], "type": "Polygon"}, "id": "1", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525230149311660032"}, "type": "Feature"}, {"bbox": [-69.83635792228581, 43.928843228514964, -69.81807617635748, 43.93941869582057], "geometry": {"coordinates": [[[-69.81807617635748, 43.93718860521329], [-69.83022271935637, 43.93941869582057], [-69.83635792228581, 43.9310719950397], [-69.82421444206223, 43.928843228514964], [-69.81807617635748, 43.93718860521329]]], "type": "Polygon"}, "id": "2", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525219154195382272"}, "type": "Feature"}, {"bbox": [-69.84850123377448, 43.9310719950397, -69.83022271935637, 43.94164730185774], "geometry": {"coordinates": [[[-69.83022271935637, 43.93941869582057], [-69.84236909468056, 43.94164730185774], [-69.84850123377448, 43.9332992777203], [-69.83635792228581, 43.9310719950397], [-69.83022271935637, 43.93941869582057]]], "type": "Polygon"}, "id": "3", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525219600871981056"}, "type": "Feature"}, {"bbox": [-69.42985543913264, 44.588777534425375, -69.41113236193212, 44.59954426083371], "geometry": {"coordinates": [[[-69.41113236193212, 44.597219129494775], [-69.4235167698969, 44.59954426083371], [-69.42985543913264, 44.59110128593679], [-69.41747416616217, 44.588777534425375], [-69.41113236193212, 44.597219129494775]]], "type": "Polygon"}, "id": "4", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525387894870507520"}, "type": "Feature"}, {"bbox": [-69.4235167698969, 44.597219129494775, -69.40478760822702, 44.607988357769806], "geometry": {"coordinates": [[[-69.40478760822702, 44.605661845808314], [-69.41717515203729, 44.607988357769806], [-69.4235167698969, 44.59954426083371], [-69.41113236193212, 44.597219129494775], [-69.40478760822702, 44.605661845808314]]], "type": "Polygon"}, "id": "5", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525387929230245888"}, "type": "Feature"}, {"bbox": [-69.41747416616217, 44.586452242169244, -69.39874786358303, 44.597219129494775], "geometry": {"coordinates": [[[-69.39874786358303, 44.59489245666479], [-69.41113236193212, 44.597219129494775], [-69.41747416616217, 44.588777534425375], [-69.40509280164552, 44.586452242169244], [-69.39874786358303, 44.59489245666479]]], "type": "Polygon"}, "id": "6", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525387997949722624"}, "type": "Feature"}, {"bbox": [-69.40509280164552, 44.58412540922514, -69.3863632765407, 44.59489245666479], "geometry": {"coordinates": [[[-69.3863632765407, 44.59256424240087], [-69.39874786358303, 44.59489245666479], [-69.40509280164552, 44.586452242169244], [-69.3927113472728, 44.58412540922514], [-69.3863632765407, 44.59256424240087]]], "type": "Polygon"}, "id": "8", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525388032309460992"}, "type": "Feature"}, {"bbox": [-69.39874786358303, 44.59256424240087, -69.3800122546356, 44.60333379160921], "geometry": {"coordinates": [[[-69.3800122546356, 44.60100419522996], [-69.39239997519576, 44.60333379160921], [-69.39874786358303, 44.59489245666479], [-69.3863632765407, 44.59256424240087], [-69.3800122546356, 44.60100419522996]]], "type": "Polygon"}, "id": "9", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525388135388676096"}, "type": "Feature"}, {"bbox": [-69.39239997519576, 44.60100419522996, -69.37365827980284, 44.61177624633002], "geometry": {"coordinates": [[[-69.37365827980284, 44.60944526703956], [-69.386049134729, 44.61177624633002], [-69.39239997519576, 44.60333379160921], [-69.3800122546356, 44.60100419522996], [-69.37365827980284, 44.60944526703956]]], "type": "Polygon"}, "id": "10", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525388169748414464"}, "type": "Feature"}, {"bbox": [-69.40478760822702, 44.60333379160921, -69.386049134729, 44.61410568269389], "geometry": {"coordinates": [[[-69.386049134729, 44.61177624633002], [-69.39843990329206, 44.61410568269389], [-69.40478760822702, 44.605661845808314], [-69.39239997519576, 44.60333379160921], [-69.386049134729, 44.61177624633002]]], "type": "Polygon"}, "id": "11", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525388341547106304"}, "type": "Feature"}, {"bbox": [-68.90209340307443, 44.758774727973346, -68.88311003125447, 44.769615706761535], "geometry": {"coordinates": [[[-68.88311003125447, 44.76720789414851], [-68.89558351759761, 44.769615706761535], [-68.90209340307443, 44.76118111741446], [-68.88962304142925, 44.758774727973346], [-68.88311003125447, 44.76720789414851]]], "type": "Polygon"}, "id": "12", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525435173870501888"}, "type": "Feature"}, {"bbox": [-68.66577801316883, 44.87789147496856, -68.64665866340631, 44.88877634047088], "geometry": {"coordinates": [[[-68.64665866340631, 44.88632848363259], [-68.65918519439228, 44.88877634047088], [-68.66577801316883, 44.880337887338946], [-68.65325460791792, 44.87789147496856], [-68.64665866340631, 44.88632848363259]]], "type": "Polygon"}, "id": "13", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525830345221472256"}, "type": "Feature"}, {"bbox": [-68.67895447858177, 44.86102063784293, -68.65984749366352, 44.871900494852795], "geometry": {"coordinates": [[[-68.65984749366352, 44.86945552613042], [-68.67236777396592, 44.871900494852795], [-68.67895447858177, 44.86346416373677], [-68.66643732244108, 44.86102063784293], [-68.65984749366352, 44.86945552613042]]], "type": "Polygon"}, "id": "14", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525833025281064960"}, "type": "Feature"}, {"bbox": [-68.69147165854714, 44.86346416373677, -68.67236777396592, 44.8743438929146], "geometry": {"coordinates": [[[-68.67236777396592, 44.871900494852795], [-68.68488807935688, 44.8743438929146], [-68.69147165854714, 44.86590611971234], [-68.67895447858177, 44.86346416373677], [-68.67236777396592, 44.871900494852795]]], "type": "Polygon"}, "id": "15", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525833059640803328"}, "type": "Feature"}, {"bbox": [-68.74687158768225, 44.90343046302656, -68.72776780690073, 44.91431692205152], "geometry": {"coordinates": [[[-68.72776780690073, 44.91187863219221], [-68.74029763023648, 44.91431692205152], [-68.74687158768225, 44.905867312806585], [-68.73434489972568, 44.90343046302656], [-68.72776780690073, 44.91187863219221]]], "type": "Polygon"}, "id": "16", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525835774060134400"}, "type": "Feature"}, {"bbox": [-68.75344249089632, 44.89498335869832, -68.73434489972568, 44.905867312806585], "geometry": {"coordinates": [[[-68.73434489972568, 44.90343046302656], [-68.74687158768225, 44.905867312806585], [-68.75344249089632, 44.89741876921781], [-68.7409189375219, 44.89498335869832], [-68.73434489972568, 44.90343046302656]]], "type": "Polygon"}, "id": "17", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525835808419872768"}, "type": "Feature"}, {"bbox": [-68.76001034167967, 44.88653731993058, -68.7409189375219, 44.89741876921781], "geometry": {"coordinates": [[[-68.7409189375219, 44.89498335869832], [-68.75344249089632, 44.89741876921781], [-68.76001034167967, 44.88897129200787], [-68.74748992209012, 44.88653731993058], [-68.7409189375219, 44.89498335869832]]], "type": "Polygon"}, "id": "18", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525835911499087872"}, "type": "Feature"}, {"bbox": [-68.74748992209012, 44.88410177661869, -68.7283954001135, 44.89498335869832], "geometry": {"coordinates": [[[-68.7283954001135, 44.89254637619939], [-68.7409189375219, 44.89498335869832], [-68.74748992209012, 44.88653731993058], [-68.73496951720735, 44.88410177661869], [-68.7283954001135, 44.89254637619939]]], "type": "Polygon"}, "id": "20", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525835945858826240"}, "type": "Feature"}, {"bbox": [-68.73434489972568, 44.900992040521984, -68.71523800205414, 44.91187863219221], "geometry": {"coordinates": [[[-68.71523800205414, 44.90943876886307], [-68.72776780690073, 44.91187863219221], [-68.73434489972568, 44.90343046302656], [-68.72181822899594, 44.900992040521984], [-68.71523800205414, 44.90943876886307]]], "type": "Polygon"}, "id": "22", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525836426895163392"}, "type": "Feature"}, {"bbox": [-68.71270575085316, 44.98440033308598, -68.6935523808076, 44.995309074091324], "geometry": {"coordinates": [[[-68.6935523808076, 44.992860947282615], [-68.70611051299286, 44.995309074091324], [-68.71270575085316, 44.986847013925946], [-68.7001507637593, 44.98440033308598], [-68.6935523808076, 44.992860947282615]]], "type": "Polygon"}, "id": "23", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525838007443128320"}, "type": "Feature"}, {"bbox": [-68.7001507637593, 44.98195207261158, -68.68099427505457, 44.992860947282615], "geometry": {"coordinates": [[[-68.68099427505457, 44.99041124009145], [-68.6935523808076, 44.992860947282615], [-68.7001507637593, 44.98440033308598], [-68.68759580182358, 44.98195207261158], [-68.68099427505457, 44.99041124009145]]], "type": "Polygon"}, "id": "24", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525837973083389952"}, "type": "Feature"}, {"bbox": [-68.71866866986663, 44.995309074091324, -68.69951220442057, 45.00622018665196], "geometry": {"coordinates": [[[-68.69951220442057, 45.00377219428022], [-68.71207350845816, 45.00622018665196], [-68.71866866986663, 44.997755620420975], [-68.70611051299286, 44.995309074091324], [-68.69951220442057, 45.00377219428022]]], "type": "Polygon"}, "id": "26", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525838144882081792"}, "type": "Feature"}, {"bbox": [-68.69951220442057, 45.00132262068079, -68.6803463985606, 45.012236373760665], "geometry": {"coordinates": [[[-68.6803463985606, 45.00978535254816], [-68.6929108233219, 45.012236373760665], [-68.69951220442057, 45.00377219428022], [-68.68695092634609, 45.00132262068079], [-68.6803463985606, 45.00978535254816]]], "type": "Polygon"}, "id": "28", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525838213601558528"}, "type": "Feature"}, {"bbox": [-68.71207350845816, 45.00377219428022, -68.6929108233219, 45.014685812996625], "geometry": {"coordinates": [[[-68.6929108233219, 45.012236373760665], [-68.70547527532244, 45.014685812996625], [-68.71207350845816, 45.00622018665196], [-68.69951220442057, 45.00377219428022], [-68.6929108233219, 45.012236373760665]]], "type": "Polygon"}, "id": "29", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525838247961296896"}, "type": "Feature"}, {"bbox": [-68.68695092634609, 44.99887146595064, -68.66778200278436, 45.00978535254816], "geometry": {"coordinates": [[[-68.66778200278436, 45.00733274945651], [-68.6803463985606, 45.00978535254816], [-68.68695092634609, 45.00132262068079], [-68.67438967597947, 44.99887146595064], [-68.66778200278436, 45.00733274945651]]], "type": "Polygon"}, "id": "31", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525838591558680576"}, "type": "Feature"}, {"bbox": [-68.6935523808076, 44.99041124009145, -68.67438967597947, 45.00132262068079], "geometry": {"coordinates": [[[-68.67438967597947, 44.99887146595064], [-68.68695092634609, 45.00132262068079], [-68.6935523808076, 44.992860947282615], [-68.68099427505457, 44.99041124009145], [-68.67438967597947, 44.99887146595064]]], "type": "Polygon"}, "id": "32", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525838625918418944"}, "type": "Feature"}, {"bbox": [-69.69877825190999, 44.322216402495194, -69.68027072259414, 44.33289981581722], "geometry": {"coordinates": [[[-69.68027072259414, 44.3306273868433], [-69.69255146119859, 44.33289981581722], [-69.69877825190999, 44.32448748136629], [-69.68650062570201, 44.322216402495194], [-69.68027072259414, 44.3306273868433]]], "type": "Polygon"}, "id": "33", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526480259672702976"}, "type": "Feature"}, {"bbox": [-69.71105573909362, 44.32448748136629, -69.69255146119859, 44.33517072754023], "geometry": {"coordinates": [[[-69.69255146119859, 44.33289981581722], [-69.70483206188756, 44.33517072754023], [-69.71105573909362, 44.326757043726815], [-69.69877825190999, 44.32448748136629], [-69.69255146119859, 44.33289981581722]]], "type": "Polygon"}, "id": "34", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526480294032441344"}, "type": "Feature"}, {"bbox": [-69.70500215727307, 44.31380656562819, -69.68650062570201, 44.32448748136629], "geometry": {"coordinates": [[[-69.68650062570201, 44.322216402495194], [-69.69877825190999, 44.32448748136629], [-69.70500215727307, 44.316076295177666], [-69.69272764259942, 44.31380656562819], [-69.68650062570201, 44.322216402495194]]], "type": "Polygon"}, "id": "35", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526480362751918080"}, "type": "Feature"}, {"bbox": [-69.71122317900281, 44.30539787688183, -69.69272764259942, 44.316076295177666], "geometry": {"coordinates": [[[-69.69272764259942, 44.31380656562819], [-69.70500215727307, 44.316076295177666], [-69.71122317900281, 44.307666257890496], [-69.69895177500125, 44.30539787688183], [-69.69272764259942, 44.31380656562819]]], "type": "Polygon"}, "id": "36", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526480397111656448"}, "type": "Feature"}, {"bbox": [-69.72349444176649, 44.307666257890496, -69.70500215727307, 44.31834450895667], "geometry": {"coordinates": [[[-69.70500215727307, 44.316076295177666], [-69.71727653181492, 44.31834450895667], [-69.72349444176649, 44.30993312386857], [-69.71122317900281, 44.307666257890496], [-69.70500215727307, 44.316076295177666]]], "type": "Polygon"}, "id": "37", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526480500190871552"}, "type": "Feature"}, {"bbox": [-69.73576556163773, 44.30993312386857, -69.71727653181492, 44.32061120692457], "geometry": {"coordinates": [[[-69.71727653181492, 44.31834450895667], [-69.72955076456938, 44.32061120692457], [-69.73576556163773, 44.31219847477571], [-69.72349444176649, 44.30993312386857], [-69.71727653181492, 44.31834450895667]]], "type": "Polygon"}, "id": "38", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526480534550609920"}, "type": "Feature"}, {"bbox": [-69.72955076456938, 44.31834450895667, -69.71105573909362, 44.32902508953582], "geometry": {"coordinates": [[[-69.71105573909362, 44.326757043726815], [-69.72333308559634, 44.32902508953582], [-69.72955076456938, 44.32061120692457], [-69.71727653181492, 44.31834450895667], [-69.71105573909362, 44.326757043726815]]], "type": "Polygon"}, "id": "39", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526480706349301760"}, "type": "Feature"}, {"bbox": [-70.25601486008924, 44.18536534863363, -70.23776541164398, 44.19598041420685], "geometry": {"coordinates": [[[-70.23776541164398, 44.193790979305966], [-70.24996228484976, 44.19598041420685], [-70.25601486008924, 44.18755347724305], [-70.24382111261772, 44.18536534863363], [-70.23776541164398, 44.193790979305966]]], "type": "Polygon"}, "id": "40", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526549803783159808"}, "type": "Feature"}, {"bbox": [-70.23776541164398, 44.19160004484031, -70.21950667825644, 44.20221779792168], "geometry": {"coordinates": [[[-70.21950667825644, 44.200025555656374], [-70.23170689453306, 44.20221779792168], [-70.23776541164398, 44.193790979305966], [-70.22556832096735, 44.19160004484031], [-70.21950667825644, 44.200025555656374]]], "type": "Polygon"}, "id": "41", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526549872502636544"}, "type": "Feature"}, {"bbox": [-70.24382111261772, 44.183175721203526, -70.22556832096735, 44.193790979305966], "geometry": {"coordinates": [[[-70.22556832096735, 44.19160004484031], [-70.23776541164398, 44.193790979305966], [-70.24382111261772, 44.18536534863363], [-70.2316271466338, 44.183175721203526], [-70.22556832096735, 44.19160004484031]]], "type": "Polygon"}, "id": "42", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526549906862374912"}, "type": "Feature"}, {"bbox": [-70.36780740212735, 43.62902863464149, -70.34984574435265, 43.639495732579036], "geometry": {"coordinates": [[[-70.34984574435265, 43.6373540497203], [-70.36185913222408, 43.639495732579036], [-70.36780740212735, 43.63116904187573], [-70.3557970641104, 43.62902863464149], [-70.34984574435265, 43.6373540497203]]], "type": "Polygon"}, "id": "43", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526648622390706176"}, "type": "Feature"}, {"bbox": [-70.37981749196257, 43.63116904187573, -70.36185913222408, 43.64163596080895], "geometry": {"coordinates": [[[-70.36185913222408, 43.639495732579036], [-70.37387227289662, 43.64163596080895], [-70.37981749196257, 43.633307995203324], [-70.36780740212735, 43.63116904187573], [-70.36185913222408, 43.639495732579036]]], "type": "Polygon"}, "id": "44", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526648725469921280"}, "type": "Feature"}, {"bbox": [-70.676337570345, 43.42157489844917, -70.65857661577985, 43.431970313879056], "geometry": {"coordinates": [[[-70.65857661577985, 43.42988128147077], [-70.67050154862068, 43.431970313879056], [-70.676337570345, 43.423662684590916], [-70.66441567395263, 43.42157489844917], [-70.65857661577985, 43.42988128147077]]], "type": "Polygon"}, "id": "45", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526680576947388416"}, "type": "Feature"}, {"bbox": [-70.68825917304065, 43.423662684590916, -70.67050154862068, 43.43405791182513], "geometry": {"coordinates": [[[-70.67050154862068, 43.431970313879056], [-70.68242618870103, 43.43405791182513], [-70.68825917304065, 43.42574903698856], [-70.676337570345, 43.423662684590916], [-70.67050154862068, 43.431970313879056]]], "type": "Polygon"}, "id": "47", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526680611307126784"}, "type": "Feature"}, {"bbox": [-68.28926612033996, 46.51732228180147, -68.26922904920248, 46.52863260646239], "geometry": {"coordinates": [[[-68.26922904920248, 46.526028123610665], [-68.28232111135432, 46.52863260646239], [-68.28926612033996, 46.51992522189144], [-68.27617740996807, 46.51732228180147], [-68.26922904920248, 46.526028123610665]]], "type": "Polygon"}, "id": "51", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529112146912215040"}, "type": "Feature"}, {"bbox": [-68.03318717894751, 46.62771329220912, -68.01300780572183, 46.63906569662489], "geometry": {"coordinates": [[[-68.01300780572183, 46.63641743438381], [-68.02615154489118, 46.63906569662489], [-68.03318717894751, 46.630359988826484], [-68.02004678820761, 46.62771329220912], [-68.01300780572183, 46.63641743438381]]], "type": "Polygon"}, "id": "52", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529480655106211840"}, "type": "Feature"}, {"bbox": [-68.04021943282052, 46.619010101164356, -68.02004678820761, 46.630359988826484], "geometry": {"coordinates": [[[-68.02004678820761, 46.62771329220912], [-68.03318717894751, 46.630359988826484], [-68.04021943282052, 46.621655233037465], [-68.02708238969389, 46.619010101164356], [-68.02004678820761, 46.62771329220912]]], "type": "Polygon"}, "id": "53", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529480689465950208"}, "type": "Feature"}, {"bbox": [-68.0472483085607, 46.61030786213529, -68.02708238969389, 46.621655233037465], "geometry": {"coordinates": [[[-68.02708238969389, 46.619010101164356], [-68.04021943282052, 46.621655233037465], [-68.0472483085607, 46.612951430143184], [-68.0341146122308, 46.61030786213529], [-68.02708238969389, 46.619010101164356]]], "type": "Polygon"}, "id": "54", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529480792545165312"}, "type": "Feature"}, {"bbox": [-68.04206755611283, 46.57892394436311, -68.02191549577306, 46.59026408048062], "geometry": {"coordinates": [[[-68.02191549577306, 46.587620197172335], [-68.03504211531437, 46.59026408048062], [-68.04206755611283, 46.58156626483615], [-68.02894427786998, 46.57892394436311], [-68.02191549577306, 46.587620197172335]]], "type": "Polygon"}, "id": "55", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529481445380194304"}, "type": "Feature"}, {"bbox": [-68.05519102662652, 46.58156626483615, -68.03504211531437, 46.59290624366221], "geometry": {"coordinates": [[[-68.03504211531437, 46.59026408048062], [-68.04816892865036, 46.59290624366221], [-68.05519102662652, 46.58420686598474], [-68.04206755611283, 46.58156626483615], [-68.03504211531437, 46.59026408048062]]], "type": "Polygon"}, "id": "57", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529481479739932672"}, "type": "Feature"}, {"bbox": [-69.41113236193212, 44.59489245666479, -69.39239997519576, 44.605661845808314], "geometry": {"coordinates": [[[-69.39239997519576, 44.60333379160921], [-69.40478760822702, 44.605661845808314], [-69.41113236193212, 44.597219129494775], [-69.39874786358303, 44.59489245666479], [-69.39239997519576, 44.60333379160921]]], "type": "Polygon"}, "id": "59", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525387963589984256"}, "type": "Feature"}, {"bbox": [-68.68488807935688, 44.871900494852795, -68.66577801316883, 44.88278272830626], "geometry": {"coordinates": [[[-68.66577801316883, 44.880337887338946], [-68.67830144477372, 44.88278272830626], [-68.68488807935688, 44.8743438929146], [-68.67236777396592, 44.871900494852795], [-68.66577801316883, 44.880337887338946]]], "type": "Polygon"}, "id": "61", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525830276501995520"}, "type": "Feature"}, {"bbox": [-68.7409189375219, 44.89254637619939, -68.72181822899594, 44.90343046302656], "geometry": {"coordinates": [[[-68.72181822899594, 44.900992040521984], [-68.73434489972568, 44.90343046302656], [-68.7409189375219, 44.89498335869832], [-68.7283954001135, 44.89254637619939], [-68.72181822899594, 44.900992040521984]]], "type": "Polygon"}, "id": "62", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525835980218564608"}, "type": "Feature"}, {"bbox": [-68.70611051299286, 44.992860947282615, -68.68695092634609, 45.00377219428022], "geometry": {"coordinates": [[[-68.68695092634609, 45.00132262068079], [-68.69951220442057, 45.00377219428022], [-68.70611051299286, 44.995309074091324], [-68.6935523808076, 44.992860947282615], [-68.68695092634609, 45.00132262068079]]], "type": "Polygon"}, "id": "63", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525838179241820160"}, "type": "Feature"}, {"bbox": [-69.71727653181492, 44.316076295177666, -69.69877825190999, 44.326757043726815], "geometry": {"coordinates": [[[-69.69877825190999, 44.32448748136629], [-69.71105573909362, 44.326757043726815], [-69.71727653181492, 44.31834450895667], [-69.70500215727307, 44.316076295177666], [-69.69877825190999, 44.32448748136629]]], "type": "Polygon"}, "id": "65", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526480328392179712"}, "type": "Feature"}, {"bbox": [-70.24996228484976, 44.193790979305966, -70.23170689453306, 44.20440853987788], "geometry": {"coordinates": [[[-70.23170689453306, 44.20221779792168], [-70.24390689438174, 44.20440853987788], [-70.24996228484976, 44.19598041420685], [-70.23776541164398, 44.193790979305966], [-70.23170689453306, 44.20221779792168]]], "type": "Polygon"}, "id": "67", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526549838142898176"}, "type": "Feature"}, {"bbox": [-70.28592890381623, 44.08623161535899, -70.26773461891153, 44.09681982239728], "geometry": {"coordinates": [[[-70.26773461891153, 44.09464024062133], [-70.27989784071941, 44.09681982239728], [-70.28592890381623, 44.08840989699857], [-70.27376879466206, 44.08623161535899], [-70.26773461891153, 44.09464024062133]]], "type": "Polygon"}, "id": "68", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526596189429956608"}, "type": "Feature"}, {"bbox": [-70.29808878633041, 44.08840989699857, -70.27989784071941, 44.09899791280011], "geometry": {"coordinates": [[[-70.27989784071941, 44.09681982239728], [-70.29206083691635, 44.09899791280011], [-70.29808878633041, 44.090586688005615], [-70.28592890381623, 44.08840989699857], [-70.27989784071941, 44.09681982239728]]], "type": "Polygon"}, "id": "70", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526596223789694976"}, "type": "Feature"}, {"bbox": [-70.28977515198608, 43.624473405851, -70.27178797646832, 43.63494404645988], "geometry": {"coordinates": [[[-70.27178797646832, 43.632792355316575], [-70.28380585936046, 43.63494404645988], [-70.28977515198608, 43.62662381629423], [-70.27776031390565, 43.624473405851], [-70.27178797646832, 43.632792355316575]]], "type": "Polygon"}, "id": "71", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526654223028060160"}, "type": "Feature"}, {"bbox": [-68.02299019981676, 46.84882153759185, -68.00269676257766, 46.86022752672355], "geometry": {"coordinates": [[[-68.00269676257766, 46.857563769686124], [-68.01591681289158, 46.86022752672355], [-68.02299019981676, 46.85148371848446], [-68.00977353302221, 46.84882153759185], [-68.00269676257766, 46.857563769686124]]], "type": "Polygon"}, "id": "72", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529497113420890112"}, "type": "Feature"}, {"bbox": [-68.03620707500446, 46.85148371848446, -68.01591681289158, 46.86288953994832], "geometry": {"coordinates": [[[-68.01591681289158, 46.86022752672355], [-68.02913707315815, 46.86288953994832], [-68.03620707500446, 46.854144156378396], [-68.02299019981676, 46.85148371848446], [-68.01591681289158, 46.86022752672355]]], "type": "Polygon"}, "id": "73", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529497834975395840"}, "type": "Feature"}, {"bbox": [-70.76442355005291, 43.07302313753865, -70.75252985211851, 43.084454959982416], "geometry": {"coordinates": [[[-70.76442355005291, 43.084454959982416], [-70.76442355005291, 43.07509419410473], [-70.75252985211851, 43.07302313753865], [-70.75252985211851, 43.082383857963606], [-70.76442355005291, 43.084454959982416]]], "type": "Polygon"}, "id": "74", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9935713786193248256"}, "type": "Feature"}, {"bbox": [-70.76442355005291, 43.091742865087575, -70.7525298521185, 43.10317135090722], "geometry": {"coordinates": [[[-70.76442355005291, 43.10317135090722], [-70.76442355005291, 43.09381401232974], [-70.7525298521185, 43.091742865087575], [-70.75252985211851, 43.10110015867099], [-70.76442355005291, 43.10317135090722]]], "type": "Polygon"}, "id": "77", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9935713717473771520"}, "type": "Feature"}, {"bbox": [-70.76442355005291, 43.082383857963606, -70.7525298521185, 43.09381401232974], "geometry": {"coordinates": [[[-70.76442355005291, 43.09381401232974], [-70.76442355005291, 43.084454959982416], [-70.75252985211851, 43.082383857963606], [-70.7525298521185, 43.091742865087575], [-70.76442355005291, 43.09381401232974]]], "type": "Polygon"}, "id": "78", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9935713751833509888"}, "type": "Feature"}, {"bbox": [-68.86951374423097, 44.80095134619784, -68.85049961219373, 44.811804843160544], "geometry": {"coordinates": [[[-68.85049961219373, 44.80938990250324], [-68.8629887341009, 44.811804843160544], [-68.86951374423097, 44.80336485962043], [-68.85702775104582, 44.80095134619784], [-68.85049961219373, 44.80938990250324]]], "type": "Polygon"}, "id": "79", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525435826705530880"}, "type": "Feature"}, {"bbox": [-68.8629887341009, 44.80938990250324, -68.84396844224861, 44.82024590341074], "geometry": {"coordinates": [[[-68.84396844224861, 44.817829534705076], [-68.856460693682, 44.82024590341074], [-68.8629887341009, 44.811804843160544], [-68.85049961219373, 44.80938990250324], [-68.84396844224861, 44.817829534705076]]], "type": "Polygon"}, "id": "80", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525435861065269248"}, "type": "Feature"}, {"bbox": [-68.856460693682, 44.817829534705076, -68.83743423942185, 44.82868803965945], "geometry": {"coordinates": [[[-68.83743423942185, 44.82627024209136], [-68.84992962118544, 44.82868803965945], [-68.856460693682, 44.82024590341074], [-68.84396844224861, 44.817829534705076], [-68.83743423942185, 44.82627024209136]]], "type": "Polygon"}, "id": "81", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525435895425007616"}, "type": "Feature"}, {"bbox": [-68.32045180902271, 44.258947502797746, -68.30150455850574, 44.26969604707978], "geometry": {"coordinates": [[[-68.30150455850574, 44.26724063167675], [-68.31385377323872, 44.26969604707978], [-68.32045180902271, 44.26140147816084], [-68.30810560458508, 44.258947502797746], [-68.30150455850574, 44.26724063167675]]], "type": "Polygon"}, "id": "82", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525561411549265920"}, "type": "Feature"}, {"bbox": [-68.33279806683156, 44.26140147816084, -68.31385377323872, 44.27214993789456], "geometry": {"coordinates": [[[-68.31385377323872, 44.26969604707978], [-68.32620304258184, 44.27214993789456], [-68.33279806683156, 44.26385392964408], [-68.32045180902271, 44.26140147816084], [-68.31385377323872, 44.26969604707978]]], "type": "Polygon"}, "id": "83", "properties": {"__folium_color": "black", "nbr_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525561789506387968"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_6f3c918beeea03c0f6a1f313c42fbf6e.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["nbr_s2"];
let aliases = ["nbr_s2"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
function geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6_styler(feature) {
switch(feature.id) {
default:
return {"color": "blue", "fillColor": "blue", "fillOpacity": 0.5, "weight": 5};
}
}
function geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6 = L.geoJson(null, {
onEachFeature: geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6_onEachFeature,
style: geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6_styler,
pointToLayer: geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6_pointToLayer,
});
function geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6_add (data) {
geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6
.addData(data);
}
geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6_add({"bbox": [-70.77878480057717, 43.07172113314408, -68.01378767153568, 46.85853252726622], "features": [{"bbox": [-68.70407767046419, 45.61054079587001, -68.60018700395881, 45.69212959574338], "geometry": {"coordinates": [[[-68.6323044705756, 45.678572195764445, 0.0], [-68.63204360390938, 45.678709529097546, 0.0], [-68.63158700391006, 45.67868672909759, 0.0], [-68.63106507057756, 45.67870959576419, 0.0], [-68.63096727057768, 45.678846795764, 0.0], [-68.63103260391091, 45.67918959576349, 0.0], [-68.63158700391006, 45.68001259576221, 0.0], [-68.63230460390895, 45.680378329094935, 0.0], [-68.63289180390802, 45.680995595760635, 0.0], [-68.63289180390802, 45.68120132909365, 0.0], [-68.63266347057504, 45.681338529093466, 0.0], [-68.63175040390979, 45.681521529093175, 0.0], [-68.63165240390998, 45.68159012909308, 0.0], [-68.6317176705765, 45.681955795759166, 0.0], [-68.6325984039085, 45.68261879575812, 0.0], [-68.63259847057515, 45.683007395757556, 0.0], [-68.63253340390861, 45.683373195756985, 0.0], [-68.6323702705755, 45.68351039575674, 0.0], [-68.63191360390954, 45.68405919575588, 0.0], [-68.63191387057623, 45.68449352908857, 0.0], [-68.63207700390933, 45.684836529088045, 0.0], [-68.63240320390878, 45.6854765957537, 0.0], [-68.63253367057524, 45.68561372908681, 0.0], [-68.63282727057481, 45.686139529086006, 0.0], [-68.63282727057481, 45.68655099575204, 0.0], [-68.63263160390846, 45.68664252908525, 0.0], [-68.6321424039092, 45.68648252908548, 0.0], [-68.63064187057819, 45.68634539575237, 0.0], [-68.63028307057874, 45.68607112908609, 0.0], [-68.63015247057893, 45.68579679575322, 0.0], [-68.62995687057929, 45.6855909957535, 0.0], [-68.62969580391302, 45.685408129087136, 0.0], [-68.62914140391388, 45.68545392908709, 0.0], [-68.6287172705812, 45.685773995753266, 0.0], [-68.62832587058182, 45.685773995753266, 0.0], [-68.62777140391597, 45.68570539575336, 0.0], [-68.62760827058293, 45.68581972908652, 0.0], [-68.62770607058275, 45.686139795752695, 0.0], [-68.62760827058293, 45.686231195752555, 0.0], [-68.62662980391775, 45.686208395752544, 0.0], [-68.62503140392022, 45.686139795752695, 0.0], [-68.62480287058725, 45.686231195752555, 0.0], [-68.62447687058778, 45.68648272908547, 0.0], [-68.62402027058846, 45.68675712908504, 0.0], [-68.62333520392286, 45.68703139575126, 0.0], [-68.6228786039236, 45.687397329084035, 0.0], [-68.6214758705924, 45.68774012908352, 0.0], [-68.62043200392736, 45.688494595749034, 0.0], [-68.62007307059463, 45.68888319574842, 0.0], [-68.62010567059457, 45.689248995747846, 0.0], [-68.6205296705939, 45.68982052908029, 0.0], [-68.62095380392657, 45.69007212907991, 0.0], [-68.62121467059285, 45.69018632907972, 0.0], [-68.62196500392503, 45.69009492907986, 0.0], [-68.62291107059019, 45.68970632908048, 0.0], [-68.62392227058865, 45.68904332908153, 0.0], [-68.62444420392114, 45.688906129081715, 0.0], [-68.62503140392022, 45.688906129081715, 0.0], [-68.62529240391984, 45.688997529081576, 0.0], [-68.62548800391954, 45.689180529081284, 0.0], [-68.62548800391954, 45.68954619574737, 0.0], [-68.62522707058662, 45.68968339574718, 0.0], [-68.62467247058748, 45.68979772908034, 0.0], [-68.62463987058754, 45.69034639574613, 0.0], [-68.6244766705878, 45.69055212907915, 0.0], [-68.62229120392448, 45.690940795745234, 0.0], [-68.62209540392479, 45.69119232907815, 0.0], [-68.62189967059174, 45.69139812907787, 0.0], [-68.62105160392645, 45.69139799574452, 0.0], [-68.6208558039267, 45.69142092907782, 0.0], [-68.62066000392701, 45.691695195744046, 0.0], [-68.62023587059434, 45.69206092907683, 0.0], [-68.61968127059521, 45.69212959574338, 0.0], [-68.619192070596, 45.69176372907725, 0.0], [-68.61915940392936, 45.691489395744384, 0.0], [-68.61968140392855, 45.691100795745, 0.0], [-68.61974667059513, 45.690917795745236, 0.0], [-68.6196814705952, 45.69055212907915, 0.0], [-68.61955107059543, 45.690414929079395, 0.0], [-68.61929007059581, 45.6903919957461, 0.0], [-68.6189964039296, 45.69071212907892, 0.0], [-68.61889860392978, 45.690917795745236, 0.0], [-68.6186700705968, 45.691100595744956, 0.0], [-68.6181808039309, 45.691374995744525, 0.0], [-68.61778927059817, 45.691420729077834, 0.0], [-68.61756100393183, 45.69114639574491, 0.0], [-68.61752840393189, 45.690917795745236, 0.0], [-68.61739800393207, 45.69068919574562, 0.0], [-68.61700647059939, 45.690346195746145, 0.0], [-68.61687620393292, 45.69002619574667, 0.0], [-68.61684367059962, 45.68929452908111, 0.0], [-68.6170720039326, 45.688974529081634, 0.0], [-68.61752880393186, 45.688654395748756, 0.0], [-68.61782240393143, 45.688585929082194, 0.0], [-68.61795287059789, 45.6886545290821, 0.0], [-68.61801800393113, 45.689134595748044, 0.0], [-68.61834420393063, 45.68940899574761, 0.0], [-68.61870300393008, 45.68938612908096, 0.0], [-68.61889867059642, 45.6892717957478, 0.0], [-68.61896400392965, 45.68902039574823, 0.0], [-68.6184746705971, 45.688654595748744, 0.0], [-68.6184422039305, 45.688471595749036, 0.0], [-68.61857267059696, 45.688220129082765, 0.0], [-68.61847480393044, 45.68810592908295, 0.0], [-68.61811587059765, 45.68787719574999, 0.0], [-68.61769187059832, 45.68748852908391, 0.0], [-68.61775727059819, 45.68707699575123, 0.0], [-68.61818127059752, 45.68666559575183, 0.0], [-68.61837720393055, 45.6862083290859, 0.0], [-68.61863827059682, 45.6849737957545, 0.0], [-68.61863827059682, 45.684493595755214, 0.0], [-68.61857307059694, 45.68431079575549, 0.0], [-68.61857307059694, 45.68380779575631, 0.0], [-68.6186710705968, 45.68353352909003, 0.0], [-68.61876887059663, 45.68341919575687, 0.0], [-68.6186710705968, 45.68284759575778, 0.0], [-68.6184754705971, 45.68268752909137, 0.0], [-68.61821460393082, 45.682641795758116, 0.0], [-68.6179536705979, 45.6825045957583, 0.0], [-68.61792100393126, 45.682207529092125, 0.0], [-68.61808407059772, 45.68197879575911, 0.0], [-68.618116803931, 45.68170452909288, 0.0], [-68.61775800393156, 45.68140732909336, 0.0], [-68.61726887059893, 45.68053859576139, 0.0], [-68.61723620393235, 45.68014992909531, 0.0], [-68.61743207059868, 45.679806995762476, 0.0], [-68.61759520393178, 45.67930399576329, 0.0], [-68.61762787059843, 45.678846795764, 0.0], [-68.61668220393318, 45.67818372909835, 0.0], [-68.61668220393318, 45.67786359576553, 0.0], [-68.61681280393299, 45.67722352909982, 0.0], [-68.61700860393267, 45.67674339576723, 0.0], [-68.61739987059877, 45.67656059576757, 0.0], [-68.61811747059767, 45.67646919576771, 0.0], [-68.61834567059731, 45.676560729100856, 0.0], [-68.61844347059713, 45.677017929100145, 0.0], [-68.61876960392999, 45.677040729100156, 0.0], [-68.6189326705964, 45.676926395767, 0.0], [-68.61899800392962, 45.67653779576756, 0.0], [-68.61890007059645, 45.676469329100996, 0.0], [-68.61890007059645, 45.67633212910124, 0.0], [-68.6187370705967, 45.67608059576827, 0.0], [-68.61860680393022, 45.675737595768794, 0.0], [-68.61854160393034, 45.67525752910291, 0.0], [-68.61860667059688, 45.6751659957697, 0.0], [-68.61978087059504, 45.67514319576975, 0.0], [-68.62000907059473, 45.67498312910334, 0.0], [-68.62020467059438, 45.674754529103666, 0.0], [-68.62017220392778, 45.67432019577103, 0.0], [-68.61997647059474, 45.67420592910452, 0.0], [-68.61968300392857, 45.674114529104656, 0.0], [-68.6189982039296, 45.67429732910438, 0.0], [-68.61821547059748, 45.67393152910495, 0.0], [-68.6179546705979, 45.67365712910538, 0.0], [-68.6179546705979, 45.67356572910552, 0.0], [-68.6177590705982, 45.67326839577265, 0.0], [-68.61766127059838, 45.67281119577336, 0.0], [-68.61727000393228, 45.67255972910709, 0.0], [-68.61723740393234, 45.67237692910737, 0.0], [-68.61678100393306, 45.67203379577455, 0.0], [-68.61678087059971, 45.67189672910814, 0.0], [-68.61684620393294, 45.67180532910828, 0.0], [-68.61740060393208, 45.67171392910842, 0.0], [-68.61766140393166, 45.671622395775216, 0.0], [-68.61766147059836, 45.67116519577593, 0.0], [-68.6174984705986, 45.67105079577607, 0.0], [-68.61749860393195, 45.67061652911008, 0.0], [-68.61766160393171, 45.67036499577716, 0.0], [-68.61795520393122, 45.67002212911103, 0.0], [-68.61880307059658, 45.66963352911165, 0.0], [-68.61935747059573, 45.66958779577834, 0.0], [-68.61955307059543, 45.66951932911178, 0.0], [-68.61968360392854, 45.66924492911221, 0.0], [-68.62014020392786, 45.668993395779296, 0.0], [-68.62020540392774, 45.66730159578191, 0.0], [-68.6203358705942, 45.666912995782525, 0.0], [-68.62062927059372, 45.66650152911649, 0.0], [-68.62082507059341, 45.6660443291172, 0.0], [-68.6208904039267, 45.66462679578609, 0.0], [-68.62033607059419, 45.66414672912015, 0.0], [-68.62027100392766, 45.6634837291212, 0.0], [-68.62049927059394, 45.66300359578861, 0.0], [-68.62076007059352, 45.662569195789274, 0.0], [-68.62102107059314, 45.6623405957896, 0.0], [-68.6210534705931, 45.66167759579065, 0.0], [-68.62076020392686, 45.66126612912461, 0.0], [-68.62049940392728, 45.66051159579246, 0.0], [-68.62040147059412, 45.66046599579255, 0.0], [-68.6204016039274, 45.66037459579269, 0.0], [-68.6202710705943, 45.66021452912622, 0.0], [-68.61997780392807, 45.65971152912704, 0.0], [-68.61919540392933, 45.65913999579459, 0.0], [-68.61873900392999, 45.6591627291279, 0.0], [-68.61831500393066, 45.65934572912761, 0.0], [-68.61828247059736, 45.65973432912699, 0.0], [-68.61789120393132, 45.6597799957936, 0.0], [-68.61655447060008, 45.65934552912762, 0.0], [-68.61554400393499, 45.658408195795744, 0.0], [-68.61466387060301, 45.65788232912985, 0.0], [-68.61443567060337, 45.65744792913057, 0.0], [-68.61407707060391, 45.657150595797646, 0.0], [-68.6139142039375, 45.656739129131665, 0.0], [-68.61349040393816, 45.65628172913233, 0.0], [-68.61316440393864, 45.65605319579936, 0.0], [-68.61228427060672, 45.65600739579946, 0.0], [-68.61065387060921, 45.656578795798566, 0.0], [-68.61039307060963, 45.65676159579829, 0.0], [-68.60980620394389, 45.65694439579801, 0.0], [-68.60944747061109, 45.65735579579734, 0.0], [-68.60954520394426, 45.65797319579639, 0.0], [-68.6096428706108, 45.65801892912964, 0.0], [-68.6096428706108, 45.6581103291295, 0.0], [-68.61006680394348, 45.658361929129114, 0.0], [-68.61081667060898, 45.658453395795675, 0.0], [-68.61130560394156, 45.65865932912868, 0.0], [-68.61133800394151, 45.65957372912726, 0.0], [-68.61189207060733, 45.66021392912626, 0.0], [-68.61198967060716, 45.660533995792434, 0.0], [-68.61189187060728, 45.66099119579172, 0.0], [-68.61169620394094, 45.661288395791246, 0.0], [-68.61143527060801, 45.66153979579087, 0.0], [-68.61143520394137, 45.66181419579044, 0.0], [-68.61156560394113, 45.66197419579021, 0.0], [-68.61228280394005, 45.662225795789766, 0.0], [-68.61238060393987, 45.662431529122784, 0.0], [-68.6122826706067, 45.66270592912235, 0.0], [-68.61225000394006, 45.66327739578816, 0.0], [-68.61251067060635, 45.663551795787725, 0.0], [-68.61273880393935, 45.66396339578711, 0.0], [-68.61270627060605, 45.664329129119835, 0.0], [-68.61228227060673, 45.66458059578616, 0.0], [-68.61189107060733, 45.664626329119415, 0.0], [-68.61146720394129, 45.664443329119706, 0.0], [-68.61101080394201, 45.66451179578627, 0.0], [-68.61048887060946, 45.66444319578636, 0.0], [-68.61032600394304, 45.664740395785884, 0.0], [-68.61006507061012, 45.6648775957857, 0.0], [-68.60964120394414, 45.66490039578565, 0.0], [-68.60928240394469, 45.664786129119136, 0.0], [-68.60905420394505, 45.664557395786176, 0.0], [-68.60911967061162, 45.663642929120954, 0.0], [-68.60902187061174, 45.66357432912105, 0.0], [-68.6089568039452, 45.663185729121665, 0.0], [-68.60859827061239, 45.66268259578908, 0.0], [-68.60820720394634, 45.662385329122856, 0.0], [-68.6076204039473, 45.66211092912329, 0.0], [-68.60690307061503, 45.66192792912358, 0.0], [-68.60651200394898, 45.66165359579065, 0.0], [-68.60566427061696, 45.66144772912435, 0.0], [-68.60491447061816, 45.661584729124115, 0.0], [-68.60377320395327, 45.66167592912399, 0.0], [-68.60347980395369, 45.661630195790735, 0.0], [-68.60305600395435, 45.66160719579074, 0.0], [-68.60279500395478, 45.66167579579064, 0.0], [-68.60269707062156, 45.661904329123615, 0.0], [-68.60224067062228, 45.661995795790176, 0.0], [-68.60181687062294, 45.66174419579056, 0.0], [-68.60051287062498, 45.661423929124396, 0.0], [-68.6002194706254, 45.66124092912463, 0.0], [-68.60018700395881, 45.66103519579167, 0.0], [-68.60025227062539, 45.66089792912521, 0.0], [-68.60100240395752, 45.66057812912567, 0.0], [-68.6012958039571, 45.6603037957928, 0.0], [-68.60142627062356, 45.659823729126856, 0.0], [-68.60155687062337, 45.65964079579379, 0.0], [-68.60185047062288, 45.65936652912757, 0.0], [-68.6027632706215, 45.659366729127555, 0.0], [-68.60295900395448, 45.659275329127695, 0.0], [-68.60308947062094, 45.65913819579458, 0.0], [-68.60308960395429, 45.65888672912831, 0.0], [-68.60230727062219, 45.65831499579588, 0.0], [-68.60227480395554, 45.658086395796204, 0.0], [-68.60240527062206, 45.657811995796635, 0.0], [-68.60266647062161, 45.6568747957981, 0.0], [-68.60296007062118, 45.65666899579844, 0.0], [-68.6040358706195, 45.65648639579871, 0.0], [-68.60406867061943, 45.656303529132344, 0.0], [-68.6037752706199, 45.65616632913253, 0.0], [-68.60309060395429, 45.65625759579905, 0.0], [-68.60286247062135, 45.656166129132544, 0.0], [-68.60286260395463, 45.655800329133115, 0.0], [-68.60309080395427, 45.655617529133394, 0.0], [-68.60367767062007, 45.65559472913344, 0.0], [-68.60377540395325, 45.65566332913329, 0.0], [-68.60410140395271, 45.6557319957999, 0.0], [-68.60465567061851, 45.655732129133185, 0.0], [-68.60556860395047, 45.655274929133896, 0.0], [-68.60576440395016, 45.65490919580117, 0.0], [-68.60599267061644, 45.654726329134746, 0.0], [-68.60644900394908, 45.65470352913479, 0.0], [-68.60661207061548, 45.654840729134605, 0.0], [-68.6073942706143, 45.65516092913407, 0.0], [-68.60775287061375, 45.65520672913402, 0.0], [-68.60801380394668, 45.65511532913416, 0.0], [-68.60853527061249, 45.65506959580091, 0.0], [-68.60869827061225, 45.655161129134115, 0.0], [-68.60869827061225, 45.655412595800385, 0.0], [-68.60860047061243, 45.65548112913359, 0.0], [-68.60856767061244, 45.655686995799954, 0.0], [-68.60863300394567, 45.655778395799814, 0.0], [-68.60925240394471, 45.65586992913302, 0.0], [-68.60957840394423, 45.65586992913302, 0.0], [-68.6102304039432, 45.6556871291333, 0.0], [-68.61045867060955, 45.65550419580023, 0.0], [-68.61049127060949, 45.65520699580071, 0.0], [-68.60993740394366, 45.65463539580156, 0.0], [-68.60987240394377, 45.65390372913606, 0.0], [-68.60980727061053, 45.65362952913648, 0.0], [-68.60977480394394, 45.652943595804174, 0.0], [-68.60964447061082, 45.65280652913776, 0.0], [-68.60873187061219, 45.65216619580542, 0.0], [-68.60834067061279, 45.65170892913943, 0.0], [-68.60804747061326, 45.65120592914025, 0.0], [-68.60801487061332, 45.65102299580718, 0.0], [-68.60778680394702, 45.65074859580761, 0.0], [-68.60778700394701, 45.65042859580808, 0.0], [-68.6080150706133, 45.65026852914167, 0.0], [-68.60798267061335, 45.64997132914215, 0.0], [-68.60726580394783, 45.64930819580985, 0.0], [-68.60726580394783, 45.64912532914349, 0.0], [-68.60736367061435, 45.64905672914358, 0.0], [-68.60804820394662, 45.64887392914386, 0.0], [-68.60808080394656, 45.648782529144, 0.0], [-68.60801567061333, 45.64862239581089, 0.0], [-68.60759207061398, 45.64832519581137, 0.0], [-68.6073312706144, 45.647936529145284, 0.0], [-68.60723367061456, 45.64763932914576, 0.0], [-68.60716847061462, 45.647570729145855, 0.0], [-68.60716860394797, 45.647479329145995, 0.0], [-68.60707080394815, 45.647410729146145, 0.0], [-68.60694047061497, 45.64693059581356, 0.0], [-68.60664727061544, 45.64656472914743, 0.0], [-68.60664727061544, 45.64645039581427, 0.0], [-68.60648447061573, 45.64622172914795, 0.0], [-68.60625647061607, 45.64542159581589, 0.0], [-68.60619127061614, 45.64530719581603, 0.0], [-68.60609387061629, 45.64439279581745, 0.0], [-68.60632220394928, 45.643821329151706, 0.0], [-68.60736547061435, 45.642861195819876, 0.0], [-68.60811547061314, 45.641969729154596, 0.0], [-68.60912620394492, 45.640643929156624, 0.0], [-68.6095826706109, 45.64004952915752, 0.0], [-68.60961547061083, 45.639317929158665, 0.0], [-68.60938740394454, 45.63881492915948, 0.0], [-68.60915927061154, 45.63854052915991, 0.0], [-68.60886620394535, 45.63799179582742, 0.0], [-68.60841000394606, 45.63755732916144, 0.0], [-68.6077584706137, 45.636734195829376, 0.0], [-68.60772607061375, 45.63616259583023, 0.0], [-68.60788907061351, 45.63593399583061, 0.0], [-68.60831287061285, 45.63565979583103, 0.0], [-68.60844320394597, 45.63549972916462, 0.0], [-68.60831287061285, 45.63527112916495, 0.0], [-68.60756360394737, 45.63483672916561, 0.0], [-68.60678147061526, 45.63467659583256, 0.0], [-68.60642307061579, 45.63456219583276, 0.0], [-68.60612987061626, 45.63433352916644, 0.0], [-68.60606467061638, 45.63419632916663, 0.0], [-68.60599967061643, 45.63360192916758, 0.0], [-68.60639087061583, 45.633190395834845, 0.0], [-68.6064886706157, 45.63298472916853, 0.0], [-68.60691240394834, 45.63261899583574, 0.0], [-68.60691547061504, 45.63261359583578, 0.0], [-68.60704280394816, 45.632390395836126, 0.0], [-68.60723840394786, 45.63234459583617, 0.0], [-68.60792300394678, 45.6316131958373, 0.0], [-68.60955227061095, 45.631841995836965, 0.0], [-68.6099432706103, 45.63200212917002, 0.0], [-68.61118160394176, 45.63193359583681, 0.0], [-68.61183340394075, 45.631590795837326, 0.0], [-68.61232220393998, 45.63156799583737, 0.0], [-68.61245260393974, 45.63175092917044, 0.0], [-68.61189847060729, 45.632322395836184, 0.0], [-68.61189840394064, 45.632916795835285, 0.0], [-68.61222420394012, 45.63325979583476, 0.0], [-68.61258260393959, 45.633419929167815, 0.0], [-68.61365807060457, 45.633351329167965, 0.0], [-68.6142118706037, 45.63346572916777, 0.0], [-68.6146030706031, 45.63348852916772, 0.0], [-68.61473340393621, 45.63344292916781, 0.0], [-68.61473347060291, 45.633168529168245, 0.0], [-68.61460320393644, 45.63303132916843, 0.0], [-68.61460320393644, 45.63248272916928, 0.0], [-68.61489660393596, 45.6319797291701, 0.0], [-68.61528767060202, 45.63172832917047, 0.0], [-68.61578007060126, 45.63164699583723, 0.0], [-68.61584167060118, 45.63163692917061, 0.0], [-68.61593940393436, 45.63172832917047, 0.0], [-68.61691700393283, 45.63195699583679, 0.0], [-68.61779700393146, 45.631911195836835, 0.0], [-68.61825320393075, 45.63204852916999, 0.0], [-68.61835087059728, 45.6322085291697, 0.0], [-68.61835080393064, 45.632437129169375, 0.0], [-68.61766640393165, 45.632802929168804, 0.0], [-68.61760127059847, 45.632894329168664, 0.0], [-68.61763380393171, 45.63303152916842, 0.0], [-68.6181550705976, 45.63348879583441, 0.0], [-68.61812247059765, 45.633831729167184, 0.0], [-68.61802467059778, 45.633991795833595, 0.0], [-68.61756840393184, 45.63431172916643, 0.0], [-68.61694920393279, 45.634471795832894, 0.0], [-68.6150590039357, 45.63444892916624, 0.0], [-68.61499387060252, 45.6345403291661, 0.0], [-68.61502640393576, 45.63479179583237, 0.0], [-68.6161018039341, 45.635409195831414, 0.0], [-68.61639500393363, 45.63570632916429, 0.0], [-68.61655800393339, 45.63598059583052, 0.0], [-68.61691627059952, 45.636277929163384, 0.0], [-68.6172096039324, 45.63673512916267, 0.0], [-68.61733987059887, 45.636826595829234, 0.0], [-68.61773100393157, 45.63675799582933, 0.0], [-68.61815467059756, 45.63662092916286, 0.0], [-68.61848047059709, 45.63671239582942, 0.0], [-68.61880647059655, 45.636963929162334, 0.0], [-68.61887167059649, 45.63719252916201, 0.0], [-68.62066420392705, 45.637306795828465, 0.0], [-68.6210552705931, 45.63753539582814, 0.0], [-68.62128327059276, 45.63771839582785, 0.0], [-68.62141367059252, 45.63801559582737, 0.0], [-68.62177220392527, 45.6383585291602, 0.0], [-68.62239140392433, 45.6384957958266, 0.0], [-68.623890603922, 45.63831279582689, 0.0], [-68.62424907058812, 45.63810699582723, 0.0], [-68.62437940392124, 45.637992729160715, 0.0], [-68.624346870588, 45.637672595827894, 0.0], [-68.62395587058859, 45.63739839582831, 0.0], [-68.6240862039217, 45.63710119582879, 0.0], [-68.62447720392112, 45.636849595829176, 0.0], [-68.62525940391987, 45.63646092916309, 0.0], [-68.62600900391874, 45.636186595830225, 0.0], [-68.62646520391803, 45.63616379583027, 0.0], [-68.62685640391743, 45.63646092916309, 0.0], [-68.62685627058408, 45.636643795829514, 0.0], [-68.6262044705851, 45.63698679582899, 0.0], [-68.62613927058521, 45.63760399582799, 0.0], [-68.62643267058473, 45.63778699582775, 0.0], [-68.62708447058372, 45.63780979582771, 0.0], [-68.6273778039166, 45.637992729160715, 0.0], [-68.62737787058325, 45.638289929160294, 0.0], [-68.62698667058385, 45.638449929160004, 0.0], [-68.62685640391743, 45.63856419582652, 0.0], [-68.62682367058414, 45.63886139582604, 0.0], [-68.62705200391713, 45.63915872915891, 0.0], [-68.62711707058367, 45.63943312915853, 0.0], [-68.62688900391737, 45.63963879582485, 0.0], [-68.62604160391868, 45.63991319582442, 0.0], [-68.62545487058622, 45.6403017958238, 0.0], [-68.62542240391963, 45.64050752915682, 0.0], [-68.62532447058646, 45.64117059582247, 0.0], [-68.62542240391963, 45.64123912915568, 0.0], [-68.6255526705861, 45.641764929154874, 0.0], [-68.62597660391879, 45.642085129154395, 0.0], [-68.62617207058514, 45.6420621958211, 0.0], [-68.62659580391784, 45.64190212915469, 0.0], [-68.62698687058389, 45.64146772915535, 0.0], [-68.62708447058372, 45.64121619582238, 0.0], [-68.62718240391689, 45.64114759582253, 0.0], [-68.62721487058354, 45.64094179582281, 0.0], [-68.62747567058312, 45.64075892915645, 0.0], [-68.62816007058206, 45.6407817291564, 0.0], [-68.62848600391487, 45.6408047291564, 0.0], [-68.62910527058057, 45.640621729156635, 0.0], [-68.62969200391302, 45.64050739582348, 0.0], [-68.6306044039116, 45.64050739582348, 0.0], [-68.63102827057759, 45.6407817291564, 0.0], [-68.63171287057656, 45.641444595822065, 0.0], [-68.63216920390914, 45.64158172915518, 0.0], [-68.63347287057383, 45.64155879582188, 0.0], [-68.63435287057246, 45.641627329155085, 0.0], [-68.6371886039014, 45.64206139582109, 0.0], [-68.6383294038996, 45.6420611958211, 0.0], [-68.6415884705612, 45.64146632915532, 0.0], [-68.64246827055985, 45.64121472915576, 0.0], [-68.64351120389153, 45.640825929156335, 0.0], [-68.64435847055694, 45.64039139582371, 0.0], [-68.64546640388852, 45.63975099582467, 0.0], [-68.64589000388787, 45.6394995291584, 0.0], [-68.64605280388764, 45.63892792915931, 0.0], [-68.6462482038873, 45.63858492915983, 0.0], [-68.64654147055353, 45.63849339582663, 0.0], [-68.64680220388647, 45.638653329159695, 0.0], [-68.64680240388645, 45.63908772915903, 0.0], [-68.64650940388691, 45.63981939582459, 0.0], [-68.64621620388738, 45.64023099582391, 0.0], [-68.64621620388738, 45.64050532915684, 0.0], [-68.64628160388725, 45.640665329156604, 0.0], [-68.64654227055354, 45.64084819582297, 0.0], [-68.64712900388594, 45.640985195822736, 0.0], [-68.64807420388445, 45.64112219582256, 0.0], [-68.64901947054966, 45.641350529155545, 0.0], [-68.64937807054912, 45.6413733291555, 0.0], [-68.64957360388217, 45.64125899582234, 0.0], [-68.64983407054842, 45.64089319582291, 0.0], [-68.64993160388161, 45.640138595824055, 0.0], [-68.65015947054792, 45.63965852915817, 0.0], [-68.65071327054704, 45.63885819582606, 0.0], [-68.65123447054623, 45.63842372916008, 0.0], [-68.65214687054481, 45.637920595827495, 0.0], [-68.65214667054482, 45.63771479582783, 0.0], [-68.65191860387853, 45.637509129161515, 0.0], [-68.65178807054536, 45.637417729161655, 0.0], [-68.65162487054562, 45.636960529162366, 0.0], [-68.65152720387914, 45.63689192916246, 0.0], [-68.6509078038801, 45.63680059582924, 0.0], [-68.65064687054718, 45.636594929162925, 0.0], [-68.6505816038806, 45.6362061958302, 0.0], [-68.65107020387984, 45.635543129164546, 0.0], [-68.65129820387949, 45.63517732916512, 0.0], [-68.6513630038794, 45.63446859583286, 0.0], [-68.65149320387917, 45.634102729166784, 0.0], [-68.65175367054542, 45.63359972916754, 0.0], [-68.65194907054513, 45.63343972916783, 0.0], [-68.65237267054448, 45.63341659583449, 0.0], [-68.65253567054424, 45.633485195834396, 0.0], [-68.65273140387723, 45.63382812916723, 0.0], [-68.65273200387725, 45.63515412916513, 0.0], [-68.65286247054371, 45.6353141291649, 0.0], [-68.65299287054353, 45.63540552916476, 0.0], [-68.6530258038768, 45.63611419583032, 0.0], [-68.65325400387644, 45.63638852916324, 0.0], [-68.65426440387489, 45.636273929163394, 0.0], [-68.65449260387453, 45.63638819582991, 0.0], [-68.65455820387439, 45.63714252916208, 0.0], [-68.65478647054073, 45.6374397291616, 0.0], [-68.65524280387336, 45.63775959582779, 0.0], [-68.65625327053846, 45.638010929160714, 0.0], [-68.66039227053204, 45.638009595827384, 0.0], [-68.66228287052911, 45.63846619582665, 0.0], [-68.66300007052797, 45.638763195826186, 0.0], [-68.66371740386018, 45.63926592915874, 0.0], [-68.66378267052676, 45.6393573958253, 0.0], [-68.66391320385986, 45.63944879582516, 0.0], [-68.6642064705261, 45.63954012915832, 0.0], [-68.66534720385766, 45.639562595825, 0.0], [-68.6658360705236, 45.63947099582509, 0.0], [-68.66632480385613, 45.63924212915879, 0.0], [-68.66700880385508, 45.638624529159756, 0.0], [-68.66752987052092, 45.638327129160245, 0.0], [-68.66863747051923, 45.63752659582815, 0.0], [-68.66909327051854, 45.63693199582906, 0.0], [-68.66954867051783, 45.63581159583077, 0.0], [-68.66954840385114, 45.6354915291646, 0.0], [-68.66961347051773, 45.63530859583159, 0.0], [-68.6697104038509, 45.63425679583321, 0.0], [-68.66957947051776, 45.63366252916745, 0.0], [-68.66948180385123, 45.63357112916759, 0.0], [-68.66944807051794, 45.63245092916935, 0.0], [-68.66957820385107, 45.63203932916997, 0.0], [-68.67013147051688, 45.63121599583792, 0.0], [-68.67107547051546, 45.630003995839786, 0.0], [-68.67133607051505, 45.62977519584018, 0.0], [-68.67234587051348, 45.629386195840766, 0.0], [-68.67267147051297, 45.629088795841255, 0.0], [-68.67270387051292, 45.628905929174834, 0.0], [-68.67293180384587, 45.62856279584207, 0.0], [-68.67381140384452, 45.62835659584238, 0.0], [-68.67407187051077, 45.628105129176106, 0.0], [-68.67462500384329, 45.627190395844195, 0.0], [-68.67491800384283, 45.626915929177926, 0.0], [-68.67530887050884, 45.62682432917808, 0.0], [-68.67560240384176, 45.62702992917775, 0.0], [-68.675863070508, 45.62700692917781, 0.0], [-68.67599327050783, 45.626938329177904, 0.0], [-68.67599307050779, 45.62664099584504, 0.0], [-68.67569960384162, 45.62645832917866, 0.0], [-68.67527560384224, 45.62609272917922, 0.0], [-68.67521020384237, 45.6257955291797, 0.0], [-68.67566627050832, 45.62563532917994, 0.0], [-68.67566600384163, 45.625429529180224, 0.0], [-68.67527480384223, 45.62520099584725, 0.0], [-68.6745904038433, 45.62506412918083, 0.0], [-68.67436240384365, 45.62499579584755, 0.0], [-68.6741992038439, 45.62485872918114, 0.0], [-68.67406867051079, 45.62460719584817, 0.0], [-68.67400300384423, 45.62389859584931, 0.0], [-68.67383987051113, 45.623647129182984, 0.0], [-68.6738070705112, 45.62344139585002, 0.0], [-68.67393720384433, 45.62325839585026, 0.0], [-68.6745236038434, 45.62312099585051, 0.0], [-68.67452307051008, 45.62257232918466, 0.0], [-68.67442527051026, 45.62250372918476, 0.0], [-68.67374107051131, 45.62245832918484, 0.0], [-68.67344767051173, 45.62229839585177, 0.0], [-68.67341480384516, 45.62190972918569, 0.0], [-68.67354487051159, 45.62172692918597, 0.0], [-68.67468480384315, 45.621063329186995, 0.0], [-68.67488000384287, 45.62085752918733, 0.0], [-68.67494447050944, 45.62028592918824, 0.0], [-68.67468360384316, 45.61982872918895, 0.0], [-68.67465007050987, 45.61893719585697, 0.0], [-68.67416127051064, 45.6187315958573, 0.0], [-68.67360720384482, 45.61841179585781, 0.0], [-68.67344327051177, 45.61726879585956, 0.0], [-68.6733452705119, 45.616925795860084, 0.0], [-68.6733490705119, 45.616925795860084, 0.0], [-68.6740294038442, 45.61692552919345, 0.0], [-68.67448547051015, 45.616879595860155, 0.0], [-68.6745006705101, 45.61688272919349, 0.0], [-68.6749416038428, 45.61697092919337, 0.0], [-68.6754958038419, 45.61733639585947, 0.0], [-68.6754310705087, 45.6177707958588, 0.0], [-68.67530087050886, 45.617885195858605, 0.0], [-68.67523587050897, 45.61820532919148, 0.0], [-68.67536647050878, 45.618411129191145, 0.0], [-68.67595320384117, 45.61882232919049, 0.0], [-68.67595367050785, 45.61923379585653, 0.0], [-68.67582360384142, 45.6195081958561, 0.0], [-68.67579120384147, 45.61978259585567, 0.0], [-68.67592167050793, 45.6200795958552, 0.0], [-68.67624780384074, 45.620193795855016, 0.0], [-68.67696467050632, 45.62021632918834, 0.0], [-68.6773228038391, 45.62001039585533, 0.0], [-68.67758300383866, 45.6196445291892, 0.0], [-68.67787567050487, 45.61902712919016, 0.0], [-68.67862420383705, 45.61822659585806, 0.0], [-68.67878687050347, 45.6179979291918, 0.0], [-68.67894940383655, 45.61763199585903, 0.0], [-68.67898147050317, 45.617151929193085, 0.0], [-68.67937160383588, 45.61626012919447, 0.0], [-68.68057620383405, 45.615344995862586, 0.0], [-68.6809014705002, 45.61493332919656, 0.0], [-68.68106400383328, 45.61456739586379, 0.0], [-68.68116120383314, 45.61385872919823, 0.0], [-68.68138820383274, 45.61310412919937, 0.0], [-68.68161587049906, 45.6127381958666, 0.0], [-68.68207167049837, 45.61244079586709, 0.0], [-68.68246220383111, 45.61212039586758, 0.0], [-68.68304800383021, 45.61145712920194, 0.0], [-68.68369907049583, 45.611113929202475, 0.0], [-68.68418760382843, 45.61097639586933, 0.0], [-68.6850668704937, 45.61079312920293, 0.0], [-68.68568567049277, 45.61060979586989, 0.0], [-68.68650000382485, 45.61054079587001, 0.0], [-68.68695640382413, 45.6108377292029, 0.0], [-68.6868588038243, 45.61104352920256, 0.0], [-68.68643560382492, 45.611272395868866, 0.0], [-68.68493760382728, 45.61168479586826, 0.0], [-68.68467727049432, 45.61191352920122, 0.0], [-68.68435200382817, 45.6124395292004, 0.0], [-68.68392880382885, 45.61273692919997, 0.0], [-68.68324500382988, 45.612988795866215, 0.0], [-68.68288760383047, 45.61383492919822, 0.0], [-68.68272540383072, 45.614429395863965, 0.0], [-68.68233500383127, 45.61504679586301, 0.0], [-68.68217280383158, 45.615595595862146, 0.0], [-68.68201007049845, 45.61589292919507, 0.0], [-68.68155440383254, 45.616304595861095, 0.0], [-68.6814244704994, 45.61660192919396, 0.0], [-68.68132720383284, 45.6171507291931, 0.0], [-68.680611603834, 45.61817979585817, 0.0], [-68.68005847050148, 45.61907179585677, 0.0], [-68.67989627050173, 45.619643529189204, 0.0], [-68.67996200383499, 45.620192129188354, 0.0], [-68.68022300383456, 45.62051199585454, 0.0], [-68.68035347050102, 45.62078619585412, 0.0], [-68.68051660383412, 45.62090052918728, 0.0], [-68.68090740383349, 45.62083172918739, 0.0], [-68.68120047049973, 45.62062579585438, 0.0], [-68.68201467049846, 45.62030532918817, 0.0], [-68.68256860383093, 45.62030499585484, 0.0], [-68.6826988704974, 45.620373595854744, 0.0], [-68.68276420383063, 45.620464995854604, 0.0], [-68.68256887049762, 45.62067079585427, 0.0], [-68.68204787049842, 45.62089972918727, 0.0], [-68.6820482704984, 45.6212425958534, 0.0], [-68.68230927049802, 45.621631195852785, 0.0], [-68.68224460383146, 45.62213419585203, 0.0], [-68.68195167049856, 45.622545929184696, 0.0], [-68.68188680383201, 45.622751729184415, 0.0], [-68.68198520383186, 45.623345995850116, 0.0], [-68.68208287049833, 45.623391729183425, 0.0], [-68.68224660383146, 45.624100395848984, 0.0], [-68.68247500383109, 45.624465995848425, 0.0], [-68.68322507049658, 45.62503712918084, 0.0], [-68.68355127049608, 45.625425595846934, 0.0], [-68.68365127049594, 45.62764319584346, 0.0], [-68.68378207049574, 45.627917529176386, 0.0], [-68.68381487049567, 45.62819179584261, 0.0], [-68.68394540382877, 45.628374729175675, 0.0], [-68.68394547049547, 45.62848899584213, 0.0], [-68.68404340382864, 45.628557529175396, 0.0], [-68.68440347049477, 45.630226329172785, 0.0], [-68.68486060382736, 45.63095759583831, 0.0], [-68.68508900382704, 45.63120899583794, 0.0], [-68.68528487049338, 45.63157472917072, 0.0], [-68.68577427049263, 45.63221452916969, 0.0], [-68.68645947049157, 45.63292279583527, 0.0], [-68.68747047048998, 45.63369959583406, 0.0], [-68.68867727048814, 45.634476329166205, 0.0], [-68.68998147048609, 45.63520712916505, 0.0], [-68.6906338704851, 45.635526795831254, 0.0], [-68.69138407048393, 45.63612079583032, 0.0], [-68.69193887048306, 45.63676052916264, 0.0], [-68.692852203815, 45.63742292916163, 0.0], [-68.6934722704807, 45.6381083958272, 0.0], [-68.69389640381337, 45.638473995826644, 0.0], [-68.69451647047907, 45.639205195825525, 0.0], [-68.69481060381196, 45.639845195824535, 0.0], [-68.69494160381174, 45.64021092915732, 0.0], [-68.6957246038105, 45.64091899582286, 0.0], [-68.69585520381031, 45.64112479582252, 0.0], [-68.6966710704757, 45.64194732915462, 0.0], [-68.69836807047307, 45.64359232915206, 0.0], [-68.69954240380457, 45.64432299581756, 0.0], [-68.7014996704682, 45.64544199581587, 0.0], [-68.70198920380079, 45.645784595815314, 0.0], [-68.70228300380035, 45.64617312914805, 0.0], [-68.70296807046594, 45.64660692914737, 0.0], [-68.70384880379788, 45.64701792914673, 0.0], [-68.70394680379775, 45.647154929146495, 0.0], [-68.70407767046419, 45.647543529145935, 0.0], [-68.70391507046446, 45.6478407958121, 0.0], [-68.70319760379891, 45.6475441291459, 0.0], [-68.70182700380104, 45.64644772914761, 0.0], [-68.70032627047004, 45.64539712914927, 0.0], [-68.69957580380452, 45.644963195816615, 0.0], [-68.69820560380668, 45.64400392915144, 0.0], [-68.69748800380779, 45.64359279581873, 0.0], [-68.69686860380875, 45.643478995818896, 0.0], [-68.69650987047595, 45.643364929152426, 0.0], [-68.69543340381097, 45.642519595820374, 0.0], [-68.69517247047804, 45.64245112915381, 0.0], [-68.69504220381157, 45.64254279582036, 0.0], [-68.69494487047837, 45.642908729153135, 0.0], [-68.69468420381213, 45.64295452915303, 0.0], [-68.69448860381243, 45.64295459581973, 0.0], [-68.69422720381283, 45.642474729153776, 0.0], [-68.6931830704811, 45.64144652915536, 0.0], [-68.69285640381497, 45.64080659582305, 0.0], [-68.69239947048231, 45.640418129156956, 0.0], [-68.69184460381655, 45.63973272915803, 0.0], [-68.69148540381707, 45.63916139582557, 0.0], [-68.6912894038174, 45.638681395826325, 0.0], [-68.69109340381772, 45.63838432916015, 0.0], [-68.69096280381791, 45.63808719582727, 0.0], [-68.69053840381855, 45.63753872916146, 0.0], [-68.68933100382043, 45.636167595830216, 0.0], [-68.6891026038208, 45.635847729164084, 0.0], [-68.68818900382223, 45.63495672916548, 0.0], [-68.68662380382466, 45.63415732916667, 0.0], [-68.68580847049259, 45.63360912916755, 0.0], [-68.68548260382642, 45.6335863291676, 0.0], [-68.68528707049336, 45.63367792916745, 0.0], [-68.68525500382674, 45.63408952916677, 0.0], [-68.68486400382739, 45.63415819583338, 0.0], [-68.68470087049428, 45.634043995833565, 0.0], [-68.68457027049448, 45.63379272916728, 0.0], [-68.68456980382786, 45.633312595834695, 0.0], [-68.684471603828, 45.63287819583536, 0.0], [-68.68430840382825, 45.63269539583564, 0.0], [-68.6841128704952, 45.63260399583578, 0.0], [-68.68362420382931, 45.63271859583557, 0.0], [-68.68346107049621, 45.63258152916916, 0.0], [-68.68329767049647, 45.63219299583642, 0.0], [-68.68323207049656, 45.63182719583699, 0.0], [-68.68303600383018, 45.63118719583798, 0.0], [-68.68293820383036, 45.63114152917137, 0.0], [-68.68293807049702, 45.63104999583817, 0.0], [-68.68257907049758, 45.63066152917213, 0.0], [-68.68199240383183, 45.6304789958391, 0.0], [-68.68042800383427, 45.63029692917269, 0.0], [-68.6798740705018, 45.630297195839375, 0.0], [-68.67938547050255, 45.630480195839084, 0.0], [-68.6782778038376, 45.63070939583872, 0.0], [-68.67739787050562, 45.6308013291719, 0.0], [-68.67700687050626, 45.63075579583864, 0.0], [-68.67612707050762, 45.63073332917202, 0.0], [-68.67563847050837, 45.63093932917167, 0.0], [-68.67534540384213, 45.63119092917128, 0.0], [-68.67511747050918, 45.6314425291709, 0.0], [-68.67502027050932, 45.6321283958365, 0.0], [-68.67482520384294, 45.63240279583607, 0.0], [-68.67384787051111, 45.63279192916883, 0.0], [-68.6732288705121, 45.63308939583504, 0.0], [-68.67287087051267, 45.63359252916757, 0.0], [-68.67235027051345, 45.63457579583269, 0.0], [-68.67222020384702, 45.63485019583226, 0.0], [-68.67189480384752, 45.6354675958313, 0.0], [-68.67179720384763, 45.63562772916441, 0.0], [-68.67176480384768, 45.635810595830776, 0.0], [-68.67124380384854, 45.636519529163024, 0.0], [-68.6711138038487, 45.63681679582925, 0.0], [-68.67104860384882, 45.636885395829154, 0.0], [-68.67091880384902, 45.63752559582815, 0.0], [-68.67108180384878, 45.637639795827965, 0.0], [-68.67134247051501, 45.63757119582806, 0.0], [-68.67264567051302, 45.63706759582885, 0.0], [-68.67551280384191, 45.63617472916354, 0.0], [-68.67688100383975, 45.635533995831224, 0.0], [-68.67701120383958, 45.635282529164954, 0.0], [-68.67701080383955, 45.63498532916543, 0.0], [-68.67684707050648, 45.634116595833405, 0.0], [-68.67661860384015, 45.63375092916732, 0.0], [-68.67648807050705, 45.633430929167844, 0.0], [-68.67661827050682, 45.63336219583459, 0.0], [-68.67697680383964, 45.63333919583465, 0.0], [-68.67717260383932, 45.63356772916762, 0.0], [-68.67762987050526, 45.63482492916563, 0.0], [-68.67763040383858, 45.63528219583162, 0.0], [-68.67750040383879, 45.635625195831096, 0.0], [-68.67723967050586, 45.63583099583076, 0.0], [-68.67668587050673, 45.636059929163764, 0.0], [-68.6758716038413, 45.63656319582964, 0.0], [-68.67313480384558, 45.63729599582848, 0.0], [-68.6717664038477, 45.6378223958277, 0.0], [-68.67124520384851, 45.63818852916046, 0.0], [-68.67098467051557, 45.638417195826776, 0.0], [-68.67095220384897, 45.63857732915983, 0.0], [-68.67082187051585, 45.63871452915964, 0.0], [-68.67030060384997, 45.638806195826135, 0.0], [-68.66981160385075, 45.63871492915962, 0.0], [-68.66925760385158, 45.638669395826355, 0.0], [-68.6687362038524, 45.6387839291595, 0.0], [-68.66818227051994, 45.639058529159115, 0.0], [-68.66743340385443, 45.6397217958247, 0.0], [-68.66684687052202, 45.63999632915761, 0.0], [-68.66586940385685, 45.64033972915712, 0.0], [-68.66485920385844, 45.64059152915672, 0.0], [-68.66453340385891, 45.64075172915648, 0.0], [-68.66453347052561, 45.64088879582289, 0.0], [-68.66463127052543, 45.640957395822795, 0.0], [-68.66498980385825, 45.64100312915605, 0.0], [-68.66590227052347, 45.64077399582311, 0.0], [-68.66707527052165, 45.64038492915705, 0.0], [-68.66759660385418, 45.64011039582414, 0.0], [-68.6684758038528, 45.63933279582534, 0.0], [-68.66873660385238, 45.63924119582549, 0.0], [-68.66899740385202, 45.63933259582535, 0.0], [-68.66893240385212, 45.63953832915837, 0.0], [-68.66867187051918, 45.63981279582458, 0.0], [-68.66811820385334, 45.64022452915725, 0.0], [-68.66733620385457, 45.64068199582323, 0.0], [-68.66629360385622, 45.64113959582255, 0.0], [-68.66534860385764, 45.641368595822144, 0.0], [-68.66453380385894, 45.64139179582213, 0.0], [-68.6641100038596, 45.6411633958225, 0.0], [-68.66410987052626, 45.64104912915599, 0.0], [-68.6638162705267, 45.64061472915665, 0.0], [-68.66355547052711, 45.640569129156745, 0.0], [-68.66349047052722, 45.64086632915627, 0.0], [-68.66355580386045, 45.64095779582283, 0.0], [-68.66362120386032, 45.64134639582221, 0.0], [-68.66342567052732, 45.64146072915537, 0.0], [-68.66306727052785, 45.64155232915522, 0.0], [-68.66257827052863, 45.64139239582215, 0.0], [-68.66202400386283, 45.64102679582271, 0.0], [-68.66052427053182, 45.64054732915679, 0.0], [-68.6598396038662, 45.640204595824, 0.0], [-68.65899200386752, 45.63988479582446, 0.0], [-68.65843800386841, 45.63977059582464, 0.0], [-68.6577208705362, 45.63970219582478, 0.0], [-68.65671047053775, 45.63965692915815, 0.0], [-68.65573267053924, 45.63958852915829, 0.0], [-68.65537420387312, 45.63970292915809, 0.0], [-68.65495060387383, 45.63965732915818, 0.0], [-68.65439627054133, 45.63947459582511, 0.0], [-68.65358160387592, 45.639543395825, 0.0], [-68.65312547054333, 45.63977212915796, 0.0], [-68.65299520387686, 45.640069395824185, 0.0], [-68.65296300387689, 45.6407779958231, 0.0], [-68.65286540387706, 45.64096099582281, 0.0], [-68.65253960387753, 45.64134979582218, 0.0], [-68.65146427054589, 45.64215019582093, 0.0], [-68.64996547054818, 45.64290499581978, 0.0], [-68.64957440388213, 45.64306512915289, 0.0], [-68.6492810038826, 45.64311092915278, 0.0], [-68.64895500388309, 45.643110995819484, 0.0], [-68.64719480388584, 45.64251699582036, 0.0], [-68.64657547055344, 45.64228839582074, 0.0], [-68.645597470555, 45.642105729154366, 0.0], [-68.64354427055815, 45.6422205291542, 0.0], [-68.64256660389304, 45.64251779582037, 0.0], [-68.64197987056059, 45.64292939581975, 0.0], [-68.641067470562, 45.64322679581926, 0.0], [-68.6398942038972, 45.64361552915199, 0.0], [-68.63748240390089, 45.64448472915069, 0.0], [-68.63660240390226, 45.64494199581662, 0.0], [-68.63578767057021, 45.645810795815294, 0.0], [-68.63549440390398, 45.64619952914802, 0.0], [-68.63546207057072, 45.64677112914711, 0.0], [-68.63604887056982, 45.6472283291464, 0.0], [-68.6363096705694, 45.647616929145784, 0.0], [-68.63627727056945, 45.64885139581054, 0.0], [-68.63689687056848, 45.64956019580944, 0.0], [-68.63689687056848, 45.64997172914212, 0.0], [-68.63657087056902, 45.65024612914175, 0.0], [-68.63611467056973, 45.65058899580788, 0.0], [-68.63614727056967, 45.65079479580754, 0.0], [-68.63683200390193, 45.65116039580698, 0.0], [-68.63706020390157, 45.6514119291399, 0.0], [-68.63722327056797, 45.65193772913909, 0.0], [-68.63719087056802, 45.65239492913838, 0.0], [-68.63706060390155, 45.652646529137996, 0.0], [-68.63637600390263, 45.653103729137285, 0.0], [-68.63608267056975, 45.653583929136516, 0.0], [-68.63611547056968, 45.654132595802366, 0.0], [-68.63647420390248, 45.65461259580161, 0.0], [-68.63653940390236, 45.65502412913429, 0.0], [-68.63761540390072, 45.65586992913302, 0.0], [-68.63816967056653, 45.656098529132635, 0.0], [-68.6382674038997, 45.656189929132495, 0.0], [-68.63820240389981, 45.656670129131726, 0.0], [-68.63800680390011, 45.6568757957981, 0.0], [-68.63751780390083, 45.656875929131445, 0.0], [-68.63660487056893, 45.65662452913182, 0.0], [-68.63627887056947, 45.65671599579832, 0.0], [-68.63608327056977, 45.656853195798135, 0.0], [-68.63592027057001, 45.6570361291312, 0.0], [-68.63579000390354, 45.65749332913049, 0.0], [-68.63618127056958, 45.657973395796375, 0.0], [-68.6368660039019, 45.658247595795956, 0.0], [-68.63810500389997, 45.65824752912931, 0.0], [-68.63865927056577, 45.658361729129126, 0.0], [-68.63898540389857, 45.65863599579535, 0.0], [-68.63905060389851, 45.65879612912846, 0.0], [-68.63911587056504, 45.65886459579502, 0.0], [-68.63908340389844, 45.65959619579388, 0.0], [-68.6390182705652, 45.65966479579379, 0.0], [-68.63895307056532, 45.659847729126795, 0.0], [-68.63810540389994, 45.659847795793496, 0.0], [-68.63742067056768, 45.659687929127074, 0.0], [-68.63598600390321, 45.65897932912816, 0.0], [-68.63575780390357, 45.658933595794906, 0.0], [-68.63513840390453, 45.65902512912811, 0.0], [-68.63402987057293, 45.65941379579414, 0.0], [-68.63314960390767, 45.65941399579418, 0.0], [-68.63262780390846, 45.65918539579451, 0.0], [-68.63253000390858, 45.65895679579489, 0.0], [-68.63266027057506, 45.65845379579565, 0.0], [-68.63295367057464, 45.65795079579641, 0.0], [-68.63350787057374, 45.657447795797225, 0.0], [-68.63354040390703, 45.65721919579755, 0.0], [-68.63334480390733, 45.657104929131094, 0.0], [-68.63282307057483, 45.657013529131234, 0.0], [-68.63256227057519, 45.65685352913147, 0.0], [-68.63243187057543, 45.65641912913213, 0.0], [-68.63217100390915, 45.65623619579907, 0.0], [-68.63158427057675, 45.65603052913275, 0.0], [-68.63103000391095, 45.65568759579992, 0.0], [-68.63050827057839, 45.655733529133215, 0.0], [-68.63034527057869, 45.65587059579968, 0.0], [-68.62975860391293, 45.65699092913127, 0.0], [-68.62975860391293, 45.6573567291307, 0.0], [-68.63001940391251, 45.65747092913051, 0.0], [-68.63076927057801, 45.65756232913037, 0.0], [-68.63093240391106, 45.65765372913023, 0.0], [-68.63116047057741, 45.657859529129894, 0.0], [-68.6313888039104, 45.65847672912895, 0.0], [-68.63142147057698, 45.65904832912804, 0.0], [-68.63138907057703, 45.65968839579375, 0.0], [-68.63122607057727, 45.66000852912657, 0.0], [-68.63112827057745, 45.660099995793075, 0.0], [-68.63054147057835, 45.66023719579289, 0.0], [-68.63034580391201, 45.66042012912595, 0.0], [-68.63034587057865, 45.66112879579151, 0.0], [-68.6305416039117, 45.66147172912429, 0.0], [-68.6314220039103, 45.66206612912339, 0.0], [-68.63210660390928, 45.66227179578971, 0.0], [-68.63210667057592, 45.662477595789426, 0.0], [-68.63191107057622, 45.662568995789286, 0.0], [-68.63028080391211, 45.662591929122584, 0.0], [-68.63002000391248, 45.662729195788984, 0.0], [-68.62975907057955, 45.66272912912234, 0.0], [-68.62868307058125, 45.66247772912271, 0.0], [-68.62832447058179, 45.66254639578932, 0.0], [-68.62822667058197, 45.66266072912248, 0.0], [-68.6282592705819, 45.66293512912205, 0.0], [-68.62838980391501, 45.66302639578856, 0.0], [-68.62861800391465, 45.663323595788086, 0.0], [-68.62913960391387, 45.66350652912115, 0.0], [-68.62972660391296, 45.66359792912101, 0.0], [-68.63015047057894, 45.66382652912063, 0.0], [-68.6304766039118, 45.664283795786616, 0.0], [-68.6300854039124, 45.66451239578623, 0.0], [-68.62959627057984, 45.664649595786045, 0.0], [-68.62904187058069, 45.66460392911944, 0.0], [-68.6271506705836, 45.66405532912029, 0.0], [-68.62630300391828, 45.66407819578694, 0.0], [-68.62614000391852, 45.66423819578665, 0.0], [-68.62617260391846, 45.66510692911868, 0.0], [-68.6264008039181, 45.66531272911834, 0.0], [-68.6269550705839, 45.66558712911791, 0.0], [-68.62711807058366, 45.66581572911758, 0.0], [-68.62728140391675, 45.66684439578262, 0.0], [-68.62728140391675, 45.6672559291153, 0.0], [-68.62721620391687, 45.66759879578143, 0.0], [-68.627118403917, 45.66897059577934, 0.0], [-68.62666180391773, 45.66924492911221, 0.0], [-68.62672700391761, 45.66961072911164, 0.0], [-68.62692267058395, 45.66983932911131, 0.0], [-68.62702047058383, 45.67036512911051, 0.0], [-68.62689007058401, 45.67095959577625, 0.0], [-68.62695540391724, 45.672125529107745, 0.0], [-68.62764027058284, 45.673039995773024, 0.0], [-68.62796647058235, 45.67365719577202, 0.0], [-68.62806427058223, 45.674023129104796, 0.0], [-68.6283252705818, 45.67434312910433, 0.0], [-68.62855347058144, 45.674571729103945, 0.0], [-68.62933620391357, 45.675005995769936, 0.0], [-68.63008627057906, 45.675394595769376, 0.0], [-68.63018420391222, 45.675485995769236, 0.0], [-68.63018420391222, 45.67580612910206, 0.0], [-68.6297276705796, 45.67610332910158, 0.0], [-68.62962987057978, 45.676331995767896, 0.0], [-68.62972760391295, 45.67681212910048, 0.0], [-68.62998847057924, 45.6769263291003, 0.0], [-68.63028207057874, 45.676789195767185, 0.0], [-68.63041247057856, 45.67630912910124, 0.0], [-68.63060807057826, 45.676080529101625, 0.0], [-68.63090167057777, 45.675920395768514, 0.0], [-68.63171687057655, 45.67571459576885, 0.0], [-68.63194520390954, 45.675600329102394, 0.0], [-68.63233660390893, 45.67532592910277, 0.0], [-68.63253227057527, 45.67486872910348, 0.0], [-68.63276040390826, 45.674731529103724, 0.0], [-68.63331487057405, 45.674799995770286, 0.0], [-68.63324967057417, 45.67514292910306, 0.0], [-68.63276060390825, 45.67573732910216, 0.0], [-68.63236927057551, 45.67598892910178, 0.0], [-68.63174967057648, 45.67621752910139, 0.0], [-68.63142360391032, 45.67649192910096, 0.0], [-68.6314888039102, 45.6769263291003, 0.0], [-68.63168460390989, 45.67722352909982, 0.0], [-68.63178227057642, 45.677429195766194, 0.0], [-68.63168460390989, 45.67763499576586, 0.0], [-68.63168460390989, 45.677909395765425, 0.0], [-68.63191300390957, 45.67806932909855, 0.0], [-68.63227180390902, 45.67820639576496, 0.0], [-68.6323044705756, 45.678572195764445, 0.0]], [[-68.67345427051174, 45.630002929173145, 0.0], [-68.67290047051262, 45.630094595839694, 0.0], [-68.67218387051372, 45.630620795838865, 0.0], [-68.671988670514, 45.63091812917173, 0.0], [-68.67140260384826, 45.63148992917081, 0.0], [-68.67049120384968, 45.63277052916885, 0.0], [-68.67052460384963, 45.63359359583421, 0.0], [-68.67068780384938, 45.634027929166905, 0.0], [-68.6709812705156, 45.63425639583323, 0.0], [-68.67143747051489, 45.63418759583334, 0.0], [-68.67156747051467, 45.63359319583424, 0.0], [-68.67186027051423, 45.633204329168166, 0.0], [-68.67267440384632, 45.632563795835836, 0.0], [-68.67335827051187, 45.63210632916986, 0.0], [-68.67348860384504, 45.631900529170196, 0.0], [-68.67361880384482, 45.63178612917039, 0.0], [-68.67384627051115, 45.63107732917149, 0.0], [-68.67381300384454, 45.63018559583952, 0.0], [-68.67345427051174, 45.630002929173145, 0.0]], [[-68.68042287050093, 45.62515292918067, 0.0], [-68.68003187050152, 45.62515312918066, 0.0], [-68.67983660383516, 45.62531319584707, 0.0], [-68.67983767050185, 45.62636479584546, 0.0], [-68.67977267050196, 45.626433529178655, 0.0], [-68.67944680383579, 45.62647932917861, 0.0], [-68.67934887050262, 45.62638799584545, 0.0], [-68.67928327050271, 45.6257935291797, 0.0], [-68.67921800383613, 45.62572499584644, 0.0], [-68.67921787050278, 45.62563359584658, 0.0], [-68.67905500383637, 45.62558792917997, 0.0], [-68.67879420383679, 45.62558799584667, 0.0], [-68.6786966705036, 45.62567959584652, 0.0], [-68.67869780383694, 45.62691412917792, 0.0], [-68.67873060383687, 45.6272113291775, 0.0], [-68.67895900383655, 45.62748552917702, 0.0], [-68.67938287050254, 45.62778259584326, 0.0], [-68.67983920383517, 45.62791952917638, 0.0], [-68.68062127050064, 45.627941995843, 0.0], [-68.68146840383264, 45.627804395843214, 0.0], [-68.68185920383206, 45.627621395843505, 0.0], [-68.68202180383179, 45.62736979584389, 0.0], [-68.68202127049847, 45.626866795844705, 0.0], [-68.6819558038319, 45.62650099584522, 0.0], [-68.68185807049872, 45.62645539584531, 0.0], [-68.68185787049873, 45.62636392917881, 0.0], [-68.68114027049984, 45.62560979584663, 0.0], [-68.6807164038338, 45.62528992918044, 0.0], [-68.68042287050093, 45.62515292918067, 0.0]], [[-68.62940200391347, 45.681933129092556, 0.0], [-68.6291084705806, 45.682116129092265, 0.0], [-68.62819520391531, 45.68239039575849, 0.0], [-68.62711887058367, 45.68239039575849, 0.0], [-68.62640120391814, 45.68207032909231, 0.0], [-68.62574887058582, 45.681933329092544, 0.0], [-68.62558587058606, 45.68197899575915, 0.0], [-68.62545547058625, 45.682093395758955, 0.0], [-68.6254554039196, 45.68229912909197, 0.0], [-68.62555327058612, 45.68245912909174, 0.0], [-68.62600987058539, 45.68275632909126, 0.0], [-68.62610767058521, 45.683487795756776, 0.0], [-68.62623820391838, 45.68364779575654, 0.0], [-68.6266622039177, 45.68399079575602, 0.0], [-68.62780387058262, 45.68399079575602, 0.0], [-68.62894540391414, 45.68364779575654, 0.0], [-68.62927167058035, 45.68346492909018, 0.0], [-68.62953260391328, 45.68298479575759, 0.0], [-68.62982607057944, 45.682779129091216, 0.0], [-68.62985860391274, 45.68218472909217, 0.0], [-68.62966300391304, 45.682001795759106, 0.0], [-68.62940200391347, 45.681933129092556, 0.0]], [[-68.6192300705959, 45.6383813958268, 0.0], [-68.61883900392985, 45.638495729159956, 0.0], [-68.61841520393051, 45.63867852915968, 0.0], [-68.61756787059852, 45.63874699582624, 0.0], [-68.61737240393211, 45.6389299291593, 0.0], [-68.61750260393194, 45.63924999582548, 0.0], [-68.61776340393152, 45.63945579582514, 0.0], [-68.61851300393039, 45.63979872915792, 0.0], [-68.61877360392998, 45.64009599582414, 0.0], [-68.61883880392986, 45.64030172915716, 0.0], [-68.61968607059521, 45.640736129156494, 0.0], [-68.62020747059438, 45.64110192915592, 0.0], [-68.6207290705936, 45.6414219958221, 0.0], [-68.62108760392636, 45.6414219958221, 0.0], [-68.62157640392559, 45.64123912915568, 0.0], [-68.62177207059199, 45.64105632915596, 0.0], [-68.62173947059205, 45.64037039582371, 0.0], [-68.62160907059223, 45.64016459582405, 0.0], [-68.62128320392605, 45.64000459582428, 0.0], [-68.62063140392706, 45.640073129157486, 0.0], [-68.62024020392766, 45.64023319582395, 0.0], [-68.61978400392837, 45.640187395824, 0.0], [-68.61962100392861, 45.63998159582434, 0.0], [-68.61962100392861, 45.63977592915796, 0.0], [-68.61984920392831, 45.6395929958249, 0.0], [-68.62017507059443, 45.63947872915844, 0.0], [-68.62017520392777, 45.639089995825714, 0.0], [-68.61991447059484, 45.63870139582633, 0.0], [-68.61971887059514, 45.638541329159864, 0.0], [-68.6192300705959, 45.6383813958268, 0.0]], [[-68.69190720381641, 45.637514995828155, 0.0], [-68.69177707048328, 45.63772092916116, 0.0], [-68.69190820381641, 45.63833799582687, 0.0], [-68.6920716038162, 45.63872652915961, 0.0], [-68.69210447048278, 45.63897799582588, 0.0], [-68.69233320381579, 45.63943512915853, 0.0], [-68.69269227048187, 45.639937929157725, 0.0], [-68.69337747048081, 45.64053192915679, 0.0], [-68.6938672038134, 45.64126319582232, 0.0], [-68.69432380381267, 45.6414915291553, 0.0], [-68.69491047047842, 45.64151412915527, 0.0], [-68.69510607047812, 45.64142252915542, 0.0], [-68.69510580381149, 45.64121672915576, 0.0], [-68.69507287047821, 45.64103379582269, 0.0], [-68.69422407047949, 45.63995979582438, 0.0], [-68.694125803813, 45.63954839582499, 0.0], [-68.69360347048047, 45.63888572915937, 0.0], [-68.69262460381532, 45.63790319582756, 0.0], [-68.69220047048265, 45.637537729161465, 0.0], [-68.69190720381641, 45.637514995828155, 0.0]], [[-68.67759040383868, 45.627440529177136, 0.0], [-68.67690620383974, 45.62757799584358, 0.0], [-68.67648287050707, 45.62776112917663, 0.0], [-68.67475687050973, 45.62895072917479, 0.0], [-68.67407300384411, 45.62952252917387, 0.0], [-68.67400807051087, 45.62970539584029, 0.0], [-68.67407340384415, 45.62979692917344, 0.0], [-68.67482267050963, 45.629796595840105, 0.0], [-68.67498567050939, 45.6296821958403, 0.0], [-68.67557140384179, 45.628904595841504, 0.0], [-68.6762228038408, 45.62846999584218, 0.0], [-68.67677660383993, 45.62830972917578, 0.0], [-68.67723280383922, 45.62826372917584, 0.0], [-68.67775387050506, 45.62808059584279, 0.0], [-68.67817727050442, 45.62780599584323, 0.0], [-68.67817720383778, 45.627645995843466, 0.0], [-68.67798147050473, 45.6275089958437, 0.0], [-68.67759040383868, 45.627440529177136, 0.0]], [[-68.68029587050114, 45.62842219584229, 0.0], [-68.67983967050185, 45.628468195842174, 0.0], [-68.67759220383869, 45.62942952917405, 0.0], [-68.67736427050568, 45.62968112917366, 0.0], [-68.67746220383884, 45.62974952917352, 0.0], [-68.67775547050508, 45.62974952917352, 0.0], [-68.67899327050316, 45.62926879584097, 0.0], [-68.68085047050027, 45.629039329174645, 0.0], [-68.68127400383293, 45.628878995841546, 0.0], [-68.68127367049959, 45.62869612917518, 0.0], [-68.68029587050114, 45.62842219584229, 0.0]], [[-68.67895960383652, 45.62801139584292, 0.0], [-68.67860107050376, 45.62810299584277, 0.0], [-68.67798227050474, 45.62846912917553, 0.0], [-68.67707027050614, 45.62874392917507, 0.0], [-68.67632087050731, 45.62890432917487, 0.0], [-68.67583247050806, 45.62927032917429, 0.0], [-68.67576747050816, 45.629498929173906, 0.0], [-68.67593060384127, 45.629590329173766, 0.0], [-68.67667987050675, 45.629521395840584, 0.0], [-68.67788500383818, 45.62892632917482, 0.0], [-68.6792204705028, 45.6283085291758, 0.0], [-68.67922040383615, 45.62812559584273, 0.0], [-68.67895960383652, 45.62801139584292, 0.0]], [[-68.68270607049737, 45.62734652917726, 0.0], [-68.68251067049766, 45.62748372917707, 0.0], [-68.68231560383134, 45.62780392917654, 0.0], [-68.68195740383186, 45.62807852917615, 0.0], [-68.68195747049856, 45.628215729175906, 0.0], [-68.68264227049747, 45.62864959584192, 0.0], [-68.68270760383069, 45.62878679584168, 0.0], [-68.68283807049716, 45.62887819584154, 0.0], [-68.68293600383038, 45.62901532917465, 0.0], [-68.68319680382996, 45.62915239584112, 0.0], [-68.68352260382943, 45.62917499584108, 0.0], [-68.68345700382957, 45.62864919584189, 0.0], [-68.68335907049635, 45.62855779584203, 0.0], [-68.68332620382978, 45.62837492917566, 0.0], [-68.68313047049674, 45.628077795842785, 0.0], [-68.68299960383024, 45.627529195843636, 0.0], [-68.68286920383048, 45.62741499584382, 0.0], [-68.68270607049737, 45.62734652917726, 0.0]], [[-68.6822192038315, 45.629129929174496, 0.0], [-68.68186067049868, 45.629221529174345, 0.0], [-68.68186100383201, 45.629472995840615, 0.0], [-68.68326347049651, 45.63068399583875, 0.0], [-68.68349207049619, 45.63104979583818, 0.0], [-68.68372020382913, 45.63104972917154, 0.0], [-68.6838830038289, 45.63095812917169, 0.0], [-68.68381760382897, 45.63070659583872, 0.0], [-68.68355640382941, 45.63031819583932, 0.0], [-68.6834582704962, 45.63006672917305, 0.0], [-68.68303420383023, 45.62958679584045, 0.0], [-68.68238207049791, 45.62915279584115, 0.0], [-68.6822192038315, 45.629129929174496, 0.0]], [[-68.68038660383434, 45.621312129186606, 0.0], [-68.680387270501, 45.621975129185614, 0.0], [-68.68045247050088, 45.622043595852176, 0.0], [-68.68051840383413, 45.622729529184426, 0.0], [-68.68071400383383, 45.622912329184146, 0.0], [-68.6811048038332, 45.62282059585095, 0.0], [-68.6812020704997, 45.62222619585191, 0.0], [-68.68162527049907, 45.6219287291857, 0.0], [-68.68155967049915, 45.62147152918641, 0.0], [-68.68139660383275, 45.62135732918654, 0.0], [-68.68038660383434, 45.621312129186606, 0.0]], [[-68.63301740390784, 45.64725152914639, 0.0], [-68.63272400390832, 45.64729719581294, 0.0], [-68.63174620390981, 45.647983129145246, 0.0], [-68.63161600391004, 45.64828032914477, 0.0], [-68.6318114039097, 45.64839472914457, 0.0], [-68.63243080390873, 45.64839459581128, 0.0], [-68.63269160390837, 45.64830319581142, 0.0], [-68.6331478705743, 45.64768579581238, 0.0], [-68.63314780390766, 45.647297129146295, 0.0], [-68.63301740390784, 45.64725152914639, 0.0]], [[-68.65970847053308, 45.63897012915925, 0.0], [-68.65915447053396, 45.63897019582589, 0.0], [-68.65879600386785, 45.638970329159235, 0.0], [-68.65847007053503, 45.63910759582569, 0.0], [-68.65847020386832, 45.63922192915885, 0.0], [-68.6587636038679, 45.639336129158664, 0.0], [-68.65961100386659, 45.63933579582533, 0.0], [-68.66016527053239, 45.63967859582482, 0.0], [-68.66036080386539, 45.63967859582482, 0.0], [-68.6605236705318, 45.63960992915821, 0.0], [-68.66055607053175, 45.63935852915864, 0.0], [-68.66029520386553, 45.63915272915892, 0.0], [-68.65970847053308, 45.63897012915925, 0.0]], [[-68.62633527058489, 45.649469395809604, 0.0], [-68.62610700391855, 45.649560795809464, 0.0], [-68.62587887058561, 45.64985812914233, 0.0], [-68.62558547058603, 45.65004092914205, 0.0], [-68.62558547058603, 45.65026959580837, 0.0], [-68.62597667058543, 45.650452529141376, 0.0], [-68.62623747058501, 45.650475329141386, 0.0], [-68.62659600391783, 45.65040672914148, 0.0], [-68.62669380391765, 45.65031532914162, 0.0], [-68.62662860391777, 45.64965232914267, 0.0], [-68.62643307058471, 45.64949219580956, 0.0], [-68.62633527058489, 45.649469395809604, 0.0]], [[-68.69040647048541, 45.63618992916355, 0.0], [-68.69030907048557, 45.636532929163025, 0.0], [-68.69079867048481, 45.63712699582874, 0.0], [-68.69105947048445, 45.63728692916186, 0.0], [-68.69122247048415, 45.637286795828516, 0.0], [-68.69135280381732, 45.63721819582861, 0.0], [-68.69138500381723, 45.63685232916254, 0.0], [-68.69086300381804, 45.636372595829926, 0.0], [-68.69040647048541, 45.63618992916355, 0.0]], [[-68.68443787049472, 45.63178092917036, 0.0], [-68.68417727049513, 45.63187239583692, 0.0], [-68.68424260382835, 45.63205532916993, 0.0], [-68.68496027049389, 45.632809329168765, 0.0], [-68.6850908704937, 45.63303792916844, 0.0], [-68.6854820038264, 45.6329919291685, 0.0], [-68.685514270493, 45.63283192916873, 0.0], [-68.68512280382697, 45.63235199583619, 0.0], [-68.68443787049472, 45.63178092917036, 0.0]], [[-68.62372667058895, 45.682596329091496, 0.0], [-68.62353100392255, 45.68261919575815, 0.0], [-68.62340060392279, 45.68284772909112, 0.0], [-68.62330267058957, 45.683236395757206, 0.0], [-68.62340047058944, 45.68346499575682, 0.0], [-68.62356360392255, 45.68355639575668, 0.0], [-68.62382447058877, 45.683510795756774, 0.0], [-68.62415067058828, 45.68309919575739, 0.0], [-68.62421587058816, 45.68289352909102, 0.0], [-68.6240854705884, 45.68271052909131, 0.0], [-68.62372667058895, 45.682596329091496, 0.0]], [[-68.65077960388027, 45.64137299582217, 0.0], [-68.65038847054757, 45.641464595822015, 0.0], [-68.64980207054845, 45.641944795821246, 0.0], [-68.64980220388179, 45.64219632915422, 0.0], [-68.65009547054802, 45.64219619582087, 0.0], [-68.65051907054738, 45.64201332915451, 0.0], [-68.65081227054691, 45.641761729154894, 0.0], [-68.65091000388009, 45.641647395821735, 0.0], [-68.65091000388009, 45.64146452915537, 0.0], [-68.65077960388027, 45.64137299582217, 0.0]], [[-68.62803027058226, 45.65168692913949, 0.0], [-68.62786747058249, 45.6518241291393, 0.0], [-68.62786740391584, 45.65189272913915, 0.0], [-68.62793260391572, 45.652052729138916, 0.0], [-68.6278348039159, 45.652418529138345, 0.0], [-68.62773707058273, 45.652578595804755, 0.0], [-68.62806300391554, 45.65264712913802, 0.0], [-68.628421603915, 45.65237279580509, 0.0], [-68.62851940391482, 45.652144129138776, 0.0], [-68.62855200391476, 45.65196119580571, 0.0], [-68.62825860391524, 45.65173272913944, 0.0], [-68.62803027058226, 45.65168692913949, 0.0]], [[-68.67963687050218, 45.62096959585381, 0.0], [-68.67947400383576, 45.62096972918715, 0.0], [-68.67934380383593, 45.62106119585371, 0.0], [-68.67927940383606, 45.62188419585243, 0.0], [-68.67934467050259, 45.62197559585229, 0.0], [-68.67957280383558, 45.6220211958522, 0.0], [-68.6797680038353, 45.621723929185976, 0.0], [-68.67983260383517, 45.62110659585363, 0.0], [-68.67963687050218, 45.62096959585381, 0.0]], [[-68.66228380386241, 45.63979219582461, 0.0], [-68.66195787052959, 45.63988379582446, 0.0], [-68.66202320386282, 45.64011239582413, 0.0], [-68.66238187052892, 45.64036372915706, 0.0], [-68.6626752705285, 45.64045512915692, 0.0], [-68.66290340386143, 45.64036352915707, 0.0], [-68.6628706038615, 45.6401349958241, 0.0], [-68.66244680386217, 45.63986072915782, 0.0], [-68.66228380386241, 45.63979219582461, 0.0]], [[-68.68114420383313, 45.62951932917389, 0.0], [-68.68075320383377, 45.629565195840485, 0.0], [-68.6806554705006, 45.629656595840345, 0.0], [-68.68062307050064, 45.629816729173456, 0.0], [-68.68081867050034, 45.629953729173224, 0.0], [-68.68114460383316, 45.62995359583988, 0.0], [-68.68153560383251, 45.62986199584003, 0.0], [-68.68153540383253, 45.629633329173714, 0.0], [-68.68133967049948, 45.6295419958405, 0.0], [-68.68114420383313, 45.62951932917389, 0.0]], [[-68.62731320391669, 45.651001129140525, 0.0], [-68.62698720391722, 45.65102399580718, 0.0], [-68.62688940391735, 45.65118412914029, 0.0], [-68.6268568039174, 45.651366995806654, 0.0], [-68.62698727058387, 45.65157272913967, 0.0], [-68.62728067058345, 45.65159552913963, 0.0], [-68.62750880391638, 45.65143552913986, 0.0], [-68.62747620391644, 45.65111539580704, 0.0], [-68.62731320391669, 45.651001129140525, 0.0]], [[-68.62607500391863, 45.67413739577131, 0.0], [-68.6258140705857, 45.674251595771125, 0.0], [-68.6258140705857, 45.6745945957706, 0.0], [-68.62604240391869, 45.674731795770356, 0.0], [-68.62636847058485, 45.674663195770506, 0.0], [-68.62646640391802, 45.674571795770646, 0.0], [-68.62643367058473, 45.67429739577108, 0.0], [-68.62630320391827, 45.67418312910456, 0.0], [-68.62607500391863, 45.67413739577131, 0.0]], [[-68.63103267057761, 45.681864395759305, 0.0], [-68.63077187057797, 45.68200159575912, 0.0], [-68.63077187057797, 45.6824131290918, 0.0], [-68.63093487057773, 45.68259612909151, 0.0], [-68.6310654039109, 45.68259599575816, 0.0], [-68.63119587057736, 45.68252739575826, 0.0], [-68.63129367057718, 45.68234452909189, 0.0], [-68.63119587057736, 45.68195592909251, 0.0], [-68.63103267057761, 45.681864395759305, 0.0]], [[-68.63155107057679, 45.652029729138974, 0.0], [-68.63142067057697, 45.65205259580557, 0.0], [-68.63119247057733, 45.652189795805384, 0.0], [-68.63119247057733, 45.652281195805244, 0.0], [-68.63142080391032, 45.65262419580472, 0.0], [-68.63155107057679, 45.65264699580467, 0.0], [-68.63171407057655, 45.65264699580467, 0.0], [-68.63184447057631, 45.65216692913873, 0.0], [-68.63155107057679, 45.652029729138974, 0.0]], [[-68.67438820384365, 45.617405529192695, 0.0], [-68.67416027051064, 45.6174969958592, 0.0], [-68.67416060384397, 45.61795419585849, 0.0], [-68.67429100384379, 45.61804572919169, 0.0], [-68.67451907051009, 45.61806839585836, 0.0], [-68.67468167050987, 45.61783972919204, 0.0], [-68.67458380384335, 45.61751972919251, 0.0], [-68.67438820384365, 45.617405529192695, 0.0]], [[-68.63093440391106, 45.67697212910025, 0.0], [-68.6308040039113, 45.67697212910025, 0.0], [-68.63057567057831, 45.677132129100016, 0.0], [-68.63067347057813, 45.67742939576618, 0.0], [-68.63093440391106, 45.677497929099445, 0.0], [-68.63109747057752, 45.67740639576624, 0.0], [-68.63109747057752, 45.67710919576672, 0.0], [-68.63093440391106, 45.67697212910025, 0.0]], [[-68.62571620391918, 45.66990792911122, 0.0], [-68.62552060391948, 45.66990799577786, 0.0], [-68.62542260391962, 45.66999939577772, 0.0], [-68.62542267058632, 45.67018232911079, 0.0], [-68.62532487058644, 45.67038812911045, 0.0], [-68.62571620391918, 45.670387995777105, 0.0], [-68.625814003919, 45.670227995777395, 0.0], [-68.625814003919, 45.67009079577758, 0.0], [-68.62571620391918, 45.66990792911122, 0.0]], [[-68.60295840395452, 45.66089852912518, 0.0], [-68.60289320395458, 45.66092132912513, 0.0], [-68.60286060395464, 45.66096712912508, 0.0], [-68.60282787062135, 45.661035595791645, 0.0], [-68.60289320395458, 45.66110419579155, 0.0], [-68.60299087062111, 45.6611727957914, 0.0], [-68.60315387062087, 45.661172929124746, 0.0], [-68.6032516706207, 45.6611727957914, 0.0], [-68.60331700395398, 45.661127195791494, 0.0], [-68.60334967062056, 45.661081529124885, 0.0], [-68.60295840395452, 45.66089852912518, 0.0]]], "type": "Polygon"}, "id": "0", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/1699482", "wblabel": "GNIS_NAME: Dolby Pond"}, "type": "Feature"}, {"bbox": [-69.78301286878951, 43.933491331806465, -69.76630300214879, 43.96850019841878], "geometry": {"coordinates": [[[-69.77498906880197, 43.968412931752255, 0.0], [-69.77517420213502, 43.96644233175533, 0.0], [-69.77485800213549, 43.96614479842248, 0.0], [-69.77476560213563, 43.964566798424926, 0.0], [-69.77454446880262, 43.964246531758704, 0.0], [-69.77384780213703, 43.96433739842524, 0.0], [-69.77318246880475, 43.96458833175819, 0.0], [-69.77315020213814, 43.96495419842432, 0.0], [-69.77333960213787, 43.96527453175713, 0.0], [-69.773244402138, 43.9654115984236, 0.0], [-69.77292766880515, 43.96552573175677, 0.0], [-69.77289520213856, 43.966028798422656, 0.0], [-69.77251480213914, 43.96630279842219, 0.0], [-69.7718812688068, 43.96643953175533, 0.0], [-69.77172306880703, 43.966416531755385, 0.0], [-69.77156526880725, 43.96609619842252, 0.0], [-69.77207246880647, 43.96575359842308, 0.0], [-69.77261320213898, 43.964176331758836, 0.0], [-69.773025068805, 43.964039531759056, 0.0], [-69.77388006880369, 43.96394873175922, 0.0], [-69.7741336021366, 43.96378893175944, 0.0], [-69.7746402688025, 43.96376639842612, 0.0], [-69.77451406880266, 43.96344613175995, 0.0], [-69.77416620213654, 43.963262931760255, 0.0], [-69.7730890688049, 43.96365073175963, 0.0], [-69.77280420213867, 43.963581931759734, 0.0], [-69.77286880213859, 43.96289593176084, 0.0], [-69.77309126880488, 43.96234719842835, 0.0], [-69.77312406880486, 43.96161553176279, 0.0], [-69.77356760213746, 43.96145579842971, 0.0], [-69.77379040213714, 43.96072419843085, 0.0], [-69.774519002136, 43.9604961984312, 0.0], [-69.77464586880245, 43.96026773176493, 0.0], [-69.77410820213663, 43.959969931765386, 0.0], [-69.7736976021373, 43.95937499843296, 0.0], [-69.77385840213702, 43.957888731768605, 0.0], [-69.77360620213744, 43.95720253176967, 0.0], [-69.77313226880483, 43.95667613177051, 0.0], [-69.77281586880531, 43.956584331770614, 0.0], [-69.771738868807, 43.956926398436735, 0.0], [-69.77107426880804, 43.95688013177016, 0.0], [-69.77088560214168, 43.956102531771364, 0.0], [-69.76987320214323, 43.95573573177194, 0.0], [-69.76933606881073, 43.955163531772826, 0.0], [-69.76898946881124, 43.95411133177447, 0.0], [-69.76930720214409, 43.95347133177546, 0.0], [-69.76911826881104, 43.952922331776335, 0.0], [-69.76630300214879, 43.951776398444736, 0.0], [-69.76658820214834, 43.951570931778406, 0.0], [-69.76785460214637, 43.95145773177859, 0.0], [-69.76807626881265, 43.951343531778775, 0.0], [-69.76820386881246, 43.95086339844619, 0.0], [-69.76880546881154, 43.95074959844635, 0.0], [-69.76874260214498, 43.950520931780034, 0.0], [-69.76836326881221, 43.95017753178058, 0.0], [-69.76788826881295, 43.95026859844711, 0.0], [-69.76769880214658, 43.9500625984474, 0.0], [-69.7676678688133, 43.949605198448126, 0.0], [-69.767225268814, 43.949330398448524, 0.0], [-69.76725800214729, 43.94871299844948, 0.0], [-69.7674800688136, 43.94837013178335, 0.0], [-69.76789180214632, 43.94823333178357, 0.0], [-69.76795560214617, 43.94800473178395, 0.0], [-69.76776606881316, 43.94777593178429, 0.0], [-69.76688026881453, 43.94743199845152, 0.0], [-69.76659686881499, 43.946677198452676, 0.0], [-69.76688186881455, 43.946563131786206, 0.0], [-69.76681946881462, 43.946082798453574, 0.0], [-69.76707286881424, 43.94592293178715, 0.0], [-69.76688360214786, 43.94564839845424, 0.0], [-69.76640926881527, 43.9453277317881, 0.0], [-69.7667264688148, 43.94493939845535, 0.0], [-69.76761326881342, 43.94457433178928, 0.0], [-69.76818426881249, 43.943865998457056, 0.0], [-69.76856480214525, 43.94347753179096, 0.0], [-69.76853366881198, 43.943134531791486, 0.0], [-69.76872386881166, 43.94297459845842, 0.0], [-69.76929340214411, 43.94302079845835, 0.0], [-69.76945186881056, 43.94286079845858, 0.0], [-69.76932586881071, 43.94251779845911, 0.0], [-69.76888300214478, 43.94242579845928, 0.0], [-69.76812300214596, 43.94269959845883, 0.0], [-69.76764846881332, 43.94260773179229, 0.0], [-69.76726820214725, 43.942835998458634, 0.0], [-69.76685720214789, 43.94262993179228, 0.0], [-69.7670022021477, 43.942554398459095, 0.0], [-69.767427402147, 43.942333131792736, 0.0], [-69.76812366881262, 43.94224219845955, 0.0], [-69.76837720214553, 43.94205959845982, 0.0], [-69.76878960214492, 43.941511131794016, 0.0], [-69.7698030021433, 43.941100331794644, 0.0], [-69.77078460214182, 43.94084959846174, 0.0], [-69.7712906688077, 43.94103313179477, 0.0], [-69.77179640214024, 43.94137653179422, 0.0], [-69.77258760213903, 43.94144579846079, 0.0], [-69.77280940213865, 43.941263131794415, 0.0], [-69.77281160213863, 43.93991399846317, 0.0], [-69.77322366880469, 43.939571331797026, 0.0], [-69.7730984688049, 43.938724998465034, 0.0], [-69.77370040213725, 43.93833679846563, 0.0], [-69.77411186880329, 43.9382685984657, 0.0], [-69.77423880213644, 43.93801713179943, 0.0], [-69.77474526880235, 43.937994731799506, 0.0], [-69.77601006880036, 43.93865893179844, 0.0], [-69.77613706880015, 43.93838459846552, 0.0], [-69.77636146879979, 43.93660113180164, 0.0], [-69.77611306880021, 43.93358239847299, 0.0], [-69.77661960213277, 43.933491331806465, 0.0], [-69.77690406879896, 43.933628731806266, 0.0], [-69.77718780213189, 43.934292198471894, 0.0], [-69.77677520213251, 43.93509233180396, 0.0], [-69.7767744021325, 43.9355953318032, 0.0], [-69.77699546879882, 43.93589273180277, 0.0], [-69.77705786879875, 43.9364873318018, 0.0], [-69.77689920213231, 43.936784398468035, 0.0], [-69.77693026879894, 43.9371275318008, 0.0], [-69.77711946879862, 43.93751653180021, 0.0], [-69.77692886879896, 43.937996531799456, 0.0], [-69.77743366879815, 43.93895739846465, 0.0], [-69.77714826879861, 43.93936879846399, 0.0], [-69.77619866880008, 43.93945953179718, 0.0], [-69.77588200213387, 43.939596398463664, 0.0], [-69.77626040213329, 43.94044279846236, 0.0], [-69.77502300213524, 43.94238553179264, 0.0], [-69.77514900213504, 43.94270573179216, 0.0], [-69.77565486880093, 43.9430035317917, 0.0], [-69.77533700213473, 43.943917998456925, 0.0], [-69.77546300213453, 43.9442381317898, 0.0], [-69.77593726880048, 43.944535798456, 0.0], [-69.77593600213379, 43.94535913178805, 0.0], [-69.7756496688009, 43.94627353178663, 0.0], [-69.77523746880155, 43.94679913178584, 0.0], [-69.77507786880182, 43.947599398451246, 0.0], [-69.77551920213443, 43.948743131782805, 0.0], [-69.77602466880035, 43.94929239844862, 0.0], [-69.77637166879981, 43.95011593178066, 0.0], [-69.77820640213031, 43.95082633177958, 0.0], [-69.78000926879417, 43.951742531778166, 0.0], [-69.78019866879384, 43.952039931777676, 0.0], [-69.78032426879366, 43.952657398443364, 0.0], [-69.78060906879324, 43.95277193177657, 0.0], [-69.78105240212585, 43.952657998443385, 0.0], [-69.78181180212471, 43.95288719844302, 0.0], [-69.78209586879092, 43.95336773177564, 0.0], [-69.78285540212306, 43.95357413177527, 0.0], [-69.78301286878951, 43.9540773984412, 0.0], [-69.78278980212315, 43.955037598439674, 0.0], [-69.78297926878952, 43.95538079843914, 0.0], [-69.78110886879244, 43.95709433176984, 0.0], [-69.78110866879246, 43.957322998436155, 0.0], [-69.7815828687917, 43.95771219843556, 0.0], [-69.78091606879275, 43.95896939843357, 0.0], [-69.78088380212614, 43.95951819843276, 0.0], [-69.78056626879328, 43.960089598431864, 0.0], [-69.78088160212616, 43.96095879843051, 0.0], [-69.78075426879298, 43.9614159984298, 0.0], [-69.78084906879286, 43.961530531762946, 0.0], [-69.78126086879223, 43.96134779842987, 0.0], [-69.78179880212468, 43.96159979842952, 0.0], [-69.78243180212371, 43.96169179842934, 0.0], [-69.78233560212385, 43.962514931761405, 0.0], [-69.78246146879036, 43.96301819842728, 0.0], [-69.78090886879278, 43.9638173317594, 0.0], [-69.78021226879383, 43.96393113175924, 0.0], [-69.7790726687956, 43.96372433175952, 0.0], [-69.77761560213122, 43.964180531758814, 0.0], [-69.77672906879923, 43.96422553175876, 0.0], [-69.77638120213311, 43.963973731759154, 0.0], [-69.7764452687997, 43.96349353175992, 0.0], [-69.77666786879934, 43.96285339842757, 0.0], [-69.77660486879944, 43.96273899842771, 0.0], [-69.77631966879989, 43.962875931760834, 0.0], [-69.77616080213346, 43.96319599842701, 0.0], [-69.7758758021339, 43.96326439842693, 0.0], [-69.77562280213431, 43.96310399842719, 0.0], [-69.77546520213451, 43.96269233176116, 0.0], [-69.77514840213502, 43.96273773176108, 0.0], [-69.7752394021349, 43.96527613175715, 0.0], [-69.77549160213448, 43.965893798422826, 0.0], [-69.77571286880084, 43.96616833175574, 0.0], [-69.77583700213398, 43.967723531753336, 0.0], [-69.77558260213436, 43.96840933175224, 0.0], [-69.77498086880195, 43.96850019841878, 0.0], [-69.77498906880197, 43.968412931752255, 0.0]]], "type": "Polygon"}, "id": "1", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/5204528", "wblabel": "GNIS_NAME: Nequasset Lake"}, "type": "Feature"}, {"bbox": [-69.84051220203355, 43.925864931818296, -69.8313952687144, 43.933752931806055], "geometry": {"coordinates": [[[-69.83627280204013, 43.925864931818296, 0.0], [-69.8365576020397, 43.925864998485, 0.0], [-69.837032002039, 43.926345398484216, 0.0], [-69.83738000203846, 43.926368398484215, 0.0], [-69.83737980203841, 43.92666573181708, 0.0], [-69.83703146870562, 43.92707719848312, 0.0], [-69.83756940203813, 43.92707739848311, 0.0], [-69.83772726870455, 43.92748899848243, 0.0], [-69.83807540203736, 43.92735193181602, 0.0], [-69.83826566870374, 43.92662019848382, 0.0], [-69.83864526870315, 43.92684899848342, 0.0], [-69.83946806870188, 43.9265747984839, 0.0], [-69.84041740203372, 43.92643779848407, 0.0], [-69.84051220203355, 43.92680379848349, 0.0], [-69.8401640020341, 43.92691799848336, 0.0], [-69.83908806870244, 43.92714639848299, 0.0], [-69.83896140203598, 43.927420731815914, 0.0], [-69.83921420203558, 43.927878198481835, 0.0], [-69.83905580203583, 43.92835833181442, 0.0], [-69.8396566687016, 43.92909019847997, 0.0], [-69.83956166870172, 43.92931893181293, 0.0], [-69.83924520203556, 43.929364531812894, 0.0], [-69.8388972020361, 43.92922719847974, 0.0], [-69.83851746870334, 43.92927293181299, 0.0], [-69.83747300203828, 43.9298899984787, 0.0], [-69.83725086870533, 43.93094179847708, 0.0], [-69.83709246870552, 43.931124731810144, 0.0], [-69.83671280203947, 43.931216131810004, 0.0], [-69.83655446870637, 43.93142179847632, 0.0], [-69.83661760203961, 43.931719131809245, 0.0], [-69.83674406870608, 43.93176493180914, 0.0], [-69.83712400203882, 43.931513531809514, 0.0], [-69.83725046870529, 43.931513531809514, 0.0], [-69.83731360203853, 43.93190233180894, 0.0], [-69.83766146870465, 43.932016798475445, 0.0], [-69.83778786870448, 43.93238273180816, 0.0], [-69.83766126870466, 43.932611331807834, 0.0], [-69.8375030687049, 43.932611331807834, 0.0], [-69.83715520203879, 43.93224533180842, 0.0], [-69.83693360203915, 43.932450998474735, 0.0], [-69.83687000203923, 43.932725398474304, 0.0], [-69.8362372020402, 43.93267953180771, 0.0], [-69.83579420204092, 43.93279373180758, 0.0], [-69.83481320204243, 43.93272479847434, 0.0], [-69.83437026870979, 43.93261019847449, 0.0], [-69.83402206871034, 43.932815998474155, 0.0], [-69.833800402044, 43.933113198473734, 0.0], [-69.83338900204461, 43.933204531806894, 0.0], [-69.83307260204515, 43.933204398473606, 0.0], [-69.83240766871285, 43.933752931806055, 0.0], [-69.83209126871333, 43.93370713180616, 0.0], [-69.8313952687144, 43.93338679847329, 0.0], [-69.83149046871426, 43.93299799847392, 0.0], [-69.83183866871371, 43.93270093180769, 0.0], [-69.83202900204674, 43.93215213180855, 0.0], [-69.83240866871284, 43.932060798475334, 0.0], [-69.83266160204573, 43.932609731807815, 0.0], [-69.83297786871191, 43.932724131807674, 0.0], [-69.83329426871143, 43.93267853180771, 0.0], [-69.83345280204452, 43.93242713180814, 0.0], [-69.8334846020445, 43.93203833180871, 0.0], [-69.83380146871065, 43.931558198476125, 0.0], [-69.83408620204352, 43.931466798476265, 0.0], [-69.83462400204269, 43.931718531809224, 0.0], [-69.8350036687088, 43.931787198475774, 0.0], [-69.83582666870751, 43.93135299847643, 0.0], [-69.83617486870696, 43.9309643318104, 0.0], [-69.83627060204014, 43.92998113181193, 0.0], [-69.83611246870709, 43.9295693984792, 0.0], [-69.83636586870665, 43.92927219847968, 0.0], [-69.83712540203885, 43.92890659848024, 0.0], [-69.8368724687059, 43.928471998480916, 0.0], [-69.8369994687057, 43.92806053181488, 0.0], [-69.8368096020393, 43.927900398481825, 0.0], [-69.83665140203959, 43.927877398481826, 0.0], [-69.8365566020397, 43.92758013181566, 0.0], [-69.83668340203951, 43.92732859848269, 0.0], [-69.83627220204016, 43.92698553181657, 0.0], [-69.83611460204042, 43.92595639848486, 0.0], [-69.83627280204013, 43.925864931818296, 0.0]]], "type": "Polygon"}, "id": "2", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/5204554", "wblabel": "GNIS_NAME: Whiskeag Pond"}, "type": "Feature"}, {"bbox": [-69.41490820269422, 44.58955033078814, -69.40616886937443, 44.60146373076964], "geometry": {"coordinates": [[[-69.41208546936525, 44.58955033078814, 0.0], [-69.41314146936361, 44.589572797454764, 0.0], [-69.41339760269653, 44.589755597454484, 0.0], [-69.41359000269625, 44.590258530787025, 0.0], [-69.41429466936182, 44.591401730785265, 0.0], [-69.41435940269503, 44.59231633078383, 0.0], [-69.4144554026949, 44.59240773078369, 0.0], [-69.41410446936209, 44.593939930781346, 0.0], [-69.41378680269594, 44.597209930776216, 0.0], [-69.41404346936218, 44.59810159744154, 0.0], [-69.41423560269521, 44.59823873077465, 0.0], [-69.41426766936183, 44.59837593077441, 0.0], [-69.41490820269422, 44.59899293077348, 0.0], [-69.41478026936107, 44.599175930773185, 0.0], [-69.41442840269497, 44.59924473077308, 0.0], [-69.41417220269534, 44.599176197439874, 0.0], [-69.41321166936348, 44.5985135307742, 0.0], [-69.4128916026973, 44.59844493077435, 0.0], [-69.41221986936506, 44.59881099744041, 0.0], [-69.41212420269852, 44.599382730772845, 0.0], [-69.41222066936501, 44.60009153077175, 0.0], [-69.41234886936485, 44.600251597438216, 0.0], [-69.41247740269796, 44.60102899743697, 0.0], [-69.41234946936481, 44.601211930770035, 0.0], [-69.41180560269902, 44.601417930769685, 0.0], [-69.41145360269957, 44.60146373076964, 0.0], [-69.41094126936702, 44.6010751974369, 0.0], [-69.41065286936748, 44.60070939743747, 0.0], [-69.4104920693677, 44.599726197439, 0.0], [-69.41036400270127, 44.59947479743937, 0.0], [-69.40978766936882, 44.59908619743999, 0.0], [-69.40943546936938, 44.5987205307739, 0.0], [-69.40853846937074, 44.597234530776234, 0.0], [-69.40684140270673, 44.59558859744544, 0.0], [-69.40636106937416, 44.5952687974459, 0.0], [-69.40616886937443, 44.594971597446374, 0.0], [-69.40741680270582, 44.594445130780514, 0.0], [-69.40808846937142, 44.59396479744794, 0.0], [-69.40885586937026, 44.59311853078259, 0.0], [-69.41096586936698, 44.59003093078741, 0.0], [-69.41157360269938, 44.589664797454645, 0.0], [-69.41208546936525, 44.58955033078814, 0.0]]], "type": "Polygon"}, "id": "4", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/6709519", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-69.42599266934366, 44.544778997524304, -69.37375186942472, 44.6174525974115], "geometry": {"coordinates": [[[-69.38028280274796, 44.615098397415125, 0.0], [-69.38021880274806, 44.61505273074857, 0.0], [-69.38025080274798, 44.61448099741608, 0.0], [-69.38114686941327, 44.61336053075115, 0.0], [-69.38089066941365, 44.61294893075183, 0.0], [-69.3800902694149, 44.61237733075268, 0.0], [-69.37896986941666, 44.61182873075353, 0.0], [-69.3787458027503, 44.61162279742052, 0.0], [-69.37871380275038, 44.61143993075416, 0.0], [-69.38050600274761, 44.60958773075703, 0.0], [-69.38089020274703, 44.6091075307578, 0.0], [-69.38117806941324, 44.6084443307588, 0.0], [-69.38117800274654, 44.60789553075966, 0.0], [-69.38101786941348, 44.60748399742698, 0.0], [-69.38072986941393, 44.607049530760946, 0.0], [-69.3794814027492, 44.60624933076224, 0.0], [-69.37887320275013, 44.606020730762566, 0.0], [-69.37874520275034, 44.605883397429466, 0.0], [-69.37896926941664, 44.60574619742965, 0.0], [-69.38021740274803, 44.605471797430084, 0.0], [-69.38095346941356, 44.60501439743081, 0.0], [-69.38127360274643, 44.60441993076506, 0.0], [-69.38140146941288, 44.60405399743229, 0.0], [-69.38124146941311, 44.60405399743229, 0.0], [-69.3803134027479, 44.60480859743109, 0.0], [-69.37960920274901, 44.60487733076434, 0.0], [-69.37749680275226, 44.60400859743237, 0.0], [-69.37708066941957, 44.603962797432416, 0.0], [-69.37621646942091, 44.60453453076485, 0.0], [-69.37576840275494, 44.604648797431366, 0.0], [-69.37496820275618, 44.60462599743141, 0.0], [-69.37448806942359, 44.604260197431984, 0.0], [-69.37397600275773, 44.603688597432836, 0.0], [-69.3737838694247, 44.603299797433465, 0.0], [-69.37375186942472, 44.602865330767486, 0.0], [-69.37420006942403, 44.601836397435704, 0.0], [-69.37445606942367, 44.6017449307692, 0.0], [-69.3747122027566, 44.601676330769294, 0.0], [-69.37506420275605, 44.60181353076911, 0.0], [-69.37525626942244, 44.60275099743433, 0.0], [-69.37535226942225, 44.60279679743422, 0.0], [-69.37538426942223, 44.60297973076729, 0.0], [-69.37570440275505, 44.60323119743356, 0.0], [-69.37580040275492, 44.60341399743328, 0.0], [-69.3760564027545, 44.60352833076644, 0.0], [-69.37682466941999, 44.60361979743294, 0.0], [-69.37720846941937, 44.603391130766624, 0.0], [-69.37762460275206, 44.6029795307673, 0.0], [-69.37762460275206, 44.60247653076806, 0.0], [-69.37788060275165, 44.60217919743519, 0.0], [-69.37944886941591, 44.602133397435296, 0.0], [-69.38005686941494, 44.601721797435914, 0.0], [-69.38108106941337, 44.601218597436684, 0.0], [-69.38111300274664, 44.60087559743721, 0.0], [-69.38095300274688, 44.60053273077108, 0.0], [-69.38095286941359, 44.60005253077185, 0.0], [-69.38149666941274, 44.598954930773516, 0.0], [-69.38152846941267, 44.59742279744256, 0.0], [-69.38140046941288, 44.597194197442946, 0.0], [-69.38149620274606, 44.59641673077749, 0.0], [-69.38191226941206, 44.596187997444474, 0.0], [-69.38223226941159, 44.59614233077792, 0.0], [-69.38268026941091, 44.59593639744486, 0.0], [-69.38380020274246, 44.595090330779556, 0.0], [-69.38421600274182, 44.59444993078051, 0.0], [-69.38463186940788, 44.59360393078185, 0.0], [-69.38527200274018, 44.5935351974486, 0.0], [-69.38616786940548, 44.59364939744842, 0.0], [-69.38645580273834, 44.593169197449186, 0.0], [-69.38658366940484, 44.59255179745014, 0.0], [-69.38642346940509, 44.591957330784396, 0.0], [-69.38616746940545, 44.59161439745162, 0.0], [-69.38619940273878, 44.59152293078506, 0.0], [-69.38607146940564, 44.591477130785165, 0.0], [-69.38603946940566, 44.591225597452194, 0.0], [-69.38597540273912, 44.59115713078563, 0.0], [-69.38597526940578, 44.590859797452765, 0.0], [-69.38619920273874, 44.59051679745329, 0.0], [-69.38645506940503, 44.590470997453394, 0.0], [-69.38658306940482, 44.59056253078654, 0.0], [-69.38674340273792, 44.59138559745196, 0.0], [-69.38728760273705, 44.59186573078455, 0.0], [-69.38747960273679, 44.59186573078455, 0.0], [-69.38763940273651, 44.59177419745134, 0.0], [-69.38824706940227, 44.59010499745392, 0.0], [-69.38853486940178, 44.589693330787895, 0.0], [-69.38955860273353, 44.58900713078896, 0.0], [-69.39045446939883, 44.58854973078968, 0.0], [-69.39208580272964, 44.587200397458446, 0.0], [-69.39246980272901, 44.5872003307918, 0.0], [-69.39259820272883, 44.588549330789704, 0.0], [-69.392918469395, 44.58946393078827, 0.0], [-69.39307860272805, 44.58960113078808, 0.0], [-69.39343060272756, 44.589783930787746, 0.0], [-69.39423066939298, 44.58989813078762, 0.0], [-69.39442246939268, 44.589532197454844, 0.0], [-69.39413426939313, 44.58912073078881, 0.0], [-69.39413426939313, 44.58884633078924, 0.0], [-69.39442226939263, 44.588800597455986, 0.0], [-69.39467826939227, 44.5889147974558, 0.0], [-69.39599060272354, 44.58994353078754, 0.0], [-69.39669500272248, 44.59083513078616, 0.0], [-69.39691906938879, 44.59097233078592, 0.0], [-69.39691900272214, 44.59106373078578, 0.0], [-69.397431269388, 44.591612530784914, 0.0], [-69.39784740272069, 44.59177239745134, 0.0], [-69.39823140272006, 44.59179519745129, 0.0], [-69.3985512027196, 44.59172659745144, 0.0], [-69.39877506938592, 44.591474997451826, 0.0], [-69.39883866938578, 44.59053739745326, 0.0], [-69.39861440271949, 44.5898057974544, 0.0], [-69.39816606938683, 44.589074130788845, 0.0], [-69.39771780272088, 44.588502597456454, 0.0], [-69.39771780272088, 44.58836539745664, 0.0], [-69.39723760272165, 44.58770233079099, 0.0], [-69.39627720272313, 44.58651353079284, 0.0], [-69.39586106939043, 44.586216397459964, 0.0], [-69.39538100272449, 44.58603359746024, 0.0], [-69.39493306939187, 44.58603359746024, 0.0], [-69.3938772693935, 44.58623959745995, 0.0], [-69.39243766939575, 44.58678873079242, 0.0], [-69.39198966939642, 44.58676593079247, 0.0], [-69.39122166939762, 44.586537397459495, 0.0], [-69.39083766939825, 44.586537397459495, 0.0], [-69.38994206939964, 44.58710933079192, 0.0], [-69.38843826940195, 44.58752099745794, 0.0], [-69.38728666940375, 44.588435797456555, 0.0], [-69.3868066694045, 44.58850453078975, 0.0], [-69.38671066940464, 44.58841313078989, 0.0], [-69.3871264027373, 44.58758993079118, 0.0], [-69.3871902694039, 44.58701819745875, 0.0], [-69.38709420273739, 44.58697253079214, 0.0], [-69.38709420273739, 44.58669813079257, 0.0], [-69.38751000273675, 44.58624073079329, 0.0], [-69.38850186940186, 44.58566879746081, 0.0], [-69.38882166940135, 44.58539439746124, 0.0], [-69.38920526940075, 44.584250997463016, 0.0], [-69.38936486940054, 44.58297059746502, 0.0], [-69.38952460273362, 44.58249039746573, 0.0], [-69.38990846939964, 44.58210159746636, 0.0], [-69.39045226939885, 44.58180419746685, 0.0], [-69.39109220273116, 44.58180413080015, 0.0], [-69.3915082027305, 44.582078397466375, 0.0], [-69.39237240272917, 44.58301579746495, 0.0], [-69.3927564027286, 44.58319859746467, 0.0], [-69.39301240272817, 44.58322153079797, 0.0], [-69.3933000693944, 44.583015597464964, 0.0], [-69.39352400272742, 44.582649797465535, 0.0], [-69.39342780272756, 44.5821923974662, 0.0], [-69.39307586939475, 44.581872330800024, 0.0], [-69.39227560272934, 44.58079779746839, 0.0], [-69.39195560272981, 44.58054633080212, 0.0], [-69.39173160273015, 44.58052339746882, 0.0], [-69.39131580273084, 44.58061499746867, 0.0], [-69.39042020273223, 44.581278330800956, 0.0], [-69.38990826939965, 44.581392730800815, 0.0], [-69.3896202694001, 44.581278397467656, 0.0], [-69.38942826940041, 44.58102699746803, 0.0], [-69.38942820273377, 44.580523930802144, 0.0], [-69.39045160273218, 44.57938039747057, 0.0], [-69.39064326939854, 44.578397130805456, 0.0], [-69.39032306939902, 44.57768833080655, 0.0], [-69.38990720273301, 44.57734539747372, 0.0], [-69.38990706939967, 44.57725393080722, 0.0], [-69.38913906940087, 44.57652233080836, 0.0], [-69.38913906940087, 44.57622499747549, 0.0], [-69.38955460273354, 44.575744797476204, 0.0], [-69.39054626939867, 44.57524159747703, 0.0], [-69.39096220273137, 44.57521873081038, 0.0], [-69.39211380272957, 44.57496699747742, 0.0], [-69.3930092027282, 44.57457813081135, 0.0], [-69.39368100272713, 44.574120597478725, 0.0], [-69.39492800272524, 44.5729313308139, 0.0], [-69.39531186939126, 44.5729313308139, 0.0], [-69.39569606939068, 44.57398313081228, 0.0], [-69.39588820272371, 44.57430319747846, 0.0], [-69.39585626939044, 44.57446313081158, 0.0], [-69.39627240272313, 44.57501193081072, 0.0], [-69.39691226938879, 44.57512613081053, 0.0], [-69.39784000272067, 44.5751487308105, 0.0], [-69.39844780271977, 44.57501139747734, 0.0], [-69.39908746938539, 44.574622530811325, 0.0], [-69.4002064693837, 44.5734331974798, 0.0], [-69.40046240271664, 44.5733417308133, 0.0], [-69.40087840271599, 44.57366173081277, 0.0], [-69.40110266938228, 44.57430193081183, 0.0], [-69.40113486938225, 44.57494219747747, 0.0], [-69.40135900271525, 44.575330930810196, 0.0], [-69.40196706938093, 44.57567373080968, 0.0], [-69.40327880271224, 44.57599353080917, 0.0], [-69.40398280271114, 44.57608473080904, 0.0], [-69.40491040270973, 44.57606159747576, 0.0], [-69.40542200270892, 44.57571853080958, 0.0], [-69.40622126937433, 44.574780730811085, 0.0], [-69.4067972027068, 44.57478059747774, 0.0], [-69.40721326937279, 44.57519199747708, 0.0], [-69.40721360270612, 44.57580939747612, 0.0], [-69.40676606937348, 44.57656399747498, 0.0], [-69.40663840270702, 44.57706719747415, 0.0], [-69.40660666937373, 44.577615997473345, 0.0], [-69.40673486937357, 44.57795893080612, 0.0], [-69.40753486937228, 44.5781187308059, 0.0], [-69.40852646937077, 44.577843997472996, 0.0], [-69.4092938693696, 44.57731793080711, 0.0], [-69.41002906936842, 44.57638013080856, 0.0], [-69.41041286936786, 44.576128530808944, 0.0], [-69.4116924026992, 44.57596793080921, 0.0], [-69.41201206936535, 44.575784930809505, 0.0], [-69.41249160269797, 44.57523593081038, 0.0], [-69.4128430026974, 44.57434399747842, 0.0], [-69.41290660269732, 44.57379519747923, 0.0], [-69.41290560269732, 44.57242333081473, 0.0], [-69.41271340269759, 44.57212613081521, 0.0], [-69.41232926936488, 44.57171473081581, 0.0], [-69.41008906936833, 44.57020619748482, 0.0], [-69.40980100270212, 44.56981759748544, 0.0], [-69.40980086936878, 44.56968039748563, 0.0], [-69.40970486936897, 44.56963473081902, 0.0], [-69.40928840270294, 44.568560197487386, 0.0], [-69.40906440270328, 44.56840019748762, 0.0], [-69.40877640270372, 44.56835459748771, 0.0], [-69.40861660270394, 44.568514730820766, 0.0], [-69.408585002704, 44.56913213081981, 0.0], [-69.40874526937046, 44.56961219748575, 0.0], [-69.40887326937025, 44.56970359748561, 0.0], [-69.40887340270359, 44.56984079748537, 0.0], [-69.40922560270303, 44.57029799748466, 0.0], [-69.40929046936958, 44.57205859748194, 0.0], [-69.40903486936998, 44.57237893081481, 0.0], [-69.40823546937122, 44.57283639748073, 0.0], [-69.4076596693721, 44.57290519748062, 0.0], [-69.40705166937306, 44.572516730814584, 0.0], [-69.40698760270647, 44.57235673081482, 0.0], [-69.40682760270676, 44.57221953081506, 0.0], [-69.40682740270677, 44.571945130815436, 0.0], [-69.40711520270628, 44.57162493081597, 0.0], [-69.40762666937218, 44.5712359974832, 0.0], [-69.40833000270442, 44.57045839748446, 0.0], [-69.40826580270453, 44.57004679748508, 0.0], [-69.4080736027048, 44.56965813081899, 0.0], [-69.40765740270547, 44.56917813081975, 0.0], [-69.40602566937463, 44.56840099748763, 0.0], [-69.40500200270958, 44.56828713082115, 0.0], [-69.40458606937688, 44.56808139748813, 0.0], [-69.40439400271049, 44.567646997488794, 0.0], [-69.40429786937733, 44.567601330822185, 0.0], [-69.40413780271092, 44.5670753974897, 0.0], [-69.40426460271073, 44.565063197492805, 0.0], [-69.40404066937771, 44.56476599749328, 0.0], [-69.40295306937941, 44.564743330826616, 0.0], [-69.40253706938006, 44.56442339749378, 0.0], [-69.40333606937884, 44.563394130828726, 0.0], [-69.40381546937806, 44.56252513083007, 0.0], [-69.40391106937795, 44.56190759749768, 0.0], [-69.40384686937801, 44.56142759749844, 0.0], [-69.40371886937822, 44.561267530832026, 0.0], [-69.40384660271138, 44.560947397499206, 0.0], [-69.40413426937761, 44.56060433083309, 0.0], [-69.40416606937754, 44.56030713083351, 0.0], [-69.40400606937777, 44.56016993083375, 0.0], [-69.40339826937873, 44.56003293083393, 0.0], [-69.40317426937906, 44.55984999750092, 0.0], [-69.40397326937784, 44.558729330836, 0.0], [-69.40403706937775, 44.55840913083648, 0.0], [-69.40365320271167, 44.558157730836854, 0.0], [-69.40326940271228, 44.558157797503554, 0.0], [-69.40151100271498, 44.559187197501956, 0.0], [-69.40128706938202, 44.559118730835394, 0.0], [-69.40128700271532, 44.55886719750242, 0.0], [-69.40179806938119, 44.55776953083745, 0.0], [-69.40205386938084, 44.557655130837645, 0.0], [-69.40221366938056, 44.55728919750487, 0.0], [-69.40160566938152, 44.55676353083902, 0.0], [-69.40160566938152, 44.556671997505816, 0.0], [-69.40205326938081, 44.556374530839605, 0.0], [-69.40211700271408, 44.55584859750712, 0.0], [-69.40189280271437, 44.55532279750793, 0.0], [-69.4019562027143, 44.55408799750984, 0.0], [-69.40227566938046, 44.5534247975109, 0.0], [-69.40365020271167, 44.55264693084541, 0.0], [-69.40457760271022, 44.552417997512464, 0.0], [-69.40476926937663, 44.552212197512745, 0.0], [-69.40492866937637, 44.551388930847395, 0.0], [-69.40496026937632, 44.55079439751495, 0.0], [-69.40464026937678, 44.550199997515904, 0.0], [-69.40476760270991, 44.54917099751748, 0.0], [-69.40470360271001, 44.548942397517806, 0.0], [-69.4041276693776, 44.54846239751856, 0.0], [-69.4037118027116, 44.547982330852676, 0.0], [-69.40377546937816, 44.5476163975199, 0.0], [-69.40399926937778, 44.547501997520044, 0.0], [-69.40457486937692, 44.54745613085345, 0.0], [-69.40556620270871, 44.547707330853086, 0.0], [-69.40614166937445, 44.547729997519696, 0.0], [-69.40636540270748, 44.54761553085325, 0.0], [-69.40658906937375, 44.547318197520326, 0.0], [-69.40687640270664, 44.54638059752182, 0.0], [-69.40764326937216, 44.545580130856365, 0.0], [-69.40837840270433, 44.54512259752374, 0.0], [-69.4091776027031, 44.54484793085754, 0.0], [-69.41020060270148, 44.544778997524304, 0.0], [-69.41093626936703, 44.54503033085723, 0.0], [-69.4112878693665, 44.545053130857184, 0.0], [-69.41116040270003, 44.54553333085647, 0.0], [-69.4107448693673, 44.54592213085584, 0.0], [-69.41023360270145, 44.5461967308554, 0.0], [-69.40927466936961, 44.54688299752104, 0.0], [-69.40879546937038, 44.54761493085323, 0.0], [-69.40860466937067, 44.54914699751754, 0.0], [-69.4083494027044, 44.54999313084954, 0.0], [-69.40834946937105, 44.55026753084911, 0.0], [-69.40876540270375, 44.55045033084883, 0.0], [-69.40978866936882, 44.550632930848565, 0.0], [-69.41071626936736, 44.550929797514755, 0.0], [-69.4109722027003, 44.55115839751437, 0.0], [-69.41110046936677, 44.55166139751361, 0.0], [-69.41174046936578, 44.55234733084586, 0.0], [-69.41202840269864, 44.55243859751238, 0.0], [-69.41369106936276, 44.5523007975126, 0.0], [-69.41426686936188, 44.55248353084568, 0.0], [-69.41458706936135, 44.55332939751105, 0.0], [-69.41551566935993, 44.55476973084211, 0.0], [-69.4155478026932, 44.55490693084192, 0.0], [-69.41570780269296, 44.555043997508335, 0.0], [-69.41593206935926, 44.55568413084069, 0.0], [-69.41596480269254, 44.556690197505816, 0.0], [-69.41577326935953, 44.55733053083816, 0.0], [-69.4158062026928, 44.55838239750318, 0.0], [-69.41641540269188, 44.5605773308331, 0.0], [-69.41632020269202, 44.56153773083162, 0.0], [-69.41596886935923, 44.56222379749721, 0.0], [-69.41584100269273, 44.56231539749706, 0.0], [-69.41558666935981, 44.56444199749376, 0.0], [-69.4157146693596, 44.56446493082706, 0.0], [-69.41574680269292, 44.56469353082673, 0.0], [-69.41616286935891, 44.56503633082616, 0.0], [-69.41776200268976, 44.56492133082634, 0.0], [-69.42009726935282, 44.56540059749227, 0.0], [-69.42073726935183, 44.56576619749171, 0.0], [-69.42118546935114, 44.566246197490955, 0.0], [-69.42137780268416, 44.56677199749015, 0.0], [-69.42205026934977, 44.56777779748859, 0.0], [-69.42211506934967, 44.56846393082088, 0.0], [-69.42166760268373, 44.569058530819916, 0.0], [-69.42166786935036, 44.56937859748609, 0.0], [-69.42205200268313, 44.56974439748552, 0.0], [-69.4228518693485, 44.56981253081875, 0.0], [-69.4232040026813, 44.57008679748503, 0.0], [-69.42355626934744, 44.57068119748408, 0.0], [-69.4235886026807, 44.57102413081691, 0.0], [-69.42368460268057, 44.57109273081676, 0.0], [-69.42381306934703, 44.57180153081566, 0.0], [-69.42406960267999, 44.57241879748142, 0.0], [-69.42451786934595, 44.57292173081396, 0.0], [-69.42455000267921, 44.57308173081367, 0.0], [-69.42544666934452, 44.574155930812026, 0.0], [-69.42573526934405, 44.574978997477444, 0.0], [-69.42583140267726, 44.575024730810696, 0.0], [-69.42599266934366, 44.576419530808494, 0.0], [-69.4256092026776, 44.57685413080782, 0.0], [-69.42522520267818, 44.576831397474564, 0.0], [-69.42471320267896, 44.576602930808235, 0.0], [-69.42439280267945, 44.57621453080884, 0.0], [-69.42436066934619, 44.575917197475974, 0.0], [-69.42413640267989, 44.57548279747664, 0.0], [-69.42381606934703, 44.57516293081045, 0.0], [-69.42356020268079, 44.57507153081059, 0.0], [-69.42292040268177, 44.57518613081044, 0.0], [-69.42071426935183, 44.57662759747484, 0.0], [-69.41991520268641, 44.577336730807076, 0.0], [-69.41975540268669, 44.57763413080664, 0.0], [-69.41975586935337, 44.57815999747248, 0.0], [-69.42033300268577, 44.57980613080326, 0.0], [-69.42033466935243, 44.58190993080001, 0.0], [-69.42020760268599, 44.58303033079824, 0.0], [-69.41976100268664, 44.584402530796126, 0.0], [-69.41915386935426, 44.585683330794154, 0.0], [-69.41905800268773, 44.585728997460706, 0.0], [-69.41915406935425, 44.58595773079372, 0.0], [-69.42027466935252, 44.586734597459156, 0.0], [-69.42027480268587, 44.586940397458875, 0.0], [-69.41877180268818, 44.58790139745736, 0.0], [-69.41829180268894, 44.58783299745744, 0.0], [-69.41726760269052, 44.587513330791296, 0.0], [-69.41678740269128, 44.58717053079181, 0.0], [-69.41582660269279, 44.58598179746036, 0.0], [-69.41566560269302, 44.58451853079595, 0.0], [-69.4155372693599, 44.584198397463126, 0.0], [-69.41508900269389, 44.583672730797275, 0.0], [-69.41444880269489, 44.58323853079793, 0.0], [-69.41441646936164, 44.58264393079884, 0.0], [-69.41409606936213, 44.58216379746625, 0.0], [-69.41380800269593, 44.58198099746653, 0.0], [-69.41227226936496, 44.582004397466505, 0.0], [-69.41121666936658, 44.58241639746586, 0.0], [-69.41092886936701, 44.582370730799255, 0.0], [-69.41044880270113, 44.58216513079958, 0.0], [-69.40840020270429, 44.58067959746859, 0.0], [-69.40839946937098, 44.57951339747041, 0.0], [-69.40823940270457, 44.57930759747069, 0.0], [-69.4080154027049, 44.57921619747083, 0.0], [-69.40763160270546, 44.57928493080408, 0.0], [-69.40670440270691, 44.58022273080263, 0.0], [-69.40596906937475, 44.58106899746798, 0.0], [-69.40526546937582, 44.58168653080031, 0.0], [-69.40491400270969, 44.58246399746582, 0.0], [-69.40504320270952, 44.584521997462616, 0.0], [-69.40450000271034, 44.586054197460214, 0.0], [-69.4039244693779, 44.58683179745901, 0.0], [-69.40312480271251, 44.587357997458184, 0.0], [-69.40222906938055, 44.58770119745765, 0.0], [-69.40114126938221, 44.587724197457646, 0.0], [-69.40030926938351, 44.587495930791306, 0.0], [-69.39966906938452, 44.587153130791876, 0.0], [-69.39928506938509, 44.587153130791876, 0.0], [-69.39899706938559, 44.58724459745838, 0.0], [-69.39893326938568, 44.587450530791386, 0.0], [-69.39909326938539, 44.58765619745776, 0.0], [-69.39928566938511, 44.588502330789765, 0.0], [-69.39944580271822, 44.58877659745599, 0.0], [-69.39999066938401, 44.59037699745352, 0.0], [-69.40021466938367, 44.59071999745299, 0.0], [-69.40040700271669, 44.59117719745228, 0.0], [-69.40082320271608, 44.59168019745147, 0.0], [-69.40136740271521, 44.592091730784205, 0.0], [-69.40274366937973, 44.59257153078346, 0.0], [-69.40293580271276, 44.592708730783215, 0.0], [-69.40290380271284, 44.59302879744939, 0.0], [-69.4026478693799, 44.59318899744915, 0.0], [-69.4017520693813, 44.59350933078201, 0.0], [-69.40159220271488, 44.593875197448085, 0.0], [-69.40159240271487, 44.59417253078095, 0.0], [-69.40181646938117, 44.594469730780474, 0.0], [-69.40239280271362, 44.594926797446476, 0.0], [-69.40252086938011, 44.59513259744614, 0.0], [-69.40239360271363, 44.59627593077772, 0.0], [-69.40268160271319, 44.59648159744404, 0.0], [-69.40383386937805, 44.59673279744368, 0.0], [-69.40402586937773, 44.596869997443434, 0.0], [-69.40405880271106, 44.598333397441195, 0.0], [-69.4041868693775, 44.59860779744076, 0.0], [-69.40562746937525, 44.59938473077284, 0.0], [-69.40562760270859, 44.59952193077265, 0.0], [-69.40533960270903, 44.599636397439156, 0.0], [-69.40489146937642, 44.599567930772594, 0.0], [-69.40351506937856, 44.59908819743998, 0.0], [-69.40284306937957, 44.59920273077313, 0.0], [-69.40236326938032, 44.59982013077217, 0.0], [-69.40146740271507, 44.60025493077154, 0.0], [-69.40095526938251, 44.60014059743838, 0.0], [-69.40053900271653, 44.599683397439094, 0.0], [-69.4006986693829, 44.59870013077392, 0.0], [-69.4006664027163, 44.59833433077449, 0.0], [-69.40015406938375, 44.59755699744238, 0.0], [-69.3998658693842, 44.59735133077601, 0.0], [-69.3998658693842, 44.59725979744286, 0.0], [-69.39890546938568, 44.596368197444235, 0.0], [-69.39682466938893, 44.594950997446404, 0.0], [-69.39660060272263, 44.594836730779946, 0.0], [-69.3962166027232, 44.594905397446496, 0.0], [-69.39631280272306, 44.59547713077893, 0.0], [-69.39647286938947, 44.595751397445156, 0.0], [-69.39663300272258, 44.59600293077813, 0.0], [-69.39656920272267, 44.596551730777264, 0.0], [-69.39634526938966, 44.59671193077702, 0.0], [-69.39608940272342, 44.59671193077702, 0.0], [-69.39551320272432, 44.59630039744434, 0.0], [-69.39471246939223, 44.59490573077983, 0.0], [-69.39452040272585, 44.59479139744667, 0.0], [-69.3941682027264, 44.59421979744758, 0.0], [-69.39378420272698, 44.593922597448, 0.0], [-69.39317620272794, 44.59396859744794, 0.0], [-69.39272826939526, 44.5941743974476, 0.0], [-69.39180040273004, 44.5948605307799, 0.0], [-69.39026460273243, 44.59540953077902, 0.0], [-69.39007260273274, 44.59556959744543, 0.0], [-69.39000880273284, 44.596392797444196, 0.0], [-69.39010486939935, 44.59643859744409, 0.0], [-69.39013700273267, 44.59671299744366, 0.0], [-69.39023286939914, 44.59678153077692, 0.0], [-69.39023306939919, 44.596987330776585, 0.0], [-69.3906812027318, 44.5977417974421, 0.0], [-69.39135360273076, 44.5984963974409, 0.0], [-69.39208980272963, 44.59886213077368, 0.0], [-69.39237766939584, 44.59879339744043, 0.0], [-69.39256966939553, 44.59831313077456, 0.0], [-69.39301760272815, 44.59801579744163, 0.0], [-69.39356166939399, 44.598084330774896, 0.0], [-69.39615440272331, 44.59927279743971, 0.0], [-69.39663446938926, 44.59936419743957, 0.0], [-69.39749860272121, 44.59936399743958, 0.0], [-69.39788260272064, 44.59945539743944, 0.0], [-69.39826706938669, 44.600324197438056, 0.0], [-69.39865140271945, 44.60078153077069, 0.0], [-69.39865200271942, 44.602153397435245, 0.0], [-69.39788466938728, 44.60405153076562, 0.0], [-69.39740460272134, 44.604165930765475, 0.0], [-69.3942360027263, 44.603983597432375, 0.0], [-69.39327546939444, 44.60341219743327, 0.0], [-69.39301940272816, 44.60311499743375, 0.0], [-69.39282706939514, 44.60217753076853, 0.0], [-69.39234680272921, 44.60165173076933, 0.0], [-69.39186666939662, 44.60151453076958, 0.0], [-69.39058646939861, 44.601674797435976, 0.0], [-69.39001060273284, 44.602177930768505, 0.0], [-69.3897548693999, 44.60320693076693, 0.0], [-69.38933900273389, 44.60403019743234, 0.0], [-69.38905106940098, 44.60439613076511, 0.0], [-69.38725966940376, 44.60839793075888, 0.0], [-69.38722780273719, 44.608946597424676, 0.0], [-69.38738800273694, 44.609175330757694, 0.0], [-69.38806026940256, 44.60960973075697, 0.0], [-69.38828440273551, 44.6098611974233, 0.0], [-69.38844446940192, 44.61024999742267, 0.0], [-69.38850880273515, 44.611004530754826, 0.0], [-69.38876520273476, 44.61217059741966, 0.0], [-69.38918166940078, 44.61306233075163, 0.0], [-69.38988606939972, 44.61358813075083, 0.0], [-69.39055840273198, 44.61388533075035, 0.0], [-69.39113466939779, 44.61434253074964, 0.0], [-69.39196726939645, 44.615279930748216, 0.0], [-69.39199960272975, 44.61605733074697, 0.0], [-69.39167960273028, 44.6165375974129, 0.0], [-69.39113560273108, 44.61692639741233, 0.0], [-69.38975906939987, 44.61740679741155, 0.0], [-69.38918286940077, 44.6174525974115, 0.0], [-69.3870700027374, 44.617178530745264, 0.0], [-69.38591740273921, 44.61683573074578, 0.0], [-69.3843806027416, 44.61624133074673, 0.0], [-69.38053886941424, 44.61505259741523, 0.0], [-69.38028280274796, 44.615098397415125, 0.0]], [[-69.3927218693953, 44.575904397475995, 0.0], [-69.39166620273028, 44.576041797475796, 0.0], [-69.39147426939724, 44.57620193080885, 0.0], [-69.3915064027305, 44.57643053080852, 0.0], [-69.39192240272985, 44.57677353080794, 0.0], [-69.39243446939577, 44.57745919747356, 0.0], [-69.39246646939569, 44.57757359747342, 0.0], [-69.39275446939524, 44.578053730806005, 0.0], [-69.3927866027285, 44.57835099747217, 0.0], [-69.392914669395, 44.578533930805236, 0.0], [-69.39313906939464, 44.57940279747055, 0.0], [-69.39365106939385, 44.57985999746984, 0.0], [-69.39467486939225, 44.58036293080238, 0.0], [-69.3957308693906, 44.581048597468, 0.0], [-69.39653086938938, 44.58118573080111, 0.0], [-69.39678680272232, 44.580934130801495, 0.0], [-69.39678660272233, 44.58031673080245, 0.0], [-69.39637020272295, 44.57940219747053, 0.0], [-69.3958902027237, 44.57887639747139, 0.0], [-69.39585820272379, 44.57867059747167, 0.0], [-69.39473766939216, 44.57709299747415, 0.0], [-69.39358566939399, 44.576178530808875, 0.0], [-69.3927218693953, 44.575904397475995, 0.0]], [[-69.39346046939414, 44.58351873079749, 0.0], [-69.3919566693965, 44.58367899746389, 0.0], [-69.39134880273076, 44.58393059746351, 0.0], [-69.39083686939824, 44.58427359746298, 0.0], [-69.39013326939931, 44.58454819746254, 0.0], [-69.39016526939929, 44.58477679746221, 0.0], [-69.39042140273222, 44.58525699746144, 0.0], [-69.3906134027319, 44.5852569307948, 0.0], [-69.3908052693983, 44.584799597462165, 0.0], [-69.39109300273117, 44.58450233079594, 0.0], [-69.39157286939707, 44.584227797463086, 0.0], [-69.39208480272964, 44.58406773079662, 0.0], [-69.39346060272749, 44.58411319746324, 0.0], [-69.39387646939349, 44.58402159746339, 0.0], [-69.39416426939306, 44.58383859746368, 0.0], [-69.39406826939319, 44.58367853079727, 0.0], [-69.39346046939414, 44.58351873079749, 0.0]], [[-69.41648906935842, 44.573519597479674, 0.0], [-69.41594540269261, 44.57358839747957, 0.0], [-69.41565760269305, 44.57370279747937, 0.0], [-69.41540206936008, 44.57429739747846, 0.0], [-69.41537060269349, 44.57502919747736, 0.0], [-69.41553060269325, 44.57518919747707, 0.0], [-69.41629820269202, 44.57484579747762, 0.0], [-69.41674566935802, 44.57434259747839, 0.0], [-69.41674526935799, 44.5737479974793, 0.0], [-69.41648906935842, 44.573519597479674, 0.0]]], "type": "Polygon"}, "id": "6", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/6709651", "wblabel": "GNIS_NAME: Fowler Bog"}, "type": "Feature"}, {"bbox": [-68.91197147014151, 44.763709530517815, -68.89525067016746, 44.77519059716667], "geometry": {"coordinates": [[[-68.90067827015906, 44.77519059716667, 0.0], [-68.89997200349347, 44.77487059716714, 0.0], [-68.898334203496, 44.77361333050243, 0.0], [-68.8975634701639, 44.772515997170785, 0.0], [-68.89749887016399, 44.77185293050519, 0.0], [-68.89762720349711, 44.77155573050561, 0.0], [-68.89762680349713, 44.77061819717375, 0.0], [-68.89749827016396, 44.77038953050743, 0.0], [-68.8969844701648, 44.769932397174784, 0.0], [-68.89547567016712, 44.76899513050961, 0.0], [-68.89525100350079, 44.76865219717678, 0.0], [-68.89525067016746, 44.76810339717764, 0.0], [-68.89579627016661, 44.76753159717856, 0.0], [-68.89765727016373, 44.76652513051346, 0.0], [-68.89935827016109, 44.76604473051418, 0.0], [-68.90118740349158, 44.76508379718234, 0.0], [-68.90243900348963, 44.764809130516085, 0.0], [-68.90397960348724, 44.76460293051639, 0.0], [-68.9051990034854, 44.76428253051694, 0.0], [-68.90966000347845, 44.763709530517815, 0.0], [-68.91126500347593, 44.76398339718406, 0.0], [-68.91184300347504, 44.764303330516896, 0.0], [-68.91197147014151, 44.76469199718292, 0.0], [-68.91187600347502, 44.76590393051441, 0.0], [-68.91177980347516, 44.76594973051431, 0.0], [-68.91171580347526, 44.7664069971803, 0.0], [-68.91104260347629, 44.76752773051186, 0.0], [-68.91036880347735, 44.768008130511134, 0.0], [-68.90979120347822, 44.768305530510645, 0.0], [-68.9090208701461, 44.768488597177054, 0.0], [-68.90780120348131, 44.76855759717694, 0.0], [-68.9064534034834, 44.76919833050931, 0.0], [-68.90600427015079, 44.769587197175326, 0.0], [-68.90517060348543, 44.771325197172644, 0.0], [-68.90485040348591, 44.7728343971703, 0.0], [-68.90481860348598, 44.77340599716939, 0.0], [-68.90472227015277, 44.773497597169296, 0.0], [-68.90459440348633, 44.77448073050107, 0.0], [-68.90443407015323, 44.774823797167244, 0.0], [-68.90417727015364, 44.77500673050025, 0.0], [-68.90363160348778, 44.77500699716694, 0.0], [-68.90347100348805, 44.77477839716727, 0.0], [-68.90292507015556, 44.77461839716756, 0.0], [-68.9022832034899, 44.7746413971675, 0.0], [-68.90199440349033, 44.774801597167254, 0.0], [-68.90067827015906, 44.77519059716667, 0.0]]], "type": "Polygon"}, "id": "12", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/2680638", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-68.64785827055147, 44.88366613033162, -68.64193967056065, 44.88780413032521], "geometry": {"coordinates": [[[-68.6463472705538, 44.88780413032521, 0.0], [-68.64502840388923, 44.887758596991944, 0.0], [-68.64374160389121, 44.88672993032685, 0.0], [-68.6428086705593, 44.88613559699445, 0.0], [-68.6423260038934, 44.8855869303286, 0.0], [-68.64242240389325, 44.88528959699573, 0.0], [-68.64274400389274, 44.884969530329556, 0.0], [-68.64284040389259, 44.884740796996596, 0.0], [-68.64255087055972, 44.884489330330325, 0.0], [-68.64193967056065, 44.88432933033056, 0.0], [-68.64199467056056, 44.884263196997324, 0.0], [-68.64235767055999, 44.883826330331374, 0.0], [-68.64261500389296, 44.88366613033162, 0.0], [-68.64296867055907, 44.88368899699822, 0.0], [-68.64329040389191, 44.88394053033119, 0.0], [-68.64354787055817, 44.884443396997085, 0.0], [-68.64374120389118, 44.88544939699551, 0.0], [-68.64393427055757, 44.88592959699474, 0.0], [-68.64441680389018, 44.886272530327574, 0.0], [-68.6453818705553, 44.886592396993706, 0.0], [-68.6459286705545, 44.88668393032691, 0.0], [-68.6465076038869, 44.88654659699381, 0.0], [-68.6471506038859, 44.88599759699463, 0.0], [-68.64769740388505, 44.885883196994826, 0.0], [-68.64785827055147, 44.885974596994686, 0.0], [-68.64782627055155, 44.88645493032726, 0.0], [-68.64673300388654, 44.887163796992866, 0.0], [-68.6466688705533, 44.8877813303252, 0.0], [-68.6463472705538, 44.88780413032521, 0.0]]], "type": "Polygon"}, "id": "13", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/1735118", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-68.67486427050954, 44.86966453035336, -68.671582203848, 44.87368779701376], "geometry": {"coordinates": [[[-68.671582203848, 44.86993919701956, 0.0], [-68.67203227051397, 44.86975619701985, 0.0], [-68.67211727051381, 44.869743397019874, 0.0], [-68.672643070513, 44.86966453035336, 0.0], [-68.67286860384598, 44.87021313035251, 0.0], [-68.67319060384551, 44.87073893035165, 0.0], [-68.67463840384323, 44.871675730350205, 0.0], [-68.67486367050958, 44.871949997016486, 0.0], [-68.67486427050954, 44.87261313034878, 0.0], [-68.67460787050993, 44.87368779701376, 0.0], [-68.67370720384469, 44.873368130347615, 0.0], [-68.67335340384523, 44.873162530347884, 0.0], [-68.67325667051205, 44.872979597014876, 0.0], [-68.67332087051193, 44.872728130348605, 0.0], [-68.6735456705116, 44.87247653034899, 0.0], [-68.67354507051158, 44.87174479701679, 0.0], [-68.67174300384772, 44.87000779701947, 0.0], [-68.671582203848, 44.86993919701956, 0.0]]], "type": "Polygon"}, "id": "14", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/1735128", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-68.78755667033465, 44.88922899698963, -68.71506900378051, 44.94415293023769], "geometry": {"coordinates": [[[-68.74949507039372, 44.93079373025847, 0.0], [-68.74907727039437, 44.93109133025797, 0.0], [-68.74817687039575, 44.931572530257256, 0.0], [-68.74775867039642, 44.93164153025714, 0.0], [-68.74708220373077, 44.931436530257486, 0.0], [-68.74656647039825, 44.931094130257975, 0.0], [-68.7461466703989, 44.93040853025906, 0.0], [-68.74611360373228, 44.92999699692638, 0.0], [-68.7459844037325, 44.92976853026005, 0.0], [-68.74559747039979, 44.9294717302605, 0.0], [-68.74492080373415, 44.92912939692769, 0.0], [-68.74453447040139, 44.92910693026107, 0.0], [-68.74376280373593, 44.92947359692715, 0.0], [-68.74331240373664, 44.929565530260334, 0.0], [-68.7430544704037, 44.92945139692722, 0.0], [-68.74269967040425, 44.929085930261124, 0.0], [-68.74234420373813, 44.9283545969289, 0.0], [-68.74044327040775, 44.927396196930374, 0.0], [-68.73828440374444, 44.92614079693237, 0.0], [-68.73625480374761, 44.92520539693379, 0.0], [-68.73602947041462, 44.92518273026718, 0.0], [-68.73583647041494, 44.92529719693363, 0.0], [-68.73561220374859, 44.92580039693286, 0.0], [-68.73529107041577, 44.926143730265665, 0.0], [-68.73480880374984, 44.926418530265266, 0.0], [-68.73371467041824, 44.92653379693172, 0.0], [-68.73210440375402, 44.92605519693245, 0.0], [-68.7313636037552, 44.92569019693303, 0.0], [-68.72910900375871, 44.92489193026762, 0.0], [-68.72817560376012, 44.924869930267675, 0.0], [-68.72704960376188, 44.92512239693394, 0.0], [-68.72556907043088, 44.925169396933825, 0.0], [-68.7244752037659, 44.92544473026675, 0.0], [-68.72402507043324, 44.9257423302663, 0.0], [-68.72392900376673, 44.92599393026592, 0.0], [-68.72383380376687, 44.92674853026472, 0.0], [-68.72444780376594, 44.92821139692916, 0.0], [-68.72451380376583, 44.92914879692768, 0.0], [-68.7243216037661, 44.92972059692681, 0.0], [-68.72290647043496, 44.93040773025905, 0.0], [-68.72213427043619, 44.930614196925376, 0.0], [-68.72178007043675, 44.93052299692556, 0.0], [-68.7213612704374, 44.93029473025922, 0.0], [-68.7210064037713, 44.92976913026007, 0.0], [-68.72094027043806, 44.92880893026154, 0.0], [-68.72084347043818, 44.92860313026188, 0.0], [-68.72048900377206, 44.928306196928986, 0.0], [-68.71971647043995, 44.92830679692901, 0.0], [-68.7181402704424, 44.92892539692804, 0.0], [-68.71768967044306, 44.928971530261265, 0.0], [-68.71733547044363, 44.928834730261485, 0.0], [-68.71701320377747, 44.92853759692861, 0.0], [-68.71701247044416, 44.92817179692918, 0.0], [-68.71746147044342, 44.92711959693082, 0.0], [-68.71791147044274, 44.92673059693141, 0.0], [-68.71942320377372, 44.92611213026572, 0.0], [-68.71968020377335, 44.925768796932914, 0.0], [-68.71974367043993, 44.92522013026712, 0.0], [-68.71961407044012, 44.92476293026783, 0.0], [-68.71951747044022, 44.92471719693458, 0.0], [-68.71948487044028, 44.924419996935, 0.0], [-68.71919407044078, 44.92377999693599, 0.0], [-68.71832360377545, 44.92282039693748, 0.0], [-68.71780807044291, 44.92243213027143, 0.0], [-68.71600460377903, 44.92177039693911, 0.0], [-68.71506960378048, 44.92065079694089, 0.0], [-68.71506900378051, 44.92026199694146, 0.0], [-68.71526107044684, 44.91962173027582, 0.0], [-68.71551787044643, 44.9191641969432, 0.0], [-68.71619267044542, 44.91854633027748, 0.0], [-68.71673847044457, 44.917722796945384, 0.0], [-68.71670387044463, 44.91619093028112, 0.0], [-68.71689620377765, 44.91571059694854, 0.0], [-68.71689520377765, 44.91504753028289, 0.0], [-68.71862900377494, 44.91264519695329, 0.0], [-68.71862827044163, 44.91218793028736, 0.0], [-68.71830620377546, 44.91198239695433, 0.0], [-68.71669660377796, 44.91157219695498, 0.0], [-68.71579480377937, 44.91100119695585, 0.0], [-68.71566580377959, 44.91079559695618, 0.0], [-68.71566480377959, 44.91020113029043, 0.0], [-68.71582507044599, 44.909812330291004, 0.0], [-68.71630687044524, 44.90921739695864, 0.0], [-68.7180422037759, 44.907866996960706, 0.0], [-68.71810620377579, 44.90770679696095, 0.0], [-68.71871707044147, 44.907340530294846, 0.0], [-68.72186780376995, 44.90587459696383, 0.0], [-68.7238626704335, 44.90589573029712, 0.0], [-68.72514860376486, 44.90534579696464, 0.0], [-68.72884387042575, 44.9025987969689, 0.0], [-68.73054760375646, 44.901796930303476, 0.0], [-68.73282927041959, 44.90046873030553, 0.0], [-68.73385787041798, 44.90001053030625, 0.0], [-68.73466167041676, 44.89973533030667, 0.0], [-68.736430670414, 44.89955073030694, 0.0], [-68.73768480374537, 44.89925219697409, 0.0], [-68.73810247041138, 44.899000330307786, 0.0], [-68.73839100374431, 44.898474130308614, 0.0], [-68.73864667041056, 44.897559196976715, 0.0], [-68.73832287041108, 44.896484930311715, 0.0], [-68.73822620374455, 44.89643933031181, 0.0], [-68.73774127041196, 44.89515933031379, 0.0], [-68.73764460374542, 44.895113730313824, 0.0], [-68.73738600374583, 44.894450796981516, 0.0], [-68.73709380374629, 44.89301073031709, 0.0], [-68.73725407041275, 44.89280473031744, 0.0], [-68.7381534704113, 44.89209513031852, 0.0], [-68.7395674704091, 44.8914077303196, 0.0], [-68.74046687040772, 44.8907893969872, 0.0], [-68.74149520373948, 44.89028533032132, 0.0], [-68.74239520373806, 44.889964330321845, 0.0], [-68.74416360373533, 44.889665330322316, 0.0], [-68.7467688037313, 44.88954819698915, 0.0], [-68.74776620372973, 44.88961573032236, 0.0], [-68.74947040372712, 44.88940813032269, 0.0], [-68.7515792703905, 44.8895921303224, 0.0], [-68.75215740372289, 44.88995853032185, 0.0], [-68.75292780372172, 44.89071393032066, 0.0], [-68.7533136703878, 44.890805796987195, 0.0], [-68.75398940372008, 44.8906921303207, 0.0], [-68.75415047038649, 44.89057799698753, 0.0], [-68.75411987038655, 44.88982339698873, 0.0], [-68.75395960372015, 44.889571730322416, 0.0], [-68.75399207038674, 44.889411730322706, 0.0], [-68.75424980371969, 44.88922899698963, 0.0], [-68.75482840371876, 44.88936679698941, 0.0], [-68.75486047038538, 44.889458396989255, 0.0], [-68.75550347038438, 44.88961913032239, 0.0], [-68.7555996037176, 44.88971059698889, 0.0], [-68.75656400371605, 44.89003173032171, 0.0], [-68.75698120371544, 44.89042093032111, 0.0], [-68.75733420371489, 44.89090153032038, 0.0], [-68.75829747038006, 44.89167979698584, 0.0], [-68.75910120371213, 44.891932196985465, 0.0], [-68.76045060371007, 44.8927337969842, 0.0], [-68.7605786703765, 44.893008330317116, 0.0], [-68.76006320371067, 44.893442196983074, 0.0], [-68.75938747037839, 44.893510130316315, 0.0], [-68.75925860371188, 44.89362433031613, 0.0], [-68.75922547037862, 44.894058730315464, 0.0], [-68.7597716037111, 44.89449373031482, 0.0], [-68.76022160371042, 44.894677130314506, 0.0], [-68.76025320371036, 44.89488293031417, 0.0], [-68.75935207037844, 44.89511059698049, 0.0], [-68.75935127037843, 44.89552219697987, 0.0], [-68.7595760037114, 44.89577399697947, 0.0], [-68.760926070376, 44.89623259697879, 0.0], [-68.76285380370632, 44.89751499697678, 0.0], [-68.76333507037225, 44.89817853030905, 0.0], [-68.76333427037224, 44.89858999697509, 0.0], [-68.76259347037336, 44.89902379697446, 0.0], [-68.76095147037591, 44.899753930306645, 0.0], [-68.7604680703767, 44.90014213030605, 0.0], [-68.76033880371023, 44.900439130305585, 0.0], [-68.7603374037102, 44.90117079697109, 0.0], [-68.76056160370985, 44.90167413030366, 0.0], [-68.76104327037581, 44.90208619696966, 0.0], [-68.76158987037496, 44.902269596969404, 0.0], [-68.76213707037408, 44.902178796969565, 0.0], [-68.76255520370677, 44.902201996969495, 0.0], [-68.76249047037356, 44.902384796969216, 0.0], [-68.76149127037507, 44.90338993030099, 0.0], [-68.76055760370986, 44.90370913030051, 0.0], [-68.76055640370987, 44.90430359696626, 0.0], [-68.76065240370974, 44.90457799696583, 0.0], [-68.76103780370914, 44.90492153029862, 0.0], [-68.76116520370891, 44.905538930297666, 0.0], [-68.76129360370874, 44.90569913029742, 0.0], [-68.76193700370771, 44.90574553029734, 0.0], [-68.76219440370733, 44.90574579696403, 0.0], [-68.76229067037383, 44.905837330297175, 0.0], [-68.76222567037394, 44.906202996963316, 0.0], [-68.76183847037458, 44.906751530295764, 0.0], [-68.76183707037455, 44.90746033029467, 0.0], [-68.76225367037392, 44.908329530293315, 0.0], [-68.76225327037389, 44.90851239695968, 0.0], [-68.76193140370776, 44.908580730292954, 0.0], [-68.76144940370847, 44.90823719696016, 0.0], [-68.76061360370977, 44.907916396960616, 0.0], [-68.7595838037114, 44.90793819696057, 0.0], [-68.7589396037124, 44.90832619695999, 0.0], [-68.75864920371282, 44.90869179695943, 0.0], [-68.75784140371411, 44.91040579695675, 0.0], [-68.75745440371469, 44.91086279695605, 0.0], [-68.75700320371539, 44.91120533028885, 0.0], [-68.7562302037166, 44.91157033028827, 0.0], [-68.7550710037184, 44.911934930287714, 0.0], [-68.75439527038611, 44.911934196954405, 0.0], [-68.75397720372007, 44.91184233028787, 0.0], [-68.75362360372065, 44.91163619695487, 0.0], [-68.75314247038807, 44.910949730289246, 0.0], [-68.75304720372156, 44.91037799695681, 0.0], [-68.75314647038806, 44.90905179695886, 0.0], [-68.75334080372107, 44.908457596959806, 0.0], [-68.75401900372003, 44.907315130294876, 0.0], [-68.75508307038507, 44.90612719696338, 0.0], [-68.75547067038445, 44.90541873029787, 0.0], [-68.75547300371778, 44.90427553029963, 0.0], [-68.75534520371798, 44.90386393030025, 0.0], [-68.754446870386, 44.90262819696886, 0.0], [-68.75390107038686, 44.902101730303, 0.0], [-68.75313020372141, 44.9015521969705, 0.0], [-68.75174780372356, 44.901116330304546, 0.0], [-68.75097540372474, 44.9012069303044, 0.0], [-68.75029907039249, 44.901526196970565, 0.0], [-68.7500412037262, 44.901800330303445, 0.0], [-68.74968587039342, 44.90241733030251, 0.0], [-68.74946647039377, 44.90253259696897, 0.0], [-68.74888820372797, 44.90292199696836, 0.0], [-68.7480844703959, 44.90317433030134, 0.0], [-68.74724800373053, 44.90319799696795, 0.0], [-68.74493007040081, 44.90246879696906, 0.0], [-68.74299887040382, 44.90208213030303, 0.0], [-68.74209807040518, 44.90210593030298, 0.0], [-68.74164800373921, 44.902266396969424, 0.0], [-68.74090927040703, 44.902884530301776, 0.0], [-68.74075000374063, 44.90368499696717, 0.0], [-68.74123400373986, 44.90437039696616, 0.0], [-68.74187820373885, 44.90478139696552, 0.0], [-68.74361667040284, 44.90525979696474, 0.0], [-68.74381040373589, 44.90564819696414, 0.0], [-68.74374707040266, 44.90610559696347, 0.0], [-68.74268740373759, 44.907158530295135, 0.0], [-68.74188420373889, 44.907730930294235, 0.0], [-68.74005247040839, 44.90889893029242, 0.0], [-68.73924947040962, 44.90963133029129, 0.0], [-68.73819020374458, 44.91088999695603, 0.0], [-68.73806227041149, 44.91132453028865, 0.0], [-68.73803187041153, 44.91228479695383, 0.0], [-68.73829267041111, 44.913999530284514, 0.0], [-68.73900347041001, 44.91546219694891, 0.0], [-68.73932587040952, 44.91580479694841, 0.0], [-68.73971260374225, 44.91601019694809, 0.0], [-68.74038867040787, 44.91619253028114, 0.0], [-68.74090367040708, 44.91623773028107, 0.0], [-68.74212620373851, 44.91598499694811, 0.0], [-68.74325087040341, 44.915229330282614, 0.0], [-68.74382907040251, 44.91470279695011, 0.0], [-68.74437540373498, 44.91435933028396, 0.0], [-68.74511487040053, 44.91403839695113, 0.0], [-68.74546900373332, 44.914106596951, 0.0], [-68.74637140373193, 44.914791596949954, 0.0], [-68.74704900373087, 44.91563679694866, 0.0], [-68.74743700373023, 44.91650533028064, 0.0], [-68.74808200372922, 44.91716773027963, 0.0], [-68.74827647039558, 44.91783059694524, 0.0], [-68.74821547039568, 44.919408330276156, 0.0], [-68.74805627039598, 44.9202545302748, 0.0], [-68.74818620372906, 44.920780196940655, 0.0], [-68.74850887039526, 44.9212143302733, 0.0], [-68.7491540037276, 44.92187679693899, 0.0], [-68.74947607039377, 44.921990730272114, 0.0], [-68.75044720372557, 44.922333596938245, 0.0], [-68.75096207039144, 44.92237993027152, 0.0], [-68.75208880372304, 44.9222667302717, 0.0], [-68.75347320372089, 44.92199379693881, 0.0], [-68.75534007038465, 44.92190433027224, 0.0], [-68.75643420371625, 44.92192833027224, 0.0], [-68.75739887038145, 44.92231799693826, 0.0], [-68.75842720371321, 44.92305073027046, 0.0], [-68.75942287037833, 44.924080730268884, 0.0], [-68.75942260371164, 44.924172130268744, 0.0], [-68.75961540371134, 44.92430959693519, 0.0], [-68.76009647037728, 44.92520179693378, 0.0], [-68.76061067037648, 44.92556813026658, 0.0], [-68.76122200370884, 44.925728730266314, 0.0], [-68.76209067037416, 44.92582099693283, 0.0], [-68.76273460370652, 44.925707330266334, 0.0], [-68.76344360370541, 44.92531933026697, 0.0], [-68.7639922703712, 44.92449673026823, 0.0], [-68.76454020370369, 44.924108530268825, 0.0], [-68.76518367036937, 44.92417773026875, 0.0], [-68.76585920370167, 44.92438419693508, 0.0], [-68.76704860369978, 44.92509419693397, 0.0], [-68.76826980369793, 44.92605573026583, 0.0], [-68.76997280369528, 44.927657796929964, 0.0], [-68.77170840369257, 44.928985530261286, 0.0], [-68.7736054703563, 44.93010759692618, 0.0], [-68.77441027035502, 44.93003959692629, 0.0], [-68.77499040368747, 44.92962859692693, 0.0], [-68.7752808703537, 44.92919453026093, 0.0], [-68.77544360368677, 44.9281885302625, 0.0], [-68.7753484703536, 44.9273423969305, 0.0], [-68.77538380368685, 44.9254675302667, 0.0], [-68.77548040368674, 44.92544473026675, 0.0], [-68.77551320368667, 44.92507893026732, 0.0], [-68.77580420368622, 44.924324730268495, 0.0], [-68.77609460368575, 44.92391333026916, 0.0], [-68.77648120368514, 44.923684930269474, 0.0], [-68.77712500368415, 44.92354839693638, 0.0], [-68.77751067035024, 44.92389173026919, 0.0], [-68.7779932036828, 44.92405213026893, 0.0], [-68.77969860368017, 44.924259330268626, 0.0], [-68.7797304036801, 44.924487996934886, 0.0], [-68.78011627034618, 44.924716996934535, 0.0], [-68.7803076036792, 44.92586039693276, 0.0], [-68.77937040368067, 44.928100396929324, 0.0], [-68.77936840368068, 44.92931219692741, 0.0], [-68.77946407034722, 44.92976959692669, 0.0], [-68.77900860368123, 44.93269599692218, 0.0], [-68.77913620368105, 44.93347339692099, 0.0], [-68.77929660368079, 44.933747996920545, 0.0], [-68.77993967034644, 44.9341829302532, 0.0], [-68.7803572703458, 44.93473199691903, 0.0], [-68.78035560367914, 44.935760996917395, 0.0], [-68.77993587034649, 44.936515130249575, 0.0], [-68.7786132703485, 44.93822893024691, 0.0], [-68.77854787034863, 44.93877759691276, 0.0], [-68.77867607034841, 44.93916653024547, 0.0], [-68.7787726036816, 44.93921219691208, 0.0], [-68.77880447034823, 44.93939519691179, 0.0], [-68.77922220368089, 44.93987573024435, 0.0], [-68.77996220367976, 44.94015073024394, 0.0], [-68.78067047034534, 44.94010553024401, 0.0], [-68.7813790703442, 44.93980893024445, 0.0], [-68.78344200367434, 44.9382099969136, 0.0], [-68.78466627033913, 44.93759359691455, 0.0], [-68.7852458703382, 44.937525530248024, 0.0], [-68.78605000367031, 44.93798339691398, 0.0], [-68.78685287033574, 44.939241596911984, 0.0], [-68.78694780366891, 44.94031633024366, 0.0], [-68.78755667033465, 44.94214599690753, 0.0], [-68.78749187033475, 44.94244319690705, 0.0], [-68.78713740366862, 44.94260299690677, 0.0], [-68.78597807033708, 44.94280793023978, 0.0], [-68.7823704703427, 44.943948330238015, 0.0], [-68.78101800367813, 44.94415293023769, 0.0], [-68.78056740367884, 44.94408399690451, 0.0], [-68.78008480367959, 44.94385493023816, 0.0], [-68.77940980368061, 44.94316839690589, 0.0], [-68.77912100368104, 44.942665130240016, 0.0], [-68.77870287034835, 44.94229893024061, 0.0], [-68.77847780368205, 44.94220733024076, 0.0], [-68.77799467034947, 44.94225259690734, 0.0], [-68.77776920368314, 44.94234379690721, 0.0], [-68.77751107035022, 44.94273239690659, 0.0], [-68.77718780368406, 44.94346379690546, 0.0], [-68.776575403685, 44.94387479690482, 0.0], [-68.77586720368612, 44.94385139690485, 0.0], [-68.7711040703602, 44.942818196906444, 0.0], [-68.77013907036167, 44.942428596907064, 0.0], [-68.76927020369635, 44.942176330240784, 0.0], [-68.76750087036578, 44.94144299690862, 0.0], [-68.7671150036997, 44.94121399690897, 0.0], [-68.7666008037005, 44.940733330243006, 0.0], [-68.76647260370072, 44.9404129969102, 0.0], [-68.7664120037008, 44.938446730246596, 0.0], [-68.7663154703676, 44.9384007969133, 0.0], [-68.76628387036766, 44.93805793024717, 0.0], [-68.76618740370117, 44.93801213024727, 0.0], [-68.76612347036792, 44.93776053024766, 0.0], [-68.76586680370161, 44.937302930248336, 0.0], [-68.76551340370219, 44.93691393024898, 0.0], [-68.76551360370217, 44.93682239691577, 0.0], [-68.76432440370405, 44.9358381302506, 0.0], [-68.76303787037267, 44.93531093025143, 0.0], [-68.76271600370654, 44.93535633025135, 0.0], [-68.76213580370745, 44.935744396917414, 0.0], [-68.7618132703746, 44.93601853025035, 0.0], [-68.7612952703754, 44.93748133024809, 0.0], [-68.76026327037698, 44.93844073024661, 0.0], [-68.75955447037808, 44.93873719691277, 0.0], [-68.75916807037868, 44.93871393024614, 0.0], [-68.75862120371289, 44.93853053024645, 0.0], [-68.75823540371346, 44.93825573024685, 0.0], [-68.7579464703806, 44.937843796914194, 0.0], [-68.75778640371419, 44.93743213024817, 0.0], [-68.75785327038074, 44.936266130249976, 0.0], [-68.75807960371372, 44.93580899691733, 0.0], [-68.75824127038015, 44.93542053025129, 0.0], [-68.75904800371222, 44.93443813025277, 0.0], [-68.75917740371204, 44.93416393025325, 0.0], [-68.75905000371222, 44.93347773025431, 0.0], [-68.75885720371252, 44.933271796921304, 0.0], [-68.75882540371259, 44.93308879692154, 0.0], [-68.75815087038029, 44.93235639692267, 0.0], [-68.75773280371425, 44.93215019692303, 0.0], [-68.75351900372078, 44.930819730258406, 0.0], [-68.75155647039054, 44.93040599692574, 0.0], [-68.75046200372554, 44.9304277969257, 0.0], [-68.74981780372656, 44.930609930258754, 0.0], [-68.74949507039372, 44.93079373025847, 0.0]]], "type": "Polygon"}, "id": "16", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/2680590", "wblabel": "GNIS_NAME: Caribou Bog"}, "type": "Feature"}, {"bbox": [-68.76230180370715, 44.86311653036353, -68.71518780378028, 44.89102419698685], "geometry": {"coordinates": [[[-68.74947680372708, 44.8774039303413, 0.0], [-68.7500288703929, 44.877677730340906, 0.0], [-68.75083187039166, 44.8781815970068, 0.0], [-68.75269600372206, 44.87866379700603, 0.0], [-68.75404687038667, 44.87859659700615, 0.0], [-68.75539860371788, 44.87809513034023, 0.0], [-68.75639660371633, 44.877524530341134, 0.0], [-68.75742580371474, 44.87750253034119, 0.0], [-68.75774680371427, 44.87770873034083, 0.0], [-68.75790720371401, 44.87796033034044, 0.0], [-68.75787260371402, 44.87919513033853, 0.0], [-68.75748480371465, 44.880109197003776, 0.0], [-68.75754727038122, 44.88102393033569, 0.0], [-68.75770747038098, 44.88127573033529, 0.0], [-68.75812500371364, 44.8815961303348, 0.0], [-68.7605998703765, 44.88230753033372, 0.0], [-68.76121027037556, 44.88260533033326, 0.0], [-68.76220580370733, 44.88340659699867, 0.0], [-68.76230180370715, 44.883612530331675, 0.0], [-68.76230067037386, 44.884161196997525, 0.0], [-68.76197827037436, 44.88457253033022, 0.0], [-68.76197820370766, 44.88470973032997, 0.0], [-68.76114187037564, 44.884731730329975, 0.0], [-68.75985627037761, 44.88429593033061, 0.0], [-68.7588604037125, 44.883723396998164, 0.0], [-68.75786407038072, 44.88337939699869, 0.0], [-68.75673907038248, 44.88305813033253, 0.0], [-68.75603140371692, 44.88312599699913, 0.0], [-68.75477600371886, 44.88362773033168, 0.0], [-68.7540024703867, 44.884381396997185, 0.0], [-68.75326007038785, 44.88561533032856, 0.0], [-68.7522928703894, 44.88680333032676, 0.0], [-68.75177747039015, 44.887168596992865, 0.0], [-68.75039347039234, 44.88762439699212, 0.0], [-68.7498456703932, 44.88805833032478, 0.0], [-68.7494678037271, 44.8881277303247, 0.0], [-68.74879260372813, 44.88826559699112, 0.0], [-68.74663787039816, 44.88845079699087, 0.0], [-68.7426814704043, 44.88840919699089, 0.0], [-68.74126680373985, 44.88866213032384, 0.0], [-68.74043120374114, 44.88898313032337, 0.0], [-68.73895320374339, 44.88980779698875, 0.0], [-68.73753767041228, 44.889763396988826, 0.0], [-68.73503087041615, 44.89088619698708, 0.0], [-68.73416260375086, 44.89102419698685, 0.0], [-68.73358340375177, 44.890910530320355, 0.0], [-68.73348667041859, 44.890796196987196, 0.0], [-68.73416107041754, 44.890201130321486, 0.0], [-68.73541400374893, 44.88937673032274, 0.0], [-68.73531567041573, 44.88841653032421, 0.0], [-68.73508987041606, 44.88807373032478, 0.0], [-68.73412340375091, 44.887205730326116, 0.0], [-68.73392887041786, 44.886428530327294, 0.0], [-68.73444200375042, 44.88560493032861, 0.0], [-68.73579087041497, 44.88464339699675, 0.0], [-68.73762260374548, 44.88379553033138, 0.0], [-68.7378472704118, 44.88356673033178, 0.0], [-68.73784667041178, 44.8832465969989, 0.0], [-68.73762100374546, 44.88294953033272, 0.0], [-68.73694447041322, 44.8823785970003, 0.0], [-68.73546420374885, 44.881945597000936, 0.0], [-68.73353287041851, 44.88107853033563, 0.0], [-68.73282487041962, 44.88085053033598, 0.0], [-68.7317634037546, 44.88069139700286, 0.0], [-68.73054120375645, 44.880692597002906, 0.0], [-68.72919080375857, 44.880876730335956, 0.0], [-68.72626440376308, 44.880993730335774, 0.0], [-68.72546007043104, 44.88081153033602, 0.0], [-68.72433347043278, 44.88026373033688, 0.0], [-68.72352820376733, 44.87957839700459, 0.0], [-68.72211020376955, 44.87775053034079, 0.0], [-68.7211762704377, 44.876928130342094, 0.0], [-68.72040267043889, 44.87580833034383, 0.0], [-68.71966180377336, 44.875077330344936, 0.0], [-68.71895320377445, 44.874414797012605, 0.0], [-68.71830947044214, 44.87409513034646, 0.0], [-68.71615387044545, 44.873365197014266, 0.0], [-68.71538127044664, 44.872885597015, 0.0], [-68.71518780378028, 44.872519930348915, 0.0], [-68.71521927044694, 44.87206259701628, 0.0], [-68.71579560377938, 44.87048453035209, 0.0], [-68.71595607044577, 44.87027859701908, 0.0], [-68.71649980377828, 44.868448930355214, 0.0], [-68.71739827044354, 44.867304997023666, 0.0], [-68.71922820377404, 44.86558859702632, 0.0], [-68.72015947043923, 44.864901797027414, 0.0], [-68.72179680377002, 44.863391397029716, 0.0], [-68.72227880376931, 44.86323093036333, 0.0], [-68.72234287043585, 44.86311653036353, 0.0], [-68.723114803768, 44.86332173036317, 0.0], [-68.72391967043342, 44.86400693036211, 0.0], [-68.7243380704328, 44.864212330361795, 0.0], [-68.72572107043061, 44.86455419702793, 0.0], [-68.72720047042833, 44.86475859702762, 0.0], [-68.7281014704269, 44.865146530360335, 0.0], [-68.72839120375983, 44.86537499702666, 0.0], [-68.72864907042606, 44.86576339702606, 0.0], [-68.72877867042587, 44.866334930358505, 0.0], [-68.7290366704255, 44.866700530357946, 0.0], [-68.72935867042497, 44.866905997024276, 0.0], [-68.73070940375624, 44.86711059702395, 0.0], [-68.73247807042014, 44.86720039702385, 0.0], [-68.73328260375223, 44.86758833035657, 0.0], [-68.7339910037511, 44.868136530355684, 0.0], [-68.73457120375019, 44.868913397021174, 0.0], [-68.73479720374985, 44.86941599702038, 0.0], [-68.7347666037499, 44.87019353035254, 0.0], [-68.73454247041695, 44.87071973035171, 0.0], [-68.73390120375126, 44.87172633035016, 0.0], [-68.73383867041804, 44.872686730348676, 0.0], [-68.73406447041765, 44.87305239701476, 0.0], [-68.73467640375003, 44.87353199701403, 0.0], [-68.73615727041442, 44.87444519701256, 0.0], [-68.73783080374517, 44.875060930344944, 0.0], [-68.73821700374458, 44.87522059701138, 0.0], [-68.73908647040986, 44.87588279701038, 0.0], [-68.73947347040928, 44.87643113034284, 0.0], [-68.73953827040918, 44.87665973034251, 0.0], [-68.73963500374236, 44.876773930342324, 0.0], [-68.73973187040889, 44.877025330341894, 0.0], [-68.74053787040759, 44.8779849303404, 0.0], [-68.74121407040656, 44.878418730339774, 0.0], [-68.74182507040564, 44.87839513033981, 0.0], [-68.74227487040491, 44.87821179700671, 0.0], [-68.7426920704043, 44.877822597007366, 0.0], [-68.74336467040325, 44.8764729303428, 0.0], [-68.74349187040303, 44.87576399701055, 0.0], [-68.74345840373644, 44.87505519701165, 0.0], [-68.74326200373673, 44.87338619701421, 0.0], [-68.7428428037374, 44.8728149970151, 0.0], [-68.74165060373923, 44.871604397016995, 0.0], [-68.74123107040657, 44.870941730351376, 0.0], [-68.74100447040689, 44.87018739701921, 0.0], [-68.74100227040691, 44.869112730354175, 0.0], [-68.74125787040651, 44.86826639702218, 0.0], [-68.74151447040612, 44.86792319702272, 0.0], [-68.74247807040462, 44.867396397023526, 0.0], [-68.74276720373751, 44.86732753035699, 0.0], [-68.74328167040335, 44.86734993035691, 0.0], [-68.74408600373545, 44.86755473035663, 0.0], [-68.74479427040103, 44.8679883970226, 0.0], [-68.7455362037332, 44.86906233035427, 0.0], [-68.74637687039854, 44.87132513035078, 0.0], [-68.74647560373171, 44.872399730349116, 0.0], [-68.74663700373151, 44.872742530348546, 0.0], [-68.74673500373132, 44.87345133034745, 0.0], [-68.74663947039812, 44.87390859701344, 0.0], [-68.74718787039728, 44.87470833034553, 0.0], [-68.74718820373062, 44.87484553034528, 0.0], [-68.74734927039702, 44.87507399701161, 0.0], [-68.7479298037295, 44.87578213034385, 0.0], [-68.74857407039514, 44.87635313034298, 0.0], [-68.74931527039399, 44.87708399700847, 0.0], [-68.74934800372728, 44.87731259700814, 0.0], [-68.74947680372708, 44.8774039303413, 0.0]]], "type": "Polygon"}, "id": "18", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/2678900", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-68.7015272038015, 44.988188196836006, -68.68106307049993, 45.0224285967829], "geometry": {"coordinates": [[[-68.68132347049954, 45.000081196817575, 0.0], [-68.68116220383314, 44.99996679681777, 0.0], [-68.68106307049993, 44.999326530152075, 0.0], [-68.68138540383279, 44.99925793015217, 0.0], [-68.68186760383202, 44.99804579682075, 0.0], [-68.68193140383192, 44.99735993015514, 0.0], [-68.68160800383242, 44.996216796823546, 0.0], [-68.68157527049914, 44.99559953015785, 0.0], [-68.68244440383114, 44.994775930159165, 0.0], [-68.68289480383044, 44.99392973016046, 0.0], [-68.68292687049706, 44.99379253016065, 0.0], [-68.68302360383024, 44.993769530160705, 0.0], [-68.68305487049685, 44.992832130162185, 0.0], [-68.6827962038306, 44.9918491301637, 0.0], [-68.68263480383081, 44.99166633016398, 0.0], [-68.68253727049768, 44.99084319683192, 0.0], [-68.68350307049616, 44.98985953016677, 0.0], [-68.68472667049423, 44.98912733016789, 0.0], [-68.68675580382444, 44.98837159683575, 0.0], [-68.68769000382298, 44.988188196836006, 0.0], [-68.68830220382205, 44.98821079683597, 0.0], [-68.68943020382028, 44.988415930169026, 0.0], [-68.6911376704843, 44.98823213016931, 0.0], [-68.69226580381587, 44.98862013016867, 0.0], [-68.69349100381396, 44.98935113016756, 0.0], [-68.69523380381128, 44.991545130164184, 0.0], [-68.69587907047696, 44.992253530163055, 0.0], [-68.69733060380804, 44.99353299682775, 0.0], [-68.69897640380549, 44.99538399682484, 0.0], [-68.70023520380352, 44.997075196822266, 0.0], [-68.70062260380291, 44.99748653015496, 0.0], [-68.70113887046875, 44.99808059682067, 0.0], [-68.70117147046875, 44.998263530153736, 0.0], [-68.70142980380166, 44.998606396819866, 0.0], [-68.7015272038015, 44.99922359681892, 0.0], [-68.70133447046845, 44.999658196818245, 0.0], [-68.70133500380183, 45.0000807301509, 0.0], [-68.7006296038029, 45.0000807968176, 0.0], [-68.70053427046969, 45.00118493014918, 0.0], [-68.70015100380363, 45.00388313014503, 0.0], [-68.69960847047116, 45.00804473013852, 0.0], [-68.69957747047118, 45.008913596803836, 0.0], [-68.69948087047135, 45.0090735968036, 0.0], [-68.6994492038047, 45.00955373013619, 0.0], [-68.69916080380517, 45.01078859680098, 0.0], [-68.69909700380526, 45.011337396800116, 0.0], [-68.6990008038054, 45.01168039679959, 0.0], [-68.69896920380546, 45.012206330132074, 0.0], [-68.69861680380603, 45.01389839679615, 0.0], [-68.69839220380635, 45.01476739679475, 0.0], [-68.69836047047306, 45.015178996794134, 0.0], [-68.69823187047331, 45.015499130126955, 0.0], [-68.69810360380683, 45.01600219679284, 0.0], [-68.69739687047456, 45.01796899678982, 0.0], [-68.69627207047631, 45.0208277301187, 0.0], [-68.69575800381045, 45.02226839678315, 0.0], [-68.69559700381069, 45.02238279678295, 0.0], [-68.69546820381089, 45.0224285967829, 0.0], [-68.69491947047845, 45.021971730116945, 0.0], [-68.69479027047862, 45.02176599678393, 0.0], [-68.69478987047864, 45.0214001967845, 0.0], [-68.69501520381164, 45.021125596784884, 0.0], [-68.69582040381039, 45.02053073011916, 0.0], [-68.69604560381003, 45.02014193011979, 0.0], [-68.69601307047674, 45.01993613012007, 0.0], [-68.69572260381051, 45.01963913012054, 0.0], [-68.69533560381115, 45.01952499678737, 0.0], [-68.69385247048007, 45.019388730120966, 0.0], [-68.69356227048053, 45.01929739678775, 0.0], [-68.6933366038142, 45.01934333012099, 0.0], [-68.69301360381473, 45.01879473012184, 0.0], [-68.69259380381538, 45.01822339678944, 0.0], [-68.69223887048258, 45.017880730123295, 0.0], [-68.69227100381585, 45.017789330123435, 0.0], [-68.69214200381606, 45.01772073012353, 0.0], [-68.69191567048307, 45.017240730124286, 0.0], [-68.69188327048312, 45.01705779679122, 0.0], [-68.69181867048326, 45.01701213012461, 0.0], [-68.69181840381657, 45.01666913012514, 0.0], [-68.6916892038168, 45.01639479679227, 0.0], [-68.69168747048343, 45.015045930127656, 0.0], [-68.69149387048373, 45.01490879679454, 0.0], [-68.69010740381924, 45.01445233012862, 0.0], [-68.68991360381955, 45.01417813012904, 0.0], [-68.68959060382002, 45.013560930129984, 0.0], [-68.68952580382012, 45.01328659679706, 0.0], [-68.6894928038202, 45.01262359679811, 0.0], [-68.68968480381989, 45.011388730133376, 0.0], [-68.6895880704867, 45.011365996800066, 0.0], [-68.68858900382156, 45.01143513013329, 0.0], [-68.68810560382235, 45.01154973013308, 0.0], [-68.68678460382438, 45.01209919679894, 0.0], [-68.68575360382602, 45.01260279679815, 0.0], [-68.68462600382776, 45.013106396797355, 0.0], [-68.68404580382867, 45.01317533013059, 0.0], [-68.68346547049623, 45.013106996797376, 0.0], [-68.68327200382987, 45.013015596797516, 0.0], [-68.68330407049643, 45.012924196797655, 0.0], [-68.68311060383007, 45.01276419679789, 0.0], [-68.68311040383009, 45.012672730131385, 0.0], [-68.6830136704969, 45.01260413013148, 0.0], [-68.682948870497, 45.012192730132085, 0.0], [-68.68294647049703, 45.00986053013571, 0.0], [-68.68284927049717, 45.00931193013656, 0.0], [-68.6826550038308, 45.00844319680459, 0.0], [-68.68255827049762, 45.008374596804686, 0.0], [-68.68255787049759, 45.00805453013851, 0.0], [-68.6824288704978, 45.0079859968053, 0.0], [-68.68246080383108, 45.007665930139126, 0.0], [-68.68236367049792, 45.00720873013984, 0.0], [-68.68226620383138, 45.00645419680768, 0.0], [-68.68219887049815, 45.003641996812064, 0.0], [-68.68219840383153, 45.00309319681293, 0.0], [-68.682326870498, 45.0027043968135, 0.0], [-68.68232667049796, 45.00238433014732, 0.0], [-68.68226167049806, 45.00190439681472, 0.0], [-68.68210027049832, 45.001675730148406, 0.0], [-68.68203560383176, 45.00135573014893, 0.0], [-68.68219660383153, 45.00124133014913, 0.0], [-68.68222860383145, 45.00101259681611, 0.0], [-68.68222840383146, 45.0008525968164, 0.0], [-68.6823248038313, 45.000669596816635, 0.0], [-68.68184087049872, 45.000555530150166, 0.0], [-68.68164640383236, 45.00034979681715, 0.0], [-68.68132360383288, 45.00021279681738, 0.0], [-68.68132347049954, 45.000081196817575, 0.0]]], "type": "Polygon"}, "id": "23", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/120054526", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-68.71902620377432, 45.000080396817566, -68.69582847047701, 45.03657113009427], "geometry": {"coordinates": [[[-68.7142152704485, 45.03265853010032, 0.0], [-68.71415200378192, 45.03350453009904, 0.0], [-68.71379907044911, 45.03460219676401, 0.0], [-68.71373460378254, 45.03467093009721, 0.0], [-68.71360620378277, 45.03496819676343, 0.0], [-68.71331640378321, 45.03524279676299, 0.0], [-68.7131878037834, 45.035517196762555, 0.0], [-68.71296240378376, 45.035768930095514, 0.0], [-68.71251140378445, 45.03608939676167, 0.0], [-68.71160900378584, 45.036387330094556, 0.0], [-68.71048060378763, 45.03657113009427, 0.0], [-68.70883500379017, 45.03588633009531, 0.0], [-68.70806067045805, 45.03565819676237, 0.0], [-68.70696420379306, 45.03563619676237, 0.0], [-68.70577127046158, 45.03581993009544, 0.0], [-68.70467520379663, 45.036117930094974, 0.0], [-68.70380467046465, 45.0362099967615, 0.0], [-68.702933670466, 45.0359133300953, 0.0], [-68.70254640379994, 45.035730730095565, 0.0], [-68.7025452704666, 45.034861930096895, 0.0], [-68.70370420379811, 45.03346639676573, 0.0], [-68.7037034704648, 45.03287199676669, 0.0], [-68.70357380379835, 45.03236913010079, 0.0], [-68.70338000379866, 45.032094796767865, 0.0], [-68.70334747046536, 45.031934796768155, 0.0], [-68.70325080379882, 45.03186633010159, 0.0], [-68.7030890037991, 45.03152339676876, 0.0], [-68.70241120380012, 45.03095233010299, 0.0], [-68.70195960380084, 45.030838330103165, 0.0], [-68.70128240380188, 45.03081593010319, 0.0], [-68.70073420380271, 45.03090773010308, 0.0], [-68.69983160380411, 45.031114130102765, 0.0], [-68.69892907047222, 45.03138899676895, 0.0], [-68.69792980380709, 45.03157259676868, 0.0], [-68.69712320380836, 45.03125299676918, 0.0], [-68.69673600380895, 45.031024596769555, 0.0], [-68.69634847047621, 45.0305217967703, 0.0], [-68.69618647047645, 45.02988173010465, 0.0], [-68.6958620038103, 45.028235796773856, 0.0], [-68.69582847047701, 45.02716113010888, 0.0], [-68.6959890038101, 45.026612396776386, 0.0], [-68.69608480380998, 45.02578919677768, 0.0], [-68.69621327047645, 45.0253547301117, 0.0], [-68.6968878704754, 45.023342330114815, 0.0], [-68.69698407047525, 45.023022130115294, 0.0], [-68.69720900380821, 45.02240473011625, 0.0], [-68.69733747047468, 45.02203879678348, 0.0], [-68.69746620380783, 45.02178719678386, 0.0], [-68.69749820380775, 45.021558530117545, 0.0], [-68.69753020380773, 45.02142133011779, 0.0], [-68.69759420380763, 45.02112399678492, 0.0], [-68.69788340380717, 45.020254996786264, 0.0], [-68.69875080380581, 45.017968130123165, 0.0], [-68.69936167047155, 45.01668733012514, 0.0], [-68.6994578704714, 45.01632153012571, 0.0], [-68.69974660380427, 45.01513239679423, 0.0], [-68.69987447047072, 45.014354930128775, 0.0], [-68.69997100380391, 45.01412619679576, 0.0], [-68.70025880380348, 45.01234273013188, 0.0], [-68.70045100380315, 45.01147373013322, 0.0], [-68.70086727046919, 45.009415730136425, 0.0], [-68.70109047046884, 45.00758633013925, 0.0], [-68.70115380380207, 45.00669473014062, 0.0], [-68.70124960380195, 45.00598593014172, 0.0], [-68.70128107046855, 45.00543713014258, 0.0], [-68.7015692704681, 45.00399653014483, 0.0], [-68.70169687046791, 45.00305899681297, 0.0], [-68.70182400380105, 45.00159559681521, 0.0], [-68.70188820380093, 45.0014355301488, 0.0], [-68.70195180380085, 45.00072659681655, 0.0], [-68.70207980380064, 45.0000807301509, 0.0], [-68.70427120379725, 45.000080396817566, 0.0], [-68.70614240379433, 45.00147833014876, 0.0], [-68.70746427045896, 45.001820330148234, 0.0], [-68.70888267045677, 45.00213939681436, 0.0], [-68.70959207045564, 45.00236753014735, 0.0], [-68.7107530037872, 45.00282393014663, 0.0], [-68.71184927045215, 45.00316599681281, 0.0], [-68.71242980378457, 45.003416996812405, 0.0], [-68.71297840378372, 45.00385113014505, 0.0], [-68.71317227045012, 45.004239596811146, 0.0], [-68.71333367044986, 45.00444533014411, 0.0], [-68.7133662704498, 45.00467393014378, 0.0], [-68.71356027044948, 45.005039596809866, 0.0], [-68.71282040378395, 45.00597753014176, 0.0], [-68.71159760378589, 45.007258930139756, 0.0], [-68.71105120378672, 45.00824239680492, 0.0], [-68.71108540378668, 45.00952273013627, 0.0], [-68.71127940378636, 45.01000273013551, 0.0], [-68.71140847045285, 45.010116930135325, 0.0], [-68.71153780378597, 45.010345530135, 0.0], [-68.71166680378576, 45.01043693013486, 0.0], [-68.7118282704522, 45.01064253013453, 0.0], [-68.7131820704501, 45.01059573013458, 0.0], [-68.7138270037824, 45.010800996800924, 0.0], [-68.71427867044838, 45.01100639680061, 0.0], [-68.7143432037816, 45.01107499680052, 0.0], [-68.71447227044808, 45.01121213013363, 0.0], [-68.71450487044802, 45.01139499679999, 0.0], [-68.7146016704479, 45.01148639679985, 0.0], [-68.71463587044781, 45.012766730131204, 0.0], [-68.71460407044788, 45.01299533013088, 0.0], [-68.71492660378073, 45.013132330130645, 0.0], [-68.71670000377793, 45.013428130130194, 0.0], [-68.7174420037768, 45.01377053012965, 0.0], [-68.71789387044277, 45.01420439679566, 0.0], [-68.71812000377577, 45.01452439679514, 0.0], [-68.71812020377575, 45.0146387301283, 0.0], [-68.71818487044231, 45.014684396794905, 0.0], [-68.71831447044212, 45.01516439679415, 0.0], [-68.71841140377529, 45.015232996794055, 0.0], [-68.71841160377528, 45.01537013012717, 0.0], [-68.71850827044182, 45.01543873012707, 0.0], [-68.71850867044179, 45.01557593012683, 0.0], [-68.71857320377507, 45.01564439679339, 0.0], [-68.71867027044158, 45.015918730126316, 0.0], [-68.71883200377465, 45.01621573012585, 0.0], [-68.7189616704411, 45.016627130125244, 0.0], [-68.71902620377432, 45.01669573012509, 0.0], [-68.71896360377445, 45.01781613012338, 0.0], [-68.71864280377491, 45.0188909967884, 0.0], [-68.7185468037751, 45.019302596787725, 0.0], [-68.71838600377532, 45.01955419678734, 0.0], [-68.71603540377896, 45.02131659678463, 0.0], [-68.7157782037794, 45.02175119678395, 0.0], [-68.7157466704461, 45.022231396783184, 0.0], [-68.71587587044593, 45.022437196782846, 0.0], [-68.7163276704452, 45.02271099678245, 0.0], [-68.7176500037765, 45.02293859678207, 0.0], [-68.71826287044217, 45.023143996781755, 0.0], [-68.7187146704415, 45.02339513011469, 0.0], [-68.71884367044129, 45.02350919678122, 0.0], [-68.71871620377482, 45.02437819677988, 0.0], [-68.71778327044296, 45.02563653011123, 0.0], [-68.71710727044399, 45.0263001301102, 0.0], [-68.71575460377943, 45.027192796775466, 0.0], [-68.71562580377963, 45.02737593010852, 0.0], [-68.71449920378137, 45.02858859677332, 0.0], [-68.71417740378189, 45.0290001967727, 0.0], [-68.71391980378229, 45.0292519967723, 0.0], [-68.71343707044969, 45.02986973010468, 0.0], [-68.71343767044971, 45.030258396770705, 0.0], [-68.71366387044935, 45.03060119677019, 0.0], [-68.71369647044929, 45.030806996769854, 0.0], [-68.71382567044907, 45.030921196769725, 0.0], [-68.71392287044893, 45.031263996769155, 0.0], [-68.7140196704488, 45.03130959676912, 0.0], [-68.71405200378206, 45.03140113010227, 0.0], [-68.71411667044862, 45.03146959676883, 0.0], [-68.7141168704486, 45.03156099676869, 0.0], [-68.71424587044845, 45.03167533010185, 0.0], [-68.7142152704485, 45.03265853010032, 0.0]]], "type": "Polygon"}, "id": "27", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/5198010", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-69.70924606890401, 44.32013979787297, -69.6943830022604, 44.33340099785238], "geometry": {"coordinates": [[[-69.7035906022461, 44.33335499785244, 0.0], [-69.70317660224674, 44.33340099785238, 0.0], [-69.70282526891395, 44.33273813118677, 0.0], [-69.70282360224729, 44.33159479785519, 0.0], [-69.70291900224714, 44.33141179785548, 0.0], [-69.70288586891388, 44.33051999785687, 0.0], [-69.70266246891418, 44.33017719785738, 0.0], [-69.70237546891468, 44.329948597857765, 0.0], [-69.70221580224825, 44.329674397858184, 0.0], [-69.7025650022477, 44.32882799785949, 0.0], [-69.70253220224777, 44.32816499786054, 0.0], [-69.70237260224798, 44.32786779786096, 0.0], [-69.70183060224883, 44.327479397861566, 0.0], [-69.70046080225097, 44.32738893119506, 0.0], [-69.6998238689186, 44.3276181311947, 0.0], [-69.69839166892086, 44.32860233119317, 0.0], [-69.69731020225584, 44.32986059785787, 0.0], [-69.69708786892284, 44.33045533119031, 0.0], [-69.69568846892503, 44.33230839785409, 0.0], [-69.69495640225949, 44.3327891311867, 0.0], [-69.6944468022603, 44.3329493978531, 0.0], [-69.6943830022604, 44.33288093118654, 0.0], [-69.69454186892682, 44.332492131187166, 0.0], [-69.69508260225933, 44.33180573118818, 0.0], [-69.69587746892472, 44.33052473119017, 0.0], [-69.69565246892512, 44.32892419785935, 0.0], [-69.69565166892511, 44.3282153311938, 0.0], [-69.69580966892482, 44.327323397861846, 0.0], [-69.69580780225817, 44.325676931197734, 0.0], [-69.69599846892453, 44.32535673119821, 0.0], [-69.69634866892403, 44.325242131198365, 0.0], [-69.69705000225628, 44.32565333119777, 0.0], [-69.69797426892148, 44.32604153119718, 0.0], [-69.69842026892081, 44.326086931197096, 0.0], [-69.69867506892041, 44.32597239786395, 0.0], [-69.69877026892027, 44.32576653119759, 0.0], [-69.69876900225358, 44.32476053119916, 0.0], [-69.6984814689207, 44.324120331200106, 0.0], [-69.69838580225417, 44.3240747312002, 0.0], [-69.69841746892081, 44.32393753120044, 0.0], [-69.69832186892097, 44.323891797867134, 0.0], [-69.69813006892127, 44.32338879786795, 0.0], [-69.6988928022534, 44.32197059787012, 0.0], [-69.69946560225253, 44.321444331204304, 0.0], [-69.69984666891861, 44.32064373120551, 0.0], [-69.70035580225112, 44.32023179787285, 0.0], [-69.70099246891681, 44.32013979787297, 0.0], [-69.70166166891579, 44.32029953120605, 0.0], [-69.70210786891505, 44.32052779787239, 0.0], [-69.7028730689139, 44.3210759978715, 0.0], [-69.70354226891283, 44.32139573120435, 0.0], [-69.70561340224299, 44.32187439787026, 0.0], [-69.70618726890876, 44.32223993120306, 0.0], [-69.70631586890852, 44.32308579786843, 0.0], [-69.70647540224161, 44.32329153120145, 0.0], [-69.70682606890773, 44.32342839786787, 0.0], [-69.70714460224059, 44.32342813120118, 0.0], [-69.70790880223939, 44.323198997868246, 0.0], [-69.70873600223814, 44.322626597869146, 0.0], [-69.70924540223734, 44.322489131202644, 0.0], [-69.70924606890401, 44.32292359786868, 0.0], [-69.70886446890461, 44.3234269312012, 0.0], [-69.70625526890865, 44.32530393119828, 0.0], [-69.70587366890925, 44.32571573119765, 0.0], [-69.70574680224274, 44.32612753119702, 0.0], [-69.70561946890962, 44.32624193119682, 0.0], [-69.70558806890966, 44.32644773119654, 0.0], [-69.70549266890981, 44.32665373119619, 0.0], [-69.7049194689107, 44.32669979786277, 0.0], [-69.70453740224463, 44.326905931195824, 0.0], [-69.7042192689118, 44.327203331195335, 0.0], [-69.70380640224579, 44.32807259786068, 0.0], [-69.70323380224664, 44.328713331193, 0.0], [-69.70304326891363, 44.32917073119228, 0.0], [-69.70301226891365, 44.329810997857976, 0.0], [-69.7033644689131, 44.33102273118942, 0.0], [-69.7033330022465, 44.331319997855644, 0.0], [-69.7037156689126, 44.33157133118857, 0.0], [-69.70384306891236, 44.331571197855226, 0.0], [-69.7042250689118, 44.33141079785548, 0.0], [-69.70438406891157, 44.33125073118907, 0.0], [-69.70435366891161, 44.33218833118764, 0.0], [-69.70425826891176, 44.33234839785405, 0.0], [-69.70419500224517, 44.332645731186915, 0.0], [-69.70406786891203, 44.33287439785323, 0.0], [-69.70400460224545, 44.33312599785285, 0.0], [-69.70378166891248, 44.33330919785254, 0.0], [-69.7035906022461, 44.33335499785244, 0.0]]], "type": "Polygon"}, "id": "33", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/6711017", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-69.72137706888515, 44.297631931241256, -69.70310000224686, 44.321612397870695], "geometry": {"coordinates": [[[-69.7055538689097, 44.30204893123437, 0.0], [-69.70517120224366, 44.30161473123508, 0.0], [-69.70443840224476, 44.301226597902314, 0.0], [-69.70341900224639, 44.30097579790271, 0.0], [-69.70313226891346, 44.300770197903034, 0.0], [-69.70310000224686, 44.30042719790356, 0.0], [-69.7033854689131, 44.29971813123802, 0.0], [-69.703640002246, 44.29948933123836, 0.0], [-69.70392626891226, 44.29935193123856, 0.0], [-69.70414900224523, 44.29921453123882, 0.0], [-69.70437166891156, 44.29907713123902, 0.0], [-69.70459460224453, 44.299122731238924, 0.0], [-69.70481780224418, 44.29935119790525, 0.0], [-69.70513706891035, 44.2999227312377, 0.0], [-69.70548780224317, 44.300311131237095, 0.0], [-69.70590200224251, 44.30056239790338, 0.0], [-69.70644366890832, 44.30076779790306, 0.0], [-69.70682560224111, 44.30069893123647, 0.0], [-69.70758906890654, 44.300218131237216, 0.0], [-69.70867120223824, 44.29985139790449, 0.0], [-69.70902086890436, 44.299531131238325, 0.0], [-69.709243268904, 44.299164997905564, 0.0], [-69.70943300223706, 44.29827313124025, 0.0], [-69.70971900223657, 44.297975597907396, 0.0], [-69.71045086890211, 44.297631931241256, 0.0], [-69.71092846890139, 44.29765453124122, 0.0], [-69.71178846890007, 44.29792819790748, 0.0], [-69.71239400223243, 44.29827079790692, 0.0], [-69.71293620223162, 44.298910597905945, 0.0], [-69.71312780223133, 44.29923059790542, 0.0], [-69.71379706889695, 44.29966459790478, 0.0], [-69.71421140222964, 44.299892931237764, 0.0], [-69.71453040222912, 44.3002813979038, 0.0], [-69.71453106889578, 44.30080733123634, 0.0], [-69.71316420223127, 44.30224899790073, 0.0], [-69.71227380223263, 44.3030043312329, 0.0], [-69.711161868901, 44.30476593123018, 0.0], [-69.71071820223506, 44.30613819789471, 0.0], [-69.71062286890185, 44.30620693122796, 0.0], [-69.71059126890191, 44.30645839789423, 0.0], [-69.7095104022369, 44.307739797892225, 0.0], [-69.70925740223731, 44.3088833312238, 0.0], [-69.7089400022378, 44.30968393122254, 0.0], [-69.70840000223865, 44.31048473122132, 0.0], [-69.70801886890592, 44.311216731220156, 0.0], [-69.70770186890638, 44.31226893121851, 0.0], [-69.70773480223966, 44.31309199788393, 0.0], [-69.70786260223946, 44.3133663312168, 0.0], [-69.70834120223873, 44.31391473121596, 0.0], [-69.70853280223844, 44.31423473121549, 0.0], [-69.70926606890396, 44.314828797881205, 0.0], [-69.71044506890212, 44.315216597880635, 0.0], [-69.71111486890106, 44.315856331212956, 0.0], [-69.71140160223399, 44.31597053121277, 0.0], [-69.71248466889898, 44.31612953121254, 0.0], [-69.71366426889716, 44.316906197877984, 0.0], [-69.71398300222995, 44.31704313121111, 0.0], [-69.715256802228, 44.316950597877906, 0.0], [-69.7157024022273, 44.31679019787816, 0.0], [-69.71602046889348, 44.31649273121195, 0.0], [-69.7169102688921, 44.315188531214005, 0.0], [-69.71735526889142, 44.31479953121459, 0.0], [-69.71783306889068, 44.31479899788127, 0.0], [-69.71837480222314, 44.314958597881, 0.0], [-69.71894906888895, 44.31562119787998, 0.0], [-69.71898380222223, 44.317290531210745, 0.0], [-69.71959126888794, 44.31877639787507, 0.0], [-69.7200060688873, 44.319187597874475, 0.0], [-69.72102620221904, 44.3197355978736, 0.0], [-69.72137706888515, 44.32000973120654, 0.0], [-69.72131360221857, 44.320192597872904, 0.0], [-69.72051820221981, 44.3206735312055, 0.0], [-69.71978600222099, 44.32090279787178, 0.0], [-69.71918140222192, 44.32131493120448, 0.0], [-69.71914966888863, 44.321452131204296, 0.0], [-69.71886340222238, 44.321612397870695, 0.0], [-69.71870406888934, 44.321589731204085, 0.0], [-69.71857560222287, 44.320972397871685, 0.0], [-69.71844800222306, 44.320789597871965, 0.0], [-69.71781006889069, 44.32033273120601, 0.0], [-69.71742766889128, 44.32019593120623, 0.0], [-69.71609006889338, 44.32024279787282, 0.0], [-69.71570746889398, 44.31990013120668, 0.0], [-69.71548240222762, 44.31868833120859, 0.0], [-69.71506760222832, 44.318139797876086, 0.0], [-69.71411166889646, 44.31782053120992, 0.0], [-69.71181860223334, 44.31791379787643, 0.0], [-69.71038486890222, 44.317663331210156, 0.0], [-69.70952520223688, 44.31777833120998, 0.0], [-69.70847506890522, 44.31835079787578, 0.0], [-69.70812466890573, 44.31835113120911, 0.0], [-69.7080288689059, 44.318236797875954, 0.0], [-69.70799500223927, 44.31679619787815, 0.0], [-69.70780220223958, 44.31558439788006, 0.0], [-69.70729106890701, 44.314532997881656, 0.0], [-69.70649326890828, 44.3134359978834, 0.0], [-69.70646006890831, 44.31249839788484, 0.0], [-69.70709240224068, 44.309182331223326, 0.0], [-69.7070594022407, 44.30831339789131, 0.0], [-69.70696360224088, 44.30819913122485, 0.0], [-69.70693120224092, 44.307833331225424, 0.0], [-69.70667560224132, 44.307215997893024, 0.0], [-69.70578226890939, 44.30609619789476, 0.0], [-69.70517646891028, 44.30550213122905, 0.0], [-69.7051122689104, 44.30513633122962, 0.0], [-69.70543026890994, 44.30477019789686, 0.0], [-69.70664060224135, 44.30502093122976, 0.0], [-69.7075956022399, 44.304837197896745, 0.0], [-69.70886926890455, 44.304767731230186, 0.0], [-69.7091240022375, 44.30465319789704, 0.0], [-69.70966426890334, 44.30408099789793, 0.0], [-69.71036400223556, 44.303485997898804, 0.0], [-69.71144586890057, 44.30300499789956, 0.0], [-69.71170040223353, 44.30282179789987, 0.0], [-69.71217666889942, 44.301906731234624, 0.0], [-69.71236746889917, 44.301792331234765, 0.0], [-69.71271680223197, 44.30115173123579, 0.0], [-69.71265240223204, 44.30074019790311, 0.0], [-69.71217440223279, 44.30044333123686, 0.0], [-69.71217406889946, 44.30030613123711, 0.0], [-69.7120148688997, 44.300283331237154, 0.0], [-69.71175960223343, 44.29994053123767, 0.0], [-69.71150480223383, 44.29984919790445, 0.0], [-69.71096360223464, 44.29994113123769, 0.0], [-69.71026366890243, 44.300238931237175, 0.0], [-69.70822760223888, 44.301475397901925, 0.0], [-69.70752740223998, 44.30170453123492, 0.0], [-69.7055538689097, 44.30204893123437, 0.0]]], "type": "Polygon"}, "id": "36", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/6711039", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-70.23960886808078, 44.1925805314043, -70.23567266808686, 44.196789398064425], "geometry": {"coordinates": [[[-70.2390674680816, 44.1925805314043, 0.0], [-70.23925846808129, 44.19271739807078, 0.0], [-70.23925866808133, 44.19280893140393, 0.0], [-70.23960886808078, 44.19315153140343, 0.0], [-70.23957766808081, 44.193425931403, 0.0], [-70.23913366808148, 44.1938151314024, 0.0], [-70.2390712680816, 44.19443259806809, 0.0], [-70.23881800141532, 44.19486733140076, 0.0], [-70.23862806808228, 44.195324731400035, 0.0], [-70.23821620141626, 44.19587399806585, 0.0], [-70.23805846808318, 44.19651439806489, 0.0], [-70.23742340141752, 44.196789398064425, 0.0], [-70.23666060141869, 44.19676733139784, 0.0], [-70.23640600141908, 44.19665333139801, 0.0], [-70.23567266808686, 44.19548779806644, 0.0], [-70.23576760142004, 44.19523619806688, 0.0], [-70.23637146808579, 44.1952357314002, 0.0], [-70.23757840141724, 44.194868598067444, 0.0], [-70.237736601417, 44.19447959806803, 0.0], [-70.23811780141642, 44.19438779806819, 0.0], [-70.23811706808306, 44.19402193140206, 0.0], [-70.23757566808393, 44.19342799806964, 0.0], [-70.23757486808393, 44.193062131403565, 0.0], [-70.2378606014168, 44.192901798070466, 0.0], [-70.2390674680816, 44.1925805314043, 0.0]]], "type": "Polygon"}, "id": "40", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/6711463", "wblabel": "GNIS_NAME: Lard Pond"}, "type": "Feature"}, {"bbox": [-70.36863786788047, 43.631073932275854, -70.36536360121892, 43.63349759893879], "geometry": {"coordinates": [[[-70.36778800121516, 43.631073932275854, 0.0], [-70.36822866788111, 43.63114253227576, 0.0], [-70.36857500121391, 43.63153119894184, 0.0], [-70.36857500121391, 43.631645598941645, 0.0], [-70.36822860121447, 43.63187419894132, 0.0], [-70.36744160121566, 43.632034198941085, 0.0], [-70.36744146788232, 43.63219433227414, 0.0], [-70.36816560121457, 43.63233153227395, 0.0], [-70.36835446788092, 43.632445932273754, 0.0], [-70.36857480121392, 43.63288033227309, 0.0], [-70.36863786788047, 43.633177598939255, 0.0], [-70.36835446788092, 43.63340619893893, 0.0], [-70.36766180121532, 43.63349759893879, 0.0], [-70.36722106788267, 43.633337732272366, 0.0], [-70.36624506788422, 43.63340633227227, 0.0], [-70.36589886788471, 43.63317753227261, 0.0], [-70.36586726788477, 43.63308613227275, 0.0], [-70.36539506788552, 43.63274299893993, 0.0], [-70.36536360121892, 43.632605798940176, 0.0], [-70.36583586788481, 43.632148532274186, 0.0], [-70.36649706788381, 43.632102798940934, 0.0], [-70.36737860121576, 43.63178273227476, 0.0], [-70.36750446788227, 43.63150833227519, 0.0], [-70.36728420121591, 43.63132533227548, 0.0], [-70.36718980121606, 43.63111959894246, 0.0], [-70.36778800121516, 43.631073932275854, 0.0]]], "type": "Polygon"}, "id": "43", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/6720165", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-70.68787966738495, 43.41817719927303, -70.66475046742084, 43.43236899925097], "geometry": {"coordinates": [[[-70.6875668007188, 43.431521532585634, 0.0], [-70.68728500071921, 43.43204753258482, 0.0], [-70.68715966738608, 43.432139132584666, 0.0], [-70.68653220072036, 43.43218519925125, 0.0], [-70.68612406738771, 43.432002532584875, 0.0], [-70.6858416673881, 43.43202553258482, 0.0], [-70.68534006738889, 43.43236879925098, 0.0], [-70.68505780072269, 43.43236899925097, 0.0], [-70.68493220072287, 43.43232339925106, 0.0], [-70.68493146738956, 43.43172879925197, 0.0], [-70.68468026738992, 43.43156893258555, 0.0], [-70.68392646739107, 43.43079193258677, 0.0], [-70.68348666739178, 43.43028913258752, 0.0], [-70.68241906739343, 43.42946653258883, 0.0], [-70.68241900072678, 43.42937499925563, 0.0], [-70.68229340072696, 43.42932933258902, 0.0], [-70.68229306739363, 43.42898653258953, 0.0], [-70.68213606739386, 43.42884933258978, 0.0], [-70.68157126739476, 43.428872532589764, 0.0], [-70.68113226739541, 43.42903279925616, 0.0], [-70.68081860072925, 43.42905593258945, 0.0], [-70.68072440072939, 43.42898733258954, 0.0], [-70.68012826739698, 43.42903333258948, 0.0], [-70.67981480073081, 43.42923933258919, 0.0], [-70.67943860073137, 43.429628199255205, 0.0], [-70.67931346739823, 43.42999419925468, 0.0], [-70.67912526739855, 43.43008573258783, 0.0], [-70.67896840073212, 43.43008579925453, 0.0], [-70.67874860073249, 43.42988013258815, 0.0], [-70.67884240073232, 43.42944559925553, 0.0], [-70.6791242007319, 43.42898813258955, 0.0], [-70.67899860073209, 43.42885099925644, 0.0], [-70.67815146740008, 43.428805732589865, 0.0], [-70.67796306740036, 43.428714332590005, 0.0], [-70.67799440073361, 43.428508599256986, 0.0], [-70.67808826740014, 43.428417132590425, 0.0], [-70.6789038673989, 43.428256532590694, 0.0], [-70.67896660073211, 43.42818793259079, 0.0], [-70.67893506739887, 43.42795933259117, 0.0], [-70.67833846739978, 43.427525132591825, 0.0], [-70.67827560073317, 43.42734219925876, 0.0], [-70.67793020073373, 43.42706799925918, 0.0], [-70.67730260073472, 43.42699973259266, 0.0], [-70.67629806740291, 43.42631439926038, 0.0], [-70.6757020007372, 43.42636039926032, 0.0], [-70.67538840073769, 43.42647479926012, 0.0], [-70.6751374007381, 43.42645213259351, 0.0], [-70.67491746740507, 43.42615499926063, 0.0], [-70.67303460074135, 43.425538532594885, 0.0], [-70.6724068007423, 43.4251499992622, 0.0], [-70.67203020074288, 43.42503593259568, 0.0], [-70.67093240074462, 43.425082132595605, 0.0], [-70.6704930007453, 43.42487653259593, 0.0], [-70.67036720074549, 43.42467079926291, 0.0], [-70.66999080074606, 43.4245795325964, 0.0], [-70.66839080074857, 43.424694599262864, 0.0], [-70.66792040074927, 43.42485493259596, 0.0], [-70.66766960074966, 43.42512939926223, 0.0], [-70.66745046741664, 43.425838332594424, 0.0], [-70.66726246741695, 43.42599839926089, 0.0], [-70.66685446741758, 43.425975732594225, 0.0], [-70.66672886741776, 43.42579279926116, 0.0], [-70.6668540674176, 43.42533553259523, 0.0], [-70.66685366741757, 43.424878199262594, 0.0], [-70.66675946741776, 43.4248323992627, 0.0], [-70.66556740075293, 43.424855799262616, 0.0], [-70.66525346742009, 43.424672999262896, 0.0], [-70.66528460075335, 43.42414699926371, 0.0], [-70.66515900075353, 43.42407853259721, 0.0], [-70.6651272007536, 43.423575532597965, 0.0], [-70.66484466742071, 43.42336979926495, 0.0], [-70.66475046742084, 43.42318679926524, 0.0], [-70.66478166742081, 43.42302679926547, 0.0], [-70.66493860075389, 43.42291239926567, 0.0], [-70.66493826742055, 43.4226379992661, 0.0], [-70.6658476007525, 43.42199739926707, 0.0], [-70.66591606741906, 43.42188493260056, 0.0], [-70.66597286741899, 43.42179159926741, 0.0], [-70.66638080075165, 43.42188293260057, 0.0], [-70.6669142674175, 43.42227139926666, 0.0], [-70.66773006741624, 43.42247679926635, 0.0], [-70.66911060074744, 43.42259059926613, 0.0], [-70.66955006741341, 43.42293333259897, 0.0], [-70.6697382674131, 43.42295619926557, 0.0], [-70.67045966741199, 43.42288733259903, 0.0], [-70.67102406741111, 43.42252099926628, 0.0], [-70.67146306741046, 43.42210919926691, 0.0], [-70.6716196674102, 43.421880532600596, 0.0], [-70.67171380074336, 43.4218575992673, 0.0], [-70.67190180074311, 43.42162879926764, 0.0], [-70.67183880074322, 43.421240199268254, 0.0], [-70.67124226741078, 43.420828932602205, 0.0], [-70.67114800074427, 43.42050893260273, 0.0], [-70.67089666741134, 43.42025739926976, 0.0], [-70.67048866741197, 43.420028932603486, 0.0], [-70.67033180074554, 43.41982319927047, 0.0], [-70.67033146741221, 43.41950313260429, 0.0], [-70.6699548007461, 43.41911453260491, 0.0], [-70.66960960074664, 43.41893173260519, 0.0], [-70.66932686741376, 43.418611799272355, 0.0], [-70.66942066741359, 43.41817719927303, 0.0], [-70.6697030007465, 43.418222932606284, 0.0], [-70.67139820074385, 43.419754199270585, 0.0], [-70.67158686741027, 43.42025719926977, 0.0], [-70.67168106741008, 43.42034839926964, 0.0], [-70.67221426740929, 43.42027959926975, 0.0], [-70.67237106740902, 43.42018813260324, 0.0], [-70.6733120007409, 43.41998193260355, 0.0], [-70.67375140074023, 43.42009599927002, 0.0], [-70.6740964007397, 43.42023299926984, 0.0], [-70.67503826740489, 43.42105573260187, 0.0], [-70.67519526740466, 43.42121573260164, 0.0], [-70.67538480073767, 43.422473199266335, 0.0], [-70.6758242674037, 43.422976132598876, 0.0], [-70.6767344007356, 43.42327293259842, 0.0], [-70.67704840073509, 43.423592932597955, 0.0], [-70.67748786740111, 43.42384413259754, 0.0], [-70.67861780073264, 43.424323732596804, 0.0], [-70.67984200073079, 43.425146332595546, 0.0], [-70.68015606739692, 43.42542053259507, 0.0], [-70.68269920072635, 43.427225599258975, 0.0], [-70.6829816007259, 43.4273395992588, 0.0], [-70.6837658007247, 43.42717919925906, 0.0], [-70.68433006739048, 43.42683579925955, 0.0], [-70.68483200072302, 43.42674399925971, 0.0], [-70.68520860072243, 43.42676679925967, 0.0], [-70.68530266738895, 43.426835199259585, 0.0], [-70.68533420072225, 43.42692673259273, 0.0], [-70.68546046738874, 43.4277269325915, 0.0], [-70.68536646738886, 43.427818532591346, 0.0], [-70.68495866738948, 43.42793313259119, 0.0], [-70.68473940072317, 43.42818473259081, 0.0], [-70.68480240072307, 43.428413332590424, 0.0], [-70.6850222673894, 43.4286189992568, 0.0], [-70.68574420072162, 43.428915799256345, 0.0], [-70.68627800072079, 43.42930419925574, 0.0], [-70.68678060072, 43.42987559925484, 0.0], [-70.68787966738495, 43.430629532587034, 0.0], [-70.68781726738507, 43.430995399253106, 0.0], [-70.68772320071855, 43.43108693258631, 0.0], [-70.6875668007188, 43.431521532585634, 0.0]]], "type": "Polygon"}, "id": "45", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/5843642", "wblabel": "GNIS_NAME: Estes Lake"}, "type": "Feature"}, {"bbox": [-70.69593546737246, 43.42333199926503, -70.68589806738805, 43.426971932592664], "geometry": {"coordinates": [[[-70.68602426738784, 43.42676633259299, 0.0], [-70.68590360072136, 43.426481332593426, 0.0], [-70.68589840072138, 43.42646913259347, 0.0], [-70.68589806738805, 43.426194599260555, 0.0], [-70.68614866738767, 43.42592013259434, 0.0], [-70.68658766738696, 43.42573699926129, 0.0], [-70.68771700071852, 43.42564479926142, 0.0], [-70.68825020071773, 43.425507332594975, 0.0], [-70.68875180071694, 43.425186932595466, 0.0], [-70.68944186738253, 43.425003599262425, 0.0], [-70.69010026738152, 43.42475159926278, 0.0], [-70.69050766738087, 43.424408399263314, 0.0], [-70.69147966737938, 43.42390459926412, 0.0], [-70.69157360071256, 43.42369879926446, 0.0], [-70.69254566737771, 43.42335519926496, 0.0], [-70.69304760071026, 43.42333199926503, 0.0], [-70.69420940070847, 43.42420019926368, 0.0], [-70.69452326737462, 43.424337132596804, 0.0], [-70.69543320070659, 43.42442799926329, 0.0], [-70.69577840070605, 43.424496399263205, 0.0], [-70.69588060070589, 43.42458553259638, 0.0], [-70.69593546737246, 43.42463339926297, 0.0], [-70.6958728007059, 43.42477073259613, 0.0], [-70.69552786737307, 43.42493093259583, 0.0], [-70.69474386737431, 43.425160199262166, 0.0], [-70.69433606737493, 43.425160399262154, 0.0], [-70.69351960070952, 43.42447493259658, 0.0], [-70.69292320071048, 43.42420093259699, 0.0], [-70.69254660071107, 43.42415553259707, 0.0], [-70.6922330673782, 43.424292799263526, 0.0], [-70.69195100071198, 43.42456739926308, 0.0], [-70.69170046737901, 43.42488773259595, 0.0], [-70.6911358673799, 43.42504813259569, 0.0], [-70.69060306738072, 43.42543713259505, 0.0], [-70.69003880071494, 43.42575779926125, 0.0], [-70.68909786738305, 43.42605559926079, 0.0], [-70.68799986738475, 43.426101932594065, 0.0], [-70.68768620071859, 43.42619359926056, 0.0], [-70.68690246738646, 43.42667419925982, 0.0], [-70.68668320072015, 43.426857332592874, 0.0], [-70.6864010007206, 43.42697179925938, 0.0], [-70.68618126738761, 43.426971932592664, 0.0], [-70.68602426738784, 43.42676633259299, 0.0]]], "type": "Polygon"}, "id": "48", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/5843646", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-68.32673380438325, 46.50156279448697, -68.19112427126043, 46.621155194301366], "geometry": {"coordinates": [[[-68.23040447119945, 46.621155194301366, 0.0], [-68.23010540453322, 46.62085839430182, 0.0], [-68.22953947120078, 46.61980739430345, 0.0], [-68.22867547120211, 46.61907679430459, 0.0], [-68.22678367120506, 46.61862132763861, 0.0], [-68.22678327120508, 46.61843859430559, 0.0], [-68.2278436712034, 46.61779759430658, 0.0], [-68.22807520453642, 46.61740872764051, 0.0], [-68.22807400453638, 46.6167915943081, 0.0], [-68.22784047120342, 46.61601459430932, 0.0], [-68.22770567120364, 46.61489472764441, 0.0], [-68.22810207120301, 46.61407152764565, 0.0], [-68.22810067120304, 46.61331719431348, 0.0], [-68.22813227120298, 46.61249432764811, 0.0], [-68.23758647118831, 46.61287412764756, 0.0], [-68.23818327118738, 46.61278212764768, 0.0], [-68.23931027118562, 46.612438127648204, 0.0], [-68.23930980451894, 46.61220952764859, 0.0], [-68.23901080451941, 46.61195839431559, 0.0], [-68.23901060451942, 46.61182132764918, 0.0], [-68.23708727118907, 46.612051727648804, 0.0], [-68.22809747120306, 46.61155719431622, 0.0], [-68.22743387120408, 46.611443527649726, 0.0], [-68.22706860453798, 46.6112381276501, 0.0], [-68.22683600453831, 46.61098692765046, 0.0], [-68.22686800453829, 46.61036959431806, 0.0], [-68.22733140453755, 46.60991212765214, 0.0], [-68.22915427120137, 46.6092019276532, 0.0], [-68.23223747119658, 46.60844479432109, 0.0], [-68.23343060452811, 46.6079865943218, 0.0], [-68.23495460452574, 46.60718512765635, 0.0], [-68.23634567119024, 46.606223727657834, 0.0], [-68.23757047118835, 46.60507972765964, 0.0], [-68.23833147118717, 46.604233194327605, 0.0], [-68.2389586711862, 46.602883994329716, 0.0], [-68.23905480451936, 46.601215327665614, 0.0], [-68.2395502045186, 46.60027759433376, 0.0], [-68.23997920451791, 46.599248594335336, 0.0], [-68.24024207118418, 46.59808272767049, 0.0], [-68.24017360451762, 46.59700839433884, 0.0], [-68.23983980451811, 46.59600299434038, 0.0], [-68.23930767118566, 46.595226327674936, 0.0], [-68.23904047118606, 46.594403727676195, 0.0], [-68.23893880451953, 46.59328392767793, 0.0], [-68.2392344045191, 46.591912127680075, 0.0], [-68.23933360451895, 46.59182059434687, 0.0], [-68.23936467118557, 46.590860527681684, 0.0], [-68.23929800451896, 46.590654794348666, 0.0], [-68.23939347118551, 46.58875759435165, 0.0], [-68.23926020451904, 46.588414927685506, 0.0], [-68.23916060451921, 46.58836919435225, 0.0], [-68.23925900451906, 46.587820527686404, 0.0], [-68.23925787118571, 46.58731759435386, 0.0], [-68.23948880451866, 46.58672312768812, 0.0], [-68.24025067118419, 46.58647099435518, 0.0], [-68.2404822711838, 46.586196394355625, 0.0], [-68.24058120451701, 46.585922127689344, 0.0], [-68.24021540451753, 46.585419527690135, 0.0], [-68.24018040451762, 46.58455092769151, 0.0], [-68.24050860451712, 46.582996327693934, 0.0], [-68.24014227118431, 46.58221959436179, 0.0], [-68.24010847118439, 46.581945327695564, 0.0], [-68.23954300451862, 46.581008727697, 0.0], [-68.23924280451905, 46.580094727698395, 0.0], [-68.23877627118645, 46.57890652770027, 0.0], [-68.23807787118756, 46.57787859436854, 0.0], [-68.23784447118788, 46.57719312770291, 0.0], [-68.23784307118791, 46.5764845943707, 0.0], [-68.23744287118853, 46.57534199437248, 0.0], [-68.23654520452322, 46.574017194374505, 0.0], [-68.23574860452447, 46.57344652770871, 0.0], [-68.23531667119181, 46.5729669277095, 0.0], [-68.23445187119319, 46.57148199437847, 0.0], [-68.23342280452812, 46.57066012771304, 0.0], [-68.23302467119538, 46.570454727713354, 0.0], [-68.23259307119605, 46.5700893943806, 0.0], [-68.23182767119727, 46.56846719438312, 0.0], [-68.23169467119743, 46.568307394383396, 0.0], [-68.23152560453104, 46.566615994385984, 0.0], [-68.23122600453149, 46.56586199438715, 0.0], [-68.23128920453144, 46.56430759438956, 0.0], [-68.23102280453185, 46.563644994390586, 0.0], [-68.23091847119866, 46.56113072772786, 0.0], [-68.23108267119841, 46.56033059439574, 0.0], [-68.23094947119858, 46.56003352772956, 0.0], [-68.23085007119874, 46.559987994396295, 0.0], [-68.23048400453268, 46.559142527730955, 0.0], [-68.23028167119963, 46.55747412773354, 0.0], [-68.23001627120004, 46.55726859440051, 0.0], [-68.23001587120007, 46.557108594400745, 0.0], [-68.22984967120033, 46.55678872773461, 0.0], [-68.2299474045335, 46.555919994402586, 0.0], [-68.22968107120056, 46.55528032773691, 0.0], [-68.22914800453475, 46.55368072773939, 0.0], [-68.22908040453484, 46.552972194407175, 0.0], [-68.2289474712017, 46.552858127740706, 0.0], [-68.22914287120142, 46.551029194410205, 0.0], [-68.2292090712013, 46.5509605944103, 0.0], [-68.2292022712013, 46.5509033944104, 0.0], [-68.22907427120151, 46.54981779441209, 0.0], [-68.22887520453514, 46.549612327745706, 0.0], [-68.2287082712021, 46.54892672774679, 0.0], [-68.22860867120221, 46.54885819441358, 0.0], [-68.22850767120241, 46.548081127748105, 0.0], [-68.22840820453587, 46.5480355277482, 0.0], [-68.22834087120265, 46.54746419441574, 0.0], [-68.22784027120343, 46.5455673944187, 0.0], [-68.22724187120434, 46.544356527753905, 0.0], [-68.22621267120593, 46.54321452775565, 0.0], [-68.22428820454229, 46.541478994425006, 0.0], [-68.22279360454462, 46.5393773277616, 0.0], [-68.22116807121381, 46.53800732776375, 0.0], [-68.21931087121669, 46.536728727765706, 0.0], [-68.21616120455491, 46.53492552776851, 0.0], [-68.21483487122362, 46.53398939443662, 0.0], [-68.21330887122599, 46.53257339443883, 0.0], [-68.21148480456213, 46.53104332777457, 0.0], [-68.20989367123127, 46.530107394442666, 0.0], [-68.20936300456543, 46.529627727776756, 0.0], [-68.20909680456583, 46.52880499444467, 0.0], [-68.20896247123272, 46.52759359444656, 0.0], [-68.20869667123316, 46.527068127780694, 0.0], [-68.20872960456643, 46.526953794447536, 0.0], [-68.20836427123368, 46.52629119444862, 0.0], [-68.20836267123366, 46.52521692778362, 0.0], [-68.20862707123325, 46.524942327784004, 0.0], [-68.20869280456651, 46.524576594451275, 0.0], [-68.20859327123333, 46.52446232778476, 0.0], [-68.20806327123415, 46.52437132778488, 0.0], [-68.20793067123435, 46.52427999445172, 0.0], [-68.20796287123426, 46.523685594452616, 0.0], [-68.20786320456779, 46.523502794452895, 0.0], [-68.20739940456849, 46.52334312778652, 0.0], [-68.20690307123596, 46.52361779445272, 0.0], [-68.20706967123567, 46.52432632778499, 0.0], [-68.20650727123655, 46.524669527784454, 0.0], [-68.20634247123678, 46.525149727783685, 0.0], [-68.20604487123728, 46.525424194449954, 0.0], [-68.20548187123813, 46.525493127783136, 0.0], [-68.20481927123916, 46.52524212778354, 0.0], [-68.20355880457447, 46.523917327785625, 0.0], [-68.20213320457668, 46.52275252778742, 0.0], [-68.20123827124473, 46.52218159445499, 0.0], [-68.19981347124696, 46.521519727789325, 0.0], [-68.19931660458104, 46.52135999445625, 0.0], [-68.19792507124987, 46.52078952779044, 0.0], [-68.1965992712519, 46.51985319445856, 0.0], [-68.19606860458606, 46.51909912779308, 0.0], [-68.1954370712537, 46.517408127795704, 0.0], [-68.19533760458722, 46.5173395277958, 0.0], [-68.194839004588, 46.51587699446475, 0.0], [-68.19430827125547, 46.515008727799454, 0.0], [-68.19414160458905, 46.51420879446732, 0.0], [-68.19457087125505, 46.51324852780215, 0.0], [-68.19457020458839, 46.51272279446965, 0.0], [-68.19417267125567, 46.51260872780318, 0.0], [-68.19400740458929, 46.512723127802985, 0.0], [-68.19404060458925, 46.51288312780275, 0.0], [-68.19384227125619, 46.51311179446907, 0.0], [-68.19357747125662, 46.51318052780226, 0.0], [-68.19321287125717, 46.51290639446938, 0.0], [-68.19208740459226, 46.513021394469206, 0.0], [-68.19165667125958, 46.512701727803005, 0.0], [-68.19162327125963, 46.51251879446994, 0.0], [-68.1914244045933, 46.512313194470266, 0.0], [-68.19132380459342, 46.51130752780517, 0.0], [-68.19122427126024, 46.51117039447206, 0.0], [-68.19122367126027, 46.510621927806255, 0.0], [-68.19112427126043, 46.51053039447305, 0.0], [-68.1911564045937, 46.509730394474275, 0.0], [-68.19171780459283, 46.50861012780939, 0.0], [-68.19227980459198, 46.508015394476956, 0.0], [-68.19466140458826, 46.50639112781283, 0.0], [-68.19542187125376, 46.5057963944804, 0.0], [-68.19588420458638, 46.50483599448188, 0.0], [-68.1962806712524, 46.504218594482836, 0.0], [-68.19714040458439, 46.50346379448405, 0.0], [-68.19733887125079, 46.503463594484, 0.0], [-68.19770327125019, 46.50364632781708, 0.0], [-68.19783620458333, 46.503920394483316, 0.0], [-68.19770480458357, 46.50478919448199, 0.0], [-68.1967470712517, 46.50652699447926, 0.0], [-68.1967480712517, 46.50718979447822, 0.0], [-68.19694700458473, 46.50737259447794, 0.0], [-68.19731100458415, 46.50723519447814, 0.0], [-68.19770740458353, 46.506686394479004, 0.0], [-68.19774007125017, 46.50636632781283, 0.0], [-68.19793847124987, 46.506251927813025, 0.0], [-68.19793827124982, 46.506069127813305, 0.0], [-68.19803747124968, 46.50602332781341, 0.0], [-68.19820247124943, 46.50563459448068, 0.0], [-68.19889567124835, 46.50417119448292, 0.0], [-68.19902800458146, 46.504056927816464, 0.0], [-68.19919267124789, 46.50346239448402, 0.0], [-68.1998536712469, 46.50270779448522, 0.0], [-68.20051487124584, 46.502090127819486, 0.0], [-68.2012094712448, 46.501769727819976, 0.0], [-68.20177207124391, 46.50163212782019, 0.0], [-68.20286440457551, 46.50156279448697, 0.0], [-68.20491747123901, 46.50208712781949, 0.0], [-68.20710480456893, 46.50375419448358, 0.0], [-68.20783360456784, 46.50409659448303, 0.0], [-68.20886040456622, 46.50443872781585, 0.0], [-68.21018500456415, 46.50468912781548, 0.0], [-68.21147587122886, 46.50459679448227, 0.0], [-68.21260047122706, 46.504092994483074, 0.0], [-68.21329480455933, 46.503498194483996, 0.0], [-68.21379127122526, 46.503520594483916, 0.0], [-68.21498380455671, 46.50397692781655, 0.0], [-68.2156470045557, 46.50466212781549, 0.0], [-68.21637580455456, 46.50493579448175, 0.0], [-68.21786587121892, 46.505208927814635, 0.0], [-68.22058060454805, 46.505320927814466, 0.0], [-68.22137487121347, 46.5052287944813, 0.0], [-68.22289640454443, 46.504518994482396, 0.0], [-68.22415387120913, 46.504220727816175, 0.0], [-68.22478280454152, 46.5041973278162, 0.0], [-68.22594200453972, 46.504561994482344, 0.0], [-68.22663807120529, 46.504972927815004, 0.0], [-68.22740140453743, 46.506023727813385, 0.0], [-68.22816420453626, 46.506731594478936, 0.0], [-68.22982107120038, 46.50766732781085, 0.0], [-68.23306720452865, 46.508418594476325, 0.0], [-68.23459040452627, 46.50862292780937, 0.0], [-68.23545180452493, 46.508896394475585, 0.0], [-68.23870060451992, 46.511018994472295, 0.0], [-68.24079020451666, 46.51277692780292, 0.0], [-68.24205000451468, 46.513598594468306, 0.0], [-68.24307760451313, 46.51412319446746, 0.0], [-68.24480067117713, 46.51471572779991, 0.0], [-68.24572800450898, 46.51482899446637, 0.0], [-68.24738327117308, 46.514781594466456, 0.0], [-68.24946860450319, 46.514459327800296, 0.0], [-68.25244540449859, 46.51356772780167, 0.0], [-68.25360480449677, 46.51334032780204, 0.0], [-68.25492920449472, 46.51336459446867, 0.0], [-68.25595467115977, 46.51375419446805, 0.0], [-68.2563852711591, 46.51364032780157, 0.0], [-68.25645260449232, 46.51309179446906, 0.0], [-68.25661827115874, 46.5130233944692, 0.0], [-68.25714747115796, 46.51325252780214, 0.0], [-68.2578746711568, 46.513893327801156, 0.0], [-68.25876700448873, 46.51462559446668, 0.0], [-68.2597590044872, 46.51524379446573, 0.0], [-68.26170847115088, 46.51723439446266, 0.0], [-68.262468404483, 46.51801232779479, 0.0], [-68.26398907114731, 46.51920239445957, 0.0], [-68.26451747114652, 46.51988872779185, 0.0], [-68.26455027114645, 46.52004872779162, 0.0], [-68.26481467114604, 46.52027759445792, 0.0], [-68.26484747114597, 46.520414794457736, 0.0], [-68.26643427114351, 46.52183352778883, 0.0], [-68.26788747114125, 46.523709127785935, 0.0], [-68.26891247113969, 46.52451012778471, 0.0], [-68.26960680447195, 46.525196527783635, 0.0], [-68.2704318711373, 46.52668299444798, 0.0], [-68.27086140447, 46.52720912778051, 0.0], [-68.27175407113526, 46.527987127779284, 0.0], [-68.27234840446766, 46.52892479444449, 0.0], [-68.27317467113306, 46.52986272777639, 0.0], [-68.27367087113231, 46.530160327775945, 0.0], [-68.27512740446338, 46.53050439444206, 0.0], [-68.27578887112901, 46.531076527774474, 0.0], [-68.27701247112708, 46.53206039443961, 0.0], [-68.2776084044595, 46.5322209944394, 0.0], [-68.27883380445763, 46.532221994439396, 0.0], [-68.27939607112341, 46.53263392777205, 0.0], [-68.27999147112246, 46.53313732777127, 0.0], [-68.28015640445557, 46.53354892777065, 0.0], [-68.28048707112168, 46.53386919443682, 0.0], [-68.28167907111987, 46.53407579443649, 0.0], [-68.28191087111952, 46.53403019443658, 0.0], [-68.28174640445309, 46.53341292777088, 0.0], [-68.28214447111912, 46.53304752777143, 0.0], [-68.28307200445101, 46.53302539443814, 0.0], [-68.28419747111593, 46.53341499443752, 0.0], [-68.29207327110373, 46.538038194430385, 0.0], [-68.29329747110182, 46.538999127762224, 0.0], [-68.29382627110101, 46.53979959442762, 0.0], [-68.29399167110074, 46.53991392776078, 0.0], [-68.29402460443401, 46.54009679442714, 0.0], [-68.29458680443315, 46.54069139442623, 0.0], [-68.29478520443286, 46.54103452775905, 0.0], [-68.29796060442794, 46.54428252775398, 0.0], [-68.29885407109322, 46.544968927752905, 0.0], [-68.30057540442385, 46.54595292775139, 0.0], [-68.30216360442142, 46.54750832774897, 0.0], [-68.30328827108633, 46.54876612774706, 0.0], [-68.30378467108557, 46.54915512774642, 0.0], [-68.30381767108548, 46.54926939441293, 0.0], [-68.3049096710838, 46.550275794411334, 0.0], [-68.30590280441561, 46.55093932774366, 0.0], [-68.30666440441439, 46.55132832774308, 0.0], [-68.308883604411, 46.551878127742214, 0.0], [-68.30954607107662, 46.55210712774186, 0.0], [-68.31053940440842, 46.55267912774099, 0.0], [-68.31206287107273, 46.553205727740135, 0.0], [-68.32017900439342, 46.55483279440426, 0.0], [-68.3235578043882, 46.55577152773617, 0.0], [-68.32415380438727, 46.55620599440215, 0.0], [-68.32451820438672, 46.556251927735445, 0.0], [-68.32498187105267, 46.556503594401704, 0.0], [-68.32498180438597, 46.55673219440132, 0.0], [-68.32521360438562, 46.55693799440104, 0.0], [-68.32521327105229, 46.55721232773391, 0.0], [-68.32415167105393, 46.55837759439879, 0.0], [-68.32415160438728, 46.55853759439856, 0.0], [-68.32491320438606, 46.55924652773075, 0.0], [-68.32527767105216, 46.55926952773075, 0.0], [-68.32597367105109, 46.55904132773111, 0.0], [-68.32617247105082, 46.559064194397706, 0.0], [-68.32643740438374, 46.55929292773072, 0.0], [-68.32637100438382, 46.559429994397135, 0.0], [-68.32574107105148, 46.55984119439654, 0.0], [-68.3257408710515, 46.5599555277297, 0.0], [-68.32673380438325, 46.56137312772745, 0.0], [-68.32669987104998, 46.56210459439302, 0.0], [-68.32643440438375, 46.56260732772557, 0.0], [-68.32587047105125, 46.56315572772468, 0.0], [-68.32514087105238, 46.56370392772385, 0.0], [-68.32394727105424, 46.56436632772284, 0.0], [-68.3225550710564, 46.56475419438891, 0.0], [-68.31675540439875, 46.56488859438866, 0.0], [-68.31596067106665, 46.56431672772288, 0.0], [-68.31539760440086, 46.56404219438997, 0.0], [-68.31460247106878, 46.56379032772372, 0.0], [-68.3142710044026, 46.563858727723584, 0.0], [-68.31377347107002, 46.564178394389785, 0.0], [-68.31327640440418, 46.56415532772314, 0.0], [-68.31328307107083, 46.56408692772328, 0.0], [-68.31331000440412, 46.56381239439037, 0.0], [-68.31317780440429, 46.56346952772424, 0.0], [-68.31287987107146, 46.56317219439137, 0.0], [-68.31181980440641, 46.56282872772522, 0.0], [-68.31129020440721, 46.56223412772613, 0.0], [-68.31072720440812, 46.56191379439332, 0.0], [-68.31016400440899, 46.561753527726864, 0.0], [-68.30685047108079, 46.56152312772724, 0.0], [-68.3058896710823, 46.561362394394166, 0.0], [-68.30509467108351, 46.56111059439456, 0.0], [-68.30449867108445, 46.56067592772854, 0.0], [-68.30446587108452, 46.56049299439553, 0.0], [-68.30436647108462, 46.56044719439558, 0.0], [-68.30440047108459, 46.55973859439666, 0.0], [-68.30413627108499, 46.5590299277311, 0.0], [-68.3037390710856, 46.558709594398294, 0.0], [-68.30320927108642, 46.55843499439868, 0.0], [-68.30264620442063, 46.55827459439894, 0.0], [-68.30195067108838, 46.55795419439943, 0.0], [-68.30118947108957, 46.55733652773375, 0.0], [-68.30003127109137, 46.55616999440224, 0.0], [-68.29913840442612, 46.55498079440406, 0.0], [-68.29874127109338, 46.55459199440469, 0.0], [-68.29834400442735, 46.55438599440498, 0.0], [-68.29592647109774, 46.55349292773968, 0.0], [-68.29516507109895, 46.55303512774043, 0.0], [-68.29480120443282, 46.552646327741, 0.0], [-68.29437200443351, 46.55159459440932, 0.0], [-68.2939094711009, 46.55067999441076, 0.0], [-68.29265247110283, 46.54942192774604, 0.0], [-68.29238827110322, 46.548713127747135, 0.0], [-68.29215680443696, 46.54841579441427, 0.0], [-68.29185980443737, 46.54768412774871, 0.0], [-68.28971000444074, 46.54541959441889, 0.0], [-68.28822080444303, 46.544344194420546, 0.0], [-68.28732707111112, 46.5439319944212, 0.0], [-68.28610280444633, 46.54301679442261, 0.0], [-68.2850776711146, 46.54194172775766, 0.0], [-68.28411827111609, 46.54118652775878, 0.0], [-68.28302600445113, 46.54068279442623, 0.0], [-68.28017900445553, 46.53958339442795, 0.0], [-68.27888827112417, 46.538919527762346, 0.0], [-68.27766420445943, 46.53807259443033, 0.0], [-68.27713460446023, 46.53786639443064, 0.0], [-68.2750478044635, 46.53788752776393, 0.0], [-68.27279640446699, 46.53731412776483, 0.0], [-68.27140540446914, 46.537198527764986, 0.0], [-68.27061080447038, 46.537014994431956, 0.0], [-68.27014747113776, 46.53680879443226, 0.0], [-68.26965140447186, 46.53639692776625, 0.0], [-68.26915627113931, 46.53552792776759, 0.0], [-68.26915667113929, 46.53532212776793, 0.0], [-68.26823187114076, 46.5339039944368, 0.0], [-68.26809947114094, 46.53383532777019, 0.0], [-68.268066871141, 46.533606727770575, 0.0], [-68.26786827114131, 46.533515327770715, 0.0], [-68.26773700447484, 46.532920794438326, 0.0], [-68.26790360447455, 46.532463794439025, 0.0], [-68.2677712044748, 46.532395127772475, 0.0], [-68.26783867114136, 46.53177799444006, 0.0], [-68.26727647114222, 46.53134312777411, 0.0], [-68.26711167114246, 46.53088592777482, 0.0], [-68.26628460447711, 46.53045079444212, 0.0], [-68.26572320447798, 46.52967299444333, 0.0], [-68.26565747114472, 46.52937592777715, 0.0], [-68.26555820447822, 46.529352927777154, 0.0], [-68.2655586711449, 46.529101527777584, 0.0], [-68.26526180447865, 46.5285525944451, 0.0], [-68.26522927114542, 46.52825539444552, 0.0], [-68.26509720447893, 46.52809519444577, 0.0], [-68.26493340447917, 46.527157994447236, 0.0], [-68.26476847114611, 46.526837794447715, 0.0], [-68.26420627114697, 46.52642579444836, 0.0], [-68.26232187114988, 46.524846727784166, 0.0], [-68.26212400448355, 46.52448079445139, 0.0], [-68.26192680448383, 46.52372632778588, 0.0], [-68.26129867115151, 46.52315419445347, 0.0], [-68.2612664044849, 46.522788527787384, 0.0], [-68.26096887115199, 46.52249099445447, 0.0], [-68.26014167115329, 46.522193127788285, 0.0], [-68.25941400448778, 46.52182659445555, 0.0], [-68.25911660448821, 46.521529127789336, 0.0], [-68.2574290711575, 46.52088739445696, 0.0], [-68.25713180449128, 46.52058992779075, 0.0], [-68.25713300449132, 46.5200413277916, 0.0], [-68.25703387115811, 46.5199039944585, 0.0], [-68.25610747115957, 46.51956032779236, 0.0], [-68.2550478711612, 46.51953639445907, 0.0], [-68.25392267116297, 46.51926079445951, 0.0], [-68.25306167116429, 46.51932859445941, 0.0], [-68.25263160449828, 46.51914519445967, 0.0], [-68.2521360711657, 46.51864179446045, 0.0], [-68.25167287116642, 46.518458394460765, 0.0], [-68.24947680450316, 46.51804799446137, 0.0], [-68.24778720450581, 46.51768412779529, 0.0], [-68.24487220451033, 46.51713859446278, 0.0], [-68.2430180045132, 46.517163394462784, 0.0], [-68.2415936045154, 46.51686772779652, 0.0], [-68.24046687118386, 46.51643452779723, 0.0], [-68.23907420451934, 46.51547592779872, 0.0], [-68.23728467118877, 46.51479192779976, 0.0], [-68.23393847119394, 46.513789394468006, 0.0], [-68.23195027119704, 46.51287692780272, 0.0], [-68.23108907119837, 46.512717794469665, 0.0], [-68.22575927120664, 46.513088194469105, 0.0], [-68.22493180454126, 46.51322619446887, 0.0], [-68.22162467121308, 46.515354794465566, 0.0], [-68.22122847121369, 46.515972327797954, 0.0], [-68.22109720454722, 46.516635327796905, 0.0], [-68.22053507121478, 46.51709279446288, 0.0], [-68.22053527121477, 46.51718432779609, 0.0], [-68.2208668045476, 46.51741259446237, 0.0], [-68.2212980712136, 46.51793799446153, 0.0], [-68.22133267121353, 46.51873799446031, 0.0], [-68.22113587121385, 46.51976679445875, 0.0], [-68.22103660454735, 46.519835394458596, 0.0], [-68.22123667121366, 46.52056672779082, 0.0], [-68.2217684045462, 46.521640527789145, 0.0], [-68.22196740454586, 46.52184612778882, 0.0], [-68.22196767121255, 46.522006127788586, 0.0], [-68.22210027121235, 46.52207459445515, 0.0], [-68.222333071212, 46.52262299445431, 0.0], [-68.22240120454518, 46.5236285944527, 0.0], [-68.22280007121128, 46.524542594451304, 0.0], [-68.22336407121037, 46.525044994450525, 0.0], [-68.22621580453927, 46.52709979444734, 0.0], [-68.227674804537, 46.52808132777915, 0.0], [-68.23331107119492, 46.53116199444105, 0.0], [-68.23463807119288, 46.53230359443927, 0.0], [-68.23530207119182, 46.533102994438025, 0.0], [-68.23692847118934, 46.5347243944355, 0.0], [-68.23832207118716, 46.53588872776703, 0.0], [-68.2395176711853, 46.537418994431334, 0.0], [-68.24024800451753, 46.53814972776354, 0.0], [-68.24104527118294, 46.53922319442853, 0.0], [-68.24151087118219, 46.54013712776043, 0.0], [-68.24161040451537, 46.54018272776034, 0.0], [-68.24181080451507, 46.54091392775922, 0.0], [-68.24191020451491, 46.54095952775913, 0.0], [-68.24194427118152, 46.54143952775843, 0.0], [-68.2421440711812, 46.54187359442443, 0.0], [-68.24237740451417, 46.54255912775665, 0.0], [-68.2427460045136, 46.54447879442034, 0.0], [-68.24268447118038, 46.546650394416986, 0.0], [-68.24245600451405, 46.548227794414515, 0.0], [-68.24196420451483, 46.55067399441077, 0.0], [-68.24206407118135, 46.55092539441034, 0.0], [-68.24203280451474, 46.551771194409014, 0.0], [-68.24160440451539, 46.55284592774069, 0.0], [-68.24157700451542, 46.55549752773658, 0.0], [-68.2413150711825, 46.55693772773435, 0.0], [-68.24052467118372, 46.559269994397425, 0.0], [-68.24059327118363, 46.56038999439568, 0.0], [-68.24069280451681, 46.56043572772893, 0.0], [-68.24122607118267, 46.56185232772674, 0.0], [-68.24129380451586, 46.5625379943923, 0.0], [-68.24199147118145, 46.56338299439102, 0.0], [-68.2420584045147, 46.56370292772385, 0.0], [-68.24215800451452, 46.56374852772376, 0.0], [-68.24249100451402, 46.564502527722595, 0.0], [-68.2425908045139, 46.56459379438911, 0.0], [-68.24265760451374, 46.56484519438874, 0.0], [-68.24292307118003, 46.565096327721676, 0.0], [-68.24395020451175, 46.56488959438866, 0.0], [-68.24441420451103, 46.56493479438859, 0.0], [-68.24517687117651, 46.5651397943883, 0.0], [-68.2454422711761, 46.56532232772133, 0.0], [-68.24587360450874, 46.56548179438778, 0.0], [-68.24617240450829, 46.56575592772066, 0.0], [-68.24627260450814, 46.566121394386755, 0.0], [-68.24716800450676, 46.56637192771973, 0.0], [-68.24730147117322, 46.56676032771912, 0.0], [-68.24816360450524, 46.56696519438543, 0.0], [-68.24829647117167, 46.5670793277186, 0.0], [-68.24819807117183, 46.56755952771789, 0.0], [-68.24826560450504, 46.568107994383695, 0.0], [-68.24843187117148, 46.568382127716575, 0.0], [-68.24912940450372, 46.56899852771562, 0.0], [-68.24909747117044, 46.56959292771472, 0.0], [-68.24866800450445, 46.570210527713755, 0.0], [-68.24864647117113, 46.575330594372474, 0.0], [-68.24868080450443, 46.57583339437167, 0.0], [-68.24901427117055, 46.57670159437032, 0.0], [-68.24911387117044, 46.57679299437018, 0.0], [-68.24911420450377, 46.57690732770334, 0.0], [-68.24947987116985, 46.57734119436935, 0.0], [-68.24978180450273, 46.57777239436871, 0.0], [-68.24994387116914, 46.57934979436624, 0.0], [-68.25017380450208, 46.580264394364804, 0.0], [-68.25027300450193, 46.58042439436457, 0.0], [-68.2500380045023, 46.5817271276959, 0.0], [-68.24949140450315, 46.582415594361464, 0.0], [-68.24902800450388, 46.58271319436102, 0.0], [-68.2479706711722, 46.5842915276919, 0.0], [-68.24734427117318, 46.58586939435611, 0.0], [-68.24734667117315, 46.58694372768775, 0.0], [-68.24691720450716, 46.58760699435339, 0.0], [-68.24671947117412, 46.58815579435259, 0.0], [-68.24675340450739, 46.58849872768536, 0.0], [-68.24691980450717, 46.588772727684955, 0.0], [-68.24692187117381, 46.58973279435014, 0.0], [-68.24632807117473, 46.59108199434803, 0.0], [-68.24636260450802, 46.591699127680386, 0.0], [-68.24666200450753, 46.592087394346436, 0.0], [-68.24785747117238, 46.592931794345134, 0.0], [-68.24815747117191, 46.59359439434411, 0.0], [-68.2481262045053, 46.59444012767614, 0.0], [-68.24723680450666, 46.59713832767193, 0.0], [-68.24687367117389, 46.59782439433758, 0.0], [-68.24605207117514, 46.60120819433229, 0.0], [-68.24496087117683, 46.60264939433006, 0.0], [-68.24453147117754, 46.60342692766221, 0.0], [-68.24377360451206, 46.605690594325324, 0.0], [-68.24327747117945, 46.60633112765771, 0.0], [-68.24182067118176, 46.60749839432253, 0.0], [-68.24139087118238, 46.60813879432152, 0.0], [-68.24066440451685, 46.609670994319174, 0.0], [-68.24079940451662, 46.610767994317484, 0.0], [-68.24060100451698, 46.6110425276504, 0.0], [-68.2403028045174, 46.611202794316796, 0.0], [-68.24026987118413, 46.611317127649954, 0.0], [-68.24056947118368, 46.61181972764916, 0.0], [-68.24110120451616, 46.61227632764843, 0.0], [-68.2412692711826, 46.61335039431344, 0.0], [-68.24153587118218, 46.61392159431256, 0.0], [-68.24210100451461, 46.61449252764504, 0.0], [-68.24336367117934, 46.615474127643495, 0.0], [-68.24343027117925, 46.61563412764326, 0.0], [-68.24326480451282, 46.61579419430967, 0.0], [-68.24299960451322, 46.61584019430961, 0.0], [-68.24246867118075, 46.61577212764303, 0.0], [-68.24087480451652, 46.614996594310924, 0.0], [-68.24044280451722, 46.614631327644815, 0.0], [-68.23977720451825, 46.61364912764634, 0.0], [-68.2389470045195, 46.61316992764705, 0.0], [-68.23874800451983, 46.613215794313646, 0.0], [-68.2387152045199, 46.61337592764676, 0.0], [-68.23908047118596, 46.6135811943131, 0.0], [-68.2393134711856, 46.61394672764584, 0.0], [-68.2392474711857, 46.614106727645606, 0.0], [-68.23865067118663, 46.61424452764538, 0.0], [-68.23851840452016, 46.6144503276451, 0.0], [-68.2375226711884, 46.61417712764552, 0.0], [-68.23725667118879, 46.61383439431273, 0.0], [-68.23679160452286, 46.61349199431322, 0.0], [-68.23652607118993, 46.613400927646694, 0.0], [-68.2355974045247, 46.61344739431331, 0.0], [-68.23400620452719, 46.61390612764592, 0.0], [-68.23354267119458, 46.61434079431194, 0.0], [-68.23314680452853, 46.61546119431017, 0.0], [-68.23271667119587, 46.616055927642606, 0.0], [-68.23255180452946, 46.61653599430849, 0.0], [-68.23265267119598, 46.6171759943075, 0.0], [-68.23305307119534, 46.61843279430559, 0.0], [-68.23298780452876, 46.61888999430488, 0.0], [-68.23182860453056, 46.619896794303315, 0.0], [-68.23176260453067, 46.620056794303025, 0.0], [-68.23153067119767, 46.620194194302826, 0.0], [-68.23100107119853, 46.62088052763511, 0.0], [-68.2307030045323, 46.62108639430147, 0.0], [-68.23040447119945, 46.621155194301366, 0.0]], [[-68.19612087125267, 46.50860739447603, 0.0], [-68.19575680458655, 46.508630527809316, 0.0], [-68.19400307125596, 46.509362994474884, 0.0], [-68.1932754045904, 46.50982059447415, 0.0], [-68.19314320459063, 46.51002639447381, 0.0], [-68.19301127125749, 46.510483727806445, 0.0], [-68.19321060459049, 46.510986394472354, 0.0], [-68.19374140458967, 46.51183179447105, 0.0], [-68.19394027125605, 46.512037394470724, 0.0], [-68.19430440458882, 46.51201432780408, 0.0], [-68.19446980458855, 46.511877127804325, 0.0], [-68.19450260458854, 46.5116257278047, 0.0], [-68.19430340458882, 46.51116859447205, 0.0], [-68.19430267125551, 46.510619994472904, 0.0], [-68.19446800458854, 46.510368527806634, 0.0], [-68.19625407125244, 46.50913312780858, 0.0], [-68.19638600458558, 46.508812994475704, 0.0], [-68.19612087125267, 46.50860739447603, 0.0]]], "type": "Polygon"}, "id": "51", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/803413", "wblabel": "GNIS_NAME: Squapan Lake"}, "type": "Feature"}, {"bbox": [-68.03797227149812, 46.63484119428011, -68.01467247153431, 46.65931459424212], "geometry": {"coordinates": [[[-68.03172307150783, 46.65899172757594, 0.0], [-68.02979840484414, 46.658601527576536, 0.0], [-68.0285706048461, 46.658211927577156, 0.0], [-68.02631527151624, 46.65708992757891, 0.0], [-68.02618307151647, 46.656815594245984, 0.0], [-68.02641647151609, 46.65622139424693, 0.0], [-68.02631780484955, 46.65576419424764, 0.0], [-68.0260860048499, 46.65548979424807, 0.0], [-68.0252902715178, 46.654940527582255, 0.0], [-68.02469380485206, 46.65439139424973, 0.0], [-68.02346760485398, 46.65333892758474, 0.0], [-68.0234346715207, 46.65320172758493, 0.0], [-68.02316960485444, 46.65297292758527, 0.0], [-68.02283880485498, 46.652378327586234, 0.0], [-68.02284020485496, 46.651692594253916, 0.0], [-68.02317540485444, 46.65000152758989, 0.0], [-68.0233414048542, 46.649910194256734, 0.0], [-68.02324227152099, 46.64968159425706, 0.0], [-68.02314367152115, 46.64910999425797, 0.0], [-68.02331107152088, 46.648401727592386, 0.0], [-68.02307920485458, 46.64815012759277, 0.0], [-68.02284780485496, 46.647692727593494, 0.0], [-68.0223508048557, 46.647212194260874, 0.0], [-68.02145580485711, 46.64661719426181, 0.0], [-68.01999827152605, 46.6452215275973, 0.0], [-68.0200326048593, 46.6446501275982, 0.0], [-68.0202988715256, 46.64423892759885, 0.0], [-68.02039967152541, 46.643576127599886, 0.0], [-68.02023440485902, 46.64330172760032, 0.0], [-68.01745087153, 46.641173394270254, 0.0], [-68.016391004865, 46.64012092760521, 0.0], [-68.0156630048661, 46.63911452760681, 0.0], [-68.01539907153318, 46.638337127608, 0.0], [-68.01526647153338, 46.6382683942748, 0.0], [-68.0152338048668, 46.63803979427513, 0.0], [-68.01506820486702, 46.63783392760877, 0.0], [-68.01493647153387, 46.63735379427618, 0.0], [-68.01483707153403, 46.63728519427633, 0.0], [-68.01467247153431, 46.63662219427732, 0.0], [-68.01490727153396, 46.63545672761245, 0.0], [-68.01504027153373, 46.63531972761268, 0.0], [-68.01577100486594, 46.634977527613216, 0.0], [-68.01600340486556, 46.63490919428, 0.0], [-68.01660080486465, 46.63484119428011, 0.0], [-68.01752980486322, 46.63493352761327, 0.0], [-68.01918707152731, 46.635826527611925, 0.0], [-68.02177227152328, 46.63736032760954, 0.0], [-68.02293300485479, 46.637841394275426, 0.0], [-68.02336380485417, 46.63820752760819, 0.0], [-68.02379467152014, 46.63843639427449, 0.0], [-68.02405947151976, 46.63877952760731, 0.0], [-68.02449047151907, 46.63900852760696, 0.0], [-68.0244900715191, 46.63916852760673, 0.0], [-68.02495380485169, 46.63964892760595, 0.0], [-68.02515160485137, 46.64035759427156, 0.0], [-68.02525107151791, 46.64044919427141, 0.0], [-68.0253162715178, 46.641020594270515, 0.0], [-68.02514947151803, 46.64147772760316, 0.0], [-68.02524720485121, 46.642437727601646, 0.0], [-68.0255118048508, 46.64291792760088, 0.0], [-68.0256444715173, 46.642986594267484, 0.0], [-68.02561107151735, 46.64307799426729, 0.0], [-68.02614127151651, 46.6434899276, 0.0], [-68.02657187151584, 46.64394739426598, 0.0], [-68.02739940484787, 46.645228127597306, 0.0], [-68.0273990048479, 46.64538812759707, 0.0], [-68.02759760484759, 46.64570832759654, 0.0], [-68.02782947151388, 46.6459371275962, 0.0], [-68.029253604845, 46.6476983275935, 0.0], [-68.02985000484409, 46.64824739425927, 0.0], [-68.03127580484187, 46.64902559425809, 0.0], [-68.0347232715032, 46.65158859425412, 0.0], [-68.03770727149856, 46.653625194250935, 0.0], [-68.03797227149812, 46.65387679425055, 0.0], [-68.0379708048315, 46.654859727582334, 0.0], [-68.03763820483198, 46.655270794248395, 0.0], [-68.03693927149976, 46.656413127579924, 0.0], [-68.0362744048341, 46.65698399424571, 0.0], [-68.03614100483429, 46.65732672757855, 0.0], [-68.03607280483442, 46.658469527576756, 0.0], [-68.03570647150167, 46.65910919424243, 0.0], [-68.0352744715023, 46.65931459424212, 0.0], [-68.03421227150397, 46.6592451942422, 0.0], [-68.03381427150458, 46.65908479424246, 0.0], [-68.03338287150524, 46.65901592757592, 0.0], [-68.0324200048401, 46.65908372757582, 0.0], [-68.03222087150709, 46.659014927575925, 0.0], [-68.03172307150783, 46.65899172757594, 0.0]]], "type": "Polygon"}, "id": "52", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/4288955", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-68.03826140483102, 46.61895099430478, -68.03341547150524, 46.62102832763486], "geometry": {"coordinates": [[[-68.03368020483816, 46.62098212763493, 0.0], [-68.03341547150524, 46.6205247943023, 0.0], [-68.03341587150521, 46.62036479430259, 0.0], [-68.03461067150334, 46.620022927636455, 0.0], [-68.03464000483666, 46.61998272763651, 0.0], [-68.03471040483652, 46.619885794303286, 0.0], [-68.0351086048359, 46.61981759430341, 0.0], [-68.03773080483182, 46.61895099430478, 0.0], [-68.03809567149796, 46.618951327638115, 0.0], [-68.03826140483102, 46.619019994304665, 0.0], [-68.03826120483103, 46.61917999430443, 0.0], [-68.03417780483738, 46.62102832763486, 0.0], [-68.03368020483816, 46.62098212763493, 0.0]]], "type": "Polygon"}, "id": "53", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/803411", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-68.04109847149329, 46.57514932770607, -68.02772447151403, 46.58976052768338], "geometry": {"coordinates": [[[-68.03519200483578, 46.58976052768338, 0.0], [-68.03433180483711, 46.58866272768512, 0.0], [-68.03334020483868, 46.5869247276878, 0.0], [-68.03327427150543, 46.58665032768823, 0.0], [-68.03317500483894, 46.58660439435499, 0.0], [-68.03241527150675, 46.58488952769096, 0.0], [-68.03238260484017, 46.58461519435804, 0.0], [-68.03221700484039, 46.58452359435819, 0.0], [-68.03205227150733, 46.58397499435904, 0.0], [-68.03162240484136, 46.583288927693445, 0.0], [-68.0311588715087, 46.58299132769389, 0.0], [-68.0300988048437, 46.582579127694544, 0.0], [-68.02907260484528, 46.58170972769591, 0.0], [-68.02903980484535, 46.58157239436281, 0.0], [-68.0289072715122, 46.58148092769625, 0.0], [-68.0282136715133, 46.580131794365, 0.0], [-68.0280170048469, 46.57889732770025, 0.0], [-68.02811667151343, 46.57876032770048, 0.0], [-68.0278550048472, 46.57674859437026, 0.0], [-68.02788900484711, 46.57633719437092, 0.0], [-68.02782387151387, 46.57560572770535, 0.0], [-68.02772447151403, 46.575559927705456, 0.0], [-68.02795720484704, 46.57521712770597, 0.0], [-68.0287528048458, 46.57514932770607, 0.0], [-68.0308400715092, 46.57572252770518, 0.0], [-68.0339552048377, 46.576113594371236, 0.0], [-68.03544627150205, 46.57638912770415, 0.0], [-68.03587680483474, 46.57664092770375, 0.0], [-68.03617460483429, 46.57696112770327, 0.0], [-68.03623967150082, 46.577692594368784, 0.0], [-68.03660287150029, 46.57849292770089, 0.0], [-68.03690067149978, 46.57890459436692, 0.0], [-68.03749620483222, 46.57963652769911, 0.0], [-68.03891920483, 46.58107752769689, 0.0], [-68.03905120482978, 46.581443394362964, 0.0], [-68.039578404829, 46.58347799435984, 0.0], [-68.0398428048286, 46.58404959435893, 0.0], [-68.03987560482852, 46.58427832769189, 0.0], [-68.04096760482685, 46.58558199435657, 0.0], [-68.04109847149329, 46.58658779435501, 0.0], [-68.04083267149372, 46.587021794354314, 0.0], [-68.04046680482759, 46.58779879435309, 0.0], [-68.04013487149479, 46.58800432768612, 0.0], [-68.03953820482906, 46.58798092768615, 0.0], [-68.0391070048297, 46.588140727685925, 0.0], [-68.03827727149769, 46.58861999435186, 0.0], [-68.0362868048341, 46.589326994350756, 0.0], [-68.03532467150228, 46.58976052768338, 0.0], [-68.03519200483578, 46.58976052768338, 0.0]]], "type": "Polygon"}, "id": "55", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/4288869", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-70.28955480133658, 44.094899198222606, -70.26995206803366, 44.122841331512575], "geometry": {"coordinates": [[[-70.27860746802025, 44.12277173151267, 0.0], [-70.27790920135465, 44.122748331512696, 0.0], [-70.27721100135574, 44.12261053151292, 0.0], [-70.27705286802262, 44.12231319818005, 0.0], [-70.2767710680231, 44.11986633151719, 0.0], [-70.27636080135704, 44.118402598186094, 0.0], [-70.27547466802508, 44.11673273152206, 0.0], [-70.27490446802597, 44.116068998189746, 0.0], [-70.27433360136018, 44.11581713152344, 0.0], [-70.27408006802727, 44.11556533152384, 0.0], [-70.27392226802749, 44.11499373152475, 0.0], [-70.27401766802734, 44.11490233152489, 0.0], [-70.27414580136048, 44.11417073152603, 0.0], [-70.27395600136077, 44.11387333152646, 0.0], [-70.27395680136078, 44.11334733152728, 0.0], [-70.27433866802687, 44.112684531528316, 0.0], [-70.27434046802688, 44.11163279819664, 0.0], [-70.27389746802754, 44.1108321315312, 0.0], [-70.2739946680274, 44.109574531533156, 0.0], [-70.27377400136106, 44.10872833153445, 0.0], [-70.27402840136068, 44.10840839820162, 0.0], [-70.27406106802727, 44.10774539820267, 0.0], [-70.27390306802755, 44.1074479982031, 0.0], [-70.27368120136123, 44.10724199820345, 0.0], [-70.27288820136243, 44.107035531537065, 0.0], [-70.27276140136263, 44.106898198203965, 0.0], [-70.27254066802965, 44.10609779820521, 0.0], [-70.27263686802951, 44.10550339820611, 0.0], [-70.27273226802936, 44.10541199820631, 0.0], [-70.27276520136263, 44.1047261315407, 0.0], [-70.2731150013621, 44.1042461982081, 0.0], [-70.27314726802871, 44.103926131541925, 0.0], [-70.27260946802954, 44.10291953154348, 0.0], [-70.27254706802961, 44.10225639821118, 0.0], [-70.2728344680292, 44.1012275982128, 0.0], [-70.27283606802916, 44.10017593154777, 0.0], [-70.27229746803005, 44.099672398215205, 0.0], [-70.2717584013642, 44.099534731548715, 0.0], [-70.27109286803187, 44.09905393154946, 0.0], [-70.27030040136646, 44.098595931550165, 0.0], [-70.27001526803355, 44.09832133155061, 0.0], [-70.26995206803366, 44.098161198217554, 0.0], [-70.27001606803356, 44.09788693155127, 0.0], [-70.27039740136632, 44.097567131551784, 0.0], [-70.27096980136542, 44.09679019821965, 0.0], [-70.27173206803093, 44.09637919822029, 0.0], [-70.27265266802948, 44.096036998220825, 0.0], [-70.27417626802713, 44.095672531554726, 0.0], [-70.27500146802583, 44.095353131555214, 0.0], [-70.27633426802373, 44.0952169982221, 0.0], [-70.27700100135604, 44.09498899822245, 0.0], [-70.27900006801963, 44.094899198222606, 0.0], [-70.28042760135071, 44.095014598222406, 0.0], [-70.28103006801649, 44.09526653155535, 0.0], [-70.28144180134916, 44.095724131554675, 0.0], [-70.28204426801489, 44.09590759822106, 0.0], [-70.28239300134771, 44.09613653155401, 0.0], [-70.28236000134774, 44.09695959821937, 0.0], [-70.28270820134719, 44.09755439821845, 0.0], [-70.28286660134694, 44.09766893155165, 0.0], [-70.28375506801223, 44.09762393155171, 0.0], [-70.28454806801102, 44.09783019821805, 0.0], [-70.28480146801064, 44.09810493155095, 0.0], [-70.28508680134348, 44.0981965315508, 0.0], [-70.28705386800709, 44.098220798217426, 0.0], [-70.28765646800616, 44.09847273155037, 0.0], [-70.28787806800585, 44.09883873154979, 0.0], [-70.28790840133911, 44.09991353154817, 0.0], [-70.28857366800474, 44.100599931547094, 0.0], [-70.28863566800464, 44.10165179821212, 0.0], [-70.28873046800453, 44.101926198211686, 0.0], [-70.28955480133658, 44.102475598210845, 0.0], [-70.28955440133655, 44.10268139821051, 0.0], [-70.28879266800442, 44.1028179982103, 0.0], [-70.28812506800546, 44.103640731542384, 0.0], [-70.2881242013388, 44.10430379820798, 0.0], [-70.28767906800613, 44.10489799820709, 0.0], [-70.28663066800777, 44.10576613153904, 0.0], [-70.28634466800821, 44.10613173153848, 0.0], [-70.28631226800826, 44.106543331537864, 0.0], [-70.28684986800744, 44.10784699820249, 0.0], [-70.28684826800742, 44.10899033153407, 0.0], [-70.28656206800787, 44.1093331315335, 0.0], [-70.28627626800835, 44.10949293153328, 0.0], [-70.2856732013426, 44.10960679819976, 0.0], [-70.28541820134296, 44.110361198198575, 0.0], [-70.28519546800999, 44.110658331531454, 0.0], [-70.28328940134628, 44.11205153152929, 0.0], [-70.2828758680136, 44.112668598195, 0.0], [-70.28290440134691, 44.114817998191654, 0.0], [-70.28245906801425, 44.115480731523974, 0.0], [-70.2816652013488, 44.115777398190176, 0.0], [-70.28102960134981, 44.11641713152255, 0.0], [-70.28087026801671, 44.116851398188544, 0.0], [-70.28090006801665, 44.118108998186585, 0.0], [-70.28077246801689, 44.11842899818606, 0.0], [-70.28076926801685, 44.12048693151621, 0.0], [-70.28111720134967, 44.121355998181514, 0.0], [-70.28092540134998, 44.12224773151348, 0.0], [-70.28054400135056, 44.12254459817967, 0.0], [-70.27990880135155, 44.122841331512575, 0.0], [-70.27860746802025, 44.12277173151267, 0.0]]], "type": "Polygon"}, "id": "68", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/6711533", "wblabel": "GNIS_NAME: Taylor Pond"}, "type": "Feature"}, {"bbox": [-70.27863180135353, 43.62966493227805, -70.27267626802944, 43.6345095989372], "geometry": {"coordinates": [[[-70.27834986802065, 43.62966493227805, 0.0], [-70.27860140135357, 43.62991673227765, 0.0], [-70.27850666802038, 43.630076732277416, 0.0], [-70.27863180135353, 43.630556932276704, 0.0], [-70.27837920135391, 43.63110553227585, 0.0], [-70.27809540135434, 43.63137959894209, 0.0], [-70.27755880135521, 43.63222533227412, 0.0], [-70.27705480135597, 43.632476398940355, 0.0], [-70.27655080135673, 43.632613198940135, 0.0], [-70.27604660135756, 43.632910132273025, 0.0], [-70.27585720135784, 43.63320733227255, 0.0], [-70.27585640135783, 43.63371033227179, 0.0], [-70.27547806802511, 43.63400719893798, 0.0], [-70.27494260135927, 43.63416699893776, 0.0], [-70.27446986802664, 43.6345095989372, 0.0], [-70.2741864680271, 43.63450933227057, 0.0], [-70.27311660136206, 43.63416539893774, 0.0], [-70.27267626802944, 43.633890598938194, 0.0], [-70.27270820136272, 43.63366199893852, 0.0], [-70.27321206802861, 43.63352519893874, 0.0], [-70.27362140136131, 43.633502598938776, 0.0], [-70.27362206802798, 43.63306819893944, 0.0], [-70.27330746802846, 43.632930732272996, 0.0], [-70.27330786802844, 43.63270213227338, 0.0], [-70.27362320136132, 43.63238219894049, 0.0], [-70.27409566802726, 43.63217673227416, 0.0], [-70.27450466802662, 43.632405798940454, 0.0], [-70.27494546802592, 43.632360398940534, 0.0], [-70.27541820135849, 43.6321093322743, 0.0], [-70.27595360135768, 43.631995398941115, 0.0], [-70.27636240135706, 43.632270132274016, 0.0], [-70.27680340135635, 43.632087598940984, 0.0], [-70.27696140135612, 43.6316989989416, 0.0], [-70.27740280135544, 43.63131059894221, 0.0], [-70.27730866802227, 43.631104732275844, 0.0], [-70.27781306802149, 43.630762132276345, 0.0], [-70.27793980135459, 43.63023619894386, 0.0], [-70.27809766802102, 43.629893398944375, 0.0], [-70.27834986802065, 43.62966493227805, 0.0]]], "type": "Polygon"}, "id": "71", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/6720169", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-68.01852147152835, 46.856340527269595, -68.01378767153568, 46.85853252726622], "geometry": {"coordinates": [[[-68.01378767153568, 46.8584861272663, 0.0], [-68.01378840486899, 46.85816612726677, 0.0], [-68.01392200486879, 46.85798339393375, 0.0], [-68.01492227153392, 46.857687127267525, 0.0], [-68.01632407153176, 46.85654572726929, 0.0], [-68.016824271531, 46.856340527269595, 0.0], [-68.01769060486293, 46.85636419393626, 0.0], [-68.01772347152956, 46.856524193936025, 0.0], [-68.01795640486256, 46.85670732726908, 0.0], [-68.01782260486277, 46.85691279393541, 0.0], [-68.01785527152936, 46.857278593934836, 0.0], [-68.01852147152835, 46.85737059393472, 0.0], [-68.01852080486168, 46.857690593934194, 0.0], [-68.01825400486206, 46.85785039393397, 0.0], [-68.01712047153052, 46.8581235939335, 0.0], [-68.01615387153203, 46.85821399393336, 0.0], [-68.01458740486777, 46.85853252726622, 0.0], [-68.01378767153568, 46.8584861272663, 0.0]]], "type": "Polygon"}, "id": "72", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/803347", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-70.76770840059436, 43.08371893312551, -70.76381146726709, 43.0861691331217], "geometry": {"coordinates": [[[-70.76409106726663, 43.084382199791094, 0.0], [-70.76387320060036, 43.08403899979163, 0.0], [-70.76381146726709, 43.08371893312551, 0.0], [-70.76424806726641, 43.08374213312544, 0.0], [-70.76505880059847, 43.08401733312502, 0.0], [-70.76611920059685, 43.08422413312468, 0.0], [-70.7671484672619, 43.08433939979119, 0.0], [-70.76767846726108, 43.08454573312417, 0.0], [-70.76770840059436, 43.085300199789685, 0.0], [-70.76755106726131, 43.0861691331217, 0.0], [-70.76733260059495, 43.086168933121655, 0.0], [-70.76680260059578, 43.085985399788626, 0.0], [-70.76608560059691, 43.08564179978919, 0.0], [-70.76499466726528, 43.08495479979024, 0.0], [-70.76424700059977, 43.08440533312444, 0.0], [-70.76409106726663, 43.084382199791094, 0.0]]], "type": "Polygon"}, "id": "74", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/5843900", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-70.76606266726361, 43.07967273313176, -70.7618202006035, 43.08303253312653], "geometry": {"coordinates": [[[-70.76506386726516, 43.07968939979838, 0.0], [-70.76512866726506, 43.07967273313176, 0.0], [-70.76515966726498, 43.07971853313171, 0.0], [-70.76540906726461, 43.0798101997982, 0.0], [-70.76540860059794, 43.08017599979763, 0.0], [-70.76512726726503, 43.080404533130604, 0.0], [-70.76518940059827, 43.08067893313023, 0.0], [-70.76593820059713, 43.08061093313029, 0.0], [-70.76606266726361, 43.08077113313004, 0.0], [-70.76599966726371, 43.081159799796126, 0.0], [-70.76537506726464, 43.08152513312888, 0.0], [-70.7650000005986, 43.08191339979493, 0.0], [-70.76462526726584, 43.08216473312791, 0.0], [-70.76425066726642, 43.082301599794334, 0.0], [-70.76375080060052, 43.082781333126945, 0.0], [-70.76343840060099, 43.082986799793275, 0.0], [-70.76328226726793, 43.08303253312653, 0.0], [-70.76312646726814, 43.082940799793334, 0.0], [-70.76300246726834, 43.08250619979401, 0.0], [-70.7631282006015, 43.08198039979487, 0.0], [-70.76325306726795, 43.081866199795, 0.0], [-70.76325400060131, 43.081408799795724, 0.0], [-70.76319180060142, 43.08129439979592, 0.0], [-70.76278626726867, 43.08124839979598, 0.0], [-70.76234946726936, 43.081339399795866, 0.0], [-70.76185100060349, 43.080995933129714, 0.0], [-70.7618202006035, 43.08069859979685, 0.0], [-70.76197666726995, 43.080424399797266, 0.0], [-70.76238240060263, 43.08035613313069, 0.0], [-70.76266286726889, 43.080516533130435, 0.0], [-70.76366086726733, 43.0806545997969, 0.0], [-70.76406640060003, 43.080654999796934, 0.0], [-70.76444100059945, 43.0804723997972, 0.0], [-70.76459806726587, 43.079809399798194, 0.0], [-70.76506386726516, 43.07968939979838, 0.0]]], "type": "Polygon"}, "id": "75", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/5843906", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-70.7721916005874, 43.07172113314408, -70.76413246726662, 43.07926119979908], "geometry": {"coordinates": [[[-70.76516060059834, 43.07926119979908, 0.0], [-70.76475540059897, 43.07905499979938, 0.0], [-70.76450640059937, 43.07875753313317, 0.0], [-70.76441280059947, 43.07873453313323, 0.0], [-70.76413246726662, 43.07845993313367, 0.0], [-70.76416426726655, 43.07816273313409, 0.0], [-70.76457040059927, 43.07781999980131, 0.0], [-70.76519466726495, 43.07759193313501, 0.0], [-70.76560126726434, 43.07697493313594, 0.0], [-70.76569520059752, 43.07674633313633, 0.0], [-70.7657270672641, 43.076334733136946, 0.0], [-70.76766340059447, 43.074872999805905, 0.0], [-70.76803840059387, 43.07453033313976, 0.0], [-70.76860026725967, 43.074279199806824, 0.0], [-70.76944280059166, 43.07409713314041, 0.0], [-70.77044180059016, 43.073617799807835, 0.0], [-70.77059826725656, 43.07325213314175, 0.0], [-70.77056760058997, 43.07293193314223, 0.0], [-70.77191080058788, 43.07172113314408, 0.0], [-70.7721916005874, 43.07172139981077, 0.0], [-70.77212866725421, 43.071972799810396, 0.0], [-70.77194106725449, 43.07226999980992, 0.0], [-70.77165900058827, 43.07311579980859, 0.0], [-70.77106480058916, 43.07407573314043, 0.0], [-70.77103226725586, 43.0748759998059, 0.0], [-70.77087600058945, 43.07503593313896, 0.0], [-70.77093760058938, 43.07556193313815, 0.0], [-70.77109306725578, 43.075813599804405, 0.0], [-70.7710306005892, 43.075927933137564, 0.0], [-70.7701568005906, 43.07617873313717, 0.0], [-70.76953180059155, 43.07688693313611, 0.0], [-70.76903246725897, 43.07702373313589, 0.0], [-70.76797166726061, 43.077114199802395, 0.0], [-70.76765946726113, 43.07727399980217, 0.0], [-70.7675026005947, 43.07782259980132, 0.0], [-70.76747080059477, 43.07821133313405, 0.0], [-70.76756420059462, 43.0783029331339, 0.0], [-70.76856220059307, 43.07839519980041, 0.0], [-70.7684994672598, 43.07857819980012, 0.0], [-70.76828080059352, 43.078760933133196, 0.0], [-70.76790640059409, 43.078851999799724, 0.0], [-70.76647146726299, 43.07887353313299, 0.0], [-70.76609686726357, 43.07898759979952, 0.0], [-70.76578446726404, 43.0792387997991, 0.0], [-70.76516060059834, 43.07926119979908, 0.0]]], "type": "Polygon"}, "id": "76", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/5843908", "wblabel": "GNIS_NAME: North Mill Pond"}, "type": "Feature"}, {"bbox": [-70.77878480057717, 43.096199599772774, -70.76153740060397, 43.10689159975618], "geometry": {"coordinates": [[[-70.76644186726304, 43.09638939977248, 0.0], [-70.76616040059679, 43.09675499977192, 0.0], [-70.76622226726334, 43.09705239977143, 0.0], [-70.76700200059548, 43.097258933104456, 0.0], [-70.76868680059289, 43.09739759977094, 0.0], [-70.76893620059246, 43.097557933103985, 0.0], [-70.76890466725916, 43.0976721997705, 0.0], [-70.76856106725972, 43.09790059977013, 0.0], [-70.76824846726021, 43.098243333102914, 0.0], [-70.76818540059367, 43.0987005331022, 0.0], [-70.76874600059278, 43.09924979976802, 0.0], [-70.76877666725937, 43.09961573310079, 0.0], [-70.76893226725917, 43.099821599767154, 0.0], [-70.76930666725855, 43.09995919976694, 0.0], [-70.77021146725718, 43.0999371331003, 0.0], [-70.77049220059007, 43.1000745331001, 0.0], [-70.77049186725674, 43.10028039976646, 0.0], [-70.77027266725707, 43.10078319976566, 0.0], [-70.7703962672569, 43.10149219976455, 0.0], [-70.77055206725663, 43.101652399764305, 0.0], [-70.77064540058984, 43.101881133097265, 0.0], [-70.77086340058946, 43.10213279976358, 0.0], [-70.77126866725553, 43.102361933096574, 0.0], [-70.77204880058764, 43.10243119976309, 0.0], [-70.77232940058718, 43.10256859976289, 0.0], [-70.77267220058667, 43.102888933095755, 0.0], [-70.77320240058583, 43.10307233309544, 0.0], [-70.77366986725178, 43.1034843330948, 0.0], [-70.77401280058461, 43.10364473309454, 0.0], [-70.77498020058312, 43.103645599761194, 0.0], [-70.77544866724901, 43.10346299976152, 0.0], [-70.77632246724767, 43.103417999761575, 0.0], [-70.77694606724668, 43.10380719976098, 0.0], [-70.77775646724547, 43.104379533093436, 0.0], [-70.77872260057728, 43.10531779975861, 0.0], [-70.77878480057717, 43.10545499975842, 0.0], [-70.77865986724407, 43.10552359975833, 0.0], [-70.77828526724466, 43.10554613309159, 0.0], [-70.77716306724636, 43.10474493309283, 0.0], [-70.77682000058024, 43.10463033309304, 0.0], [-70.77669480058046, 43.10488179975931, 0.0], [-70.77681940058022, 43.105041933092366, 0.0], [-70.77684986724688, 43.10543059975845, 0.0], [-70.77619446724788, 43.10545299975843, 0.0], [-70.77550760058227, 43.105726799757974, 0.0], [-70.77494540058314, 43.10609219975743, 0.0], [-70.77472606725013, 43.10657219975667, 0.0], [-70.77447620058388, 43.106732199756436, 0.0], [-70.77382060058488, 43.10689159975618, 0.0], [-70.77388326725145, 43.106662999756566, 0.0], [-70.774196267251, 43.106137333090714, 0.0], [-70.77429066725085, 43.10549719975836, 0.0], [-70.7739166672514, 43.10526813309201, 0.0], [-70.77263700058671, 43.10531279975862, 0.0], [-70.77226260058734, 43.10526673309204, 0.0], [-70.77076586725627, 43.10453379975985, 0.0], [-70.77001700059077, 43.10446453309328, 0.0], [-70.76951786725823, 43.10432693309349, 0.0], [-70.76880080059266, 43.103891733094144, 0.0], [-70.76786540059413, 43.103410799761605, 0.0], [-70.76752260059465, 43.103135999762, 0.0], [-70.76752286726133, 43.10295313309564, 0.0], [-70.76727366726175, 43.10274713309593, 0.0], [-70.76640086726309, 43.10215179976353, 0.0], [-70.76474806726566, 43.10148713309792, 0.0], [-70.76412420059995, 43.101349399764786, 0.0], [-70.76343760060104, 43.101440199764625, 0.0], [-70.76206506726982, 43.101073133098566, 0.0], [-70.76194060060334, 43.10093579976541, 0.0], [-70.76159880060385, 43.100089399766716, 0.0], [-70.76153740060397, 43.099449133101075, 0.0], [-70.76222486726954, 43.098923799768556, 0.0], [-70.76241266726925, 43.09855813310247, 0.0], [-70.76294366726842, 43.09828419976952, 0.0], [-70.76300640060168, 43.09812419976981, 0.0], [-70.76297620060171, 43.09757539977062, 0.0], [-70.76269566726882, 43.09730073310442, 0.0], [-70.76269620060214, 43.0970719997714, 0.0], [-70.76275880060206, 43.096980733104886, 0.0], [-70.76303986726828, 43.096866599771715, 0.0], [-70.76335240060115, 43.09654673310558, 0.0], [-70.7636022672674, 43.09640973310576, 0.0], [-70.76413280059995, 43.096364533105884, 0.0], [-70.76513066726505, 43.09670833310531, 0.0], [-70.76541140059794, 43.09677719977191, 0.0], [-70.76563020059763, 43.096571599772176, 0.0], [-70.76569626726416, 43.096199599772774, 0.0], [-70.76606686726359, 43.09629393310598, 0.0], [-70.76644186726304, 43.09638939977248, 0.0]]], "type": "Polygon"}, "id": "77", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/5843896", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}, {"bbox": [-68.87897927019276, 44.79330319713853, -68.85161040356854, 44.822387130426705], "geometry": {"coordinates": [[[-68.86815707020952, 44.79330319713853, 0.0], [-68.86889560354172, 44.79337193047178, 0.0], [-68.87448307019969, 44.7950869304691, 0.0], [-68.87673100352953, 44.79584139713461, 0.0], [-68.87711647019563, 44.79586419713456, 0.0], [-68.8772448701954, 44.79595573046777, 0.0], [-68.87775867019462, 44.79719039713251, 0.0], [-68.87788720352773, 44.79794499713131, 0.0], [-68.87875447019309, 44.799385530462416, 0.0], [-68.87897927019276, 44.800025797128114, 0.0], [-68.8786902701932, 44.80084893046018, 0.0], [-68.87827280352718, 44.80110039712645, 0.0], [-68.87698820352915, 44.801512130459116, 0.0], [-68.87615307019712, 44.802037997124955, 0.0], [-68.87579987019768, 44.8025409971242, 0.0], [-68.87579980353098, 44.802815397123766, 0.0], [-68.87608887019724, 44.803089797123334, 0.0], [-68.87673127019622, 44.80338699712286, 0.0], [-68.87740567019517, 44.80356999712262, 0.0], [-68.87820880352729, 44.80411873045506, 0.0], [-68.87833727019375, 44.80496459712043, 0.0], [-68.87795180352765, 44.80544493045301, 0.0], [-68.87743800352848, 44.805719330452575, 0.0], [-68.87673127019622, 44.80626813045177, 0.0], [-68.87689187019595, 44.806679730451094, 0.0], [-68.87753447019497, 44.80745699711656, 0.0], [-68.87753440352833, 44.80761713044967, 0.0], [-68.87763080352818, 44.80766279711622, 0.0], [-68.87766300352808, 44.807982997115744, 0.0], [-68.87775920352794, 44.808028730448996, 0.0], [-68.87788780352776, 44.80841739711508, 0.0], [-68.87750240352835, 44.810017997112595, 0.0], [-68.87689207019599, 44.811298530443935, 0.0], [-68.87650660352989, 44.811778730443166, 0.0], [-68.87560727019797, 44.812464730442116, 0.0], [-68.87506120353214, 44.81303619710792, 0.0], [-68.8744828701997, 44.813127730441124, 0.0], [-68.87374420353422, 44.81303619710792, 0.0], [-68.87274840353575, 44.81262473044188, 0.0], [-68.87136720353789, 44.81180153044318, 0.0], [-68.87021067020635, 44.8114355971104, 0.0], [-68.86979320354033, 44.81141279711045, 0.0], [-68.8681870035428, 44.81159559711011, 0.0], [-68.86748047021058, 44.81148119711031, 0.0], [-68.86654900354534, 44.811046797110976, 0.0], [-68.86584240354648, 44.81052079711179, 0.0], [-68.86548920354699, 44.80969773044643, 0.0], [-68.86487887021462, 44.809446130446815, 0.0], [-68.86426860354891, 44.80944599711347, 0.0], [-68.86397960354935, 44.809583197113284, 0.0], [-68.86352967021674, 44.80997179711267, 0.0], [-68.86340107021692, 44.81038339711205, 0.0], [-68.86378607021629, 44.81308159710784, 0.0], [-68.86407507021585, 44.81349319710722, 0.0], [-68.86497447021446, 44.81420213043941, 0.0], [-68.8651350702142, 44.81461373043879, 0.0], [-68.86539180354714, 44.8160771304365, 0.0], [-68.86561660354681, 44.81646579710258, 0.0], [-68.86651587021208, 44.81770059710067, 0.0], [-68.866547870212, 44.817883597100376, 0.0], [-68.86664427021185, 44.81792933043363, 0.0], [-68.8666442035452, 44.81870679709908, 0.0], [-68.86596947021292, 44.81943839709794, 0.0], [-68.86217800355212, 44.821701730427776, 0.0], [-68.86140687021998, 44.82197599709406, 0.0], [-68.86025020355515, 44.82220453042703, 0.0], [-68.85732647022633, 44.822387130426705, 0.0], [-68.85665180356074, 44.82234133042681, 0.0], [-68.85613807022821, 44.82195253042738, 0.0], [-68.85588120356192, 44.82158659709461, 0.0], [-68.85556040356244, 44.82010019709696, 0.0], [-68.85459680356394, 44.81943699709797, 0.0], [-68.8527016702335, 44.818544930432665, 0.0], [-68.85209140356778, 44.81817893043325, 0.0], [-68.85164200356849, 44.81751579710095, 0.0], [-68.85161040356854, 44.8161209971031, 0.0], [-68.85202887023456, 44.813788797106724, 0.0], [-68.85286487023325, 44.81186819710973, 0.0], [-68.85309040356623, 44.81033633044541, 0.0], [-68.85402260356483, 44.80775259711612, 0.0], [-68.854537403564, 44.80564913045271, 0.0], [-68.85482660356354, 44.805077530453616, 0.0], [-68.85530860356283, 44.80448299712117, 0.0], [-68.85566200356226, 44.804208730454945, 0.0], [-68.85704340356011, 44.803362930456274, 0.0], [-68.85823180355828, 44.802882997123675, 0.0], [-68.8587780035574, 44.80249433045759, 0.0], [-68.86073747022107, 44.800688197127045, 0.0], [-68.86330720355039, 44.79897353046306, 0.0], [-68.86366047021653, 44.798539197130424, 0.0], [-68.8644956702152, 44.79769319713171, 0.0], [-68.86542687021375, 44.7970073304661, 0.0], [-68.86610140354605, 44.79671013046658, 0.0], [-68.86674367021175, 44.796252797133945, 0.0], [-68.86712907021115, 44.79561259713495, 0.0], [-68.86712940354448, 44.79401199713743, 0.0], [-68.86725800354424, 44.793691930471255, 0.0], [-68.86764340354364, 44.79339459713839, 0.0], [-68.86815707020952, 44.79330319713853, 0.0]]], "type": "Polygon"}, "id": "79", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/2678944", "wblabel": "GNIS_NAME: Hermon Bog"}, "type": "Feature"}, {"bbox": [-68.31746947106433, 44.26633299795651, -68.3161332043997, 44.267613931287826], "geometry": {"coordinates": [[[-68.3168974710652, 44.266333131289855, 0.0], [-68.31705647106497, 44.26644753128966, 0.0], [-68.31727867106463, 44.26701933128879, 0.0], [-68.31746947106433, 44.2672481312884, 0.0], [-68.31743727106436, 44.26754539795462, 0.0], [-68.31734167106453, 44.267613931287826, 0.0], [-68.3168326710653, 44.26747639795474, 0.0], [-68.31635560439935, 44.26724753128843, 0.0], [-68.3161332043997, 44.26692733128891, 0.0], [-68.31616540439967, 44.266538531289484, 0.0], [-68.3166428710656, 44.26633299795651, 0.0], [-68.3168974710652, 44.266333131289855, 0.0]]], "type": "Polygon"}, "id": "82", "properties": {"__folium_color": "blue", "wb": "https://geoconnex.us/nhdplusv2/comid/2682564", "wblabel": "GNIS_NAME: None"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["wb", "wblabel"];
let aliases = ["wb", "wblabel"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6.addTo(map_319ef58b6accc74cb0bf25aa64620bd1);
var layer_control_b2ddf046cfa1a11903b9183d71e66e6e_layers = {
base_layers : {
"openstreetmap" : tile_layer_d937a0900502c454a57a9f846caa67d0,
},
overlays : {
"\u003cspan style=\"color: red;\"\u003eFacilities\u003c/span\u003e" : geo_json_3f1492165c4603558411c5ff9322fe8f,
"\u003cspan style=\"color: darkred;\"\u003eFacilities S2 Cells\u003c/span\u003e" : geo_json_e657c36c3f695a33f615ed6e70a04af8,
"S2 Cell Neighbors" : geo_json_6f3c918beeea03c0f6a1f313c42fbf6e,
"\u003cspan style=\"color: blue;\"\u003eWater Bodies\u003c/span\u003e" : geo_json_ba9d11c34eee8b8c0ad09c2c43efdec6,
},
};
let layer_control_b2ddf046cfa1a11903b9183d71e66e6e = L.control.layers(
layer_control_b2ddf046cfa1a11903b9183d71e66e6e_layers.base_layers,
layer_control_b2ddf046cfa1a11903b9183d71e66e6e_layers.overlays,
{"autoZIndex": true, "collapsed": false, "position": "topright"}
).addTo(map_319ef58b6accc74cb0bf25aa64620bd1);
</script>
<!--Rivers Map-->
<script>
var map_065b1d422d5592f6b50181ac87f1dc76 = L.map(
"map_065b1d422d5592f6b50181ac87f1dc76",
{
center: [45.0233835, -69.299633],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
L.control.scale().addTo(map_065b1d422d5592f6b50181ac87f1dc76);
var tile_layer_e4e187619aff6441f564473724ac06fd = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_e4e187619aff6441f564473724ac06fd.addTo(map_065b1d422d5592f6b50181ac87f1dc76);
map_065b1d422d5592f6b50181ac87f1dc76.fitBounds(
[[43.084167, -70.741666], [46.9626, -67.8576]],
{}
);
function geo_json_eae18295055b774c2b8c53958cc78b86_styler(feature) {
switch(feature.id) {
default:
return {"color": "darkred", "fillColor": "darkred", "fillOpacity": 0.5, "weight": 5};
}
}
function geo_json_eae18295055b774c2b8c53958cc78b86_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_eae18295055b774c2b8c53958cc78b86_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_eae18295055b774c2b8c53958cc78b86_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_eae18295055b774c2b8c53958cc78b86_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_eae18295055b774c2b8c53958cc78b86.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_eae18295055b774c2b8c53958cc78b86_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_eae18295055b774c2b8c53958cc78b86 = L.geoJson(null, {
onEachFeature: geo_json_eae18295055b774c2b8c53958cc78b86_onEachFeature,
style: geo_json_eae18295055b774c2b8c53958cc78b86_styler,
pointToLayer: geo_json_eae18295055b774c2b8c53958cc78b86_pointToLayer,
});
function geo_json_eae18295055b774c2b8c53958cc78b86_add (data) {
geo_json_eae18295055b774c2b8c53958cc78b86
.addData(data);
}
geo_json_eae18295055b774c2b8c53958cc78b86_add({"bbox": [-70.741666, 43.084167, -67.8576, 46.9626], "features": [{"bbox": [-70.26051, 44.06723, -70.26051, 44.06723], "geometry": {"coordinates": [-70.26051, 44.06723], "type": "Point"}, "id": "0", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110001830733", "faclabel": "MID MAINE WASTE - TO - ENERGY FACILITY"}, "type": "Feature"}, {"bbox": [-70.359644, 43.645986, -70.359644, 43.645986], "geometry": {"coordinates": [-70.359644, 43.645986], "type": "Point"}, "id": "67", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110007274074", "faclabel": "ECOMAINE LANDFILL"}, "type": "Feature"}, {"bbox": [-69.847255, 44.712556, -69.847255, 44.712556], "geometry": {"coordinates": [-69.847255, 44.712556], "type": "Point"}, "id": "70", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110008437290", "faclabel": "CROSSROADS LANDFILL"}, "type": "Feature"}, {"bbox": [-70.18693, 44.04928, -70.18693, 44.04928], "geometry": {"coordinates": [-70.18693, 44.04928], "type": "Point"}, "id": "164", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110008438324", "faclabel": "LEWISTON SOLID WASTE \u0026 RECYCLING FACILITY"}, "type": "Feature"}, {"bbox": [-68.825833, 44.738333, -68.825833, 44.738333], "geometry": {"coordinates": [-68.825833, 44.738333], "type": "Point"}, "id": "223", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110009913415", "faclabel": "PENOBSCOT ENERGY RECOVERY FACILITY"}, "type": "Feature"}, {"bbox": [-68.03935, 46.5978, -68.03935, 46.5978], "geometry": {"coordinates": [-68.03935, 46.5978], "type": "Point"}, "id": "267", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110013694742", "faclabel": "PRESQUE ISLE LANDFILL"}, "type": "Feature"}, {"bbox": [-70.25171, 43.63762, -70.25171, 43.63762], "geometry": {"coordinates": [-70.25171, 43.63762], "type": "Point"}, "id": "318", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110013917155", "faclabel": "SOUTH PORTLAND LANDFILL"}, "type": "Feature"}, {"bbox": [-69.81346, 43.91457, -69.81346, 43.91457], "geometry": {"coordinates": [-69.81346, 43.91457], "type": "Point"}, "id": "323", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110020156178", "faclabel": "BATH SNOW DUMP"}, "type": "Feature"}, {"bbox": [-68.869458, 44.769686, -68.869458, 44.769686], "geometry": {"coordinates": [-68.869458, 44.769686], "type": "Point"}, "id": "333", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110032749177", "faclabel": "PINE TREE LANDFILL"}, "type": "Feature"}, {"bbox": [-68.724728, 44.980464, -68.724728, 44.980464], "geometry": {"coordinates": [-68.724728, 44.980464], "type": "Point"}, "id": "353", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110038020049", "faclabel": "JUNIPER RIDGE LANDFILL"}, "type": "Feature"}, {"bbox": [-69.402782, 44.600914, -69.402782, 44.600914], "geometry": {"coordinates": [-69.402782, 44.600914], "type": "Point"}, "id": "424", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110039671174", "faclabel": "CASELLA ORGANICS"}, "type": "Feature"}, {"bbox": [-68.0497, 46.62691, -68.0497, 46.62691], "geometry": {"coordinates": [-68.0497, 46.62691], "type": "Point"}, "id": "508", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110043178343", "faclabel": "AROOSTOOK WASTE SOLUTIONS"}, "type": "Feature"}, {"bbox": [-69.71712, 44.7938, -69.71712, 44.7938], "geometry": {"coordinates": [-69.71712, 44.7938], "type": "Point"}, "id": "606", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110046237540", "faclabel": "SKOWHEGAN SOLID WASTE MANAGEMENT FACILITY"}, "type": "Feature"}, {"bbox": [-68.668097, 44.878144, -68.668097, 44.878144], "geometry": {"coordinates": [-68.668097, 44.878144], "type": "Point"}, "id": "775", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110055618577", "faclabel": "ORONO WATER POLLUTION CONTROL FACILITY"}, "type": "Feature"}, {"bbox": [-68.58, 45.655556, -68.58, 45.655556], "geometry": {"coordinates": [-68.58, 45.655556], "type": "Point"}, "id": "915", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110058407941", "faclabel": "DOLBY LANDFILL"}, "type": "Feature"}, {"bbox": [-68.04379, 46.69193, -68.04379, 46.69193], "geometry": {"coordinates": [-68.04379, 46.69193], "type": "Point"}, "id": "1112", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110064786487", "faclabel": "NORTHERN MAINE REGIONAL AIRPORT"}, "type": "Feature"}, {"bbox": [-69.81191, 43.92676, -69.81191, 43.92676], "geometry": {"coordinates": [-69.81191, 43.92676], "type": "Point"}, "id": "1159", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110067529142", "faclabel": "BATH SNOW DUMP"}, "type": "Feature"}, {"bbox": [-68.03935, 46.5978, -68.03935, 46.5978], "geometry": {"coordinates": [-68.03935, 46.5978], "type": "Point"}, "id": "1196", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110070697819", "faclabel": "AROOSTOOK WASTE SOLUTIONS - PRESQUE ISLE LANDFILL"}, "type": "Feature"}, {"bbox": [-69.92, 43.89, -69.92, 43.89], "geometry": {"coordinates": [-69.92, 43.89], "type": "Point"}, "id": "1247", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110000797077", "faclabel": "BRUNSWICK NAVAL AIR STATION BASE"}, "type": "Feature"}, {"bbox": [-68.00287, 46.86412, -68.00287, 46.86412], "geometry": {"coordinates": [-68.00287, 46.86412], "type": "Point"}, "id": "1253", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110000797371", "faclabel": "MAINE ARMY NATIONAL GUARD OMS #5"}, "type": "Feature"}, {"bbox": [-70.741666, 43.084167, -70.741666, 43.084167], "geometry": {"coordinates": [-70.741666, 43.084167], "type": "Point"}, "id": "1339", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110040852459", "faclabel": "PORTSMOUTH NAVAL SHIPYARD"}, "type": "Feature"}, {"bbox": [-70.293617, 43.684872, -70.293617, 43.684872], "geometry": {"coordinates": [-70.293617, 43.684872], "type": "Point"}, "id": "1340", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110070058240", "faclabel": "ME ARNG OMS#1"}, "type": "Feature"}, {"bbox": [-67.8576, 46.9626, -67.8576, 46.9626], "geometry": {"coordinates": [-67.8576, 46.9626], "type": "Point"}, "id": "1354", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110003553182", "faclabel": "LORING AIR FORCE BASE"}, "type": "Feature"}, {"bbox": [-69.924608, 43.89769, -69.924608, 43.89769], "geometry": {"coordinates": [-69.924608, 43.89769], "type": "Point"}, "id": "1404", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110013835181", "faclabel": "US NAVY NAVAL AIR STATION BRUNSWICK 2"}, "type": "Feature"}, {"bbox": [-70.31582, 43.63409, -70.31582, 43.63409], "geometry": {"coordinates": [-70.31582, 43.63409], "type": "Point"}, "id": "1407", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110039670969", "faclabel": "SOUTH PORTLAND AIR NATIONAL GUARD STATION"}, "type": "Feature"}, {"bbox": [-70.728742, 43.115663, -70.728742, 43.115663], "geometry": {"coordinates": [-70.728742, 43.115663], "type": "Point"}, "id": "1409", "properties": {"__folium_color": "darkred", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110071159239", "faclabel": "PORTSMOUTH NAVAL SHIPYARD"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_eae18295055b774c2b8c53958cc78b86.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["fac", "faclabel"];
let aliases = ["fac", "faclabel"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
geo_json_eae18295055b774c2b8c53958cc78b86.addTo(map_065b1d422d5592f6b50181ac87f1dc76);
function geo_json_f3edb47d8b068abbf32c4787d6480c85_styler(feature) {
switch(feature.id) {
default:
return {"color": "red", "fillColor": "red", "fillOpacity": 0.5, "weight": 5};
}
}
function geo_json_f3edb47d8b068abbf32c4787d6480c85_highlighter(feature) {
switch(feature.id) {
default:
return {"fillOpacity": 0.75};
}
}
function geo_json_f3edb47d8b068abbf32c4787d6480c85_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_f3edb47d8b068abbf32c4787d6480c85_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_f3edb47d8b068abbf32c4787d6480c85_onEachFeature(feature, layer) {
layer.on({
mouseout: function(e) {
if(typeof e.target.setStyle === "function"){
geo_json_f3edb47d8b068abbf32c4787d6480c85.resetStyle(e.target);
}
},
mouseover: function(e) {
if(typeof e.target.setStyle === "function"){
const highlightStyle = geo_json_f3edb47d8b068abbf32c4787d6480c85_highlighter(e.target.feature)
e.target.setStyle(highlightStyle);
}
},
});
};
var geo_json_f3edb47d8b068abbf32c4787d6480c85 = L.geoJson(null, {
onEachFeature: geo_json_f3edb47d8b068abbf32c4787d6480c85_onEachFeature,
style: geo_json_f3edb47d8b068abbf32c4787d6480c85_styler,
pointToLayer: geo_json_f3edb47d8b068abbf32c4787d6480c85_pointToLayer,
});
function geo_json_f3edb47d8b068abbf32c4787d6480c85_add (data) {
geo_json_f3edb47d8b068abbf32c4787d6480c85
.addData(data);
}
geo_json_f3edb47d8b068abbf32c4787d6480c85_add({"bbox": [-70.75252985211851, 43.08031133092864, -67.8501943071704, 46.97198505212423], "features": [{"bbox": [-70.27367463821943, 44.06506210938298, -70.25548550041714, 44.07564571083815], "geometry": {"coordinates": [[[-70.25548550041714, 44.0734657488238], [-70.26764294829859, 44.07564571083815], [-70.27367463821943, 44.06724077130174], [-70.26152029912596, 44.06506210938298], [-70.25548550041714, 44.0734657488238]]], "type": "Polygon"}, "id": "0", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110001830733", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526595845832572928", "faclabel": "MID MAINE WASTE - TO - ENERGY FACILITY"}, "type": "Feature"}, {"bbox": [-70.37387227289662, 43.639495732579036, -70.35590812922527, 43.64996513567825], "geometry": {"coordinates": [[[-70.35590812922527, 43.647823631799504], [-70.36792432161904, 43.64996513567825], [-70.37387227289662, 43.64163596080895], [-70.36185913222408, 43.639495732579036], [-70.35590812922527, 43.647823631799504]]], "type": "Polygon"}, "id": "67", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110007274074", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526648553671229440", "faclabel": "ECOMAINE LANDFILL"}, "type": "Feature"}, {"bbox": [-69.86297775421095, 44.70770527513036, -69.8443516199702, 44.71847549970606], "geometry": {"coordinates": [[[-69.8443516199702, 44.7162020218888], [-69.85674421193366, 44.71847549970606], [-69.86297775421095, 44.709977397830045], [-69.85058834310854, 44.70770527513036], [-69.8443516199702, 44.7162020218888]]], "type": "Polygon"}, "id": "70", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110008437290", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526409306812973056", "faclabel": "CROSSROADS LANDFILL"}, "type": "Feature"}, {"bbox": [-70.19464024789931, 44.04137645052544, -70.17643374865342, 44.05195886684606], "geometry": {"coordinates": [[[-70.17643374865342, 44.04976978138399], [-70.18858962062123, 44.05195886684606], [-70.19464024789931, 44.04356423148591], [-70.1824874765984, 44.04137645052544], [-70.17643374865342, 44.04976978138399]]], "type": "Polygon"}, "id": "164", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110008438324", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526601618268618752", "faclabel": "LEWISTON SOLID WASTE \u0026 RECYCLING FACILITY"}, "type": "Feature"}, {"bbox": [-68.8337967025835, 44.73588010634741, -68.81480071360922, 44.74671938840987], "geometry": {"coordinates": [[[-68.81480071360922, 44.74430364263532], [-68.82727111180976, 44.74671938840987], [-68.8337967025835, 44.738294425313356], [-68.82132942087725, 44.73588010634741], [-68.81480071360922, 44.74430364263532]]], "type": "Polygon"}, "id": "223", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110009913415", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525434452315996160", "faclabel": "PENOBSCOT ENERGY RECOVERY FACILITY"}, "type": "Feature"}, {"bbox": [-68.04816892865036, 46.59026408048062, -68.0280133008931, 46.60160657600666], "geometry": {"coordinates": [[[-68.0280133008931, 46.598962849913924], [-68.04114345786715, 46.60160657600666], [-68.04816892865036, 46.59290624366221], [-68.03504211531437, 46.59026408048062], [-68.0280133008931, 46.598962849913924]]], "type": "Polygon"}, "id": "267", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110013694742", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529481514099671040", "faclabel": "PRESQUE ISLE LANDFILL"}, "type": "Feature"}, {"bbox": [-70.2597698583631, 43.628484607199944, -70.24177033991465, 43.638958078906526], "geometry": {"coordinates": [[[-70.24177033991465, 43.63680219432409], [-70.25379173536246, 43.638958078906526], [-70.2597698583631, 43.63063920889243], [-70.2477515066164, 43.628484607199944], [-70.24177033991465, 43.63680219432409]]], "type": "Polygon"}, "id": "318", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110013917155", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526653982509891584", "faclabel": "SOUTH PORTLAND LANDFILL"}, "type": "Feature"}, {"bbox": [-69.8243449848707, 43.907699286478355, -69.8060685469615, 43.91827009189645], "geometry": {"coordinates": [[[-69.8060685469615, 43.916039682552416], [-69.81820930001831, 43.91827009189645], [-69.8243449848707, 43.90992837182488], [-69.812207290769, 43.907699286478355], [-69.8060685469615, 43.916039682552416]]], "type": "Polygon"}, "id": "323", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110020156178", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525218604439568384", "faclabel": "BATH SNOW DUMP"}, "type": "Feature"}, {"bbox": [-68.88311003125447, 44.76479852118742, -68.86411737915193, 44.77564213976646], "geometry": {"coordinates": [[[-68.86411737915193, 44.773231342078894], [-68.8765939989121, 44.77564213976646], [-68.88311003125447, 44.76720789414851], [-68.87063653576402, 44.76479852118742], [-68.86411737915193, 44.773231342078894]]], "type": "Polygon"}, "id": "333", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110032749177", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525435242589978624", "faclabel": "PINE TREE LANDFILL"}, "type": "Feature"}, {"bbox": [-68.73184978475908, 44.97838601451513, -68.71270575085316, 44.98929211503527], "geometry": {"coordinates": [[[-68.71270575085316, 44.986847013925946], [-68.72526076136248, 44.98929211503527], [-68.73184978475908, 44.98082967122551], [-68.71929791981464, 44.97838601451513], [-68.71270575085316, 44.986847013925946]]], "type": "Polygon"}, "id": "353", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110038020049", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525838076162605056", "faclabel": "JUNIPER RIDGE LANDFILL"}, "type": "Feature"}, {"bbox": [-69.41113236193212, 44.59489245666479, -69.39239997519576, 44.605661845808314], "geometry": {"coordinates": [[[-69.39239997519576, 44.60333379160921], [-69.40478760822702, 44.605661845808314], [-69.41113236193212, 44.597219129494775], [-69.39874786358303, 44.59489245666479], [-69.39239997519576, 44.60333379160921]]], "type": "Polygon"}, "id": "424", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110039671174", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525387963589984256", "faclabel": "CASELLA ORGANICS"}, "type": "Feature"}, {"bbox": [-68.05335667043079, 46.621655233037465, -68.03318717894751, 46.63300496181964], "geometry": {"coordinates": [[[-68.03318717894751, 46.630359988826484], [-68.0463277657, 46.63300496181964], [-68.05335667043079, 46.62429864209037], [-68.04021943282052, 46.621655233037465], [-68.03318717894751, 46.630359988826484]]], "type": "Polygon"}, "id": "508", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110043178343", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529480723825688576", "faclabel": "AROOSTOOK WASTE SOLUTIONS"}, "type": "Feature"}, {"bbox": [-69.73212411802166, 44.7897738442917, -69.7134140771859, 44.80057255905919], "geometry": {"coordinates": [[[-69.7134140771859, 44.79827635051644], [-69.72584238122337, 44.80057255905919], [-69.73212411802166, 44.792068685225004], [-69.71969899905244, 44.7897738442917], [-69.7134140771859, 44.79827635051644]]], "type": "Polygon"}, "id": "606", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110046237540", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526417003394367488", "faclabel": "SKOWHEGAN SOLID WASTE MANAGEMENT FACILITY"}, "type": "Feature"}, {"bbox": [-68.68488807935688, 44.871900494852795, -68.66577801316883, 44.88278272830626], "geometry": {"coordinates": [[[-68.66577801316883, 44.880337887338946], [-68.67830144477372, 44.88278272830626], [-68.68488807935688, 44.8743438929146], [-68.67236777396592, 44.871900494852795], [-68.66577801316883, 44.880337887338946]]], "type": "Polygon"}, "id": "775", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110055618577", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525830276501995520", "faclabel": "ORONO WATER POLLUTION CONTROL FACILITY"}, "type": "Feature"}, {"bbox": [-68.58854147365815, 45.64743436744896, -68.56903097065974, 45.65851492128119], "geometry": {"coordinates": [[[-68.56903097065974, 45.65600765632614], [-68.5818137677613, 45.65851492128119], [-68.58854147365815, 45.64994014876079], [-68.57576191390145, 45.64743436744896], [-68.56903097065974, 45.65600765632614]]], "type": "Polygon"}, "id": "915", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110058407941", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5522903995024146432", "faclabel": "DOLBY LANDFILL"}, "type": "Feature"}, {"bbox": [-68.0506057472487, 46.68185126432232, -68.03040530416504, 46.69321561298616], "geometry": {"coordinates": [[[-68.03040530416504, 46.69056642409844], [-68.04356660687905, 46.69321561298616], [-68.0506057472487, 46.68449888640728], [-68.03744780319295, 46.68185126432232], [-68.03040530416504, 46.69056642409844]]], "type": "Polygon"}, "id": "1112", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110064786487", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529486874218856448", "faclabel": "NORTHERN MAINE REGIONAL AIRPORT"}, "type": "Feature"}, {"bbox": [-69.81207079471478, 43.92438124407106, -69.7937825937837, 43.93495703007057], "geometry": {"coordinates": [[[-69.7937825937837, 43.932723970427716], [-69.80592946729593, 43.93495703007057], [-69.81207079471478, 43.92661297818042], [-69.79992698185445, 43.92438124407106], [-69.7937825937837, 43.932723970427716]]], "type": "Polygon"}, "id": "1159", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110067529142", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525219085475905536", "faclabel": "BATH SNOW DUMP"}, "type": "Feature"}, {"bbox": [-68.04816892865036, 46.59026408048062, -68.0280133008931, 46.60160657600666], "geometry": {"coordinates": [[[-68.0280133008931, 46.598962849913924], [-68.04114345786715, 46.60160657600666], [-68.04816892865036, 46.59290624366221], [-68.03504211531437, 46.59026408048062], [-68.0280133008931, 46.598962849913924]]], "type": "Polygon"}, "id": "1196", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110070697819", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529481514099671040", "faclabel": "AROOSTOOK WASTE SOLUTIONS - PRESQUE ISLE LANDFILL"}, "type": "Feature"}, {"bbox": [-69.92160868841682, 43.88766995881897, -69.90337515080428, 43.89822983833913], "geometry": {"coordinates": [[[-69.90337515080428, 43.896013601782], [-69.915502624217, 43.89822983833913], [-69.92160868841682, 43.8898848787939], [-69.90948427687528, 43.88766995881897], [-69.90337515080428, 43.896013601782]]], "type": "Polygon"}, "id": "1247", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110000797077", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525220459865440256", "faclabel": "BRUNSWICK NAVAL AIR STATION BASE"}, "type": "Feature"}, {"bbox": [-68.01591681289158, 46.857563769686124, -67.99561657259103, 46.86897227608834], "geometry": {"coordinates": [[[-67.99561657259103, 46.86630694202021], [-68.00884000725256, 46.86897227608834], [-68.01591681289158, 46.86022752672355], [-68.00269676257766, 46.857563769686124], [-67.99561657259103, 46.86630694202021]]], "type": "Polygon"}, "id": "1253", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110000797371", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529497147780628480", "faclabel": "MAINE ARMY NATIONAL GUARD OMS #5"}, "type": "Feature"}, {"bbox": [-70.75252985211851, 43.08031133092864, -70.74063584905018, 43.091742865087575], "geometry": {"coordinates": [[[-70.7525298521185, 43.091742865087575], [-70.75252985211851, 43.082383857963606], [-70.74063584905018, 43.08031133092864], [-70.74063584905018, 43.089670292749176], [-70.7525298521185, 43.091742865087575]]], "type": "Polygon"}, "id": "1339", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110040852459", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9935713854912724992", "faclabel": "PORTSMOUTH NAVAL SHIPYARD"}, "type": "Feature"}, {"bbox": [-70.30204841024799, 43.68302880213916, -70.28403962611644, 43.693513648362924], "geometry": {"coordinates": [[[-70.28403962611644, 43.691360095849156], [-70.29607486351759, 43.693513648362924], [-70.30204841024799, 43.68518107234594], [-70.2900162268933, 43.68302880213916], [-70.28403962611644, 43.691360095849156]]], "type": "Polygon"}, "id": "1340", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110070058240", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526650168578932736", "faclabel": "ME ARNG OMS#1"}, "type": "Feature"}, {"bbox": [-67.87059587583177, 46.96054316629134, -67.8501943071704, 46.97198505212423], "geometry": {"coordinates": [[[-67.8501943071704, 46.96929211647789], [-67.86346086566033, 46.97198505212423], [-67.87059587583177, 46.96323451009372], [-67.8573327060648, 46.96054316629134], [-67.8501943071704, 46.96929211647789]]], "type": "Polygon"}, "id": "1354", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110003553182", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5529522470907805696", "faclabel": "LORING AIR FORCE BASE"}, "type": "Feature"}, {"bbox": [-69.93373291846942, 43.8898848787939, -69.915502624217, 43.90044459455325], "geometry": {"coordinates": [[[-69.915502624217, 43.89822983833913], [-69.92762991718902, 43.90044459455325], [-69.93373291846942, 43.89209831915154], [-69.92160868841682, 43.8898848787939], [-69.915502624217, 43.89822983833913]]], "type": "Polygon"}, "id": "1404", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110013835181", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5525220494225178624", "faclabel": "US NAVY NAVAL AIR STATION BRUNSWICK 2"}, "type": "Feature"}, {"bbox": [-70.32581823329583, 43.63092027345381, -70.30784091321883, 43.64139038808908], "geometry": {"coordinates": [[[-70.30784091321883, 43.6392430628571], [-70.31985808104174, 43.64139038808908], [-70.32581823329583, 43.63306632014879], [-70.31380411325183, 43.63092027345381], [-70.30784091321883, 43.6392430628571]]], "type": "Polygon"}, "id": "1407", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110039670969", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.5526648210073845760", "faclabel": "SOUTH PORTLAND AIR NATIONAL GUARD STATION"}, "type": "Feature"}, {"bbox": [-70.74063584905018, 43.11566276517211, -70.72874154238062, 43.12708900453221], "geometry": {"coordinates": [[[-70.74063584905018, 43.12708900453221], [-70.74063584905018, 43.117736897388326], [-70.72874154238062, 43.11566276517211], [-70.72874154238062, 43.12501482785008], [-70.74063584905018, 43.12708900453221]]], "type": "Polygon"}, "id": "1409", "properties": {"__folium_color": "red", "fac": "http://sawgraph.spatialai.org/v1/us-frs-data#d.FRS-Facility.110071159239", "fac_s2": "http://stko-kwg.geog.ucsb.edu/lod/resource/s2.level13.9935713339516649472", "faclabel": "PORTSMOUTH NAVAL SHIPYARD"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_f3edb47d8b068abbf32c4787d6480c85.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["fac", "fac_s2", "faclabel"];
let aliases = ["fac", "fac_s2", "faclabel"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
geo_json_f3edb47d8b068abbf32c4787d6480c85.addTo(map_065b1d422d5592f6b50181ac87f1dc76);
function geo_json_847747335874e26c0e7bf4816e8b25c1_styler(feature) {
switch(feature.id) {
default:
return {"color": "navy", "fillColor": "navy", "fillOpacity": 0.5, "weight": 5};
}
}
function geo_json_847747335874e26c0e7bf4816e8b25c1_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_847747335874e26c0e7bf4816e8b25c1_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_847747335874e26c0e7bf4816e8b25c1_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_847747335874e26c0e7bf4816e8b25c1 = L.geoJson(null, {
onEachFeature: geo_json_847747335874e26c0e7bf4816e8b25c1_onEachFeature,
style: geo_json_847747335874e26c0e7bf4816e8b25c1_styler,
pointToLayer: geo_json_847747335874e26c0e7bf4816e8b25c1_pointToLayer,
});
function geo_json_847747335874e26c0e7bf4816e8b25c1_add (data) {
geo_json_847747335874e26c0e7bf4816e8b25c1
.addData(data);
}
geo_json_847747335874e26c0e7bf4816e8b25c1_add({"bbox": [-70.76000360060635, 43.08328159979283, -67.84817627179274, 46.98177499374157], "features": [{"bbox": [-70.27988660135156, 44.059298531611205, -70.23933006808119, 44.070145798261024], "geometry": {"coordinates": [[-70.27988660135156, 44.059921131610224, 0.0], [-70.27839540135392, 44.06037779827619, 0.0], [-70.2782546680208, 44.06074073160897, 0.0], [-70.27875280135333, 44.062272998273215, 0.0], [-70.27851840135372, 44.06287793160561, 0.0], [-70.27787080135471, 44.06314019827187, 0.0], [-70.27582466802454, 44.063254798271714, 0.0], [-70.2739288680275, 44.063920531604026, 0.0], [-70.27076546803238, 44.06316159827185, 0.0], [-70.26939520136784, 44.0634105316048, 0.0], [-70.26816560136979, 44.06329639827163, 0.0], [-70.26691726803836, 44.063699798271045, 0.0], [-70.26590360137328, 44.06349833160465, 0.0], [-70.26525600137427, 44.063760398270915, 0.0], [-70.26457100137537, 44.065057731602224, 0.0], [-70.26370760137667, 44.06540719826836, 0.0], [-70.26161440137992, 44.065642731601315, 0.0], [-70.26103240138082, 44.06526633160195, 0.0], [-70.26109800138073, 44.06462779826961, 0.0], [-70.26004620138235, 44.06077013160893, 0.0], [-70.25931400138353, 44.05984273161033, 0.0], [-70.25461166805746, 44.059298531611205, 0.0], [-70.25290360139348, 44.059479998277595, 0.0], [-70.25105460139633, 44.06002439827671, 0.0], [-70.24864246806675, 44.05967493161063, 0.0], [-70.24821066806743, 44.059849598277026, 0.0], [-70.24792906806783, 44.06057553160923, 0.0], [-70.2482952014006, 44.06103919827518, 0.0], [-70.24998460139801, 44.06137533160796, 0.0], [-70.25001280139793, 44.06177179827404, 0.0], [-70.24616446807056, 44.06230939827316, 0.0], [-70.2455168014049, 44.062571531606125, 0.0], [-70.24454986807308, 44.06459439826966, 0.0], [-70.24255980140953, 44.06550173160156, 0.0], [-70.24244706807633, 44.066261131600356, 0.0], [-70.24335740140828, 44.068136331597486, 0.0], [-70.24317886807523, 44.06953433159532, 0.0], [-70.2416674680776, 44.070145798261024, 0.0], [-70.2397618680805, 44.06989699826141, 0.0], [-70.23933006808119, 44.07007173159445, 0.0]], "type": "LineString"}, "id": "0", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/6712619", "fl_name": "Little Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.36611820121772, 43.646737532251564, -70.35030980124225, 43.64897699891475], "geometry": {"coordinates": [[-70.36611820121772, 43.646737532251564, 0.0], [-70.3644176012204, 43.647766398916644, 0.0], [-70.3637248678881, 43.648246598915875, 0.0], [-70.3634728678885, 43.648337998915736, 0.0], [-70.36224486789041, 43.64820079891598, 0.0], [-70.36170946789122, 43.64833793224909, 0.0], [-70.36123700122528, 43.64861233224866, 0.0], [-70.36004046789384, 43.64861213224867, 0.0], [-70.35947360122805, 43.64877233224843, 0.0], [-70.35900106789546, 43.64874939891513, 0.0], [-70.35758426789766, 43.64797173224963, 0.0], [-70.35695440123197, 43.64799453224964, 0.0], [-70.35594660123354, 43.64833733224907, 0.0], [-70.35361620123712, 43.64840573224899, 0.0], [-70.35241940123899, 43.64879419891503, 0.0], [-70.3514432679072, 43.64897699891475, 0.0], [-70.35087646790805, 43.64895413224815, 0.0], [-70.35043566790876, 43.64872533224849, 0.0], [-70.35030980124225, 43.64847379891552, 0.0], [-70.3504672679087, 43.64808513224949, 0.0], [-70.35037300124219, 43.647421932250495, 0.0]], "type": "LineString"}, "id": "67", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/6721559", "fl_name": null}, "type": "Feature"}, {"bbox": [-69.85837426867249, 44.70245773061288, -69.83923586870225, 44.710874530599824], "geometry": {"coordinates": [[-69.85827806867269, 44.710874530599824, 0.0], [-69.85837426867249, 44.71064593060015, 0.0], [-69.85834246867256, 44.710097130601014, 0.0], [-69.8577654020068, 44.70952539726858, 0.0], [-69.85648300200876, 44.708747930603124, 0.0], [-69.85327680201374, 44.70785579727118, 0.0], [-69.85244340201507, 44.70744399727181, 0.0], [-69.85141766868333, 44.70659793060645, 0.0], [-69.85055220201798, 44.705477330608176, 0.0], [-69.84984720201908, 44.70476853060927, 0.0], [-69.84882146868733, 44.70408233061033, 0.0], [-69.84622466869138, 44.70373879727754, 0.0], [-69.84494226869339, 44.70341853061137, 0.0], [-69.84369226869529, 44.702549330612726, 0.0], [-69.8429230020298, 44.70245773061288, 0.0], [-69.840037268701, 44.70291419727886, 0.0], [-69.83923586870225, 44.70284553061225, 0.0]], "type": "LineString"}, "id": "70", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/3320756", "fl_name": null}, "type": "Feature"}, {"bbox": [-70.22164580144198, 44.0358133983143, -70.18512460149867, 44.089358731564516], "geometry": {"coordinates": [[-70.22164580144198, 44.089358731564516, 0.0], [-70.21988080144473, 44.08874659823215, 0.0], [-70.21197760145697, 44.083784331573156, 0.0], [-70.2077840014635, 44.078647998247845, 0.0], [-70.20687446813156, 44.07677253158408, 0.0], [-70.20790886812995, 44.0741113315882, 0.0], [-70.20813660146297, 44.07024673159418, 0.0], [-70.20721846813103, 44.067457198265174, 0.0], [-70.2075388014639, 44.0656963982679, 0.0], [-70.207239068131, 44.06459413160297, 0.0], [-70.20609480146612, 44.063323531604965, 0.0], [-70.20268840147139, 44.06225359827329, 0.0], [-70.20164700147302, 44.06165513160755, 0.0], [-70.20088766814087, 44.060330798276254, 0.0], [-70.20033566814175, 44.058005131613186, 0.0], [-70.19864826814432, 44.055322931617354, 0.0], [-70.19561000148241, 44.0523711982886, 0.0], [-70.19292886815322, 44.048969331627234, 0.0], [-70.18839886816028, 44.04611099829833, 0.0], [-70.18705866816231, 44.04440999830098, 0.0], [-70.18625500149693, 44.040861131639815, 0.0], [-70.18559040149796, 44.039294931642246, 0.0], [-70.18562886816454, 44.038259931643836, 0.0], [-70.18512460149867, 44.0358133983143, 0.0]], "type": "LineString"}, "id": "164", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/6712623", "fl_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-68.82832987027138, 44.743936997215144, -68.80168867031273, 44.76144239718798], "geometry": {"coordinates": [[-68.80168867031273, 44.76144239718798, 0.0], [-68.80256847031131, 44.761101930521875, 0.0], [-68.8043384036419, 44.759505530524336, 0.0], [-68.80917740363441, 44.7576323971939, 0.0], [-68.81130687029776, 44.75650433052897, 0.0], [-68.81324647029476, 44.75494319719809, 0.0], [-68.8141462036267, 44.75277193053478, 0.0], [-68.8161154702903, 44.75069279720469, 0.0], [-68.81775487028779, 44.74985553053932, 0.0], [-68.81937427028527, 44.748620730541234, 0.0], [-68.82536160360928, 44.74620079721166, 0.0], [-68.82637100360773, 44.7451009305467, 0.0], [-68.82745027027272, 44.74427773054799, 0.0], [-68.82832987027138, 44.743936997215144, 0.0]], "type": "LineString"}, "id": "223", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/1736934", "fl_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.82933060360313, 44.743936997215144, -68.82832987027138, 44.7451447305466], "geometry": {"coordinates": [[-68.82933060360313, 44.7451447305466, 0.0], [-68.82931127026984, 44.745121397213325, 0.0], [-68.82925680360324, 44.74505559721342, 0.0], [-68.82920227027, 44.74498979721352, 0.0], [-68.82914767027006, 44.74492399721362, 0.0], [-68.82909320360352, 44.744858197213716, 0.0], [-68.82903867027022, 44.744792397213814, 0.0], [-68.82898420360368, 44.74472659721391, 0.0], [-68.82892960360374, 44.74466079721401, 0.0], [-68.8288750702705, 44.744594997214165, 0.0], [-68.8288206036039, 44.74452919721426, 0.0], [-68.82876607027066, 44.74446339721436, 0.0], [-68.82871147027078, 44.74439759721446, 0.0], [-68.82865700360418, 44.744331797214556, 0.0], [-68.82860247027094, 44.744265997214654, 0.0], [-68.82854800360434, 44.74420019721475, 0.0], [-68.82849340360445, 44.74413439721485, 0.0], [-68.82843887027116, 44.74406859721495, 0.0], [-68.82838440360462, 44.744002797215046, 0.0], [-68.82832987027138, 44.743936997215144, 0.0]], "type": "LineString"}, "id": "238", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/1743088", "fl_name": "Souadabscook Stream"}, "type": "Feature"}, {"bbox": [-68.83221600359866, 44.73544299722835, -68.82832987027138, 44.743936997215144], "geometry": {"coordinates": [[-68.82832987027138, 44.743936997215144, 0.0], [-68.82882940360389, 44.74273073055036, 0.0], [-68.82963880360268, 44.742113197217975, 0.0], [-68.83015847026849, 44.741304330552566, 0.0], [-68.8312572702668, 44.73865039722335, 0.0], [-68.83104720360046, 44.737820197224664, 0.0], [-68.83221600359866, 44.73544299722835, 0.0]], "type": "LineString"}, "id": "253", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/1736956", "fl_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.07302880477704, 46.58798092768615, -68.0131948715366, 46.61673299430822], "geometry": {"coordinates": [[-68.0131948715366, 46.59721512767186, 0.0], [-68.0149532715339, 46.59678252767253, 0.0], [-68.01591567153235, 46.596372127673135, 0.0], [-68.01664607153123, 46.59591559434051, 0.0], [-68.01730980486354, 46.5956877276742, 0.0], [-68.0187026048614, 46.595574727674375, 0.0], [-68.0207576048582, 46.59601099434036, 0.0], [-68.02181887152324, 46.5958977276739, 0.0], [-68.02424087151945, 46.595122594341774, 0.0], [-68.02855360484608, 46.593914994343606, 0.0], [-68.02964920484442, 46.59313872767814, 0.0], [-68.03117560484202, 46.59243139434591, 0.0], [-68.03286700483937, 46.59220432767961, 0.0], [-68.03336480483864, 46.59195319434667, 0.0], [-68.03379707150464, 46.59115359434793, 0.0], [-68.03432880483712, 46.5904911276823, 0.0], [-68.03519200483578, 46.58976052768338, 0.0], [-68.03532467150228, 46.58976052768338, 0.0], [-68.0362868048341, 46.589326994350756, 0.0], [-68.03827727149769, 46.58861999435186, 0.0], [-68.0391070048297, 46.588140727685925, 0.0], [-68.03953820482906, 46.58798092768615, 0.0], [-68.04013487149479, 46.58800432768612, 0.0], [-68.04053220482751, 46.588347527685585, 0.0], [-68.04126007149301, 46.589307994350804, 0.0], [-68.04145827149273, 46.58974239435008, 0.0], [-68.042153404825, 46.59047432768227, 0.0], [-68.04354420482281, 46.59168672768044, 0.0], [-68.04433787148827, 46.59312739434483, 0.0], [-68.0452312048202, 46.59431652767631, 0.0], [-68.04595960481907, 46.5950485276752, 0.0], [-68.04668840481793, 46.59555179434108, 0.0], [-68.04711927148395, 46.59566652767427, 0.0], [-68.04837927148196, 46.59564452767427, 0.0], [-68.04910920481421, 46.59532492767477, 0.0], [-68.04970680481324, 46.594868194342155, 0.0], [-68.05020447147916, 46.594639994342515, 0.0], [-68.0519954714764, 46.594206794343165, 0.0], [-68.0527254048086, 46.59391012767696, 0.0], [-68.05355447147394, 46.59375072767722, 0.0], [-68.0546486048056, 46.593797127677135, 0.0], [-68.05564260480406, 46.5943921276762, 0.0], [-68.0570998048018, 46.595832927673996, 0.0], [-68.05753060480112, 46.595993194340394, 0.0], [-68.05888987146568, 46.59617692767347, 0.0], [-68.0594532714648, 46.59638292767312, 0.0], [-68.06014860479706, 46.59718332767187, 0.0], [-68.06028100479682, 46.59748052767145, 0.0], [-68.06130780479526, 46.598463994336555, 0.0], [-68.06173760479459, 46.599606994334806, 0.0], [-68.06186987146106, 46.599881394334375, 0.0], [-68.06276407145964, 46.60084192766618, 0.0], [-68.06491820478965, 46.60214599433084, 0.0], [-68.06584580478824, 46.602900727662984, 0.0], [-68.06700527145307, 46.604089927661164, 0.0], [-68.06750140478562, 46.605301594325965, 0.0], [-68.06760087145216, 46.60532452765926, 0.0], [-68.0679644714516, 46.606536127657364, 0.0], [-68.06812867145135, 46.608021994321746, 0.0], [-68.06789460478501, 46.60975899431901, 0.0], [-68.06792687145168, 46.6106961943176, 0.0], [-68.06802620478481, 46.61074192765085, 0.0], [-68.06819167145125, 46.61110772765028, 0.0], [-68.06941807144932, 46.61188539431572, 0.0], [-68.07018007144814, 46.612731527647725, 0.0], [-68.07057700478089, 46.613851794312666, 0.0], [-68.0707426047806, 46.61408039431234, 0.0], [-68.07110727144669, 46.6143091276453, 0.0], [-68.07183680477891, 46.6145609276449, 0.0], [-68.07213500477843, 46.61488112764442, 0.0], [-68.07266460477763, 46.61611559430918, 0.0], [-68.07263120477768, 46.61629852764224, 0.0], [-68.07302880477704, 46.61673299430822, 0.0]], "type": "LineString"}, "id": "267", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/805007", "fl_name": null}, "type": "Feature"}, {"bbox": [-70.26022440138212, 43.60822213231137, -70.24122306807828, 43.63254259894029], "geometry": {"coordinates": [[-70.26022440138212, 43.60822213231137, 0.0], [-70.25993906804922, 43.6092967323097, 0.0], [-70.25899240138403, 43.610690732307546, 0.0], [-70.25873986805107, 43.611079198973584, 0.0], [-70.2574464013864, 43.61274719897102, 0.0], [-70.25678466805408, 43.61318113230368, 0.0], [-70.25580800138897, 43.61370599896952, 0.0], [-70.25480020139054, 43.614047998969, 0.0], [-70.25272080139376, 43.61509773230068, 0.0], [-70.25212180139465, 43.615645932299856, 0.0], [-70.25167860139538, 43.61694893229782, 0.0], [-70.25139446806247, 43.61731453229726, 0.0], [-70.25044946806395, 43.617702198963286, 0.0], [-70.24975466806501, 43.6188677322948, 0.0], [-70.24948160139877, 43.61920419896097, 0.0], [-70.24788080140127, 43.62126413229112, 0.0], [-70.24722200140229, 43.6223625322894, 0.0], [-70.24643666807015, 43.62316373228816, 0.0], [-70.24426746807353, 43.624515198952736, 0.0], [-70.24385906807419, 43.62492733228544, 0.0], [-70.24385940140752, 43.62508733228515, 0.0], [-70.24329446807502, 43.62593399895053, 0.0], [-70.24216320141011, 43.62687279894908, 0.0], [-70.241409868078, 43.62801699894732, 0.0], [-70.24125386807822, 43.628703132279554, 0.0], [-70.24122306807828, 43.629091998945626, 0.0], [-70.24201126807702, 43.629617132278156, 0.0], [-70.24264086807608, 43.62963933227809, 0.0], [-70.24377360140761, 43.62931799894528, 0.0], [-70.24405686807387, 43.62934053227855, 0.0], [-70.24522286807206, 43.629819398944505, 0.0], [-70.24572660140461, 43.629887532277735, 0.0], [-70.24667086806983, 43.629840732277785, 0.0], [-70.24720566806894, 43.629657132278055, 0.0], [-70.24786560140126, 43.629084798945655, 0.0], [-70.24849486806698, 43.62892399894588, 0.0], [-70.2490308013995, 43.62922073227878, 0.0], [-70.24950380139876, 43.62960893227813, 0.0], [-70.24992106806474, 43.630072998944115, 0.0], [-70.24995180139803, 43.63048459894344, 0.0], [-70.2501718013977, 43.63066793227654, 0.0], [-70.2501078013978, 43.63119359894239, 0.0], [-70.24963400139853, 43.631970598941166, 0.0], [-70.24966460139848, 43.63240513227379, 0.0], [-70.24994760139805, 43.63254259894029, 0.0]], "type": "LineString"}, "id": "318", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/6721955", "fl_name": "Trout Brook"}, "type": "Feature"}, {"bbox": [-70.25142160139575, 43.63254259894029, -70.24911080139935, 43.637269932266236], "geometry": {"coordinates": [[-70.24994760139805, 43.63254259894029, 0.0], [-70.24988306806483, 43.63332013227239, 0.0], [-70.25026026806421, 43.63364059893854, 0.0], [-70.25079320139673, 43.63476159893685, 0.0], [-70.25139060139583, 43.63524253226939, 0.0], [-70.25142160139575, 43.635471198935704, 0.0], [-70.25123220139608, 43.63567693226872, 0.0], [-70.25063346806365, 43.635996332268235, 0.0], [-70.24948800139879, 43.63697219893339, 0.0], [-70.24911080139935, 43.637269932266236, 0.0]], "type": "LineString"}, "id": "320", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/6721949", "fl_name": "Trout Brook"}, "type": "Feature"}, {"bbox": [-70.25449046805767, 43.62772233228111, -70.24994760139805, 43.63254259894029], "geometry": {"coordinates": [[-70.25449046805767, 43.62772233228111, 0.0], [-70.25404886805836, 43.62815633228041, 0.0], [-70.25291246806012, 43.62971019894468, 0.0], [-70.25253426806069, 43.629984198944214, 0.0], [-70.25225006806113, 43.63046413227681, 0.0], [-70.25158740139551, 43.6312409322756, 0.0], [-70.25070460139688, 43.63188033227465, 0.0], [-70.25007360139784, 43.632519932273624, 0.0], [-70.24994760139805, 43.63254259894029, 0.0]], "type": "LineString"}, "id": "321", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/6721591", "fl_name": "Kimball Brook"}, "type": "Feature"}, {"bbox": [-69.81243166874384, 43.90742293184695, -69.80753246875145, 43.94783193178421], "geometry": {"coordinates": [[-69.81243166874384, 43.94783193178421, 0.0], [-69.81011086874742, 43.94367339845735, 0.0], [-69.80965466874812, 43.93619819846896, 0.0], [-69.80784320208426, 43.93005573181182, 0.0], [-69.80753246875145, 43.92326513182235, 0.0], [-69.808673402083, 43.917423998498066, 0.0], [-69.8083835354168, 43.90742293184695, 0.0]], "type": "LineString"}, "id": "323", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/5205308", "fl_name": null}, "type": "Feature"}, {"bbox": [-68.87467600353273, 44.77011613050786, -68.85560920356232, 44.77592553049885], "geometry": {"coordinates": [[-68.87467600353273, 44.77592553049885, 0.0], [-68.87448327019973, 44.775856930498946, 0.0], [-68.87348820353458, 44.7752395304999, 0.0], [-68.87339187020143, 44.775056530500194, 0.0], [-68.87335980353481, 44.77414193050163, 0.0], [-68.87313507020178, 44.773433130502724, 0.0], [-68.87281407020231, 44.77293013050348, 0.0], [-68.8724288702029, 44.77256419717071, 0.0], [-68.87149800353768, 44.772152597171385, 0.0], [-68.86963627020725, 44.771969597171676, 0.0], [-68.86921900354122, 44.77212973050473, 0.0], [-68.86873740354196, 44.772609797170674, 0.0], [-68.8674532702106, 44.772792597170394, 0.0], [-68.8658162035465, 44.77256399717072, 0.0], [-68.864628470215, 44.77228953050451, 0.0], [-68.86356940355, 44.771832130505175, 0.0], [-68.86218907021879, 44.771626130505524, 0.0], [-68.86074467022104, 44.77126013050611, 0.0], [-68.86007060355541, 44.770939930506586, 0.0], [-68.85859420355769, 44.770619730507065, 0.0], [-68.8580806035585, 44.77059673050712, 0.0], [-68.85759900355924, 44.77071099717358, 0.0], [-68.85670040356064, 44.7707793971735, 0.0], [-68.85618680356146, 44.770527797173884, 0.0], [-68.85560920356232, 44.77011613050786, 0.0]], "type": "LineString"}, "id": "333", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/1735920", "fl_name": null}, "type": "Feature"}, {"bbox": [-68.7186832037749, 44.97986959684897, -68.70866800379042, 45.00007839681757], "geometry": {"coordinates": [[-68.71628887044528, 44.97986959684897, 0.0], [-68.71628947044525, 44.980212530181745, 0.0], [-68.71670900377796, 44.98064653018105, 0.0], [-68.71712960377727, 44.981743730179346, 0.0], [-68.71803387044253, 44.98302339684403, 0.0], [-68.7184560704419, 44.984943796841094, 0.0], [-68.7186822037749, 44.985332330173776, 0.0], [-68.7186832037749, 44.98588113017297, 0.0], [-68.71829760377545, 44.9865215968386, 0.0], [-68.71742820377682, 44.986865196838096, 0.0], [-68.71572067044616, 44.986935196837976, 0.0], [-68.7154308704466, 44.98702693017117, 0.0], [-68.71475487044762, 44.98753039683703, 0.0], [-68.71436907044824, 44.988010796836306, 0.0], [-68.7138212704491, 44.98801119683628, 0.0], [-68.71291880378385, 44.98785193016988, 0.0], [-68.7120488037852, 44.98789819683651, 0.0], [-68.70963240378893, 44.98822013016934, 0.0], [-68.70924587045619, 44.98835759683578, 0.0], [-68.70876387045695, 44.98924973016773, 0.0], [-68.70866800379042, 44.98982133016682, 0.0], [-68.70905627045647, 44.99075853016535, 0.0], [-68.70989567045518, 44.991809730163766, 0.0], [-68.71028420378792, 44.992883996828766, 0.0], [-68.71122060378644, 44.993980930160376, 0.0], [-68.71144687045279, 44.99441519682637, 0.0], [-68.71154420378593, 44.99487233015901, 0.0], [-68.71141620378614, 44.99535253015824, 0.0], [-68.71080500378713, 44.99619899682358, 0.0], [-68.71064460378733, 44.99663353015626, 0.0], [-68.71071060378728, 44.99763959682139, 0.0], [-68.71084000378704, 44.99791379682091, 0.0], [-68.71125927045307, 44.99816513015389, 0.0], [-68.712807203784, 44.998689730153046, 0.0], [-68.71419407044851, 44.9993289301521, 0.0], [-68.715806670446, 44.99989939681785, 0.0], [-68.7160002704457, 45.00007839681757, 0.0]], "type": "LineString"}, "id": "353", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/1735580", "fl_name": null}, "type": "Feature"}, {"bbox": [-69.39884960271911, 44.60405153076562, -69.391620869397, 44.63222359738859], "geometry": {"coordinates": [[-69.39788466938728, 44.60405153076562, 0.0], [-69.3981410027202, 44.60453153076486, 0.0], [-69.39814140272023, 44.60549193076338, 0.0], [-69.39740560272139, 44.60640673076199, 0.0], [-69.3970856693885, 44.6067041307615, 0.0], [-69.39686180272219, 44.60716139742749, 0.0], [-69.39695806938875, 44.60796179742624, 0.0], [-69.39791880272054, 44.60915059742439, 0.0], [-69.398047269387, 44.609630730756976, 0.0], [-69.3981760693868, 44.61155153075396, 0.0], [-69.39884960271911, 44.614409530749526, 0.0], [-69.39862600271948, 44.6155301307478, 0.0], [-69.39766620272098, 44.61676499741253, 0.0], [-69.39667406938918, 44.61774839741105, 0.0], [-69.39571400272399, 44.61841173074333, 0.0], [-69.39388946939351, 44.61930399740862, 0.0], [-69.39225720272935, 44.62044753074019, 0.0], [-69.39232126939595, 44.620836330739564, 0.0], [-69.39264160272876, 44.62122493073895, 0.0], [-69.39296246939494, 44.62307713073608, 0.0], [-69.39350726939409, 44.62422013073433, 0.0], [-69.39392360272677, 44.62481473073342, 0.0], [-69.39430786939283, 44.625065997399645, 0.0], [-69.3951406027249, 44.625317530732616, 0.0], [-69.39552480272431, 44.62561473073214, 0.0], [-69.39587740272373, 44.62657493073067, 0.0], [-69.39594180272366, 44.62744393072933, 0.0], [-69.39559000272419, 44.6284499973944, 0.0], [-69.39530200272463, 44.628838730727125, 0.0], [-69.39478986939207, 44.62929633072645, 0.0], [-69.39424560272624, 44.62959359739267, 0.0], [-69.39354120272736, 44.629822397392275, 0.0], [-69.39270880272863, 44.62984539739227, 0.0], [-69.39229246939595, 44.629959797392075, 0.0], [-69.39210046939627, 44.630119930725186, 0.0], [-69.39197280272981, 44.63149193072303, 0.0], [-69.391620869397, 44.63222359738859, 0.0]], "type": "LineString"}, "id": "424", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/3321078", "fl_name": null}, "type": "Feature"}, {"bbox": [-68.06655940478709, 46.61882159430496, -68.0483462048154, 46.65455112758286], "geometry": {"coordinates": [[-68.0483462048154, 46.61882159430496, 0.0], [-68.04854427148172, 46.61943879430402, 0.0], [-68.04933900481382, 46.620490794302384, 0.0], [-68.04957027148015, 46.62110812763473, 0.0], [-68.04980187147976, 46.62161112763397, 0.0], [-68.05016520481257, 46.62273132763221, 0.0], [-68.05086040481149, 46.62376039429728, 0.0], [-68.05129087147748, 46.62433212762977, 0.0], [-68.05145640481055, 46.6246979276292, 0.0], [-68.05165500481024, 46.62504092762862, 0.0], [-68.05215147147612, 46.62584132762743, 0.0], [-68.05221767147606, 46.62606999429369, 0.0], [-68.05294607147488, 46.627144727625364, 0.0], [-68.05480180480538, 46.62883732762276, 0.0], [-68.0550666714716, 46.629203194288834, 0.0], [-68.05509927147153, 46.62961459428823, 0.0], [-68.05576107147056, 46.630940727619475, 0.0], [-68.0565234048027, 46.63167259428502, 0.0], [-68.05718527146831, 46.63299872761627, 0.0], [-68.05741680480128, 46.633615994282025, 0.0], [-68.05764867146758, 46.63395899428144, 0.0], [-68.05814587146682, 46.63437072761417, 0.0], [-68.05910760479867, 46.63480559428018, 0.0], [-68.0596374714645, 46.635674394278794, 0.0], [-68.06043300479661, 46.63642919427764, 0.0], [-68.06139447146177, 46.63709259427662, 0.0], [-68.06305247145923, 46.63805359427511, 0.0], [-68.06328440479217, 46.63846512760779, 0.0], [-68.06364800479162, 46.639676727605945, 0.0], [-68.06404567145768, 46.640065527605316, 0.0], [-68.06407740479096, 46.641345527603335, 0.0], [-68.0639764047911, 46.64267119426796, 0.0], [-68.06414140479086, 46.64349419426668, 0.0], [-68.06424100479069, 46.643539994266575, 0.0], [-68.06437300479053, 46.644111394265735, 0.0], [-68.0652674714558, 46.645528994263486, 0.0], [-68.0661290047878, 46.646740927594976, 0.0], [-68.06649327145385, 46.64744972759388, 0.0], [-68.06655940478709, 46.6477469275934, 0.0], [-68.06645847145393, 46.64898112759147, 0.0], [-68.06632480478748, 46.649735194257005, 0.0], [-68.0662900714542, 46.65108379425487, 0.0], [-68.0660906047878, 46.65138092758775, 0.0], [-68.06532680478904, 46.65174612758722, 0.0], [-68.06267080479313, 46.65220179425313, 0.0], [-68.06227227146042, 46.65238452758621, 0.0], [-68.06187360479436, 46.65272699425236, 0.0], [-68.06184020479441, 46.65286419425212, 0.0], [-68.06130880479526, 46.65313819425171, 0.0], [-68.06067807146292, 46.653183527584986, 0.0], [-68.06047860479651, 46.6534121275846, 0.0], [-68.06037867146335, 46.65364052758423, 0.0], [-68.05938247146491, 46.65395999425044, 0.0], [-68.05868540479935, 46.65400532758366, 0.0], [-68.05832007146654, 46.65416512758344, 0.0], [-68.05782240480067, 46.65398192758374, 0.0], [-68.0575568048011, 46.6539817275837, 0.0], [-68.0570252048019, 46.65434712758315, 0.0], [-68.05589687147034, 46.65411792758351, 0.0], [-68.05423667147289, 46.65455112758286, 0.0]], "type": "LineString"}, "id": "508", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/804987", "fl_name": "Hughes Brook"}, "type": "Feature"}, {"bbox": [-68.05546987147096, 46.62098212763493, -68.03075740484269, 46.65455112758286], "geometry": {"coordinates": [[-68.03368020483816, 46.62098212763493, 0.0], [-68.03324867150548, 46.62111892763471, 0.0], [-68.0326508715064, 46.62155272763408, 0.0], [-68.03198687150746, 46.62180359430033, 0.0], [-68.03135607150841, 46.62219159429975, 0.0], [-68.03089087150914, 46.622579794299156, 0.0], [-68.03075740484269, 46.62296819429855, 0.0], [-68.03088987150915, 46.62315119429826, 0.0], [-68.03098847150898, 46.62363132763085, 0.0], [-68.03194807150749, 46.625049194295286, 0.0], [-68.03241160484009, 46.62568959429433, 0.0], [-68.0327758715062, 46.625987127627184, 0.0], [-68.03287507150606, 46.6261927942935, 0.0], [-68.03373640483807, 46.626947794292334, 0.0], [-68.03413360483745, 46.627542394291424, 0.0], [-68.03456287150345, 46.62870852762296, 0.0], [-68.03482727150305, 46.629257194288755, 0.0], [-68.03628547150078, 46.63028699428719, 0.0], [-68.03737947149904, 46.630836527619635, 0.0], [-68.03989847149518, 46.632552727616996, 0.0], [-68.04112407149324, 46.63392499428153, 0.0], [-68.04215040482501, 46.63543432761253, 0.0], [-68.04291247149047, 46.63614352761141, 0.0], [-68.04556440481969, 46.63795112760863, 0.0], [-68.04635980481845, 46.63872872760737, 0.0], [-68.04775040481633, 46.64090119427067, 0.0], [-68.0478826048161, 46.6412441276035, 0.0], [-68.0482468714822, 46.64176999426934, 0.0], [-68.0482136048156, 46.64186152760254, 0.0], [-68.04874360481477, 46.64257039426809, 0.0], [-68.04904107148099, 46.64332492760025, 0.0], [-68.04970380481325, 46.644102527599046, 0.0], [-68.05189200480987, 46.64565819426332, 0.0], [-68.05215707147613, 46.64597832759614, 0.0], [-68.05219007147605, 46.646161194262504, 0.0], [-68.05232267147585, 46.646229927595755, 0.0], [-68.05251907147556, 46.64830999425919, 0.0], [-68.05285000480836, 46.64906452759135, 0.0], [-68.05367900480712, 46.649613594257175, 0.0], [-68.05484007147197, 46.650094327589784, 0.0], [-68.05523800480466, 46.65036892758934, 0.0], [-68.05546987147096, 46.650711927588816, 0.0], [-68.0554692048043, 46.65121472758801, 0.0], [-68.0550036714717, 46.65187732758699, 0.0], [-68.05490367147183, 46.65219732758652, 0.0], [-68.05490280480518, 46.652860127585484, 0.0], [-68.05420447147293, 46.65375112758409, 0.0], [-68.05413707147306, 46.65445959424966, 0.0], [-68.05423667147289, 46.65455112758286, 0.0]], "type": "LineString"}, "id": "557", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/804155", "fl_name": "Knights Brook"}, "type": "Feature"}, {"bbox": [-69.72064460221964, 44.79777353046495, -69.70307306891357, 44.80123573045955], "geometry": {"coordinates": [[-69.72064460221964, 44.80114379712637, 0.0], [-69.72013080222041, 44.80123573045955, 0.0], [-69.71900646888884, 44.80103093045989, 0.0], [-69.71826706888999, 44.800574197127276, 0.0], [-69.71550326889428, 44.79936473046246, 0.0], [-69.71360686889722, 44.7982685971308, 0.0], [-69.71254660223218, 44.79794953046468, 0.0], [-69.70994740223625, 44.799277530462575, 0.0], [-69.70898406890439, 44.799369797129145, 0.0], [-69.70737780224022, 44.798867930463246, 0.0], [-69.70708846890733, 44.79868519713017, 0.0], [-69.70589986890917, 44.79832019713075, 0.0], [-69.70307306891357, 44.79777353046495, 0.0]], "type": "LineString"}, "id": "606", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/3320524", "fl_name": "Cold Brook"}, "type": "Feature"}, {"bbox": [-69.7477826021775, 44.78181533048968, -69.71902860222212, 44.80114379712637], "geometry": {"coordinates": [[-69.7477826021775, 44.786735730482064, 0.0], [-69.747236668845, 44.78666773048218, 0.0], [-69.74633620217975, 44.78598273048323, 0.0], [-69.74575780218066, 44.78573179715028, 0.0], [-69.74495486884854, 44.785641197150426, 0.0], [-69.7425466688523, 44.78557513048389, 0.0], [-69.74187166885338, 44.78518713048447, 0.0], [-69.74106766885461, 44.78447919715222, 0.0], [-69.73897846885785, 44.783315197154025, 0.0], [-69.737789602193, 44.78283619715478, 0.0], [-69.7370188688609, 44.782722797154975, 0.0], [-69.73541386886336, 44.78281573048815, 0.0], [-69.73457886886467, 44.782656530488396, 0.0], [-69.73271740220088, 44.78290979715467, 0.0], [-69.73188266886888, 44.78295639715458, 0.0], [-69.73133666886969, 44.782796797154845, 0.0], [-69.73046906887106, 44.78238613048882, 0.0], [-69.7299224688719, 44.78197513048946, 0.0], [-69.72950486887254, 44.78181533048968, 0.0], [-69.72838126887427, 44.78190779715624, 0.0], [-69.7270014022098, 44.78220633048909, 0.0], [-69.725365068879, 44.782779397154854, 0.0], [-69.72427406888067, 44.78303193048782, 0.0], [-69.72408166888096, 44.78319213048758, 0.0], [-69.72392186888123, 44.78358093048695, 0.0], [-69.7239234688812, 44.78456413048542, 0.0], [-69.72360320221503, 44.78502173048474, 0.0], [-69.72270526888309, 44.78561699715044, 0.0], [-69.72254566888336, 44.78616593048292, 0.0], [-69.72254646888337, 44.78660033048226, 0.0], [-69.72209800221736, 44.78724093048129, 0.0], [-69.72084726888596, 44.7881107971466, 0.0], [-69.72043100221998, 44.78870559714568, 0.0], [-69.72004686888721, 44.78946059714451, 0.0], [-69.72007986888718, 44.78998639714371, 0.0], [-69.72046626888658, 44.790626330476016, 0.0], [-69.72114160221884, 44.79128879714165, 0.0], [-69.72111046888557, 44.791860397140795, 0.0], [-69.72075800221944, 44.792295197140106, 0.0], [-69.71950746888808, 44.79330219713853, 0.0], [-69.71915566888862, 44.79412559713728, 0.0], [-69.71902860222212, 44.79499459713588, 0.0], [-69.71903040222213, 44.796069197134216, 0.0], [-69.71954540222134, 44.79684619713305, 0.0], [-69.7199002022208, 44.797806197131536, 0.0], [-69.7199680022207, 44.79993259712825, 0.0], [-69.72016126888707, 44.80029833046103, 0.0], [-69.72057966888639, 44.8008007971269, 0.0], [-69.72064460221964, 44.80114379712637, 0.0]], "type": "LineString"}, "id": "690", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/3320548", "fl_name": "Cold Brook"}, "type": "Feature"}, {"bbox": [-68.67120227051527, 44.877234330341594, -68.66801840385352, 44.87743919700796], "geometry": {"coordinates": [[-68.66801840385352, 44.87734893034144, 0.0], [-68.6687258038524, 44.877234330341594, 0.0], [-68.67055900384958, 44.877302197008134, 0.0], [-68.67120227051527, 44.87743919700796, 0.0]], "type": "LineString"}, "id": "775", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/1735764", "fl_name": null}, "type": "Feature"}, {"bbox": [-68.67448007051013, 44.874716797012184, -68.67120227051527, 44.87753673034115], "geometry": {"coordinates": [[-68.67120227051527, 44.87743919700796, 0.0], [-68.67128227051512, 44.877386997008045, 0.0], [-68.6713876038483, 44.877403530341326, 0.0], [-68.6714926705148, 44.87741999700796, 0.0], [-68.67159787051463, 44.8774365303413, 0.0], [-68.67170300384782, 44.877452930341235, 0.0], [-68.6718082705143, 44.87746939700787, 0.0], [-68.67191347051414, 44.87748593034121, 0.0], [-68.67201880384732, 44.877502397007845, 0.0], [-68.67212400384716, 44.877518930341125, 0.0], [-68.67222907051365, 44.87753533034112, 0.0], [-68.67223800384699, 44.87753673034115, 0.0], [-68.67232760384684, 44.877494330341165, 0.0], [-68.67241720384669, 44.87745193034124, 0.0], [-68.6725066705132, 44.87740953034131, 0.0], [-68.6725964705131, 44.87736713034138, 0.0], [-68.67268607051295, 44.8773247970081, 0.0], [-68.67277580384615, 44.87728239700817, 0.0], [-68.67286527051266, 44.877239997008246, 0.0], [-68.67295500384586, 44.87719759700832, 0.0], [-68.67304460384571, 44.87715519700839, 0.0], [-68.67313427051226, 44.877112797008465, 0.0], [-68.67322380384542, 44.87707039700854, 0.0], [-68.67331340384533, 44.877027997008554, 0.0], [-68.67339087051187, 44.876991397008624, 0.0], [-68.6734216705118, 44.87691819700876, 0.0], [-68.67345280384507, 44.87684513034219, 0.0], [-68.6734836705117, 44.87677199700897, 0.0], [-68.67351467051168, 44.87669879700911, 0.0], [-68.67354560384496, 44.87662573034254, 0.0], [-68.67357647051153, 44.87655253034262, 0.0], [-68.67360760384486, 44.876479397009405, 0.0], [-68.67363840384479, 44.876406197009544, 0.0], [-68.67366927051143, 44.87633313034297, 0.0], [-68.67370027051135, 44.87625993034311, 0.0], [-68.67373127051133, 44.87618679700989, 0.0], [-68.6737622038446, 44.876113597009976, 0.0], [-68.67379307051124, 44.87604053034346, 0.0], [-68.67382400384452, 44.87596733034354, 0.0], [-68.67385500384444, 44.875894197010325, 0.0], [-68.67388587051107, 44.875820997010464, 0.0], [-68.67391687051105, 44.87574793034389, 0.0], [-68.67394787051097, 44.87567473034403, 0.0], [-68.67397867051096, 44.875601597010814, 0.0], [-68.67400967051088, 44.87552853034424, 0.0], [-68.67404060384416, 44.87545533034438, 0.0], [-68.67407160384414, 44.875382197011106, 0.0], [-68.67410247051072, 44.875308997011246, 0.0], [-68.67413340384405, 44.87523593034467, 0.0], [-68.67416447051062, 44.87516273034481, 0.0], [-68.67419527051061, 44.875089597011595, 0.0], [-68.67422620384389, 44.87501639701168, 0.0], [-68.67425720384381, 44.87494333034516, 0.0], [-68.67428820384379, 44.87487013034524, 0.0], [-68.67440500384362, 44.874799130345366, 0.0], [-68.67448007051013, 44.874716797012184, 0.0]], "type": "LineString"}, "id": "804", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/1736822", "fl_name": null}, "type": "Feature"}, {"bbox": [-68.6746086038433, 44.87368779701376, -68.67448007051013, 44.874716797012184], "geometry": {"coordinates": [[-68.67448007051013, 44.874716797012184, 0.0], [-68.6746086038433, 44.87453393034576, 0.0], [-68.67460787050993, 44.87368779701376, 0.0]], "type": "LineString"}, "id": "832", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/1735770", "fl_name": null}, "type": "Feature"}, {"bbox": [-68.67460787050993, 44.869743397019874, -68.67211727051381, 44.87368779701376], "geometry": {"coordinates": [[-68.67460787050993, 44.87368779701376, 0.0], [-68.67455727051004, 44.87363413034717, 0.0], [-68.67451340384343, 44.87356439701398, 0.0], [-68.67446947051019, 44.87349459701409, 0.0], [-68.67442560384359, 44.87342493034748, 0.0], [-68.67438180384363, 44.87335519701429, 0.0], [-68.67433787051039, 44.8732853970144, 0.0], [-68.67429387051044, 44.87321573034785, 0.0], [-68.67425020384383, 44.87314593034796, 0.0], [-68.67420620384394, 44.87307619701471, 0.0], [-68.67416227051064, 44.873006530348164, 0.0], [-68.67411840384403, 44.87293673034827, 0.0], [-68.67407447051079, 44.872866997015024, 0.0], [-68.67403060384419, 44.87279719701513, 0.0], [-68.67403100384416, 44.87279579701516, 0.0], [-68.67404407051083, 44.87271999701528, 0.0], [-68.6740570705108, 44.872644197015404, 0.0], [-68.6740704038441, 44.87256839701553, 0.0], [-68.67408340384412, 44.87249273034894, 0.0], [-68.67409667051078, 44.87241693034906, 0.0], [-68.67410967051075, 44.872341130349184, 0.0], [-68.67412300384404, 44.87226533034931, 0.0], [-68.67413600384401, 44.87218953034943, 0.0], [-68.67414927051067, 44.872113730349554, 0.0], [-68.67416227051064, 44.87203793034968, 0.0], [-68.67412920384402, 44.871994530349696, 0.0], [-68.67407760384413, 44.87192739701652, 0.0], [-68.67402620384422, 44.87186033034993, 0.0], [-68.67397480384426, 44.871793330350044, 0.0], [-68.67392340384436, 44.87172619701681, 0.0], [-68.6738718705111, 44.871659130350224, 0.0], [-68.6738204705112, 44.87159199701699, 0.0], [-68.6737690038446, 44.87152493035046, 0.0], [-68.6737176038447, 44.87145779701723, 0.0], [-68.67366607051144, 44.87139073035064, 0.0], [-68.67361467051148, 44.87132359701741, 0.0], [-68.67356307051159, 44.87125653035088, 0.0], [-68.67354480384495, 44.871247397017555, 0.0], [-68.67345627051174, 44.87120373035094, 0.0], [-68.67336807051186, 44.871159997017685, 0.0], [-68.67327967051204, 44.87111633035107, 0.0], [-68.67319140384546, 44.871072597017815, 0.0], [-68.67310300384565, 44.8710289303512, 0.0], [-68.67307227051236, 44.87098879701796, 0.0], [-68.67302080384576, 44.87092173035137, 0.0], [-68.67296940384585, 44.87085459701814, 0.0], [-68.6729178705126, 44.870787530351606, 0.0], [-68.67286647051264, 44.870720397018374, 0.0], [-68.6728150038461, 44.870653330351786, 0.0], [-68.67276360384614, 44.870586197018554, 0.0], [-68.67271200384624, 44.87051913035202, 0.0], [-68.67266060384634, 44.87045199701879, 0.0], [-68.67260927051308, 44.8703849303522, 0.0], [-68.67255787051312, 44.87031779701897, 0.0], [-68.67250627051322, 44.87025079701908, 0.0], [-68.67245487051332, 44.87018373035255, 0.0], [-68.67240340384672, 44.87011659701932, 0.0], [-68.67235200384681, 44.87004953035273, 0.0], [-68.67230047051356, 44.8699823970195, 0.0], [-68.6722490705136, 44.86991533035297, 0.0], [-68.67219760384705, 44.869848197019735, 0.0], [-68.67214620384709, 44.86978113035315, 0.0], [-68.67211727051381, 44.869743397019874, 0.0]], "type": "LineString"}, "id": "859", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/1736826", "fl_name": null}, "type": "Feature"}, {"bbox": [-68.66801840385352, 44.87726419700823, -68.66791907052033, 44.87734893034144], "geometry": {"coordinates": [[-68.66791907052033, 44.87726419700823, 0.0], [-68.66794360385364, 44.87726639700821, 0.0], [-68.66801840385352, 44.87734893034144, 0.0]], "type": "LineString"}, "id": "885", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/1736816", "fl_name": null}, "type": "Feature"}, {"bbox": [-68.57707560399467, 45.62662792917837, -68.54731807070755, 45.655312595800524], "geometry": {"coordinates": [[-68.57707560399467, 45.655312595800524, 0.0], [-68.57629387066254, 45.65446639580182, 0.0], [-68.57453460399864, 45.65311692913724, 0.0], [-68.57443707066545, 45.65272812913787, 0.0], [-68.57430687066562, 45.65252232913821, 0.0], [-68.57420940399913, 45.65224799580528, 0.0], [-68.57404647066608, 45.652064995805574, 0.0], [-68.57404667066606, 45.65197352913901, 0.0], [-68.57394880399954, 45.65192772913912, 0.0], [-68.57394900399953, 45.65183632913926, 0.0], [-68.57375360399982, 45.65153899580639, 0.0], [-68.57277647066803, 45.650669795807744, 0.0], [-68.5712456040037, 45.64950319580953, 0.0], [-68.57049660400492, 45.648748395810685, 0.0], [-68.57049660400492, 45.64865692914418, 0.0], [-68.57036627067174, 45.64856539581098, 0.0], [-68.57030140400519, 45.64838252914461, 0.0], [-68.56978020400601, 45.64787919581204, 0.0], [-68.56909620400705, 45.64730739581296, 0.0], [-68.56665340401088, 45.645522995815725, 0.0], [-68.56590447067867, 45.64481392915013, 0.0], [-68.56525300401302, 45.64442499581742, 0.0], [-68.56355840401568, 45.64417259581779, 0.0], [-68.5626460040171, 45.643851995818295, 0.0], [-68.56192980401818, 45.64323452915261, 0.0], [-68.56186567068494, 45.642159929154275, 0.0], [-68.56180047068506, 45.642091195821024, 0.0], [-68.56180067068505, 45.642022595821174, 0.0], [-68.56105127068622, 45.641702195821665, 0.0], [-68.5608886040198, 45.64147352915535, 0.0], [-68.56075867068665, 45.64110752915593, 0.0], [-68.56059580402024, 45.64099319582277, 0.0], [-68.55994420402129, 45.64087852915628, 0.0], [-68.55981400402146, 45.64071839582317, 0.0], [-68.5597818040215, 45.64035259582374, 0.0], [-68.55984720402142, 45.64016972915738, 0.0], [-68.55975000402157, 45.63968952915809, 0.0], [-68.55955460402186, 45.639552329158334, 0.0], [-68.55945720402201, 45.63930079582536, 0.0], [-68.55922927068906, 45.63907199582576, 0.0], [-68.55854500402347, 45.63895732915927, 0.0], [-68.55782800402454, 45.63893399582594, 0.0], [-68.55733960402529, 45.63856799582652, 0.0], [-68.55678580402616, 45.63836192916017, 0.0], [-68.556036270694, 45.638292929160286, 0.0], [-68.55577580402775, 45.638155529160485, 0.0], [-68.5556784040279, 45.63783552916101, 0.0], [-68.55554820402807, 45.6376753958279, 0.0], [-68.5548312706959, 45.63753779582811, 0.0], [-68.55440800402988, 45.637285995828506, 0.0], [-68.55427787069675, 45.63705732916219, 0.0], [-68.55349627069796, 45.636576729162925, 0.0], [-68.55291000403219, 45.63639352916323, 0.0], [-68.55248620403285, 45.63637032916324, 0.0], [-68.55170387070075, 45.63657572916293, 0.0], [-68.55147600403444, 45.63641552916317, 0.0], [-68.55147620403443, 45.636232595830165, 0.0], [-68.55131367070135, 45.635912395830644, 0.0], [-68.55128167070137, 45.635455129164654, 0.0], [-68.55131440403466, 45.63534092916484, 0.0], [-68.55206407070017, 45.63527279583161, 0.0], [-68.55248787069951, 45.63511299583189, 0.0], [-68.55255360403277, 45.63474719583246, 0.0], [-68.55239100403298, 45.63454139583274, 0.0], [-68.55186967070046, 45.63442672916625, 0.0], [-68.5514138040345, 45.63417492916665, 0.0], [-68.55141407070118, 45.63390072916707, 0.0], [-68.55128420403469, 45.63358039583426, 0.0], [-68.55128460403472, 45.63323752916813, 0.0], [-68.55161080403423, 45.6329861958352, 0.0], [-68.55161127070085, 45.632689129168966, 0.0], [-68.55112307070164, 45.6322085958364, 0.0], [-68.55050387070258, 45.63216252916982, 0.0], [-68.5501782707031, 45.632047995836615, 0.0], [-68.54998280403674, 45.63186499583691, 0.0], [-68.54998360403675, 45.63129352917116, 0.0], [-68.54975587070373, 45.63101899583825, 0.0], [-68.54969107070383, 45.63074459583868, 0.0], [-68.54995227070344, 45.63037899583924, 0.0], [-68.55018080403642, 45.63003619583975, 0.0], [-68.55021467070304, 45.62912179584117, 0.0], [-68.55011687070322, 45.629075929174576, 0.0], [-68.54998727070341, 45.628572929175334, 0.0], [-68.54966200403726, 45.62822972917587, 0.0], [-68.54914147070468, 45.62752072917698, 0.0], [-68.54881607070519, 45.62720039584417, 0.0], [-68.54862080403888, 45.62710879584432, 0.0], [-68.54793640403989, 45.62708552917769, 0.0], [-68.54774107070688, 45.6270167291778, 0.0], [-68.5473830040408, 45.62676512917818, 0.0], [-68.54731807070755, 45.62662792917837, 0.0]], "type": "LineString"}, "id": "915", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/1713202", "fl_name": "Hathaway Brook"}, "type": "Feature"}, {"bbox": [-68.05004300481272, 46.68096106087518, -68.04838460481534, 46.685885194200864], "geometry": {"coordinates": [[-68.05004300481272, 46.685885194200864, 0.0], [-68.04838460481534, 46.68096106087518, 0.0]], "type": "LineString"}, "id": "1112", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/166195758", "fl_name": null}, "type": "Feature"}, {"bbox": [-69.79541806877023, 43.92831339848118, -69.79145866877639, 43.93606433180247], "geometry": {"coordinates": [[-69.7920900687754, 43.93606433180247, 0.0], [-69.7915530021096, 43.93542359847015, 0.0], [-69.79145866877639, 43.93498919847082, 0.0], [-69.79155466877626, 43.93416599847211, 0.0], [-69.79183980210911, 43.93389179847253, 0.0], [-69.7934220021067, 43.93384713180592, 0.0], [-69.79478346877124, 43.93325353180683, 0.0], [-69.79510046877073, 43.932773531807584, 0.0], [-69.79541806877023, 43.93192759847557, 0.0], [-69.79481846877115, 43.93066953181085, 0.0], [-69.7951992021039, 43.929937998478636, 0.0], [-69.79519966877058, 43.929549198479265, 0.0], [-69.79494686877098, 43.929274731812995, 0.0], [-69.79384000210604, 43.92886233181366, 0.0], [-69.7935240021065, 43.92856479848081, 0.0], [-69.79371406877289, 43.92831339848118, 0.0]], "type": "LineString"}, "id": "1159", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/5204854", "fl_name": "Back River Creek"}, "type": "Feature"}, {"bbox": [-69.91955126857755, 43.88906693187545, -69.9168064685818, 43.89942693185935], "geometry": {"coordinates": [[-69.91696520191488, 43.89942693185935, 0.0], [-69.9168064685818, 43.89864953186054, 0.0], [-69.91718460191458, 43.89695713186319, 0.0], [-69.91772166858038, 43.89633953186416, 0.0], [-69.91791120191345, 43.89592779853143, 0.0], [-69.91791086858012, 43.89553899853206, 0.0], [-69.91778406858032, 43.89519613186593, 0.0], [-69.91797366858003, 43.89494459853296, 0.0], [-69.91835300191275, 43.894715731866654, 0.0], [-69.91825786857959, 43.89448713186704, 0.0], [-69.91876360191213, 43.89409813186762, 0.0], [-69.9187632019121, 43.893640731868345, 0.0], [-69.91857280191243, 43.89288619853619, 0.0], [-69.91860406857904, 43.89247459853681, 0.0], [-69.9191726019115, 43.891628198538115, 0.0], [-69.91955126857755, 43.8905989985397, 0.0], [-69.91945546857772, 43.88938699854157, 0.0], [-69.91926566857802, 43.889204198541904, 0.0], [-69.91932880191126, 43.88906693187545, 0.0]], "type": "LineString"}, "id": "1247", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/6719371", "fl_name": null}, "type": "Feature"}, {"bbox": [-69.90778306859585, 43.880839131888195, -69.90345900193586, 43.90679439851459], "geometry": {"coordinates": [[-69.9044772019343, 43.90679439851459, 0.0], [-69.90447700193431, 43.90642853184846, 0.0], [-69.90482466860044, 43.90601679851579, 0.0], [-69.9050458019334, 43.9054221985167, 0.0], [-69.90482360193374, 43.9040731985188, 0.0], [-69.90529700193304, 43.90228933185489, 0.0], [-69.9050430019334, 43.90052859852432, 0.0], [-69.90453666860088, 43.89986559852531, 0.0], [-69.90364986860226, 43.89757913186219, 0.0], [-69.90349106860248, 43.896458598530614, 0.0], [-69.90345900193586, 43.895338131865685, 0.0], [-69.90428046860126, 43.89410313186761, 0.0], [-69.90427986860124, 43.893188331869, 0.0], [-69.90465886860068, 43.89236499853695, 0.0], [-69.90443666860102, 43.89087873187259, 0.0], [-69.90453126860086, 43.89046699853992, 0.0], [-69.90478406860046, 43.89010113187379, 0.0], [-69.9050688019334, 43.88998673187399, 0.0], [-69.90589026859874, 43.88895733187559, 0.0], [-69.90633240193142, 43.88788253187727, 0.0], [-69.90648940193114, 43.88623593187981, 0.0], [-69.90680540193068, 43.88586993188039, 0.0], [-69.90674200193075, 43.88559559854747, 0.0], [-69.90702600193032, 43.88468093188226, 0.0], [-69.90721486859672, 43.88335439855098, 0.0], [-69.90765746859603, 43.8830113318848, 0.0], [-69.90756206859618, 43.882553931885525, 0.0], [-69.90778306859585, 43.88191359855318, 0.0], [-69.9077828685958, 43.88152479855381, 0.0], [-69.90737166859645, 43.88134199855409, 0.0], [-69.90680240193069, 43.880839131888195, 0.0]], "type": "LineString"}, "id": "1250", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/6719373", "fl_name": null}, "type": "Feature"}, {"bbox": [-69.91441660191884, 43.871437998569434, -69.90807460192872, 43.89622839853098], "geometry": {"coordinates": [[-69.90864566859449, 43.89622839853098, 0.0], [-69.90829726859505, 43.89547393186547, 0.0], [-69.90826526859507, 43.894673531866715, 0.0], [-69.90813846859527, 43.89414759853423, 0.0], [-69.90807460192872, 43.89325579853556, 0.0], [-69.90946426859324, 43.89044273187329, 0.0], [-69.90911600192709, 43.88961959854123, 0.0], [-69.90927366859353, 43.8891393318753, 0.0], [-69.91009526859222, 43.88852153187628, 0.0], [-69.91041100192507, 43.88762973187767, 0.0], [-69.91018860192543, 43.88600613188015, 0.0], [-69.91034606859182, 43.88499979854839, 0.0], [-69.91151440192334, 43.88273573188525, 0.0], [-69.91186120192282, 43.88140919855397, 0.0], [-69.91189206858945, 43.880219998555845, 0.0], [-69.91211286858908, 43.879533931890194, 0.0], [-69.91245900192189, 43.87699553189418, 0.0], [-69.91309006858756, 43.87539459856333, 0.0], [-69.91334286858716, 43.87507433189717, 0.0], [-69.91365860192002, 43.87473119856435, 0.0], [-69.91356346858686, 43.87438819856487, 0.0], [-69.91359500192016, 43.8741367318986, 0.0], [-69.91441660191884, 43.87374759856584, 0.0], [-69.91435320191897, 43.87354179856618, 0.0], [-69.91372086858661, 43.8732905318999, 0.0], [-69.91384626858644, 43.8718727319021, 0.0], [-69.91397260191957, 43.87155239856929, 0.0], [-69.914320201919, 43.871437998569434, 0.0]], "type": "LineString"}, "id": "1252", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/6719393", "fl_name": null}, "type": "Feature"}, {"bbox": [-68.01175320487215, 46.8594411939315, -68.00895427154319, 46.859876527264134], "geometry": {"coordinates": [[-68.00895427154319, 46.8594411939315, 0.0], [-68.0099862048749, 46.859876527264134, 0.0], [-68.0107860048737, 46.85983159393089, 0.0], [-68.01168627153896, 46.859535327264666, 0.0], [-68.01175320487215, 46.85946692726475, 0.0]], "type": "LineString"}, "id": "1253", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/803601", "fl_name": null}, "type": "Feature"}, {"bbox": [-68.01175320487215, 46.85639519393618, -68.0030302048857, 46.85946692726475], "geometry": {"coordinates": [[-68.01175320487215, 46.85946692726475, 0.0], [-68.01135420487282, 46.859009393932126, 0.0], [-68.00985680487514, 46.85811652726687, 0.0], [-68.006493471547, 46.85722152726828, 0.0], [-68.00509447154917, 46.85701439393523, 0.0], [-68.0030302048857, 46.85639519393618, 0.0]], "type": "LineString"}, "id": "1282", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/803613", "fl_name": "Caribou Stream"}, "type": "Feature"}, {"bbox": [-68.01378767153568, 46.8584861272663, -68.01175320487215, 46.85946692726475], "geometry": {"coordinates": [[-68.01378767153568, 46.8584861272663, 0.0], [-68.01291987153701, 46.859193793931865, 0.0], [-68.01245300487108, 46.85937612726491, 0.0], [-68.01175320487215, 46.85946692726475, 0.0]], "type": "LineString"}, "id": "1310", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/803603", "fl_name": "Caribou Stream"}, "type": "Feature"}, {"bbox": [-70.7569374006111, 43.08328159979283, -70.75058626728764, 43.08464239979071], "geometry": {"coordinates": [[-70.7569374006111, 43.08464239979071, 0.0], [-70.75387426728253, 43.08376933312542, 0.0], [-70.7526650672844, 43.08328159979283, 0.0], [-70.75058626728764, 43.08333039979277, 0.0]], "type": "LineString"}, "id": "1339", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/5846422", "fl_name": "Piscataqua River"}, "type": "Feature"}, {"bbox": [-70.31642960129483, 43.66947299888295, -70.2983680013229, 43.68606919885718], "geometry": {"coordinates": [[-70.2983680013229, 43.68606919885718, 0.0], [-70.29969180132082, 43.68577273219097, 0.0], [-70.3003534679865, 43.685750198857704, 0.0], [-70.30095220131886, 43.685842132190885, 0.0], [-70.30173980131764, 43.68595693219066, 0.0], [-70.30290600131582, 43.68561453219121, 0.0], [-70.30350440131491, 43.68584353219086, 0.0], [-70.30410320131398, 43.685775332190985, 0.0], [-70.30545866797854, 43.68531873219166, 0.0], [-70.30706586797606, 43.6851595321919, 0.0], [-70.30908220130624, 43.68550359885808, 0.0], [-70.30983820130507, 43.685801198857575, 0.0], [-70.3104054013042, 43.685778732190954, 0.0], [-70.31119300130297, 43.68598493219065, 0.0], [-70.31198080130179, 43.685985332190626, 0.0], [-70.31286320130039, 43.6858713988575, 0.0], [-70.31399786796527, 43.68541459885819, 0.0], [-70.31440806796468, 43.684774532192534, 0.0], [-70.314408601298, 43.6843171988599, 0.0], [-70.31447186796458, 43.68385993219397, 0.0], [-70.31491360129723, 43.68324273219491, 0.0], [-70.3149772012971, 43.682671132195765, 0.0], [-70.31519786796343, 43.682511132196055, 0.0], [-70.31516680129681, 43.68212233219663, 0.0], [-70.31526146796335, 43.68196233219692, 0.0], [-70.31532506796322, 43.68120773219806, 0.0], [-70.31545166796303, 43.680681932198866, 0.0], [-70.3157986679625, 43.68020179886628, 0.0], [-70.31608280129541, 43.67963019886719, 0.0], [-70.31642960129483, 43.6792645322011, 0.0], [-70.31620940129523, 43.67894433220158, 0.0], [-70.31567400129603, 43.678646798868726, 0.0], [-70.31554840129621, 43.67816659886944, 0.0], [-70.31403686796523, 43.67720539887097, 0.0], [-70.31277740130054, 43.67647313220539, 0.0], [-70.31208480130158, 43.67599253220618, 0.0], [-70.31158140130236, 43.67516913220743, 0.0], [-70.31114100130304, 43.6745515322084, 0.0], [-70.31073220130372, 43.67375093220966, 0.0], [-70.31070126797039, 43.67315639887721, 0.0], [-70.31082800130355, 43.672493332211616, 0.0], [-70.31019860130453, 43.671783998879334, 0.0], [-70.30982126797176, 43.67107499888044, 0.0], [-70.30922286797272, 43.67096039888065, 0.0], [-70.30849880130717, 43.67038839888153, 0.0], [-70.30831020130745, 43.67002233221541, 0.0], [-70.30793260130804, 43.66963353221604, 0.0], [-70.30739706797556, 43.66947299888295, 0.0]], "type": "LineString"}, "id": "1340", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/6721495", "fl_name": null}, "type": "Feature"}, {"bbox": [-67.86734960509631, 46.96353999376987, -67.84817627179274, 46.98177499374157], "geometry": {"coordinates": [[-67.84817627179274, 46.98177499374157, 0.0], [-67.84817660512607, 46.98127219374237, 0.0], [-67.84864500512538, 46.980060993744246, 0.0], [-67.84927980512435, 46.97939839374527, 0.0], [-67.85188507178697, 46.97825619374703, 0.0], [-67.85362220511763, 46.97697679374903, 0.0], [-67.85408980511687, 46.97683972708256, 0.0], [-67.85642740511327, 46.97677159374933, 0.0], [-67.85736240511181, 46.97652032708305, 0.0], [-67.85886520510951, 46.97599499375053, 0.0], [-67.8593662051087, 46.975674993751056, 0.0], [-67.86103640510612, 46.97384699375391, 0.0], [-67.86167147177179, 46.97169859375725, 0.0], [-67.86354240510224, 46.96877339376175, 0.0], [-67.86451100510072, 46.96705939376443, 0.0], [-67.86734960509631, 46.96353999376987, 0.0]], "type": "LineString"}, "id": "1354", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/803057", "fl_name": "Willard Brook"}, "type": "Feature"}, {"bbox": [-67.8795016717441, 46.96353999376987, -67.86734960509631, 46.973116793755025], "geometry": {"coordinates": [[-67.8795016717441, 46.973116793755025, 0.0], [-67.8794682717442, 46.97293392708866, 0.0], [-67.8784998717457, 46.97163112709069, 0.0], [-67.87823287174609, 46.969871327093415, 0.0], [-67.87679727174833, 46.96813439376274, 0.0], [-67.87639667174892, 46.967837193763216, 0.0], [-67.87546180508372, 46.96735732709732, 0.0], [-67.87446027175196, 46.966808593764824, 0.0], [-67.87415980508575, 46.96669439376501, 0.0], [-67.87375927175304, 46.966671527098356, 0.0], [-67.8722566717554, 46.96696859376459, 0.0], [-67.87195620508919, 46.966991393764545, 0.0], [-67.87145540508993, 46.96667132709837, 0.0], [-67.87115507175707, 46.96609999376591, 0.0], [-67.87068760509112, 46.96577999376643, 0.0], [-67.87048740509147, 46.96529999376719, 0.0], [-67.8696528717594, 46.96484292710119, 0.0], [-67.86838447176137, 46.96386012710275, 0.0], [-67.86795047176207, 46.96367719376968, 0.0], [-67.86734960509631, 46.96353999376987, 0.0]], "type": "LineString"}, "id": "1371", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/803055", "fl_name": "Butterfield Brook"}, "type": "Feature"}, {"bbox": [-67.86734960509631, 46.95958559377601, -67.8637452051019, 46.96353999376987], "geometry": {"coordinates": [[-67.86734960509631, 46.96353999376987, 0.0], [-67.8662146050981, 46.96335699377016, 0.0], [-67.86601440509838, 46.962854193770966, 0.0], [-67.86638187176447, 46.961962927105674, 0.0], [-67.86628180509797, 46.961322927106664, 0.0], [-67.86534747176609, 46.96029432710827, 0.0], [-67.86424587176782, 46.95974572710912, 0.0], [-67.8637452051019, 46.95958559377601, 0.0]], "type": "LineString"}, "id": "1388", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/802841", "fl_name": "Butterfield Brook"}, "type": "Feature"}, {"bbox": [-70.32622906794631, 43.633509798938746, -70.32050020128855, 43.634998532269776], "geometry": {"coordinates": [[-70.32622906794631, 43.634998532269776, 0.0], [-70.3261662679464, 43.63481553227007, 0.0], [-70.32594606794675, 43.6345181989372, 0.0], [-70.32563146794723, 43.634243598937644, 0.0], [-70.32380566795007, 43.633922932271446, 0.0], [-70.32320726795098, 43.634242732270934, 0.0], [-70.32235706795234, 43.63428813227091, 0.0], [-70.3212234012874, 43.63451633227055, 0.0], [-70.32078300128808, 43.634104398937836, 0.0], [-70.32050020128855, 43.633509798938746, 0.0]], "type": "LineString"}, "id": "1407", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/6721589", "fl_name": "Long Creek"}, "type": "Feature"}, {"bbox": [-70.76000360060635, 43.11988473306934, -70.73630880064314, 43.13865893304023], "geometry": {"coordinates": [[-70.76000360060635, 43.137223133042426, 0.0], [-70.75934746727404, 43.13738259970887, 0.0], [-70.75831640060898, 43.1378161997082, 0.0], [-70.7575660006101, 43.13829559970742, 0.0], [-70.75662886727827, 43.13854633304038, 0.0], [-70.75494246728084, 43.13865893304023, 0.0], [-70.7545368006148, 43.1385441330404, 0.0], [-70.75419406728201, 43.138109333041086, 0.0], [-70.75375740061605, 43.13788033304144, 0.0], [-70.75313300061703, 43.13781113304151, 0.0], [-70.75225880061834, 43.13781019970821, 0.0], [-70.75175940061916, 43.13771813304169, 0.0], [-70.75088600062048, 43.13723713304239, 0.0], [-70.7501366672883, 43.137190533042485, 0.0], [-70.74994946728862, 43.13712173304259, 0.0], [-70.7495176672893, 43.13706673304267, 0.0], [-70.74848780062422, 43.13729653304233, 0.0], [-70.74823786729127, 43.13725113304241, 0.0], [-70.747987400625, 43.13695413304288, 0.0], [-70.74798726729165, 43.13686259970967, 0.0], [-70.74742320062586, 43.13585713304457, 0.0], [-70.74742300062587, 43.13574279971141, 0.0], [-70.7471410006263, 43.13530859971206, 0.0], [-70.74692140062666, 43.13478293304621, 0.0], [-70.74688900062671, 43.13416559971387, 0.0], [-70.74673226729362, 43.133891333047586, 0.0], [-70.74670006729366, 43.13345693304831, 0.0], [-70.74679340062687, 43.13331959971515, 0.0], [-70.74729206729273, 43.1328387997159, 0.0], [-70.7476972672921, 43.132609733049605, 0.0], [-70.74825846729124, 43.13222039971686, 0.0], [-70.74875726729044, 43.13180819971751, 0.0], [-70.74950466728933, 43.13096133305214, 0.0], [-70.75008666728837, 43.13078793305243, 0.0], [-70.75068120062082, 43.13007973305355, 0.0], [-70.75074520062071, 43.129347933054646, 0.0], [-70.75065180062086, 43.12921073305489, 0.0], [-70.75062166728759, 43.12852473305594, 0.0], [-70.7499678672886, 43.12763213305732, 0.0], [-70.74984446728877, 43.126877399725174, 0.0], [-70.74949560062265, 43.126639533058835, 0.0], [-70.74924546728971, 43.12643393305916, 0.0], [-70.74896226729015, 43.12538239972747, 0.0], [-70.74883720062365, 43.125291133060955, 0.0], [-70.7484310006243, 43.12508573306127, 0.0], [-70.74771186729208, 43.12456073306208, 0.0], [-70.74702386729314, 43.123989733062956, 0.0], [-70.74667986729366, 43.12373859973002, 0.0], [-70.74652366729396, 43.12367019973016, 0.0], [-70.7462422006277, 43.12337319973062, 0.0], [-70.7461164006279, 43.12293893306463, 0.0], [-70.74583506729499, 43.122756199731555, 0.0], [-70.74396066729793, 43.1220951997326, 0.0], [-70.74308646729929, 43.12200459973275, 0.0], [-70.74264866729993, 43.12163933306664, 0.0], [-70.74218046730067, 43.121662733066614, 0.0], [-70.74180620063458, 43.121777399733105, 0.0], [-70.74121306730217, 43.12177799973307, 0.0], [-70.74083806730278, 43.12157259973338, 0.0], [-70.74027620063697, 43.121573199733405, 0.0], [-70.74002626730402, 43.12145913306688, 0.0], [-70.73983786730429, 43.12093339973438, 0.0], [-70.73965040063791, 43.12081919973457, 0.0], [-70.73874520063936, 43.12088879973447, 0.0], [-70.73796460064057, 43.12075239973467, 0.0], [-70.73765200064105, 43.12050113306839, 0.0], [-70.73749506730792, 43.12011259973565, 0.0], [-70.73724506730832, 43.11992993306927, 0.0], [-70.73680800064233, 43.11988473306934, 0.0], [-70.73630880064314, 43.119999533069176, 0.0]], "type": "LineString"}, "id": "1409", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/5845554", "fl_name": "Spruce Creek"}, "type": "Feature"}, {"bbox": [-70.73632346730977, 43.10574853309129, -70.72897700065448, 43.119999533069176], "geometry": {"coordinates": [[-70.73630880064314, 43.119999533069176, 0.0], [-70.73617640064333, 43.1199617330692, 0.0], [-70.73579400064392, 43.11956559973652, 0.0], [-70.73582380064386, 43.11853219973813, 0.0], [-70.73632346730977, 43.1172017997402, 0.0], [-70.73489700064533, 43.115751133075776, 0.0], [-70.73333340064772, 43.11323399974634, 0.0], [-70.7320134006498, 43.11245379974753, 0.0], [-70.72963066732012, 43.109255333085855, 0.0], [-70.72931200065398, 43.108672733086735, 0.0], [-70.72982666731986, 43.106825733089636, 0.0], [-70.72897700065448, 43.10574853309129, 0.0]], "type": "LineString"}, "id": "1414", "properties": {"__folium_color": "navy", "fl": "https://geoconnex.us/nhdplusv2/comid/5845984", "fl_name": "Spruce Creek"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_847747335874e26c0e7bf4816e8b25c1.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["fl", "fl_name"];
let aliases = ["fl", "fl_name"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
geo_json_847747335874e26c0e7bf4816e8b25c1.addTo(map_065b1d422d5592f6b50181ac87f1dc76);
function geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a_styler(feature) {
switch(feature.id) {
default:
return {"color": "blue", "fillColor": "blue", "fillOpacity": 0.5, "weight": 5};
}
}
function geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a_pointToLayer(feature, latlng) {
var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};
let style = geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a_styler(feature)
Object.assign(opts, style)
return new L.CircleMarker(latlng, opts)
}
function geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a = L.geoJson(null, {
onEachFeature: geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a_onEachFeature,
style: geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a_styler,
pointToLayer: geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a_pointToLayer,
});
function geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a_add (data) {
geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a
.addData(data);
}
geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a_add({"bbox": [-70.76000360060635, 43.08169493312863, -67.71853807199398, 46.98177499374157], "features": [{"bbox": [-69.80093840209503, 43.80085533201236, -69.78827760211465, 43.812612598660735], "geometry": {"coordinates": [[-69.80093840209503, 43.812612598660735, 0.0], [-69.79753606876693, 43.810684331997095, 0.0], [-69.79378006877278, 43.80822359866755, 0.0], [-69.78827760211465, 43.80085533201236, 0.0]], "type": "LineString"}, "id": "0", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205268", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.80516946875508, 43.812612598660735, -69.80093840209503, 43.822012931979486], "geometry": {"coordinates": [[-69.80507640208856, 43.822012931979486, 0.0], [-69.8050976687552, 43.82050673198182, 0.0], [-69.80516946875508, 43.816201798655186, 0.0], [-69.80451546875611, 43.814770531990746, 0.0], [-69.80093840209503, 43.812612598660735, 0.0]], "type": "LineString"}, "id": "1", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205270", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.78827760211465, 43.78108553204305, -69.78662100211722, 43.80085533201236], "geometry": {"coordinates": [[-69.78827760211465, 43.80085533201236, 0.0], [-69.78807460211499, 43.79152559869351, 0.0], [-69.78771340211551, 43.78587933203556, 0.0], [-69.78682880211693, 43.78156193204228, 0.0], [-69.78662100211722, 43.78108553204305, 0.0]], "type": "LineString"}, "id": "2", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205318", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.8053064020882, 43.822012931979486, -69.80507640208856, 43.823930331976555], "geometry": {"coordinates": [[-69.8053064020882, 43.823930331976555, 0.0], [-69.80507640208856, 43.822012931979486, 0.0]], "type": "LineString"}, "id": "3", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205272", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.79684340210133, 43.848928131937726, -69.79301140210731, 43.87734839856029], "geometry": {"coordinates": [[-69.79544400210352, 43.87734839856029, 0.0], [-69.79598480210268, 43.8742397985651, 0.0], [-69.79684340210133, 43.87153539856928, 0.0], [-69.796206668769, 43.86981793190529, 0.0], [-69.79473660210465, 43.867583598575436, 0.0], [-69.79441500210515, 43.864540398580175, 0.0], [-69.79520920210388, 43.859192598588436, 0.0], [-69.79624380210231, 43.854638198595524, 0.0], [-69.7958764687695, 43.851535998600355, 0.0], [-69.79301140210731, 43.848928131937726, 0.0]], "type": "LineString"}, "id": "4", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205286", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.8053064020882, 43.823930331976555, -69.79301140210731, 43.848928131937726], "geometry": {"coordinates": [[-69.79301140210731, 43.848928131937726, 0.0], [-69.7930888021072, 43.84883413193785, 0.0], [-69.79504046877082, 43.8436469319459, 0.0], [-69.79597160210272, 43.84057899861733, 0.0], [-69.7999610687632, 43.830687731966066, 0.0], [-69.80189080209351, 43.82649339863923, 0.0], [-69.8053064020882, 43.823930331976555, 0.0]], "type": "LineString"}, "id": "5", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205276", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.81243166874384, 43.90742293184695, -69.80753246875145, 43.94783193178421], "geometry": {"coordinates": [[-69.81243166874384, 43.94783193178421, 0.0], [-69.81011086874742, 43.94367339845735, 0.0], [-69.80965466874812, 43.93619819846896, 0.0], [-69.80784320208426, 43.93005573181182, 0.0], [-69.80753246875145, 43.92326513182235, 0.0], [-69.808673402083, 43.917423998498066, 0.0], [-69.8083835354168, 43.90742293184695, 0.0]], "type": "LineString"}, "id": "6", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205308", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.82019240206512, 43.94783193178421, -69.81243166874384, 43.95305193177609], "geometry": {"coordinates": [[-69.82019240206512, 43.95305193177609, 0.0], [-69.81872660206739, 43.952682598443346, 0.0], [-69.81727306873631, 43.95202693177771, 0.0], [-69.81597680207165, 43.95071699844641, 0.0], [-69.8148662020734, 43.94919199844878, 0.0], [-69.81243166874384, 43.94783193178421, 0.0]], "type": "LineString"}, "id": "7", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205302", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.83421320204337, 43.95305193177609, -69.82019240206512, 43.978239131736984], "geometry": {"coordinates": [[-69.82522246872395, 43.978239131736984, 0.0], [-69.82820226871934, 43.97182559841366, 0.0], [-69.83033020204937, 43.967959998419644, 0.0], [-69.83255120204592, 43.96411319842559, 0.0], [-69.83398340204371, 43.96111773176358, 0.0], [-69.83421320204337, 43.95874519843392, 0.0], [-69.83348306871113, 43.957658598435614, 0.0], [-69.83173540204717, 43.95672693177039, 0.0], [-69.82821360205264, 43.954930198439854, 0.0], [-69.82019240206512, 43.95305193177609, 0.0]], "type": "LineString"}, "id": "8", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205304", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.78741006878266, 43.75631873208147, -69.78357846878862, 43.78108553204305], "geometry": {"coordinates": [[-69.78662100211722, 43.78108553204305, 0.0], [-69.784606268787, 43.77646573205021, 0.0], [-69.78357846878862, 43.771021532058626, 0.0], [-69.78487586878657, 43.76444619873553, 0.0], [-69.78741006878266, 43.75631873208147, 0.0]], "type": "LineString"}, "id": "9", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205320", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.81145880207868, 43.881245598554244, -69.8083835354168, 43.90742293184695], "geometry": {"coordinates": [[-69.8083835354168, 43.90742293184695, 0.0], [-69.81001220208094, 43.89545073186554, 0.0], [-69.81145880207868, 43.881245598554244, 0.0]], "type": "LineString"}, "id": "10", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205294", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.81145880207868, 43.87734839856029, -69.79544400210352, 43.881245598554244], "geometry": {"coordinates": [[-69.81145880207868, 43.881245598554244, 0.0], [-69.80763700208462, 43.88079299855491, 0.0], [-69.80481966875567, 43.88032879855564, 0.0], [-69.80219566875974, 43.88026259855576, 0.0], [-69.79940466876405, 43.87973179855658, 0.0], [-69.79659100210176, 43.87837093189205, 0.0], [-69.79544400210352, 43.87734839856029, 0.0]], "type": "LineString"}, "id": "11", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205290", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.23724300141777, 44.07118959825942, -70.23720926808448, 44.07219559825785], "geometry": {"coordinates": [[-70.23720926808448, 44.07118959825942, 0.0], [-70.23724300141777, 44.07219559825785, 0.0]], "type": "LineString"}, "id": "12", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712109", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.23752720141732, 44.07219559825785, -70.23724300141777, 44.072840598256846], "geometry": {"coordinates": [[-70.23724300141777, 44.07219559825785, 0.0], [-70.23735140141758, 44.07238673159088, 0.0], [-70.23752720141732, 44.072840598256846, 0.0]], "type": "LineString"}, "id": "13", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712807", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.22164580144198, 44.0358133983143, -70.18512460149867, 44.089358731564516], "geometry": {"coordinates": [[-70.22164580144198, 44.089358731564516, 0.0], [-70.21988080144473, 44.08874659823215, 0.0], [-70.21197760145697, 44.083784331573156, 0.0], [-70.2077840014635, 44.078647998247845, 0.0], [-70.20687446813156, 44.07677253158408, 0.0], [-70.20790886812995, 44.0741113315882, 0.0], [-70.20813660146297, 44.07024673159418, 0.0], [-70.20721846813103, 44.067457198265174, 0.0], [-70.2075388014639, 44.0656963982679, 0.0], [-70.207239068131, 44.06459413160297, 0.0], [-70.20609480146612, 44.063323531604965, 0.0], [-70.20268840147139, 44.06225359827329, 0.0], [-70.20164700147302, 44.06165513160755, 0.0], [-70.20088766814087, 44.060330798276254, 0.0], [-70.20033566814175, 44.058005131613186, 0.0], [-70.19864826814432, 44.055322931617354, 0.0], [-70.19561000148241, 44.0523711982886, 0.0], [-70.19292886815322, 44.048969331627234, 0.0], [-70.18839886816028, 44.04611099829833, 0.0], [-70.18705866816231, 44.04440999830098, 0.0], [-70.18625500149693, 44.040861131639815, 0.0], [-70.18559040149796, 44.039294931642246, 0.0], [-70.18562886816454, 44.038259931643836, 0.0], [-70.18512460149867, 44.0358133983143, 0.0]], "type": "LineString"}, "id": "14", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712623", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.22281866810681, 44.08900659823172, -70.22164580144198, 44.089358731564516], "geometry": {"coordinates": [[-70.22281866810681, 44.08900659823172, 0.0], [-70.22164580144198, 44.089358731564516, 0.0]], "type": "LineString"}, "id": "15", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712605", "fl_ds_name": "Little Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.27988660135156, 44.059298531611205, -70.23933006808119, 44.070145798261024], "geometry": {"coordinates": [[-70.27988660135156, 44.059921131610224, 0.0], [-70.27839540135392, 44.06037779827619, 0.0], [-70.2782546680208, 44.06074073160897, 0.0], [-70.27875280135333, 44.062272998273215, 0.0], [-70.27851840135372, 44.06287793160561, 0.0], [-70.27787080135471, 44.06314019827187, 0.0], [-70.27582466802454, 44.063254798271714, 0.0], [-70.2739288680275, 44.063920531604026, 0.0], [-70.27076546803238, 44.06316159827185, 0.0], [-70.26939520136784, 44.0634105316048, 0.0], [-70.26816560136979, 44.06329639827163, 0.0], [-70.26691726803836, 44.063699798271045, 0.0], [-70.26590360137328, 44.06349833160465, 0.0], [-70.26525600137427, 44.063760398270915, 0.0], [-70.26457100137537, 44.065057731602224, 0.0], [-70.26370760137667, 44.06540719826836, 0.0], [-70.26161440137992, 44.065642731601315, 0.0], [-70.26103240138082, 44.06526633160195, 0.0], [-70.26109800138073, 44.06462779826961, 0.0], [-70.26004620138235, 44.06077013160893, 0.0], [-70.25931400138353, 44.05984273161033, 0.0], [-70.25461166805746, 44.059298531611205, 0.0], [-70.25290360139348, 44.059479998277595, 0.0], [-70.25105460139633, 44.06002439827671, 0.0], [-70.24864246806675, 44.05967493161063, 0.0], [-70.24821066806743, 44.059849598277026, 0.0], [-70.24792906806783, 44.06057553160923, 0.0], [-70.2482952014006, 44.06103919827518, 0.0], [-70.24998460139801, 44.06137533160796, 0.0], [-70.25001280139793, 44.06177179827404, 0.0], [-70.24616446807056, 44.06230939827316, 0.0], [-70.2455168014049, 44.062571531606125, 0.0], [-70.24454986807308, 44.06459439826966, 0.0], [-70.24255980140953, 44.06550173160156, 0.0], [-70.24244706807633, 44.066261131600356, 0.0], [-70.24335740140828, 44.068136331597486, 0.0], [-70.24317886807523, 44.06953433159532, 0.0], [-70.2416674680776, 44.070145798261024, 0.0], [-70.2397618680805, 44.06989699826141, 0.0], [-70.23933006808119, 44.07007173159445, 0.0]], "type": "LineString"}, "id": "16", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712619", "fl_ds_name": "Little Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.23933006808119, 44.07007173159445, -70.23720926808448, 44.07118959825942], "geometry": {"coordinates": [[-70.23933006808119, 44.07007173159445, 0.0], [-70.23847226808255, 44.07038759826065, 0.0], [-70.23796120141668, 44.07054233159374, 0.0], [-70.23745500141746, 44.070821398259966, 0.0], [-70.23720926808448, 44.07118959825942, 0.0]], "type": "LineString"}, "id": "17", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712805", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.23933006808119, 44.07007173159445, -70.23752720141732, 44.072840598256846], "geometry": {"coordinates": [[-70.23933006808119, 44.07007173159445, 0.0], [-70.23901060141503, 44.071832598258425, 0.0], [-70.23771506808373, 44.0723567315909, 0.0], [-70.23752720141732, 44.072840598256846, 0.0]], "type": "LineString"}, "id": "18", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6716033", "fl_ds_name": "Little Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.18521860149855, 44.018275798341506, -70.16647540152763, 44.0358133983143], "geometry": {"coordinates": [[-70.18512460149867, 44.0358133983143, 0.0], [-70.18521860149855, 44.03557153164803, 0.0], [-70.18423560150006, 44.033420398318015, 0.0], [-70.1815558015042, 44.03001839832331, 0.0], [-70.1805644681724, 44.02695339832809, 0.0], [-70.17791286817652, 44.023947931666044, 0.0], [-70.17633806817895, 44.022851598334455, 0.0], [-70.1745004681818, 44.021963531669144, 0.0], [-70.17083380152087, 44.02110113167049, 0.0], [-70.1683210681914, 44.02007799833876, 0.0], [-70.16720586819315, 44.01920373167343, 0.0], [-70.16647540152763, 44.018275798341506, 0.0]], "type": "LineString"}, "id": "19", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712639", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.09619686830337, 44.00721859835869, -70.08702046831763, 44.00994693168781], "geometry": {"coordinates": [[-70.09619686830337, 44.00721859835869, 0.0], [-70.09430900163966, 44.00879513168957, 0.0], [-70.09193386830998, 44.00975319835476, 0.0], [-70.09094866831151, 44.00994693168781, 0.0], [-70.08702046831763, 44.00929033168882, 0.0]], "type": "LineString"}, "id": "20", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712631", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.08702046831763, 44.000090398369764, -70.08149960165952, 44.00929033168882], "geometry": {"coordinates": [[-70.08702046831763, 44.00929033168882, 0.0], [-70.08556906831984, 44.00834759835692, 0.0], [-70.08435366832174, 44.00680039835936, 0.0], [-70.08383320165586, 44.004871131695666, 0.0], [-70.082469201658, 44.00277273169894, 0.0], [-70.0823606016582, 44.001186598368065, 0.0], [-70.08149960165952, 44.000090398369764, 0.0]], "type": "LineString"}, "id": "21", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712641", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.09667266830263, 44.00664133169295, -70.09619686830337, 44.00721859835869], "geometry": {"coordinates": [[-70.09667266830263, 44.00664133169295, 0.0], [-70.09619686830337, 44.00721859835869, 0.0]], "type": "LineString"}, "id": "22", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712633", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.16647540152763, 44.01318853168277, -70.16645360152762, 44.018275798341506], "geometry": {"coordinates": [[-70.16647540152763, 44.018275798341506, 0.0], [-70.16645360152762, 44.01318853168277, 0.0]], "type": "LineString"}, "id": "23", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712645", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.09986886829768, 44.000086131703085, -70.09667266830263, 44.00664133169295], "geometry": {"coordinates": [[-70.09986886829768, 44.000086131703085, 0.0], [-70.09758006830123, 44.00553959836128, 0.0], [-70.09667266830263, 44.00664133169295, 0.0]], "type": "LineString"}, "id": "24", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712643", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.16654766819414, 44.004638331696015, -70.15670846820944, 44.01318853168277], "geometry": {"coordinates": [[-70.16645360152762, 44.01318853168277, 0.0], [-70.16654766819414, 44.012946731683144, 0.0], [-70.16630420152791, 44.01263739835031, 0.0], [-70.16623240152796, 44.01001639835437, 0.0], [-70.16506220152979, 44.008349131690295, 0.0], [-70.16310340153285, 44.007306131691905, 0.0], [-70.15911946820569, 44.00585859836082, 0.0], [-70.15670846820944, 44.004638331696015, 0.0]], "type": "LineString"}, "id": "25", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6712649", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.23561126808698, 44.0777643982492, -70.22281866810681, 44.09017313156329], "geometry": {"coordinates": [[-70.23561126808698, 44.0777643982492, 0.0], [-70.23553520142042, 44.07782313158242, 0.0], [-70.23548380142051, 44.07787413158235, 0.0], [-70.23538406808734, 44.077967598248904, 0.0], [-70.2352616680875, 44.07809519824866, 0.0], [-70.23512760142103, 44.078220398248504, 0.0], [-70.23502886808785, 44.078338198248275, 0.0], [-70.2335824680901, 44.08065679824472, 0.0], [-70.23043626809499, 44.08407073157275, 0.0], [-70.22848180143137, 44.08863413156564, 0.0], [-70.22835000143158, 44.08991113156367, 0.0], [-70.22770200143259, 44.09017313156329, 0.0], [-70.22736386809976, 44.09010593156336, 0.0], [-70.22640680143456, 44.08835139823276, 0.0], [-70.2255618014359, 44.088183198233025, 0.0], [-70.22281866810681, 44.08900659823172, 0.0]], "type": "LineString"}, "id": "26", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6716131", "fl_ds_name": "Little Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.23785546808347, 44.072840598256846, -70.23561126808698, 44.0777643982492], "geometry": {"coordinates": [[-70.23752720141732, 44.072840598256846, 0.0], [-70.23785546808347, 44.074339398254494, 0.0], [-70.23719800141782, 44.076033131585234, 0.0], [-70.23640926808571, 44.07665799825094, 0.0], [-70.23625160141933, 44.0770641982503, 0.0], [-70.23613126808618, 44.077193398250074, 0.0], [-70.23600286808636, 44.07730393158323, 0.0], [-70.23589926808654, 44.07742393158304, 0.0], [-70.23572966808678, 44.077566998249495, 0.0], [-70.23561126808698, 44.0777643982492, 0.0]], "type": "LineString"}, "id": "27", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6716035", "fl_ds_name": "Little Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.15670846820944, 44.0000849317031, -70.14752360155705, 44.004638331696015], "geometry": {"coordinates": [[-70.15670846820944, 44.004638331696015, 0.0], [-70.15273760154895, 44.00262833169916, 0.0], [-70.15160340155069, 44.00227133169972, 0.0], [-70.15015120155294, 44.00132939836783, 0.0], [-70.14768666822346, 44.00018513170295, 0.0], [-70.14752360155705, 44.0000849317031, 0.0]], "type": "LineString"}, "id": "28", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6716135", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.92627480190043, 43.91110893184123, -69.92269946857266, 43.912549131839], "geometry": {"coordinates": [[-69.92589560190106, 43.912549131839, 0.0], [-69.92618006856725, 43.9124345985058, 0.0], [-69.92627480190043, 43.91220579850619, 0.0], [-69.92608440190077, 43.911634198507045, 0.0], [-69.9254198019018, 43.91124579850765, 0.0], [-69.92485026856934, 43.91110893184123, 0.0], [-69.92269946857266, 43.91115559850783, 0.0]], "type": "LineString"}, "id": "29", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713487", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.92269946857266, 43.91115559850783, -69.92156166857444, 43.91211893183964], "geometry": {"coordinates": [[-69.92269946857266, 43.91115559850783, 0.0], [-69.9225804019062, 43.911222398507675, 0.0], [-69.92199326857377, 43.9119451985066, 0.0], [-69.92156166857444, 43.91211893183964, 0.0]], "type": "LineString"}, "id": "30", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713615", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.85035280201828, 43.97633293173999, -69.83581846870754, 43.985241398392816], "geometry": {"coordinates": [[-69.85035280201828, 43.97633293173999, 0.0], [-69.84094326869956, 43.982139931730956, 0.0], [-69.83581846870754, 43.985241398392816, 0.0]], "type": "LineString"}, "id": "31", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713545", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.83581846870754, 43.978239131736984, -69.82522246872395, 43.985241398392816], "geometry": {"coordinates": [[-69.83581846870754, 43.985241398392816, 0.0], [-69.83278586871222, 43.98246519839711, 0.0], [-69.82980486871685, 43.98043959840027, 0.0], [-69.82522246872395, 43.978239131736984, 0.0]], "type": "LineString"}, "id": "32", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3326718", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.87237320198415, 43.959560198432655, -69.86162100200079, 43.97232013174619], "geometry": {"coordinates": [[-69.87237320198415, 43.959560198432655, 0.0], [-69.87035506865391, 43.965151931757305, 0.0], [-69.8685616686567, 43.96739793175385, 0.0], [-69.86717860199218, 43.969987731749825, 0.0], [-69.86162100200079, 43.97232013174619, 0.0]], "type": "LineString"}, "id": "33", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713561", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.88014100197205, 43.94952299844823, -69.87806746864197, 43.95340779844224], "geometry": {"coordinates": [[-69.88014100197205, 43.94952299844823, 0.0], [-69.87895306864056, 43.95254353177688, 0.0], [-69.87806746864197, 43.95340779844224, 0.0]], "type": "LineString"}, "id": "34", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713575", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.87806746864197, 43.95340779844224, -69.87237320198415, 43.959560198432655], "geometry": {"coordinates": [[-69.87806746864197, 43.95340779844224, 0.0], [-69.87735046864304, 43.954306198440804, 0.0], [-69.87495260198011, 43.95577773177189, 0.0], [-69.8735874686489, 43.956936331770066, 0.0], [-69.87237320198415, 43.959560198432655, 0.0]], "type": "LineString"}, "id": "35", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713569", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.88235126863532, 43.94852733178311, -69.88014100197205, 43.94952299844823], "geometry": {"coordinates": [[-69.88235126863532, 43.94852733178311, 0.0], [-69.88230086863535, 43.94865553178295, 0.0], [-69.88014100197205, 43.94952299844823, 0.0]], "type": "LineString"}, "id": "36", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713579", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.99547300179302, 43.9250205318196, -69.98811866847115, 43.9322379318084], "geometry": {"coordinates": [[-69.99547300179302, 43.9322379318084, 0.0], [-69.99523060179342, 43.93192833180888, 0.0], [-69.99351900179607, 43.931192598476684, 0.0], [-69.99204400179838, 43.92985259847876, 0.0], [-69.98955800180221, 43.92830899848116, 0.0], [-69.98858860180371, 43.9270707984831, 0.0], [-69.98879846847007, 43.926070131817994, 0.0], [-69.98811866847115, 43.9250205318196, 0.0]], "type": "LineString"}, "id": "37", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713603", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.9994956017868, 43.9322379318084, -69.99547300179302, 43.93265979847445], "geometry": {"coordinates": [[-69.9994956017868, 43.93264899847446, 0.0], [-69.99915340178734, 43.93258759847453, 0.0], [-69.99821626845545, 43.93265979847445, 0.0], [-69.99547300179302, 43.9322379318084, 0.0]], "type": "LineString"}, "id": "38", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713597", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.94951546853105, 43.911814398506806, -69.93009346856121, 43.92102099849251], "geometry": {"coordinates": [[-69.94951546853105, 43.92102099849251, 0.0], [-69.94857326853253, 43.92017899849378, 0.0], [-69.94546746853734, 43.91929173182854, 0.0], [-69.94445160187223, 43.91817393183027, 0.0], [-69.94090400187775, 43.91563259850085, 0.0], [-69.93948286854663, 43.9150849985017, 0.0], [-69.93533560188638, 43.91268319850542, 0.0], [-69.93167780189208, 43.911814398506806, 0.0], [-69.93009346856121, 43.912146531839596, 0.0]], "type": "LineString"}, "id": "39", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713619", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.96667620183774, 43.92012839849389, -69.94951546853105, 43.923739331821594], "geometry": {"coordinates": [[-69.96667620183774, 43.92052053182658, 0.0], [-69.96513346850679, 43.92012839849389, 0.0], [-69.9638386685088, 43.920649731826416, 0.0], [-69.9636020018425, 43.92125393182545, 0.0], [-69.9625020685109, 43.92220559849068, 0.0], [-69.95849640185043, 43.923614598488484, 0.0], [-69.95717506851918, 43.923739331821594, 0.0], [-69.9533478685251, 43.92283713182303, 0.0], [-69.95110526852858, 43.92160253182493, 0.0], [-69.95026306852986, 43.92143259849183, 0.0], [-69.94951546853105, 43.92102099849251, 0.0]], "type": "LineString"}, "id": "40", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713605", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.92597666856756, 43.9152271985015, -69.91226226858885, 43.921455131825155], "geometry": {"coordinates": [[-69.92597666856756, 43.9152271985015, 0.0], [-69.92488140190261, 43.91709253183194, 0.0], [-69.92322826857185, 43.9180625984971, 0.0], [-69.9214852019079, 43.92018833182709, 0.0], [-69.92040600190956, 43.92062233182645, 0.0], [-69.9188900685786, 43.920316198493595, 0.0], [-69.91430466858571, 43.92134613182532, 0.0], [-69.91226226858885, 43.921455131825155, 0.0]], "type": "LineString"}, "id": "41", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713607", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.91226226858885, 43.921455131825155, -69.88235126863532, 43.94852733178311], "geometry": {"coordinates": [[-69.91226226858885, 43.921455131825155, 0.0], [-69.9119368019227, 43.921477798491765, 0.0], [-69.91058280192482, 43.922028598490954, 0.0], [-69.90878220192758, 43.922447331823605, 0.0], [-69.90511226859996, 43.923922731821335, 0.0], [-69.90322146860291, 43.925496731818896, 0.0], [-69.90161526860538, 43.926345931817536, 0.0], [-69.89973840194165, 43.930661398477525, 0.0], [-69.89834800194382, 43.93142373180967, 0.0], [-69.89741540194524, 43.93240893180814, 0.0], [-69.89568800194792, 43.93310313180706, 0.0], [-69.89307546861863, 43.934661731804624, 0.0], [-69.892432201953, 43.9358357984695, 0.0], [-69.89075666862226, 43.93732293180051, 0.0], [-69.89004446862333, 43.939135198464385, 0.0], [-69.89226966861992, 43.941802131793565, 0.0], [-69.89174726862069, 43.94313119845816, 0.0], [-69.88988166862362, 43.945101598455096, 0.0], [-69.88822740195951, 43.946071398453626, 0.0], [-69.88239586863523, 43.94841393178331, 0.0], [-69.88235126863532, 43.94852733178311, 0.0]], "type": "LineString"}, "id": "42", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713593", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.98811866847115, 43.920396131826806, -69.98393100181096, 43.9250205318196], "geometry": {"coordinates": [[-69.98811866847115, 43.9250205318196, 0.0], [-69.98763400180519, 43.92440139848725, 0.0], [-69.98654926847354, 43.923922198488015, 0.0], [-69.98543800180863, 43.923046531822706, 0.0], [-69.9842736684771, 43.92137779849196, 0.0], [-69.98393100181096, 43.920396131826806, 0.0]], "type": "LineString"}, "id": "43", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713623", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.9684210685017, 43.92043319849341, -69.96667620183774, 43.92075859849291], "geometry": {"coordinates": [[-69.9684210685017, 43.92043319849341, 0.0], [-69.9676130018363, 43.92075859849291, 0.0], [-69.96667620183774, 43.92052053182658, 0.0]], "type": "LineString"}, "id": "44", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713611", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.92935120189566, 43.91264873183883, -69.92597666856756, 43.9152271985015], "geometry": {"coordinates": [[-69.92935120189566, 43.91264873183883, 0.0], [-69.92752986856516, 43.91358493183736, 0.0], [-69.92698220189936, 43.91451753183594, 0.0], [-69.92597666856756, 43.9152271985015, 0.0]], "type": "LineString"}, "id": "45", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6716095", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.92156166857444, 43.91169539850699, -69.91226226858885, 43.921455131825155], "geometry": {"coordinates": [[-69.92156166857444, 43.91211893183964, 0.0], [-69.91881966857869, 43.91169539850699, 0.0], [-69.91644560191571, 43.91265033183879, 0.0], [-69.91257300192171, 43.92112659849232, 0.0], [-69.91226226858885, 43.921455131825155, 0.0]], "type": "LineString"}, "id": "46", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713601", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.93009346856121, 43.912146531839596, -69.92935120189566, 43.91264873183883], "geometry": {"coordinates": [[-69.93009346856121, 43.912146531839596, 0.0], [-69.92944600189554, 43.912406998505844, 0.0], [-69.92935120189566, 43.91264873183883, 0.0]], "type": "LineString"}, "id": "47", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713617", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.9840256018108, 43.9162699318332, -69.98027566848327, 43.920396131826806], "geometry": {"coordinates": [[-69.98393100181096, 43.920396131826806, 0.0], [-69.9840256018108, 43.92015439849382, 0.0], [-69.98242406847999, 43.917745731830905, 0.0], [-69.98136026848164, 43.91674913183243, 0.0], [-69.98027566848327, 43.9162699318332, 0.0]], "type": "LineString"}, "id": "48", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713629", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.98027566848327, 43.91498679850184, -69.9684210685017, 43.92043319849341], "geometry": {"coordinates": [[-69.98027566848327, 43.9162699318332, 0.0], [-69.97865926848579, 43.915292331834735, 0.0], [-69.97714326848813, 43.91498679850184, 0.0], [-69.97606440182318, 43.91542133183452, 0.0], [-69.97525440182443, 43.916561931832746, 0.0], [-69.97230726849568, 43.918054131830445, 0.0], [-69.9710656018309, 43.91936839849507, 0.0], [-69.9684210685017, 43.92043319849341, 0.0]], "type": "LineString"}, "id": "49", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713631", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.92589560190106, 43.912549131839, -69.92437526857009, 43.91362973183732], "geometry": {"coordinates": [[-69.92437526857009, 43.91362973183732, 0.0], [-69.92462560190302, 43.913150998504705, 0.0], [-69.92538426856851, 43.91281093183858, 0.0], [-69.92589560190106, 43.912549131839, 0.0]], "type": "LineString"}, "id": "50", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713649", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.92437526857009, 43.91211893183964, -69.92156166857444, 43.91362973183732], "geometry": {"coordinates": [[-69.92437526857009, 43.91362973183732, 0.0], [-69.92156166857444, 43.91211893183964, 0.0]], "type": "LineString"}, "id": "51", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713651", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.92597666856756, 43.91362973183732, -69.92437526857009, 43.9152271985015], "geometry": {"coordinates": [[-69.92597666856756, 43.9152271985015, 0.0], [-69.92490220190257, 43.91445373183603, 0.0], [-69.92437526857009, 43.91362973183732, 0.0]], "type": "LineString"}, "id": "52", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713653", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.08149960165952, 43.991435931716524, -70.05324326837007, 44.000090398369764], "geometry": {"coordinates": [[-70.08149960165952, 44.000090398369764, 0.0], [-70.0810238683269, 43.99948473170406, 0.0], [-70.07870206833053, 43.997976398373055, 0.0], [-70.07669766833362, 43.99705313170779, 0.0], [-70.07416720167089, 43.99654579837528, 0.0], [-70.07082040167609, 43.996265731709, 0.0], [-70.0685600016796, 43.996464198375406, 0.0], [-70.06653566834939, 43.99605819837603, 0.0], [-70.0620686016897, 43.99398893171258, 0.0], [-70.05587460169932, 43.99261579838134, 0.0], [-70.05324326837007, 43.991435931716524, 0.0]], "type": "LineString"}, "id": "53", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714591", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.05324326837007, 43.98977233171911, -70.04852720171067, 43.991435931716524], "geometry": {"coordinates": [[-70.05324326837007, 43.991435931716524, 0.0], [-70.05008566837495, 43.990671731717725, 0.0], [-70.04955266837578, 43.99017373171847, 0.0], [-70.04852720171067, 43.98977233171911, 0.0]], "type": "LineString"}, "id": "54", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714599", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.04852720171067, 43.97944239840183, -70.03701306839525, 43.98977233171911], "geometry": {"coordinates": [[-70.04852720171067, 43.98977233171911, 0.0], [-70.04700940171307, 43.98783793172208, 0.0], [-70.04714446837949, 43.98656133172409, 0.0], [-70.04609900171448, 43.98504779839311, 0.0], [-70.04428440171728, 43.98364053172861, 0.0], [-70.04257100171992, 43.98290533172974, 0.0], [-70.04054066838978, 43.98158499839849, 0.0], [-70.0382000683934, 43.98059353173335, 0.0], [-70.03701306839525, 43.97944239840183, 0.0]], "type": "LineString"}, "id": "55", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714605", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.10411900162438, 43.99576919837648, -70.09986886829768, 44.000086131703085], "geometry": {"coordinates": [[-70.10411900162438, 43.99576919837648, 0.0], [-70.10311406829265, 43.996480398375354, 0.0], [-70.10015386829724, 43.99940699837083, 0.0], [-70.09986886829768, 44.000086131703085, 0.0]], "type": "LineString"}, "id": "56", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714601", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.11098646828043, 43.99401599837921, -70.10411900162438, 43.99576919837648], "geometry": {"coordinates": [[-70.11098646828043, 43.99401599837921, 0.0], [-70.1087536016172, 43.994611731711586, 0.0], [-70.10584586828838, 43.99507219837756, 0.0], [-70.10411900162438, 43.99576919837648, 0.0]], "type": "LineString"}, "id": "57", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714607", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.03701306839525, 43.97402613174353, -70.03276500173519, 43.97944239840183], "geometry": {"coordinates": [[-70.03701306839525, 43.97944239840183, 0.0], [-70.03567786839733, 43.97774019840443, 0.0], [-70.03552960173084, 43.977188931738624, 0.0], [-70.03276500173519, 43.97402613174353, 0.0]], "type": "LineString"}, "id": "58", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714619", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.03276500173519, 43.95078519844628, -70.02221300175154, 43.97402613174353], "geometry": {"coordinates": [[-70.03276500173519, 43.97402613174353, 0.0], [-70.03166626840351, 43.971719398413825, 0.0], [-70.03134300173735, 43.97022033174943, 0.0], [-70.03130326840409, 43.96799599841955, 0.0], [-70.02781120174285, 43.96390459842593, 0.0], [-70.0268074017444, 43.96135619842988, 0.0], [-70.02670006841123, 43.95977019843235, 0.0], [-70.02628246841186, 43.95851293176764, 0.0], [-70.02393026841554, 43.955693398438655, 0.0], [-70.02287940175052, 43.95326579844243, 0.0], [-70.02316300175005, 43.95254059844359, 0.0], [-70.02301486841696, 43.951989398444425, 0.0], [-70.02221300175154, 43.95078519844628, 0.0]], "type": "LineString"}, "id": "59", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714629", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.12493286825878, 43.98716219838985, -70.11098646828043, 43.99401599837921], "geometry": {"coordinates": [[-70.12493286825878, 43.98716219838985, 0.0], [-70.121122801598, 43.98900653172029, 0.0], [-70.11753600160358, 43.991677531716164, 0.0], [-70.11175560161257, 43.9939093317127, 0.0], [-70.11098646828043, 43.99401599837921, 0.0]], "type": "LineString"}, "id": "60", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714621", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.14752360155705, 43.98712333172324, -70.13385860157825, 44.0000849317031], "geometry": {"coordinates": [[-70.14752360155705, 44.0000849317031, 0.0], [-70.14328346823027, 43.997480131707164, 0.0], [-70.13852760157101, 43.99287973171431, 0.0], [-70.13385860157825, 43.98712333172324, 0.0]], "type": "LineString"}, "id": "61", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714623", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.13385860157825, 43.984012931728046, -70.12555386825778, 43.98712333172324], "geometry": {"coordinates": [[-70.13385860157825, 43.98712333172324, 0.0], [-70.13289346824638, 43.98679993172374, 0.0], [-70.13167726824827, 43.9852531983928, 0.0], [-70.1310966682492, 43.984876398393396, 0.0], [-70.12743246825488, 43.984012931728046, 0.0], [-70.12587486825731, 43.98474393172694, 0.0], [-70.12555386825778, 43.9855679983923, 0.0]], "type": "LineString"}, "id": "62", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714627", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.02221300175154, 43.93312073180704, -70.00212586844941, 43.95078519844628], "geometry": {"coordinates": [[-70.02221300175154, 43.95078519844628, 0.0], [-70.02136400175283, 43.949701931781306, 0.0], [-70.02110880175326, 43.94756473178461, 0.0], [-70.0198218684219, 43.94574153178746, 0.0], [-70.01924220175613, 43.94536419845468, 0.0], [-70.01555480176188, 43.94410113178998, 0.0], [-70.01454360176342, 43.943897731790344, 0.0], [-70.01377486843131, 43.94400393179018, 0.0], [-70.00927166843832, 43.94296773179178, 0.0], [-70.00765426844083, 43.94199039845995, 0.0], [-70.00595680177679, 43.939823598463306, 0.0], [-70.00488620177845, 43.937913398466264, 0.0], [-70.00498080177829, 43.937671598466636, 0.0], [-70.00366180178031, 43.93453799847151, 0.0], [-70.00305566844793, 43.93376413180607, 0.0], [-70.00212586844941, 43.93312073180704, 0.0]], "type": "LineString"}, "id": "63", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714635", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.00212586844941, 43.93264899847446, -69.9994956017868, 43.93312073180704], "geometry": {"coordinates": [[-70.00212586844941, 43.93312073180704, 0.0], [-69.9994956017868, 43.93264899847446, 0.0]], "type": "LineString"}, "id": "64", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714633", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.12555386825778, 43.9855679983923, -70.12493286825878, 43.98716219838985], "geometry": {"coordinates": [[-70.12555386825778, 43.9855679983923, 0.0], [-70.12493286825878, 43.98716219838985, 0.0]], "type": "LineString"}, "id": "65", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6714645", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-69.86162100200079, 43.97232013174619, -69.85035280201828, 43.97633293173999], "geometry": {"coordinates": [[-69.86162100200079, 43.97232013174619, 0.0], [-69.85779840200672, 43.97356573174426, 0.0], [-69.85355066867999, 43.97503059840864, 0.0], [-69.85035280201828, 43.97633293173999, 0.0]], "type": "LineString"}, "id": "66", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6713549", "fl_ds_name": "Androscoggin River"}, "type": "Feature"}, {"bbox": [-70.36611820121772, 43.646737532251564, -70.35030980124225, 43.64897699891475], "geometry": {"coordinates": [[-70.36611820121772, 43.646737532251564, 0.0], [-70.3644176012204, 43.647766398916644, 0.0], [-70.3637248678881, 43.648246598915875, 0.0], [-70.3634728678885, 43.648337998915736, 0.0], [-70.36224486789041, 43.64820079891598, 0.0], [-70.36170946789122, 43.64833793224909, 0.0], [-70.36123700122528, 43.64861233224866, 0.0], [-70.36004046789384, 43.64861213224867, 0.0], [-70.35947360122805, 43.64877233224843, 0.0], [-70.35900106789546, 43.64874939891513, 0.0], [-70.35758426789766, 43.64797173224963, 0.0], [-70.35695440123197, 43.64799453224964, 0.0], [-70.35594660123354, 43.64833733224907, 0.0], [-70.35361620123712, 43.64840573224899, 0.0], [-70.35241940123899, 43.64879419891503, 0.0], [-70.3514432679072, 43.64897699891475, 0.0], [-70.35087646790805, 43.64895413224815, 0.0], [-70.35043566790876, 43.64872533224849, 0.0], [-70.35030980124225, 43.64847379891552, 0.0], [-70.3504672679087, 43.64808513224949, 0.0], [-70.35037300124219, 43.647421932250495, 0.0]], "type": "LineString"}, "id": "67", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6721559", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.35037300124219, 43.634998532269776, -70.32622906794631, 43.647421932250495], "geometry": {"coordinates": [[-70.35037300124219, 43.647421932250495, 0.0], [-70.35002666790939, 43.64742179891715, 0.0], [-70.34898760124435, 43.646872798918025, 0.0], [-70.34842100124519, 43.64668979891832, 0.0], [-70.3472872679136, 43.64662099891842, 0.0], [-70.34659480124805, 43.646140598919146, 0.0], [-70.34605946791555, 43.645866132252934, 0.0], [-70.34571306791605, 43.64602613225264, 0.0], [-70.3454926679164, 43.645957532252794, 0.0], [-70.34341440125297, 43.64600279891937, 0.0], [-70.34313100125343, 43.646071332252575, 0.0], [-70.34218646792152, 43.64561373225331, 0.0], [-70.34155646792254, 43.645910798919545, 0.0], [-70.34143060125604, 43.645819332252984, 0.0], [-70.34127340125627, 43.64549919892016, 0.0], [-70.34061200125734, 43.64538473225366, 0.0], [-70.34042320125764, 43.64520173225395, 0.0], [-70.34023440125793, 43.64497293225429, 0.0], [-70.33982506792523, 43.64481279892124, 0.0], [-70.33906940125974, 43.6448353989212, 0.0], [-70.338250601261, 43.64492673225436, 0.0], [-70.33702266792955, 43.64472053225472, 0.0], [-70.33680246792989, 43.64424019892209, 0.0], [-70.33636186793058, 43.643874198922674, 0.0], [-70.33538586793208, 43.643668198923024, 0.0], [-70.33434706793372, 43.64289039892418, 0.0], [-70.33409526793412, 43.64282173225763, 0.0], [-70.3333400012686, 43.64229553225846, 0.0], [-70.33352906793499, 43.64188399892578, 0.0], [-70.33352940126832, 43.6415639322596, 0.0], [-70.33305700126903, 43.6414265322598, 0.0], [-70.33293126793592, 43.64131213226, 0.0], [-70.33305740126906, 43.64092339892727, 0.0], [-70.33239666793673, 43.64012293226182, 0.0], [-70.33227100127027, 43.639756998929045, 0.0], [-70.33208226793721, 43.63955119892938, 0.0], [-70.3320510679373, 43.63904799893015, 0.0], [-70.33192526793749, 43.638727932263976, 0.0], [-70.33145306793818, 43.63847613226437, 0.0], [-70.33110720127206, 43.63785859893204, 0.0], [-70.33110746793875, 43.63737839893275, 0.0], [-70.33047800127304, 43.63708093226654, 0.0], [-70.33019500127347, 43.63676073226708, 0.0], [-70.32943940127467, 43.63660039893398, 0.0], [-70.32890440127551, 43.636165732267955, 0.0], [-70.32877866794234, 43.63582273226854, 0.0], [-70.32821206794324, 43.635616598935485, 0.0], [-70.32796046794363, 43.63536499893587, 0.0], [-70.32692180127856, 43.63506733226967, 0.0], [-70.32622906794631, 43.634998532269776, 0.0]], "type": "LineString"}, "id": "68", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6721587", "fl_ds_name": "Long Creek"}, "type": "Feature"}, {"bbox": [-70.32622906794631, 43.633509798938746, -70.32050020128855, 43.634998532269776], "geometry": {"coordinates": [[-70.32622906794631, 43.634998532269776, 0.0], [-70.3261662679464, 43.63481553227007, 0.0], [-70.32594606794675, 43.6345181989372, 0.0], [-70.32563146794723, 43.634243598937644, 0.0], [-70.32380566795007, 43.633922932271446, 0.0], [-70.32320726795098, 43.634242732270934, 0.0], [-70.32235706795234, 43.63428813227091, 0.0], [-70.3212234012874, 43.63451633227055, 0.0], [-70.32078300128808, 43.634104398937836, 0.0], [-70.32050020128855, 43.633509798938746, 0.0]], "type": "LineString"}, "id": "69", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6721589", "fl_ds_name": "Long Creek"}, "type": "Feature"}, {"bbox": [-69.83923586870225, 44.69822459728613, -69.83224960204637, 44.702890330612206], "geometry": {"coordinates": [[-69.83923586870225, 44.70284553061225, 0.0], [-69.83734426870518, 44.702776397279024, 0.0], [-69.83596566870727, 44.702890330612206, 0.0], [-69.83529246870836, 44.70272999727911, 0.0], [-69.83468366870926, 44.70218099727998, 0.0], [-69.83436326870981, 44.70156359728094, 0.0], [-69.83423546871, 44.70108339728171, 0.0], [-69.83404346871026, 44.70051179728256, 0.0], [-69.83362720204428, 44.69980279728367, 0.0], [-69.83224960204637, 44.69822459728613, 0.0]], "type": "LineString"}, "id": "70", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3320772", "fl_ds_name": "Mill Stream"}, "type": "Feature"}, {"bbox": [-69.85837426867249, 44.70245773061288, -69.83923586870225, 44.710874530599824], "geometry": {"coordinates": [[-69.85827806867269, 44.710874530599824, 0.0], [-69.85837426867249, 44.71064593060015, 0.0], [-69.85834246867256, 44.710097130601014, 0.0], [-69.8577654020068, 44.70952539726858, 0.0], [-69.85648300200876, 44.708747930603124, 0.0], [-69.85327680201374, 44.70785579727118, 0.0], [-69.85244340201507, 44.70744399727181, 0.0], [-69.85141766868333, 44.70659793060645, 0.0], [-69.85055220201798, 44.705477330608176, 0.0], [-69.84984720201908, 44.70476853060927, 0.0], [-69.84882146868733, 44.70408233061033, 0.0], [-69.84622466869138, 44.70373879727754, 0.0], [-69.84494226869339, 44.70341853061137, 0.0], [-69.84369226869529, 44.702549330612726, 0.0], [-69.8429230020298, 44.70245773061288, 0.0], [-69.840037268701, 44.70291419727886, 0.0], [-69.83923586870225, 44.70284553061225, 0.0]], "type": "LineString"}, "id": "71", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3320756", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.81532160207269, 44.6997725972837, -69.78962266877926, 44.71487113059362], "geometry": {"coordinates": [[-69.81532160207269, 44.6997725972837, 0.0], [-69.81483986874008, 44.700526930615865, 0.0], [-69.81474286874027, 44.701464397281086, 0.0], [-69.8141324687412, 44.70272153061245, 0.0], [-69.81297746874299, 44.703658530610994, 0.0], [-69.81195080207789, 44.704320997276625, 0.0], [-69.81031506874712, 44.70496033060897, 0.0], [-69.80893606874923, 44.70521113060863, 0.0], [-69.80544120208799, 44.70527779727519, 0.0], [-69.80476766875574, 44.705437530608265, 0.0], [-69.80399800209022, 44.705757130607765, 0.0], [-69.80248946875923, 44.7070825306057, 0.0], [-69.80213606875981, 44.707745330604666, 0.0], [-69.80081946876186, 44.70929933060228, 0.0], [-69.80040240209581, 44.709573397268514, 0.0], [-69.79927946876427, 44.70998433060117, 0.0], [-69.79854140209875, 44.71050973060039, 0.0], [-69.7982208020992, 44.71060099726691, 0.0], [-69.7959442687694, 44.71041659726717, 0.0], [-69.79498286877089, 44.710050197267776, 0.0], [-69.79466220210475, 44.710095597267696, 0.0], [-69.79418100210552, 44.710301130600726, 0.0], [-69.7927684021077, 44.71151199726552, 0.0], [-69.79097186877715, 44.71215093059783, 0.0], [-69.79004100211193, 44.71285913059671, 0.0], [-69.78962266877926, 44.71384199726185, 0.0], [-69.7896542021125, 44.714390797261046, 0.0], [-69.78987800211218, 44.71487113059362, 0.0]], "type": "LineString"}, "id": "72", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3320766", "fl_ds_name": "Mill Stream"}, "type": "Feature"}, {"bbox": [-69.81789586873532, 44.688956730633834, -69.81080920207967, 44.6997725972837], "geometry": {"coordinates": [[-69.81789586873532, 44.689095997300285, 0.0], [-69.81587626873846, 44.689254997300054, 0.0], [-69.81356886874204, 44.688956730633834, 0.0], [-69.81283160207653, 44.68897913063381, 0.0], [-69.81241466874383, 44.68920759730014, 0.0], [-69.81215786874424, 44.689527597299616, 0.0], [-69.81190066874467, 44.690304930631726, 0.0], [-69.81084160207962, 44.69167619729626, 0.0], [-69.81080920207967, 44.69206493062899, 0.0], [-69.81167406874499, 44.69259119729486, 0.0], [-69.81266726874344, 44.692980397294264, 0.0], [-69.8137566020751, 44.69362119729328, 0.0], [-69.81490946873998, 44.69483353062469, 0.0], [-69.8152296020728, 44.69531393062397, 0.0], [-69.81551726873903, 44.69615999728933, 0.0], [-69.81561346873889, 44.696205797289224, 0.0], [-69.8159968687383, 44.69750933062056, 0.0], [-69.81606000207154, 44.69860693061884, 0.0], [-69.81532160207269, 44.6997725972837, 0.0]], "type": "LineString"}, "id": "73", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3320806", "fl_ds_name": "Mill Stream"}, "type": "Feature"}, {"bbox": [-69.59456986908197, 44.58767673079103, -69.59338486908382, 44.593118597449234], "geometry": {"coordinates": [[-69.59338486908382, 44.593118597449234, 0.0], [-69.59357700241685, 44.59302719744943, 0.0], [-69.59456966908198, 44.59156399745166, 0.0], [-69.59456986908197, 44.59099239745257, 0.0], [-69.59393026908299, 44.59023773078707, 0.0], [-69.59370746908331, 44.58788253079075, 0.0], [-69.59361160241679, 44.58767673079103, 0.0]], "type": "LineString"}, "id": "74", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3321128", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.59361160241679, 44.58293713079837, -69.59253226908515, 44.58767673079103], "geometry": {"coordinates": [[-69.59361160241679, 44.58767673079103, 0.0], [-69.59356866908354, 44.587541330791225, 0.0], [-69.5935466690836, 44.58741653079147, 0.0], [-69.59353006908361, 44.58732219745826, 0.0], [-69.59344420241706, 44.587212397458416, 0.0], [-69.59335826908386, 44.587102530791924, 0.0], [-69.59327240241731, 44.586992730792076, 0.0], [-69.59318646908412, 44.58688279745894, 0.0], [-69.59310060241762, 44.58677299745909, 0.0], [-69.59301480241771, 44.5866631307926, 0.0], [-69.59292886908452, 44.58655333079281, 0.0], [-69.59284300241802, 44.58644339745962, 0.0], [-69.59280126908476, 44.58639013079306, 0.0], [-69.59283906908468, 44.58626733079325, 0.0], [-69.59287686908465, 44.58614453079343, 0.0], [-69.59291460241792, 44.58602179746026, 0.0], [-69.59295240241784, 44.58589899746045, 0.0], [-69.59299020241775, 44.58577619746063, 0.0], [-69.59302800241773, 44.585653397460874, 0.0], [-69.59306580241764, 44.58553059746106, 0.0], [-69.59310346908427, 44.585407797461244, 0.0], [-69.59314126908419, 44.58528499746143, 0.0], [-69.59317906908416, 44.585162197461614, 0.0], [-69.59321686908407, 44.58503953079514, 0.0], [-69.59325460241735, 44.58491673079533, 0.0], [-69.59329240241732, 44.58479393079551, 0.0], [-69.59333020241723, 44.5846711307957, 0.0], [-69.59336800241721, 44.58454833079588, 0.0], [-69.59340566908378, 44.58442553079607, 0.0], [-69.59340686908382, 44.584421730796066, 0.0], [-69.59333860241725, 44.584305797462946, 0.0], [-69.59327026908403, 44.584189797463125, 0.0], [-69.59320200241746, 44.58407393079665, 0.0], [-69.59313366908424, 44.58395799746347, 0.0], [-69.59306540241766, 44.583842130796995, 0.0], [-69.59299706908445, 44.583726130797174, 0.0], [-69.59292880241787, 44.583610197464, 0.0], [-69.59286046908466, 44.58349433079752, 0.0], [-69.59279220241808, 44.5833783974644, 0.0], [-69.59272386908486, 44.58326253079787, 0.0], [-69.59265560241829, 44.58314653079805, 0.0], [-69.59258726908507, 44.583030597464926, 0.0], [-69.59253226908515, 44.58293713079837, 0.0]], "type": "LineString"}, "id": "75", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322338", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.63459060235323, 44.54123939752981, -69.63049846902624, 44.544235197525154], "geometry": {"coordinates": [[-69.63049846902624, 44.54398373085888, 0.0], [-69.6310420690254, 44.544235197525154, 0.0], [-69.63145780235806, 44.544235197525154, 0.0], [-69.6320972023571, 44.54375493085922, 0.0], [-69.63216106902365, 44.54357199752616, 0.0], [-69.63260866902294, 44.54318319752679, 0.0], [-69.63407926902067, 44.542268397528176, 0.0], [-69.6345586690199, 44.541605197529236, 0.0], [-69.63459060235323, 44.54123939752981, 0.0]], "type": "LineString"}, "id": "76", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3321282", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.63459060235323, 44.539878530865224, -69.63347460235497, 44.54123939752981], "geometry": {"coordinates": [[-69.63459060235323, 44.54123939752981, 0.0], [-69.63442760235347, 44.54108313086334, 0.0], [-69.63434086902026, 44.54097359753018, 0.0], [-69.6342542690204, 44.540864130863724, 0.0], [-69.63416760235384, 44.540754597530565, 0.0], [-69.63408100235398, 44.54064513086405, 0.0], [-69.63399440235412, 44.54053553086419, 0.0], [-69.63390766902091, 44.54042599753103, 0.0], [-69.63382106902105, 44.54031653086457, 0.0], [-69.63373446902119, 44.54020699753141, 0.0], [-69.63364780235469, 44.5400975308649, 0.0], [-69.63356120235483, 44.53998799753174, 0.0], [-69.63347460235497, 44.539878530865224, 0.0]], "type": "LineString"}, "id": "77", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322456", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.71704880222524, 44.764438730516645, -69.67492540229063, 44.7710321971731], "geometry": {"coordinates": [[-69.71704880222524, 44.764438730516645, 0.0], [-69.71282186889846, 44.76763919717837, 0.0], [-69.70871446890482, 44.770079397174584, 0.0], [-69.70630700224189, 44.7710321971731, 0.0], [-69.7049434689107, 44.770757397173554, 0.0], [-69.70379680224579, 44.769480597175516, 0.0], [-69.70085080225033, 44.769017530509586, 0.0], [-69.69955900225239, 44.768103530510984, 0.0], [-69.69639206892396, 44.766811530512996, 0.0], [-69.69502866892606, 44.76653659718011, 0.0], [-69.69242380226342, 44.76614213051403, 0.0], [-69.68906546893533, 44.766249197180514, 0.0], [-69.68402966894314, 44.76732519717888, 0.0], [-69.6807934022815, 44.76758739717843, 0.0], [-69.67789606895263, 44.76700293051272, 0.0], [-69.67492540229063, 44.76614199718068, 0.0]], "type": "LineString"}, "id": "78", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322064", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.73865560219167, 44.754150797199316, -69.71704880222524, 44.7649863971825], "geometry": {"coordinates": [[-69.73865560219167, 44.754150797199316, 0.0], [-69.7375618021934, 44.75458413053195, 0.0], [-69.72646460221063, 44.76345953051822, 0.0], [-69.72318246888238, 44.764759197182855, 0.0], [-69.72211140221737, 44.764674197182956, 0.0], [-69.72106566888567, 44.7649863971825, 0.0], [-69.71770526889088, 44.76417879718372, 0.0], [-69.71704880222524, 44.764438730516645, 0.0]], "type": "LineString"}, "id": "79", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322088", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.74924646884193, 44.747917930542314, -69.73865560219167, 44.754150797199316], "geometry": {"coordinates": [[-69.74924646884193, 44.747917930542314, 0.0], [-69.74630646884646, 44.74928659720683, 0.0], [-69.74518986884817, 44.75023819720536, 0.0], [-69.7387522688582, 44.75390893053304, 0.0], [-69.73865560219167, 44.754150797199316, 0.0]], "type": "LineString"}, "id": "80", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322094", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.75376300216823, 44.74490593054696, -69.74924646884193, 44.747917930542314], "geometry": {"coordinates": [[-69.75376300216823, 44.74490593054696, 0.0], [-69.75288820216957, 44.74525273054644, 0.0], [-69.75199046883762, 44.746117597211764, 0.0], [-69.74924646884193, 44.747917930542314, 0.0]], "type": "LineString"}, "id": "81", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322098", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.75720840216286, 44.741809130551815, -69.75376300216823, 44.74490593054696], "geometry": {"coordinates": [[-69.75720840216286, 44.741809130551815, 0.0], [-69.75584786883167, 44.742450197217465, 0.0], [-69.75478000216663, 44.74328093054953, 0.0], [-69.75376300216823, 44.74490593054696, 0.0]], "type": "LineString"}, "id": "82", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322110", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.64273426900724, 44.688300997301496, -69.63192706902402, 44.71689279725712], "geometry": {"coordinates": [[-69.64273426900724, 44.71689279725712, 0.0], [-69.64151626900912, 44.71533933059288, 0.0], [-69.63988326901165, 44.7125253972639, 0.0], [-69.63761560234849, 44.707622130604875, 0.0], [-69.6336704690213, 44.70277179727907, 0.0], [-69.63328046902188, 44.70190853061371, 0.0], [-69.63305946902227, 44.70016439728312, 0.0], [-69.63327606902192, 44.69824739728608, 0.0], [-69.63244746902319, 44.69664179728858, 0.0], [-69.63232466902338, 44.695571197290235, 0.0], [-69.63278466902267, 44.69396479729272, 0.0], [-69.63256486902304, 44.69313599729401, 0.0], [-69.63285580235589, 44.69241059729512, 0.0], [-69.6328298690226, 44.69109813063051, 0.0], [-69.63192706902402, 44.688300997301496, 0.0]], "type": "LineString"}, "id": "83", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322180", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.76867026881177, 44.73522813056201, -69.75720840216286, 44.741809130551815], "geometry": {"coordinates": [[-69.76867026881177, 44.73522813056201, 0.0], [-69.76458960215143, 44.73715173055905, 0.0], [-69.76369506881946, 44.73893199722295, 0.0], [-69.76231200215494, 44.740091397221136, 0.0], [-69.75881306882707, 44.741478530552286, 0.0], [-69.75720840216286, 44.741809130551815, 0.0]], "type": "LineString"}, "id": "84", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322136", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.77854206879641, 44.726628130575364, -69.76867026881177, 44.73522813056201], "geometry": {"coordinates": [[-69.77854206879641, 44.726628130575364, 0.0], [-69.77635600213318, 44.727495330574015, 0.0], [-69.77441400213615, 44.728672997238846, 0.0], [-69.77094740214153, 44.732288330566575, 0.0], [-69.77019500214271, 44.73279039723246, 0.0], [-69.76898546881125, 44.734899397229185, 0.0], [-69.76867026881177, 44.73522813056201, 0.0]], "type": "LineString"}, "id": "85", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322162", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.79419386877214, 44.71610853059167, -69.7939286021059, 44.71696379725705], "geometry": {"coordinates": [[-69.7939286021059, 44.71610853059167, 0.0], [-69.79393480210587, 44.71611639725836, 0.0], [-69.79402120210574, 44.71622619725815, 0.0], [-69.79410760210561, 44.716335930591356, 0.0], [-69.79419386877214, 44.71644573059115, 0.0], [-69.79419326877212, 44.716461197257786, 0.0], [-69.79418780210545, 44.716586797257605, 0.0], [-69.79418240210549, 44.71671253059077, 0.0], [-69.79417686877218, 44.71683819725723, 0.0], [-69.79417146877216, 44.71696379725705, 0.0]], "type": "LineString"}, "id": "86", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322188", "fl_ds_name": "Mill Stream"}, "type": "Feature"}, {"bbox": [-69.79417146877216, 44.71696379725705, -69.77854206879641, 44.726628130575364], "geometry": {"coordinates": [[-69.79417146877216, 44.71696379725705, 0.0], [-69.793856802106, 44.71700333059027, 0.0], [-69.79334540210681, 44.717189930589996, 0.0], [-69.79210466877538, 44.71707119725687, 0.0], [-69.7905490021111, 44.71728119725651, 0.0], [-69.78880040211385, 44.7179751305888, 0.0], [-69.78659526878391, 44.72027599725186, 0.0], [-69.78482406878669, 44.721487997249994, 0.0], [-69.78441260212065, 44.722058597249145, 0.0], [-69.78116240212569, 44.72467213057837, 0.0], [-69.77905020212899, 44.7258155305766, 0.0], [-69.77854206879641, 44.726628130575364, 0.0]], "type": "LineString"}, "id": "87", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322186", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.62880966902884, 44.65062593069331, -69.60499966906582, 44.67244139732611], "geometry": {"coordinates": [[-69.62880966902884, 44.67244139732611, 0.0], [-69.6262182023662, 44.66949859733069, 0.0], [-69.62344540237052, 44.66723793066757, 0.0], [-69.62120686904063, 44.664562530671674, 0.0], [-69.61901526904404, 44.65993573067885, 0.0], [-69.61872260237783, 44.65883073068062, 0.0], [-69.61658160238113, 44.6559135306851, 0.0], [-69.61400440238515, 44.654084330687965, 0.0], [-69.61291060238688, 44.65360133068873, 0.0], [-69.60865800239344, 44.65273979735673, 0.0], [-69.60634886906371, 44.651618330691804, 0.0], [-69.60499966906582, 44.65062593069331, 0.0]], "type": "LineString"}, "id": "88", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322222", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.60499966906582, 44.6369811973812, -69.58960100242302, 44.65062593069331], "geometry": {"coordinates": [[-69.60499966906582, 44.65062593069331, 0.0], [-69.60175366907083, 44.64702693069893, 0.0], [-69.59976046907394, 44.645577130701156, 0.0], [-69.5969650024116, 44.64291893070532, 0.0], [-69.59171580241974, 44.63950159737726, 0.0], [-69.58960100242302, 44.6369811973812, 0.0]], "type": "LineString"}, "id": "89", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322252", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.5934426024171, 44.60249019743469, -69.5789322024396, 44.62370539740181], "geometry": {"coordinates": [[-69.5789322024396, 44.62370539740181, 0.0], [-69.58041226910399, 44.62047633074013, 0.0], [-69.5814318691024, 44.61976813074125, 0.0], [-69.5821836691012, 44.61743699741152, 0.0], [-69.58346986909925, 44.61560639741435, 0.0], [-69.58626100242822, 44.612774130752086, 0.0], [-69.58713446909354, 44.61151339742071, 0.0], [-69.58936740242342, 44.609613530756974, 0.0], [-69.59033780242191, 44.60811113075931, 0.0], [-69.59116206908726, 44.606056197429155, 0.0], [-69.59281226908473, 44.604691730764614, 0.0], [-69.5934426024171, 44.60312033076707, 0.0], [-69.59323580241738, 44.60249019743469, 0.0]], "type": "LineString"}, "id": "90", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322300", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.5829316024334, 44.62370539740181, -69.57861700244007, 44.63068119739097], "geometry": {"coordinates": [[-69.5829316024334, 44.63068119739097, 0.0], [-69.5826510024338, 44.63047333072461, 0.0], [-69.58126620243598, 44.62980013072564, 0.0], [-69.57881180243976, 44.62629553073111, 0.0], [-69.57861700244007, 44.624948730733195, 0.0], [-69.5789322024396, 44.62370539740181, 0.0]], "type": "LineString"}, "id": "91", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322270", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.59323580241738, 44.59339999744884, -69.59159320241997, 44.60249019743469], "geometry": {"coordinates": [[-69.59323580241738, 44.60249019743469, 0.0], [-69.59191180241947, 44.60097979743705, 0.0], [-69.59176580241967, 44.600427330771254, 0.0], [-69.59174020241971, 44.59820013077473, 0.0], [-69.59210360241917, 44.59683599744346, 0.0], [-69.59159320241997, 44.595817397445046, 0.0], [-69.592199402419, 44.594763997446705, 0.0], [-69.59256280241846, 44.59339999744884, 0.0]], "type": "LineString"}, "id": "92", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322316", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.59338486908382, 44.593118597449234, -69.59256280241846, 44.59339999744884], "geometry": {"coordinates": [[-69.59256280241846, 44.59339999744884, 0.0], [-69.592624869085, 44.59337479744886, 0.0], [-69.5927786024181, 44.593312730782316, 0.0], [-69.59293220241784, 44.59325059744907, 0.0], [-69.59308580241765, 44.59318853078247, 0.0], [-69.59323946908404, 44.593126397449225, 0.0], [-69.59338486908382, 44.593118597449234, 0.0]], "type": "LineString"}, "id": "93", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322318", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.59256280241846, 44.58293713079837, -69.58947680242323, 44.59339999744884], "geometry": {"coordinates": [[-69.59256280241846, 44.59339999744884, 0.0], [-69.59195540241939, 44.59262319745005, 0.0], [-69.59234266908544, 44.590741130786284, 0.0], [-69.59168686908646, 44.59008519745396, 0.0], [-69.59066726908804, 44.5898783307876, 0.0], [-69.58993860242254, 44.588946197455755, 0.0], [-69.58947680242323, 44.58780679745752, 0.0], [-69.59076120242122, 44.58414619746321, 0.0], [-69.59144026908683, 44.583369130797735, 0.0], [-69.59253226908515, 44.58293713079837, 0.0]], "type": "LineString"}, "id": "94", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322336", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.61164826905548, 44.57191499748217, -69.59253226908515, 44.58293713079837], "geometry": {"coordinates": [[-69.59253226908515, 44.58293713079837, 0.0], [-69.59304146908437, 44.58212553079966, 0.0], [-69.59483700241492, 44.58131353080091, 0.0], [-69.59607486907964, 44.5814339974674, 0.0], [-69.59988480240708, 44.58063853080199, 0.0], [-69.60386386906754, 44.578962330804586, 0.0], [-69.60461580239974, 44.57846133080534, 0.0], [-69.60818026906088, 44.57460979747799, 0.0], [-69.61070266905693, 44.57289953081397, 0.0], [-69.61164826905548, 44.57191499748217, 0.0]], "type": "LineString"}, "id": "95", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322388", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.6136828690523, 44.56775333082197, -69.61164826905548, 44.57191499748217], "geometry": {"coordinates": [[-69.61164826905548, 44.57191499748217, 0.0], [-69.6119626023883, 44.570671797484124, 0.0], [-69.6136828690523, 44.56775333082197, 0.0]], "type": "LineString"}, "id": "96", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322400", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.61965940237639, 44.56388919749463, -69.6136828690523, 44.56775333082197], "geometry": {"coordinates": [[-69.6136828690523, 44.56775333082197, 0.0], [-69.61377980238552, 44.567511530822344, 0.0], [-69.61676220238087, 44.56511033082609, 0.0], [-69.61965940237639, 44.56388919749463, 0.0]], "type": "LineString"}, "id": "97", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322408", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.62708060236486, 44.54837433085203, -69.61965940237639, 44.56388919749463], "geometry": {"coordinates": [[-69.61965940237639, 44.56388919749463, 0.0], [-69.62073986904136, 44.56343373082865, 0.0], [-69.62175826903979, 44.56272533082978, 0.0], [-69.6233810690373, 44.56004853083391, 0.0], [-69.62505320236801, 44.558165797503534, 0.0], [-69.62614160236632, 44.55498859750844, 0.0], [-69.62582360236684, 44.5525717975122, 0.0], [-69.62611286903302, 44.55093153084806, 0.0], [-69.62708060236486, 44.548514130851856, 0.0], [-69.62706766903153, 44.54837433085203, 0.0]], "type": "LineString"}, "id": "98", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322434", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.62942746902786, 44.54310919752686, -69.62690866903182, 44.54837433085203], "geometry": {"coordinates": [[-69.62706766903153, 44.54837433085203, 0.0], [-69.62690866903182, 44.54664973085471, 0.0], [-69.62763446903068, 44.54483653085754, 0.0], [-69.62855566902925, 44.54436993085824, 0.0], [-69.62942746902786, 44.54310919752686, 0.0]], "type": "LineString"}, "id": "99", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322438", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.63049846902624, 44.54310919752686, -69.62942746902786, 44.54398373085888], "geometry": {"coordinates": [[-69.62942746902786, 44.54310919752686, 0.0], [-69.62948400236115, 44.54318133086008, 0.0], [-69.629569802361, 44.54329113085993, 0.0], [-69.62965566902756, 44.543400930859775, 0.0], [-69.62974160236075, 44.54351073085962, 0.0], [-69.62982746902725, 44.543620530859414, 0.0], [-69.62991340236044, 44.543730397525906, 0.0], [-69.63002760236031, 44.543777197525856, 0.0], [-69.63018060236004, 44.543839997525765, 0.0], [-69.63033346902648, 44.543902797525675, 0.0], [-69.63049846902624, 44.54398373085888, 0.0]], "type": "LineString"}, "id": "100", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322440", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.63347460235497, 44.539878530865224, -69.62942746902786, 44.54310919752686], "geometry": {"coordinates": [[-69.62942746902786, 44.54310919752686, 0.0], [-69.62978980236068, 44.54174513086235, 0.0], [-69.63223846902355, 44.540673330864024, 0.0], [-69.63347460235497, 44.539878530865224, 0.0]], "type": "LineString"}, "id": "101", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322454", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.63389746902095, 44.538592130867244, -69.63347460235497, 44.539878530865224], "geometry": {"coordinates": [[-69.63347460235497, 44.539878530865224, 0.0], [-69.63389746902095, 44.538592130867244, 0.0]], "type": "LineString"}, "id": "102", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322464", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.65787286898376, 44.52247733089223, -69.65416626898951, 44.52486253088853], "geometry": {"coordinates": [[-69.65416626898951, 44.52486253088853, 0.0], [-69.65432366898926, 44.52469833088878, 0.0], [-69.65654086898581, 44.523514130890646, 0.0], [-69.65787286898376, 44.52247733089223, 0.0]], "type": "LineString"}, "id": "103", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322486", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.6724470689611, 44.5089655975799, -69.66482266897293, 44.51656773090144], "geometry": {"coordinates": [[-69.66482266897293, 44.51656773090144, 0.0], [-69.6662744689707, 44.514771197570894, 0.0], [-69.66840540230072, 44.51311213090679, 0.0], [-69.6724470689611, 44.5089655975799, 0.0]], "type": "LineString"}, "id": "104", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322512", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.67654526895473, 44.50008093092703, -69.6724470689611, 44.5089655975799], "geometry": {"coordinates": [[-69.6724470689611, 44.5089655975799, 0.0], [-69.67251606896099, 44.50888219758002, 0.0], [-69.6726056022942, 44.50877393091349, 0.0], [-69.67269520229405, 44.508665597580375, 0.0], [-69.6727848022939, 44.508557330913845, 0.0], [-69.67287426896047, 44.50844899758067, 0.0], [-69.67296386896032, 44.50834079758084, 0.0], [-69.67305346896018, 44.50823253091437, 0.0], [-69.67314300229339, 44.508124197581196, 0.0], [-69.67323260229324, 44.50801593091467, 0.0], [-69.6733222022931, 44.50790759758155, 0.0], [-69.6734116689596, 44.50779933091502, 0.0], [-69.67350126895946, 44.50769099758185, 0.0], [-69.67359080229267, 44.507582730915374, 0.0], [-69.67368040229252, 44.5074743975822, 0.0], [-69.67377000229237, 44.50736613091573, 0.0], [-69.67385946895894, 44.507257797582554, 0.0], [-69.67394906895879, 44.507149597582725, 0.0], [-69.67403866895864, 44.507041330916195, 0.0], [-69.67412820229185, 44.50693299758302, 0.0], [-69.67421780229171, 44.50682473091655, 0.0], [-69.67430726895822, 44.506716397583375, 0.0], [-69.67439686895807, 44.5066081309169, 0.0], [-69.67448646895792, 44.50649979758373, 0.0], [-69.67457600229113, 44.5063915309172, 0.0], [-69.67462426895776, 44.50627059758409, 0.0], [-69.67467246895768, 44.50614979758427, 0.0], [-69.67472080229089, 44.50602893091775, 0.0], [-69.67476906895752, 44.50590799758464, 0.0], [-69.67481740229078, 44.50578713091812, 0.0], [-69.67486560229071, 44.505666197585015, 0.0], [-69.67491386895728, 44.505545397585195, 0.0], [-69.67496220229054, 44.50542453091873, 0.0], [-69.67501040229047, 44.505303597585566, 0.0], [-69.67505866895704, 44.5051827309191, 0.0], [-69.6751070022903, 44.50506179758594, 0.0], [-69.67515520229023, 44.50494099758612, 0.0], [-69.67520346895685, 44.504820130919654, 0.0], [-69.67525180229006, 44.50469919758649, 0.0], [-69.67530000229004, 44.504578330920026, 0.0], [-69.67534826895661, 44.50445739758686, 0.0], [-69.67539660228988, 44.50433659758704, 0.0], [-69.6754448022898, 44.50421573092058, 0.0], [-69.67549306895637, 44.50409479758747, 0.0], [-69.67554140228964, 44.50397393092095, 0.0], [-69.67558960228956, 44.50385299758784, 0.0], [-69.67563786895619, 44.50373219758802, 0.0], [-69.67564160228949, 44.50369233092141, 0.0], [-69.67565320228948, 44.50356693092158, 0.0], [-69.67566480228948, 44.503441530921805, 0.0], [-69.67567646895611, 44.503316130921974, 0.0], [-69.6756880689561, 44.5031907309222, 0.0], [-69.67569966895604, 44.50306533092237, 0.0], [-69.67571126895604, 44.502939930922594, 0.0], [-69.67572286895603, 44.50281453092276, 0.0], [-69.67573460228937, 44.50268913092293, 0.0], [-69.6757462022893, 44.50256373092316, 0.0], [-69.6757578022893, 44.502438330923326, 0.0], [-69.67576940228929, 44.50231293092355, 0.0], [-69.67578106895593, 44.50218753092372, 0.0], [-69.67579266895592, 44.502062130923946, 0.0], [-69.67580426895591, 44.501936730924115, 0.0], [-69.67580886895587, 44.50192519759082, 0.0], [-69.67585720228914, 44.50180433092436, 0.0], [-69.67590540228906, 44.501683397591194, 0.0], [-69.67595366895569, 44.50156253092473, 0.0], [-69.67600200228895, 44.50144173092491, 0.0], [-69.67605020228888, 44.501320797591745, 0.0], [-69.67609846895544, 44.50119993092528, 0.0], [-69.67614680228871, 44.50107899759212, 0.0], [-69.67619500228864, 44.50095813092565, 0.0], [-69.6762432689552, 44.50083733092583, 0.0], [-69.67629146895513, 44.50071639759267, 0.0], [-69.6763398022884, 44.500595530926205, 0.0], [-69.67638806895502, 44.50047459759304, 0.0], [-69.67643626895494, 44.50035373092658, 0.0], [-69.67648460228816, 44.50023293092676, 0.0], [-69.67653286895478, 44.50011199759365, 0.0], [-69.67654526895473, 44.50008093092703, 0.0]], "type": "LineString"}, "id": "105", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322526", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.67911080228413, 44.494113930936294, -69.67654526895473, 44.50008093092703], "geometry": {"coordinates": [[-69.67654526895473, 44.50008093092703, 0.0], [-69.67654546895477, 44.50008039759365, 0.0], [-69.67658340228803, 44.49998539759383, 0.0], [-69.67662126895465, 44.49989039759396, 0.0], [-69.67665920228791, 44.49979539759414, 0.0], [-69.67669720228787, 44.49970053092761, 0.0], [-69.67673506895443, 44.49960553092774, 0.0], [-69.67677300228775, 44.49951053092792, 0.0], [-69.67681086895436, 44.49941553092805, 0.0], [-69.67684880228762, 44.49932053092817, 0.0], [-69.67688680228753, 44.499225597595, 0.0], [-69.67692466895414, 44.499130597595126, 0.0], [-69.67696260228746, 44.49903559759531, 0.0], [-69.67701100228737, 44.49897193092875, 0.0], [-69.67707686895392, 44.49888499759555, 0.0], [-69.67714286895381, 44.49879819759565, 0.0], [-69.67720880228705, 44.498711330929154, 0.0], [-69.67727480228695, 44.49862439759596, 0.0], [-69.67734066895349, 44.498537597596055, 0.0], [-69.67740666895344, 44.49845073092956, 0.0], [-69.67747260228663, 44.498363930929656, 0.0], [-69.67753860228652, 44.49827699759646, 0.0], [-69.67760446895312, 44.49819013092997, 0.0], [-69.67767046895301, 44.498103330930064, 0.0], [-69.67773640228626, 44.49801639759687, 0.0], [-69.67776500228621, 44.49792013093037, 0.0], [-69.67779360228616, 44.49782353093053, 0.0], [-69.67782226895275, 44.49772693093064, 0.0], [-69.6778508689527, 44.497630330930804, 0.0], [-69.677879602286, 44.49753373093097, 0.0], [-69.67790820228595, 44.49743713093113, 0.0], [-69.6779368689526, 44.49734053093124, 0.0], [-69.67796546895255, 44.497243930931404, 0.0], [-69.67799420228584, 44.49714733093157, 0.0], [-69.6780228022858, 44.49705073093173, 0.0], [-69.67805146895239, 44.49695399759855, 0.0], [-69.67808006895234, 44.49685739759866, 0.0], [-69.67810880228564, 44.496760797598824, 0.0], [-69.67813740228559, 44.49666419759899, 0.0], [-69.67816606895224, 44.49656759759915, 0.0], [-69.67819466895219, 44.49647099759926, 0.0], [-69.67822340228548, 44.496374397599425, 0.0], [-69.67825200228543, 44.49627779759959, 0.0], [-69.67828066895208, 44.49618119759975, 0.0], [-69.67830926895203, 44.49608459759986, 0.0], [-69.67833800228527, 44.495987997600025, 0.0], [-69.67836660228528, 44.49589133093349, 0.0], [-69.67839526895187, 44.49579473093365, 0.0], [-69.67842386895182, 44.49569813093382, 0.0], [-69.67845260228512, 44.49560153093398, 0.0], [-69.67848120228507, 44.49550493093409, 0.0], [-69.67850980228502, 44.495408330934254, 0.0], [-69.67853846895167, 44.49531173093442, 0.0], [-69.67856706895162, 44.49521513093458, 0.0], [-69.67859580228492, 44.49511853093469, 0.0], [-69.67862440228487, 44.495021930934854, 0.0], [-69.67865306895146, 44.49492533093502, 0.0], [-69.67868166895141, 44.49482859760184, 0.0], [-69.67871040228471, 44.494731997602, 0.0], [-69.67873900228466, 44.49463539760211, 0.0], [-69.67876766895131, 44.494538797602274, 0.0], [-69.67879626895126, 44.49444219760244, 0.0], [-69.67879826895125, 44.494440197602444, 0.0], [-69.67887640228446, 44.49435859760257, 0.0], [-69.67895446895102, 44.49427713093604, 0.0], [-69.67903266895087, 44.49419553093617, 0.0], [-69.67911080228413, 44.494113930936294, 0.0]], "type": "LineString"}, "id": "106", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325320", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.68239326894565, 44.48680913094762, -69.67911080228413, 44.494113930936294], "geometry": {"coordinates": [[-69.67911080228413, 44.494113930936294, 0.0], [-69.67925386895052, 44.49283639760495, 0.0], [-69.68055660228185, 44.48957273094334, 0.0], [-69.68239326894565, 44.48680913094762, 0.0]], "type": "LineString"}, "id": "107", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325324", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.68487826894182, 44.468630530975815, -69.68239326894565, 44.48680913094762], "geometry": {"coordinates": [[-69.68239326894565, 44.48680913094762, 0.0], [-69.68241306894566, 44.48446153095125, 0.0], [-69.68356900227718, 44.48064553095719, 0.0], [-69.68307780227792, 44.47728013096241, 0.0], [-69.68319386894444, 44.47469079763306, 0.0], [-69.68423000227614, 44.47163453097119, 0.0], [-69.68422640227618, 44.46980493097402, 0.0], [-69.68487826894182, 44.468630530975815, 0.0]], "type": "LineString"}, "id": "108", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325334", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.6860016022734, 44.46075839765473, -69.68487826894182, 44.468630530975815], "geometry": {"coordinates": [[-69.68487826894182, 44.468630530975815, 0.0], [-69.6854320022743, 44.46678299764534, 0.0], [-69.68535160227441, 44.46284759765149, 0.0], [-69.6860016022734, 44.46075839765473, 0.0]], "type": "LineString"}, "id": "109", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325352", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.6866998022723, 44.45854839765815, -69.6860016022734, 44.46075839765473], "geometry": {"coordinates": [[-69.6860016022734, 44.46075839765473, 0.0], [-69.6866998022723, 44.45854839765815, 0.0]], "type": "LineString"}, "id": "110", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325356", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.69690186892313, 44.43710053102478, -69.6866998022723, 44.45854839765815], "geometry": {"coordinates": [[-69.6866998022723, 44.45854839765815, 0.0], [-69.68768906893746, 44.45652793099464, 0.0], [-69.68887286893562, 44.45493873099707, 0.0], [-69.69089746893246, 44.44986213100498, 0.0], [-69.6924184689301, 44.447426797675405, 0.0], [-69.69295046892927, 44.44701199767604, 0.0], [-69.69509980225928, 44.44392013101418, 0.0], [-69.69659360225694, 44.44017313102, 0.0], [-69.69690186892313, 44.43710053102478, 0.0]], "type": "LineString"}, "id": "111", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325370", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.70894166890446, 44.41746299772194, -69.69690186892313, 44.43710053102478], "geometry": {"coordinates": [[-69.69690186892313, 44.43710053102478, 0.0], [-69.70051486891754, 44.428035331038814, 0.0], [-69.70365346891265, 44.42383773104535, 0.0], [-69.70744500224015, 44.4193805310523, 0.0], [-69.70773380223966, 44.41865519772006, 0.0], [-69.70894166890446, 44.41746299772194, 0.0]], "type": "LineString"}, "id": "112", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325392", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.72044286888661, 44.40790479773676, -69.70894166890446, 44.41746299772194], "geometry": {"coordinates": [[-69.70894166890446, 44.41746299772194, 0.0], [-69.7130672022314, 44.41124479773157, 0.0], [-69.71434806889607, 44.41032853106634, 0.0], [-69.72044286888661, 44.40790479773676, 0.0]], "type": "LineString"}, "id": "113", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325410", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.73169560220248, 44.37433159778885, -69.72307286888253, 44.404518731075314], "geometry": {"coordinates": [[-69.72307286888253, 44.404518731075314, 0.0], [-69.72316926888237, 44.404276997742386, 0.0], [-69.724062668881, 44.40341293107707, 0.0], [-69.72635360221079, 44.39995819774907, 0.0], [-69.72875840220706, 44.39391459775845, 0.0], [-69.72975866887214, 44.387717597768074, 0.0], [-69.72958680220574, 44.386768731102904, 0.0], [-69.72837260220763, 44.38521713110532, 0.0], [-69.7289016022068, 44.38388753110735, 0.0], [-69.72875506887374, 44.38333553110823, 0.0], [-69.72630420221083, 44.38074999777888, 0.0], [-69.72692920220987, 44.37917873111468, 0.0], [-69.72888500220682, 44.377484931117294, 0.0], [-69.73112900220337, 44.37506579778773, 0.0], [-69.73136926886963, 44.374461531121995, 0.0], [-69.73169560220248, 44.37433159778885, 0.0]], "type": "LineString"}, "id": "114", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325450", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.76172346882254, 44.33907513117691, -69.73169560220248, 44.37433159778885], "geometry": {"coordinates": [[-69.73169560220248, 44.37433159778885, 0.0], [-69.73235846886814, 44.373355731123695, 0.0], [-69.73498920219737, 44.37088433112757, 0.0], [-69.73518140219704, 44.37040079779496, 0.0], [-69.7383936021921, 44.36830819779823, 0.0], [-69.74237700218589, 44.36519633113636, 0.0], [-69.74534326884799, 44.36187873114153, 0.0], [-69.74681240217899, 44.359564131145135, 0.0], [-69.7477730688442, 44.35714673114887, 0.0], [-69.74909786884211, 44.355194731151926, 0.0], [-69.75013446884054, 44.35396799782046, 0.0], [-69.75235426883705, 44.35206639782342, 0.0], [-69.7538962688347, 44.35002779782661, 0.0], [-69.75488186883314, 44.348007331163046, 0.0], [-69.75613566883123, 44.34669379783179, 0.0], [-69.75847100216095, 44.34311819783733, 0.0], [-69.76107406882352, 44.34024953117512, 0.0], [-69.76172346882254, 44.33907513117691, 0.0]], "type": "LineString"}, "id": "115", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325472", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.76555426881657, 44.33449613118404, -69.76172346882254, 44.33907513117691], "geometry": {"coordinates": [[-69.76172346882254, 44.33907513117691, 0.0], [-69.76181946882241, 44.338833397843985, 0.0], [-69.76555426881657, 44.33449613118404, 0.0]], "type": "LineString"}, "id": "116", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325480", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.76845860214542, 44.32764079786136, -69.76555426881657, 44.33449613118404], "geometry": {"coordinates": [[-69.76555426881657, 44.33449613118404, 0.0], [-69.76646600214849, 44.33219959785424, 0.0], [-69.76699666881433, 44.33178459785489, 0.0], [-69.76845860214542, 44.32764079786136, 0.0]], "type": "LineString"}, "id": "117", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325488", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.77145520214077, 44.319629331207125, -69.76845860214542, 44.32764079786136], "geometry": {"coordinates": [[-69.76845860214542, 44.32764079786136, 0.0], [-69.76982720214329, 44.32465333119933, 0.0], [-69.76977340214336, 44.32294513120195, 0.0], [-69.77063680214201, 44.320769531205315, 0.0], [-69.77145520214077, 44.319629331207125, 0.0]], "type": "LineString"}, "id": "118", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325492", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.78986060211219, 44.27539473127575, -69.77145520214077, 44.319629331207125], "geometry": {"coordinates": [[-69.77145520214077, 44.319629331207125, 0.0], [-69.77209820213977, 44.316625731211786, 0.0], [-69.77281760213867, 44.3148127312146, 0.0], [-69.77298100213841, 44.31301793121736, 0.0], [-69.77241906880596, 44.31120699788687, 0.0], [-69.77251200213914, 44.310050797888664, 0.0], [-69.77294060213848, 44.30804839789175, 0.0], [-69.77423526880312, 44.30478513123012, 0.0], [-69.77570206880085, 44.30247039790038, 0.0], [-69.77759726879788, 44.298153531240416, 0.0], [-69.77942800212838, 44.29630419790999, 0.0], [-69.7804600021268, 44.294162797913316, 0.0], [-69.78255260212353, 44.291191397917885, 0.0], [-69.78423920212094, 44.289704597920206, 0.0], [-69.78706266878322, 44.28857813125529, 0.0], [-69.78759300211573, 44.2881629979226, 0.0], [-69.78826366878133, 44.28647093125858, 0.0], [-69.78871406878062, 44.28395099792914, 0.0], [-69.7897200687791, 44.281412797933115, 0.0], [-69.78986060211219, 44.28013579793509, 0.0], [-69.78796686878178, 44.277533731272456, 0.0], [-69.78769860211554, 44.2768267979402, 0.0], [-69.78771780211554, 44.27539473127575, 0.0]], "type": "LineString"}, "id": "119", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325524", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.78781360211536, 44.2683137979534, -69.78175020212478, 44.27539473127575], "geometry": {"coordinates": [[-69.78771780211554, 44.27539473127575, 0.0], [-69.78781360211536, 44.275152997942826, 0.0], [-69.78701206878327, 44.2739465979447, 0.0], [-69.78664500211721, 44.27256693128015, 0.0], [-69.78506760211963, 44.270550997949954, 0.0], [-69.78441306878733, 44.2698965312843, 0.0], [-69.78175020212478, 44.2683137979534, 0.0]], "type": "LineString"}, "id": "120", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325538", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.78175020212478, 44.26301339796163, -69.7736156021374, 44.2683137979534], "geometry": {"coordinates": [[-69.78175020212478, 44.2683137979534, 0.0], [-69.7779986687973, 44.266249731289975, 0.0], [-69.77683660213239, 44.26549253129116, 0.0], [-69.77511600213506, 44.26383913129371, 0.0], [-69.7736156021374, 44.26301339796163, 0.0]], "type": "LineString"}, "id": "121", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325544", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.7736156021374, 44.25047773131445, -69.76908240214442, 44.26301339796163], "geometry": {"coordinates": [[-69.7736156021374, 44.26301339796163, 0.0], [-69.77327720213793, 44.26294493129507, 0.0], [-69.77133660214093, 44.26046359796561, 0.0], [-69.76961040214366, 44.25698133130436, 0.0], [-69.76946366881054, 44.256429397971885, 0.0], [-69.7705178688089, 44.25377073130932, 0.0], [-69.77051500214225, 44.25285633131074, 0.0], [-69.77017366880943, 44.251873397978954, 0.0], [-69.76908240214442, 44.25047773131445, 0.0]], "type": "LineString"}, "id": "122", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325562", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.77043960214235, 44.2369147313355, -69.76722660214733, 44.25047773131445], "geometry": {"coordinates": [[-69.76908240214442, 44.25047773131445, 0.0], [-69.76895526881134, 44.24849379798417, 0.0], [-69.76836860214553, 44.24628633132096, 0.0], [-69.76722660214733, 44.24409713132434, 0.0], [-69.7689064688114, 44.240781797996135, 0.0], [-69.77043960214235, 44.2369147313355, 0.0]], "type": "LineString"}, "id": "123", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325576", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.77053540214217, 44.23070539801182, -69.76942966881057, 44.2369147313355], "geometry": {"coordinates": [[-69.77043960214235, 44.2369147313355, 0.0], [-69.77053540214217, 44.23667299800252, 0.0], [-69.77045620214233, 44.23456833133912, 0.0], [-69.76942966881057, 44.23070539801182, 0.0]], "type": "LineString"}, "id": "124", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325580", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.7695254688104, 44.22674399801792, -69.76533666881693, 44.23070539801182], "geometry": {"coordinates": [[-69.76942966881057, 44.23070539801182, 0.0], [-69.7695254688104, 44.23046373134548, 0.0], [-69.76736900214712, 44.22806913134923, 0.0], [-69.76533666881693, 44.22674399801792, 0.0]], "type": "LineString"}, "id": "125", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325586", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.76292360215399, 44.197529398063296, -69.75901860216004, 44.22255693135776], "geometry": {"coordinates": [[-69.76206426882203, 44.22255693135776, 0.0], [-69.76102146882363, 44.22104033136014, 0.0], [-69.76011966882504, 44.21824693136449, 0.0], [-69.76079046882398, 44.216555198033745, 0.0], [-69.76090326882382, 44.21396719803778, 0.0], [-69.76183600215569, 44.211153731375475, 0.0], [-69.76175986882248, 44.209963531377355, 0.0], [-69.76288420215405, 44.20666659804914, 0.0], [-69.76292360215399, 44.20380279805357, 0.0], [-69.76228960215496, 44.20171639805682, 0.0], [-69.75901860216004, 44.197529398063296, 0.0]], "type": "LineString"}, "id": "126", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325612", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.75901860216004, 44.192085731405086, -69.75405506883442, 44.197529398063296], "geometry": {"coordinates": [[-69.75901860216004, 44.197529398063296, 0.0], [-69.75533946883246, 44.19391233140226, 0.0], [-69.75405506883442, 44.192085731405086, 0.0]], "type": "LineString"}, "id": "127", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325626", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.75405506883442, 44.19006773140819, -69.75375946883491, 44.192085731405086], "geometry": {"coordinates": [[-69.75405506883442, 44.192085731405086, 0.0], [-69.75375946883491, 44.19006773140819, 0.0]], "type": "LineString"}, "id": "128", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325628", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.7624694688214, 44.16624839811186, -69.76184426882236, 44.16690493144415], "geometry": {"coordinates": [[-69.76184426882236, 44.16690493144415, 0.0], [-69.7624694688214, 44.16624839811186, 0.0]], "type": "LineString"}, "id": "129", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325656", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.76424306881864, 44.15217033146706, -69.76222726882173, 44.16624839811186], "geometry": {"coordinates": [[-69.7624694688214, 44.16624839811186, 0.0], [-69.76222726882173, 44.16593833144566, 0.0], [-69.76275386882094, 44.16460919811442, 0.0], [-69.76245820215473, 44.16259139811751, 0.0], [-69.7637506021527, 44.159329131455934, 0.0], [-69.7636266021529, 44.15825979812428, 0.0], [-69.76424306881864, 44.15486059812952, 0.0], [-69.76418960215204, 44.15315293146551, 0.0], [-69.76384886881925, 44.15217033146706, 0.0]], "type": "LineString"}, "id": "130", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325672", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.76384886881925, 44.14565793147716, -69.75876440216047, 44.15217033146706], "geometry": {"coordinates": [[-69.76384886881925, 44.15217033146706, 0.0], [-69.76383620215262, 44.15197193146736, 0.0], [-69.76256500215459, 44.15034379813653, 0.0], [-69.76169500215593, 44.14977599813744, 0.0], [-69.75876440216047, 44.14565793147716, 0.0]], "type": "LineString"}, "id": "131", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325682", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.78620306878452, 44.08831293156618, -69.75742740216253, 44.14565793147716], "geometry": {"coordinates": [[-69.75876440216047, 44.14565793147716, 0.0], [-69.75808600216152, 44.1446067314788, 0.0], [-69.75742740216253, 44.14212379814927, 0.0], [-69.7575682021623, 44.14084719815128, 0.0], [-69.75886046882698, 44.137585131489686, 0.0], [-69.75945726882605, 44.135617731492744, 0.0], [-69.75935600215956, 44.13403099816185, 0.0], [-69.76174566882253, 44.127075931506, 0.0], [-69.76123626882327, 44.126058998174244, 0.0], [-69.76204960215534, 44.12400513151073, 0.0], [-69.76640020214859, 44.11992753151708, 0.0], [-69.76711766881414, 44.11811519818656, 0.0], [-69.7668474021479, 44.116494331522404, 0.0], [-69.76715680214744, 44.11525193152431, 0.0], [-69.76700466881437, 44.11287193152805, 0.0], [-69.76810466881261, 44.110093131532324, 0.0], [-69.76952260214375, 44.10881439820099, 0.0], [-69.77079420214181, 44.106983998203816, 0.0], [-69.77179820214025, 44.10444693154113, 0.0], [-69.77165180214047, 44.10389519820865, 0.0], [-69.7730860688049, 44.10027079821424, 0.0], [-69.77383146880373, 44.09976933154837, 0.0], [-69.77428720213635, 44.099078598216124, 0.0], [-69.77568240213418, 44.09831739821732, 0.0], [-69.7770522021321, 44.09715953155245, 0.0], [-69.77880420212938, 44.09503499822239, 0.0], [-69.78062640212653, 44.092272331560025, 0.0], [-69.78334306878895, 44.09047379822948, 0.0], [-69.78555646878556, 44.08948679823101, 0.0], [-69.78620306878452, 44.08831293156618, 0.0]], "type": "LineString"}, "id": "132", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325716", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.7953118687704, 44.08831293156618, -69.78620306878452, 44.08956673156422], "geometry": {"coordinates": [[-69.78620306878452, 44.08831293156618, 0.0], [-69.78627026878445, 44.08839899823266, 0.0], [-69.78633746878432, 44.0884851315659, 0.0], [-69.78640480211754, 44.088571198232444, 0.0], [-69.78647200211748, 44.08865739823227, 0.0], [-69.78653920211735, 44.08874353156551, 0.0], [-69.78660646878393, 44.088829598231996, 0.0], [-69.7866736687838, 44.08891573156524, 0.0], [-69.78674086878368, 44.08900179823178, 0.0], [-69.78680806878361, 44.08908793156496, 0.0], [-69.78694066878342, 44.08911479823155, 0.0], [-69.7870734021165, 44.089141731564894, 0.0], [-69.7872060021163, 44.08916853156484, 0.0], [-69.78733860211611, 44.089195398231425, 0.0], [-69.78747120211591, 44.08922233156477, 0.0], [-69.78760380211571, 44.08924913156471, 0.0], [-69.78773640211551, 44.0892759982313, 0.0], [-69.78786900211531, 44.08930293156459, 0.0], [-69.78800166878176, 44.08932973156459, 0.0], [-69.78813426878156, 44.08935659823118, 0.0], [-69.78826686878136, 44.089383531564465, 0.0], [-69.78839946878111, 44.08941039823111, 0.0], [-69.78853206878091, 44.08943719823105, 0.0], [-69.78866480211406, 44.08946413156434, 0.0], [-69.78879740211386, 44.089490998230985, 0.0], [-69.78893000211366, 44.08951779823093, 0.0], [-69.78906260211346, 44.08954473156422, 0.0], [-69.78917106877992, 44.08956673156422, 0.0], [-69.78930866877971, 44.0895603982309, 0.0], [-69.78944620211286, 44.08955413156423, 0.0], [-69.78958380211265, 44.089547931564255, 0.0], [-69.78972126877909, 44.08954159823094, 0.0], [-69.78985886877888, 44.08953539823091, 0.0], [-69.78999640211197, 44.08952913156429, 0.0], [-69.79013400211176, 44.08952293156426, 0.0], [-69.7902714687782, 44.089516598230944, 0.0], [-69.79040906877799, 44.08951033156427, 0.0], [-69.79054660211114, 44.0895041315643, 0.0], [-69.79068406877758, 44.08949779823098, 0.0], [-69.79082166877737, 44.089491531564306, 0.0], [-69.79095920211051, 44.08948533156433, 0.0], [-69.7910968021103, 44.089478998231016, 0.0], [-69.79123426877675, 44.08947279823104, 0.0], [-69.79137186877654, 44.08946653156437, 0.0], [-69.79150940210963, 44.08946019823105, 0.0], [-69.79164700210941, 44.08945399823102, 0.0], [-69.79178446877586, 44.089447731564405, 0.0], [-69.79192206877565, 44.089441531564376, 0.0], [-69.7920596021088, 44.08943519823106, 0.0], [-69.79219720210858, 44.08942893156444, 0.0], [-69.79232706877502, 44.0894229982311, 0.0], [-69.7924526021082, 44.089382198231135, 0.0], [-69.79257800210797, 44.08934139823123, 0.0], [-69.79270346877445, 44.08930059823126, 0.0], [-69.79282900210757, 44.08925979823135, 0.0], [-69.79295446877404, 44.08921899823139, 0.0], [-69.79308000210722, 44.089178131564836, 0.0], [-69.79320540210699, 44.08913733156487, 0.0], [-69.79333086877347, 44.08909653156496, 0.0], [-69.79345640210664, 44.089055731565, 0.0], [-69.79358186877306, 44.08901493156509, 0.0], [-69.79370740210624, 44.088974131565124, 0.0], [-69.79383280210601, 44.088933331565215, 0.0], [-69.79395826877249, 44.08889253156525, 0.0], [-69.79408380210566, 44.088851598232, 0.0], [-69.79420926877214, 44.08881079823203, 0.0], [-69.79433480210525, 44.088769998232124, 0.0], [-69.79446020210503, 44.08872919823216, 0.0], [-69.7945856687715, 44.08868839823225, 0.0], [-69.79471120210468, 44.088647598232285, 0.0], [-69.79483666877115, 44.08860679823238, 0.0], [-69.79496220210427, 44.08856593156577, 0.0], [-69.7950466687708, 44.08853839823246, 0.0], [-69.7951792687706, 44.088565331565746, 0.0], [-69.7953118687704, 44.08859219823239, 0.0]], "type": "LineString"}, "id": "133", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325718", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.8189754687337, 44.02492213166454, -69.7953118687704, 44.08859219823239], "geometry": {"coordinates": [[-69.7953118687704, 44.08859219823239, 0.0], [-69.79784426876648, 44.08757133156729, 0.0], [-69.79872026876512, 44.08597999823644, 0.0], [-69.79923360209767, 44.08343093157373, 0.0], [-69.79919220209769, 44.08103473157746, 0.0], [-69.80026220209606, 44.07895219824735, 0.0], [-69.80250506875922, 44.0717127315919, 0.0], [-69.80385680209048, 44.066415331600126, 0.0], [-69.80629060208668, 44.05806519827979, 0.0], [-69.8108038020797, 44.051639731623084, 0.0], [-69.81485886874003, 44.045121531633185, 0.0], [-69.81776940206885, 44.04243919830401, 0.0], [-69.81886826873381, 44.039655331641654, 0.0], [-69.8189754687337, 44.033752798317494, 0.0], [-69.81376566874178, 44.02492213166454, 0.0]], "type": "LineString"}, "id": "134", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325834", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.78817780211483, 44.0456431316324, -69.78407080212116, 44.08831293156618], "geometry": {"coordinates": [[-69.78620306878452, 44.08831293156618, 0.0], [-69.78600880211815, 44.08788199823351, 0.0], [-69.78614900211795, 44.08660553156881, 0.0], [-69.78498680211976, 44.08493453157138, 0.0], [-69.78444880212061, 44.08260699824166, 0.0], [-69.7851654021195, 44.08079479824448, 0.0], [-69.78624486878448, 44.07944759824659, 0.0], [-69.78817780211483, 44.074097598254866, 0.0], [-69.78713666878309, 44.07258173159056, 0.0], [-69.78528046878597, 44.07220553159118, 0.0], [-69.78407080212116, 44.070655398260214, 0.0], [-69.78497826878646, 44.068359998263816, 0.0], [-69.78598746878487, 44.06765113159821, 0.0], [-69.78665620211717, 44.065959731600856, 0.0], [-69.78638880211759, 44.065253131601935, 0.0], [-69.78630926878435, 44.0631491316052, 0.0], [-69.78663406878388, 44.05956133161078, 0.0], [-69.78568560211869, 44.056889731614945, 0.0], [-69.78606766878477, 44.05592333161644, 0.0], [-69.7862492021178, 44.052697931621424, 0.0], [-69.78530086878595, 44.05002639829223, 0.0], [-69.7868510687835, 44.0456431316324, 0.0]], "type": "LineString"}, "id": "135", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325722", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.79515706877066, 44.0385555316434, -69.7868510687835, 44.0456431316324], "geometry": {"coordinates": [[-69.7868510687835, 44.0456431316324, 0.0], [-69.7869178687834, 44.04558399829915, 0.0], [-69.78700466878331, 44.04550733163262, 0.0], [-69.78709126878317, 44.045430731632734, 0.0], [-69.78717800211638, 44.045353998299504, 0.0], [-69.78726466878288, 44.045277331632974, 0.0], [-69.78735126878274, 44.04520073163309, 0.0], [-69.78743800211595, 44.04512399829986, 0.0], [-69.78752466878251, 44.04504733163333, 0.0], [-69.78761140211572, 44.04497073163344, 0.0], [-69.78769820211556, 44.04489399830021, 0.0], [-69.78778480211543, 44.044817398300324, 0.0], [-69.78787146878193, 44.044740731633794, 0.0], [-69.78795806878179, 44.044663998300564, 0.0], [-69.788044802115, 44.04458739830068, 0.0], [-69.78813146878156, 44.04451073163415, 0.0], [-69.78821820211476, 44.04443399830092, 0.0], [-69.78830486878127, 44.04435739830103, 0.0], [-69.78839160211447, 44.0442807316345, 0.0], [-69.78847826878103, 44.044204131634615, 0.0], [-69.7885648687809, 44.044127398301384, 0.0], [-69.7886516021141, 44.044050731634854, 0.0], [-69.7887382687806, 44.04397413163497, 0.0], [-69.78882506878045, 44.04389739830174, 0.0], [-69.78891146878033, 44.04382073163521, 0.0], [-69.78899826878018, 44.04374413163532, 0.0], [-69.78908500211338, 44.04366739830215, 0.0], [-69.78917166877994, 44.04359079830226, 0.0], [-69.78925846877979, 44.043514131635675, 0.0], [-69.78934506877965, 44.0434373983025, 0.0], [-69.78943166877951, 44.043360798302615, 0.0], [-69.78951840211272, 44.04328413163603, 0.0], [-69.78960506877928, 44.043207398302854, 0.0], [-69.78969186877913, 44.04313079830297, 0.0], [-69.78977846877899, 44.04305413163638, 0.0], [-69.78986506877885, 44.04297739830321, 0.0], [-69.78995180211206, 44.04290079830332, 0.0], [-69.79003846877856, 44.042824131636735, 0.0], [-69.79012526877847, 44.042747531636905, 0.0], [-69.79021186877833, 44.042670798303675, 0.0], [-69.79022200211165, 44.04266379830369, 0.0], [-69.79032140211149, 44.04259559830376, 0.0], [-69.79042106877802, 44.04252739830389, 0.0], [-69.79052060211114, 44.042459198304016, 0.0], [-69.79062020211103, 44.04239113163743, 0.0], [-69.79071960211087, 44.04232293163756, 0.0], [-69.79081906877735, 44.04225473163763, 0.0], [-69.79091866877724, 44.04218653163775, 0.0], [-69.79101820211042, 44.04211833163788, 0.0], [-69.79111780211025, 44.04205013163795, 0.0], [-69.79121720211009, 44.04198193163808, 0.0], [-69.79131660210993, 44.04191373163815, 0.0], [-69.79141626877646, 44.04184553163827, 0.0], [-69.79151580210964, 44.0417773316384, 0.0], [-69.79161540210947, 44.04170913163847, 0.0], [-69.79171480210931, 44.0416409316386, 0.0], [-69.79181420210915, 44.04157273163872, 0.0], [-69.79191380210904, 44.04150453163879, 0.0], [-69.79201340210886, 44.04143633163892, 0.0], [-69.79211286877535, 44.04136813163905, 0.0], [-69.79221240210853, 44.04129993163912, 0.0], [-69.79231200210842, 44.04123173163924, 0.0], [-69.79241140210826, 44.04116353163931, 0.0], [-69.79251100210809, 44.04109533163944, 0.0], [-69.79261046877457, 44.04102713163957, 0.0], [-69.79271000210775, 44.040958931639636, 0.0], [-69.79271600210774, 44.040946598306334, 0.0], [-69.79276240210771, 44.04085359830651, 0.0], [-69.79280860210764, 44.04076073163998, 0.0], [-69.79285486877421, 44.0406677983068, 0.0], [-69.79290106877414, 44.040574931640265, 0.0], [-69.79294720210743, 44.040481931640386, 0.0], [-69.79299360210734, 44.04038899830721, 0.0], [-69.79303966877393, 44.04029613164067, 0.0], [-69.79308586877386, 44.040203198307495, 0.0], [-69.79313226877377, 44.040110198307616, 0.0], [-69.79317840210706, 44.04001733164114, 0.0], [-69.79322480210698, 44.0399243983079, 0.0], [-69.79327086877356, 44.039831531641425, 0.0], [-69.79331726877348, 44.03973853164155, 0.0], [-69.79336340210676, 44.03964559830837, 0.0], [-69.79340960210669, 44.039552731641834, 0.0], [-69.79345586877326, 44.039459798308656, 0.0], [-69.7935020687732, 44.03936693164212, 0.0], [-69.79354826877312, 44.0392739316423, 0.0], [-69.7935946021064, 44.039180998309064, 0.0], [-69.79371440210622, 44.039132998309185, 0.0], [-69.79383460210602, 44.03908493164255, 0.0], [-69.79395486877252, 44.039036798309326, 0.0], [-69.79407506877232, 44.03898873164269, 0.0], [-69.79419526877211, 44.038940531642766, 0.0], [-69.79431560210526, 44.03889239830954, 0.0], [-69.79443566877177, 44.03884433164296, 0.0], [-69.79455600210491, 44.03879613164304, 0.0], [-69.79467620210471, 44.03874799830976, 0.0], [-69.79479640210451, 44.03869993164318, 0.0], [-69.79491666877101, 44.0386517983099, 0.0], [-69.79503680210416, 44.038603598309976, 0.0], [-69.79515706877066, 44.0385555316434, 0.0]], "type": "LineString"}, "id": "136", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325724", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.8221180687288, 44.00009133170312, -69.82157640206299, 44.001393398367725], "geometry": {"coordinates": [[-69.82157640206299, 44.001393398367725, 0.0], [-69.8216048687296, 44.00132499836786, 0.0], [-69.82164406872954, 44.00123053170131, 0.0], [-69.82168346872947, 44.00113593170147, 0.0], [-69.82172286872941, 44.00104139836827, 0.0], [-69.8217622020627, 44.000946931701776, 0.0], [-69.82180146872929, 44.00085239836858, 0.0], [-69.82184080206258, 44.00075779836874, 0.0], [-69.82188000206247, 44.000663331702185, 0.0], [-69.8219194687291, 44.000568798369045, 0.0], [-69.8219588020624, 44.00047419836915, 0.0], [-69.82199806872899, 44.00037973170265, 0.0], [-69.82203746872892, 44.000285198369454, 0.0], [-69.82207680206221, 44.00019073170296, 0.0], [-69.8221160687288, 44.00009613170306, 0.0], [-69.8221180687288, 44.00009133170312, 0.0]], "type": "LineString"}, "id": "137", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325728", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.8394313353686, 43.986233798391254, -69.8221180687288, 44.00009133170312], "geometry": {"coordinates": [[-69.8221180687288, 44.00009133170312, 0.0], [-69.82214286872875, 44.00003199836988, 0.0], [-69.82220886872864, 43.99987313170345, 0.0], [-69.82227500206187, 43.99971413170368, 0.0], [-69.8223412020618, 43.999555131703914, 0.0], [-69.82240740206169, 43.999396131704145, 0.0], [-69.82247346872822, 43.99923713170443, 0.0], [-69.82248186872823, 43.99923333170443, 0.0], [-69.82267800206125, 43.99914519837125, 0.0], [-69.82287406872763, 43.99905699837137, 0.0], [-69.82307020206065, 43.99896879837149, 0.0], [-69.82326626872702, 43.99888059837161, 0.0], [-69.8234622687267, 43.99879239837179, 0.0], [-69.82365840205972, 43.998704331705255, 0.0], [-69.8238544687261, 43.998616131705376, 0.0], [-69.82405060205912, 43.998527931705496, 0.0], [-69.8242466687255, 43.99843973170567, 0.0], [-69.82444260205853, 43.998351531705794, 0.0], [-69.8246386687249, 43.998263398372615, 0.0], [-69.82483500205791, 43.998175198372735, 0.0], [-69.82503100205759, 43.998086998372855, 0.0], [-69.82522700205732, 43.99799879837303, 0.0], [-69.82542306872364, 43.99791059837315, 0.0], [-69.82561920205671, 43.99782253170662, 0.0], [-69.82581526872303, 43.99773433170674, 0.0], [-69.82601140205611, 43.997646131706915, 0.0], [-69.82620726872244, 43.997557931707036, 0.0], [-69.82640360205545, 43.997469731707156, 0.0], [-69.82659960205518, 43.997381531707276, 0.0], [-69.82679560205486, 43.9972933983741, 0.0], [-69.82699166872123, 43.99720519837422, 0.0], [-69.82718780205425, 43.997116998374395, 0.0], [-69.82738386872063, 43.997028798374515, 0.0], [-69.8275798687203, 43.996940598374636, 0.0], [-69.82777600205333, 43.99685239837481, 0.0], [-69.8279720687197, 43.99676433170828, 0.0], [-69.82816806871938, 43.9966761317084, 0.0], [-69.82836406871911, 43.99658793170852, 0.0], [-69.82856040205212, 43.99649973170864, 0.0], [-69.82875626871851, 43.996411531708816, 0.0], [-69.82895240205153, 43.996323331708936, 0.0], [-69.8291484687179, 43.99623513170906, 0.0], [-69.82934446871758, 43.99614699837588, 0.0], [-69.8295406020506, 43.996058798376, 0.0], [-69.82973666871698, 43.995970598376175, 0.0], [-69.82993266871665, 43.995882398376295, 0.0], [-69.83012886871637, 43.995794198376416, 0.0], [-69.83032486871605, 43.99570599837659, 0.0], [-69.83052086871572, 43.99561779837671, 0.0], [-69.8307170020488, 43.995529598376834, 0.0], [-69.83091300204848, 43.995441398376954, 0.0], [-69.83110906871485, 43.99535333171042, 0.0], [-69.83130520204787, 43.995265131710596, 0.0], [-69.83150126871425, 43.995176931710716, 0.0], [-69.83169726871392, 43.99508873171084, 0.0], [-69.8318932687136, 43.995000531711014, 0.0], [-69.83208926871333, 43.994912331711134, 0.0], [-69.832285468713, 43.994824131711255, 0.0], [-69.83248146871273, 43.99473593171143, 0.0], [-69.83267760204575, 43.99464773171155, 0.0], [-69.83287360204542, 43.99455953171167, 0.0], [-69.83304600204514, 43.99445759837852, 0.0], [-69.83322446871153, 43.99435199837865, 0.0], [-69.83340320204462, 43.994246398378834, 0.0], [-69.83358160204432, 43.99414093171231, 0.0], [-69.83376006871072, 43.994035331712496, 0.0], [-69.83393866871046, 43.99392973171268, 0.0], [-69.8341172020435, 43.99382413171281, 0.0], [-69.8342956687099, 43.993718531713, 0.0], [-69.83447426870958, 43.99361293171313, 0.0], [-69.83465280204268, 43.99350733171332, 0.0], [-69.83483126870908, 43.99340173171345, 0.0], [-69.83500986870877, 43.99329619838028, 0.0], [-69.83501326870879, 43.993287531713634, 0.0], [-69.83507620204199, 43.9931279317139, 0.0], [-69.8351390687086, 43.99296819838082, 0.0], [-69.8352020687085, 43.99280859838109, 0.0], [-69.8352650020417, 43.9926489983813, 0.0], [-69.8353278687083, 43.992489331714864, 0.0], [-69.8353908020415, 43.99232973171513, 0.0], [-69.8354538020414, 43.99216999838205, 0.0], [-69.83551660204131, 43.99201039838232, 0.0], [-69.83557960204121, 43.991850731715886, 0.0], [-69.83564246870782, 43.99169113171615, 0.0], [-69.83570546870772, 43.99153139838302, 0.0], [-69.83576846870761, 43.991371798383284, 0.0], [-69.83583126870752, 43.99121219838355, 0.0], [-69.83589420204072, 43.991052531717116, 0.0], [-69.83595706870733, 43.99089293171738, 0.0], [-69.83602006870723, 43.990733198384305, 0.0], [-69.83608300204043, 43.990573598384515, 0.0], [-69.83614580204033, 43.99041393171814, 0.0], [-69.83685326870591, 43.98974433171918, 0.0], [-69.8375652687048, 43.98871599838742, 0.0], [-69.83843846870349, 43.987451531722684, 0.0], [-69.8394313353686, 43.986233798391254, 0.0]], "type": "LineString"}, "id": "138", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3326714", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.76184426882236, 44.16690493144415, -69.75227006883722, 44.19006773140819], "geometry": {"coordinates": [[-69.75375946883491, 44.19006773140819, 0.0], [-69.75370886883496, 44.18927433140942, 0.0], [-69.75315120216919, 44.18837813141084, 0.0], [-69.75322166883575, 44.187739731411796, 0.0], [-69.75227006883722, 44.18415293141737, 0.0], [-69.75236320217039, 44.182996998085855, 0.0], [-69.75360860216847, 44.17985553142404, 0.0], [-69.75429360216742, 44.17490353143177, 0.0], [-69.75525140216592, 44.17248699810216, 0.0], [-69.75631040216427, 44.17165733143679, 0.0], [-69.75891260216025, 44.17061833143839, 0.0], [-69.76040526882457, 44.169615531439945, 0.0], [-69.7614388021563, 44.16838913144187, 0.0], [-69.76184426882236, 44.16690493144415, 0.0]], "type": "LineString"}, "id": "139", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325654", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.81376566874178, 44.02492213166454, -69.79515706877066, 44.0385555316434], "geometry": {"coordinates": [[-69.79515706877066, 44.0385555316434, 0.0], [-69.79527726877046, 44.03850739831012, 0.0], [-69.79539746877026, 44.03845933164354, 0.0], [-69.79551760210342, 44.03841113164361, 0.0], [-69.79563786876992, 44.03836299831033, 0.0], [-69.79575820210306, 44.038314931643754, 0.0], [-69.79587840210286, 44.03826673164383, 0.0], [-69.79599860210266, 44.03821859831055, 0.0], [-69.79611866876917, 44.03817053164397, 0.0], [-69.79623900210231, 44.03812239831075, 0.0], [-69.79635926876875, 44.038074198310824, 0.0], [-69.79647946876861, 44.03802613164419, 0.0], [-69.79659966876841, 44.037977998310964, 0.0], [-69.79671980210156, 44.03792979831104, 0.0], [-69.796840068768, 44.03788173164446, 0.0], [-69.79696040210115, 44.03783359831118, 0.0], [-69.797080602101, 44.0377855316446, 0.0], [-69.7972008021008, 44.03773733164468, 0.0], [-69.7973210687673, 44.0376891983114, 0.0], [-69.7974412021004, 44.03764113164482, 0.0], [-69.7975614687669, 44.037592931644895, 0.0], [-69.7976816687667, 44.037544798311615, 0.0], [-69.79780186876656, 44.037496731645035, 0.0], [-69.79792206876635, 44.03744853164511, 0.0], [-69.79804226876615, 44.03740039831183, 0.0], [-69.79816246876595, 44.03735233164525, 0.0], [-69.7982828020991, 44.03730419831197, 0.0], [-69.7984030687656, 44.03725599831205, 0.0], [-69.79852320209875, 44.03720793164547, 0.0], [-69.79864340209855, 44.037159798312246, 0.0], [-69.7987636020984, 44.03711159831232, 0.0], [-69.7988838020982, 44.037063531645686, 0.0], [-69.799004002098, 44.03701539831246, 0.0], [-69.7991242687645, 44.03696719831254, 0.0], [-69.7992444687643, 44.0369191316459, 0.0], [-69.79936480209744, 44.03687099831268, 0.0], [-69.7994848687639, 44.036822798312755, 0.0], [-69.79960506876375, 44.036774731646176, 0.0], [-69.79972520209691, 44.036726598312896, 0.0], [-69.79984546876335, 44.03667853164632, 0.0], [-69.7999658020965, 44.03663033164639, 0.0], [-69.80008600209635, 44.03658219831311, 0.0], [-69.80020620209615, 44.03653413164653, 0.0], [-69.80032640209595, 44.03648593164661, 0.0], [-69.80044660209575, 44.03643779831333, 0.0], [-69.8005668020956, 44.03638973164675, 0.0], [-69.80068706876204, 44.036341531646826, 0.0], [-69.80080726876184, 44.036293398313546, 0.0], [-69.8009274687617, 44.03624533164697, 0.0], [-69.8010476687615, 44.03619713164704, 0.0], [-69.80116800209464, 44.03614899831376, 0.0], [-69.80120780209461, 44.03611559831381, 0.0], [-69.80129740209446, 44.03604073164729, 0.0], [-69.80138686876097, 44.035965798314066, 0.0], [-69.80147646876082, 44.0358907983142, 0.0], [-69.80156606876068, 44.03581593164762, 0.0], [-69.80165560209389, 44.035740998314395, 0.0], [-69.8017450687604, 44.03566599831453, 0.0], [-69.80183466876025, 44.035591131648005, 0.0], [-69.80192426876016, 44.03551619831478, 0.0], [-69.80201386876001, 44.03544119831491, 0.0], [-69.80210346875987, 44.03536633164833, 0.0], [-69.80219300209308, 44.03529139831511, 0.0], [-69.80228260209293, 44.03521639831524, 0.0], [-69.80237220209278, 44.03514153164866, 0.0], [-69.80246166875929, 44.035066598315495, 0.0], [-69.80255126875915, 44.03499159831557, 0.0], [-69.802640868759, 44.03491673164905, 0.0], [-69.80273040209221, 44.034841798315824, 0.0], [-69.80282000209206, 44.03476679831596, 0.0], [-69.80290960209192, 44.03469193164938, 0.0], [-69.80299906875848, 44.03461699831615, 0.0], [-69.80308866875833, 44.034541998316286, 0.0], [-69.80317826875819, 44.034467131649706, 0.0], [-69.8032678020914, 44.03439219831654, 0.0], [-69.8033572687579, 44.034317198316614, 0.0], [-69.80344686875776, 44.03424233165009, 0.0], [-69.80353646875761, 44.03416739831687, 0.0], [-69.80362606875752, 44.034092398317, 0.0], [-69.80371566875738, 44.03401753165042, 0.0], [-69.80380520209053, 44.03394253165055, 0.0], [-69.80389480209044, 44.03386759831733, 0.0], [-69.8039844020903, 44.033792731650806, 0.0], [-69.80407400209015, 44.03371773165088, 0.0], [-69.80416346875666, 44.03364279831766, 0.0], [-69.80425300208987, 44.033567931651135, 0.0], [-69.80434260208972, 44.03349293165127, 0.0], [-69.80443220208957, 44.03341799831804, 0.0], [-69.80445600208952, 44.03340853165139, 0.0], [-69.80457620208938, 44.033360331651465, 0.0], [-69.80469646875582, 44.033312198318185, 0.0], [-69.80481660208898, 44.033264131651606, 0.0], [-69.80493680208878, 44.03321593165168, 0.0], [-69.80505700208863, 44.0331677983184, 0.0], [-69.80517720208843, 44.03311959831848, 0.0], [-69.80529726875488, 44.0330715316519, 0.0], [-69.80541760208803, 44.03302339831862, 0.0], [-69.80553780208788, 44.032975198318695, 0.0], [-69.80565800208768, 44.032927131652116, 0.0], [-69.80577820208748, 44.03287899831889, 0.0], [-69.80589840208728, 44.03283079831891, 0.0], [-69.80601860208714, 44.03278273165233, 0.0], [-69.80613886875358, 44.03273459831911, 0.0], [-69.80625906875343, 44.032686398319186, 0.0], [-69.80637926875323, 44.03263833165255, 0.0], [-69.80649946875303, 44.032590131652626, 0.0], [-69.80661980208617, 44.0325419983194, 0.0], [-69.80673986875269, 44.03249393165282, 0.0], [-69.80686006875248, 44.0324457316529, 0.0], [-69.80698026875228, 44.03239759831962, 0.0], [-69.80710046875208, 44.03234953165304, 0.0], [-69.80722080208523, 44.032301331653116, 0.0], [-69.80734086875174, 44.032253198319836, 0.0], [-69.80746100208489, 44.03220499831991, 0.0], [-69.80758126875133, 44.03215693165333, 0.0], [-69.80770146875119, 44.03210879832005, 0.0], [-69.80782166875099, 44.03206059832013, 0.0], [-69.80794186875079, 44.03201253165355, 0.0], [-69.80806220208393, 44.031964331653626, 0.0], [-69.80818226875044, 44.031916198320346, 0.0], [-69.80830246875024, 44.031868131653766, 0.0], [-69.80842266875004, 44.03181993165384, 0.0], [-69.80854286874984, 44.03177179832056, 0.0], [-69.80861866874977, 44.031715731654, 0.0], [-69.8087144687496, 44.031644931654114, 0.0], [-69.80881040208277, 44.03157399832088, 0.0], [-69.80890620208265, 44.03150319832099, 0.0], [-69.80900200208248, 44.03143233165446, 0.0], [-69.80909766874902, 44.03136153165457, 0.0], [-69.80919360208219, 44.031290598321334, 0.0], [-69.80928946874872, 44.031219798321445, 0.0], [-69.8093852020819, 44.03114893165491, 0.0], [-69.80948106874843, 44.03107813165502, 0.0], [-69.80957686874825, 44.03100719832179, 0.0], [-69.80967266874814, 44.0309363316552, 0.0], [-69.80976846874796, 44.03086553165531, 0.0], [-69.80986440208113, 44.030794598322075, 0.0], [-69.80996020208102, 44.030723798322185, 0.0], [-69.81005600208084, 44.03065293165565, 0.0], [-69.81015166874738, 44.03058213165576, 0.0], [-69.81024760208055, 44.03051119832253, 0.0], [-69.81034340208038, 44.03044039832264, 0.0], [-69.81041520208026, 44.03037359832274, 0.0], [-69.81049926874681, 44.030295531656236, 0.0], [-69.81058320208001, 44.03021733165633, 0.0], [-69.81066720207991, 44.03013919832313, 0.0], [-69.81075126874646, 44.03006099832322, 0.0], [-69.81083520207966, 44.029982798323374, 0.0], [-69.8109192020795, 44.02990473165681, 0.0], [-69.81094380207946, 44.02985099832358, 0.0], [-69.81098666874607, 44.02975733165704, 0.0], [-69.81102966874602, 44.02966359832385, 0.0], [-69.81107260207926, 44.02956993165736, 0.0], [-69.81111566874586, 44.02947619832412, 0.0], [-69.81115860207916, 44.02938239832429, 0.0], [-69.81120146874576, 44.02928873165774, 0.0], [-69.81124426874567, 44.029194998324556, 0.0], [-69.81128740207896, 44.02910133165807, 0.0], [-69.81133026874556, 44.02900753165818, 0.0], [-69.81137326874546, 44.02891379832499, 0.0], [-69.81141620207876, 44.028820131658506, 0.0], [-69.81145920207865, 44.02872639832532, 0.0], [-69.8115022020786, 44.02863259832543, 0.0], [-69.8115450687452, 44.02853893165894, 0.0], [-69.81158806874515, 44.028445198325755, 0.0], [-69.8116310020784, 44.02835153165921, 0.0], [-69.81167406874499, 44.02825773165938, 0.0], [-69.8117170020783, 44.02816399832619, 0.0], [-69.81175986874484, 44.02807033165965, 0.0], [-69.8118026687448, 44.02797659832646, 0.0], [-69.8118458020781, 44.02788279832663, 0.0], [-69.81188866874464, 44.027789131660086, 0.0], [-69.81193166874459, 44.0276953983269, 0.0], [-69.8119746020779, 44.02760173166041, 0.0], [-69.81201760207779, 44.02750799832722, 0.0], [-69.81206046874439, 44.027414198327335, 0.0], [-69.81210346874434, 44.02732053166085, 0.0], [-69.81214640207759, 44.02722679832766, 0.0], [-69.81218940207754, 44.02713313166112, 0.0], [-69.81223226874414, 44.027039331661285, 0.0], [-69.81224380207743, 44.027023531661314, 0.0], [-69.81230706874402, 44.0269359983281, 0.0], [-69.81237060207724, 44.02684839832824, 0.0], [-69.81243400207717, 44.02676093166167, 0.0], [-69.8124972687437, 44.02667333166181, 0.0], [-69.81256080207697, 44.02658573166195, 0.0], [-69.81262440207684, 44.026498198328795, 0.0], [-69.81268766874342, 44.02641059832888, 0.0], [-69.81275106874335, 44.026323131662366, 0.0], [-69.81281460207657, 44.02623553166251, 0.0], [-69.81287786874316, 44.02614793166265, 0.0], [-69.81294126874303, 44.026060398329435, 0.0], [-69.81300480207625, 44.025972798329576, 0.0], [-69.81306820207618, 44.02588519832972, 0.0], [-69.81313160207606, 44.025797731663204, 0.0], [-69.81319500207599, 44.025710131663345, 0.0], [-69.81325840207586, 44.02562259833013, 0.0], [-69.81332180207579, 44.02553499833027, 0.0], [-69.81338506874232, 44.025447398330414, 0.0], [-69.81344866874224, 44.02535993166384, 0.0], [-69.81351206874217, 44.025272331663984, 0.0], [-69.81357546874204, 44.02518479833083, 0.0], [-69.81363886874198, 44.02509719833097, 0.0], [-69.81370226874185, 44.02500959833105, 0.0], [-69.81376566874178, 44.02492213166454, 0.0]], "type": "LineString"}, "id": "140", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325836", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.8234222020601, 44.001393398367725, -69.81376566874178, 44.02492213166454], "geometry": {"coordinates": [[-69.81376566874178, 44.02492213166454, 0.0], [-69.81382906874165, 44.02483453166468, 0.0], [-69.81389266874157, 44.02474693166482, 0.0], [-69.8139560020748, 44.02465939833161, 0.0], [-69.81401940207468, 44.02457179833175, 0.0], [-69.81408280207461, 44.024484331665235, 0.0], [-69.81414620207448, 44.02439673166538, 0.0], [-69.81420960207441, 44.02430913166552, 0.0], [-69.81427300207429, 44.0242215983323, 0.0], [-69.81433626874087, 44.024133998332445, 0.0], [-69.8143998687408, 44.02404653166593, 0.0], [-69.81446326874067, 44.02395893166607, 0.0], [-69.8145266687406, 44.02387133166616, 0.0], [-69.81459006874047, 44.023783798333, 0.0], [-69.8146534687404, 44.02369619833314, 0.0], [-69.81471700207362, 44.02360859833328, 0.0], [-69.81478026874021, 44.02352113166671, 0.0], [-69.81484366874008, 44.02343353166685, 0.0], [-69.81490706874001, 44.02334599833364, 0.0], [-69.81497060207323, 44.02325839833378, 0.0], [-69.8150340020731, 44.02317079833392, 0.0], [-69.81510600207304, 44.02314199833398, 0.0], [-69.81522620207284, 44.02309379833406, 0.0], [-69.81534640207263, 44.02304573166748, 0.0], [-69.81546646873909, 44.022997531667556, 0.0], [-69.81558666873894, 44.022949398334276, 0.0], [-69.81570686873874, 44.0229013316677, 0.0], [-69.81582706873854, 44.02285313166777, 0.0], [-69.8159472020717, 44.02280499833449, 0.0], [-69.81606726873821, 44.02275679833457, 0.0], [-69.81618760207135, 44.02270873166799, 0.0], [-69.81630780207115, 44.022660531668066, 0.0], [-69.81642800207095, 44.022612398334786, 0.0], [-69.81654806873746, 44.02256419833486, 0.0], [-69.81658526873736, 44.02254153166825, 0.0], [-69.81669000207057, 44.02247739833501, 0.0], [-69.81679466873703, 44.02241333166842, 0.0], [-69.8168992020702, 44.022349198335235, 0.0], [-69.81700400207006, 44.02228513166864, 0.0], [-69.81710866873658, 44.0222209983354, 0.0], [-69.8172132687364, 44.02215693166886, 0.0], [-69.81731800206956, 44.02209279833562, 0.0], [-69.81742260206943, 44.022028731669025, 0.0], [-69.81752726873594, 44.021964598335785, 0.0], [-69.8176320020691, 44.021900531669246, 0.0], [-69.81773646873557, 44.021836398336006, 0.0], [-69.81784126873544, 44.02177233166941, 0.0], [-69.8179460020686, 44.02170819833623, 0.0], [-69.81805060206841, 44.02164413166963, 0.0], [-69.81815526873493, 44.02157999833639, 0.0], [-69.8182598687348, 44.02151593166985, 0.0], [-69.81836460206796, 44.021451798336614, 0.0], [-69.81846926873448, 44.02138773167002, 0.0], [-69.81848906873444, 44.02137039833673, 0.0], [-69.8185764687343, 44.021294198336875, 0.0], [-69.81866400206746, 44.021217998336965, 0.0], [-69.81875140206733, 44.02114179833711, 0.0], [-69.8188388020672, 44.0210655983372, 0.0], [-69.81892620206708, 44.02098939833729, 0.0], [-69.81901366873359, 44.020913131670795, 0.0], [-69.8191012020668, 44.020836931670885, 0.0], [-69.81918840206669, 44.02076073167103, 0.0], [-69.8192758687332, 44.02068453167112, 0.0], [-69.81936326873307, 44.02060833167127, 0.0], [-69.81945080206629, 44.02053213167136, 0.0], [-69.81953820206616, 44.020455931671506, 0.0], [-69.81962560206597, 44.020379731671596, 0.0], [-69.81971306873254, 44.02030353167174, 0.0], [-69.81980026873237, 44.02022719833849, 0.0], [-69.81988786873228, 44.020150998338636, 0.0], [-69.8199752687321, 44.020074798338726, 0.0], [-69.82006266873196, 44.01999859833887, 0.0], [-69.82015006873183, 44.01992239833896, 0.0], [-69.8202374687317, 44.01984619833911, 0.0], [-69.82032486873157, 44.0197699983392, 0.0], [-69.82041226873145, 44.01969379833935, 0.0], [-69.82043960206471, 44.01964579833941, 0.0], [-69.82049140206465, 44.01955439833955, 0.0], [-69.82054326873123, 44.01946299833969, 0.0], [-69.82059506873117, 44.019371731673175, 0.0], [-69.8206468687311, 44.019280331673315, 0.0], [-69.82069900206432, 44.019188931673455, 0.0], [-69.82075066873091, 44.019097531673594, 0.0], [-69.82080260206419, 44.019006131673734, 0.0], [-69.82085440206407, 44.018914731673874, 0.0], [-69.82090626873065, 44.01882339834066, 0.0], [-69.82095800206395, 44.0187319983408, 0.0], [-69.82101006873052, 44.018640598340994, 0.0], [-69.82108126873038, 44.018571131674435, 0.0], [-69.8211630020636, 44.018491731674544, 0.0], [-69.82124446873013, 44.01841219834131, 0.0], [-69.82132600206336, 44.01833279834142, 0.0], [-69.82140760206323, 44.018253331674885, 0.0], [-69.8214892020631, 44.01817379834171, 0.0], [-69.82157080206298, 44.018094398341816, 0.0], [-69.82165240206285, 44.01801493167528, 0.0], [-69.82173386872938, 44.01793553167539, 0.0], [-69.8218156020626, 44.01785599834216, 0.0], [-69.82189706872913, 44.01777653167562, 0.0], [-69.82192440206245, 44.01770753167574, 0.0], [-69.82196180206239, 44.017612598342566, 0.0], [-69.82199926872897, 44.01751773167604, 0.0], [-69.82203666872891, 44.01742273167616, 0.0], [-69.82207406872885, 44.01732779834299, 0.0], [-69.82211160206214, 44.01723293167646, 0.0], [-69.82214906872872, 44.01713799834329, 0.0], [-69.82218646872866, 44.01704299834347, 0.0], [-69.82222400206194, 44.01694813167694, 0.0], [-69.8222612687286, 44.01685319834377, 0.0], [-69.82229900206187, 44.01675833167724, 0.0], [-69.82233626872846, 44.016663331677364, 0.0], [-69.82237380206175, 44.01656839834419, 0.0], [-69.82241120206169, 44.01647353167766, 0.0], [-69.82244846872828, 44.01637859834449, 0.0], [-69.82248620206155, 44.016283598344614, 0.0], [-69.82252346872815, 44.016188731678085, 0.0], [-69.82256100206143, 44.01609379834491, 0.0], [-69.82259840206137, 44.01599893167838, 0.0], [-69.82263586872801, 44.015903931678565, 0.0], [-69.82267326872795, 44.015808998345335, 0.0], [-69.82271080206118, 44.01571413167886, 0.0], [-69.82274820206112, 44.01561919834563, 0.0], [-69.82278566872776, 44.015524198345815, 0.0], [-69.8228230687277, 44.015429331679286, 0.0], [-69.82286046872764, 44.01533439834611, 0.0], [-69.82289800206092, 44.01523953167958, 0.0], [-69.82293540206086, 44.01514453167971, 0.0], [-69.82297286872745, 44.015049598346536, 0.0], [-69.82301020206074, 44.01495473168001, 0.0], [-69.82304786872737, 44.01485979834683, 0.0], [-69.82308520206061, 44.014764931680304, 0.0], [-69.82312266872725, 44.01466993168049, 0.0], [-69.82316006872719, 44.01457499834726, 0.0], [-69.82319746872713, 44.014480131680784, 0.0], [-69.82323500206041, 44.014385198347554, 0.0], [-69.82327240206035, 44.01429019834774, 0.0], [-69.82330986872694, 44.01419533168121, 0.0], [-69.82334720206023, 44.014100398348035, 0.0], [-69.8233848687268, 44.014005531681505, 0.0], [-69.8234222020601, 44.01391053168163, 0.0], [-69.82338926872683, 44.01386693168172, 0.0], [-69.82332366872691, 44.01378019834851, 0.0], [-69.82325820206034, 44.01369353168195, 0.0], [-69.82319246872714, 44.0136067983488, 0.0], [-69.82312686872723, 44.0135199983489, 0.0], [-69.82306126872732, 44.01343333168239, 0.0], [-69.82299566872746, 44.01334659834919, 0.0], [-69.82293020206089, 44.013259931682626, 0.0], [-69.82286446872763, 44.01317313168278, 0.0], [-69.82279886872772, 44.01308639834957, 0.0], [-69.82273326872786, 44.01299973168307, 0.0], [-69.82266766872795, 44.01291299834986, 0.0], [-69.82260200206139, 44.01282619835001, 0.0], [-69.82253646872812, 44.01273953168345, 0.0], [-69.82247086872826, 44.012652798350246, 0.0], [-69.82240526872835, 44.0125659983504, 0.0], [-69.82233980206178, 44.012479331683835, 0.0], [-69.82227420206186, 44.01239259835069, 0.0], [-69.822208602062, 44.012305931684125, 0.0], [-69.82214300206209, 44.012219131684276, 0.0], [-69.82207726872883, 44.01213239835107, 0.0], [-69.82201180206226, 44.01204573168451, 0.0], [-69.8219462020624, 44.01195899835136, 0.0], [-69.82188060206249, 44.011872198351455, 0.0], [-69.82181486872929, 44.01178553168495, 0.0], [-69.82174940206272, 44.011698798351745, 0.0], [-69.82168380206281, 44.01161213168518, 0.0], [-69.8216182020629, 44.011525331685334, 0.0], [-69.82155266872968, 44.01143859835213, 0.0], [-69.82148706872977, 44.011351931685624, 0.0], [-69.82142146872985, 44.011265131685775, 0.0], [-69.82135600206328, 44.01117839835257, 0.0], [-69.82129026873008, 44.01109173168601, 0.0], [-69.82122466873017, 44.0110049983528, 0.0], [-69.82115906873025, 44.010918198352954, 0.0], [-69.82109360206374, 44.01083153168639, 0.0], [-69.82102786873048, 44.010744798353244, 0.0], [-69.82096226873057, 44.01065813168668, 0.0], [-69.8208968687307, 44.01057133168683, 0.0], [-69.82083120206414, 44.01048459835363, 0.0], [-69.82076560206423, 44.010397931687066, 0.0], [-69.82070000206431, 44.01031113168722, 0.0], [-69.8206344687311, 44.01022439835401, 0.0], [-69.82056880206454, 44.01013773168751, 0.0], [-69.82050320206463, 44.0100509983543, 0.0], [-69.82043760206471, 44.00996419835445, 0.0], [-69.8203720687315, 44.00987753168789, 0.0], [-69.82030646873159, 44.009790798354686, 0.0], [-69.82024086873173, 44.00970413168818, 0.0], [-69.82017520206512, 44.00961733168833, 0.0], [-69.8201096687319, 44.00953059835513, 0.0], [-69.82004406873199, 44.009443931688565, 0.0], [-69.81997860206542, 44.009357131688716, 0.0], [-69.81991286873222, 44.00927039835551, 0.0], [-69.81984740206565, 44.009183731689006, 0.0], [-69.81978186873243, 44.0090969983558, 0.0], [-69.81971620206588, 44.009010198355895, 0.0], [-69.81965060206596, 44.00892353168939, 0.0], [-69.81958500206605, 44.008836798356185, 0.0], [-69.81951940206613, 44.008749998356336, 0.0], [-69.81945380206628, 44.008663331689775, 0.0], [-69.81938840206635, 44.00857659835657, 0.0], [-69.81932266873315, 44.008489931690065, 0.0], [-69.81925706873324, 44.008403131690216, 0.0], [-69.81919146873332, 44.00831639835701, 0.0], [-69.81912586873341, 44.00822973169045, 0.0], [-69.81906026873355, 44.00814299835724, 0.0], [-69.81899466873364, 44.008056198357394, 0.0], [-69.818994602067, 44.00805379835742, 0.0], [-69.81898820206698, 44.00795533169088, 0.0], [-69.81898186873366, 44.00785673169105, 0.0], [-69.8189754687337, 44.00775819835786, 0.0], [-69.81896906873368, 44.00765959835803, 0.0], [-69.81896946873366, 44.00765839835799, 0.0], [-69.81900900206693, 44.00756393169149, 0.0], [-69.81904826873358, 44.007469398358296, 0.0], [-69.81908760206682, 44.007374798358455, 0.0], [-69.81912700206675, 44.00728033169196, 0.0], [-69.8191662687334, 44.00718579835876, 0.0], [-69.81920560206663, 44.00709133169221, 0.0], [-69.81924500206657, 44.00699673169237, 0.0], [-69.81928426873321, 44.00690219835917, 0.0], [-69.81932360206645, 44.006807731692675, 0.0], [-69.8193628687331, 44.006713131692834, 0.0], [-69.81940226873303, 44.00661859835964, 0.0], [-69.81944166873296, 44.006524131693084, 0.0], [-69.8194810020662, 44.006429598359944, 0.0], [-69.81952026873284, 44.006334998360046, 0.0], [-69.81955960206608, 44.00624053169355, 0.0], [-69.81959900206601, 44.00614599836035, 0.0], [-69.81963820206596, 44.00605139836051, 0.0], [-69.8196776687326, 44.00595693169396, 0.0], [-69.81971700206583, 44.00586239836082, 0.0], [-69.81975626873248, 44.005767931694265, 0.0], [-69.81979566873241, 44.005673331694425, 0.0], [-69.81983486873236, 44.00557879836123, 0.0], [-69.81987426873229, 44.00548433169473, 0.0], [-69.81991346873224, 44.00538973169489, 0.0], [-69.81995300206546, 44.005295198361694, 0.0], [-69.81999226873211, 44.00520073169514, 0.0], [-69.82003160206534, 44.005106198362, 0.0], [-69.82007100206528, 44.0050115983621, 0.0], [-69.82011040206527, 44.004917131695606, 0.0], [-69.82014960206516, 44.00482259836241, 0.0], [-69.82018900206509, 44.00472799836257, 0.0], [-69.82022826873174, 44.004633531696015, 0.0], [-69.82026760206497, 44.004538998362875, 0.0], [-69.82030700206496, 44.00444439836298, 0.0], [-69.82034626873156, 44.00434993169648, 0.0], [-69.82038560206479, 44.004255398363284, 0.0], [-69.82042500206478, 44.00416093169679, 0.0], [-69.82046420206467, 44.00406633169695, 0.0], [-69.8205036020646, 44.00397179836375, 0.0], [-69.8205430020646, 44.0038773316972, 0.0], [-69.82058226873119, 44.003782731697356, 0.0], [-69.82062160206442, 44.00368819836416, 0.0], [-69.82066086873107, 44.00359373169766, 0.0], [-69.820700268731, 44.003499198364466, 0.0], [-69.8207396020643, 44.003404598364625, 0.0], [-69.82077886873088, 44.00331013169807, 0.0], [-69.82081840206416, 44.00321559836493, 0.0], [-69.82085760206411, 44.003120998365034, 0.0], [-69.82089700206404, 44.00302653169854, 0.0], [-69.82093626873063, 44.00293199836534, 0.0], [-69.82097546873058, 44.002837531698844, 0.0], [-69.82101486873051, 44.002742931699004, 0.0], [-69.82105406873046, 44.00264839836581, 0.0], [-69.82109360206374, 44.002553931699254, 0.0], [-69.82113286873033, 44.00245933169941, 0.0], [-69.82117220206362, 44.002364798366216, 0.0], [-69.82121160206356, 44.00227033169972, 0.0], [-69.82125086873015, 44.00217579836652, 0.0], [-69.82129020206344, 44.00208119836668, 0.0], [-69.82132966873002, 44.00198673170013, 0.0], [-69.82136886872996, 44.00189219836699, 0.0], [-69.82140820206325, 44.00179759836709, 0.0], [-69.82144746872984, 44.001703131700594, 0.0], [-69.82148680206308, 44.0016085983674, 0.0], [-69.82152620206307, 44.0015141317009, 0.0], [-69.821565602063, 44.001419531701, 0.0], [-69.82157640206299, 44.001393398367725, 0.0]], "type": "LineString"}, "id": "141", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325726", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.8394313353686, 43.985241398392816, -69.83581846870754, 43.986233798391254], "geometry": {"coordinates": [[-69.8394313353686, 43.986233798391254, 0.0], [-69.83581846870754, 43.985241398392816, 0.0]], "type": "LineString"}, "id": "142", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3326716", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.72307286888253, 44.404518731075314, -69.72044286888661, 44.40790479773676], "geometry": {"coordinates": [[-69.72044286888661, 44.40790479773676, 0.0], [-69.72218180221722, 44.406297531072596, 0.0], [-69.72307286888253, 44.404518731075314, 0.0]], "type": "LineString"}, "id": "143", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3325416", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.64572906900258, 44.71689279725712, -69.64229266900793, 44.736976530559275], "geometry": {"coordinates": [[-69.64572906900258, 44.736976530559275, 0.0], [-69.6450228690037, 44.736441597226815, 0.0], [-69.64270786900727, 44.7334899305647, 0.0], [-69.64229266900793, 44.73222939723331, 0.0], [-69.64287460234033, 44.730778197235566, 0.0], [-69.64406426900518, 44.72918853057138, 0.0], [-69.64503386900367, 44.72676999724183, 0.0], [-69.64558826900281, 44.72309093058084, 0.0], [-69.64509846900359, 44.72063893058464, 0.0], [-69.64273426900724, 44.71689279725712, 0.0]], "type": "LineString"}, "id": "144", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322112", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.63192706902402, 44.67244139732611, -69.62880966902884, 44.688300997301496], "geometry": {"coordinates": [[-69.63192706902402, 44.688300997301496, 0.0], [-69.63175586902429, 44.68735133063632, 0.0], [-69.63017360236006, 44.685331797306105, 0.0], [-69.62961226902758, 44.68351879730892, 0.0], [-69.6292378023615, 44.674815597322436, 0.0], [-69.62880966902884, 44.67244139732611, 0.0]], "type": "LineString"}, "id": "145", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322208", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.7939286021059, 44.71487113059362, -69.78985720211222, 44.71610853059167], "geometry": {"coordinates": [[-69.78987800211218, 44.71487113059362, 0.0], [-69.78985720211222, 44.714942797260164, 0.0], [-69.78994340211204, 44.71505259726001, 0.0], [-69.79002946877858, 44.7151623972598, 0.0], [-69.79011566877847, 44.715272330592995, 0.0], [-69.79020180211165, 44.71538213059284, 0.0], [-69.79037220211143, 44.715416330592745, 0.0], [-69.7905424687778, 44.715450597259405, 0.0], [-69.79064406877762, 44.71541033059276, 0.0], [-69.79079860211073, 44.71534893059288, 0.0], [-69.79095306877718, 44.715287597259646, 0.0], [-69.79110766877693, 44.715226330593055, 0.0], [-69.79126220211003, 44.715164930593176, 0.0], [-69.79141680210978, 44.71510359725994, 0.0], [-69.79146360210973, 44.7151205972599, 0.0], [-69.79162120210947, 44.71517793059314, 0.0], [-69.7917788021092, 44.71523519725969, 0.0], [-69.791936402109, 44.71529253059293, 0.0], [-69.79209400210874, 44.715349797259535, 0.0], [-69.79225160210848, 44.71540713059278, 0.0], [-69.79240906877493, 44.71546439725938, 0.0], [-69.79256666877467, 44.71552173059263, 0.0], [-69.7927242687744, 44.71557899725917, 0.0], [-69.79288186877415, 44.71563633059242, 0.0], [-69.79303946877394, 44.71569359725902, 0.0], [-69.79319706877368, 44.715750930592264, 0.0], [-69.79335466877342, 44.71580819725881, 0.0], [-69.79351226877321, 44.715865530592055, 0.0], [-69.79366986877295, 44.715922797258656, 0.0], [-69.79382746877269, 44.7159801305919, 0.0], [-69.793848402106, 44.71600673059186, 0.0], [-69.7939286021059, 44.71610853059167, 0.0]], "type": "LineString"}, "id": "146", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3330400", "fl_ds_name": "Mill Stream"}, "type": "Feature"}, {"bbox": [-69.58960100242302, 44.63068119739097, -69.5829316024334, 44.6369811973812], "geometry": {"coordinates": [[-69.58960100242302, 44.6369811973812, 0.0], [-69.58814260242531, 44.635116730717414, 0.0], [-69.58595546909538, 44.633235197386966, 0.0], [-69.58532386909633, 44.63297633072074, 0.0], [-69.58435166909783, 44.63173333072268, 0.0], [-69.5829316024334, 44.63068119739097, 0.0]], "type": "LineString"}, "id": "147", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322260", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.65416626898951, 44.52486253088853, -69.63389746902095, 44.538592130867244], "geometry": {"coordinates": [[-69.63389746902095, 44.538592130867244, 0.0], [-69.63480626901952, 44.53792693086825, 0.0], [-69.63737380234886, 44.53518039753919, 0.0], [-69.64183400234197, 44.53320939754224, 0.0], [-69.64382100233888, 44.531913330877614, 0.0], [-69.64920160233055, 44.529475397548026, 0.0], [-69.65138166899379, 44.52769573088415, 0.0], [-69.65319720232435, 44.525450130887634, 0.0], [-69.65416626898951, 44.52486253088853, 0.0]], "type": "LineString"}, "id": "148", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322482", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.66482266897293, 44.51656773090144, -69.65787286898376, 44.52247733089223], "geometry": {"coordinates": [[-69.65787286898376, 44.52247733089223, 0.0], [-69.6595196689812, 44.521112197561024, 0.0], [-69.66060880231282, 44.51976479756314, 0.0], [-69.66366060230808, 44.517638997566394, 0.0], [-69.66482266897293, 44.51656773090144, 0.0]], "type": "LineString"}, "id": "149", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322496", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-69.83224960204637, 44.689095997300285, -69.81789586873532, 44.69822459728613], "geometry": {"coordinates": [[-69.83224960204637, 44.69822459728613, 0.0], [-69.83205720204671, 44.69822459728613, 0.0], [-69.83125626871458, 44.69756119728714, 0.0], [-69.8306482020489, 44.69614339728935, 0.0], [-69.83055240204902, 44.695663330623404, 0.0], [-69.82988066871673, 44.693536597293416, 0.0], [-69.82956046871726, 44.69303339729419, 0.0], [-69.82799046871969, 44.69202679729574, 0.0], [-69.82773480205339, 44.691043597297266, 0.0], [-69.82728640205409, 44.69051753063144, 0.0], [-69.82629300205565, 44.690105530632025, 0.0], [-69.8246262687249, 44.690036330632154, 0.0], [-69.82331186872693, 44.69026439729845, 0.0], [-69.82270300206119, 44.69026419729846, 0.0], [-69.82148506872977, 44.69005793063212, 0.0], [-69.8191138020668, 44.68932513063328, 0.0], [-69.81789586873532, 44.689095997300285, 0.0]], "type": "LineString"}, "id": "162", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3320804", "fl_ds_name": "Mill Stream"}, "type": "Feature"}, {"bbox": [-69.67492540229063, 44.736976530559275, -69.64572906900258, 44.76614199718068], "geometry": {"coordinates": [[-69.67492540229063, 44.76614199718068, 0.0], [-69.67141360229607, 44.76203439718705, 0.0], [-69.66963600229883, 44.76141419718806, 0.0], [-69.66729720230245, 44.7598963305237, 0.0], [-69.66632166897062, 44.758653597192335, 0.0], [-69.66624666897076, 44.757461930527484, 0.0], [-69.66568546897162, 44.75656419719559, 0.0], [-69.66553706897184, 44.755096197197815, 0.0], [-69.66204986897725, 44.75047033053835, 0.0], [-69.65956620231447, 44.74931513054014, 0.0], [-69.65418226898947, 44.744828797213756, 0.0], [-69.65330560232417, 44.74425953054799, 0.0], [-69.65216160232592, 44.74389759721521, 0.0], [-69.64899300233083, 44.73985853055484, 0.0], [-69.64794606899915, 44.73925479722243, 0.0], [-69.64697120233399, 44.73801193055772, 0.0], [-69.64572906900258, 44.736976530559275, 0.0]], "type": "LineString"}, "id": "163", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322084", "fl_ds_name": "Kennebec River"}, "type": "Feature"}, {"bbox": [-68.84102040358499, 44.693870797292846, -68.8317258035994, 44.73544299722835], "geometry": {"coordinates": [[-68.83221600359866, 44.73544299722835, 0.0], [-68.8317258035994, 44.73350599723136, 0.0], [-68.83251447026487, 44.73026319723641, 0.0], [-68.83204427026561, 44.7287235305721, 0.0], [-68.83221380359868, 44.72653099724215, 0.0], [-68.83202380359893, 44.726098197242834, 0.0], [-68.83237340359841, 44.725253797244136, 0.0], [-68.83208300359888, 44.722834330581236, 0.0], [-68.83228267026522, 44.72235179724868, 0.0], [-68.831972803599, 44.72176293058294, 0.0], [-68.83267180359792, 44.720074130585544, 0.0], [-68.83378060359621, 44.718732930587635, 0.0], [-68.8347596035947, 44.71815099725518, 0.0], [-68.83569840359326, 44.716774397257325, 0.0], [-68.83748640359045, 44.71557499725918, 0.0], [-68.83945400358743, 44.71349573059575, 0.0], [-68.84040227025264, 44.711203797265966, 0.0], [-68.84032180358605, 44.709614530601755, 0.0], [-68.84102040358499, 44.707925730604416, 0.0], [-68.83608327025934, 44.70112939728159, 0.0], [-68.8361630035925, 44.70049079728261, 0.0], [-68.83557307026012, 44.69879519728522, 0.0], [-68.8362518035924, 44.69670919728844, 0.0], [-68.83738007025732, 44.69576533062326, 0.0], [-68.83834840358912, 44.693870797292846, 0.0]], "type": "LineString"}, "id": "223", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736986", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.83834840358912, 44.69068593063116, -68.83376300359623, 44.693870797292846], "geometry": {"coordinates": [[-68.83834840358912, 44.693870797292846, 0.0], [-68.83678960359157, 44.69184193062938, 0.0], [-68.83376300359623, 44.69068593063116, 0.0]], "type": "LineString"}, "id": "224", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736996", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.81708380362215, 44.66845219733233, -68.81178167029702, 44.68641599730444], "geometry": {"coordinates": [[-68.81708380362215, 44.68641599730444, 0.0], [-68.8159352702906, 44.68473453064041, 0.0], [-68.81544600362469, 44.682797730643415, 0.0], [-68.81563567029104, 44.681002730646185, 0.0], [-68.81424767029318, 44.676781330652716, 0.0], [-68.8141378702934, 44.675709997321064, 0.0], [-68.81268020362899, 44.67343973065795, 0.0], [-68.81178167029702, 44.67115519732812, 0.0], [-68.81251060362922, 44.66894879733155, 0.0], [-68.8132694702947, 44.66845219733233, 0.0]], "type": "LineString"}, "id": "225", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737018", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.83376300359623, 44.68688433063704, -68.81744340362161, 44.69068593063116], "geometry": {"coordinates": [[-68.83376300359623, 44.69068593063116, 0.0], [-68.83199507026563, 44.69005473063214, 0.0], [-68.8284294036045, 44.68931013063326, 0.0], [-68.82586260360853, 44.68838093063471, 0.0], [-68.82076900361642, 44.68731699730307, 0.0], [-68.81744340362161, 44.68688433063704, 0.0]], "type": "LineString"}, "id": "226", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737000", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.82276400361332, 44.664670597338215, -68.8132694702947, 44.66845219733233], "geometry": {"coordinates": [[-68.8132694702947, 44.66845219733233, 0.0], [-68.81342920362783, 44.66828899733258, 0.0], [-68.81710340362213, 44.666763730668265, 0.0], [-68.81936967028525, 44.66618899733584, 0.0], [-68.8224446036138, 44.66499699733771, 0.0], [-68.82276400361332, 44.664670597338215, 0.0]], "type": "LineString"}, "id": "227", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737022", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.83692240359136, 44.638015930712925, -68.8322554035986, 44.65197793069126], "geometry": {"coordinates": [[-68.8322554035986, 44.65197793069126, 0.0], [-68.83333260359694, 44.64892719736264, 0.0], [-68.83320247026381, 44.64745873069825, 0.0], [-68.83362087026313, 44.64466359736923, 0.0], [-68.83628400359231, 44.63866859737857, 0.0], [-68.83692240359136, 44.638015930712925, 0.0]], "type": "LineString"}, "id": "228", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737044", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.8369522035913, 44.637497997380365, -68.83692240359136, 44.638015930712925], "geometry": {"coordinates": [[-68.83692240359136, 44.638015930712925, 0.0], [-68.8369522035913, 44.637497997380365, 0.0]], "type": "LineString"}, "id": "229", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737050", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.84778040357452, 44.60788873075967, -68.83444900359518, 44.637497997380365], "geometry": {"coordinates": [[-68.8369522035913, 44.637497997380365, 0.0], [-68.83771047025681, 44.6370013307145, 0.0], [-68.8386980035886, 44.6355043307168, 0.0], [-68.84210967024995, 44.632155330722014, 0.0], [-68.84299720358194, 44.63089953072392, 0.0], [-68.8452514702451, 44.62901199739355, 0.0], [-68.84689620357585, 44.62503193073309, 0.0], [-68.84690580357585, 44.62411679740114, 0.0], [-68.8476034035748, 44.62242833073708, 0.0], [-68.84778040357452, 44.61709373074535, 0.0], [-68.84322860358157, 44.61116439742125, 0.0], [-68.8415326035842, 44.61081013075511, 0.0], [-68.83845967025565, 44.609774930756714, 0.0], [-68.83788107025651, 44.609391997423984, 0.0], [-68.83560640359337, 44.60865459742513, 0.0], [-68.83444900359518, 44.60788873075967, 0.0]], "type": "LineString"}, "id": "230", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737082", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.8235048036122, 44.58850353078975, -68.81943520361847, 44.59627773077767], "geometry": {"coordinates": [[-68.82340507027902, 44.59627773077767, 0.0], [-68.8235048036122, 44.596036530778065, 0.0], [-68.82290627027976, 44.59525619744596, 0.0], [-68.82231767028065, 44.593560930781905, 0.0], [-68.82069187028321, 44.59125573078546, 0.0], [-68.81991387028444, 44.58912773078879, 0.0], [-68.81943520361847, 44.58850353078975, 0.0]], "type": "LineString"}, "id": "231", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737118", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.81943520361847, 44.56951973081925, -68.80238220364498, 44.58850353078975], "geometry": {"coordinates": [[-68.81943520361847, 44.58850353078975, 0.0], [-68.81888667028602, 44.58760273079116, 0.0], [-68.81870707028628, 44.586254930793245, 0.0], [-68.81780947028767, 44.583970930796795, 0.0], [-68.81661287028953, 44.58241039746588, 0.0], [-68.81582507029077, 44.57897019747122, 0.0], [-68.81046127029907, 44.572345197481525, 0.0], [-68.80715140363753, 44.57099733081691, 0.0], [-68.80443967030845, 44.57042973081781, 0.0], [-68.80379180364275, 44.56976999748548, 0.0], [-68.80238220364498, 44.56951973081925, 0.0]], "type": "LineString"}, "id": "232", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737140", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.83444900359518, 44.59627773077767, -68.82340507027902, 44.60788873075967], "geometry": {"coordinates": [[-68.83444900359518, 44.60788873075967, 0.0], [-68.83334160359692, 44.60700213076103, 0.0], [-68.82971967026918, 44.602838597434186, 0.0], [-68.82738527027283, 44.60090939743719, 0.0], [-68.82340507027902, 44.59627773077767, 0.0]], "type": "LineString"}, "id": "233", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737106", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.82832987027138, 44.743936997215144, -68.80168867031273, 44.76144239718798], "geometry": {"coordinates": [[-68.80168867031273, 44.76144239718798, 0.0], [-68.80256847031131, 44.761101930521875, 0.0], [-68.8043384036419, 44.759505530524336, 0.0], [-68.80917740363441, 44.7576323971939, 0.0], [-68.81130687029776, 44.75650433052897, 0.0], [-68.81324647029476, 44.75494319719809, 0.0], [-68.8141462036267, 44.75277193053478, 0.0], [-68.8161154702903, 44.75069279720469, 0.0], [-68.81775487028779, 44.74985553053932, 0.0], [-68.81937427028527, 44.748620730541234, 0.0], [-68.82536160360928, 44.74620079721166, 0.0], [-68.82637100360773, 44.7451009305467, 0.0], [-68.82745027027272, 44.74427773054799, 0.0], [-68.82832987027138, 44.743936997215144, 0.0]], "type": "LineString"}, "id": "234", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736934", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.83221600359866, 44.73544299722835, -68.82832987027138, 44.743936997215144], "geometry": {"coordinates": [[-68.82832987027138, 44.743936997215144, 0.0], [-68.82882940360389, 44.74273073055036, 0.0], [-68.82963880360268, 44.742113197217975, 0.0], [-68.83015847026849, 44.741304330552566, 0.0], [-68.8312572702668, 44.73865039722335, 0.0], [-68.83104720360046, 44.737820197224664, 0.0], [-68.83221600359866, 44.73544299722835, 0.0]], "type": "LineString"}, "id": "235", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736956", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.81744340362161, 44.68641599730444, -68.81708380362215, 44.68688433063704], "geometry": {"coordinates": [[-68.81744340362161, 44.68688433063704, 0.0], [-68.81708380362215, 44.68641599730444, 0.0]], "type": "LineString"}, "id": "236", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737004", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.8322554035986, 44.65197793069126, -68.82276400361332, 44.664670597338215], "geometry": {"coordinates": [[-68.82276400361332, 44.664670597338215, 0.0], [-68.82399160361143, 44.661258130676856, 0.0], [-68.8254488702758, 44.65907299734687, 0.0], [-68.82751487027264, 44.65675293068381, 0.0], [-68.82935140360308, 44.65543319735252, 0.0], [-68.83006980360199, 44.6541419306879, 0.0], [-68.83082827026749, 44.65364533068862, 0.0], [-68.83176640359937, 44.652268797357465, 0.0], [-68.8322554035986, 44.65197793069126, 0.0]], "type": "LineString"}, "id": "237", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737032", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.82933060360313, 44.743936997215144, -68.82832987027138, 44.7451447305466], "geometry": {"coordinates": [[-68.82933060360313, 44.7451447305466, 0.0], [-68.82931127026984, 44.745121397213325, 0.0], [-68.82925680360324, 44.74505559721342, 0.0], [-68.82920227027, 44.74498979721352, 0.0], [-68.82914767027006, 44.74492399721362, 0.0], [-68.82909320360352, 44.744858197213716, 0.0], [-68.82903867027022, 44.744792397213814, 0.0], [-68.82898420360368, 44.74472659721391, 0.0], [-68.82892960360374, 44.74466079721401, 0.0], [-68.8288750702705, 44.744594997214165, 0.0], [-68.8288206036039, 44.74452919721426, 0.0], [-68.82876607027066, 44.74446339721436, 0.0], [-68.82871147027078, 44.74439759721446, 0.0], [-68.82865700360418, 44.744331797214556, 0.0], [-68.82860247027094, 44.744265997214654, 0.0], [-68.82854800360434, 44.74420019721475, 0.0], [-68.82849340360445, 44.74413439721485, 0.0], [-68.82843887027116, 44.74406859721495, 0.0], [-68.82838440360462, 44.744002797215046, 0.0], [-68.82832987027138, 44.743936997215144, 0.0]], "type": "LineString"}, "id": "249", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743088", "fl_ds_name": "Souadabscook Stream"}, "type": "Feature"}, {"bbox": [-67.7800362718985, 46.797304527361234, -67.7356896053007, 46.821691260656735], "geometry": {"coordinates": [[-67.7800362718985, 46.797304527361234, 0.0], [-67.77906360523338, 46.79859652735928, 0.0], [-67.7781978052347, 46.80062066068945, 0.0], [-67.77612307190458, 46.80311566068559, 0.0], [-67.77482073857328, 46.804919460682754, 0.0], [-67.77417840524095, 46.80542846068198, 0.0], [-67.77303960524273, 46.80559146068174, 0.0], [-67.77181480524462, 46.80674872734659, 0.0], [-67.76994553858083, 46.8085030606772, 0.0], [-67.76888673858247, 46.80927332734268, 0.0], [-67.7667940052524, 46.80976852734193, 0.0], [-67.7651433385883, 46.810226660674516, 0.0], [-67.76270527192543, 46.81201946067176, 0.0], [-67.7611086719279, 46.81286966067046, 0.0], [-67.75788040526623, 46.813353794003035, 0.0], [-67.7560264719358, 46.81441699400136, 0.0], [-67.75410940527206, 46.8154809939997, 0.0], [-67.7530172052738, 46.816331727331715, 0.0], [-67.75179287194237, 46.81744366066334, 0.0], [-67.75000680527847, 46.81829379399534, 0.0], [-67.7467911386168, 46.819557460660064, 0.0], [-67.74380740528807, 46.820345260658826, 0.0], [-67.73949813862811, 46.82116492732422, 0.0], [-67.7356896053007, 46.821691260656735, 0.0]], "type": "LineString"}, "id": "267", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/166195770", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.07302880477704, 46.58798092768615, -68.0131948715366, 46.61673299430822], "geometry": {"coordinates": [[-68.0131948715366, 46.59721512767186, 0.0], [-68.0149532715339, 46.59678252767253, 0.0], [-68.01591567153235, 46.596372127673135, 0.0], [-68.01664607153123, 46.59591559434051, 0.0], [-68.01730980486354, 46.5956877276742, 0.0], [-68.0187026048614, 46.595574727674375, 0.0], [-68.0207576048582, 46.59601099434036, 0.0], [-68.02181887152324, 46.5958977276739, 0.0], [-68.02424087151945, 46.595122594341774, 0.0], [-68.02855360484608, 46.593914994343606, 0.0], [-68.02964920484442, 46.59313872767814, 0.0], [-68.03117560484202, 46.59243139434591, 0.0], [-68.03286700483937, 46.59220432767961, 0.0], [-68.03336480483864, 46.59195319434667, 0.0], [-68.03379707150464, 46.59115359434793, 0.0], [-68.03432880483712, 46.5904911276823, 0.0], [-68.03519200483578, 46.58976052768338, 0.0], [-68.03532467150228, 46.58976052768338, 0.0], [-68.0362868048341, 46.589326994350756, 0.0], [-68.03827727149769, 46.58861999435186, 0.0], [-68.0391070048297, 46.588140727685925, 0.0], [-68.03953820482906, 46.58798092768615, 0.0], [-68.04013487149479, 46.58800432768612, 0.0], [-68.04053220482751, 46.588347527685585, 0.0], [-68.04126007149301, 46.589307994350804, 0.0], [-68.04145827149273, 46.58974239435008, 0.0], [-68.042153404825, 46.59047432768227, 0.0], [-68.04354420482281, 46.59168672768044, 0.0], [-68.04433787148827, 46.59312739434483, 0.0], [-68.0452312048202, 46.59431652767631, 0.0], [-68.04595960481907, 46.5950485276752, 0.0], [-68.04668840481793, 46.59555179434108, 0.0], [-68.04711927148395, 46.59566652767427, 0.0], [-68.04837927148196, 46.59564452767427, 0.0], [-68.04910920481421, 46.59532492767477, 0.0], [-68.04970680481324, 46.594868194342155, 0.0], [-68.05020447147916, 46.594639994342515, 0.0], [-68.0519954714764, 46.594206794343165, 0.0], [-68.0527254048086, 46.59391012767696, 0.0], [-68.05355447147394, 46.59375072767722, 0.0], [-68.0546486048056, 46.593797127677135, 0.0], [-68.05564260480406, 46.5943921276762, 0.0], [-68.0570998048018, 46.595832927673996, 0.0], [-68.05753060480112, 46.595993194340394, 0.0], [-68.05888987146568, 46.59617692767347, 0.0], [-68.0594532714648, 46.59638292767312, 0.0], [-68.06014860479706, 46.59718332767187, 0.0], [-68.06028100479682, 46.59748052767145, 0.0], [-68.06130780479526, 46.598463994336555, 0.0], [-68.06173760479459, 46.599606994334806, 0.0], [-68.06186987146106, 46.599881394334375, 0.0], [-68.06276407145964, 46.60084192766618, 0.0], [-68.06491820478965, 46.60214599433084, 0.0], [-68.06584580478824, 46.602900727662984, 0.0], [-68.06700527145307, 46.604089927661164, 0.0], [-68.06750140478562, 46.605301594325965, 0.0], [-68.06760087145216, 46.60532452765926, 0.0], [-68.0679644714516, 46.606536127657364, 0.0], [-68.06812867145135, 46.608021994321746, 0.0], [-68.06789460478501, 46.60975899431901, 0.0], [-68.06792687145168, 46.6106961943176, 0.0], [-68.06802620478481, 46.61074192765085, 0.0], [-68.06819167145125, 46.61110772765028, 0.0], [-68.06941807144932, 46.61188539431572, 0.0], [-68.07018007144814, 46.612731527647725, 0.0], [-68.07057700478089, 46.613851794312666, 0.0], [-68.0707426047806, 46.61408039431234, 0.0], [-68.07110727144669, 46.6143091276453, 0.0], [-68.07183680477891, 46.6145609276449, 0.0], [-68.07213500477843, 46.61488112764442, 0.0], [-68.07266460477763, 46.61611559430918, 0.0], [-68.07263120477768, 46.61629852764224, 0.0], [-68.07302880477704, 46.61673299430822, 0.0]], "type": "LineString"}, "id": "268", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805007", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.07305160477705, 46.61671239430825, -68.07302880477704, 46.61673299430822], "geometry": {"coordinates": [[-68.07302880477704, 46.61673299430822, 0.0], [-68.07303747144374, 46.61671239430825, 0.0], [-68.07305160477705, 46.61672899430823, 0.0]], "type": "LineString"}, "id": "269", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805243", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.78980520521668, 46.79543112736417, -67.7800362718985, 46.797304527361234], "geometry": {"coordinates": [[-67.78980520521668, 46.79543112736417, 0.0], [-67.78701673855437, 46.79547786069742, 0.0], [-67.78498953855751, 46.79588899403012, 0.0], [-67.78226307189504, 46.79655252736245, 0.0], [-67.7800362718985, 46.797304527361234, 0.0]], "type": "LineString"}, "id": "270", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/166195784", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.7356896053007, 46.810687127340486, -67.71853807199398, 46.821691260656735], "geometry": {"coordinates": [[-67.7356896053007, 46.821691260656735, 0.0], [-67.73373247197037, 46.82163346065681, 0.0], [-67.7311311386411, 46.82124406065742, 0.0], [-67.72905247197764, 46.82082406065808, 0.0], [-67.72728993864706, 46.820305393992214, 0.0], [-67.72589313864921, 46.81975026065976, 0.0], [-67.7247810053176, 46.818198793995464, 0.0], [-67.72347120531964, 46.81621332733192, 0.0], [-67.72214707198839, 46.81479912733408, 0.0], [-67.72082227199041, 46.813421060669555, 0.0], [-67.71944733865922, 46.811976194005126, 0.0], [-67.71853807199398, 46.810687127340486, 0.0]], "type": "LineString"}, "id": "271", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/166195783", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.7917710718803, 46.79385392736663, -67.78977367188338, 46.79435539403249], "geometry": {"coordinates": [[-67.7917710718803, 46.79385392736663, 0.0], [-67.78977367188338, 46.79435539403249, 0.0]], "type": "LineString"}, "id": "272", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/802929", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.86425240510113, 46.79422552736605, -67.85816307177726, 46.797608927360784], "geometry": {"coordinates": [[-67.86425240510113, 46.797608927360784, 0.0], [-67.86418587176792, 46.797403194027765, 0.0], [-67.86352040510224, 46.79669459402885, 0.0], [-67.86228927177086, 46.795551727364, 0.0], [-67.8614242717722, 46.7949573273649, 0.0], [-67.86052567177359, 46.79459152736547, 0.0], [-67.85816307177726, 46.79422552736605, 0.0]], "type": "LineString"}, "id": "273", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/802931", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.85816307177726, 46.794160927366136, -67.85714947177883, 46.79439032736576], "geometry": {"coordinates": [[-67.85816307177726, 46.79422552736605, 0.0], [-67.85800047177747, 46.794160927366136, 0.0], [-67.85778780511117, 46.794218327366025, 0.0], [-67.85757500511147, 46.79427559403263, 0.0], [-67.85736220511183, 46.794332994032516, 0.0], [-67.85714947177883, 46.79439032736576, 0.0]], "type": "LineString"}, "id": "274", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803209", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.99423980489934, 46.866210927254315, -67.98416800491498, 46.87150392724607], "geometry": {"coordinates": [[-67.99423980489934, 46.866210927254315, 0.0], [-67.99378360490005, 46.86637939392068, 0.0], [-67.99318367156769, 46.86731079391927, 0.0], [-67.98940607157351, 46.86982172724868, 0.0], [-67.98416800491498, 46.87150392724607, 0.0]], "type": "LineString"}, "id": "275", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803301", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.99947100489123, 46.86031359393013, -67.99423980489934, 46.866210927254315], "geometry": {"coordinates": [[-67.99947100489123, 46.86031359393013, 0.0], [-67.9993850048914, 46.86039379392997, 0.0], [-67.99924900489157, 46.86052092726311, 0.0], [-67.99911287155845, 46.86064792726296, 0.0], [-67.99897680489198, 46.86077492726275, 0.0], [-67.99884080489221, 46.860901927262546, 0.0], [-67.9987046715591, 46.86102892726234, 0.0], [-67.99856860489263, 46.86115592726213, 0.0], [-67.99843260489286, 46.861282927261925, 0.0], [-67.99829647155974, 46.861409927261775, 0.0], [-67.99816047155991, 46.86153692726157, 0.0], [-67.9980244048935, 46.86166392726136, 0.0], [-67.99788827156038, 46.861790927261154, 0.0], [-67.99775227156056, 46.86191792726095, 0.0], [-67.99761620489414, 46.86204499392744, 0.0], [-67.99748007156097, 46.862171993927234, 0.0], [-67.9973440715612, 46.86229899392703, 0.0], [-67.99720800489473, 46.86242599392682, 0.0], [-67.99707187156162, 46.86255299392667, 0.0], [-67.99693587156185, 46.86267999392646, 0.0], [-67.99686027156196, 46.86277599392628, 0.0], [-67.99675100489549, 46.86291479392611, 0.0], [-67.99664167156232, 46.86305359392588, 0.0], [-67.99653227156244, 46.86319239392566, 0.0], [-67.99642300489597, 46.86333132725878, 0.0], [-67.9963136715628, 46.86347012725855, 0.0], [-67.99620440489633, 46.863608927258326, 0.0], [-67.99609507156316, 46.8637477272581, 0.0], [-67.99598580489663, 46.86388652725793, 0.0], [-67.99587640489682, 46.86402539392435, 0.0], [-67.99576707156365, 46.864164193924125, 0.0], [-67.99565780489718, 46.86430299392396, 0.0], [-67.995548471564, 46.86444179392373, 0.0], [-67.99543920489748, 46.864580593923506, 0.0], [-67.99532987156431, 46.864719527256625, 0.0], [-67.9952204715645, 46.8648583272564, 0.0], [-67.99511120489802, 46.864997127256174, 0.0], [-67.99500187156485, 46.86513592725595, 0.0], [-67.99489260489833, 46.865274793922424, 0.0], [-67.99478327156515, 46.8654135939222, 0.0], [-67.99467387156534, 46.86555239392197, 0.0], [-67.99456460489887, 46.86569119392175, 0.0], [-67.9944552715657, 46.86582999392158, 0.0], [-67.99434600489917, 46.8659689272547, 0.0], [-67.99430607156592, 46.86605959392119, 0.0], [-67.99423980489934, 46.866210927254315, 0.0]], "type": "LineString"}, "id": "276", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803167", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.94692367163947, 46.82914259397853, -67.93075767166454, 46.84364659395601], "geometry": {"coordinates": [[-67.94692367163947, 46.84364659395601, 0.0], [-67.94637600497367, 46.84293672729041, 0.0], [-67.94490847164258, 46.842363593958, 0.0], [-67.94385920497757, 46.84214279395832, 0.0], [-67.94027780498311, 46.840728527293834, 0.0], [-67.9377232049871, 46.84045532729425, 0.0], [-67.936483804989, 46.83979799396195, 0.0], [-67.93538867165739, 46.83837799396417, 0.0], [-67.93425580499246, 46.8374787272989, 0.0], [-67.93211907166244, 46.83451772730348, 0.0], [-67.93075767166454, 46.82914259397853, 0.0]], "type": "LineString"}, "id": "277", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803173", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.93075767166454, 46.820474793991934, -67.91031147169628, 46.82914259397853], "geometry": {"coordinates": [[-67.93075767166454, 46.82914259397853, 0.0], [-67.9300886716656, 46.8282749273132, 0.0], [-67.92907767166719, 46.82753332731431, 0.0], [-67.92542900500615, 46.82583992731696, 0.0], [-67.9233310716761, 46.82539812731767, 0.0], [-67.91967500501511, 46.82502472731824, 0.0], [-67.91570740502124, 46.824056793986415, 0.0], [-67.91231020502653, 46.82135852732392, 0.0], [-67.91124627169484, 46.8207379273249, 0.0], [-67.91031147169628, 46.820474793991934, 0.0]], "type": "LineString"}, "id": "278", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803177", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.91031147169628, 46.81274279400395, -67.8799070050768, 46.820648327325046], "geometry": {"coordinates": [[-67.91031147169628, 46.820474793991934, 0.0], [-67.90956660503076, 46.820648327325046, 0.0], [-67.90642007170231, 46.81998532732604, 0.0], [-67.90261267170825, 46.8186541939948, 0.0], [-67.90151880504328, 46.81723399399698, 0.0], [-67.89977087171263, 46.816865593997534, 0.0], [-67.89873720504761, 46.817044193997276, 0.0], [-67.88143407174113, 46.81339539400295, 0.0], [-67.88037060507611, 46.81277452733724, 0.0], [-67.8799070050768, 46.81274279400395, 0.0]], "type": "LineString"}, "id": "279", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803183", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.8799070050768, 46.807970727344696, -67.8738916717528, 46.81274279400395], "geometry": {"coordinates": [[-67.8799070050768, 46.81274279400395, 0.0], [-67.87948180507749, 46.8121903940048, 0.0], [-67.87587360508309, 46.8099751273416, 0.0], [-67.8738916717528, 46.807970727344696, 0.0]], "type": "LineString"}, "id": "280", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803187", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.8738916717528, 46.80702379401282, -67.87316287175395, 46.807970727344696], "geometry": {"coordinates": [[-67.8738916717528, 46.807970727344696, 0.0], [-67.87316287175395, 46.80702379401282, 0.0]], "type": "LineString"}, "id": "281", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803191", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.79863147186967, 46.791536194036894, -67.7917710718803, 46.79389699403322], "geometry": {"coordinates": [[-67.79863147186967, 46.791536194036894, 0.0], [-67.79862687186966, 46.79153772737021, 0.0], [-67.79842067186996, 46.7916057940368, 0.0], [-67.79821467187031, 46.79167392736997, 0.0], [-67.79800860520396, 46.79174192736991, 0.0], [-67.79780260520425, 46.79180999403644, 0.0], [-67.79759647187126, 46.79187799403633, 0.0], [-67.79739040520491, 46.791946127369556, 0.0], [-67.7971844052052, 46.79201412736944, 0.0], [-67.7969782718722, 46.79208219403603, 0.0], [-67.79677227187256, 46.79215019403591, 0.0], [-67.7965662052062, 46.79221832736914, 0.0], [-67.79636007187315, 46.79228632736903, 0.0], [-67.7961540718735, 46.79235439403561, 0.0], [-67.79594800520715, 46.7924223940355, 0.0], [-67.79589020520723, 46.79246439403545, 0.0], [-67.79573287187412, 46.792578927368595, 0.0], [-67.79557560520772, 46.7926933940351, 0.0], [-67.79541827187461, 46.792807927368244, 0.0], [-67.79526087187486, 46.79292239403475, 0.0], [-67.79510347187511, 46.79303692736789, 0.0], [-67.79500567187529, 46.793078927367844, 0.0], [-67.79481167187555, 46.79316219403438, 0.0], [-67.79461767187587, 46.79324552736756, 0.0], [-67.79442360520949, 46.793328794034096, 0.0], [-67.79422960520981, 46.793412127367276, 0.0], [-67.79403547187678, 46.79349539403381, 0.0], [-67.79384160521039, 46.79357872736705, 0.0], [-67.79364747187736, 46.793661994033585, 0.0], [-67.79345347187768, 46.793745327366764, 0.0], [-67.79322807187805, 46.793802527366665, 0.0], [-67.79297200521177, 46.79384492736665, 0.0], [-67.79257887187902, 46.79389699403322, 0.0], [-67.79229320521284, 46.79387999403326, 0.0], [-67.79205807187986, 46.79385932736659, 0.0], [-67.7917710718803, 46.79385392736663, 0.0]], "type": "LineString"}, "id": "282", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803309", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.79863147186967, 46.791536194036894, -67.78980520521668, 46.79543112736417], "geometry": {"coordinates": [[-67.79863147186967, 46.791536194036894, 0.0], [-67.79832160520345, 46.79227199403573, 0.0], [-67.79752460520467, 46.79306512736781, 0.0], [-67.79668600520603, 46.79395239403311, 0.0], [-67.79513867187507, 46.79475852736522, 0.0], [-67.7926726052122, 46.79506079403143, 0.0], [-67.78980527188332, 46.79543112736417, 0.0], [-67.78980520521668, 46.79543112736417, 0.0]], "type": "LineString"}, "id": "283", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/811481", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.87316287175395, 46.8026727273529, -67.86820447176166, 46.80702379401282], "geometry": {"coordinates": [[-67.87316287175395, 46.80702379401282, 0.0], [-67.87177360508946, 46.805408794015364, 0.0], [-67.87011787175868, 46.804398394016914, 0.0], [-67.86820447176166, 46.8026727273529, 0.0]], "type": "LineString"}, "id": "284", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803199", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.99947107155788, 46.8300513273104, -67.99181460490314, 46.84345792728959], "geometry": {"coordinates": [[-67.99195827156956, 46.8300513273104, 0.0], [-67.9919326715696, 46.83018712731024, 0.0], [-67.991903204903, 46.830343793976624, 0.0], [-67.99187367156969, 46.83050059397641, 0.0], [-67.99184420490309, 46.830657327309495, 0.0], [-67.99181460490314, 46.83081399397594, 0.0], [-67.99187387156968, 46.830962993975675, 0.0], [-67.9919344715696, 46.83111539397544, 0.0], [-67.99199520490282, 46.8312677939752, 0.0], [-67.99205580490275, 46.831420193974964, 0.0], [-67.99211640490267, 46.83157259397473, 0.0], [-67.99217700490254, 46.83172499397449, 0.0], [-67.99223767156911, 46.83187739397425, 0.0], [-67.99229827156904, 46.832029793974016, 0.0], [-67.99235887156897, 46.832182127307135, 0.0], [-67.99241960490218, 46.8323345273069, 0.0], [-67.99248020490211, 46.83248692730666, 0.0], [-67.99254080490198, 46.832639327306424, 0.0], [-67.9926014049019, 46.83279172730619, 0.0], [-67.99266207156847, 46.83294412730595, 0.0], [-67.9927226715684, 46.83309652730571, 0.0], [-67.99278327156827, 46.833248927305476, 0.0], [-67.99284400490154, 46.83340132730524, 0.0], [-67.99290460490141, 46.833553727305, 0.0], [-67.99293760490139, 46.8336071273049, 0.0], [-67.99302720490124, 46.83375252730468, 0.0], [-67.99311680490109, 46.83389792730446, 0.0], [-67.99320647156765, 46.834043327304244, 0.0], [-67.9932960715675, 46.834188727304024, 0.0], [-67.99338567156735, 46.834334127303805, 0.0], [-67.99347540490055, 46.83447939397024, 0.0], [-67.9935650049004, 46.83462479397002, 0.0], [-67.99365467156696, 46.834770193969746, 0.0], [-67.99374427156681, 46.83491559396953, 0.0], [-67.99383387156666, 46.83506099396931, 0.0], [-67.99392360489986, 46.83520639396909, 0.0], [-67.99401320489972, 46.83535179396887, 0.0], [-67.99410287156621, 46.83549712730195, 0.0], [-67.99419247156612, 46.83564252730173, 0.0], [-67.99428220489926, 46.83578792730151, 0.0], [-67.99437180489917, 46.83593332730129, 0.0], [-67.99446140489903, 46.83607872730107, 0.0], [-67.99455107156552, 46.83622412730085, 0.0], [-67.99464067156538, 46.83636939396729, 0.0], [-67.99473040489858, 46.83651479396707, 0.0], [-67.99482000489849, 46.83666019396685, 0.0], [-67.99490967156498, 46.83680559396663, 0.0], [-67.99499927156484, 46.83695099396641, 0.0], [-67.99508900489803, 46.837096393966135, 0.0], [-67.99517860489789, 46.837241793965916, 0.0], [-67.99526820489774, 46.83738712729905, 0.0], [-67.9953578715643, 46.83753252729883, 0.0], [-67.99544747156415, 46.837677927298614, 0.0], [-67.99553720489735, 46.83782332729834, 0.0], [-67.9956268048972, 46.83796872729812, 0.0], [-67.99571647156375, 46.8381141272979, 0.0], [-67.9958060715636, 46.838259393964336, 0.0], [-67.99580847156358, 46.83826239396433, 0.0], [-67.99591607156344, 46.83840192729747, 0.0], [-67.9960238048966, 46.838541327297264, 0.0], [-67.9961314715631, 46.83868072729706, 0.0], [-67.99623907156291, 46.8388201272968, 0.0], [-67.99634680489606, 46.838959527296595, 0.0], [-67.99645447156257, 46.83909892729639, 0.0], [-67.99656220489578, 46.83923832729619, 0.0], [-67.99666980489559, 46.839377727295926, 0.0], [-67.9967774715621, 46.83951712729572, 0.0], [-67.99688520489525, 46.83965652729552, 0.0], [-67.99699287156176, 46.83979592729531, 0.0], [-67.99710047156157, 46.83993532729511, 0.0], [-67.99720820489478, 46.84007479396155, 0.0], [-67.99731587156123, 46.840214193961344, 0.0], [-67.99742360489444, 46.84035359396108, 0.0], [-67.99753120489424, 46.84049299396088, 0.0], [-67.99763887156075, 46.840632393960675, 0.0], [-67.9977466048939, 46.84077179396047, 0.0], [-67.99785427156041, 46.84091119396021, 0.0], [-67.99796187156022, 46.841050593960006, 0.0], [-67.99806960489343, 46.8411899939598, 0.0], [-67.99817727155994, 46.8413293939596, 0.0], [-67.99828500489309, 46.84146879395939, 0.0], [-67.9983926715596, 46.84160819395913, 0.0], [-67.99850027155941, 46.84174772729227, 0.0], [-67.99860800489256, 46.84188712729207, 0.0], [-67.99862747155919, 46.84192259395866, 0.0], [-67.99870867155909, 46.842070327291765, 0.0], [-67.99878987155898, 46.84221812729152, 0.0], [-67.99887107155882, 46.84236579395798, 0.0], [-67.99895227155872, 46.84251359395773, 0.0], [-67.99903340489192, 46.84266132729084, 0.0], [-67.99911460489182, 46.84280912729065, 0.0], [-67.99919580489166, 46.84295679395706, 0.0], [-67.99927700489155, 46.84310459395681, 0.0], [-67.9993582048914, 46.84325232728992, 0.0], [-67.99943940489129, 46.843400127289726, 0.0], [-67.99947107155788, 46.84345792728959, 0.0]], "type": "LineString"}, "id": "285", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803195", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.86820447176166, 46.7987477940257, -67.86401367176813, 46.8026727273529], "geometry": {"coordinates": [[-67.86820447176166, 46.8026727273529, 0.0], [-67.86490207176678, 46.79933192735808, 0.0], [-67.86401367176813, 46.7987477940257, 0.0]], "type": "LineString"}, "id": "286", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803203", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.8645762717673, 46.797608927360784, -67.86401367176813, 46.7987477940257], "geometry": {"coordinates": [[-67.86401367176813, 46.7987477940257, 0.0], [-67.86410447176803, 46.798681594025766, 0.0], [-67.86426180510114, 46.798566994025975, 0.0], [-67.86441900510084, 46.79845239402613, 0.0], [-67.8645762717673, 46.79833779402634, 0.0], [-67.86455020510067, 46.798287194026386, 0.0], [-67.86447327176745, 46.79813839402664, 0.0], [-67.86439647176758, 46.79798959402689, 0.0], [-67.8643196717677, 46.79784079402708, 0.0], [-67.86424287176783, 46.79769192736063, 0.0], [-67.86425240510113, 46.797608927360784, 0.0]], "type": "LineString"}, "id": "287", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803205", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.86401367176813, 46.79439032736576, -67.85714947177883, 46.7987477940257], "geometry": {"coordinates": [[-67.86401367176813, 46.7987477940257, 0.0], [-67.86314007176952, 46.79856339402596, 0.0], [-67.85981447177465, 46.79614279402972, 0.0], [-67.85775647177786, 46.79517939403121, 0.0], [-67.85714947177883, 46.79439032736576, 0.0]], "type": "LineString"}, "id": "288", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803207", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.85714947177883, 46.78195272738509, -67.84582867179637, 46.79439032736576], "geometry": {"coordinates": [[-67.85714947177883, 46.79439032736576, 0.0], [-67.85115967178814, 46.79021712737227, 0.0], [-67.84933900512425, 46.7878495940426, 0.0], [-67.8476342717936, 46.78392052738201, 0.0], [-67.84582867179637, 46.78195272738509, 0.0]], "type": "LineString"}, "id": "289", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803215", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.99195827156956, 46.81453419400117, -67.98539867157973, 46.8300513273104], "geometry": {"coordinates": [[-67.98539867157973, 46.81453419400117, 0.0], [-67.98729360491012, 46.81717872733043, 0.0], [-67.98976627157299, 46.819812393993004, 0.0], [-67.99024707157224, 46.821763393989954, 0.0], [-67.99008780490578, 46.82212639398938, 0.0], [-67.99041567157195, 46.82312019398785, 0.0], [-67.99073100490483, 46.82675432731554, 0.0], [-67.99195827156956, 46.8300513273104, 0.0]], "type": "LineString"}, "id": "290", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803211", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.84582867179637, 46.77282992739924, -67.830186205154, 46.78195272738509], "geometry": {"coordinates": [[-67.84582867179637, 46.78195272738509, 0.0], [-67.84321787180045, 46.78007919405468, 0.0], [-67.83968080513927, 46.778141927391005, 0.0], [-67.83871007180744, 46.77687919405963, 0.0], [-67.83651707181082, 46.77535812739535, 0.0], [-67.83447467181401, 46.77479419406285, 0.0], [-67.8334654718156, 46.77405212739734, 0.0], [-67.830186205154, 46.77282992739924, 0.0]], "type": "LineString"}, "id": "291", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803227", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.80844300518777, 46.772129794066984, -67.79863147186967, 46.791536194036894], "geometry": {"coordinates": [[-67.80844300518777, 46.772129794066984, 0.0], [-67.80513700519288, 46.77334699406509, 0.0], [-67.80322060519586, 46.774659994063086, 0.0], [-67.80162900519832, 46.77696712739282, 0.0], [-67.80040087186688, 46.7797477940552, 0.0], [-67.80077907186632, 46.780620994053834, 0.0], [-67.79965767186803, 46.783159927383224, 0.0], [-67.79941387186841, 46.7876033273763, 0.0], [-67.79863147186967, 46.791536194036894, 0.0]], "type": "LineString"}, "id": "292", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803219", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.81161767184949, 46.77207459406708, -67.80844300518777, 46.772129794066984], "geometry": {"coordinates": [[-67.81161767184949, 46.77207459406708, 0.0], [-67.80844300518777, 46.772129794066984, 0.0]], "type": "LineString"}, "id": "293", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803223", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.98539867157973, 46.80174039402107, -67.9679104049402, 46.81453419400117], "geometry": {"coordinates": [[-67.9679104049402, 46.80174039402107, 0.0], [-67.9690056049385, 46.80315999401881, 0.0], [-67.9740614049307, 46.806865794013106, 0.0], [-67.97799127159124, 46.808352594010785, 0.0], [-67.97964880492202, 46.80936172734255, 0.0], [-67.98358807158257, 46.812568127337556, 0.0], [-67.98539867157973, 46.81453419400117, 0.0]], "type": "LineString"}, "id": "294", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803233", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.830186205154, 46.77053319406946, -67.81161767184949, 46.77282992739924], "geometry": {"coordinates": [[-67.830186205154, 46.77282992739924, 0.0], [-67.82698947182564, 46.77228612740009, 0.0], [-67.81935927183747, 46.77053999406945, 0.0], [-67.81745307184042, 46.77053319406946, 0.0], [-67.81601727184267, 46.77075819406912, 0.0], [-67.81161767184949, 46.77207459406708, 0.0]], "type": "LineString"}, "id": "295", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803229", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.96963240493756, 46.77607192739424, -67.96503947161136, 46.80174039402107], "geometry": {"coordinates": [[-67.96963240493756, 46.77607192739424, 0.0], [-67.96847120493936, 46.777413194058795, 0.0], [-67.96615067160963, 46.78313532738326, 0.0], [-67.9663408716093, 46.78357172738259, 0.0], [-67.96582540494347, 46.785180994046755, 0.0], [-67.96574340494357, 46.787542194043056, 0.0], [-67.96547787161069, 46.78814712737545, 0.0], [-67.96566807161037, 46.78858352737478, 0.0], [-67.96503947161136, 46.79175472736989, 0.0], [-67.96523840494439, 46.793910794033195, 0.0], [-67.96599260494321, 46.79697652736178, 0.0], [-67.96704320494155, 46.80023672735672, 0.0], [-67.9679104049402, 46.80174039402107, 0.0]], "type": "LineString"}, "id": "296", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803241", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.97195887160063, 46.75780512742256, -67.96696187160836, 46.77607192739424], "geometry": {"coordinates": [[-67.96696187160836, 46.75780512742256, 0.0], [-67.97012360493682, 46.76190552741622, 0.0], [-67.97143920493477, 46.76456052741207, 0.0], [-67.97171340493435, 46.765675194077005, 0.0], [-67.97195887160063, 46.769029994071786, 0.0], [-67.97175547160094, 46.77123332740172, 0.0], [-67.97065640493594, 46.77417319406385, 0.0], [-67.96963240493756, 46.77607192739424, 0.0]], "type": "LineString"}, "id": "297", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803245", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.96696187160836, 46.75208012743144, -67.96298720494786, 46.75780512742256], "geometry": {"coordinates": [[-67.96298720494786, 46.75208012743144, 0.0], [-67.96374747161337, 46.75382559409542, 0.0], [-67.96696187160836, 46.75780512742256, 0.0]], "type": "LineString"}, "id": "298", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803249", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.96298720494786, 46.74572912744134, -67.9604324716185, 46.75208012743144], "geometry": {"coordinates": [[-67.9604324716185, 46.74572912744134, 0.0], [-67.96174740494979, 46.74838399410385, 0.0], [-67.96298720494786, 46.75208012743144, 0.0]], "type": "LineString"}, "id": "299", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803257", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.9604324716185, 46.725203794139816, -67.95456180496097, 46.74572912744134], "geometry": {"coordinates": [[-67.95456180496097, 46.725203794139816, 0.0], [-67.95499480496028, 46.72595559413867, 0.0], [-67.95504087162686, 46.727154327470146, 0.0], [-67.9554208049596, 46.72802699413546, 0.0], [-67.95543767162627, 46.7314655941301, 0.0], [-67.95781667162254, 46.73777972745364, 0.0], [-67.95862287162129, 46.740723927449096, 0.0], [-67.9595576049532, 46.74250619411299, 0.0], [-67.95945147162001, 46.74274799411262, 0.0], [-67.9604324716185, 46.74572912744134, 0.0]], "type": "LineString"}, "id": "300", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803263", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.95508107162681, 46.71619739415382, -67.95418747162819, 46.725203794139816], "geometry": {"coordinates": [[-67.95508107162681, 46.71619739415382, 0.0], [-67.9546566049608, 46.71716492748567, 0.0], [-67.95418747162819, 46.719972527481275, 0.0], [-67.95466787162746, 46.724961927473544, 0.0], [-67.95456180496097, 46.725203794139816, 0.0]], "type": "LineString"}, "id": "301", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803267", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.95808140495546, 46.70678572750177, -67.9549820049603, 46.71619739415382], "geometry": {"coordinates": [[-67.95806600495553, 46.70678572750177, 0.0], [-67.95808140495546, 46.70718532750112, 0.0], [-67.95720180495687, 46.7083211274994, 0.0], [-67.95598160495877, 46.71110259416173, 0.0], [-67.9549820049603, 46.71511959415551, 0.0], [-67.95508107162681, 46.71619739415382, 0.0]], "type": "LineString"}, "id": "302", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803271", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.96744720494092, 46.70017459417869, -67.95806600495553, 46.70678572750177], "geometry": {"coordinates": [[-67.96744720494092, 46.70017459417869, 0.0], [-67.96284320494811, 46.70197919417586, 0.0], [-67.962684071615, 46.7023419941753, 0.0], [-67.96071987161804, 46.70377779417311, 0.0], [-67.95933220495357, 46.70520292750422, 0.0], [-67.95857420495474, 46.706496527502225, 0.0], [-67.95806600495553, 46.70678572750177, 0.0]], "type": "LineString"}, "id": "303", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803275", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.99947220489122, 46.69478159418708, -67.98600367157883, 46.69872452751429], "geometry": {"coordinates": [[-67.99947220489122, 46.69872452751429, 0.0], [-67.99945947155794, 46.69871339418097, 0.0], [-67.99931780489146, 46.69858959418116, 0.0], [-67.99917607155834, 46.698465794181345, 0.0], [-67.99903440489192, 46.69834212751488, 0.0], [-67.99889267155879, 46.698218327515065, 0.0], [-67.99875107155901, 46.69809452751525, 0.0], [-67.99860940489259, 46.69797072751544, 0.0], [-67.99846767155947, 46.69784692751563, 0.0], [-67.99832600489299, 46.697723194182515, 0.0], [-67.99818427155992, 46.6975993941827, 0.0], [-67.99804260489344, 46.69747559418289, 0.0], [-67.99790100489366, 46.69735179418308, 0.0], [-67.99775927156054, 46.69722812751661, 0.0], [-67.99761760489412, 46.6971043275168, 0.0], [-67.997475871561, 46.696980527516985, 0.0], [-67.99733420489457, 46.69685672751717, 0.0], [-67.99719260489479, 46.69673292751736, 0.0], [-67.99705087156167, 46.69660919418425, 0.0], [-67.99690920489519, 46.696485394184435, 0.0], [-67.99676747156212, 46.69636159418462, 0.0], [-67.99662587156234, 46.69623779418481, 0.0], [-67.99648420489586, 46.696113994185, 0.0], [-67.99646200489593, 46.69610312751837, 0.0], [-67.99627600489617, 46.696011794185154, 0.0], [-67.99608987156313, 46.69592052751864, 0.0], [-67.99590387156343, 46.69582912751878, 0.0], [-67.99571787156373, 46.69573779418556, 0.0], [-67.99553187156403, 46.695646527519045, 0.0], [-67.99534587156433, 46.695555127519185, 0.0], [-67.99515987156462, 46.695463794186026, 0.0], [-67.99497380489822, 46.695372394186165, 0.0], [-67.99478780489852, 46.69528112751959, 0.0], [-67.99460180489882, 46.69518979418643, 0.0], [-67.99442727156571, 46.6951531275198, 0.0], [-67.99420907156605, 46.69510719418656, 0.0], [-67.99399100489973, 46.695061327519966, 0.0], [-67.99377287156676, 46.695015394186726, 0.0], [-67.9935546715671, 46.69496952752013, 0.0], [-67.99333660490078, 46.69492359418683, 0.0], [-67.99311840490111, 46.694877727520236, 0.0], [-67.99290027156809, 46.694831794186996, 0.0], [-67.99268207156842, 46.6947859275204, 0.0], [-67.99260180490188, 46.694785794187055, 0.0], [-67.99237380490223, 46.694785194187034, 0.0], [-67.99214587156928, 46.694784727520414, 0.0], [-67.99191787156963, 46.69478419418704, 0.0], [-67.99168987156997, 46.69478372752042, 0.0], [-67.99146200490367, 46.69478319418704, 0.0], [-67.99123400490402, 46.69478272752042, 0.0], [-67.99100600490436, 46.69478219418704, 0.0], [-67.99077800490471, 46.69478159418708, 0.0], [-67.99074307157144, 46.694785794187055, 0.0], [-67.99051840490512, 46.69481232752037, 0.0], [-67.9902936049055, 46.69483892752032, 0.0], [-67.99006887157248, 46.694865394186934, 0.0], [-67.9898442049062, 46.69489199418689, 0.0], [-67.98961947157318, 46.694918594186845, 0.0], [-67.98939467157356, 46.69494512752016, 0.0], [-67.98917000490724, 46.69497172752011, 0.0], [-67.98897860490752, 46.69498899418676, 0.0], [-67.98880260490779, 46.69503332751998, 0.0], [-67.9886030049081, 46.695078127519935, 0.0], [-67.98842207157503, 46.69511592751985, 0.0], [-67.98821100490869, 46.69516912751982, 0.0], [-67.98803567157563, 46.69522992751968, 0.0], [-67.98783607157594, 46.69527459418629, 0.0], [-67.98758327157634, 46.69535159418615, 0.0], [-67.98738860491, 46.69540292751941, 0.0], [-67.9871862049103, 46.69543619418607, 0.0], [-67.98700087157727, 46.69548399418596, 0.0], [-67.98681720491089, 46.69551039418593, 0.0], [-67.98658740491123, 46.69557052751918, 0.0], [-67.9863542049116, 46.69560279418579, 0.0], [-67.98600367157883, 46.695684527519006, 0.0]], "type": "LineString"}, "id": "304", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803283", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.98600367157883, 46.695684527519006, -67.96744720494092, 46.70017459417869], "geometry": {"coordinates": [[-67.98600367157883, 46.695684527519006, 0.0], [-67.98478700491404, 46.69611052751833, 0.0], [-67.984582471581, 46.69616832751825, 0.0], [-67.98438100491467, 46.696219127518134, 0.0], [-67.98419787158161, 46.696304727518054, 0.0], [-67.98401700491524, 46.696359794184616, 0.0], [-67.98384640491548, 46.69641699418452, 0.0], [-67.98364900491578, 46.69648412751775, 0.0], [-67.98342487158283, 46.69656112751761, 0.0], [-67.98317487158317, 46.69667152751748, 0.0], [-67.98301760491677, 46.69672379418404, 0.0], [-67.98278820491714, 46.69683852751717, 0.0], [-67.98254227158418, 46.69696519418369, 0.0], [-67.98228300491792, 46.69709692751678, 0.0], [-67.98204640491826, 46.69720232751666, 0.0], [-67.9818920049185, 46.69730179418315, 0.0], [-67.98168467158553, 46.69736759418305, 0.0], [-67.98147740491919, 46.69743339418295, 0.0], [-67.98127007158615, 46.69749912751615, 0.0], [-67.98106280491982, 46.697564927516055, 0.0], [-67.98085547158678, 46.69763059418261, 0.0], [-67.98064820492044, 46.697696394182515, 0.0], [-67.98044087158746, 46.69776219418242, 0.0], [-67.98023360492112, 46.697827927515675, 0.0], [-67.98002627158809, 46.69789372751558, 0.0], [-67.97981900492175, 46.69795952751548, 0.0], [-67.97961167158871, 46.69802519418204, 0.0], [-67.97940440492238, 46.69809099418194, 0.0], [-67.9791970715894, 46.69815672751514, 0.0], [-67.97908807158956, 46.69817052751512, 0.0], [-67.97886380492321, 46.698198794181735, 0.0], [-67.97863947159021, 46.698227127515054, 0.0], [-67.97841520492392, 46.69825539418167, 0.0], [-67.97819087159093, 46.698283727514934, 0.0], [-67.97796660492463, 46.69831199418161, 0.0], [-67.97774227159164, 46.69834032751487, 0.0], [-67.97751800492529, 46.69836859418149, 0.0], [-67.97729367159235, 46.69839699418145, 0.0], [-67.977069404926, 46.69842532751471, 0.0], [-67.976845071593, 46.69845359418139, 0.0], [-67.97662087159335, 46.69848192751465, 0.0], [-67.97639660492706, 46.69851019418127, 0.0], [-67.97617227159407, 46.698538527514586, 0.0], [-67.97594800492777, 46.698566794181204, 0.0], [-67.97572367159478, 46.698595127514466, 0.0], [-67.97549940492843, 46.698623394181084, 0.0], [-67.97527507159543, 46.6986517275144, 0.0], [-67.97505080492914, 46.69867999418102, 0.0], [-67.97482647159615, 46.69870832751428, 0.0], [-67.97460220492985, 46.6987365941809, 0.0], [-67.97437787159686, 46.69876492751422, 0.0], [-67.97415360493056, 46.69879319418084, 0.0], [-67.97392927159757, 46.6988215275141, 0.0], [-67.97370500493122, 46.698849794180774, 0.0], [-67.97348067159822, 46.698878127514035, 0.0], [-67.97325640493193, 46.69890639418065, 0.0], [-67.97303207159894, 46.69893472751397, 0.0], [-67.97280780493264, 46.69896299418059, 0.0], [-67.97258347159965, 46.69899132751385, 0.0], [-67.97235907160001, 46.69901959418047, 0.0], [-67.97213480493366, 46.69904792751379, 0.0], [-67.97209127160039, 46.69905659418043, 0.0], [-67.97187207160073, 46.6991001275137, 0.0], [-67.97165300493441, 46.699143727513615, 0.0], [-67.97143380493475, 46.69918732751353, 0.0], [-67.97121467160179, 46.69923079418015, 0.0], [-67.97099547160212, 46.699274394180065, 0.0], [-67.9707764049358, 46.699317994180035, 0.0], [-67.97055720493614, 46.699361527513304, 0.0], [-67.97033807160312, 46.69940512751322, 0.0], [-67.97011887160346, 46.69944872751313, 0.0], [-67.96989980493714, 46.699492194179754, 0.0], [-67.96968060493748, 46.69953579417967, 0.0], [-67.96946147160446, 46.699579394179636, 0.0], [-67.9692422716048, 46.699622927512905, 0.0], [-67.96902320493848, 46.69966652751282, 0.0], [-67.96880400493882, 46.699709994179386, 0.0], [-67.96858487160586, 46.699753594179356, 0.0], [-67.96845280493937, 46.69980252751259, 0.0], [-67.96825160493972, 46.69987692751249, 0.0], [-67.96805047160666, 46.699951327512395, 0.0], [-67.9678494049403, 46.70002572751224, 0.0], [-67.96764827160729, 46.700100127512144, 0.0], [-67.96744720494092, 46.70017459417869, 0.0]], "type": "LineString"}, "id": "305", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803281", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-67.98416800491498, 46.84364659395601, -67.94692367163947, 46.871556527246014], "geometry": {"coordinates": [[-67.98416800491498, 46.87150392724607, 0.0], [-67.98416140491503, 46.87150599391276, 0.0], [-67.98004440492139, 46.871556527246014, 0.0], [-67.97706980492603, 46.870931727246955, 0.0], [-67.97458907159654, 46.86961759391568, 0.0], [-67.97197120493394, 46.86774599391856, 0.0], [-67.96271020494828, 46.860116727263744, 0.0], [-67.9582134049553, 46.85599939393683, 0.0], [-67.95577827162572, 46.852844127275034, 0.0], [-67.95517660496, 46.85073512727831, 0.0], [-67.95537400495971, 46.84985139394638, 0.0], [-67.95398160496183, 46.84823692728219, 0.0], [-67.94815567163755, 46.84410399395529, 0.0], [-67.94692367163947, 46.84364659395601, 0.0]], "type": "LineString"}, "id": "306", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803171", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-68.00235860488675, 46.8564177272695, -67.99947100489123, 46.86031359393013], "geometry": {"coordinates": [[-68.00235860488675, 46.8564177272695, 0.0], [-68.0022364715536, 46.85646279393609, 0.0], [-68.00206947155385, 46.85652452726936, 0.0], [-68.0019024715541, 46.856586193935925, 0.0], [-68.00189027155415, 46.85660792726918, 0.0], [-68.0018216048876, 46.85672999393569, 0.0], [-68.0017528048877, 46.85685199393549, 0.0], [-68.00168407155445, 46.8569739939353, 0.0], [-68.0016154048879, 46.85709612726845, 0.0], [-68.0015466715547, 46.857218127268254, 0.0], [-68.00147787155481, 46.85734019393476, 0.0], [-68.0014092048882, 46.857462193934566, 0.0], [-68.00134047155501, 46.857584327267716, 0.0], [-68.00127180488846, 46.85770632726752, 0.0], [-68.00120307155521, 46.85782832726733, 0.0], [-68.00113427155532, 46.85795039393378, 0.0], [-68.00106560488877, 46.85807239393358, 0.0], [-68.00099687155551, 46.85819452726673, 0.0], [-68.00092820488896, 46.85831652726654, 0.0], [-68.00085947155577, 46.858438593933045, 0.0], [-68.00079067155588, 46.85856059393285, 0.0], [-68.00072200488927, 46.858682727266, 0.0], [-68.00065327155608, 46.858804727265806, 0.0], [-68.00058460488953, 46.85892672726561, 0.0], [-68.00051580488963, 46.85904879393206, 0.0], [-68.00044707155638, 46.85917079393192, 0.0], [-68.00037840488983, 46.85929292726502, 0.0], [-68.00030967155658, 46.85941492726482, 0.0], [-68.00024087155668, 46.85953699393133, 0.0], [-68.00017220489013, 46.859658993931134, 0.0], [-68.00012947155687, 46.85969892726439, 0.0], [-68.00001680489038, 46.859804127264226, 0.0], [-67.99990400489054, 46.85990932726406, 0.0], [-67.9997912715574, 46.8600145939306, 0.0], [-67.9996786048909, 46.86011979393044, 0.0], [-67.99956580489106, 46.860224993930274, 0.0], [-67.99947100489123, 46.86031359393013, 0.0]], "type": "LineString"}, "id": "307", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805067", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-68.00291107155255, 46.84345792728959, -67.99947107155788, 46.8564177272695], "geometry": {"coordinates": [[-67.99947107155788, 46.84345792728959, 0.0], [-67.99947200489123, 46.84345952728961, 0.0], [-67.99953927155781, 46.84358192728945, 0.0], [-67.99960647155768, 46.84370432728923, 0.0], [-67.9996738048909, 46.84382672728907, 0.0], [-67.99974107155748, 46.84394912728885, 0.0], [-67.99980827155736, 46.844071593955334, 0.0], [-67.99987560489063, 46.844193993955116, 0.0], [-67.99994287155715, 46.844316393954955, 0.0], [-68.00001020489043, 46.84443879395474, 0.0], [-68.0000774048903, 46.844561193954576, 0.0], [-68.00014467155688, 46.8446837272877, 0.0], [-68.0002120048901, 46.84480612728754, 0.0], [-68.00027920488998, 46.84492852728732, 0.0], [-68.00034647155655, 46.84505092728716, 0.0], [-68.00041380488977, 46.84517332728694, 0.0], [-68.00041680488977, 46.845205927286884, 0.0], [-68.00042887155644, 46.84533659395339, 0.0], [-68.0004410715564, 46.845467327286485, 0.0], [-68.00045320488971, 46.845597993952936, 0.0], [-68.00046540488967, 46.84572872728609, 0.0], [-68.00047747155634, 46.84585939395254, 0.0], [-68.00048960488965, 46.84599012728569, 0.0], [-68.00050180488967, 46.84612079395214, 0.0], [-68.00051387155628, 46.84625152728529, 0.0], [-68.00054440488958, 46.84632472728515, 0.0], [-68.00059687155618, 46.84645052728496, 0.0], [-68.00064927155609, 46.846576393951466, 0.0], [-68.00070180488933, 46.84670219395127, 0.0], [-68.00075427155593, 46.84682799395108, 0.0], [-68.00080667155584, 46.846953927284176, 0.0], [-68.00085920488908, 46.84707972728398, 0.0], [-68.00091167155568, 46.84720559395049, 0.0], [-68.00096407155559, 46.8473313939503, 0.0], [-68.00101660488883, 46.84745719395005, 0.0], [-68.00106907155543, 46.8475831272832, 0.0], [-68.00112147155534, 46.84770892728301, 0.0], [-68.00117400488858, 46.84783479394952, 0.0], [-68.00122647155519, 46.847960593949324, 0.0], [-68.00127900488843, 46.848086393949075, 0.0], [-68.00133140488833, 46.848212327282226, 0.0], [-68.00138387155494, 46.848338127282034, 0.0], [-68.00143640488818, 46.84846399394854, 0.0], [-68.00148880488808, 46.84858979394829, 0.0], [-68.00154127155469, 46.8487155939481, 0.0], [-68.00159380488793, 46.84884152728125, 0.0], [-68.00164620488783, 46.84896732728106, 0.0], [-68.00169867155444, 46.84909319394751, 0.0], [-68.00175120488768, 46.84921899394732, 0.0], [-68.00180367155428, 46.849344793947125, 0.0], [-68.00185607155419, 46.84947072728028, 0.0], [-68.00190860488743, 46.849596527280085, 0.0], [-68.00196107155404, 46.84972232727989, 0.0], [-68.00201347155394, 46.84984819394634, 0.0], [-68.00206600488718, 46.84997399394615, 0.0], [-68.00211847155379, 46.8500999272793, 0.0], [-68.00217100488703, 46.85022572727911, 0.0], [-68.00222340488699, 46.85035152727892, 0.0], [-68.00227587155354, 46.85047739394537, 0.0], [-68.00232840488678, 46.850603193945176, 0.0], [-68.00238087155338, 46.85072912727833, 0.0], [-68.00243327155329, 46.850854927278135, 0.0], [-68.00248580488653, 46.85098072727794, 0.0], [-68.00253827155314, 46.851106593944394, 0.0], [-68.00259080488638, 46.8512323939442, 0.0], [-68.00264320488634, 46.85135832727735, 0.0], [-68.00269567155289, 46.85148412727716, 0.0], [-68.00274820488613, 46.85160992727697, 0.0], [-68.00275180488615, 46.85166999394352, 0.0], [-68.00275980488613, 46.851800927276656, 0.0], [-68.0027678048861, 46.85193172727645, 0.0], [-68.0027756715528, 46.85206259394295, 0.0], [-68.00278367155278, 46.85219339394274, 0.0], [-68.00279167155276, 46.85232432727588, 0.0], [-68.00279960488609, 46.852455127275675, 0.0], [-68.00280760488607, 46.852585993942114, 0.0], [-68.00281547155271, 46.85271679394191, 0.0], [-68.00282347155269, 46.85284772727505, 0.0], [-68.00283147155267, 46.85297852727484, 0.0], [-68.002839404886, 46.85310939394128, 0.0], [-68.00284740488598, 46.85324032727442, 0.0], [-68.00285540488596, 46.853371127274215, 0.0], [-68.00286327155266, 46.85350199394071, 0.0], [-68.00287127155264, 46.853632793940506, 0.0], [-68.00287927155262, 46.853763727273645, 0.0], [-68.00288720488595, 46.85389452727344, 0.0], [-68.00289520488593, 46.85402539393988, 0.0], [-68.00290307155257, 46.85415619393967, 0.0], [-68.00291107155255, 46.85428712727281, 0.0], [-68.00289347155257, 46.85435499393935, 0.0], [-68.00286007155262, 46.8544839272725, 0.0], [-68.00282660488602, 46.854612927272285, 0.0], [-68.00279320488607, 46.854741793938786, 0.0], [-68.00275980488613, 46.85487072727193, 0.0], [-68.00272627155283, 46.85499959393837, 0.0], [-68.00269287155288, 46.85512852727152, 0.0], [-68.00265947155293, 46.85525739393796, 0.0], [-68.00262600488634, 46.855386327271106, 0.0], [-68.00259260488639, 46.85551532727089, 0.0], [-68.00255920488644, 46.855644193937394, 0.0], [-68.00252567155314, 46.85577312727048, 0.0], [-68.0024922715532, 46.85590199393698, 0.0], [-68.00245887155324, 46.856030927270126, 0.0], [-68.00242540488665, 46.85615979393657, 0.0], [-68.0023920048867, 46.856288727269714, 0.0], [-68.00235860488675, 46.8564177272695, 0.0]], "type": "LineString"}, "id": "308", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805079", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-68.01075607154041, 46.70319159417403, -68.01004273820814, 46.70345579417358], "geometry": {"coordinates": [[-68.01075607154041, 46.70319159417403, 0.0], [-68.01004273820814, 46.70345579417358, 0.0]], "type": "LineString"}, "id": "309", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805169", "fl_ds_name": "Presque Isle Stream"}, "type": "Feature"}, {"bbox": [-68.01004273820814, 46.69872452751429, -67.99947220489122, 46.70345579417358], "geometry": {"coordinates": [[-68.01004273820814, 46.70345579417358, 0.0], [-68.00987327154178, 46.70341212750702, 0.0], [-68.00969627154205, 46.70336632750707, 0.0], [-68.00951927154233, 46.70332059417382, 0.0], [-68.00934227154261, 46.703274794173865, 0.0], [-68.00916527154288, 46.70322912750726, 0.0], [-68.00898827154316, 46.703183394174005, 0.0], [-68.00881127154338, 46.70313759417411, 0.0], [-68.00863427154366, 46.7030919275075, 0.0], [-68.00845727154393, 46.70304612750755, 0.0], [-68.00828020487756, 46.703000394174296, 0.0], [-68.00810320487784, 46.7029545941744, 0.0], [-68.00792620487812, 46.70290892750779, 0.0], [-68.0077492048784, 46.70286312750784, 0.0], [-68.00757220487867, 46.70281739417459, 0.0], [-68.00739520487895, 46.70277172750798, 0.0], [-68.00721820487922, 46.702725927508084, 0.0], [-68.0070412048795, 46.702680194174775, 0.0], [-68.00686420487978, 46.70263439417488, 0.0], [-68.00668720488005, 46.70258872750827, 0.0], [-68.00651020488033, 46.70254292750832, 0.0], [-68.0063332048806, 46.702497194175066, 0.0], [-68.00615620488088, 46.70245139417517, 0.0], [-68.00597920488116, 46.70240572750856, 0.0], [-68.00580220488143, 46.70235992750861, 0.0], [-68.00562520488171, 46.70231419417536, 0.0], [-68.00544820488199, 46.70226839417546, 0.0], [-68.00527120488226, 46.702222727508854, 0.0], [-68.0050940715492, 46.7021769941756, 0.0], [-68.00491707154947, 46.70213119417565, 0.0], [-68.00474007154975, 46.70208552750904, 0.0], [-68.00456307155002, 46.702039727509145, 0.0], [-68.0045176048834, 46.70201612750918, 0.0], [-68.00436647155033, 46.7019375275093, 0.0], [-68.00421527155055, 46.701858994176064, 0.0], [-68.00406420488412, 46.70178052750953, 0.0], [-68.00391300488434, 46.701701927509646, 0.0], [-68.00376187155126, 46.701623394176465, 0.0], [-68.00361080488483, 46.70154492750987, 0.0], [-68.00345960488505, 46.70146632750999, 0.0], [-68.00330847155197, 46.70138779417681, 0.0], [-68.0031572715522, 46.70130932751027, 0.0], [-68.00300620488576, 46.701230794177036, 0.0], [-68.00285500488599, 46.701152194177155, 0.0], [-68.00275680488613, 46.70108499417728, 0.0], [-68.00262240488632, 46.7009929941774, 0.0], [-68.00248800488657, 46.70090112751092, 0.0], [-68.00235360488676, 46.700809127511036, 0.0], [-68.00221920488696, 46.700717127511155, 0.0], [-68.00208467155386, 46.70062512751133, 0.0], [-68.00195027155405, 46.70053312751145, 0.0], [-68.00181587155424, 46.70044119417827, 0.0], [-68.00168147155449, 46.70034919417844, 0.0], [-68.00154707155468, 46.70025719417856, 0.0], [-68.00141260488823, 46.70016519417868, 0.0], [-68.00127820488842, 46.700073194178856, 0.0], [-68.00114380488861, 46.69998132751232, 0.0], [-68.00100940488886, 46.69988932751244, 0.0], [-68.00087500488905, 46.69979732751261, 0.0], [-68.00074060488924, 46.69970532751273, 0.0], [-68.00060607155615, 46.69961332751291, 0.0], [-68.00047167155634, 46.699521394179726, 0.0], [-68.00033727155653, 46.699429394179845, 0.0], [-68.00020287155678, 46.69933739417996, 0.0], [-68.00006847155697, 46.69924539418014, 0.0], [-68.00004640489033, 46.6992261275135, 0.0], [-67.99992900489053, 46.69912352751368, 0.0], [-67.99981160489074, 46.6990209941805, 0.0], [-67.99969420489089, 46.69891839418062, 0.0], [-67.99957680489109, 46.6988157941808, 0.0], [-67.99947220489122, 46.69872452751429, 0.0]], "type": "LineString"}, "id": "310", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805147", "fl_ds_name": "Aroostook River"}, "type": "Feature"}, {"bbox": [-68.02132667152398, 46.67941252754423, -68.01075607154041, 46.70319159417403], "geometry": {"coordinates": [[-68.02132667152398, 46.67941252754423, 0.0], [-68.0178098048628, 46.680918527541905, 0.0], [-68.0165396715314, 46.683821194204086, 0.0], [-68.01515367153354, 46.68524679420187, 0.0], [-68.01439700486804, 46.68654052753317, 0.0], [-68.01335407153636, 46.68935899419546, 0.0], [-68.01359727153596, 46.68967432752834, 0.0], [-68.01329540486978, 46.690799527526565, 0.0], [-68.01339547153628, 46.69187719419159, 0.0], [-68.01442107153468, 46.69301732752314, 0.0], [-68.01548400486638, 46.693636994188864, 0.0], [-68.0167000048645, 46.695213327519696, 0.0], [-68.01711200486386, 46.6968847941838, 0.0], [-68.01710627153051, 46.698204394181744, 0.0], [-68.01832240486198, 46.69978072751263, 0.0], [-68.01800480486247, 46.70050652751149, 0.0], [-68.01711060486383, 46.70124312751034, 0.0], [-68.01569280486603, 46.701869727509404, 0.0], [-68.01277260487058, 46.70244472750852, 0.0], [-68.01075607154041, 46.70319159417403, 0.0]], "type": "LineString"}, "id": "311", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/811531", "fl_ds_name": "Presque Isle Stream"}, "type": "Feature"}, {"bbox": [-68.0454916048198, 46.67074519422437, -68.02132667152398, 46.67941252754423], "geometry": {"coordinates": [[-68.0454916048198, 46.67207552755565, 0.0], [-68.0434824048229, 46.67231379422191, 0.0], [-68.03755000483216, 46.67106779422386, 0.0], [-68.0363974048339, 46.67108979422386, 0.0], [-68.03517607150246, 46.67083319422426, 0.0], [-68.0335000048384, 46.67074519422437, 0.0], [-68.03241607150676, 46.671045727557214, 0.0], [-68.03091460484245, 46.67099432755731, 0.0], [-68.02949747151132, 46.67162099422302, 0.0], [-68.02790047151376, 46.67353039422005, 0.0], [-68.02649907151596, 46.67455659421847, 0.0], [-68.02349020485394, 46.67577312754992, 0.0], [-68.02306700485462, 46.676740727548406, 0.0], [-68.023257271521, 46.67717692754769, 0.0], [-68.02256947152205, 46.678749194211946, 0.0], [-68.02132667152398, 46.67941252754423, 0.0]], "type": "LineString"}, "id": "312", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805179", "fl_ds_name": "Presque Isle Stream"}, "type": "Feature"}, {"bbox": [-68.05869220479934, 46.673471194220156, -68.05339647147423, 46.67478092755147], "geometry": {"coordinates": [[-68.05869220479934, 46.67478092755147, 0.0], [-68.05617240480325, 46.67378979421966, 0.0], [-68.05402560480655, 46.673471194220156, 0.0], [-68.05339647147423, 46.673603194219936, 0.0]], "type": "LineString"}, "id": "313", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805185", "fl_ds_name": "Presque Isle Stream"}, "type": "Feature"}, {"bbox": [-68.05339647147423, 46.67094279422406, -68.0454916048198, 46.67410919421917], "geometry": {"coordinates": [[-68.05339647147423, 46.673603194219936, 0.0], [-68.05203240480967, 46.67410919421917, 0.0], [-68.05098540481129, 46.673889394219486, 0.0], [-68.05062047147851, 46.673416594220214, 0.0], [-68.05093760481134, 46.67269079422135, 0.0], [-68.05080000481155, 46.67213372755555, 0.0], [-68.050313471479, 46.67150339422318, 0.0], [-68.04827247148216, 46.67094279422406, 0.0], [-68.0454916048198, 46.67207552755565, 0.0]], "type": "LineString"}, "id": "314", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805189", "fl_ds_name": "Presque Isle Stream"}, "type": "Feature"}, {"bbox": [-68.0733262047766, 46.61672899430823, -68.07305160477705, 46.61705012764105], "geometry": {"coordinates": [[-68.07305160477705, 46.61672899430823, 0.0], [-68.07313367144354, 46.61682499430805, 0.0], [-68.0732298714434, 46.6169375943079, 0.0], [-68.0733262047766, 46.61705012764105, 0.0]], "type": "LineString"}, "id": "315", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805241", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.08936340475168, 46.61705012764105, -68.07318387144346, 46.67877899421188], "geometry": {"coordinates": [[-68.0733262047766, 46.61705012764105, 0.0], [-68.07318387144346, 46.617812394306554, 0.0], [-68.07408787144209, 46.61879432763834, 0.0], [-68.07443660477486, 46.6188675276382, 0.0], [-68.07540940477338, 46.62012792763625, 0.0], [-68.07557467143977, 46.62280299429881, 0.0], [-68.0766808047714, 46.625939594293925, 0.0], [-68.07604760477238, 46.62739099429166, 0.0], [-68.07436800477501, 46.628622794289754, 0.0], [-68.07422580477521, 46.6293851276219, 0.0], [-68.07459060477464, 46.62985779428783, 0.0], [-68.07565300477302, 46.63047679428689, 0.0], [-68.07693807143767, 46.63233079428397, 0.0], [-68.07705527143747, 46.63380772761502, 0.0], [-68.07778060476971, 46.636072327611544, 0.0], [-68.07791380476948, 46.6379487276086, 0.0], [-68.07887087143467, 46.63880959427394, 0.0], [-68.08098000476474, 46.63964819427264, 0.0], [-68.08151940476387, 46.64015739427185, 0.0], [-68.08130827143088, 46.64064132760444, 0.0], [-68.07933240476729, 46.64167899426951, 0.0], [-68.07896300476784, 46.64252572760148, 0.0], [-68.07918580476752, 46.64376072759961, 0.0], [-68.08040227143226, 46.645336327597136, 0.0], [-68.08287667142844, 46.64664752759512, 0.0], [-68.08456400475916, 46.64845372759231, 0.0], [-68.08427960475962, 46.64997852758995, 0.0], [-68.08191800476328, 46.65146352758762, 0.0], [-68.08165407143036, 46.65206839425338, 0.0], [-68.08186080476338, 46.652903927585385, 0.0], [-68.08429447142623, 46.6560549942472, 0.0], [-68.08448507142595, 46.65649112757984, 0.0], [-68.08423727142633, 46.65749539424496, 0.0], [-68.08503207142508, 46.66003872757432, 0.0], [-68.08682100475568, 46.66292239423649, 0.0], [-68.08728740475493, 46.6644725942341, 0.0], [-68.08909700475215, 46.66643652756437, 0.0], [-68.08888587141911, 46.666920327563616, 0.0], [-68.08809847142032, 46.66741539422952, 0.0], [-68.08663680475593, 46.67120212755697, 0.0], [-68.087034271422, 46.67247379422167, 0.0], [-68.08915647141868, 46.67503132755104, 0.0], [-68.08936340475168, 46.67586692754975, 0.0], [-68.08878280475261, 46.67719759421436, 0.0], [-68.08816980475353, 46.67772932754684, 0.0], [-68.08644687142288, 46.67877899421188, 0.0]], "type": "LineString"}, "id": "316", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805239", "fl_ds_name": "Presque Isle Stream"}, "type": "Feature"}, {"bbox": [-68.08644687142288, 46.671915594222526, -68.05869220479934, 46.67894319421163], "geometry": {"coordinates": [[-68.08644687142288, 46.67877899421188, 0.0], [-68.08617740475665, 46.67894319421163, 0.0], [-68.08498740475852, 46.678910594211686, 0.0], [-68.08428927142626, 46.67876432754525, 0.0], [-68.08385520476025, 46.67801299421308, 0.0], [-68.08298260476164, 46.67783012754671, 0.0], [-68.08093667143146, 46.67858939421217, 0.0], [-68.08058760476536, 46.67851619421231, 0.0], [-68.07933380476726, 46.67746099421396, 0.0], [-68.07811207143584, 46.67720479421433, 0.0], [-68.0771340047707, 46.6772637275476, 0.0], [-68.07644040477174, 46.67579779421652, 0.0], [-68.07555167143983, 46.675215327550745, 0.0], [-68.0748536714409, 46.67506892755097, 0.0], [-68.07212587144511, 46.67608119421607, 0.0], [-68.070920271447, 46.676224394215865, 0.0], [-68.06790087145168, 46.67572299421664, 0.0], [-68.06687460478662, 46.67458332755177, 0.0], [-68.06654627145377, 46.67359012755327, 0.0], [-68.06581620478823, 46.672644594221424, 0.0], [-68.0649276714563, 46.67206212755565, 0.0], [-68.06422980479073, 46.671915594222526, 0.0], [-68.06332047145878, 46.67225292755535, 0.0], [-68.0609206714625, 46.67425819421891, 0.0], [-68.05978400479762, 46.67467992755161, 0.0], [-68.05869220479934, 46.67478092755147, 0.0]], "type": "LineString"}, "id": "317", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805577", "fl_ds_name": "Presque Isle Stream"}, "type": "Feature"}, {"bbox": [-70.26022440138212, 43.60822213231137, -70.24122306807828, 43.63254259894029], "geometry": {"coordinates": [[-70.26022440138212, 43.60822213231137, 0.0], [-70.25993906804922, 43.6092967323097, 0.0], [-70.25899240138403, 43.610690732307546, 0.0], [-70.25873986805107, 43.611079198973584, 0.0], [-70.2574464013864, 43.61274719897102, 0.0], [-70.25678466805408, 43.61318113230368, 0.0], [-70.25580800138897, 43.61370599896952, 0.0], [-70.25480020139054, 43.614047998969, 0.0], [-70.25272080139376, 43.61509773230068, 0.0], [-70.25212180139465, 43.615645932299856, 0.0], [-70.25167860139538, 43.61694893229782, 0.0], [-70.25139446806247, 43.61731453229726, 0.0], [-70.25044946806395, 43.617702198963286, 0.0], [-70.24975466806501, 43.6188677322948, 0.0], [-70.24948160139877, 43.61920419896097, 0.0], [-70.24788080140127, 43.62126413229112, 0.0], [-70.24722200140229, 43.6223625322894, 0.0], [-70.24643666807015, 43.62316373228816, 0.0], [-70.24426746807353, 43.624515198952736, 0.0], [-70.24385906807419, 43.62492733228544, 0.0], [-70.24385940140752, 43.62508733228515, 0.0], [-70.24329446807502, 43.62593399895053, 0.0], [-70.24216320141011, 43.62687279894908, 0.0], [-70.241409868078, 43.62801699894732, 0.0], [-70.24125386807822, 43.628703132279554, 0.0], [-70.24122306807828, 43.629091998945626, 0.0], [-70.24201126807702, 43.629617132278156, 0.0], [-70.24264086807608, 43.62963933227809, 0.0], [-70.24377360140761, 43.62931799894528, 0.0], [-70.24405686807387, 43.62934053227855, 0.0], [-70.24522286807206, 43.629819398944505, 0.0], [-70.24572660140461, 43.629887532277735, 0.0], [-70.24667086806983, 43.629840732277785, 0.0], [-70.24720566806894, 43.629657132278055, 0.0], [-70.24786560140126, 43.629084798945655, 0.0], [-70.24849486806698, 43.62892399894588, 0.0], [-70.2490308013995, 43.62922073227878, 0.0], [-70.24950380139876, 43.62960893227813, 0.0], [-70.24992106806474, 43.630072998944115, 0.0], [-70.24995180139803, 43.63048459894344, 0.0], [-70.2501718013977, 43.63066793227654, 0.0], [-70.2501078013978, 43.63119359894239, 0.0], [-70.24963400139853, 43.631970598941166, 0.0], [-70.24966460139848, 43.63240513227379, 0.0], [-70.24994760139805, 43.63254259894029, 0.0]], "type": "LineString"}, "id": "318", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6721955", "fl_ds_name": "Trout Brook"}, "type": "Feature"}, {"bbox": [-70.25142160139575, 43.63254259894029, -70.24911080139935, 43.637269932266236], "geometry": {"coordinates": [[-70.24994760139805, 43.63254259894029, 0.0], [-70.24988306806483, 43.63332013227239, 0.0], [-70.25026026806421, 43.63364059893854, 0.0], [-70.25079320139673, 43.63476159893685, 0.0], [-70.25139060139583, 43.63524253226939, 0.0], [-70.25142160139575, 43.635471198935704, 0.0], [-70.25123220139608, 43.63567693226872, 0.0], [-70.25063346806365, 43.635996332268235, 0.0], [-70.24948800139879, 43.63697219893339, 0.0], [-70.24911080139935, 43.637269932266236, 0.0]], "type": "LineString"}, "id": "319", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6721949", "fl_ds_name": "Trout Brook"}, "type": "Feature"}, {"bbox": [-70.25449046805767, 43.62772233228111, -70.24994760139805, 43.63254259894029], "geometry": {"coordinates": [[-70.25449046805767, 43.62772233228111, 0.0], [-70.25404886805836, 43.62815633228041, 0.0], [-70.25291246806012, 43.62971019894468, 0.0], [-70.25253426806069, 43.629984198944214, 0.0], [-70.25225006806113, 43.63046413227681, 0.0], [-70.25158740139551, 43.6312409322756, 0.0], [-70.25070460139688, 43.63188033227465, 0.0], [-70.25007360139784, 43.632519932273624, 0.0], [-70.24994760139805, 43.63254259894029, 0.0]], "type": "LineString"}, "id": "322", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6721591", "fl_ds_name": "Kimball Brook"}, "type": "Feature"}, {"bbox": [-68.85991167022235, 44.763691397184516, -68.85548120356253, 44.77011613050786], "geometry": {"coordinates": [[-68.85560920356232, 44.77011613050786, 0.0], [-68.85573780356214, 44.76965893050857, 0.0], [-68.85548120356253, 44.7692471971759, 0.0], [-68.85560980356234, 44.768401197177184, 0.0], [-68.85577040356208, 44.76810393051096, 0.0], [-68.85760027022593, 44.76696099717941, 0.0], [-68.85801760355861, 44.76650373051348, 0.0], [-68.85975107022256, 44.76520059718217, 0.0], [-68.85991167022235, 44.76490339718259, 0.0], [-68.85987980355571, 44.76440033051671, 0.0], [-68.85910960355693, 44.76394293051743, 0.0], [-68.85910967022357, 44.763691397184516, 0.0]], "type": "LineString"}, "id": "333", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1735936", "fl_ds_name": "Shaw Brook"}, "type": "Feature"}, {"bbox": [-68.87467600353273, 44.77011613050786, -68.85560920356232, 44.77592553049885], "geometry": {"coordinates": [[-68.87467600353273, 44.77592553049885, 0.0], [-68.87448327019973, 44.775856930498946, 0.0], [-68.87348820353458, 44.7752395304999, 0.0], [-68.87339187020143, 44.775056530500194, 0.0], [-68.87335980353481, 44.77414193050163, 0.0], [-68.87313507020178, 44.773433130502724, 0.0], [-68.87281407020231, 44.77293013050348, 0.0], [-68.8724288702029, 44.77256419717071, 0.0], [-68.87149800353768, 44.772152597171385, 0.0], [-68.86963627020725, 44.771969597171676, 0.0], [-68.86921900354122, 44.77212973050473, 0.0], [-68.86873740354196, 44.772609797170674, 0.0], [-68.8674532702106, 44.772792597170394, 0.0], [-68.8658162035465, 44.77256399717072, 0.0], [-68.864628470215, 44.77228953050451, 0.0], [-68.86356940355, 44.771832130505175, 0.0], [-68.86218907021879, 44.771626130505524, 0.0], [-68.86074467022104, 44.77126013050611, 0.0], [-68.86007060355541, 44.770939930506586, 0.0], [-68.85859420355769, 44.770619730507065, 0.0], [-68.8580806035585, 44.77059673050712, 0.0], [-68.85759900355924, 44.77071099717358, 0.0], [-68.85670040356064, 44.7707793971735, 0.0], [-68.85618680356146, 44.770527797173884, 0.0], [-68.85560920356232, 44.77011613050786, 0.0]], "type": "LineString"}, "id": "334", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1735920", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.84290840358204, 44.74867199720779, -68.83520407026066, 44.75091879720435], "geometry": {"coordinates": [[-68.84290840358204, 44.748751997207705, 0.0], [-68.84278300358227, 44.74867199720779, 0.0], [-68.8426754702491, 44.748672597207815, 0.0], [-68.84256787024924, 44.748673197207836, 0.0], [-68.84246040358278, 44.7486737972078, 0.0], [-68.84235280358291, 44.74867433054112, 0.0], [-68.84224527024975, 44.74867493054114, 0.0], [-68.84218767024981, 44.748697197207775, 0.0], [-68.84209327024996, 44.748733797207706, 0.0], [-68.84199887025011, 44.748770397207636, 0.0], [-68.84190447025026, 44.74880699720762, 0.0], [-68.8418100702504, 44.74884353054085, 0.0], [-68.84171567025055, 44.74888013054084, 0.0], [-68.8416212702507, 44.74891673054077, 0.0], [-68.84152687025085, 44.7489533305407, 0.0], [-68.841432470251, 44.748989797207344, 0.0], [-68.84133807025114, 44.749026397207274, 0.0], [-68.84124367025129, 44.749062997207204, 0.0], [-68.84114927025144, 44.749099597207135, 0.0], [-68.84105487025158, 44.74913613054042, 0.0], [-68.84096047025173, 44.74917273054035, 0.0], [-68.84086607025188, 44.74920933054034, 0.0], [-68.84077167025202, 44.74924593054027, 0.0], [-68.84067727025217, 44.749282397206855, 0.0], [-68.84058287025232, 44.749318997206785, 0.0], [-68.84048847025247, 44.74935559720677, 0.0], [-68.84039407025261, 44.74939213054, 0.0], [-68.84029967025276, 44.74942873053999, 0.0], [-68.84020527025291, 44.74946533053992, 0.0], [-68.84011087025306, 44.74950193053985, 0.0], [-68.8400164702532, 44.74953839720649, 0.0], [-68.83992207025335, 44.74957499720642, 0.0], [-68.8398276702535, 44.74961159720635, 0.0], [-68.83973327025365, 44.749648197206284, 0.0], [-68.8396388702538, 44.74968473053957, 0.0], [-68.83954447025394, 44.7497213305395, 0.0], [-68.83945007025409, 44.74975793053943, 0.0], [-68.83935567025424, 44.74979453053942, 0.0], [-68.83926127025438, 44.749830997206004, 0.0], [-68.83916687025453, 44.749867597205935, 0.0], [-68.83910647025465, 44.74988679720593, 0.0], [-68.83900840358808, 44.749918130539186, 0.0], [-68.83891027025493, 44.74994939720585, 0.0], [-68.83881220358842, 44.74998073053911, 0.0], [-68.83871407025521, 44.750011930539074, 0.0], [-68.8386160035887, 44.750043197205684, 0.0], [-68.83851787025554, 44.750074530538996, 0.0], [-68.83841980358903, 44.750105797205606, 0.0], [-68.83832167025582, 44.750136997205516, 0.0], [-68.83822360358931, 44.75016833053883, 0.0], [-68.83812540358946, 44.75019959720544, 0.0], [-68.8380272702563, 44.750230797205404, 0.0], [-68.8379292035898, 44.75026213053866, 0.0], [-68.83783107025658, 44.75029339720527, 0.0], [-68.83773300359007, 44.75032473053858, 0.0], [-68.83763487025692, 44.75035593053855, 0.0], [-68.83753680359041, 44.75038719720516, 0.0], [-68.8374386702572, 44.75041853053841, 0.0], [-68.83734060359069, 44.75044973053838, 0.0], [-68.83724247025754, 44.75048099720499, 0.0], [-68.83714440359103, 44.7505123305383, 0.0], [-68.83704620359117, 44.750543530538266, 0.0], [-68.83694807025796, 44.75057479720488, 0.0], [-68.83685000359145, 44.75060613053813, 0.0], [-68.8367518702583, 44.75063739720474, 0.0], [-68.83665380359179, 44.75066859720471, 0.0], [-68.83655567025858, 44.75069993053802, 0.0], [-68.83645760359207, 44.75073119720463, 0.0], [-68.83635947025891, 44.75076239720454, 0.0], [-68.83626140359235, 44.75079373053785, 0.0], [-68.83616320359255, 44.75082499720446, 0.0], [-68.83606507025934, 44.75085633053777, 0.0], [-68.83596700359283, 44.75088753053768, 0.0], [-68.83586887025967, 44.75091879720435, 0.0], [-68.83575860359315, 44.75091553053767, 0.0], [-68.83566207025996, 44.7508987305377, 0.0], [-68.83545380359362, 44.7508405305378, 0.0], [-68.83540367026035, 44.75082839720449, 0.0], [-68.83534820359381, 44.7508233972045, 0.0], [-68.83529620359388, 44.750815797204496, 0.0], [-68.83525467026061, 44.750810397204475, 0.0], [-68.83520407026066, 44.75079339720452, 0.0]], "type": "LineString"}, "id": "335", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736936", "fl_ds_name": "Souadabscook Stream"}, "type": "Feature"}, {"bbox": [-68.83520407026066, 44.7451447305466, -68.82933060360313, 44.75079339720452], "geometry": {"coordinates": [[-68.83520407026066, 44.75079339720452, 0.0], [-68.83517820359407, 44.750789597204516, 0.0], [-68.83514747026078, 44.75077499720453, 0.0], [-68.83510467026082, 44.750744930537905, 0.0], [-68.83507660359419, 44.750712930537986, 0.0], [-68.8350336035943, 44.75067779720467, 0.0], [-68.83499300359432, 44.75064813053808, 0.0], [-68.8349372702611, 44.75061033053811, 0.0], [-68.8348838035945, 44.75057299720487, 0.0], [-68.83482867026129, 44.75053533053824, 0.0], [-68.83478367026134, 44.750508930538274, 0.0], [-68.83470080359479, 44.75046019720503, 0.0], [-68.83461787026158, 44.75041159720513, 0.0], [-68.83453500359508, 44.75036293053853, 0.0], [-68.83445207026188, 44.75031433053857, 0.0], [-68.83436920359532, 44.75026573053867, 0.0], [-68.83428627026211, 44.75021699720543, 0.0], [-68.83420340359555, 44.75016839720547, 0.0], [-68.83412047026235, 44.75011979720557, 0.0], [-68.83403760359585, 44.75007113053897, 0.0], [-68.83395467026264, 44.75002253053907, 0.0], [-68.83387187026273, 44.74997379720577, 0.0], [-68.83378900359622, 44.74992519720587, 0.0], [-68.83377320359625, 44.749904797205886, 0.0], [-68.833721670263, 44.749837730539355, 0.0], [-68.8336702035964, 44.74977073053947, 0.0], [-68.83361867026315, 44.74970373053952, 0.0], [-68.83356720359654, 44.749636730539635, 0.0], [-68.8335156702633, 44.74956973053975, 0.0], [-68.8334640702634, 44.74950273053986, 0.0], [-68.8334126035968, 44.74943573053997, 0.0], [-68.83336107026355, 44.749368730540084, 0.0], [-68.83330960359694, 44.74930159720685, 0.0], [-68.8332580702637, 44.749234597206964, 0.0], [-68.83320660359709, 44.74916759720702, 0.0], [-68.83315507026384, 44.74910059720713, 0.0], [-68.83310347026395, 44.749033597207244, 0.0], [-68.83305200359734, 44.74896659720736, 0.0], [-68.8330004702641, 44.74889959720747, 0.0], [-68.83294900359749, 44.74883259720758, 0.0], [-68.8329488702642, 44.74881759720756, 0.0], [-68.83294827026418, 44.748741330541066, 0.0], [-68.83294767026416, 44.74866493054117, 0.0], [-68.8329470702642, 44.74858859720791, 0.0], [-68.83294647026418, 44.74851219720807, 0.0], [-68.83294587026421, 44.74843593054152, 0.0], [-68.83294527026419, 44.74835959720832, 0.0], [-68.83294467026417, 44.74828319720842, 0.0], [-68.8329440702642, 44.74820693054187, 0.0], [-68.83294347026418, 44.74813053054197, 0.0], [-68.83294287026416, 44.74805419720877, 0.0], [-68.8329422702642, 44.74797793054222, 0.0], [-68.83294167026418, 44.74790153054232, 0.0], [-68.83294107026421, 44.747825197209124, 0.0], [-68.83294047026419, 44.747748797209226, 0.0], [-68.83293987026417, 44.74767253054267, 0.0], [-68.8329392702642, 44.747596197209475, 0.0], [-68.83293867026418, 44.74751979720958, 0.0], [-68.83291640359755, 44.74748119720965, 0.0], [-68.83287560359764, 44.74741059720975, 0.0], [-68.83283480359768, 44.747339997209906, 0.0], [-68.83279407026441, 44.747269330543304, 0.0], [-68.8327532702645, 44.74719873054346, 0.0], [-68.83271247026454, 44.747127997210214, 0.0], [-68.83267167026463, 44.74705739721031, 0.0], [-68.83263100359801, 44.74698673054377, 0.0], [-68.83259020359804, 44.746916130543866, 0.0], [-68.83254940359814, 44.746845530543965, 0.0], [-68.83250860359817, 44.746774797210776, 0.0], [-68.83249020359824, 44.7467657305441, 0.0], [-68.83240200359836, 44.74672219721083, 0.0], [-68.8323136702652, 44.74667859721092, 0.0], [-68.83222540359861, 44.74663499721095, 0.0], [-68.83213707026545, 44.746591397211034, 0.0], [-68.83204880359892, 44.74654779721112, 0.0], [-68.83199040359898, 44.74653999721113, 0.0], [-68.83188467026582, 44.746525930544465, 0.0], [-68.83177900359931, 44.74651173054451, 0.0], [-68.83167327026615, 44.7464975972112, 0.0], [-68.83156760359964, 44.74648353054454, 0.0], [-68.83146200359982, 44.746469330544585, 0.0], [-68.83135627026667, 44.746455197211276, 0.0], [-68.83125060360015, 44.74644113054461, 0.0], [-68.831144870267, 44.74642693054466, 0.0], [-68.83103920360048, 44.74641279721129, 0.0], [-68.83093360360067, 44.74639873054468, 0.0], [-68.83082787026746, 44.746384530544674, 0.0], [-68.83072220360094, 44.746370397211365, 0.0], [-68.83061647026778, 44.74635633054476, 0.0], [-68.83051080360127, 44.74634213054475, 0.0], [-68.83040520360146, 44.74632799721144, 0.0], [-68.8302994702683, 44.74631393054483, 0.0], [-68.83029280360165, 44.746305797211505, 0.0], [-68.83023827026841, 44.7462399972116, 0.0], [-68.83018367026847, 44.7461741972117, 0.0], [-68.83012920360187, 44.7461083972118, 0.0], [-68.83007467026863, 44.7460425972119, 0.0], [-68.83002007026874, 44.745976797211995, 0.0], [-68.82996560360215, 44.74591099721209, 0.0], [-68.8299110702689, 44.74584519721219, 0.0], [-68.82985660360231, 44.74577939721229, 0.0], [-68.82980200360242, 44.74571359721239, 0.0], [-68.82974747026913, 44.745647797212484, 0.0], [-68.82969300360259, 44.74558199721258, 0.0], [-68.82963847026934, 44.74551619721274, 0.0], [-68.8295838702694, 44.745450397212835, 0.0], [-68.8295294036028, 44.74538459721293, 0.0], [-68.82947487026956, 44.74531879721303, 0.0], [-68.82942040360297, 44.74525299721313, 0.0], [-68.82936580360308, 44.74518719721323, 0.0], [-68.82933060360313, 44.7451447305466, 0.0]], "type": "LineString"}, "id": "336", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743086", "fl_ds_name": "Souadabscook Stream"}, "type": "Feature"}, {"bbox": [-68.85910967022357, 44.748751997207705, -68.84290840358204, 44.763691397184516], "geometry": {"coordinates": [[-68.85910967022357, 44.763691397184516, 0.0], [-68.8584356702246, 44.76325679718519, 0.0], [-68.85814700355843, 44.76291379718572, 0.0], [-68.85782627022559, 44.76197619718715, 0.0], [-68.85763427022584, 44.76042153052293, 0.0], [-68.85744180355948, 44.76005559719016, 0.0], [-68.85737767022624, 44.759506797190966, 0.0], [-68.85763460355918, 44.759163930524835, 0.0], [-68.85879007022407, 44.758706730525546, 0.0], [-68.85879020355742, 44.75827233052627, 0.0], [-68.85853347022447, 44.757974997193344, 0.0], [-68.85712180356, 44.757060130528146, 0.0], [-68.85680100356046, 44.75639693052915, 0.0], [-68.85721860355983, 44.75548239719723, 0.0], [-68.85721867022653, 44.75486499719818, 0.0], [-68.85689787022699, 44.75461339719857, 0.0], [-68.85622400356141, 44.75440753053226, 0.0], [-68.85516487022971, 44.75502473053126, 0.0], [-68.85494027023003, 44.75495599719807, 0.0], [-68.85455540356395, 44.75454453053203, 0.0], [-68.85436287023094, 44.75417859719926, 0.0], [-68.85436307023093, 44.753789797199886, 0.0], [-68.85455567023064, 44.75356133053356, 0.0], [-68.85522967022962, 44.75330993053393, 0.0], [-68.85548647022921, 44.75301273053441, 0.0], [-68.85545447022923, 44.752738197201495, 0.0], [-68.85413880356464, 44.7526923305349, 0.0], [-68.85227747023418, 44.75308073053429, 0.0], [-68.85202080356794, 44.75296633053449, 0.0], [-68.8515396702353, 44.7523487972021, 0.0], [-68.85044887023702, 44.751914130536136, 0.0], [-68.84865227023982, 44.75106779720409, 0.0], [-68.84775400357455, 44.750930397204286, 0.0], [-68.84614880357702, 44.75007893053896, 0.0], [-68.84483347024576, 44.74952979720649, 0.0], [-68.84358220358104, 44.74886639720751, 0.0], [-68.84290840358204, 44.748751997207705, 0.0]], "type": "LineString"}, "id": "352", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736644", "fl_ds_name": "Souadabscook Stream"}, "type": "Feature"}, {"bbox": [-68.7186832037749, 44.97986959684897, -68.70866800379042, 45.00007839681757], "geometry": {"coordinates": [[-68.71628887044528, 44.97986959684897, 0.0], [-68.71628947044525, 44.980212530181745, 0.0], [-68.71670900377796, 44.98064653018105, 0.0], [-68.71712960377727, 44.981743730179346, 0.0], [-68.71803387044253, 44.98302339684403, 0.0], [-68.7184560704419, 44.984943796841094, 0.0], [-68.7186822037749, 44.985332330173776, 0.0], [-68.7186832037749, 44.98588113017297, 0.0], [-68.71829760377545, 44.9865215968386, 0.0], [-68.71742820377682, 44.986865196838096, 0.0], [-68.71572067044616, 44.986935196837976, 0.0], [-68.7154308704466, 44.98702693017117, 0.0], [-68.71475487044762, 44.98753039683703, 0.0], [-68.71436907044824, 44.988010796836306, 0.0], [-68.7138212704491, 44.98801119683628, 0.0], [-68.71291880378385, 44.98785193016988, 0.0], [-68.7120488037852, 44.98789819683651, 0.0], [-68.70963240378893, 44.98822013016934, 0.0], [-68.70924587045619, 44.98835759683578, 0.0], [-68.70876387045695, 44.98924973016773, 0.0], [-68.70866800379042, 44.98982133016682, 0.0], [-68.70905627045647, 44.99075853016535, 0.0], [-68.70989567045518, 44.991809730163766, 0.0], [-68.71028420378792, 44.992883996828766, 0.0], [-68.71122060378644, 44.993980930160376, 0.0], [-68.71144687045279, 44.99441519682637, 0.0], [-68.71154420378593, 44.99487233015901, 0.0], [-68.71141620378614, 44.99535253015824, 0.0], [-68.71080500378713, 44.99619899682358, 0.0], [-68.71064460378733, 44.99663353015626, 0.0], [-68.71071060378728, 44.99763959682139, 0.0], [-68.71084000378704, 44.99791379682091, 0.0], [-68.71125927045307, 44.99816513015389, 0.0], [-68.712807203784, 44.998689730153046, 0.0], [-68.71419407044851, 44.9993289301521, 0.0], [-68.715806670446, 44.99989939681785, 0.0], [-68.7160002704457, 45.00007839681757, 0.0]], "type": "LineString"}, "id": "353", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1735580", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.71648640377828, 45.00007839681757, -68.7160002704457, 45.0006473968167], "geometry": {"coordinates": [[-68.7160002704457, 45.00007839681757, 0.0], [-68.71648640377828, 45.0006473968167, 0.0]], "type": "LineString"}, "id": "354", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732924", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.71810287044246, 45.0006473968167, -68.71488987044745, 45.01034293013498], "geometry": {"coordinates": [[-68.71648640377828, 45.0006473968167, 0.0], [-68.71619667044541, 45.000899196816306, 0.0], [-68.71610020377886, 45.00103633014942, 0.0], [-68.71616560377879, 45.001676530148416, 0.0], [-68.71626227044533, 45.00174499681498, 0.0], [-68.71629487044527, 45.001904996814744, 0.0], [-68.71752147044333, 45.00309299681288, 0.0], [-68.71794127044268, 45.00359559681215, 0.0], [-68.71810287044246, 45.003869930145015, 0.0], [-68.71807127044252, 45.00434999681096, 0.0], [-68.71784627044286, 45.004693330143766, 0.0], [-68.71726700377707, 45.00517393014303, 0.0], [-68.71700960377746, 45.0054483301426, 0.0], [-68.7158838037792, 45.00693539680691, 0.0], [-68.71517640378033, 45.00798773013861, 0.0], [-68.71492007044736, 45.00890253013722, 0.0], [-68.71488987044745, 45.01029719680173, 0.0], [-68.71495447044731, 45.01034293013498, 0.0]], "type": "LineString"}, "id": "355", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732920", "fl_ds_name": "Judkins Brook"}, "type": "Feature"}, {"bbox": [-68.71495447044731, 45.01034293013498, -68.70214140380057, 45.022149930116655], "geometry": {"coordinates": [[-68.71495447044731, 45.01034293013498, 0.0], [-68.71489047044741, 45.01059439680125, 0.0], [-68.7143432037816, 45.01107499680052, 0.0], [-68.71276487045071, 45.01183073013266, 0.0], [-68.71189540378543, 45.012425796798425, 0.0], [-68.70989940378848, 45.01407353012917, 0.0], [-68.70964187045558, 45.01441659679534, 0.0], [-68.70957820378902, 45.01489693012792, 0.0], [-68.70964307045557, 45.015193996794096, 0.0], [-68.70977240378869, 45.01542273012711, 0.0], [-68.70977367045538, 45.01631419679239, 0.0], [-68.70958087045568, 45.01672593012506, 0.0], [-68.7090014037899, 45.01727519679088, 0.0], [-68.70768107045865, 45.018236396789405, 0.0], [-68.70590907046136, 45.0190149967882, 0.0], [-68.7041690037974, 45.01963359678723, 0.0], [-68.70371807046479, 45.01990819678679, 0.0], [-68.70268747046634, 45.02075493011881, 0.0], [-68.70239787046683, 45.02114373011824, 0.0], [-68.70226940380036, 45.02144113011775, 0.0], [-68.70214140380057, 45.022149930116655, 0.0]], "type": "LineString"}, "id": "356", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733626", "fl_ds_name": "Brown Brook"}, "type": "Feature"}, {"bbox": [-68.64324147055862, 44.932871196921894, -68.64253300389305, 44.934311596919656], "geometry": {"coordinates": [[-68.64324147055862, 44.934311596919656, 0.0], [-68.64320920389201, 44.93403733025343, 0.0], [-68.64282287055931, 44.93353433025419, 0.0], [-68.64253300389305, 44.932871196921894, 0.0]], "type": "LineString"}, "id": "357", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1735682", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.64253300389305, 44.93049699692557, -68.64085840389566, 44.932871196921894], "geometry": {"coordinates": [[-68.64253300389305, 44.932871196921894, 0.0], [-68.64085840389566, 44.93049699692557, 0.0]], "type": "LineString"}, "id": "358", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743018", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.67120227051527, 44.877234330341594, -68.66801840385352, 44.87743919700796], "geometry": {"coordinates": [[-68.66801840385352, 44.87734893034144, 0.0], [-68.6687258038524, 44.877234330341594, 0.0], [-68.67055900384958, 44.877302197008134, 0.0], [-68.67120227051527, 44.87743919700796, 0.0]], "type": "LineString"}, "id": "359", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1735764", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.67448007051013, 44.874716797012184, -68.67120227051527, 44.87753673034115], "geometry": {"coordinates": [[-68.67120227051527, 44.87743919700796, 0.0], [-68.67128227051512, 44.877386997008045, 0.0], [-68.6713876038483, 44.877403530341326, 0.0], [-68.6714926705148, 44.87741999700796, 0.0], [-68.67159787051463, 44.8774365303413, 0.0], [-68.67170300384782, 44.877452930341235, 0.0], [-68.6718082705143, 44.87746939700787, 0.0], [-68.67191347051414, 44.87748593034121, 0.0], [-68.67201880384732, 44.877502397007845, 0.0], [-68.67212400384716, 44.877518930341125, 0.0], [-68.67222907051365, 44.87753533034112, 0.0], [-68.67223800384699, 44.87753673034115, 0.0], [-68.67232760384684, 44.877494330341165, 0.0], [-68.67241720384669, 44.87745193034124, 0.0], [-68.6725066705132, 44.87740953034131, 0.0], [-68.6725964705131, 44.87736713034138, 0.0], [-68.67268607051295, 44.8773247970081, 0.0], [-68.67277580384615, 44.87728239700817, 0.0], [-68.67286527051266, 44.877239997008246, 0.0], [-68.67295500384586, 44.87719759700832, 0.0], [-68.67304460384571, 44.87715519700839, 0.0], [-68.67313427051226, 44.877112797008465, 0.0], [-68.67322380384542, 44.87707039700854, 0.0], [-68.67331340384533, 44.877027997008554, 0.0], [-68.67339087051187, 44.876991397008624, 0.0], [-68.6734216705118, 44.87691819700876, 0.0], [-68.67345280384507, 44.87684513034219, 0.0], [-68.6734836705117, 44.87677199700897, 0.0], [-68.67351467051168, 44.87669879700911, 0.0], [-68.67354560384496, 44.87662573034254, 0.0], [-68.67357647051153, 44.87655253034262, 0.0], [-68.67360760384486, 44.876479397009405, 0.0], [-68.67363840384479, 44.876406197009544, 0.0], [-68.67366927051143, 44.87633313034297, 0.0], [-68.67370027051135, 44.87625993034311, 0.0], [-68.67373127051133, 44.87618679700989, 0.0], [-68.6737622038446, 44.876113597009976, 0.0], [-68.67379307051124, 44.87604053034346, 0.0], [-68.67382400384452, 44.87596733034354, 0.0], [-68.67385500384444, 44.875894197010325, 0.0], [-68.67388587051107, 44.875820997010464, 0.0], [-68.67391687051105, 44.87574793034389, 0.0], [-68.67394787051097, 44.87567473034403, 0.0], [-68.67397867051096, 44.875601597010814, 0.0], [-68.67400967051088, 44.87552853034424, 0.0], [-68.67404060384416, 44.87545533034438, 0.0], [-68.67407160384414, 44.875382197011106, 0.0], [-68.67410247051072, 44.875308997011246, 0.0], [-68.67413340384405, 44.87523593034467, 0.0], [-68.67416447051062, 44.87516273034481, 0.0], [-68.67419527051061, 44.875089597011595, 0.0], [-68.67422620384389, 44.87501639701168, 0.0], [-68.67425720384381, 44.87494333034516, 0.0], [-68.67428820384379, 44.87487013034524, 0.0], [-68.67440500384362, 44.874799130345366, 0.0], [-68.67448007051013, 44.874716797012184, 0.0]], "type": "LineString"}, "id": "360", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736822", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.6746086038433, 44.87368779701376, -68.67448007051013, 44.874716797012184], "geometry": {"coordinates": [[-68.67448007051013, 44.874716797012184, 0.0], [-68.6746086038433, 44.87453393034576, 0.0], [-68.67460787050993, 44.87368779701376, 0.0]], "type": "LineString"}, "id": "361", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1735770", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.67460787050993, 44.869743397019874, -68.67211727051381, 44.87368779701376], "geometry": {"coordinates": [[-68.67460787050993, 44.87368779701376, 0.0], [-68.67455727051004, 44.87363413034717, 0.0], [-68.67451340384343, 44.87356439701398, 0.0], [-68.67446947051019, 44.87349459701409, 0.0], [-68.67442560384359, 44.87342493034748, 0.0], [-68.67438180384363, 44.87335519701429, 0.0], [-68.67433787051039, 44.8732853970144, 0.0], [-68.67429387051044, 44.87321573034785, 0.0], [-68.67425020384383, 44.87314593034796, 0.0], [-68.67420620384394, 44.87307619701471, 0.0], [-68.67416227051064, 44.873006530348164, 0.0], [-68.67411840384403, 44.87293673034827, 0.0], [-68.67407447051079, 44.872866997015024, 0.0], [-68.67403060384419, 44.87279719701513, 0.0], [-68.67403100384416, 44.87279579701516, 0.0], [-68.67404407051083, 44.87271999701528, 0.0], [-68.6740570705108, 44.872644197015404, 0.0], [-68.6740704038441, 44.87256839701553, 0.0], [-68.67408340384412, 44.87249273034894, 0.0], [-68.67409667051078, 44.87241693034906, 0.0], [-68.67410967051075, 44.872341130349184, 0.0], [-68.67412300384404, 44.87226533034931, 0.0], [-68.67413600384401, 44.87218953034943, 0.0], [-68.67414927051067, 44.872113730349554, 0.0], [-68.67416227051064, 44.87203793034968, 0.0], [-68.67412920384402, 44.871994530349696, 0.0], [-68.67407760384413, 44.87192739701652, 0.0], [-68.67402620384422, 44.87186033034993, 0.0], [-68.67397480384426, 44.871793330350044, 0.0], [-68.67392340384436, 44.87172619701681, 0.0], [-68.6738718705111, 44.871659130350224, 0.0], [-68.6738204705112, 44.87159199701699, 0.0], [-68.6737690038446, 44.87152493035046, 0.0], [-68.6737176038447, 44.87145779701723, 0.0], [-68.67366607051144, 44.87139073035064, 0.0], [-68.67361467051148, 44.87132359701741, 0.0], [-68.67356307051159, 44.87125653035088, 0.0], [-68.67354480384495, 44.871247397017555, 0.0], [-68.67345627051174, 44.87120373035094, 0.0], [-68.67336807051186, 44.871159997017685, 0.0], [-68.67327967051204, 44.87111633035107, 0.0], [-68.67319140384546, 44.871072597017815, 0.0], [-68.67310300384565, 44.8710289303512, 0.0], [-68.67307227051236, 44.87098879701796, 0.0], [-68.67302080384576, 44.87092173035137, 0.0], [-68.67296940384585, 44.87085459701814, 0.0], [-68.6729178705126, 44.870787530351606, 0.0], [-68.67286647051264, 44.870720397018374, 0.0], [-68.6728150038461, 44.870653330351786, 0.0], [-68.67276360384614, 44.870586197018554, 0.0], [-68.67271200384624, 44.87051913035202, 0.0], [-68.67266060384634, 44.87045199701879, 0.0], [-68.67260927051308, 44.8703849303522, 0.0], [-68.67255787051312, 44.87031779701897, 0.0], [-68.67250627051322, 44.87025079701908, 0.0], [-68.67245487051332, 44.87018373035255, 0.0], [-68.67240340384672, 44.87011659701932, 0.0], [-68.67235200384681, 44.87004953035273, 0.0], [-68.67230047051356, 44.8699823970195, 0.0], [-68.6722490705136, 44.86991533035297, 0.0], [-68.67219760384705, 44.869848197019735, 0.0], [-68.67214620384709, 44.86978113035315, 0.0], [-68.67211727051381, 44.869743397019874, 0.0]], "type": "LineString"}, "id": "362", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736826", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.68132347049954, 44.9905257968324, -68.67670480384004, 45.000081196817575], "geometry": {"coordinates": [[-68.68132347049954, 45.000081196817575, 0.0], [-68.68116220383314, 44.99996679681777, 0.0], [-68.68106307049993, 44.999326530152075, 0.0], [-68.68057767050067, 44.9971775968221, 0.0], [-68.68054507050073, 44.99669739682281, 0.0], [-68.68035107050105, 44.996102996823765, 0.0], [-68.67986700383511, 44.99523439682508, 0.0], [-68.67854467050387, 44.99406893016027, 0.0], [-68.67802860383796, 44.993474730161154, 0.0], [-68.67744787050555, 44.99265179682908, 0.0], [-68.67670480384004, 44.9905257968324, 0.0]], "type": "LineString"}, "id": "363", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736534", "fl_ds_name": "Birch Stream"}, "type": "Feature"}, {"bbox": [-68.67670480384004, 44.987137930171, -68.67444227051021, 44.9905257968324], "geometry": {"coordinates": [[-68.67670480384004, 44.9905257968324, 0.0], [-68.67666507050677, 44.990449196832515, 0.0], [-68.67661867050685, 44.990380330165976, 0.0], [-68.67657240384023, 44.990311330166094, 0.0], [-68.67652607050695, 44.990242330166154, 0.0], [-68.67647980384038, 44.99017333016627, 0.0], [-68.6764334705071, 44.99010433016639, 0.0], [-68.67638720384053, 44.990035330166506, 0.0], [-68.67634080384062, 44.989966330166624, 0.0], [-68.67629447050734, 44.98989733016674, 0.0], [-68.67624820384077, 44.9898283301668, 0.0], [-68.6762018705075, 44.98975933016692, 0.0], [-68.67615560384087, 44.989690330167036, 0.0], [-68.67610927050765, 44.989621330167154, 0.0], [-68.67606287050768, 44.98955233016727, 0.0], [-68.6760166038411, 44.98948333016733, 0.0], [-68.67597027050783, 44.98941439683415, 0.0], [-68.67592400384126, 44.98934539683421, 0.0], [-68.67587767050799, 44.98927639683433, 0.0], [-68.67583140384141, 44.989207396834445, 0.0], [-68.67578507050814, 44.98913839683456, 0.0], [-68.67573867050822, 44.98906939683468, 0.0], [-68.6756924038416, 44.9890003968348, 0.0], [-68.67564607050832, 44.98893139683486, 0.0], [-68.67559980384175, 44.988862396834975, 0.0], [-68.67555347050848, 44.98879339683509, 0.0], [-68.6755072038419, 44.98872439683521, 0.0], [-68.67546087050863, 44.98865539683533, 0.0], [-68.67541447050871, 44.988586396835444, 0.0], [-68.67536820384208, 44.988517396835505, 0.0], [-68.67532187050887, 44.98844853016897, 0.0], [-68.67527560384224, 44.988379530169084, 0.0], [-68.67522927050902, 44.9883105301692, 0.0], [-68.67518300384239, 44.98824153016926, 0.0], [-68.67513667050912, 44.98817253016938, 0.0], [-68.6750902705092, 44.9881035301695, 0.0], [-68.67504400384263, 44.988034530169614, 0.0], [-68.67499767050936, 44.98796553016973, 0.0], [-68.67495140384278, 44.98789653016985, 0.0], [-68.67490507050951, 44.98782753016991, 0.0], [-68.67485880384288, 44.98775853017003, 0.0], [-68.67481247050966, 44.987689530170144, 0.0], [-68.67476620384303, 44.98762053017026, 0.0], [-68.67471980384312, 44.98755153017038, 0.0], [-68.67467347050984, 44.98748259683714, 0.0], [-68.67462720384327, 44.98741359683726, 0.0], [-68.67458087051, 44.98734459683732, 0.0], [-68.67453460384343, 44.987275596837435, 0.0], [-68.67448827051015, 44.98720659683755, 0.0], [-68.67444227051021, 44.987137930171, 0.0]], "type": "LineString"}, "id": "364", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743054", "fl_ds_name": "Birch Stream"}, "type": "Feature"}, {"bbox": [-68.6868547371576, 44.96940113019855, -68.68165480383237, 44.97697119685347], "geometry": {"coordinates": [[-68.68165480383237, 44.97697119685347, 0.0], [-68.68190680383196, 44.97636799685438, 0.0], [-68.6824490704978, 44.97595679685503, 0.0], [-68.68351907049612, 44.972507530193695, 0.0], [-68.68401127049538, 44.97221693019418, 0.0], [-68.68463500382774, 44.97116679686246, 0.0], [-68.68592127049237, 44.969861730197806, 0.0], [-68.6868547371576, 44.96940113019855, 0.0]], "type": "LineString"}, "id": "365", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736712", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.67684627050647, 44.98597379683946, -68.67444227051021, 44.987137930171], "geometry": {"coordinates": [[-68.67444227051021, 44.987137930171, 0.0], [-68.67547800384193, 44.98692713017135, 0.0], [-68.67590287050797, 44.98669873017167, 0.0], [-68.67641580384048, 44.98645653017206, 0.0], [-68.67684627050647, 44.98597379683946, 0.0]], "type": "LineString"}, "id": "366", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736692", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.68414987049516, 44.95732559688395, -68.6835070038295, 44.95768459688338], "geometry": {"coordinates": [[-68.68414987049516, 44.95768459688338, 0.0], [-68.6835070038295, 44.95732559688395, 0.0]], "type": "LineString"}, "id": "367", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736738", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.6835070038295, 44.95616773021908, -68.68257640383092, 44.95732559688395], "geometry": {"coordinates": [[-68.6835070038295, 44.95732559688395, 0.0], [-68.68339867049633, 44.95726499688402, 0.0], [-68.68257640383092, 44.95616773021908, 0.0]], "type": "LineString"}, "id": "368", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736742", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.68257640383092, 44.95556913022, -68.67997440383493, 44.95616773021908], "geometry": {"coordinates": [[-68.68257640383092, 44.95616773021908, 0.0], [-68.68056427050072, 44.95562233021991, 0.0], [-68.67997440383493, 44.95556913022, 0.0]], "type": "LineString"}, "id": "369", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736744", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.67997440383493, 44.95019219689499, -68.6615256038636, 44.9593691302141], "geometry": {"coordinates": [[-68.67997440383493, 44.95556913022, 0.0], [-68.67906927050302, 44.95609639688587, 0.0], [-68.67640807050714, 44.958031796882835, 0.0], [-68.67326687051207, 44.95934193021412, 0.0], [-68.67214380384712, 44.9593691302141, 0.0], [-68.66963840385102, 44.958713196881774, 0.0], [-68.66842647051953, 44.95806593021615, 0.0], [-68.6674666038544, 44.956815396884735, 0.0], [-68.6664684038559, 44.954769730221244, 0.0], [-68.6635146038605, 44.95297033022405, 0.0], [-68.6615256038636, 44.95019219689499, 0.0]], "type": "LineString"}, "id": "370", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736746", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.6615256038636, 44.950079396895205, -68.66122327053074, 44.95019219689499], "geometry": {"coordinates": [[-68.6615256038636, 44.95019219689499, 0.0], [-68.66122327053074, 44.950079396895205, 0.0]], "type": "LineString"}, "id": "371", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736748", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.66122327053074, 44.94124253024222, -68.64860220388368, 44.950079396895205], "geometry": {"coordinates": [[-68.66122327053074, 44.950079396895205, 0.0], [-68.66072427053149, 44.94989319689546, 0.0], [-68.6595248038667, 44.94832999689788, 0.0], [-68.65795340386916, 44.947213596899644, 0.0], [-68.65435547054142, 44.942523996906914, 0.0], [-68.65353507054266, 44.941827330241324, 0.0], [-68.65137107054602, 44.94124253024222, 0.0], [-68.64860220388368, 44.94210519690756, 0.0]], "type": "LineString"}, "id": "372", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736762", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.69414567047966, 44.95282399689091, -68.68414987049516, 44.95768459688338], "geometry": {"coordinates": [[-68.68414987049516, 44.95768459688338, 0.0], [-68.68503287049379, 44.957344730217244, 0.0], [-68.68560627049288, 44.956415330218704, 0.0], [-68.68693080382417, 44.95590539688612, 0.0], [-68.68980807048638, 44.95611399688585, 0.0], [-68.69091187048463, 44.95568913021981, 0.0], [-68.69187627048314, 44.95471033022136, 0.0], [-68.69320067048108, 44.95420039688878, 0.0], [-68.69414567047966, 44.95282399689091, 0.0]], "type": "LineString"}, "id": "373", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736752", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.69924947047173, 44.94283013023977, -68.69407587047976, 44.95282399689091], "geometry": {"coordinates": [[-68.69414567047966, 44.95282399689091, 0.0], [-68.69407587047976, 44.95254713022467, 0.0], [-68.69456780381233, 44.952256530225156, 0.0], [-68.69524180381126, 44.951085730226964, 0.0], [-68.69681780380881, 44.94997259689535, 0.0], [-68.69836280380645, 44.949377596896284, 0.0], [-68.69924947047173, 44.946808530233625, 0.0], [-68.69787867047381, 44.94520999690275, 0.0], [-68.69784007047389, 44.944414930237315, 0.0], [-68.69675987047555, 44.94300839690618, 0.0], [-68.69590800381025, 44.94283013023977, 0.0]], "type": "LineString"}, "id": "374", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736782", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.64860220388368, 44.94131333024211, -68.64629647055392, 44.94210519690756], "geometry": {"coordinates": [[-68.64860220388368, 44.94210519690756, 0.0], [-68.64854360388375, 44.94209733024093, 0.0], [-68.6484376705506, 44.94208299690757, 0.0], [-68.64833167055076, 44.942068730240976, 0.0], [-68.64822580388426, 44.94205439690762, 0.0], [-68.64811980388441, 44.942040130241026, 0.0], [-68.64801387055121, 44.942025930241016, 0.0], [-68.64790787055142, 44.94201159690772, 0.0], [-68.64780200388492, 44.941997330241065, 0.0], [-68.64769600388507, 44.94198299690777, 0.0], [-68.64759020388522, 44.941968730241115, 0.0], [-68.64748420388537, 44.94195439690782, 0.0], [-68.64737807055224, 44.94194019690781, 0.0], [-68.64727207055239, 44.941925930241155, 0.0], [-68.64716627055253, 44.94191159690786, 0.0], [-68.64706027055274, 44.941897330241204, 0.0], [-68.64695440388624, 44.94188299690791, 0.0], [-68.6468484038864, 44.941868730241254, 0.0], [-68.64681247055313, 44.9418325302413, 0.0], [-68.64675040388653, 44.94177013024142, 0.0], [-68.64668840388663, 44.9417075969082, 0.0], [-68.64662627055338, 44.94164519690827, 0.0], [-68.64656427055348, 44.94158273024169, 0.0], [-68.64650220388694, 44.94152019690847, 0.0], [-68.64644020388704, 44.941457796908594, 0.0], [-68.64629647055392, 44.94131333024211, 0.0]], "type": "LineString"}, "id": "375", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736758", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.69590800381025, 44.94283013023977, -68.69511127047815, 44.943346530238955], "geometry": {"coordinates": [[-68.69590800381025, 44.94283013023977, 0.0], [-68.69581327047706, 44.942866596906356, 0.0], [-68.69571860381052, 44.94290313023964, 0.0], [-68.69562380381069, 44.942939596906285, 0.0], [-68.6955290704775, 44.94297613023957, 0.0], [-68.69543427047762, 44.94301259690616, 0.0], [-68.69533960381114, 44.9430489969061, 0.0], [-68.69524600381123, 44.94308513023935, 0.0], [-68.69518780381134, 44.94314939690594, 0.0], [-68.69512960381144, 44.943213730239165, 0.0], [-68.69511127047815, 44.943346530238955, 0.0]], "type": "LineString"}, "id": "376", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736780", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.6314698705769, 44.91640653028077, -68.63090560391112, 44.91999393027521], "geometry": {"coordinates": [[-68.63123547057728, 44.91999393027521, 0.0], [-68.63110427057751, 44.919844130275465, 0.0], [-68.6310528039109, 44.91977699694223, 0.0], [-68.631001403911, 44.919709930275644, 0.0], [-68.63094987057775, 44.91964279694241, 0.0], [-68.63095707057772, 44.919625530275766, 0.0], [-68.63098780391101, 44.919552330275906, 0.0], [-68.63101840391096, 44.919479130276045, 0.0], [-68.6310490039109, 44.91940593027613, 0.0], [-68.63107960391085, 44.91933259694292, 0.0], [-68.6311102705775, 44.919259396943005, 0.0], [-68.63114087057744, 44.919186196943144, 0.0], [-68.63117147057739, 44.91911299694323, 0.0], [-68.63120207057733, 44.91903973027672, 0.0], [-68.63118867057733, 44.91897159694349, 0.0], [-68.63117380391071, 44.9188959302769, 0.0], [-68.6311588705774, 44.918820330277015, 0.0], [-68.63114400391078, 44.91874459694384, 0.0], [-68.63112907057746, 44.91866899694395, 0.0], [-68.63111420391078, 44.91859339694406, 0.0], [-68.63109927057747, 44.91851773027753, 0.0], [-68.63108440391085, 44.91844213027764, 0.0], [-68.63106947057753, 44.91836639694441, 0.0], [-68.63105460391091, 44.91829079694452, 0.0], [-68.6310396705776, 44.91821519694463, 0.0], [-68.63102480391092, 44.9181395302781, 0.0], [-68.63100987057766, 44.91806393027821, 0.0], [-68.63099500391098, 44.91798833027832, 0.0], [-68.63098007057766, 44.91791259694514, 0.0], [-68.63096520391105, 44.917836996945255, 0.0], [-68.63095027057773, 44.917761330278665, 0.0], [-68.63093540391105, 44.91768573027878, 0.0], [-68.63092047057779, 44.917610130278945, 0.0], [-68.63090560391112, 44.91753439694571, 0.0], [-68.63092967057776, 44.91748633027913, 0.0], [-68.63096567057772, 44.9174143302792, 0.0], [-68.63100167057763, 44.917342330279325, 0.0], [-68.6310376705776, 44.91727033027945, 0.0], [-68.63107380391085, 44.91719839694622, 0.0], [-68.63110980391082, 44.917126396946344, 0.0], [-68.63114580391073, 44.91705439694647, 0.0], [-68.63118180391069, 44.91698239694654, 0.0], [-68.63121780391066, 44.91691039694666, 0.0], [-68.63125380391057, 44.91683839694679, 0.0], [-68.63128980391053, 44.916766530280256, 0.0], [-68.6313258039105, 44.916694530280324, 0.0], [-68.63136187057711, 44.91662253028045, 0.0], [-68.63139787057702, 44.916550530280574, 0.0], [-68.63143387057698, 44.9164785302807, 0.0], [-68.6314698705769, 44.91640653028077, 0.0]], "type": "LineString"}, "id": "377", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736788", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.64825007055089, 44.890214396988085, -68.6314698705769, 44.91640653028077], "geometry": {"coordinates": [[-68.6314698705769, 44.91640653028077, 0.0], [-68.63290440390801, 44.91585479694834, 0.0], [-68.63436080390574, 44.914586130283624, 0.0], [-68.63627760390278, 44.91354519695187, 0.0], [-68.63778427056712, 44.91215593028738, 0.0], [-68.63892500389869, 44.908984396959, 0.0], [-68.63773847056717, 44.902963396968346, 0.0], [-68.63785167056699, 44.90180659697012, 0.0], [-68.6388600038988, 44.89939453030718, 0.0], [-68.64257827055968, 44.89492739698079, 0.0], [-68.64496687055595, 44.893198530316795, 0.0], [-68.64603180388764, 44.89197899698536, 0.0], [-68.64825007055089, 44.890214396988085, 0.0]], "type": "LineString"}, "id": "378", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736802", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.69040140381878, 44.912645530286625, -68.68345787049623, 44.91690533028003], "geometry": {"coordinates": [[-68.69040140381878, 44.91690533028003, 0.0], [-68.68850947048838, 44.91618479694779, 0.0], [-68.68754720382321, 44.91574979694849, 0.0], [-68.68710487049054, 44.91499799694964, 0.0], [-68.68617987049197, 44.91363713028511, 0.0], [-68.6846804704943, 44.912677596953245, 0.0], [-68.68345787049623, 44.912645530286625, 0.0]], "type": "LineString"}, "id": "379", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743028", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.66160827053011, 44.88131233033528, -68.64825007055089, 44.890214396988085], "geometry": {"coordinates": [[-68.64825007055089, 44.890214396988085, 0.0], [-68.65350580387604, 44.8873815969925, 0.0], [-68.65955480386668, 44.883534530331815, 0.0], [-68.66044907053191, 44.8822791970004, 0.0], [-68.66153267053028, 44.881457130335036, 0.0], [-68.66160827053011, 44.88131233033528, 0.0]], "type": "LineString"}, "id": "380", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743002", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.66606120385654, 44.87637299700958, -68.66292100386141, 44.87879693033915], "geometry": {"coordinates": [[-68.66292100386141, 44.87879693033915, 0.0], [-68.66563927052385, 44.876940397008696, 0.0], [-68.66606120385654, 44.87637299700958, 0.0]], "type": "LineString"}, "id": "381", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736818", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.66801840385352, 44.87726419700823, -68.66791907052033, 44.87734893034144], "geometry": {"coordinates": [[-68.66791907052033, 44.87726419700823, 0.0], [-68.66794360385364, 44.87726639700821, 0.0], [-68.66801840385352, 44.87734893034144, 0.0]], "type": "LineString"}, "id": "382", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736816", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.66791907052033, 44.87637299700958, -68.66606120385654, 44.87726419700823], "geometry": {"coordinates": [[-68.66606120385654, 44.87637299700958, 0.0], [-68.6661126038565, 44.876440130342814, 0.0], [-68.66616407052305, 44.8765071970094, 0.0], [-68.66621547052296, 44.876574330342635, 0.0], [-68.66626687052292, 44.876641397009166, 0.0], [-68.66631840385617, 44.8767085303424, 0.0], [-68.66636980385607, 44.87677559700899, 0.0], [-68.66642127052268, 44.87684273034222, 0.0], [-68.66647267052258, 44.87690979700875, 0.0], [-68.66652420385583, 44.87697693034198, 0.0], [-68.66657560385573, 44.87704399700857, 0.0], [-68.66662707052234, 44.8771111303418, 0.0], [-68.6666602705223, 44.87715439700838, 0.0], [-68.66676727052214, 44.87716379700839, 0.0], [-68.66687420385529, 44.8771731303417, 0.0], [-68.66698120385513, 44.87718239700831, 0.0], [-68.66708807052163, 44.87719179700832, 0.0], [-68.66719500385477, 44.87720113034163, 0.0], [-68.66730200385462, 44.8772103970083, 0.0], [-68.66740887052111, 44.87721973034161, 0.0], [-68.66751587052096, 44.87722913034162, 0.0], [-68.66762280385416, 44.87723839700823, 0.0], [-68.66772980385394, 44.877247730341594, 0.0], [-68.66783667052044, 44.87725713034155, 0.0], [-68.66791907052033, 44.87726419700823, 0.0]], "type": "LineString"}, "id": "383", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736820", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.67211727051381, 44.86837213035534, -68.67106580384876, 44.869743397019874], "geometry": {"coordinates": [[-68.67211727051381, 44.869743397019874, 0.0], [-68.67209480384719, 44.869713997019915, 0.0], [-68.67204327051394, 44.86964693035338, 0.0], [-68.67199187051403, 44.86957979702015, 0.0], [-68.67194027051409, 44.86951273035356, 0.0], [-68.67188900384753, 44.86944559702033, 0.0], [-68.67183760384756, 44.8693785303538, 0.0], [-68.67178620384766, 44.86931139702057, 0.0], [-68.67173460384777, 44.86924439702068, 0.0], [-68.6716832038478, 44.86917733035409, 0.0], [-68.67163167051456, 44.86911019702086, 0.0], [-68.67158027051465, 44.86904313035433, 0.0], [-68.67152880384805, 44.868975997021096, 0.0], [-68.67147740384814, 44.86890893035451, 0.0], [-68.6714258705149, 44.868841797021275, 0.0], [-68.67137447051499, 44.868774730354744, 0.0], [-68.67132307051503, 44.86870759702151, 0.0], [-68.67127160384848, 44.868640530354924, 0.0], [-68.67122020384858, 44.86857339702169, 0.0], [-68.67116867051527, 44.86850633035516, 0.0], [-68.67111727051537, 44.86843919702193, 0.0], [-68.67106580384876, 44.86837213035534, 0.0]], "type": "LineString"}, "id": "384", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736830", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.67106580384876, 44.86837213035534, -68.66606120385654, 44.87637299700958], "geometry": {"coordinates": [[-68.66606120385654, 44.87637299700958, 0.0], [-68.6673196705213, 44.87335779701425, 0.0], [-68.66902620385196, 44.8714859303505, 0.0], [-68.67000160385044, 44.86959179702012, 0.0], [-68.67106580384876, 44.86837213035534, 0.0]], "type": "LineString"}, "id": "385", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736828", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.67223280384695, 44.861140797033215, -68.67106580384876, 44.86837213035534], "geometry": {"coordinates": [[-68.67106580384876, 44.86837213035534, 0.0], [-68.67186380384754, 44.86512933036039, 0.0], [-68.67167447051452, 44.86469619702774, 0.0], [-68.67181827051428, 44.863021330363665, 0.0], [-68.67223280384695, 44.861140797033215, 0.0]], "type": "LineString"}, "id": "386", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736834", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.6901586704858, 44.848766530385774, -68.67223280384695, 44.861140797033215], "geometry": {"coordinates": [[-68.67223280384695, 44.861140797033215, 0.0], [-68.67292520384592, 44.86036793036777, 0.0], [-68.6738502038445, 44.85859453037051, 0.0], [-68.68506580382706, 44.8525517303799, 0.0], [-68.6881944038222, 44.84992859705062, 0.0], [-68.6901586704858, 44.848766530385774, 0.0]], "type": "LineString"}, "id": "387", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736840", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.70086827046919, 44.82695559708628, -68.6901586704858, 44.848766530385774], "geometry": {"coordinates": [[-68.6901586704858, 44.848766530385774, 0.0], [-68.69393640381327, 44.846803997055474, 0.0], [-68.69600107047677, 44.845400597057676, 0.0], [-68.69880020380572, 44.84179053039662, 0.0], [-68.70000640380385, 44.83889579706778, 0.0], [-68.70018040380359, 44.8367029304045, 0.0], [-68.70048180380314, 44.83597933040562, 0.0], [-68.70056667046964, 44.833112130410086, 0.0], [-68.70086827046919, 44.832388397077864, 0.0], [-68.70057060380299, 44.83088359708023, 0.0], [-68.69684440380877, 44.82695559708628, 0.0]], "type": "LineString"}, "id": "388", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736860", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.70844300379076, 44.82086193042909, -68.69592847047687, 44.82695559708628], "geometry": {"coordinates": [[-68.69684440380877, 44.82695559708628, 0.0], [-68.6960366704767, 44.825343797088806, 0.0], [-68.69592847047687, 44.82427213042382, 0.0], [-68.69643100380944, 44.82306599709233, 0.0], [-68.69805427047356, 44.82183259709427, 0.0], [-68.70015667047028, 44.821224130428504, 0.0], [-68.70527007046235, 44.82137739709498, 0.0], [-68.70844300379076, 44.82086193042909, 0.0]], "type": "LineString"}, "id": "389", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736862", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.72873180375927, 44.81698039710176, -68.70844300379076, 44.82117693042858], "geometry": {"coordinates": [[-68.70844300379076, 44.82086193042909, 0.0], [-68.70963340378893, 44.82111133042872, 0.0], [-68.71182480378553, 44.82117693042858, 0.0], [-68.71819007044229, 44.82054293042961, 0.0], [-68.72378587043363, 44.8190919970985, 0.0], [-68.72873180375927, 44.81698039710176, 0.0]], "type": "LineString"}, "id": "390", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736868", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.74157727040603, 44.81009699711245, -68.72873180375927, 44.81698039710176], "geometry": {"coordinates": [[-68.72873180375927, 44.81698039710176, 0.0], [-68.73106527042233, 44.81537093043761, 0.0], [-68.73540020374895, 44.81339353044069, 0.0], [-68.737072670413, 44.812038997109426, 0.0], [-68.74157727040603, 44.81009699711245, 0.0]], "type": "LineString"}, "id": "391", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736876", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.76803020369829, 44.79714339713257, -68.74157727040603, 44.81009699711245], "geometry": {"coordinates": [[-68.74157727040603, 44.81009699711245, 0.0], [-68.74396900373563, 44.80967959711313, 0.0], [-68.74639120373189, 44.808744130447906, 0.0], [-68.74828360372891, 44.80730439711681, 0.0], [-68.75303820372153, 44.80475899712076, 0.0], [-68.7548802037187, 44.803439930456136, 0.0], [-68.75794287038059, 44.80185159712528, 0.0], [-68.76168540370816, 44.80040539712752, 0.0], [-68.76462787037025, 44.798660797130196, 0.0], [-68.76803020369829, 44.79714339713257, 0.0]], "type": "LineString"}, "id": "392", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736884", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.66301627052798, 44.88131233033528, -68.66160827053011, 44.881983797000885], "geometry": {"coordinates": [[-68.66301627052798, 44.881983797000885, 0.0], [-68.66250900386206, 44.88164799700138, 0.0], [-68.66160827053011, 44.88131233033528, 0.0]], "type": "LineString"}, "id": "404", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737250", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.66292100386141, 44.87879693033915, -68.66160827053011, 44.88131233033528], "geometry": {"coordinates": [[-68.66160827053011, 44.88131233033528, 0.0], [-68.66292100386141, 44.87879693033915, 0.0]], "type": "LineString"}, "id": "405", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736814", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.68255680383095, 44.881983797000885, -68.66301627052798, 44.91244019695358], "geometry": {"coordinates": [[-68.68255680383095, 44.91244019695358, 0.0], [-68.6810102705, 44.911693196954786, 0.0], [-68.68053960383406, 44.9116337302882, 0.0], [-68.67995847050167, 44.91170693028806, 0.0], [-68.67925547050277, 44.91167673028815, 0.0], [-68.67877340383683, 44.91138073028861, 0.0], [-68.67867347050367, 44.9106967969563, 0.0], [-68.67895787050321, 44.91001539695736, 0.0], [-68.67901000383648, 44.90936333029174, 0.0], [-68.67949107050237, 44.90860613029287, 0.0], [-68.67979040383523, 44.90788879696066, 0.0], [-68.6802680705012, 44.90740393029478, 0.0], [-68.68111280383317, 44.90656693029604, 0.0], [-68.68064927050057, 44.90596279696365, 0.0], [-68.68020647050128, 44.90544113029779, 0.0], [-68.6794656705024, 44.904973930298524, 0.0], [-68.67860860383706, 44.90452139696589, 0.0], [-68.67759980383863, 44.90403713029997, 0.0], [-68.6766472705068, 44.90368153030056, 0.0], [-68.67608827050765, 44.903174396967984, 0.0], [-68.67563407050835, 44.902416330302515, 0.0], [-68.6752362038423, 44.9017869303035, 0.0], [-68.67508580384253, 44.90109239697125, 0.0], [-68.67515267050914, 44.90040453030565, 0.0], [-68.6752496038423, 44.89964479697346, 0.0], [-68.67537300384208, 44.89908573030766, 0.0], [-68.67596087050788, 44.89846793030864, 0.0], [-68.67658607050691, 44.89723399697721, 0.0], [-68.67679927050654, 44.89645959697839, 0.0], [-68.67716187050598, 44.89532673031351, 0.0], [-68.6769458705063, 44.89465753031453, 0.0], [-68.67691727050635, 44.894066530315456, 0.0], [-68.67669187050672, 44.89355133031626, 0.0], [-68.67609527050763, 44.892607396984374, 0.0], [-68.67572740384156, 44.89190633031882, 0.0], [-68.6750502038426, 44.89102339698684, 0.0], [-68.67470300384315, 44.890404730321166, 0.0], [-68.6743928705103, 44.889169796989734, 0.0], [-68.67400447051091, 44.88838639699094, 0.0], [-68.67372640384468, 44.88747019699235, 0.0], [-68.67337360384522, 44.88673333032682, 0.0], [-68.67205920384725, 44.8857949303283, 0.0], [-68.6715060705148, 44.88540599699559, 0.0], [-68.67066080384944, 44.88518979699592, 0.0], [-68.66978547051747, 44.88504533032949, 0.0], [-68.66830300385305, 44.88477359699658, 0.0], [-68.6677050705207, 44.88449233033032, 0.0], [-68.66707147052165, 44.884164396997505, 0.0], [-68.66652407052248, 44.88389373033124, 0.0], [-68.66591107052346, 44.88364819699831, 0.0], [-68.66506587052476, 44.88343199699864, 0.0], [-68.66421487052611, 44.883097596999164, 0.0], [-68.6636618038603, 44.88270873033309, 0.0], [-68.66336187052741, 44.8823727970003, 0.0], [-68.66319860386102, 44.882104597000705, 0.0], [-68.66301627052798, 44.881983797000885, 0.0]], "type": "LineString"}, "id": "406", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737262", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.64629647055392, 44.94091079690941, -68.64571420388813, 44.94131333024211], "geometry": {"coordinates": [[-68.64629647055392, 44.94131333024211, 0.0], [-68.64571420388813, 44.94091079690941, 0.0]], "type": "LineString"}, "id": "407", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737292", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.64571420388813, 44.93941673024506, -68.64443807055676, 44.94091079690941], "geometry": {"coordinates": [[-68.64571420388813, 44.94091079690941, 0.0], [-68.64547507055516, 44.94072859690971, 0.0], [-68.64541407055526, 44.94066559690981, 0.0], [-68.64535300388872, 44.94060259690991, 0.0], [-68.64529207055546, 44.9405397302433, 0.0], [-68.64523107055555, 44.940476730243404, 0.0], [-68.645170003889, 44.940413730243506, 0.0], [-68.64510907055575, 44.94035073024361, 0.0], [-68.64504807055584, 44.94028773024371, 0.0], [-68.64498700388924, 44.94022473024381, 0.0], [-68.64492607055604, 44.94016179691056, 0.0], [-68.64486507055614, 44.94009879691066, 0.0], [-68.64480400388953, 44.94003579691076, 0.0], [-68.64474307055633, 44.939972796910865, 0.0], [-68.64468207055643, 44.93990979691097, 0.0], [-68.64462100388982, 44.93984679691107, 0.0], [-68.64456007055662, 44.939783930244516, 0.0], [-68.64449907055672, 44.93972093024462, 0.0], [-68.64443807055676, 44.93965793024472, 0.0], [-68.6444470705568, 44.939636396911396, 0.0], [-68.64447767055674, 44.939563130244835, 0.0], [-68.64450827055668, 44.939489930244974, 0.0], [-68.64453887055663, 44.93941673024506, 0.0]], "type": "LineString"}, "id": "408", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743022", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.63162667057668, 44.91999393027521, -68.63123547057728, 44.92058419694098], "geometry": {"coordinates": [[-68.63162667057668, 44.92058419694098, 0.0], [-68.63123547057728, 44.91999393027521, 0.0]], "type": "LineString"}, "id": "409", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1737294", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.64573527055478, 44.934311596919656, -68.64324147055862, 44.93941673024506], "geometry": {"coordinates": [[-68.64453887055663, 44.93941673024506, 0.0], [-68.64513320388903, 44.939002530245716, 0.0], [-68.64573527055478, 44.938350730246725, 0.0], [-68.64543067055524, 44.93732733024831, 0.0], [-68.64505020388918, 44.93657319691613, 0.0], [-68.6443354038903, 44.935567530251035, 0.0], [-68.64354467055819, 44.93483119691888, 0.0], [-68.64324147055862, 44.934311596919656, 0.0]], "type": "LineString"}, "id": "410", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743016", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.6412564705617, 44.92058419694098, -68.63162667057668, 44.93049699692557], "geometry": {"coordinates": [[-68.64085840389566, 44.93049699692557, 0.0], [-68.64088907056231, 44.93042379692571, 0.0], [-68.64091967056225, 44.93035059692579, 0.0], [-68.6409502705622, 44.93027733025923, 0.0], [-68.64098087056215, 44.93020413025937, 0.0], [-68.64101147056209, 44.93013093025951, 0.0], [-68.64104207056204, 44.93005759692625, 0.0], [-68.64107280389533, 44.929984396926386, 0.0], [-68.64110340389527, 44.92991119692647, 0.0], [-68.64113400389527, 44.92983799692661, 0.0], [-68.64116460389522, 44.92976473026005, 0.0], [-68.64119520389517, 44.929691530260186, 0.0], [-68.64122580389511, 44.92961833026027, 0.0], [-68.6412564705617, 44.92954499692706, 0.0], [-68.64124307056176, 44.92947679692719, 0.0], [-68.6412280705618, 44.9294011969273, 0.0], [-68.64121320389512, 44.92932559692741, 0.0], [-68.6411982705618, 44.92924993026082, 0.0], [-68.64118340389518, 44.92917433026099, 0.0], [-68.64116840389522, 44.9290987302611, 0.0], [-68.6411534705619, 44.92902299692787, 0.0], [-68.64113860389523, 44.92894739692798, 0.0], [-68.64112367056191, 44.92887173026145, 0.0], [-68.64110880389529, 44.92879613026156, 0.0], [-68.64109387056197, 44.92872053026167, 0.0], [-68.64107887056201, 44.92864479692844, 0.0], [-68.64106407056204, 44.92856919692855, 0.0], [-68.64104907056202, 44.92849353026202, 0.0], [-68.6410342038954, 44.92841793026213, 0.0], [-68.64101920389544, 44.92834233026224, 0.0], [-68.64100440389547, 44.92826659692906, 0.0], [-68.64098947056215, 44.928190996929175, 0.0], [-68.64097467056217, 44.928115396929286, 0.0], [-68.64095967056221, 44.92803973026275, 0.0], [-68.64095367056217, 44.92802753026274, 0.0], [-68.64091860389556, 44.92795539692952, 0.0], [-68.64088327056231, 44.927883196929656, 0.0], [-68.6408482038957, 44.927810996929736, 0.0], [-68.64081300389574, 44.92773879692987, 0.0], [-68.64077767056244, 44.92766659692995, 0.0], [-68.64074260389583, 44.92759439693009, 0.0], [-68.64070747056257, 44.92752219693023, 0.0], [-68.64067227056262, 44.92744999693031, 0.0], [-68.64063707056266, 44.92737779693044, 0.0], [-68.64060187056276, 44.92730559693052, 0.0], [-68.6405666705628, 44.92723339693066, 0.0], [-68.64053160389619, 44.92716119693074, 0.0], [-68.64049627056289, 44.92708899693088, 0.0], [-68.64046120389628, 44.92701679693096, 0.0], [-68.64044860389629, 44.92700039693102, 0.0], [-68.64039720389638, 44.92693333026443, 0.0], [-68.64034567056314, 44.9268661969312, 0.0], [-68.64029407056324, 44.92679913026467, 0.0], [-68.64024287056333, 44.92673199693144, 0.0], [-68.64019127056338, 44.92666493026485, 0.0], [-68.64013987056347, 44.92659779693162, 0.0], [-68.64008840389687, 44.92653059693174, 0.0], [-68.64003680389698, 44.92646353026515, 0.0], [-68.63998540389701, 44.92639639693192, 0.0], [-68.63993400389711, 44.92632933026539, 0.0], [-68.6398826038972, 44.92626219693216, 0.0], [-68.63983107056396, 44.92619513026557, 0.0], [-68.639779670564, 44.92612799693234, 0.0], [-68.6397280705641, 44.92606079693246, 0.0], [-68.6396766705642, 44.92599373026593, 0.0], [-68.63962527056424, 44.9259265969327, 0.0], [-68.63957380389769, 44.92585953026611, 0.0], [-68.63952240389773, 44.92579239693288, 0.0], [-68.63947087056448, 44.925725330266346, 0.0], [-68.63941947056458, 44.925658196933114, 0.0], [-68.63936800389797, 44.92559099693318, 0.0], [-68.63931647056472, 44.92552393026665, 0.0], [-68.63926507056482, 44.92545679693342, 0.0], [-68.63921360389821, 44.92538973026683, 0.0], [-68.63916220389831, 44.9253225969336, 0.0], [-68.6391108038984, 44.925255530267066, 0.0], [-68.63905920389846, 44.925188396933834, 0.0], [-68.63900780389855, 44.9251211969339, 0.0], [-68.6389562705653, 44.92505413026737, 0.0], [-68.6389048705654, 44.92498699693414, 0.0], [-68.63885340389879, 44.92491993026755, 0.0], [-68.63880187056554, 44.92485279693432, 0.0], [-68.63875047056564, 44.924785730267786, 0.0], [-68.63869907056568, 44.924718596934554, 0.0], [-68.63864760389913, 44.92465139693468, 0.0], [-68.63859607056588, 44.92458433026809, 0.0], [-68.63854467056592, 44.92451719693486, 0.0], [-68.63849307056603, 44.924450130268326, 0.0], [-68.63844187056611, 44.924382996935094, 0.0], [-68.63839027056616, 44.924315930268506, 0.0], [-68.63833887056626, 44.924248796935274, 0.0], [-68.63828740389965, 44.9241815969354, 0.0], [-68.63823600389975, 44.92411453026881, 0.0], [-68.6381844705665, 44.92404739693558, 0.0], [-68.6381330705666, 44.923980330269046, 0.0], [-68.63808167056663, 44.923913196935814, 0.0], [-68.63803007056674, 44.923846130269226, 0.0], [-68.63797867056684, 44.923778996935994, 0.0], [-68.63792720390023, 44.92371179693612, 0.0], [-68.63787580390033, 44.92364473026953, 0.0], [-68.63782427056708, 44.9235775969363, 0.0], [-68.63777700390045, 44.92354833026968, 0.0], [-68.63769607056724, 44.923497930269775, 0.0], [-68.63761507056739, 44.92344753026987, 0.0], [-68.63753400390084, 44.92339713026996, 0.0], [-68.63745307056763, 44.9233467969367, 0.0], [-68.63737187056773, 44.923296396936735, 0.0], [-68.63729087056788, 44.92324599693683, 0.0], [-68.63721000390132, 44.92319559693692, 0.0], [-68.63712880390148, 44.9231453302703, 0.0], [-68.63704780390157, 44.923094930270395, 0.0], [-68.63696667056837, 44.92304453027049, 0.0], [-68.63688567056852, 44.92299413027058, 0.0], [-68.63680467056861, 44.92294373027062, 0.0], [-68.63672367056876, 44.92289339693741, 0.0], [-68.6366426039022, 44.92284299693745, 0.0], [-68.63656160390235, 44.92279259693754, 0.0], [-68.6364806039025, 44.922742196937634, 0.0], [-68.63639947056924, 44.922691930271014, 0.0], [-68.63631847056939, 44.92264153027111, 0.0], [-68.6362372705695, 44.9225911302712, 0.0], [-68.63615640390299, 44.922540730271294, 0.0], [-68.63607527056979, 44.92249033027133, 0.0], [-68.63599427056988, 44.92243999693807, 0.0], [-68.63591340390337, 44.92238959693816, 0.0], [-68.63584180390347, 44.92235833027155, 0.0], [-68.63575007057028, 44.922318130271606, 0.0], [-68.63565847057043, 44.92227793027166, 0.0], [-68.63556680390388, 44.92223773027172, 0.0], [-68.63547520390404, 44.922197530271774, 0.0], [-68.6353834039042, 44.92215733027189, 0.0], [-68.63529167057101, 44.92211713027194, 0.0], [-68.63519987057111, 44.922076930272, 0.0], [-68.63510827057127, 44.922036730272055, 0.0], [-68.63501667057142, 44.92199653027211, 0.0], [-68.63492500390487, 44.92195633027217, 0.0], [-68.63483327057168, 44.92191619693892, 0.0], [-68.63474167057183, 44.92187599693898, 0.0], [-68.63464987057199, 44.921835796939035, 0.0], [-68.63455827057214, 44.92179559693909, 0.0], [-68.6344666039056, 44.92175539693915, 0.0], [-68.63437480390576, 44.9217151969392, 0.0], [-68.63428320390591, 44.92167499693926, 0.0], [-68.63419147057272, 44.921634796939315, 0.0], [-68.63417640390605, 44.921620396939375, 0.0], [-68.63411220390617, 44.92155913027278, 0.0], [-68.6340476705729, 44.92149779693955, 0.0], [-68.63398340390637, 44.921436530272956, 0.0], [-68.63391907057314, 44.92137519693972, 0.0], [-68.63385467057321, 44.92131399693983, 0.0], [-68.63379040390663, 44.92125273027324, 0.0], [-68.6337260705734, 44.92119139694, 0.0], [-68.63366167057353, 44.92113013027347, 0.0], [-68.63364880390685, 44.92112673027344, 0.0], [-68.6335476705737, 44.92109999694014, 0.0], [-68.63344667057385, 44.92107333027354, 0.0], [-68.63334567057399, 44.92104673027359, 0.0], [-68.63324460390749, 44.92101999694029, 0.0], [-68.63314347057434, 44.92099333027369, 0.0], [-68.63304260390782, 44.92096673027373, 0.0], [-68.63294147057462, 44.92093999694043, 0.0], [-68.63284047057476, 44.92091333027378, 0.0], [-68.63273947057496, 44.92088659694048, 0.0], [-68.6326384705751, 44.92085999694052, 0.0], [-68.6325374039086, 44.92083333027392, 0.0], [-68.63243647057544, 44.92080659694062, 0.0], [-68.6323352705756, 44.92077999694067, 0.0], [-68.63223427057574, 44.92075333027407, 0.0], [-68.63213327057588, 44.92072659694077, 0.0], [-68.63203220390938, 44.92069999694081, 0.0], [-68.63162667057668, 44.92058419694098, 0.0]], "type": "LineString"}, "id": "411", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736786", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.64453887055663, 44.93049699692557, -68.63578260390358, 44.93941673024506], "geometry": {"coordinates": [[-68.64453887055663, 44.93941673024506, 0.0], [-68.64452320389, 44.93939619691179, 0.0], [-68.64447180389004, 44.9393291302452, 0.0], [-68.6444202705568, 44.939261996911966, 0.0], [-68.64436880389025, 44.93919479691209, 0.0], [-68.6443172038903, 44.9391277302455, 0.0], [-68.64426587055704, 44.93906059691227, 0.0], [-68.64421440389049, 44.93899353024574, 0.0], [-68.64416280389054, 44.93892639691251, 0.0], [-68.64411147055728, 44.93885933024592, 0.0], [-68.64406000389073, 44.93879219691269, 0.0], [-68.64400840389078, 44.93872499691281, 0.0], [-68.64395700389088, 44.93865793024622, 0.0], [-68.64390560389097, 44.93859079691305, 0.0], [-68.64385400389102, 44.93852373024646, 0.0], [-68.64380260389112, 44.93845659691323, 0.0], [-68.64375120389121, 44.93838953024664, 0.0], [-68.64369967055791, 44.93832239691346, 0.0], [-68.64368040389132, 44.9383169302468, 0.0], [-68.64358020389147, 44.938288730246825, 0.0], [-68.64348000389163, 44.93826053024685, 0.0], [-68.64337980389178, 44.93823233024693, 0.0], [-68.64327960389193, 44.938203996913614, 0.0], [-68.64317927055873, 44.93817579691364, 0.0], [-68.64307907055888, 44.93814759691372, 0.0], [-68.64297887055903, 44.93811939691375, 0.0], [-68.64287860389254, 44.93809113024713, 0.0], [-68.64277840389269, 44.938062930247156, 0.0], [-68.64267820389284, 44.93803473024724, 0.0], [-68.64257820389298, 44.938006530247264, 0.0], [-68.64247800389319, 44.937978196913946, 0.0], [-68.6423776038933, 44.93794999691403, 0.0], [-68.6422774038935, 44.937921796914054, 0.0], [-68.64217720389365, 44.93789359691408, 0.0], [-68.6420770038938, 44.93786533024746, 0.0], [-68.64197680389395, 44.937837130247544, 0.0], [-68.6418766038941, 44.93780893024757, 0.0], [-68.64184087056083, 44.937781796914294, 0.0], [-68.64176740389428, 44.93772599691437, 0.0], [-68.64169367056104, 44.93767019691444, 0.0], [-68.64162007056115, 44.93761433024787, 0.0], [-68.64154647056125, 44.93755853024794, 0.0], [-68.64147287056142, 44.93750273024801, 0.0], [-68.64139927056152, 44.93744693024814, 0.0], [-68.64132560389493, 44.937391130248216, 0.0], [-68.64125207056173, 44.937335196914944, 0.0], [-68.6411784038952, 44.93727939691507, 0.0], [-68.6411048038953, 44.937223596915146, 0.0], [-68.64103120389541, 44.93716779691522, 0.0], [-68.64095760389552, 44.93711199691529, 0.0], [-68.64088400389562, 44.93705613024872, 0.0], [-68.64081040389573, 44.93700033024885, 0.0], [-68.64073680389589, 44.93694453024892, 0.0], [-68.640663203896, 44.936888730248995, 0.0], [-68.64058947056276, 44.93683293024907, 0.0], [-68.64051600389621, 44.93677699691585, 0.0], [-68.64044247056302, 44.936721196915926, 0.0], [-68.64036880389642, 44.936665396916, 0.0], [-68.64029527056323, 44.93660959691607, 0.0], [-68.64022160389669, 44.9365537969162, 0.0], [-68.6401480038968, 44.93649793024963, 0.0], [-68.6400744038969, 44.9364421302497, 0.0], [-68.64000080389701, 44.936386330249775, 0.0], [-68.63992720389712, 44.93633053024985, 0.0], [-68.63985360389722, 44.93627473024992, 0.0], [-68.63978000389733, 44.936218796916705, 0.0], [-68.63970640389749, 44.93616299691678, 0.0], [-68.6396328038976, 44.93610719691685, 0.0], [-68.6395592038977, 44.93605139691698, 0.0], [-68.63948560389781, 44.93599559691705, 0.0], [-68.6394076705646, 44.935967330250435, 0.0], [-68.63931160389808, 44.935932530250454, 0.0], [-68.63921560389821, 44.93589773025053, 0.0], [-68.6391196038984, 44.93586279691726, 0.0], [-68.63902360389852, 44.93582799691728, 0.0], [-68.63892767056535, 44.93579319691736, 0.0], [-68.63883167056548, 44.935758396917436, 0.0], [-68.63873567056567, 44.935723596917455, 0.0], [-68.6386396705658, 44.93568879691753, 0.0], [-68.63854380389927, 44.93565399691755, 0.0], [-68.63844767056611, 44.93561919691763, 0.0], [-68.63835167056624, 44.935584396917704, 0.0], [-68.63825567056637, 44.935549596917724, 0.0], [-68.63815967056655, 44.9355147302511, 0.0], [-68.63806380390002, 44.93547993025118, 0.0], [-68.63796780390015, 44.93544513025125, 0.0], [-68.63787180390034, 44.93541033025127, 0.0], [-68.63777580390047, 44.93537553025135, 0.0], [-68.6376798705673, 44.935340730251426, 0.0], [-68.63758380390078, 44.935305930251445, 0.0], [-68.63748780390091, 44.93527113025152, 0.0], [-68.63739180390104, 44.93523633025154, 0.0], [-68.63729580390122, 44.93520139691827, 0.0], [-68.637199870568, 44.93516659691835, 0.0], [-68.63710387056818, 44.93513179691837, 0.0], [-68.63700787056831, 44.935096996918446, 0.0], [-68.6369118705685, 44.93506219691852, 0.0], [-68.63686440390188, 44.9350081969186, 0.0], [-68.63680747056861, 44.934943330252, 0.0], [-68.63675060390204, 44.934878396918805, 0.0], [-68.63669360390213, 44.9348135969189, 0.0], [-68.63663667056892, 44.934748730252295, 0.0], [-68.636579670569, 44.9346837969191, 0.0], [-68.6365226705691, 44.9346189969192, 0.0], [-68.63646587056917, 44.93455413025259, 0.0], [-68.63640887056926, 44.934489330252745, 0.0], [-68.63635200390269, 44.934424396919496, 0.0], [-68.63629507056942, 44.93435953025295, 0.0], [-68.6362380705695, 44.93429473025304, 0.0], [-68.63618120390294, 44.934229796919794, 0.0], [-68.63612420390302, 44.93416499691989, 0.0], [-68.63606720390311, 44.93410013025334, 0.0], [-68.63601040390319, 44.93403519692009, 0.0], [-68.63595340390327, 44.93397039692019, 0.0], [-68.63589647057006, 44.93390553025364, 0.0], [-68.63583960390349, 44.933840730253735, 0.0], [-68.63578260390358, 44.933775796920486, 0.0], [-68.63578800390354, 44.93376293025386, 0.0], [-68.63581860390349, 44.9336895969206, 0.0], [-68.63584927057013, 44.93361639692074, 0.0], [-68.63587987057008, 44.93354319692088, 0.0], [-68.63591047057002, 44.93346999692096, 0.0], [-68.63594120390331, 44.9333967302544, 0.0], [-68.63597180390326, 44.93332353025454, 0.0], [-68.6360024039032, 44.93325033025462, 0.0], [-68.63603300390315, 44.93317699692142, 0.0], [-68.6360636039031, 44.93310379692156, 0.0], [-68.63609427056974, 44.93303059692164, 0.0], [-68.63612487056969, 44.93295739692178, 0.0], [-68.63615547056963, 44.93288413025522, 0.0], [-68.63618607056958, 44.9328109302553, 0.0], [-68.63620440390292, 44.93280259692199, 0.0], [-68.63629540390275, 44.93276159692209, 0.0], [-68.63638640390263, 44.93272059692214, 0.0], [-68.63647727056912, 44.93267953025554, 0.0], [-68.636568270569, 44.93263853025559, 0.0], [-68.63665927056888, 44.932597530255634, 0.0], [-68.63675020390207, 44.93255653025574, 0.0], [-68.6368412039019, 44.93251539692244, 0.0], [-68.63693207056843, 44.93247439692249, 0.0], [-68.63702300390162, 44.93243339692259, 0.0], [-68.6371140039015, 44.93239233025599, 0.0], [-68.63720500390133, 44.93235133025604, 0.0], [-68.63729600390121, 44.93231033025609, 0.0], [-68.63738687056775, 44.93226933025619, 0.0], [-68.63747787056758, 44.93222819692289, 0.0], [-68.63756880390076, 44.93218719692294, 0.0], [-68.63765980390065, 44.93214619692304, 0.0], [-68.63775060390049, 44.932105130256446, 0.0], [-68.63784180390036, 44.93206413025649, 0.0], [-68.6379326039002, 44.93202313025654, 0.0], [-68.63802360390008, 44.931982130256586, 0.0], [-68.63811447056662, 44.931940996923345, 0.0], [-68.63820547056645, 44.93189999692339, 0.0], [-68.63829647056633, 44.931858996923495, 0.0], [-68.63838740389951, 44.93181793025684, 0.0], [-68.6384784038994, 44.931776930256945, 0.0], [-68.63856927056588, 44.93173593025699, 0.0], [-68.63866027056577, 44.93169493025704, 0.0], [-68.63875120389895, 44.9316537969238, 0.0], [-68.63884220389883, 44.931612796923844, 0.0], [-68.63893307056532, 44.93157179692389, 0.0], [-68.6390240705652, 44.93153073025729, 0.0], [-68.63911507056503, 44.9314897302574, 0.0], [-68.63920607056491, 44.93144873025744, 0.0], [-68.63929687056475, 44.93140773025749, 0.0], [-68.63938787056463, 44.93136659692425, 0.0], [-68.63947880389782, 44.931325596924296, 0.0], [-68.6395698038977, 44.93128459692434, 0.0], [-68.63966080389753, 44.931243530257746, 0.0], [-68.63975180389741, 44.93120253025785, 0.0], [-68.63984280389724, 44.931161530257896, 0.0], [-68.63993360389713, 44.9311203969246, 0.0], [-68.64002460389696, 44.9310793969247, 0.0], [-68.6401154705635, 44.93103839692475, 0.0], [-68.64020647056333, 44.930997396924795, 0.0], [-68.64029727056322, 44.9309563302582, 0.0], [-68.6403884705631, 44.930915330258244, 0.0], [-68.64047927056293, 44.93087433025835, 0.0], [-68.64057027056282, 44.93083319692505, 0.0], [-68.640661203896, 44.9307921969251, 0.0], [-68.64075220389583, 44.9307511969252, 0.0], [-68.64076660389583, 44.93071673025855, 0.0], [-68.64079720389577, 44.93064353025869, 0.0], [-68.64082780389572, 44.930570330258774, 0.0], [-68.64085840389566, 44.93049699692557, 0.0]], "type": "LineString"}, "id": "412", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743020", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.68345787049623, 44.91244019695358, -68.68255680383095, 44.912645530286625], "geometry": {"coordinates": [[-68.68345787049623, 44.912645530286625, 0.0], [-68.68255680383095, 44.91244019695358, 0.0]], "type": "LineString"}, "id": "413", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743026", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.69590800381025, 44.91690533028003, -68.69006100381932, 44.94283013023977], "geometry": {"coordinates": [[-68.69590800381025, 44.94283013023977, 0.0], [-68.69581960381038, 44.94278639690651, 0.0], [-68.69573120381051, 44.9427427302399, 0.0], [-68.6956426704773, 44.94269899690664, 0.0], [-68.69555420381079, 44.94265533024003, 0.0], [-68.69546580381092, 44.94261159690677, 0.0], [-68.69544740381093, 44.94260253024015, 0.0], [-68.6953908704777, 44.9425375302402, 0.0], [-68.6953344704778, 44.94247239690702, 0.0], [-68.69527800381121, 44.94240733024043, 0.0], [-68.69522160381132, 44.94234219690719, 0.0], [-68.69516520381137, 44.942277130240655, 0.0], [-68.69510867047813, 44.94221199690742, 0.0], [-68.69505227047824, 44.942146930240824, 0.0], [-68.69499580381165, 44.94208193024093, 0.0], [-68.69493940381176, 44.942016796907694, 0.0], [-68.69488300381181, 44.94195173024116, 0.0], [-68.69482660381192, 44.94188659690792, 0.0], [-68.69477007047868, 44.94182153024133, 0.0], [-68.69471360381209, 44.94175639690809, 0.0], [-68.69465727047884, 44.941691330241554, 0.0], [-68.69460080381225, 44.94162633024166, 0.0], [-68.69454440381236, 44.941561196908424, 0.0], [-68.69448800381241, 44.94149613024183, 0.0], [-68.69443140381253, 44.94143099690859, 0.0], [-68.69437507047928, 44.94136593024206, 0.0], [-68.69431867047939, 44.94130079690882, 0.0], [-68.69426227047944, 44.94123579690893, 0.0], [-68.69420580381285, 44.941170730242334, 0.0], [-68.69414940381296, 44.9411055969091, 0.0], [-68.69409287047972, 44.94104053024256, 0.0], [-68.69403647047977, 44.94097539690932, 0.0], [-68.69398007047988, 44.94091033024273, 0.0], [-68.69392360381329, 44.94084519690949, 0.0], [-68.6938672038134, 44.9407801969096, 0.0], [-68.6938108038135, 44.94071513024306, 0.0], [-68.69375427048021, 44.940649996909826, 0.0], [-68.69369787048032, 44.94058493024323, 0.0], [-68.69364140381373, 44.94051979691005, 0.0], [-68.69358500381384, 44.94045473024346, 0.0], [-68.69352860381395, 44.94038959691022, 0.0], [-68.6934722704807, 44.94032459691033, 0.0], [-68.69341567048076, 44.940259530243736, 0.0], [-68.69335927048087, 44.940194396910556, 0.0], [-68.69330287048092, 44.94012933024396, 0.0], [-68.69324647048103, 44.940064196910726, 0.0], [-68.69319000381444, 44.93999913024419, 0.0], [-68.69313360381454, 44.93993399691095, 0.0], [-68.6930772038146, 44.93986899691106, 0.0], [-68.69302060381472, 44.939803930244466, 0.0], [-68.69296427048147, 44.93973879691123, 0.0], [-68.6929464038148, 44.939718130244614, 0.0], [-68.69292747048155, 44.9396429302447, 0.0], [-68.69290847048154, 44.939567730244846, 0.0], [-68.69288960381493, 44.939492530244934, 0.0], [-68.69287067048162, 44.93941733024508, 0.0], [-68.69285167048162, 44.939342130245166, 0.0], [-68.69283287048165, 44.939266996911954, 0.0], [-68.69281400381504, 44.9391917969121, 0.0], [-68.69279500381504, 44.939116596912186, 0.0], [-68.69277620381507, 44.93904139691233, 0.0], [-68.69275720381512, 44.93896619691242, 0.0], [-68.69273827048181, 44.93889099691256, 0.0], [-68.69273740381516, 44.938887330245905, 0.0], [-68.69268580381521, 44.93882019691267, 0.0], [-68.6926344038153, 44.938753130246084, 0.0], [-68.69258267048207, 44.93868599691285, 0.0], [-68.69253127048216, 44.938618996912965, 0.0], [-68.69247980381556, 44.93855193024643, 0.0], [-68.69242820381561, 44.9384847969132, 0.0], [-68.69237667048236, 44.93841773024661, 0.0], [-68.69232520381581, 44.93835059691338, 0.0], [-68.69227367048256, 44.93828353024685, 0.0], [-68.6922222704826, 44.93821639691362, 0.0], [-68.69217067048271, 44.93814933024703, 0.0], [-68.69211900381612, 44.9380821969138, 0.0], [-68.69206760381621, 44.938015130247265, 0.0], [-68.69201607048296, 44.93794799691403, 0.0], [-68.69196460381636, 44.937880930247445, 0.0], [-68.69191300381641, 44.93781379691421, 0.0], [-68.69186147048316, 44.93774673024768, 0.0], [-68.69181000381661, 44.93767959691445, 0.0], [-68.69177727048333, 44.93763699691448, 0.0], [-68.69175380381665, 44.93756253024793, 0.0], [-68.69173027048339, 44.93748799691474, 0.0], [-68.69170680381677, 44.93741339691485, 0.0], [-68.6916834038168, 44.9373389302483, 0.0], [-68.69165980381683, 44.937264396915054, 0.0], [-68.69163620381687, 44.93718979691522, 0.0], [-68.6916128038169, 44.937115330248616, 0.0], [-68.69158927048358, 44.93704073024878, 0.0], [-68.69156580381696, 44.936966196915535, 0.0], [-68.6915422704837, 44.93689173024899, 0.0], [-68.69151867048373, 44.936817130249096, 0.0], [-68.69149520381706, 44.936742596915906, 0.0], [-68.69147167048379, 44.93666813024936, 0.0], [-68.69144820381717, 44.93659353024947, 0.0], [-68.6914248038172, 44.93651899691622, 0.0], [-68.69140120381724, 44.93644439691633, 0.0], [-68.69137860381727, 44.93637313024982, 0.0], [-68.69140927048386, 44.93629979691656, 0.0], [-68.69143980381716, 44.9362265969167, 0.0], [-68.6914704038171, 44.93615339691678, 0.0], [-68.69150100381705, 44.936080130250275, 0.0], [-68.691531603817, 44.93600693025036, 0.0], [-68.69156207048366, 44.93593359691715, 0.0], [-68.6915926704836, 44.935860396917235, 0.0], [-68.6916232038169, 44.93578713025073, 0.0], [-68.69163040381687, 44.93576993025073, 0.0], [-68.69158967048361, 44.93569919691748, 0.0], [-68.69154887048364, 44.93562853025094, 0.0], [-68.69150820381708, 44.93555779691775, 0.0], [-68.69146740381711, 44.93548699691786, 0.0], [-68.69142667048385, 44.93541633025126, 0.0], [-68.69138607048393, 44.93534559691807, 0.0], [-68.69134520381732, 44.93527493025152, 0.0], [-68.6913046038174, 44.93520419691828, 0.0], [-68.69126367048409, 44.93513353025173, 0.0], [-68.69122307048417, 44.93506279691849, 0.0], [-68.69120080381754, 44.93502413025186, 0.0], [-68.69123127048414, 44.934950930252, 0.0], [-68.69126187048408, 44.934877596918795, 0.0], [-68.69129247048409, 44.93480439691888, 0.0], [-68.69132307048403, 44.93473119691902, 0.0], [-68.69135180381733, 44.934662196919135, 0.0], [-68.69133067048398, 44.934587330252555, 0.0], [-68.69130947048404, 44.93451239691933, 0.0], [-68.6912884038174, 44.93443753025281, 0.0], [-68.69126720381746, 44.934362596919584, 0.0], [-68.69124620381746, 44.934287796919705, 0.0], [-68.69122507048417, 44.934212930253125, 0.0], [-68.69120387048417, 44.93413799691996, 0.0], [-68.69118280381758, 44.93406313025338, 0.0], [-68.69116167048423, 44.933988196920154, 0.0], [-68.69114060381764, 44.93391333025363, 0.0], [-68.69111947048435, 44.93383839692041, 0.0], [-68.69109827048436, 44.93376353025383, 0.0], [-68.69107720381771, 44.933688596920604, 0.0], [-68.69105607048442, 44.93361373025408, 0.0], [-68.69103500381777, 44.93353879692086, 0.0], [-68.69101387048448, 44.933463930254334, 0.0], [-68.69099280381784, 44.93338899692111, 0.0], [-68.6909716038179, 44.93331413025453, 0.0], [-68.69095047048461, 44.933239196921306, 0.0], [-68.6909294704846, 44.93316433025478, 0.0], [-68.69090827048467, 44.93308939692156, 0.0], [-68.69088720381802, 44.933014530255036, 0.0], [-68.69086600381803, 44.9329397302551, 0.0], [-68.69084487048474, 44.93286479692193, 0.0], [-68.6908236704848, 44.93278993025535, 0.0], [-68.6908026704848, 44.93271499692213, 0.0], [-68.69078160381821, 44.932640130255606, 0.0], [-68.69076040381822, 44.93256519692238, 0.0], [-68.69073927048493, 44.9324903302558, 0.0], [-68.69071820381828, 44.93241539692258, 0.0], [-68.69069707048499, 44.932340530256056, 0.0], [-68.69067600381834, 44.93226559692283, 0.0], [-68.69065487048505, 44.93219073025631, 0.0], [-68.69063367048506, 44.932115796923085, 0.0], [-68.69061260381847, 44.932040930256505, 0.0], [-68.69060487048512, 44.932013730256585, 0.0], [-68.69061807048513, 44.93193793025665, 0.0], [-68.69063120381844, 44.931862130256775, 0.0], [-68.6906444038184, 44.9317863302569, 0.0], [-68.69065740381836, 44.93171053025702, 0.0], [-68.69067060381838, 44.931634730257144, 0.0], [-68.69068387048503, 44.93155893025727, 0.0], [-68.69069707048499, 44.931482996924046, 0.0], [-68.69071007048495, 44.93140719692417, 0.0], [-68.69072320381827, 44.93133139692429, 0.0], [-68.69073640381828, 44.931255596924416, 0.0], [-68.69073660381827, 44.931254196924385, 0.0], [-68.69071767048496, 44.93117899692453, 0.0], [-68.6906988038183, 44.93110379692462, 0.0], [-68.69067987048498, 44.931028730258106, 0.0], [-68.69066100381838, 44.93095353025819, 0.0], [-68.69064207048507, 44.93087833025834, 0.0], [-68.6906232038184, 44.930803130258425, 0.0], [-68.69060427048515, 44.93072793025857, 0.0], [-68.69058527048514, 44.93065273025866, 0.0], [-68.69056647048518, 44.9305775302588, 0.0], [-68.69054747048523, 44.93050233025889, 0.0], [-68.69052860381856, 44.930427130259034, 0.0], [-68.69050967048526, 44.93035199692582, 0.0], [-68.69049080381865, 44.93027679692591, 0.0], [-68.69047187048534, 44.930201596926054, 0.0], [-68.69045800381866, 44.930146596926136, 0.0], [-68.69048860381866, 44.930073330259575, 0.0], [-68.69051920381861, 44.930000130259714, 0.0], [-68.69054967048521, 44.92992679692645, 0.0], [-68.69058027048516, 44.92985359692659, 0.0], [-68.6906108704851, 44.92978033026003, 0.0], [-68.69064147048505, 44.92970713026017, 0.0], [-68.69067200381835, 44.92963393026025, 0.0], [-68.6907026038183, 44.92956059692705, 0.0], [-68.69073307048495, 44.92948739692713, 0.0], [-68.6907636704849, 44.929414130260625, 0.0], [-68.69079420381814, 44.92934093026071, 0.0], [-68.69082480381815, 44.92926773026085, 0.0], [-68.69085547048473, 44.929194396927585, 0.0], [-68.69088587048469, 44.929121196927724, 0.0], [-68.69091660381798, 44.92904793026116, 0.0], [-68.69094707048458, 44.9289747302613, 0.0], [-68.69097747048454, 44.928901530261385, 0.0], [-68.69100820381783, 44.92882819692818, 0.0], [-68.69103860381779, 44.92875499692826, 0.0], [-68.69106927048443, 44.92868173026176, 0.0], [-68.69109987048438, 44.92860853026184, 0.0], [-68.69113040381762, 44.92853533026198, 0.0], [-68.69116100381757, 44.92846199692872, 0.0], [-68.69119147048423, 44.92838879692886, 0.0], [-68.6912130704842, 44.928337130262264, 0.0], [-68.69119720381752, 44.928261530262375, 0.0], [-68.69118100381758, 44.92818599692919, 0.0], [-68.69116500381762, 44.92811053026264, 0.0], [-68.69114887048426, 44.9280349969294, 0.0], [-68.6911328704843, 44.927959530262854, 0.0], [-68.69111687048434, 44.927883930262965, 0.0], [-68.69110087048438, 44.92780839692978, 0.0], [-68.69108480381772, 44.92773293026323, 0.0], [-68.6910688704844, 44.92765739692999, 0.0], [-68.69105280381774, 44.9275817969301, 0.0], [-68.69103667048444, 44.927506330263554, 0.0], [-68.69102067048448, 44.927430796930366, 0.0], [-68.69100467048452, 44.927355330263765, 0.0], [-68.69098860381786, 44.92727973026393, 0.0], [-68.6909726038179, 44.92720419693069, 0.0], [-68.69095660381794, 44.927128730264144, 0.0], [-68.69094040381793, 44.927053196930956, 0.0], [-68.69092447048462, 44.926977730264355, 0.0], [-68.69090840381801, 44.92690213026452, 0.0], [-68.690892403818, 44.92682659693128, 0.0], [-68.69087640381804, 44.92675113026473, 0.0], [-68.69086027048473, 44.92667559693149, 0.0], [-68.69084427048477, 44.92659999693166, 0.0], [-68.69082827048476, 44.926524530265056, 0.0], [-68.69081207048481, 44.92644899693187, 0.0], [-68.69079620381814, 44.92637353026532, 0.0], [-68.69078027048488, 44.92629799693208, 0.0], [-68.69077587048486, 44.92627799693213, 0.0], [-68.69079607048485, 44.92620299693226, 0.0], [-68.6908160704848, 44.92612799693234, 0.0], [-68.6908362704848, 44.926052930265826, 0.0], [-68.69085640381809, 44.92597793026596, 0.0], [-68.69087647048468, 44.925902930266034, 0.0], [-68.69089667048468, 44.925827930266166, 0.0], [-68.69091667048463, 44.925752796932954, 0.0], [-68.69093687048462, 44.92567779693309, 0.0], [-68.69095700381791, 44.92560279693316, 0.0], [-68.69097707048456, 44.92552773026665, 0.0], [-68.6909972704845, 44.92545273026673, 0.0], [-68.69101727048451, 44.92537773026686, 0.0], [-68.69103747048445, 44.92530259693365, 0.0], [-68.69105760381774, 44.92522759693378, 0.0], [-68.69107767048439, 44.925152596933856, 0.0], [-68.69109787048438, 44.925077530267345, 0.0], [-68.6911090038177, 44.925036130267415, 0.0], [-68.69109020381768, 44.9249609302675, 0.0], [-68.69107120381773, 44.92488573026765, 0.0], [-68.69105220381778, 44.924810530267735, 0.0], [-68.69103327048447, 44.92473533026788, 0.0], [-68.69101427048452, 44.92466013026797, 0.0], [-68.6909954704845, 44.92458493026811, 0.0], [-68.69097660381789, 44.9245097969349, 0.0], [-68.69095760381794, 44.92443459693499, 0.0], [-68.69093880381791, 44.92435939693513, 0.0], [-68.69091987048466, 44.92428419693522, 0.0], [-68.69090087048465, 44.92420899693536, 0.0], [-68.69088207048469, 44.92413379693545, 0.0], [-68.69086320381808, 44.924058596935595, 0.0], [-68.69084427048477, 44.92398339693568, 0.0], [-68.69082527048477, 44.92390833026917, 0.0], [-68.69080640381816, 44.92383313026926, 0.0], [-68.6907876038182, 44.9237579302694, 0.0], [-68.69076860381819, 44.92368273026949, 0.0], [-68.6907608038182, 44.923651530269524, 0.0], [-68.6907694038182, 44.923575396936315, 0.0], [-68.6907780038182, 44.923499330269806, 0.0], [-68.6907866038182, 44.923423130269896, 0.0], [-68.69079520381814, 44.92334699693669, 0.0], [-68.69080387048484, 44.92327093027012, 0.0], [-68.69081240381814, 44.92319473027027, 0.0], [-68.69082100381814, 44.92311859693706, 0.0], [-68.69082967048479, 44.92304253027049, 0.0], [-68.69083820381809, 44.922966396937284, 0.0], [-68.69084680381809, 44.922890196937374, 0.0], [-68.69085527048475, 44.922814130270865, 0.0], [-68.69086400381804, 44.9227379969376, 0.0], [-68.69087260381804, 44.922661796937746, 0.0], [-68.69088107048469, 44.92258573027118, 0.0], [-68.69088980381804, 44.92250959693797, 0.0], [-68.69089840381798, 44.922433530271405, 0.0], [-68.69090687048464, 44.92235733027155, 0.0], [-68.69091560381798, 44.92228119693834, 0.0], [-68.69092420381799, 44.92220513027178, 0.0], [-68.69093280381793, 44.922128930271924, 0.0], [-68.69094140381793, 44.922052796938715, 0.0], [-68.69095000381793, 44.92197673027215, 0.0], [-68.69095860381793, 44.92190059693894, 0.0], [-68.69096720381788, 44.92182439693903, 0.0], [-68.69097580381788, 44.92174833027252, 0.0], [-68.69098440381788, 44.921672196939255, 0.0], [-68.69099300381788, 44.92159613027275, 0.0], [-68.69100167048452, 44.92151993027284, 0.0], [-68.69101020381783, 44.92144379693963, 0.0], [-68.69101880381783, 44.92136773027306, 0.0], [-68.69102747048447, 44.92129153027321, 0.0], [-68.69103580381778, 44.92121693027332, 0.0], [-68.69101700381782, 44.92114173027346, 0.0], [-68.69099800381787, 44.92106659694019, 0.0], [-68.69097907048456, 44.92099139694034, 0.0], [-68.6909602038179, 44.92091619694048, 0.0], [-68.69094127048459, 44.92084099694057, 0.0], [-68.69092247048462, 44.920765796940714, 0.0], [-68.69090347048467, 44.9206905969408, 0.0], [-68.690884603818, 44.920615396940946, 0.0], [-68.69086580381804, 44.92054019694103, 0.0], [-68.69084680381809, 44.920465130274465, 0.0], [-68.69082787048478, 44.92038993027461, 0.0], [-68.69080907048482, 44.9203147302747, 0.0], [-68.69079007048487, 44.92023953027484, 0.0], [-68.69077107048486, 44.92016433027493, 0.0], [-68.69075220381825, 44.92008913027507, 0.0], [-68.69073327048494, 44.92001393027516, 0.0], [-68.69071440381828, 44.919938730275305, 0.0], [-68.69069547048497, 44.91986359694209, 0.0], [-68.69067660381836, 44.91978839694218, 0.0], [-68.69065767048505, 44.919713196942325, 0.0], [-68.69063887048509, 44.91963799694241, 0.0], [-68.69061987048508, 44.91956279694256, 0.0], [-68.69060100381847, 44.919487596942645, 0.0], [-68.69058200381852, 44.91941239694279, 0.0], [-68.6905632038185, 44.91933719694288, 0.0], [-68.69054427048525, 44.919262130276365, 0.0], [-68.69052527048524, 44.91918693027645, 0.0], [-68.69050640381863, 44.9191117302766, 0.0], [-68.69048747048532, 44.919036530276685, 0.0], [-68.69046867048536, 44.91896133027683, 0.0], [-68.69044967048535, 44.91888613027692, 0.0], [-68.69043080381874, 44.91881093027706, 0.0], [-68.69041180381873, 44.91873573027715, 0.0], [-68.69039300381877, 44.91866059694394, 0.0], [-68.69037407048546, 44.91858539694408, 0.0], [-68.69035507048551, 44.91851019694417, 0.0], [-68.69033627048555, 44.91843499694431, 0.0], [-68.69031740381888, 44.9183597969444, 0.0], [-68.69029847048563, 44.918284596944545, 0.0], [-68.69027960381896, 44.91820939694463, 0.0], [-68.69026060381901, 44.91813419694478, 0.0], [-68.690241603819, 44.91805913027821, 0.0], [-68.69022280381904, 44.91798393027835, 0.0], [-68.69020387048573, 44.91790873027844, 0.0], [-68.69018500381912, 44.917833530278585, 0.0], [-68.69016607048582, 44.91775833027867, 0.0], [-68.69014720381915, 44.91768313027882, 0.0], [-68.69012827048584, 44.917607930278905, 0.0], [-68.69010940381924, 44.91753279694569, 0.0], [-68.69009060381927, 44.91745759694584, 0.0], [-68.69007160381926, 44.917382396945925, 0.0], [-68.69006100381932, 44.917340196945986, 0.0], [-68.69009147048592, 44.917266996946125, 0.0], [-68.69012207048587, 44.917193730279564, 0.0], [-68.69015247048583, 44.9171205302797, 0.0], [-68.69018320381912, 44.91704719694644, 0.0], [-68.69021200381906, 44.9169783302799, 0.0], [-68.6903066704856, 44.91694179694662, 0.0], [-68.69040140381878, 44.91690533028003, 0.0]], "type": "LineString"}, "id": "414", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743030", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.68165480383237, 44.97697119685347, -68.67684627050647, 44.98597379683946], "geometry": {"coordinates": [[-68.67684627050647, 44.98597379683946, 0.0], [-68.67689760383973, 44.98591633017287, 0.0], [-68.67712067050604, 44.98553559684018, 0.0], [-68.67735480383902, 44.98532559684048, 0.0], [-68.67746207050556, 44.98513439684075, 0.0], [-68.67757540383866, 44.98495093017442, 0.0], [-68.67769720383848, 44.98467033017482, 0.0], [-68.6777026038385, 44.9846573968415, 0.0], [-68.67773320383844, 44.98458413017494, 0.0], [-68.67776380383839, 44.98451093017508, 0.0], [-68.67779440383833, 44.98443759684187, 0.0], [-68.67782500383828, 44.984364396841954, 0.0], [-68.67785560383822, 44.98429113017539, 0.0], [-68.67788620383823, 44.98421793017553, 0.0], [-68.67791680383817, 44.98414459684233, 0.0], [-68.67794740383812, 44.98407139684241, 0.0], [-68.67797800383806, 44.98399813017585, 0.0], [-68.67800860383801, 44.98392493017599, 0.0], [-68.67803920383795, 44.98385159684278, 0.0], [-68.6780698038379, 44.983778396842865, 0.0], [-68.67810060383789, 44.983705130176304, 0.0], [-68.6780948038379, 44.983631130176434, 0.0], [-68.67808867050456, 44.98355493017658, 0.0], [-68.67808267050458, 44.98347859684333, 0.0], [-68.67807680383788, 44.98340233017677, 0.0], [-68.67807067050461, 44.98332613017692, 0.0], [-68.67806467050457, 44.98324979684372, 0.0], [-68.67805880383793, 44.98317353017717, 0.0], [-68.6780526705046, 44.98309733017726, 0.0], [-68.67804667050461, 44.98302099684406, 0.0], [-68.67804080383797, 44.98294473017751, 0.0], [-68.67803480383799, 44.9828685301776, 0.0], [-68.678028803838, 44.9827921968444, 0.0], [-68.67802280383796, 44.98271593017785, 0.0], [-68.67801680383798, 44.98263973017799, 0.0], [-68.67801080383799, 44.98256339684474, 0.0], [-68.67800480383801, 44.98248713017824, 0.0], [-68.67799880383802, 44.98241093017833, 0.0], [-68.67799280383804, 44.982334596845135, 0.0], [-68.67798680383805, 44.982258396845225, 0.0], [-68.67798087050471, 44.98218213017867, 0.0], [-68.67797487050473, 44.982105796845474, 0.0], [-68.67796887050474, 44.98202959684562, 0.0], [-68.67796287050476, 44.98195333017907, 0.0], [-68.67795687050477, 44.98187699684581, 0.0], [-68.67795087050479, 44.98180079684596, 0.0], [-68.6779448705048, 44.981724530179406, 0.0], [-68.67793887050476, 44.98164819684621, 0.0], [-68.67793287050478, 44.9815719968463, 0.0], [-68.67792700383814, 44.981495730179745, 0.0], [-68.6779208705048, 44.98141939684655, 0.0], [-68.67791500383817, 44.98134319684664, 0.0], [-68.67790900383818, 44.981266930180084, 0.0], [-68.67790287050485, 44.98119073018023, 0.0], [-68.67789700383821, 44.98111439684703, 0.0], [-68.67789100383817, 44.98103813018048, 0.0], [-68.6778848705049, 44.98096193018057, 0.0], [-68.6778790038382, 44.98088559684737, 0.0], [-68.67787307050492, 44.98080933018082, 0.0], [-68.67786707050487, 44.980733130180965, 0.0], [-68.67786120383823, 44.98065679684771, 0.0], [-68.6778550705049, 44.98058053018116, 0.0], [-68.67784907050492, 44.980504330181304, 0.0], [-68.67784320383828, 44.98042799684811, 0.0], [-68.67783707050495, 44.9803517968482, 0.0], [-68.67783107050496, 44.98027553018164, 0.0], [-68.67782520383832, 44.980199196848446, 0.0], [-68.67781920383828, 44.980122996848536, 0.0], [-68.6778132038383, 44.98004673018198, 0.0], [-68.67780720383831, 44.979970396848785, 0.0], [-68.67781260383833, 44.97995753018216, 0.0], [-68.67784320383828, 44.979884330182244, 0.0], [-68.67787380383822, 44.97981099684904, 0.0], [-68.67790440383817, 44.97973779684918, 0.0], [-68.67793500383812, 44.97966453018262, 0.0], [-68.67796547050477, 44.9795913301827, 0.0], [-68.67799607050472, 44.979517996849495, 0.0], [-68.67802667050466, 44.979444796849634, 0.0], [-68.6780574705046, 44.97937153018307, 0.0], [-68.67808807050454, 44.979298330183155, 0.0], [-68.67811867050449, 44.97922499684995, 0.0], [-68.67814927050443, 44.97915179685003, 0.0], [-68.67817980383774, 44.97907853018353, 0.0], [-68.67821040383768, 44.97900533018361, 0.0], [-68.6783016705042, 44.978970130183654, 0.0], [-68.67839647050408, 44.97893373018371, 0.0], [-68.67849127050391, 44.97889719685048, 0.0], [-68.67858620383714, 44.97886073018384, 0.0], [-68.67868100383697, 44.97882419685055, 0.0], [-68.6787758038368, 44.97878779685061, 0.0], [-68.67887060383669, 44.978751330184025, 0.0], [-68.67896540383651, 44.97871479685074, 0.0], [-68.67906007050306, 44.97867833018415, 0.0], [-68.67915500383623, 44.978641796850866, 0.0], [-68.67924980383606, 44.978605396850924, 0.0], [-68.67934460383594, 44.97856893018428, 0.0], [-68.67943947050247, 44.978532396850994, 0.0], [-68.67953420383566, 44.97849593018441, 0.0], [-68.67962907050219, 44.97845939685112, 0.0], [-68.67972387050202, 44.97842299685118, 0.0], [-68.67981867050185, 44.97838653018459, 0.0], [-68.67991347050173, 44.97834999685131, 0.0], [-68.68000827050156, 44.97831353018472, 0.0], [-68.68010320383473, 44.978276996851434, 0.0], [-68.68019780383463, 44.97824059685149, 0.0], [-68.68022587050126, 44.97821619685152, 0.0], [-68.68029387050115, 44.97815693018492, 0.0], [-68.68036200383438, 44.97809759685168, 0.0], [-68.6804300705009, 44.97803833018514, 0.0], [-68.68049807050079, 44.9779789968519, 0.0], [-68.68056620383402, 44.977919730185306, 0.0], [-68.68063420383396, 44.97786053018541, 0.0], [-68.68070220383385, 44.97780119685217, 0.0], [-68.68077027050037, 44.97774193018557, 0.0], [-68.68083827050026, 44.97768259685233, 0.0], [-68.68090647050019, 44.97762333018579, 0.0], [-68.68097440383343, 44.97756399685255, 0.0], [-68.6810426038333, 44.9775047968526, 0.0], [-68.68111047049985, 44.97744553018606, 0.0], [-68.68117847049973, 44.97738619685282, 0.0], [-68.68124660383296, 44.97732693018622, 0.0], [-68.68131467049955, 44.97726759685298, 0.0], [-68.68138267049943, 44.977208330186386, 0.0], [-68.68145060383267, 44.97714913018649, 0.0], [-68.68151867049926, 44.97708979685325, 0.0], [-68.68158667049914, 44.97703053018671, 0.0], [-68.68165480383237, 44.97697119685347, 0.0]], "type": "LineString"}, "id": "415", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743068", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.68841640382186, 44.95768459688338, -68.68414987049516, 44.96940113019855], "geometry": {"coordinates": [[-68.6868547371576, 44.96940113019855, 0.0], [-68.68764907048973, 44.96838673020011, 0.0], [-68.68835427048862, 44.966697730202725, 0.0], [-68.68841640382186, 44.96566133020434, 0.0], [-68.68507460382705, 44.961682396877166, 0.0], [-68.6848388704941, 44.95914073021447, 0.0], [-68.68414987049516, 44.95768459688338, 0.0]], "type": "LineString"}, "id": "416", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736736", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.78734667033495, 44.76921739717591, -68.76803020369829, 44.79714339713257], "geometry": {"coordinates": [[-68.76803020369829, 44.79714339713257, 0.0], [-68.77023300369484, 44.794064197137345, 0.0], [-68.77242500369147, 44.79190053047404, 0.0], [-68.77372727035612, 44.7887643304789, 0.0], [-68.77358760368963, 44.78821073047976, 0.0], [-68.77487000368768, 44.78467713048525, 0.0], [-68.77551047035331, 44.78402439715296, 0.0], [-68.77685200368461, 44.781682997156565, 0.0], [-68.77911320368105, 44.77979599715951, 0.0], [-68.78178420367692, 44.77825679716187, 0.0], [-68.78355500367417, 44.77666059716438, 0.0], [-68.78487527033877, 44.77614993049849, 0.0], [-68.78635607033652, 44.774361997167944, 0.0], [-68.78684620366909, 44.77407119716838, 0.0], [-68.78734667033495, 44.7728649305036, 0.0], [-68.78680747033582, 44.77104819717306, 0.0], [-68.78682827033577, 44.76921739717591, 0.0]], "type": "LineString"}, "id": "417", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736894", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.80168867031273, 44.76144239718798, -68.78682827033577, 44.76921739717591], "geometry": {"coordinates": [[-68.78682827033577, 44.76921739717591, 0.0], [-68.7877990036676, 44.767322930512194, 0.0], [-68.79039920366358, 44.76550679718167, 0.0], [-68.79193940366116, 44.7649109971826, 0.0], [-68.79354920365864, 44.76459199718312, 0.0], [-68.80168867031273, 44.76144239718798, 0.0]], "type": "LineString"}, "id": "418", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736904", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.70214140380057, 45.000081196817575, -68.68132347049954, 45.02359293011443], "geometry": {"coordinates": [[-68.70214140380057, 45.022149930116655, 0.0], [-68.70156160380145, 45.02256193011601, 0.0], [-68.70114260380211, 45.02265359678256, 0.0], [-68.70082007046926, 45.02258519678264, 0.0], [-68.7004330038032, 45.02235693011636, 0.0], [-68.70014220380364, 45.02192259678367, 0.0], [-68.70007740380373, 45.02167119678404, 0.0], [-68.69991600380399, 45.02148839678432, 0.0], [-68.69965787047107, 45.021397130117805, 0.0], [-68.69927120380498, 45.021488796784354, 0.0], [-68.6987880704724, 45.02187779678377, 0.0], [-68.69882100380573, 45.022426530116206, 0.0], [-68.69927320380498, 45.02297493011537, 0.0], [-68.69924160380504, 45.02350079678121, 0.0], [-68.69904820380538, 45.023592396781055, 0.0], [-68.69827440380658, 45.02359293011443, 0.0], [-68.6972102704749, 45.02341059678139, 0.0], [-68.6968878704754, 45.023342330114815, 0.0], [-68.69653307047594, 45.0232509967816, 0.0], [-68.6955330704775, 45.02286293011554, 0.0], [-68.69495240381173, 45.02252039678274, 0.0], [-68.6948554704785, 45.02231473011642, 0.0], [-68.6946294704789, 45.0221319301167, 0.0], [-68.69450020381242, 45.02178899678387, 0.0], [-68.69453180381237, 45.02135459678453, 0.0], [-68.694757203812, 45.020988596785116, 0.0], [-68.69495027047839, 45.02078273011875, 0.0], [-68.69572347047716, 45.0203477967861, 0.0], [-68.69575527047715, 45.01995913012007, 0.0], [-68.69546500381091, 45.01982219678695, 0.0], [-68.6949490038117, 45.01977679678703, 0.0], [-68.69414320381298, 45.01991439678682, 0.0], [-68.69343347048073, 45.01952613012071, 0.0], [-68.6933366038142, 45.01934333012099, 0.0], [-68.69301360381473, 45.01879473012184, 0.0], [-68.69259380381538, 45.01822339678944, 0.0], [-68.69223887048258, 45.017880730123295, 0.0], [-68.69227100381585, 45.017789330123435, 0.0], [-68.69214200381606, 45.01772073012353, 0.0], [-68.69191567048307, 45.017240730124286, 0.0], [-68.69188327048312, 45.01705779679122, 0.0], [-68.69181867048326, 45.01701213012461, 0.0], [-68.69181840381657, 45.01666913012514, 0.0], [-68.6916892038168, 45.01639479679227, 0.0], [-68.69168747048343, 45.015045930127656, 0.0], [-68.69149387048373, 45.01490879679454, 0.0], [-68.69010740381924, 45.01445233012862, 0.0], [-68.68991360381955, 45.01417813012904, 0.0], [-68.68959060382002, 45.013560930129984, 0.0], [-68.68952580382012, 45.01328659679706, 0.0], [-68.6894928038202, 45.01262359679811, 0.0], [-68.68968480381989, 45.011388730133376, 0.0], [-68.68974807048647, 45.01038279680159, 0.0], [-68.68968347048656, 45.01017699680193, 0.0], [-68.68942520382029, 45.009834196802444, 0.0], [-68.6889090038211, 45.009422996803096, 0.0], [-68.68842520382185, 45.009148796803515, 0.0], [-68.68716760382381, 45.00862373013763, 0.0], [-68.6866190704913, 45.00809813013848, 0.0], [-68.68636107049173, 45.00796113013865, 0.0], [-68.68597387049232, 45.00752693013936, 0.0], [-68.68584460382584, 45.00713833013998, 0.0], [-68.68568327049275, 45.00700113014017, 0.0], [-68.6854248704932, 45.00654413014087, 0.0], [-68.68532800382667, 45.00640693014111, 0.0], [-68.68519827049352, 45.0056523968089, 0.0], [-68.68510147049369, 45.00540099680933, 0.0], [-68.68513300382693, 45.004783596810285, 0.0], [-68.684873070494, 45.002885996813234, 0.0], [-68.68461447049441, 45.00210879681441, 0.0], [-68.68409820382857, 45.00135473014893, 0.0], [-68.68371100382916, 45.001057596816054, 0.0], [-68.68332420382978, 45.00089773014963, 0.0], [-68.6823248038313, 45.000669596816635, 0.0], [-68.68184087049872, 45.000555530150166, 0.0], [-68.68164640383236, 45.00034979681715, 0.0], [-68.68132360383288, 45.00021279681738, 0.0], [-68.68132347049954, 45.000081196817575, 0.0]], "type": "LineString"}, "id": "423", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733654", "fl_ds_name": "Birch Stream"}, "type": "Feature"}, {"bbox": [-69.4235360026808, 44.64429619736984, -69.3944754693926, 44.692556530628224], "geometry": {"coordinates": [[-69.3944754693926, 44.64429619736984, 0.0], [-69.39473166939217, 44.64441059736964, 0.0], [-69.39521246939142, 44.64537079736817, 0.0], [-69.3951806693915, 44.64594253070061, 0.0], [-69.39502066939173, 44.64623979736683, 0.0], [-69.39505286939169, 44.64655993069965, 0.0], [-69.39524520272471, 44.64687999736583, 0.0], [-69.3967510027224, 44.64781713069772, 0.0], [-69.39793646938722, 44.64893733069596, 0.0], [-69.39992280271747, 44.64982859736125, 0.0], [-69.40133300271526, 44.65124593069237, 0.0], [-69.40139726938185, 44.6517031973583, 0.0], [-69.40050080271658, 44.652366597357286, 0.0], [-69.40043680271668, 44.65266379735681, 0.0], [-69.40043700271667, 44.65312113068944, 0.0], [-69.40123820271543, 44.65394413068816, 0.0], [-69.40184706938112, 44.65428699735429, 0.0], [-69.40239160271364, 44.654332530687554, 0.0], [-69.40255186938003, 44.654515397353975, 0.0], [-69.4023282027137, 44.655475797352494, 0.0], [-69.40264866937991, 44.65588739735182, 0.0], [-69.40396246937786, 44.65643579735098, 0.0], [-69.40473160271, 44.656961530683475, 0.0], [-69.40508426937612, 44.65753299734928, 0.0], [-69.40559706937529, 44.65794453068196, 0.0], [-69.40739160270584, 44.65872139734745, 0.0], [-69.4075518693723, 44.65890419734717, 0.0], [-69.40780880270523, 44.65986459734563, 0.0], [-69.40848186937086, 44.660298730678335, 0.0], [-69.40918680270306, 44.66054999734462, 0.0], [-69.41104526936687, 44.661075330677136, 0.0], [-69.41152586936613, 44.66130393067675, 0.0], [-69.41155826936608, 44.661852597342545, 0.0], [-69.4116866026992, 44.66194413067575, 0.0], [-69.41325660269678, 44.66205779734224, 0.0], [-69.41434620269507, 44.662446130674994, 0.0], [-69.41492340269417, 44.6631089973406, 0.0], [-69.415051802694, 44.663451997340076, 0.0], [-69.41505226936061, 44.664229397338886, 0.0], [-69.41486040269427, 44.664641130671555, 0.0], [-69.4148610026943, 44.66548713067027, 0.0], [-69.41521400269374, 44.666058530669375, 0.0], [-69.41521440269372, 44.666630130668466, 0.0], [-69.41492620269418, 44.66692753066803, 0.0], [-69.41402906936224, 44.66708799733442, 0.0], [-69.41361266936286, 44.66729393066748, 0.0], [-69.41313280269696, 44.66823159733269, 0.0], [-69.41297306936389, 44.668848997331736, 0.0], [-69.41319760269687, 44.66921493066445, 0.0], [-69.41441580269498, 44.670014597329896, 0.0], [-69.41473646936112, 44.67040319732928, 0.0], [-69.41512106936051, 44.670585997329, 0.0], [-69.41669120269142, 44.670493930662474, 0.0], [-69.41730000269047, 44.670653797328896, 0.0], [-69.41752440269016, 44.67079079732872, 0.0], [-69.41768606935653, 44.67252853065935, 0.0], [-69.4175904693567, 44.67328319732485, 0.0], [-69.41727080269055, 44.6741065306569, 0.0], [-69.41669460269145, 44.6748841306557, 0.0], [-69.41672706935805, 44.67545579732143, 0.0], [-69.41727206935718, 44.67579859732092, 0.0], [-69.41826560268896, 44.675889597320804, 0.0], [-69.41852200268858, 44.676049597320514, 0.0], [-69.41849046935528, 44.67664413065296, 0.0], [-69.41781820268966, 44.67749053065165, 0.0], [-69.41756200269009, 44.677696330651315, 0.0], [-69.41634460269199, 44.67817699731722, 0.0], [-69.41599226935921, 44.678451530650136, 0.0], [-69.41554466935986, 44.679800797314726, 0.0], [-69.41554546935987, 44.680921197312955, 0.0], [-69.41567400269298, 44.681264130645786, 0.0], [-69.4164436693585, 44.68201839731125, 0.0], [-69.41641220269184, 44.682841530643316, 0.0], [-69.41618846935887, 44.683619130642114, 0.0], [-69.41625306935879, 44.68430499730772, 0.0], [-69.41734380269043, 44.685562197305785, 0.0], [-69.41833866935553, 44.68716239730327, 0.0], [-69.41837120268883, 44.687802597302266, 0.0], [-69.41779506935637, 44.688923330633884, 0.0], [-69.41782746935633, 44.689266197300014, 0.0], [-69.41802000268939, 44.689448997299735, 0.0], [-69.4189816026879, 44.68944859729976, 0.0], [-69.41920600268753, 44.68960873063281, 0.0], [-69.41965600268685, 44.69095759729737, 0.0], [-69.41997666935299, 44.69130039729686, 0.0], [-69.42045780268558, 44.69162033062969, 0.0], [-69.42299086934833, 44.69251099729496, 0.0], [-69.4235360026808, 44.692556530628224, 0.0]], "type": "LineString"}, "id": "424", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3320972", "fl_ds_name": "Twentyfive Mile Stream"}, "type": "Feature"}, {"bbox": [-69.391620869397, 44.63222359738859, -69.38918760273413, 44.633572997386466], "geometry": {"coordinates": [[-69.391620869397, 44.63222359738859, 0.0], [-69.39146080273059, 44.63229219738844, 0.0], [-69.39120466939767, 44.63263533072126, 0.0], [-69.39059640273194, 44.63302413072063, 0.0], [-69.38918760273413, 44.633572997386466, 0.0]], "type": "LineString"}, "id": "425", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3321024", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.39884960271911, 44.60405153076562, -69.391620869397, 44.63222359738859], "geometry": {"coordinates": [[-69.39788466938728, 44.60405153076562, 0.0], [-69.3981410027202, 44.60453153076486, 0.0], [-69.39814140272023, 44.60549193076338, 0.0], [-69.39740560272139, 44.60640673076199, 0.0], [-69.3970856693885, 44.6067041307615, 0.0], [-69.39686180272219, 44.60716139742749, 0.0], [-69.39695806938875, 44.60796179742624, 0.0], [-69.39791880272054, 44.60915059742439, 0.0], [-69.398047269387, 44.609630730756976, 0.0], [-69.3981760693868, 44.61155153075396, 0.0], [-69.39884960271911, 44.614409530749526, 0.0], [-69.39862600271948, 44.6155301307478, 0.0], [-69.39766620272098, 44.61676499741253, 0.0], [-69.39667406938918, 44.61774839741105, 0.0], [-69.39571400272399, 44.61841173074333, 0.0], [-69.39388946939351, 44.61930399740862, 0.0], [-69.39225720272935, 44.62044753074019, 0.0], [-69.39232126939595, 44.620836330739564, 0.0], [-69.39264160272876, 44.62122493073895, 0.0], [-69.39296246939494, 44.62307713073608, 0.0], [-69.39350726939409, 44.62422013073433, 0.0], [-69.39392360272677, 44.62481473073342, 0.0], [-69.39430786939283, 44.625065997399645, 0.0], [-69.3951406027249, 44.625317530732616, 0.0], [-69.39552480272431, 44.62561473073214, 0.0], [-69.39587740272373, 44.62657493073067, 0.0], [-69.39594180272366, 44.62744393072933, 0.0], [-69.39559000272419, 44.6284499973944, 0.0], [-69.39530200272463, 44.628838730727125, 0.0], [-69.39478986939207, 44.62929633072645, 0.0], [-69.39424560272624, 44.62959359739267, 0.0], [-69.39354120272736, 44.629822397392275, 0.0], [-69.39270880272863, 44.62984539739227, 0.0], [-69.39229246939595, 44.629959797392075, 0.0], [-69.39210046939627, 44.630119930725186, 0.0], [-69.39197280272981, 44.63149193072303, 0.0], [-69.391620869397, 44.63222359738859, 0.0]], "type": "LineString"}, "id": "426", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3321078", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.42465940267908, 44.69257753062823, -69.4235342693475, 44.69287473062775], "geometry": {"coordinates": [[-69.4235342693475, 44.69257753062823, 0.0], [-69.4236640693473, 44.69261179729483, 0.0], [-69.42383000268035, 44.69265559729479, 0.0], [-69.42399586934675, 44.69269953062803, 0.0], [-69.4241618026798, 44.692743330627934, 0.0], [-69.42432766934627, 44.69278713062789, 0.0], [-69.42449346934598, 44.69283093062785, 0.0], [-69.42465940267908, 44.69287473062775, 0.0]], "type": "LineString"}, "id": "427", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322080", "fl_ds_name": "Twentyfive Mile Stream"}, "type": "Feature"}, {"bbox": [-69.43820820265802, 44.67392559732383, -69.42465940267908, 44.69287473062775], "geometry": {"coordinates": [[-69.42465940267908, 44.69287473062775, 0.0], [-69.42575420267735, 44.69244399729507, 0.0], [-69.42677660267577, 44.691736997296175, 0.0], [-69.42760686934116, 44.68968273063268, 0.0], [-69.42955380267148, 44.688510197301184, 0.0], [-69.43091960266935, 44.68604193063834, 0.0], [-69.4307258693363, 44.685609997305676, 0.0], [-69.43090260266939, 44.681983730644674, 0.0], [-69.43056400266988, 44.68099913064617, 0.0], [-69.42952160267151, 44.67947853064857, 0.0], [-69.42974220267115, 44.678477130650094, 0.0], [-69.43356120266526, 44.676770930652765, 0.0], [-69.43426666933084, 44.67639159731999, 0.0], [-69.43499740266299, 44.675494330654715, 0.0], [-69.43820820265802, 44.67392559732383, 0.0]], "type": "LineString"}, "id": "428", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322116", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.4235360026808, 44.692556530628224, -69.42349820268089, 44.69257753062823], "geometry": {"coordinates": [[-69.4235360026808, 44.692556530628224, 0.0], [-69.42349820268089, 44.69256799729487, 0.0], [-69.4235342693475, 44.69257753062823, 0.0]], "type": "LineString"}, "id": "429", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322082", "fl_ds_name": "Twentyfive Mile Stream"}, "type": "Feature"}, {"bbox": [-69.44502266931414, 44.667990930666406, -69.43820820265802, 44.67392559732383], "geometry": {"coordinates": [[-69.43820820265802, 44.67392559732383, 0.0], [-69.43925380265642, 44.67361573065767, 0.0], [-69.43998286932197, 44.67363359732428, 0.0], [-69.44173386931925, 44.67294433065871, 0.0], [-69.44253686931796, 44.67232333065965, 0.0], [-69.44316986931699, 44.671667597327314, 0.0], [-69.44502266931414, 44.667990930666406, 0.0]], "type": "LineString"}, "id": "430", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322140", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.4549456692987, 44.66175973067607, -69.44482900264774, 44.667990930666406], "geometry": {"coordinates": [[-69.44502266931414, 44.667990930666406, 0.0], [-69.44482900264774, 44.66755899733374, 0.0], [-69.4450492693141, 44.66655759733527, 0.0], [-69.44612266931239, 44.66389919733939, 0.0], [-69.44758346931013, 44.662104397342205, 0.0], [-69.44845886930881, 44.66175973067607, 0.0], [-69.44930906930745, 44.66193313067578, 0.0], [-69.45003666930631, 44.66286613067433, 0.0], [-69.45122700263784, 44.66310879734061, 0.0], [-69.45307380263495, 44.663092930674, 0.0], [-69.4549456692987, 44.66255899734148, 0.0]], "type": "LineString"}, "id": "431", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322158", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.45616240263018, 44.66136833067668, -69.4549456692987, 44.66255899734148], "geometry": {"coordinates": [[-69.4549456692987, 44.66255899734148, 0.0], [-69.45538326929801, 44.662386597341765, 0.0], [-69.45616240263018, 44.66136833067668, 0.0]], "type": "LineString"}, "id": "432", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322166", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.4612348026223, 44.646295197366726, -69.45601740263038, 44.66136833067668], "geometry": {"coordinates": [[-69.45616240263018, 44.66136833067668, 0.0], [-69.45601740263038, 44.66081573067754, 0.0], [-69.45677386929589, 44.658484997347784, 0.0], [-69.45757660262797, 44.65786393068208, 0.0], [-69.45867066929293, 44.65743299734942, 0.0], [-69.46022966929053, 44.65448133068736, 0.0], [-69.45926206929204, 44.65140693069213, 0.0], [-69.45979840262453, 44.65007773069419, 0.0], [-69.46079600262294, 44.64897319736258, 0.0], [-69.4612348026223, 44.64788573069757, 0.0], [-69.46045846929019, 44.647073597365534, 0.0], [-69.4594384026251, 44.64686559736583, 0.0], [-69.45856460262644, 44.646295197366726, 0.0]], "type": "LineString"}, "id": "433", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322198", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.47083946927404, 44.640950330708336, -69.45841960262663, 44.646295197366726], "geometry": {"coordinates": [[-69.45856460262644, 44.646295197366726, 0.0], [-69.45841960262663, 44.645742530700886, 0.0], [-69.45890720262588, 44.64453419736947, 0.0], [-69.460147202624, 44.643740730703996, 0.0], [-69.46102220262264, 44.643395997371215, 0.0], [-69.46218846928747, 44.64324133070477, 0.0], [-69.46286846928643, 44.643379930704555, 0.0], [-69.46418100261769, 44.64286279737206, 0.0], [-69.46512966928293, 44.641879197373555, 0.0], [-69.46622340261456, 44.641448197374245, 0.0], [-69.46707340261321, 44.64162139737397, 0.0], [-69.46768086927892, 44.641483730707535, 0.0], [-69.46964840260921, 44.641622997373986, 0.0], [-69.47083946927404, 44.640950330708336, 0.0]], "type": "LineString"}, "id": "434", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322204", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.47649506926524, 44.62327219740246, -69.47070326927428, 44.640950330708336], "geometry": {"coordinates": [[-69.47083946927404, 44.640950330708336, 0.0], [-69.47113520260694, 44.63747979738042, 0.0], [-69.47070326927428, 44.63307639738724, 0.0], [-69.47143406927313, 44.631263797390034, 0.0], [-69.47264986927121, 44.630073130725236, 0.0], [-69.473673002603, 44.627535530729176, 0.0], [-69.47491360260108, 44.625826797398474, 0.0], [-69.47583906926627, 44.623530797402054, 0.0], [-69.47649506926524, 44.62327219740246, 0.0]], "type": "LineString"}, "id": "435", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322228", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.5118446692104, 44.62020553074058, -69.50232780255851, 44.63310919738717], "geometry": {"coordinates": [[-69.50232780255851, 44.63310919738717, 0.0], [-69.50283906922436, 44.6313827307232, 0.0], [-69.50473500255475, 44.62941499739293, 0.0], [-69.50583006921971, 44.62623819739787, 0.0], [-69.50736120255067, 44.62471933073357, 0.0], [-69.50993606921338, 44.623804997401635, 0.0], [-69.51068926921221, 44.623304530735766, 0.0], [-69.51127300254461, 44.62185433073802, 0.0], [-69.51117626921143, 44.621180797405714, 0.0], [-69.51151680254424, 44.62033493074034, 0.0], [-69.5118446692104, 44.62020553074058, 0.0]], "type": "LineString"}, "id": "436", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322254", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.47957926926046, 44.62291039740302, -69.47649506926524, 44.62337753073564], "geometry": {"coordinates": [[-69.47649506926524, 44.62327219740246, 0.0], [-69.47792826926303, 44.62291039740302, 0.0], [-69.47957926926046, 44.62337753073564, 0.0]], "type": "LineString"}, "id": "437", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322238", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.50232780255851, 44.62193259740451, -69.47957926926046, 44.63676833071486], "geometry": {"coordinates": [[-69.47957926926046, 44.62337753073564, 0.0], [-69.48084060259185, 44.624811330733394, 0.0], [-69.48144500259093, 44.627418930729334, 0.0], [-69.48205140259, 44.628196330728144, 0.0], [-69.48307126925505, 44.628403997394514, 0.0], [-69.48411586925346, 44.628093730728324, 0.0], [-69.48504106925202, 44.62579773073185, 0.0], [-69.48654786924965, 44.6247969974001, 0.0], [-69.4867426025827, 44.62431359740083, 0.0], [-69.48849266924663, 44.62270873073669, 0.0], [-69.49046060257695, 44.62193259740451, 0.0], [-69.49148040257535, 44.62214033073752, 0.0], [-69.49349360257224, 44.62490379739995, 0.0], [-69.49720906923312, 44.62526799739936, 0.0], [-69.49769440256568, 44.62588979739837, 0.0], [-69.49742626923279, 44.62701213073001, 0.0], [-69.49766820256576, 44.62823813072811, 0.0], [-69.49747200256604, 44.63055179739115, 0.0], [-69.49598700256837, 44.634695330718046, 0.0], [-69.49710280256659, 44.63649153071526, 0.0], [-69.49846286923116, 44.63676833071486, 0.0], [-69.50028500256167, 44.63635473071548, 0.0], [-69.50232780255851, 44.63310919738717, 0.0]], "type": "LineString"}, "id": "438", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322242", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.52566420252231, 44.60772659742656, -69.5118446692104, 44.62020553074058], "geometry": {"coordinates": [[-69.5118446692104, 44.62020553074058, 0.0], [-69.51314486920836, 44.61857419740977, 0.0], [-69.51523420253847, 44.61703813074547, 0.0], [-69.51562320253788, 44.616071197413646, 0.0], [-69.51545366920482, 44.61512153074847, 0.0], [-69.51625586920358, 44.613585130750835, 0.0], [-69.51975320253143, 44.61220473075298, 0.0], [-69.52074966919656, 44.61018473075609, 0.0], [-69.52118680252926, 44.61001219742303, 0.0], [-69.52133266919566, 44.609649597423584, 0.0], [-69.52482966919024, 44.60826913075908, 0.0], [-69.52566420252231, 44.60772659742656, 0.0]], "type": "LineString"}, "id": "439", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322276", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.52682106918718, 44.60697453076108, -69.52566420252231, 44.60772659742656], "geometry": {"coordinates": [[-69.52566420252231, 44.60772659742656, 0.0], [-69.52682106918718, 44.60697453076108, 0.0]], "type": "LineString"}, "id": "440", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322278", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.52699180252023, 44.603124197433715, -69.52653120252091, 44.60697453076108], "geometry": {"coordinates": [[-69.52682106918718, 44.60697453076108, 0.0], [-69.52699180252023, 44.605178930763884, 0.0], [-69.52653120252091, 44.603124197433715, 0.0]], "type": "LineString"}, "id": "441", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322286", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.53065200251456, 44.601708730769246, -69.52653120252091, 44.603124197433715], "geometry": {"coordinates": [[-69.52653120252091, 44.603124197433715, 0.0], [-69.52725986918648, 44.60222653076846, 0.0], [-69.52857106918441, 44.601708730769246, 0.0], [-69.53065200251456, 44.60231573076834, 0.0]], "type": "LineString"}, "id": "442", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322294", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.55369880247878, 44.58055239746875, -69.53983646916697, 44.599292997439704], "geometry": {"coordinates": [[-69.53983646916697, 44.599292997439704, 0.0], [-69.54255586916275, 44.5971005307764, 0.0], [-69.54432846915995, 44.59314679744921, 0.0], [-69.54428020249338, 44.591437530785186, 0.0], [-69.54476580249263, 44.59022899745372, 0.0], [-69.54838266915368, 44.58808819745707, 0.0], [-69.55039746915054, 44.58353019746414, 0.0], [-69.55280026914681, 44.581665597467065, 0.0], [-69.55357700247896, 44.58064693080195, 0.0], [-69.55369880247878, 44.58055239746875, 0.0]], "type": "LineString"}, "id": "443", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322322", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.55492066914354, 44.579598797470226, -69.55369880247878, 44.58055239746875], "geometry": {"coordinates": [[-69.55369880247878, 44.58055239746875, 0.0], [-69.55491180247691, 44.57961099747024, 0.0], [-69.55492066914354, 44.579598797470226, 0.0]], "type": "LineString"}, "id": "444", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322324", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.55857626913786, 44.57643413080848, -69.55492066914354, 44.579598797470226], "geometry": {"coordinates": [[-69.55492066914354, 44.579598797470226, 0.0], [-69.55573686914227, 44.5784715308053, 0.0], [-69.55731440247314, 44.57774633080646, 0.0], [-69.55857626913786, 44.57643413080848, 0.0]], "type": "LineString"}, "id": "445", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322330", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.56452100246196, 44.570321997484655, -69.55821206913845, 44.57643413080848], "geometry": {"coordinates": [[-69.55857626913786, 44.57643413080848, 0.0], [-69.55821206913845, 44.575052997477314, 0.0], [-69.55864886913776, 44.573965330812314, 0.0], [-69.56080846913437, 44.572704797480924, 0.0], [-69.56316220246407, 44.570960930816966, 0.0], [-69.56452100246196, 44.570321997484655, 0.0]], "type": "LineString"}, "id": "446", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322364", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.61110746905632, 44.53612673087105, -69.56452100246196, 44.570321997484655], "geometry": {"coordinates": [[-69.56452100246196, 44.570321997484655, 0.0], [-69.56546740246051, 44.57025279748473, 0.0], [-69.5674328691241, 44.569475730819306, 0.0], [-69.56903406912164, 44.568232530821206, 0.0], [-69.57048960245271, 44.56643679749067, 0.0], [-69.57121700245159, 44.564623930826826, 0.0], [-69.57242986911638, 44.56343253082866, 0.0], [-69.57441826911327, 44.55939233083495, 0.0], [-69.57531566911189, 44.5585289308363, 0.0], [-69.5763582024436, 44.55638799750625, 0.0], [-69.57951160243869, 44.554937197508536, 0.0], [-69.5827130024337, 44.552450530845704, 0.0], [-69.58402240243169, 44.551017197514625, 0.0], [-69.58540420242957, 44.54894519751781, 0.0], [-69.58819240242525, 44.54611319752223, 0.0], [-69.5916602690865, 44.54433413085832, 0.0], [-69.59396366908294, 44.5427105975275, 0.0], [-69.59675260241193, 44.54170839752908, 0.0], [-69.59881426907538, 44.54160413086254, 0.0], [-69.60041500240624, 44.54127553086306, 0.0], [-69.60264580240278, 44.54029073086457, 0.0], [-69.60584566906448, 44.53780353086847, 0.0], [-69.60955540239206, 44.536334597537405, 0.0], [-69.61110746905632, 44.53612673087105, 0.0]], "type": "LineString"}, "id": "447", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322452", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.6317118023577, 44.53612673087105, -69.61110746905632, 44.53978033086537], "geometry": {"coordinates": [[-69.61110746905632, 44.53612673087105, 0.0], [-69.61152020238899, 44.53647179753716, 0.0], [-69.61266040238723, 44.536833797536644, 0.0], [-69.61326746905297, 44.537610397535445, 0.0], [-69.61443240238452, 44.538369530867556, 0.0], [-69.61545126904957, 44.53857619753393, 0.0], [-69.61782786904587, 44.53814339753461, 0.0], [-69.62020540237552, 44.53862559753384, 0.0], [-69.62095780237439, 44.53903959753319, 0.0], [-69.62396620236967, 44.53978033086537, 0.0], [-69.6265846690323, 44.538743130866976, 0.0], [-69.63044126902633, 44.53874093086699, 0.0], [-69.6317118023577, 44.538570530867275, 0.0]], "type": "LineString"}, "id": "448", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322462", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.53983646916697, 44.599292997439704, -69.53775260250353, 44.6002719307715], "geometry": {"coordinates": [[-69.53775260250353, 44.6002719307715, 0.0], [-69.53983646916697, 44.599292997439704, 0.0]], "type": "LineString"}, "id": "452", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322296", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.53775260250353, 44.6002719307715, -69.53065200251456, 44.60257253076793], "geometry": {"coordinates": [[-69.53065200251456, 44.60231573076834, 0.0], [-69.5315328025132, 44.60257253076793, 0.0], [-69.53308660251076, 44.602365597434925, 0.0], [-69.53417926917575, 44.60193413076894, 0.0], [-69.53502920250776, 44.60119173077004, 0.0], [-69.53699586917134, 44.60041499743795, 0.0], [-69.53737426917075, 44.60035553077137, 0.0], [-69.53775260250353, 44.6002719307715, 0.0]], "type": "LineString"}, "id": "453", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322646", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.63389746902095, 44.538532797534, -69.6317118023577, 44.53877379753362], "geometry": {"coordinates": [[-69.6317118023577, 44.538570530867275, 0.0], [-69.63199340235724, 44.538532797534, 0.0], [-69.63318220235539, 44.53877379753362, 0.0], [-69.63389746902095, 44.538592130867244, 0.0]], "type": "LineString"}, "id": "492", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3330408", "fl_ds_name": "Sebasticook River"}, "type": "Feature"}, {"bbox": [-69.3944754693926, 44.633572997386466, -69.38380900274245, 44.64429619736984], "geometry": {"coordinates": [[-69.38918760273413, 44.633572997386466, 0.0], [-69.38912366940087, 44.6341447307189, 0.0], [-69.38813126940244, 44.635539730716744, 0.0], [-69.38592226940585, 44.637437930713816, 0.0], [-69.38573020273947, 44.63755233071362, 0.0], [-69.38528180274017, 44.637529530713664, 0.0], [-69.38499346940728, 44.637346530713955, 0.0], [-69.38444906940816, 44.63739233071385, 0.0], [-69.38409680274202, 44.63762113071351, 0.0], [-69.38387266940902, 44.6381927307126, 0.0], [-69.38380900274245, 44.638970197378114, 0.0], [-69.38396920274221, 44.63933599737754, 0.0], [-69.3844816694081, 44.639724597376926, 0.0], [-69.38653146940493, 44.64061619737555, 0.0], [-69.38739626940355, 44.64134779737441, 0.0], [-69.38762066940319, 44.64178219737374, 0.0], [-69.38794100273606, 44.64205659737331, 0.0], [-69.3886776694016, 44.642079397373266, 0.0], [-69.38919020273414, 44.642353530706146, 0.0], [-69.38922226940076, 44.64297099737189, 0.0], [-69.3893826027338, 44.64333679737132, 0.0], [-69.38976706939991, 44.643816930703906, 0.0], [-69.3904398027322, 44.64402273070357, 0.0], [-69.3917850027301, 44.643953930703674, 0.0], [-69.39226540272932, 44.64381653070387, 0.0], [-69.39296966939492, 44.643496197371064, 0.0], [-69.39364240272721, 44.64354179737097, 0.0], [-69.39444340272598, 44.644136197370074, 0.0], [-69.3944754693926, 44.64429619736984, 0.0]], "type": "LineString"}, "id": "507", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3321014", "fl_ds_name": "Twentyfive Mile Stream"}, "type": "Feature"}, {"bbox": [-68.06655940478709, 46.61882159430496, -68.0483462048154, 46.65455112758286], "geometry": {"coordinates": [[-68.0483462048154, 46.61882159430496, 0.0], [-68.04854427148172, 46.61943879430402, 0.0], [-68.04933900481382, 46.620490794302384, 0.0], [-68.04957027148015, 46.62110812763473, 0.0], [-68.04980187147976, 46.62161112763397, 0.0], [-68.05016520481257, 46.62273132763221, 0.0], [-68.05086040481149, 46.62376039429728, 0.0], [-68.05129087147748, 46.62433212762977, 0.0], [-68.05145640481055, 46.6246979276292, 0.0], [-68.05165500481024, 46.62504092762862, 0.0], [-68.05215147147612, 46.62584132762743, 0.0], [-68.05221767147606, 46.62606999429369, 0.0], [-68.05294607147488, 46.627144727625364, 0.0], [-68.05480180480538, 46.62883732762276, 0.0], [-68.0550666714716, 46.629203194288834, 0.0], [-68.05509927147153, 46.62961459428823, 0.0], [-68.05576107147056, 46.630940727619475, 0.0], [-68.0565234048027, 46.63167259428502, 0.0], [-68.05718527146831, 46.63299872761627, 0.0], [-68.05741680480128, 46.633615994282025, 0.0], [-68.05764867146758, 46.63395899428144, 0.0], [-68.05814587146682, 46.63437072761417, 0.0], [-68.05910760479867, 46.63480559428018, 0.0], [-68.0596374714645, 46.635674394278794, 0.0], [-68.06043300479661, 46.63642919427764, 0.0], [-68.06139447146177, 46.63709259427662, 0.0], [-68.06305247145923, 46.63805359427511, 0.0], [-68.06328440479217, 46.63846512760779, 0.0], [-68.06364800479162, 46.639676727605945, 0.0], [-68.06404567145768, 46.640065527605316, 0.0], [-68.06407740479096, 46.641345527603335, 0.0], [-68.0639764047911, 46.64267119426796, 0.0], [-68.06414140479086, 46.64349419426668, 0.0], [-68.06424100479069, 46.643539994266575, 0.0], [-68.06437300479053, 46.644111394265735, 0.0], [-68.0652674714558, 46.645528994263486, 0.0], [-68.0661290047878, 46.646740927594976, 0.0], [-68.06649327145385, 46.64744972759388, 0.0], [-68.06655940478709, 46.6477469275934, 0.0], [-68.06645847145393, 46.64898112759147, 0.0], [-68.06632480478748, 46.649735194257005, 0.0], [-68.0662900714542, 46.65108379425487, 0.0], [-68.0660906047878, 46.65138092758775, 0.0], [-68.06532680478904, 46.65174612758722, 0.0], [-68.06267080479313, 46.65220179425313, 0.0], [-68.06227227146042, 46.65238452758621, 0.0], [-68.06187360479436, 46.65272699425236, 0.0], [-68.06184020479441, 46.65286419425212, 0.0], [-68.06130880479526, 46.65313819425171, 0.0], [-68.06067807146292, 46.653183527584986, 0.0], [-68.06047860479651, 46.6534121275846, 0.0], [-68.06037867146335, 46.65364052758423, 0.0], [-68.05938247146491, 46.65395999425044, 0.0], [-68.05868540479935, 46.65400532758366, 0.0], [-68.05832007146654, 46.65416512758344, 0.0], [-68.05782240480067, 46.65398192758374, 0.0], [-68.0575568048011, 46.6539817275837, 0.0], [-68.0570252048019, 46.65434712758315, 0.0], [-68.05589687147034, 46.65411792758351, 0.0], [-68.05423667147289, 46.65455112758286, 0.0]], "type": "LineString"}, "id": "509", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/804987", "fl_ds_name": "Hughes Brook"}, "type": "Feature"}, {"bbox": [-68.05734927146807, 46.65455112758286, -68.05163240481028, 46.66572652756548], "geometry": {"coordinates": [[-68.05423667147289, 46.65455112758286, 0.0], [-68.05423520480622, 46.65555679424796, 0.0], [-68.05453327147245, 46.65612839424705, 0.0], [-68.0541010714731, 46.65663099424626, 0.0], [-68.05403387147322, 46.65717952757876, 0.0], [-68.05416627147298, 46.657476727578285, 0.0], [-68.05486267147194, 46.65811719424397, 0.0], [-68.05552627147091, 46.658414727576826, 0.0], [-68.05585767147039, 46.65882639424285, 0.0], [-68.05589047147032, 46.65903212757587, 0.0], [-68.05618920480322, 46.65919219424228, 0.0], [-68.05632127146964, 46.659626594241615, 0.0], [-68.0566196714692, 46.66001539424104, 0.0], [-68.05734927146807, 46.660632994240075, 0.0], [-68.05721607146825, 46.660815727573095, 0.0], [-68.05641887146953, 46.66120379423916, 0.0], [-68.0562524048031, 46.661592327571896, 0.0], [-68.05558800480412, 46.6618661275715, 0.0], [-68.05558767147079, 46.662186127570976, 0.0], [-68.05568700480399, 46.662391927570695, 0.0], [-68.05555400480421, 46.662551927570405, 0.0], [-68.05522180480472, 46.66264319423692, 0.0], [-68.05429220480613, 46.66275679423677, 0.0], [-68.05362760480716, 46.66312212756952, 0.0], [-68.05362680480715, 46.66371639423528, 0.0], [-68.0529620714749, 46.66426452756775, 0.0], [-68.05206560480963, 46.664309727567684, 0.0], [-68.05193260480979, 46.66442379423415, 0.0], [-68.05199807147636, 46.665109594233115, 0.0], [-68.05163240481028, 46.665406527566006, 0.0], [-68.05169847147681, 46.66572652756548, 0.0]], "type": "LineString"}, "id": "510", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/804947", "fl_ds_name": "Knights Brook"}, "type": "Feature"}, {"bbox": [-68.05341480480752, 46.67317912755391, -68.05337987147425, 46.673603194219936], "geometry": {"coordinates": [[-68.05341480480752, 46.67317912755391, 0.0], [-68.05337987147425, 46.67321072755385, 0.0], [-68.05338540480756, 46.673341527553646, 0.0], [-68.05339087147422, 46.67347239422014, 0.0], [-68.05339647147423, 46.673603194219936, 0.0]], "type": "LineString"}, "id": "554", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805187", "fl_ds_name": "Arnold Brook"}, "type": "Feature"}, {"bbox": [-68.05714047146841, 46.66572652756548, -68.05169847147681, 46.67317912755391], "geometry": {"coordinates": [[-68.05169847147681, 46.66572652756548, 0.0], [-68.05305960480808, 46.6657959275654, 0.0], [-68.05329187147436, 46.66588759423189, 0.0], [-68.05332427147431, 46.6665047275643, 0.0], [-68.05382240480685, 46.666390727564476, 0.0], [-68.05471927147215, 46.66604852756501, 0.0], [-68.05495160480513, 46.66614012756486, 0.0], [-68.05525040480467, 46.66614032756485, 0.0], [-68.05564900480402, 46.66602619423168, 0.0], [-68.05598087147018, 46.66604932756502, 0.0], [-68.05611340480334, 46.666323594231244, 0.0], [-68.05634547146963, 46.666552327564204, 0.0], [-68.05634500480295, 46.66694092756359, 0.0], [-68.05617887146991, 46.66707792756341, 0.0], [-68.05617840480323, 46.66742079422954, 0.0], [-68.05654327146931, 46.667603927562595, 0.0], [-68.05710760480179, 46.667764194228994, 0.0], [-68.05714047146841, 46.668015727561965, 0.0], [-68.05694107146871, 46.66815272756173, 0.0], [-68.05667480480247, 46.668609727561034, 0.0], [-68.05604380480344, 46.66879212756072, 0.0], [-68.0560434048034, 46.669112127560254, 0.0], [-68.05634200480296, 46.66938659422647, 0.0], [-68.05634147146964, 46.66972939422595, 0.0], [-68.0561752714699, 46.66986639422572, 0.0], [-68.05614180480325, 46.67011792755869, 0.0], [-68.05657307146924, 46.670392394224905, 0.0], [-68.05634000480296, 46.670780927557644, 0.0], [-68.05647267146941, 46.67091799422411, 0.0], [-68.05650560480274, 46.671215194223635, 0.0], [-68.05580727147048, 46.671969127555826, 0.0], [-68.05550820480426, 46.67210599422225, 0.0], [-68.05471120480547, 46.67219699422213, 0.0], [-68.0545446714724, 46.67251679422162, 0.0], [-68.05427887147283, 46.67265379422139, 0.0], [-68.05358147147393, 46.67274479422127, 0.0], [-68.05341480480752, 46.67317912755391, 0.0]], "type": "LineString"}, "id": "556", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803965", "fl_ds_name": "Arnold Brook"}, "type": "Feature"}, {"bbox": [-68.05546987147096, 46.62098212763493, -68.03075740484269, 46.65455112758286], "geometry": {"coordinates": [[-68.03368020483816, 46.62098212763493, 0.0], [-68.03324867150548, 46.62111892763471, 0.0], [-68.0326508715064, 46.62155272763408, 0.0], [-68.03198687150746, 46.62180359430033, 0.0], [-68.03135607150841, 46.62219159429975, 0.0], [-68.03089087150914, 46.622579794299156, 0.0], [-68.03075740484269, 46.62296819429855, 0.0], [-68.03088987150915, 46.62315119429826, 0.0], [-68.03098847150898, 46.62363132763085, 0.0], [-68.03194807150749, 46.625049194295286, 0.0], [-68.03241160484009, 46.62568959429433, 0.0], [-68.0327758715062, 46.625987127627184, 0.0], [-68.03287507150606, 46.6261927942935, 0.0], [-68.03373640483807, 46.626947794292334, 0.0], [-68.03413360483745, 46.627542394291424, 0.0], [-68.03456287150345, 46.62870852762296, 0.0], [-68.03482727150305, 46.629257194288755, 0.0], [-68.03628547150078, 46.63028699428719, 0.0], [-68.03737947149904, 46.630836527619635, 0.0], [-68.03989847149518, 46.632552727616996, 0.0], [-68.04112407149324, 46.63392499428153, 0.0], [-68.04215040482501, 46.63543432761253, 0.0], [-68.04291247149047, 46.63614352761141, 0.0], [-68.04556440481969, 46.63795112760863, 0.0], [-68.04635980481845, 46.63872872760737, 0.0], [-68.04775040481633, 46.64090119427067, 0.0], [-68.0478826048161, 46.6412441276035, 0.0], [-68.0482468714822, 46.64176999426934, 0.0], [-68.0482136048156, 46.64186152760254, 0.0], [-68.04874360481477, 46.64257039426809, 0.0], [-68.04904107148099, 46.64332492760025, 0.0], [-68.04970380481325, 46.644102527599046, 0.0], [-68.05189200480987, 46.64565819426332, 0.0], [-68.05215707147613, 46.64597832759614, 0.0], [-68.05219007147605, 46.646161194262504, 0.0], [-68.05232267147585, 46.646229927595755, 0.0], [-68.05251907147556, 46.64830999425919, 0.0], [-68.05285000480836, 46.64906452759135, 0.0], [-68.05367900480712, 46.649613594257175, 0.0], [-68.05484007147197, 46.650094327589784, 0.0], [-68.05523800480466, 46.65036892758934, 0.0], [-68.05546987147096, 46.650711927588816, 0.0], [-68.0554692048043, 46.65121472758801, 0.0], [-68.0550036714717, 46.65187732758699, 0.0], [-68.05490367147183, 46.65219732758652, 0.0], [-68.05490280480518, 46.652860127585484, 0.0], [-68.05420447147293, 46.65375112758409, 0.0], [-68.05413707147306, 46.65445959424966, 0.0], [-68.05423667147289, 46.65455112758286, 0.0]], "type": "LineString"}, "id": "596", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/804155", "fl_ds_name": "Knights Brook"}, "type": "Feature"}, {"bbox": [-69.72064460221964, 44.79777353046495, -69.70307306891357, 44.80123573045955], "geometry": {"coordinates": [[-69.72064460221964, 44.80114379712637, 0.0], [-69.72013080222041, 44.80123573045955, 0.0], [-69.71900646888884, 44.80103093045989, 0.0], [-69.71826706888999, 44.800574197127276, 0.0], [-69.71550326889428, 44.79936473046246, 0.0], [-69.71360686889722, 44.7982685971308, 0.0], [-69.71254660223218, 44.79794953046468, 0.0], [-69.70994740223625, 44.799277530462575, 0.0], [-69.70898406890439, 44.799369797129145, 0.0], [-69.70737780224022, 44.798867930463246, 0.0], [-69.70708846890733, 44.79868519713017, 0.0], [-69.70589986890917, 44.79832019713075, 0.0], [-69.70307306891357, 44.79777353046495, 0.0]], "type": "LineString"}, "id": "606", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3320524", "fl_ds_name": "Cold Brook"}, "type": "Feature"}, {"bbox": [-69.70307306891357, 44.79318453047205, -69.68447860227576, 44.79833319713072], "geometry": {"coordinates": [[-69.70307306891357, 44.79777353046495, 0.0], [-69.70153126891597, 44.797500197132024, 0.0], [-69.69982806891863, 44.7966781971333, 0.0], [-69.69941060225261, 44.79663273046668, 0.0], [-69.69864060225376, 44.79711339713265, 0.0], [-69.69835220225423, 44.79757093046527, 0.0], [-69.69796706892151, 44.797845530464826, 0.0], [-69.69764600225534, 44.79789139713142, 0.0], [-69.6973890022557, 44.7978459304648, 0.0], [-69.69700340225631, 44.79757179713192, 0.0], [-69.6955238689253, 44.795697797134835, 0.0], [-69.69388366892781, 44.79370959713788, 0.0], [-69.69340160226193, 44.79332113047184, 0.0], [-69.69266286892974, 44.79318453047205, 0.0], [-69.69170026893124, 44.79371093047126, 0.0], [-69.69092986893241, 44.79398573047081, 0.0], [-69.68954940226791, 44.79419233047048, 0.0], [-69.68861860226934, 44.79460439713654, 0.0], [-69.68784866893719, 44.795176397135606, 0.0], [-69.68743166893785, 44.795656930468226, 0.0], [-69.68695140227192, 44.79693753046621, 0.0], [-69.68631026893962, 44.79787539713146, 0.0], [-69.68579680227373, 44.798195797130916, 0.0], [-69.6852830689412, 44.79833319713072, 0.0], [-69.68489746894181, 44.79803619713118, 0.0], [-69.68486420227515, 44.797053130466054, 0.0], [-69.68476766894202, 44.79675593046653, 0.0], [-69.68447860227576, 44.79664173046666, 0.0]], "type": "LineString"}, "id": "607", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3320528", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.67565886895613, 44.76614199718068, -69.67492540229063, 44.76798953051116], "geometry": {"coordinates": [[-69.67565886895613, 44.76798953051116, 0.0], [-69.6754132689565, 44.766763397179716, 0.0], [-69.67492540229063, 44.76614199718068, 0.0]], "type": "LineString"}, "id": "612", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322054", "fl_ds_name": "Wesserunsett Stream"}, "type": "Feature"}, {"bbox": [-69.67626880228852, 44.76798953051116, -69.67565886895613, 44.76936819717571], "geometry": {"coordinates": [[-69.67610460228877, 44.76936819717571, 0.0], [-69.67609606895547, 44.76925399717584, 0.0], [-69.67613920228871, 44.76913199717603, 0.0], [-69.67618240228865, 44.76901013050957, 0.0], [-69.67622560228858, 44.768888130509765, 0.0], [-69.67626880228852, 44.7687661971766, 0.0], [-69.67626260228855, 44.76875839717661, 0.0], [-69.67617640228866, 44.76864853051012, 0.0], [-69.67609006895543, 44.76853873051033, 0.0], [-69.6760038689556, 44.76842879717714, 0.0], [-69.67591760228908, 44.76831899717729, 0.0], [-69.67583140228919, 44.7682091971775, 0.0], [-69.67574506895602, 44.768099330511006, 0.0], [-69.67565886895613, 44.76798953051116, 0.0]], "type": "LineString"}, "id": "613", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3322044", "fl_ds_name": "Wesserunsett Stream"}, "type": "Feature"}, {"bbox": [-69.69089080226581, 44.76936819717571, -69.67610460228877, 44.79664173046666], "geometry": {"coordinates": [[-69.68447860227576, 44.79664173046666, 0.0], [-69.68405986894311, 44.79556733046837, 0.0], [-69.6841230022763, 44.79453833046995, 0.0], [-69.68559820227404, 44.79268553047285, 0.0], [-69.68627180227298, 44.792067797140476, 0.0], [-69.68771560227077, 44.79099233047543, 0.0], [-69.68899960226878, 44.790740130475854, 0.0], [-69.69005800226711, 44.789733530477406, 0.0], [-69.6908272689326, 44.78849833047934, 0.0], [-69.69089080226581, 44.78792659714691, 0.0], [-69.69037600226659, 44.78698953048166, 0.0], [-69.69037506893329, 44.786120597149704, 0.0], [-69.69085480226585, 44.784679930485254, 0.0], [-69.69085406893254, 44.78397113048635, 0.0], [-69.69046846893315, 44.783719797153424, 0.0], [-69.69008320226709, 44.78371999715341, 0.0], [-69.6885746689361, 44.78408679715284, 0.0], [-69.68696960227192, 44.784156197152754, 0.0], [-69.68619886893975, 44.783973730486366, 0.0], [-69.68504240227492, 44.78326553048743, 0.0], [-69.68398240227651, 44.78278599715486, 0.0], [-69.68343606894405, 44.78235179715551, 0.0], [-69.68314646894453, 44.781643197156654, 0.0], [-69.68214906894605, 44.779494397159965, 0.0], [-69.68208426894614, 44.77905999716063, 0.0], [-69.68195580227967, 44.778922797160874, 0.0], [-69.68182540227991, 44.77691093049731, 0.0], [-69.68114920228095, 44.774899130500444, 0.0], [-69.68082760228145, 44.774259130501434, 0.0], [-69.6789642022843, 44.77245373050425, 0.0], [-69.6773254022869, 44.77064813050703, 0.0], [-69.67623320228859, 44.76961973050862, 0.0], [-69.67610460228877, 44.76936819717571, 0.0]], "type": "LineString"}, "id": "688", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3320578", "fl_ds_name": "Wesserunsett Stream"}, "type": "Feature"}, {"bbox": [-69.7477826021775, 44.78181533048968, -69.71902860222212, 44.80114379712637], "geometry": {"coordinates": [[-69.7477826021775, 44.786735730482064, 0.0], [-69.747236668845, 44.78666773048218, 0.0], [-69.74633620217975, 44.78598273048323, 0.0], [-69.74575780218066, 44.78573179715028, 0.0], [-69.74495486884854, 44.785641197150426, 0.0], [-69.7425466688523, 44.78557513048389, 0.0], [-69.74187166885338, 44.78518713048447, 0.0], [-69.74106766885461, 44.78447919715222, 0.0], [-69.73897846885785, 44.783315197154025, 0.0], [-69.737789602193, 44.78283619715478, 0.0], [-69.7370188688609, 44.782722797154975, 0.0], [-69.73541386886336, 44.78281573048815, 0.0], [-69.73457886886467, 44.782656530488396, 0.0], [-69.73271740220088, 44.78290979715467, 0.0], [-69.73188266886888, 44.78295639715458, 0.0], [-69.73133666886969, 44.782796797154845, 0.0], [-69.73046906887106, 44.78238613048882, 0.0], [-69.7299224688719, 44.78197513048946, 0.0], [-69.72950486887254, 44.78181533048968, 0.0], [-69.72838126887427, 44.78190779715624, 0.0], [-69.7270014022098, 44.78220633048909, 0.0], [-69.725365068879, 44.782779397154854, 0.0], [-69.72427406888067, 44.78303193048782, 0.0], [-69.72408166888096, 44.78319213048758, 0.0], [-69.72392186888123, 44.78358093048695, 0.0], [-69.7239234688812, 44.78456413048542, 0.0], [-69.72360320221503, 44.78502173048474, 0.0], [-69.72270526888309, 44.78561699715044, 0.0], [-69.72254566888336, 44.78616593048292, 0.0], [-69.72254646888337, 44.78660033048226, 0.0], [-69.72209800221736, 44.78724093048129, 0.0], [-69.72084726888596, 44.7881107971466, 0.0], [-69.72043100221998, 44.78870559714568, 0.0], [-69.72004686888721, 44.78946059714451, 0.0], [-69.72007986888718, 44.78998639714371, 0.0], [-69.72046626888658, 44.790626330476016, 0.0], [-69.72114160221884, 44.79128879714165, 0.0], [-69.72111046888557, 44.791860397140795, 0.0], [-69.72075800221944, 44.792295197140106, 0.0], [-69.71950746888808, 44.79330219713853, 0.0], [-69.71915566888862, 44.79412559713728, 0.0], [-69.71902860222212, 44.79499459713588, 0.0], [-69.71903040222213, 44.796069197134216, 0.0], [-69.71954540222134, 44.79684619713305, 0.0], [-69.7199002022208, 44.797806197131536, 0.0], [-69.7199680022207, 44.79993259712825, 0.0], [-69.72016126888707, 44.80029833046103, 0.0], [-69.72057966888639, 44.8008007971269, 0.0], [-69.72064460221964, 44.80114379712637, 0.0]], "type": "LineString"}, "id": "691", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/3320548", "fl_ds_name": "Cold Brook"}, "type": "Feature"}, {"bbox": [-68.57707560399467, 45.62662792917837, -68.54731807070755, 45.655312595800524], "geometry": {"coordinates": [[-68.57707560399467, 45.655312595800524, 0.0], [-68.57629387066254, 45.65446639580182, 0.0], [-68.57453460399864, 45.65311692913724, 0.0], [-68.57443707066545, 45.65272812913787, 0.0], [-68.57430687066562, 45.65252232913821, 0.0], [-68.57420940399913, 45.65224799580528, 0.0], [-68.57404647066608, 45.652064995805574, 0.0], [-68.57404667066606, 45.65197352913901, 0.0], [-68.57394880399954, 45.65192772913912, 0.0], [-68.57394900399953, 45.65183632913926, 0.0], [-68.57375360399982, 45.65153899580639, 0.0], [-68.57277647066803, 45.650669795807744, 0.0], [-68.5712456040037, 45.64950319580953, 0.0], [-68.57049660400492, 45.648748395810685, 0.0], [-68.57049660400492, 45.64865692914418, 0.0], [-68.57036627067174, 45.64856539581098, 0.0], [-68.57030140400519, 45.64838252914461, 0.0], [-68.56978020400601, 45.64787919581204, 0.0], [-68.56909620400705, 45.64730739581296, 0.0], [-68.56665340401088, 45.645522995815725, 0.0], [-68.56590447067867, 45.64481392915013, 0.0], [-68.56525300401302, 45.64442499581742, 0.0], [-68.56355840401568, 45.64417259581779, 0.0], [-68.5626460040171, 45.643851995818295, 0.0], [-68.56192980401818, 45.64323452915261, 0.0], [-68.56186567068494, 45.642159929154275, 0.0], [-68.56180047068506, 45.642091195821024, 0.0], [-68.56180067068505, 45.642022595821174, 0.0], [-68.56105127068622, 45.641702195821665, 0.0], [-68.5608886040198, 45.64147352915535, 0.0], [-68.56075867068665, 45.64110752915593, 0.0], [-68.56059580402024, 45.64099319582277, 0.0], [-68.55994420402129, 45.64087852915628, 0.0], [-68.55981400402146, 45.64071839582317, 0.0], [-68.5597818040215, 45.64035259582374, 0.0], [-68.55984720402142, 45.64016972915738, 0.0], [-68.55975000402157, 45.63968952915809, 0.0], [-68.55955460402186, 45.639552329158334, 0.0], [-68.55945720402201, 45.63930079582536, 0.0], [-68.55922927068906, 45.63907199582576, 0.0], [-68.55854500402347, 45.63895732915927, 0.0], [-68.55782800402454, 45.63893399582594, 0.0], [-68.55733960402529, 45.63856799582652, 0.0], [-68.55678580402616, 45.63836192916017, 0.0], [-68.556036270694, 45.638292929160286, 0.0], [-68.55577580402775, 45.638155529160485, 0.0], [-68.5556784040279, 45.63783552916101, 0.0], [-68.55554820402807, 45.6376753958279, 0.0], [-68.5548312706959, 45.63753779582811, 0.0], [-68.55440800402988, 45.637285995828506, 0.0], [-68.55427787069675, 45.63705732916219, 0.0], [-68.55349627069796, 45.636576729162925, 0.0], [-68.55291000403219, 45.63639352916323, 0.0], [-68.55248620403285, 45.63637032916324, 0.0], [-68.55170387070075, 45.63657572916293, 0.0], [-68.55147600403444, 45.63641552916317, 0.0], [-68.55147620403443, 45.636232595830165, 0.0], [-68.55131367070135, 45.635912395830644, 0.0], [-68.55128167070137, 45.635455129164654, 0.0], [-68.55131440403466, 45.63534092916484, 0.0], [-68.55206407070017, 45.63527279583161, 0.0], [-68.55248787069951, 45.63511299583189, 0.0], [-68.55255360403277, 45.63474719583246, 0.0], [-68.55239100403298, 45.63454139583274, 0.0], [-68.55186967070046, 45.63442672916625, 0.0], [-68.5514138040345, 45.63417492916665, 0.0], [-68.55141407070118, 45.63390072916707, 0.0], [-68.55128420403469, 45.63358039583426, 0.0], [-68.55128460403472, 45.63323752916813, 0.0], [-68.55161080403423, 45.6329861958352, 0.0], [-68.55161127070085, 45.632689129168966, 0.0], [-68.55112307070164, 45.6322085958364, 0.0], [-68.55050387070258, 45.63216252916982, 0.0], [-68.5501782707031, 45.632047995836615, 0.0], [-68.54998280403674, 45.63186499583691, 0.0], [-68.54998360403675, 45.63129352917116, 0.0], [-68.54975587070373, 45.63101899583825, 0.0], [-68.54969107070383, 45.63074459583868, 0.0], [-68.54995227070344, 45.63037899583924, 0.0], [-68.55018080403642, 45.63003619583975, 0.0], [-68.55021467070304, 45.62912179584117, 0.0], [-68.55011687070322, 45.629075929174576, 0.0], [-68.54998727070341, 45.628572929175334, 0.0], [-68.54966200403726, 45.62822972917587, 0.0], [-68.54914147070468, 45.62752072917698, 0.0], [-68.54881607070519, 45.62720039584417, 0.0], [-68.54862080403888, 45.62710879584432, 0.0], [-68.54793640403989, 45.62708552917769, 0.0], [-68.54774107070688, 45.6270167291778, 0.0], [-68.5473830040408, 45.62676512917818, 0.0], [-68.54731807070755, 45.62662792917837, 0.0]], "type": "LineString"}, "id": "915", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1713202", "fl_ds_name": "Hathaway Brook"}, "type": "Feature"}, {"bbox": [-68.54731807070755, 45.625885995846204, -68.54301180404758, 45.62662792917837], "geometry": {"coordinates": [[-68.54731807070755, 45.62662792917837, 0.0], [-68.5471918707077, 45.62649932917856, 0.0], [-68.54706627070794, 45.62641572917869, 0.0], [-68.54694067070812, 45.62633212917882, 0.0], [-68.54681500404166, 45.62624859584565, 0.0], [-68.54668940404184, 45.626164995845784, 0.0], [-68.54656380404202, 45.626081395845915, 0.0], [-68.54651307070878, 45.6261007291792, 0.0], [-68.54636100404235, 45.626158595845766, 0.0], [-68.54620880404258, 45.62621652917903, 0.0], [-68.5460566707095, 45.6262743958456, 0.0], [-68.54590447070973, 45.62633219584552, 0.0], [-68.54575227070995, 45.62639012917873, 0.0], [-68.54560020404352, 45.62644799584535, 0.0], [-68.54544800404375, 45.62650592917856, 0.0], [-68.54534060404393, 45.6264785958453, 0.0], [-68.54517787071086, 45.62643719584537, 0.0], [-68.54501520404443, 45.62639579584538, 0.0], [-68.54485247071136, 45.62635439584545, 0.0], [-68.54468980404494, 45.626312995845524, 0.0], [-68.54452707071187, 45.626271595845594, 0.0], [-68.54436440404544, 45.626230195845665, 0.0], [-68.54420167071237, 45.626188795845735, 0.0], [-68.54403900404594, 45.626147395845805, 0.0], [-68.54387627071287, 45.626105995845876, 0.0], [-68.54371360404645, 45.626064595845946, 0.0], [-68.54355087071337, 45.62602319584596, 0.0], [-68.54338820404695, 45.62598179584603, 0.0], [-68.54322547071388, 45.6259403958461, 0.0], [-68.54306280404745, 45.62589899584617, 0.0], [-68.54301180404758, 45.625885995846204, 0.0]], "type": "LineString"}, "id": "916", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1713472", "fl_ds_name": "Hathaway Brook"}, "type": "Feature"}, {"bbox": [-68.54301180404758, 45.62254639585137, -68.53907380405366, 45.625885995846204], "geometry": {"coordinates": [[-68.54301180404758, 45.625885995846204, 0.0], [-68.54290007071438, 45.62585759584624, 0.0], [-68.54273740404795, 45.62581619584631, 0.0], [-68.54257467071488, 45.62577479584638, 0.0], [-68.54253640404829, 45.625725129179784, 0.0], [-68.54245387071506, 45.62561819584664, 0.0], [-68.54237147071524, 45.625511395846786, 0.0], [-68.54228907071536, 45.62540459584693, 0.0], [-68.54220660404883, 45.62529772918043, 0.0], [-68.54212420404895, 45.62519092918063, 0.0], [-68.54204180404906, 45.62508412918078, 0.0], [-68.54195940404918, 45.624977195847634, 0.0], [-68.54187687071601, 45.62487039584778, 0.0], [-68.54179447071613, 45.62476352918128, 0.0], [-68.54171207071624, 45.624656729181424, 0.0], [-68.54162967071636, 45.624549929181626, 0.0], [-68.54154720404983, 45.624442995848426, 0.0], [-68.54146480404995, 45.62433619584863, 0.0], [-68.54138240405007, 45.62422939584877, 0.0], [-68.5412998707169, 45.62412252918227, 0.0], [-68.54121747071702, 45.62401572918242, 0.0], [-68.54113507071713, 45.623908795849275, 0.0], [-68.54105267071725, 45.62380199584942, 0.0], [-68.54097020405072, 45.62369519584962, 0.0], [-68.54088780405084, 45.62358832918312, 0.0], [-68.54080540405096, 45.623481529183266, 0.0], [-68.54072300405113, 45.62337472918341, 0.0], [-68.54064060405125, 45.62326779585027, 0.0], [-68.54052087071807, 45.623212729183706, 0.0], [-68.54037620405165, 45.623146129183795, 0.0], [-68.54023147071854, 45.62307952918388, 0.0], [-68.54008680405207, 45.623012795850684, 0.0], [-68.5399420040523, 45.62294619585077, 0.0], [-68.53979727071919, 45.62287959585086, 0.0], [-68.53965260405278, 45.622812929184306, 0.0], [-68.53950787071966, 45.622746329184395, 0.0], [-68.53936320405325, 45.62267972918448, 0.0], [-68.53921847072013, 45.62261312918463, 0.0], [-68.53907380405366, 45.62254639585137, 0.0]], "type": "LineString"}, "id": "917", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1715120", "fl_ds_name": "Hathaway Brook"}, "type": "Feature"}, {"bbox": [-68.53928760405336, 45.609492329204954, -68.5342904040611, 45.62254639585137], "geometry": {"coordinates": [[-68.53907380405366, 45.62254639585137, 0.0], [-68.53846940405458, 45.62176299585258, 0.0], [-68.53928760405336, 45.61983052918896, 0.0], [-68.53813000405512, 45.61814292919155, 0.0], [-68.53839967072139, 45.61662172919392, 0.0], [-68.53737700405628, 45.61417352919773, 0.0], [-68.53747920405613, 45.61393192919809, 0.0], [-68.5352016040597, 45.61135312920209, 0.0], [-68.5342904040611, 45.609492329204954, 0.0]], "type": "LineString"}, "id": "918", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1713474", "fl_ds_name": "East Branch Penobscot River"}, "type": "Feature"}, {"bbox": [-68.5342904040611, 45.60820639587365, -68.53335187072923, 45.609492329204954], "geometry": {"coordinates": [[-68.5342904040611, 45.609492329204954, 0.0], [-68.5341976707279, 45.60930319587192, 0.0], [-68.53335187072923, 45.60820639587365, 0.0]], "type": "LineString"}, "id": "919", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1715122", "fl_ds_name": "East Branch Penobscot River"}, "type": "Feature"}, {"bbox": [-68.53335187072923, 45.591058729233566, -68.47337380415564, 45.60820639587365], "geometry": {"coordinates": [[-68.53335187072923, 45.60820639587365, 0.0], [-68.53300787072976, 45.608134529207064, 0.0], [-68.531557870732, 45.60625432921, 0.0], [-68.5315208040654, 45.605457795877896, 0.0], [-68.53089807073303, 45.604276129213076, 0.0], [-68.53005240406765, 45.603179329214754, 0.0], [-68.52905320406921, 45.602444795882604, 0.0], [-68.52566527074117, 45.601605729217226, 0.0], [-68.52372267074418, 45.60133132921766, 0.0], [-68.52057207074904, 45.599489995887154, 0.0], [-68.51849040408564, 45.598660595888475, 0.0], [-68.51761220408696, 45.59808272922271, 0.0], [-68.51518660409073, 45.59718139589074, 0.0], [-68.51191987076248, 45.59649859589183, 0.0], [-68.5105628707646, 45.596609329224975, 0.0], [-68.50655727077083, 45.59590339589272, 0.0], [-68.49904387078249, 45.59420092922869, 0.0], [-68.49785880411764, 45.59434739589517, 0.0], [-68.49263180412578, 45.59299119589724, 0.0], [-68.49036407079592, 45.5930425958972, 0.0], [-68.48830487079914, 45.59392652922912, 0.0], [-68.48677587080152, 45.59400099589567, 0.0], [-68.4835096708066, 45.59331752923009, 0.0], [-68.48062020414437, 45.59218692923184, 0.0], [-68.47996560414543, 45.59152412923288, 0.0], [-68.47824660414807, 45.591164329233436, 0.0], [-68.47585820415179, 45.591058729233566, 0.0], [-68.47501700415307, 45.59127699589993, 0.0], [-68.47337380415564, 45.591097729233525, 0.0]], "type": "LineString"}, "id": "920", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1731400", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.65322987054316, 45.22230139647263, -68.64803500388456, 45.23874612978045], "geometry": {"coordinates": [[-68.65322987054316, 45.23874612978045, 0.0], [-68.65154360387908, 45.23655612978388, 0.0], [-68.65090307054675, 45.23497819645297, 0.0], [-68.65104680387986, 45.22975699646105, 0.0], [-68.65148327054584, 45.22827292979673, 0.0], [-68.65121647054627, 45.226247929799854, 0.0], [-68.64987267054835, 45.224129396469834, 0.0], [-68.64803500388456, 45.22230139647263, 0.0]], "type": "LineString"}, "id": "921", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733994", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.45207467085538, 45.57039859593232, -68.40872467092265, 45.58844432923763], "geometry": {"coordinates": [[-68.45207467085538, 45.58844432923763, 0.0], [-68.45159220418947, 45.587817329238646, 0.0], [-68.44978607085892, 45.58678139590688, 0.0], [-68.44813380419481, 45.585383329242404, 0.0], [-68.44486827086655, 45.58469899591012, 0.0], [-68.44278787086978, 45.58386852924474, 0.0], [-68.43991760420755, 45.58313532924586, 0.0], [-68.43885047087588, 45.58212272924749, 0.0], [-68.43570320421412, 45.58027939591699, 0.0], [-68.43463620421579, 45.57926679591856, 0.0], [-68.4329176708851, 45.57890639591915, 0.0], [-68.4307684042218, 45.577798329254165, 0.0], [-68.42465147089791, 45.57677819592243, 0.0], [-68.4242386042319, 45.57642859592295, 0.0], [-68.42320760423354, 45.576212329256634, 0.0], [-68.42164327090262, 45.57548959592441, 0.0], [-68.41803487090823, 45.57473252925894, 0.0], [-68.41593727091146, 45.5735033959275, 0.0], [-68.41196767091765, 45.572275795929386, 0.0], [-68.41045487091998, 45.57143232926404, 0.0], [-68.40980107092099, 45.5707691292651, 0.0], [-68.40872467092265, 45.57039859593232, 0.0]], "type": "LineString"}, "id": "922", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1731402", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.47337380415564, 45.590847595900584, -68.46172767084039, 45.59504452922738], "geometry": {"coordinates": [[-68.47337380415564, 45.591097729233525, 0.0], [-68.47108147082588, 45.590847595900584, 0.0], [-68.46795767083074, 45.592034129232104, 0.0], [-68.46550627083451, 45.594281795895256, 0.0], [-68.46349800417096, 45.59504452922738, 0.0], [-68.46172767084039, 45.59480532922777, 0.0]], "type": "LineString"}, "id": "923", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1731398", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.46172767084039, 45.58839559590439, -68.45246967085478, 45.59480532922777], "geometry": {"coordinates": [[-68.46172767084039, 45.59480532922777, 0.0], [-68.45942367084399, 45.594059729228945, 0.0], [-68.45854607084533, 45.59348152922985, 0.0], [-68.45536147085028, 45.59084219590062, 0.0], [-68.45391407085253, 45.588961195903494, 0.0], [-68.45246967085478, 45.58839559590439, 0.0]], "type": "LineString"}, "id": "924", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1731396", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.45246967085478, 45.58839559590439, -68.45207467085538, 45.58844432923763], "geometry": {"coordinates": [[-68.45246967085478, 45.58839559590439, 0.0], [-68.45207467085538, 45.58844432923763, 0.0]], "type": "LineString"}, "id": "925", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1731394", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.40872467092265, 45.55572419595512, -68.38887927095345, 45.57039859593232], "geometry": {"coordinates": [[-68.40872467092265, 45.57039859593232, 0.0], [-68.407842070924, 45.57009492926613, 0.0], [-68.40650120425943, 45.569287395934055, 0.0], [-68.40144387093397, 45.56401779594222, 0.0], [-68.39712967094067, 45.561402329279645, 0.0], [-68.39458660427795, 45.56034212928125, 0.0], [-68.39417400427857, 45.55999252928183, 0.0], [-68.39331507094658, 45.559811995948735, 0.0], [-68.39197460428198, 45.55900439595001, 0.0], [-68.38887927095345, 45.55572419595512, 0.0]], "type": "LineString"}, "id": "926", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1731408", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.38887927095345, 45.55269779595983, -68.38511500429263, 45.55572419595512], "geometry": {"coordinates": [[-68.38887927095345, 45.55572419595512, 0.0], [-68.38511500429263, 45.55269779595983, 0.0]], "type": "LineString"}, "id": "927", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1731414", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.38511500429263, 45.518127729346816, -68.36204113766178, 45.55269779595983], "geometry": {"coordinates": [[-68.38511500429263, 45.55269779595983, 0.0], [-68.38477147095983, 45.55262559595991, 0.0], [-68.38404920429429, 45.551684795961364, 0.0], [-68.3835852709617, 45.551455795961715, 0.0], [-68.38069627096615, 45.54769272930088, 0.0], [-68.37585107097368, 45.544570129305725, 0.0], [-68.37356447097721, 45.54159092931036, 0.0], [-68.37334000431093, 45.54036019597896, 0.0], [-68.37261800431202, 45.53941939598042, 0.0], [-68.37150120431374, 45.53852699598178, 0.0], [-68.37040200431545, 45.538032929315875, 0.0], [-68.36968007098329, 45.53709212931739, 0.0], [-68.36969627098324, 45.53617499598545, 0.0], [-68.36790780431937, 45.532905929323874, 0.0], [-68.36742527098676, 45.53096352932687, 0.0], [-68.36740640432015, 45.52925012932951, 0.0], [-68.36642640432166, 45.52759752933207, 0.0], [-68.36603040432226, 45.52633072933406, 0.0], [-68.36362460432599, 45.523194596005624, 0.0], [-68.36288300432716, 45.51922532934509, 0.0], [-68.36204113766178, 45.518127729346816, 0.0]], "type": "LineString"}, "id": "928", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1731418", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.38986720428528, 45.473139796083274, -68.3890548042865, 45.47313992941662], "geometry": {"coordinates": [[-68.3890548042865, 45.47313992941662, 0.0], [-68.38986720428528, 45.473139796083274, 0.0]], "type": "LineString"}, "id": "929", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1731998", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.39396040427891, 45.4688413294233, -68.39272540428084, 45.47073872942036], "geometry": {"coordinates": [[-68.39272540428084, 45.4688413294233, 0.0], [-68.39350540427961, 45.4694127294224, 0.0], [-68.39383047094577, 45.46970979608864, 0.0], [-68.39396040427891, 45.469984196088205, 0.0], [-68.39389567094565, 45.47028139608773, 0.0], [-68.39376580427921, 45.47057859608725, 0.0], [-68.39376580427921, 45.47073872942036, 0.0]], "type": "LineString"}, "id": "930", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732002", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.4801340708118, 45.41790132950234, -68.46404927083677, 45.42898059615186], "geometry": {"coordinates": [[-68.46404927083677, 45.42898059615186, 0.0], [-68.46440460416954, 45.42781432948698, 0.0], [-68.46476067083569, 45.427082329488144, 0.0], [-68.46485780416884, 45.42683072948853, 0.0], [-68.46505207083521, 45.42655632948896, 0.0], [-68.46573287083419, 45.42589272948999, 0.0], [-68.46690047083234, 45.42522879615768, 0.0], [-68.46917260416217, 45.42481532949165, 0.0], [-68.46991887082766, 45.424471796158855, 0.0], [-68.47102147082597, 45.42369339616005, 0.0], [-68.47209140415765, 45.42282379616137, 0.0], [-68.47358300415533, 45.421770796163, 0.0], [-68.47471727082024, 45.42069519616467, 0.0], [-68.47549440415236, 45.41955139616647, 0.0], [-68.47578620415192, 45.41925399616696, 0.0], [-68.47679140415033, 45.418567129501355, 0.0], [-68.47779700414878, 45.41817759616862, 0.0], [-68.47880287081387, 45.417925196168994, 0.0], [-68.47987420414557, 45.41790132950234, 0.0], [-68.4801340708118, 45.41799239616887, 0.0]], "type": "LineString"}, "id": "931", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732048", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.4801340708118, 45.41798872950221, -68.48011227081184, 45.41800019616886], "geometry": {"coordinates": [[-68.4801340708118, 45.41799239616887, 0.0], [-68.48011227081184, 45.41798872950221, 0.0], [-68.48012780414518, 45.41800019616886, 0.0]], "type": "LineString"}, "id": "932", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733706", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.5151976040907, 45.38522172955311, -68.51305720409403, 45.3857495295523], "geometry": {"coordinates": [[-68.51305720409403, 45.38522172955311, 0.0], [-68.51318667076049, 45.38533612955291, 0.0], [-68.51445140409186, 45.385657396219074, 0.0], [-68.51506767075762, 45.3857495295523, 0.0], [-68.5151976040907, 45.38572679621899, 0.0]], "type": "LineString"}, "id": "933", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732086", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.51620387075582, 45.38516159621986, -68.5151976040907, 45.38572679621899], "geometry": {"coordinates": [[-68.5151976040907, 45.38572679621899, 0.0], [-68.51529280409056, 45.38561512955249, 0.0], [-68.5154134040904, 45.385573796219205, 0.0], [-68.51553400409023, 45.38553252955262, 0.0], [-68.51565460409, 45.385491196219334, 0.0], [-68.51577520408983, 45.38544992955275, 0.0], [-68.51589580408967, 45.38540859621946, 0.0], [-68.51597480408952, 45.38533852955294, 0.0], [-68.51603500408942, 45.38529032955296, 0.0], [-68.51608640408932, 45.3852465962197, 0.0], [-68.51614040408924, 45.38521312955311, 0.0], [-68.51620387075582, 45.38516159621986, 0.0]], "type": "LineString"}, "id": "934", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733744", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.50498887077322, 45.38018372956094, -68.50404427077473, 45.382492396223995], "geometry": {"coordinates": [[-68.50452987077398, 45.382492396223995, 0.0], [-68.50417367077449, 45.38219479622444, 0.0], [-68.50414147077453, 45.38205759622468, 0.0], [-68.50404427077473, 45.38198892955813, 0.0], [-68.50404547077471, 45.38144019622564, 0.0], [-68.50411107077463, 45.381143129559405, 0.0], [-68.5045990041072, 45.38052619622704, 0.0], [-68.50472920410698, 45.380274929560755, 0.0], [-68.50498887077322, 45.38018372956094, 0.0]], "type": "LineString"}, "id": "935", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732094", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.50632447077118, 45.37966339622841, -68.50498887077322, 45.38018372956094], "geometry": {"coordinates": [[-68.50498887077322, 45.38018372956094, 0.0], [-68.50501400410656, 45.38014019622767, 0.0], [-68.50513307077301, 45.380096929561034, 0.0], [-68.50525220410617, 45.38005352956111, 0.0], [-68.50537140410597, 45.38001019622783, 0.0], [-68.50549047077249, 45.379966796227905, 0.0], [-68.50560967077229, 45.379923529561324, 0.0], [-68.50572880410544, 45.3798801295614, 0.0], [-68.50584800410525, 45.37983679622812, 0.0], [-68.5059670707717, 45.379793396228195, 0.0], [-68.50608620410486, 45.37975012956156, 0.0], [-68.50620540410466, 45.37970672956163, 0.0], [-68.50632447077118, 45.37966339622841, 0.0]], "type": "LineString"}, "id": "936", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733752", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.53735107072299, 45.368804129578564, -68.53559640405905, 45.37088332957535], "geometry": {"coordinates": [[-68.53559640405905, 45.37088332957535, 0.0], [-68.53559667072574, 45.37067752957569, 0.0], [-68.53624680405807, 45.369854929576945, 0.0], [-68.53705907072344, 45.36891819624509, 0.0], [-68.53735107072299, 45.368804129578564, 0.0]], "type": "LineString"}, "id": "937", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732102", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.53736540405635, 45.36878372957858, -68.53735107072299, 45.368804129578564], "geometry": {"coordinates": [[-68.53735107072299, 45.368804129578564, 0.0], [-68.53736447072299, 45.36878372957858, 0.0], [-68.53736540405635, 45.36878399624527, 0.0]], "type": "LineString"}, "id": "938", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733782", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.63442047057231, 45.304247529678776, -68.63004680391248, 45.315176329661824], "geometry": {"coordinates": [[-68.63004680391248, 45.315176329661824, 0.0], [-68.63027360391209, 45.315176329661824, 0.0], [-68.63075967057802, 45.31503912966201, 0.0], [-68.63140780391035, 45.31462739632934, 0.0], [-68.63237980390886, 45.31364419633087, 0.0], [-68.6337404039067, 45.31147212966755, 0.0], [-68.63393467057307, 45.31106059633487, 0.0], [-68.63412900390614, 45.3107861963353, 0.0], [-68.6342584705726, 45.310191729669555, 0.0], [-68.63429087057256, 45.31003172966979, 0.0], [-68.63442047057231, 45.30918572967113, 0.0], [-68.63435520390578, 45.30726519634078, 0.0], [-68.63412827057277, 45.30676219634154, 0.0], [-68.63409580390618, 45.306350596342156, 0.0], [-68.63399860390632, 45.30625919634235, 0.0], [-68.63386907057321, 45.30589339634287, 0.0], [-68.63338287057394, 45.30520752967732, 0.0], [-68.63270240390835, 45.304727396344674, 0.0], [-68.63202200390941, 45.30431599634534, 0.0], [-68.63173047057649, 45.304247529678776, 0.0]], "type": "LineString"}, "id": "939", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732188", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.63173047057649, 45.30419952967884, -68.62871900391451, 45.304788729677966], "geometry": {"coordinates": [[-68.63173047057649, 45.304247529678776, 0.0], [-68.63155627057677, 45.30419952967884, 0.0], [-68.63143767057699, 45.304243529678786, 0.0], [-68.6313192039105, 45.30428739634539, 0.0], [-68.63120067057736, 45.30433139634533, 0.0], [-68.63108207057752, 45.30437539634522, 0.0], [-68.63096360391103, 45.30441939634517, 0.0], [-68.63084507057789, 45.30446339634511, 0.0], [-68.63072647057805, 45.30450739634506, 0.0], [-68.63060800391156, 45.30455139634495, 0.0], [-68.63048947057842, 45.30459532967825, 0.0], [-68.63037087057864, 45.304639329678196, 0.0], [-68.63025240391215, 45.304683329678085, 0.0], [-68.63013387057902, 45.30472732967803, 0.0], [-68.63001527057918, 45.304771329677976, 0.0], [-68.62996840391259, 45.304788729677966, 0.0], [-68.62983587057943, 45.30477492967799, 0.0], [-68.62970340391297, 45.30476119634466, 0.0], [-68.62957080391323, 45.30474739634468, 0.0], [-68.62943827058007, 45.30473372967805, 0.0], [-68.62930580391361, 45.30471992967807, 0.0], [-68.62917327058051, 45.30470619634474, 0.0], [-68.62904067058071, 45.30469239634476, 0.0], [-68.62890820391425, 45.30467872967813, 0.0], [-68.62877567058109, 45.3046649963448, 0.0], [-68.62871900391451, 45.30465912967816, 0.0]], "type": "LineString"}, "id": "940", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733882", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.65084727054682, 45.246622196434885, -68.64667327055332, 45.24996099642971], "geometry": {"coordinates": [[-68.64667327055332, 45.24996099642971, 0.0], [-68.64670547055329, 45.249663796430184, 0.0], [-68.64712620388593, 45.249183596430896, 0.0], [-68.65023247054779, 45.24723959643393, 0.0], [-68.65084727054682, 45.246622196434885, 0.0]], "type": "LineString"}, "id": "941", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732282", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.65249780387762, 45.24581379643615, -68.65084727054682, 45.246622196434885], "geometry": {"coordinates": [[-68.65084727054682, 45.246622196434885, 0.0], [-68.65249780387762, 45.24581379643615, 0.0]], "type": "LineString"}, "id": "942", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733960", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.6411174038953, 45.16321999656435, -68.63659267056897, 45.16911859655522], "geometry": {"coordinates": [[-68.63659267056897, 45.16905032988865, 0.0], [-68.63885527056544, 45.16911859655522, 0.0], [-68.63921087056491, 45.169049929888615, 0.0], [-68.63982487056393, 45.16884412988895, 0.0], [-68.640438870563, 45.168455396556226, 0.0], [-68.64072967056256, 45.168203929889955, 0.0], [-68.64095600389555, 45.16790659655709, 0.0], [-68.6411174038953, 45.16756359655761, 0.0], [-68.64105260389539, 45.166923396558616, 0.0], [-68.64095560389552, 45.166649129892335, 0.0], [-68.64060007056275, 45.16605472989329, 0.0], [-68.64047080389628, 45.165894796560224, 0.0], [-68.64047080389628, 45.165780396560365, 0.0], [-68.64040600389637, 45.16571179656046, 0.0], [-68.64040600389637, 45.1656203965606, 0.0], [-68.64027667056325, 45.16548319656084, 0.0], [-68.64001807056366, 45.16486592989514, 0.0], [-68.63940380389795, 45.16406572989638, 0.0], [-68.63924220389816, 45.16395139656322, 0.0], [-68.63914520389835, 45.1637915298968, 0.0], [-68.6385956038992, 45.16328852989756, 0.0], [-68.63840160389947, 45.16321999656435, 0.0]], "type": "LineString"}, "id": "943", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732500", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.63840160389947, 45.14911272991958, -68.62258560392405, 45.16321999656435], "geometry": {"coordinates": [[-68.63840160389947, 45.16321999656435, 0.0], [-68.63824307056638, 45.16313719656449, 0.0], [-68.63811360389991, 45.163113996564505, 0.0], [-68.63798400390016, 45.163090796564575, 0.0], [-68.63785440390035, 45.163067529897944, 0.0], [-68.6377428705672, 45.16304752989794, 0.0], [-68.63767907056729, 45.162964596564734, 0.0], [-68.63761527056738, 45.16288159656489, 0.0], [-68.63755147056747, 45.16279859656498, 0.0], [-68.63748780390091, 45.16271572989848, 0.0], [-68.637424003901, 45.162632729898576, 0.0], [-68.63738207056775, 45.16257832989868, 0.0], [-68.6373514039011, 45.1624863965655, 0.0], [-68.63732080390116, 45.16239452989896, 0.0], [-68.63729020390122, 45.16230259656578, 0.0], [-68.63725947056793, 45.16221072989924, 0.0], [-68.63722887056798, 45.16211879656606, 0.0], [-68.63719827056804, 45.162026996566226, 0.0], [-68.63716760390139, 45.16193512989969, 0.0], [-68.63713700390144, 45.16184319656651, 0.0], [-68.6371064039015, 45.16175132989997, 0.0], [-68.63707580390155, 45.16165939656679, 0.0], [-68.63705280390161, 45.161590529900195, 0.0], [-68.6369890039017, 45.16150759656699, 0.0], [-68.6369252039018, 45.161424596567144, 0.0], [-68.63686140390189, 45.161341729900585, 0.0], [-68.63679767056863, 45.16125872990074, 0.0], [-68.63673387056872, 45.161175796567534, 0.0], [-68.63667007056887, 45.16109279656763, 0.0], [-68.63660627056896, 45.16100992990113, 0.0], [-68.63654247056905, 45.16092692990122, 0.0], [-68.63647867056915, 45.16084399656802, 0.0], [-68.63641487056924, 45.16076099656817, 0.0], [-68.63635120390268, 45.16067812990161, 0.0], [-68.63628740390277, 45.160595129901765, 0.0], [-68.63622360390286, 45.16051219656856, 0.0], [-68.63615980390296, 45.16042919656866, 0.0], [-68.63609600390305, 45.16034619656881, 0.0], [-68.63603220390314, 45.16026332990225, 0.0], [-68.63596847056994, 45.1601803299024, 0.0], [-68.63590467057003, 45.1600973965692, 0.0], [-68.63584087057012, 45.16001439656935, 0.0], [-68.63577707057021, 45.15993152990279, 0.0], [-68.6357132705703, 45.159848529902945, 0.0], [-68.63564947057046, 45.159765596569684, 0.0], [-68.63558580390384, 45.15968259656984, 0.0], [-68.63552200390399, 45.15959972990328, 0.0], [-68.63545820390408, 45.15951672990343, 0.0], [-68.63539440390417, 45.15943379657023, 0.0], [-68.63533060390426, 45.15935079657038, 0.0], [-68.635266870571, 45.159267796570475, 0.0], [-68.63524867057106, 45.159244329903856, 0.0], [-68.63524420390439, 45.159149929904004, 0.0], [-68.63523967057108, 45.159055596570795, 0.0], [-68.63523520390441, 45.15896119657094, 0.0], [-68.6352306705711, 45.158866929904434, 0.0], [-68.6352260705711, 45.158772596571225, 0.0], [-68.63522160390443, 45.15867819657137, 0.0], [-68.63521707057112, 45.158583929904864, 0.0], [-68.63521260390445, 45.15848952990501, 0.0], [-68.63521060390445, 45.1584487299051, 0.0], [-68.63514687057119, 45.1583657965719, 0.0], [-68.63508307057128, 45.158282796571996, 0.0], [-68.63501927057143, 45.15819992990549, 0.0], [-68.63495547057153, 45.15811692990559, 0.0], [-68.63489167057162, 45.158033996572385, 0.0], [-68.63482800390506, 45.15795099657254, 0.0], [-68.63476420390515, 45.157867996572634, 0.0], [-68.63470040390524, 45.15778512990613, 0.0], [-68.63463660390534, 45.15770212990623, 0.0], [-68.63457280390543, 45.15761919657302, 0.0], [-68.63450907057222, 45.157536196573176, 0.0], [-68.63448907057222, 45.157510196573185, 0.0], [-68.6343862039057, 45.15744992990665, 0.0], [-68.6342834039059, 45.15738959657341, 0.0], [-68.63418047057269, 45.157329329906815, 0.0], [-68.63407767057288, 45.15726899657358, 0.0], [-68.63397487057301, 45.15720872990704, 0.0], [-68.6338720039065, 45.15714852990709, 0.0], [-68.6337692039067, 45.15708819657385, 0.0], [-68.63366627057349, 45.157027929907315, 0.0], [-68.63356347057368, 45.15696759657408, 0.0], [-68.63346067057381, 45.15690732990748, 0.0], [-68.6334448039072, 45.15689799657417, 0.0], [-68.63331660390736, 45.15687119657423, 0.0], [-68.63318847057423, 45.15684439657423, 0.0], [-68.63306027057445, 45.15681752990764, 0.0], [-68.63293220390796, 45.15679072990764, 0.0], [-68.63280400390818, 45.1567639299077, 0.0], [-68.63267587057504, 45.156737129907754, 0.0], [-68.63259040390852, 45.15671919657444, 0.0], [-68.63252667057526, 45.15663632990788, 0.0], [-68.63246287057535, 45.156553329908036, 0.0], [-68.6323990705755, 45.15647039657483, 0.0], [-68.6323352705756, 45.15638739657493, 0.0], [-68.63227160390903, 45.156304529908425, 0.0], [-68.63220780390913, 45.15622152990852, 0.0], [-68.63214400390922, 45.15613859657532, 0.0], [-68.63210940390928, 45.15609359657543, 0.0], [-68.63198127057615, 45.15606679657543, 0.0], [-68.63185307057631, 45.15603992990884, 0.0], [-68.63172500390988, 45.15601312990884, 0.0], [-68.63159680391004, 45.1559863299089, 0.0], [-68.63146867057691, 45.155959529908955, 0.0], [-68.63134047057713, 45.15593272990901, 0.0], [-68.63121240391064, 45.15590592990901, 0.0], [-68.63108420391086, 45.15587912990907, 0.0], [-68.63095607057772, 45.15585232990912, 0.0], [-68.63082787057789, 45.15582552990918, 0.0], [-68.63069980391145, 45.15579872990918, 0.0], [-68.63057160391162, 45.15577179657589, 0.0], [-68.63044347057848, 45.15574499657595, 0.0], [-68.6303152705787, 45.155718196576004, 0.0], [-68.63022987057883, 45.15570032990934, 0.0], [-68.63016607057892, 45.15561739657613, 0.0], [-68.63010227057902, 45.155534396576286, 0.0], [-68.63003860391245, 45.155451529909726, 0.0], [-68.62997480391255, 45.15536852990988, 0.0], [-68.6299110039127, 45.155285596576675, 0.0], [-68.62984720391279, 45.15520259657677, 0.0], [-68.62978347057953, 45.15511972991027, 0.0], [-68.62971967057962, 45.155036729910364, 0.0], [-68.62965587057971, 45.15495379657716, 0.0], [-68.62959220391315, 45.15487079657731, 0.0], [-68.62952840391324, 45.154787796577466, 0.0], [-68.62946460391333, 45.154704929910906, 0.0], [-68.62940087058013, 45.154621929911, 0.0], [-68.62938807058015, 45.15460539657772, 0.0], [-68.62937260391351, 45.15451159657789, 0.0], [-68.62935700391353, 45.15441792991135, 0.0], [-68.62934140391354, 45.154324129911515, 0.0], [-68.62932580391356, 45.15423039657833, 0.0], [-68.62931020391358, 45.15413659657844, 0.0], [-68.62929460391365, 45.15404292991195, 0.0], [-68.62927900391367, 45.153949196578765, 0.0], [-68.62926347058033, 45.15385539657888, 0.0], [-68.62924787058034, 45.15376172991239, 0.0], [-68.62923227058042, 45.1536679299125, 0.0], [-68.62922987058039, 45.153653396579216, 0.0], [-68.62916607058048, 45.153570529912656, 0.0], [-68.62910227058057, 45.15348752991281, 0.0], [-68.62903860391401, 45.153404596579605, 0.0], [-68.6289748039141, 45.1533215965797, 0.0], [-68.6289110039142, 45.1532387299132, 0.0], [-68.62884727058099, 45.153155729913294, 0.0], [-68.62878347058108, 45.15307272991345, 0.0], [-68.62871967058118, 45.15298979658024, 0.0], [-68.62865600391461, 45.15290679658034, 0.0], [-68.6285922039147, 45.152823929913836, 0.0], [-68.6285284039148, 45.15274092991393, 0.0], [-68.6284646705816, 45.15265799658073, 0.0], [-68.62840087058169, 45.15257499658088, 0.0], [-68.62833707058178, 45.15249212991432, 0.0], [-68.62827340391522, 45.152409129914474, 0.0], [-68.62820960391531, 45.15232612991457, 0.0], [-68.62814767058205, 45.152245596581395, 0.0], [-68.62805007058222, 45.152181196581466, 0.0], [-68.62795240391569, 45.152116729914894, 0.0], [-68.62785480391585, 45.15205232991502, 0.0], [-68.62775720391602, 45.15198779658181, 0.0], [-68.62765947058284, 45.151923329915235, 0.0], [-68.62756187058301, 45.151858929915306, 0.0], [-68.62746427058312, 45.15179439658209, 0.0], [-68.62736660391664, 45.15172999658216, 0.0], [-68.62726900391675, 45.15166552991559, 0.0], [-68.62717140391692, 45.15160112991572, 0.0], [-68.62707367058374, 45.1515365965825, 0.0], [-68.62697607058391, 45.15147212991593, 0.0], [-68.62687847058402, 45.151407729916, 0.0], [-68.62678080391754, 45.151343196582786, 0.0], [-68.62668320391771, 45.15127879658286, 0.0], [-68.62658560391782, 45.15121432991634, 0.0], [-68.62648787058464, 45.151149929916414, 0.0], [-68.6263902705848, 45.1510853965832, 0.0], [-68.62629267058497, 45.151020929916626, 0.0], [-68.62619500391844, 45.1509565299167, 0.0], [-68.6260974039186, 45.15089199658348, 0.0], [-68.62599980391872, 45.15082759658361, 0.0], [-68.62590207058554, 45.15076312991704, 0.0], [-68.6258044705857, 45.150698596583766, 0.0], [-68.62570687058587, 45.150634196583894, 0.0], [-68.62560927058604, 45.15056972991732, 0.0], [-68.6255116039195, 45.150505329917394, 0.0], [-68.62541400391967, 45.15044079658418, 0.0], [-68.62531640391978, 45.150376396584306, 0.0], [-68.6252368705866, 45.150323929917704, 0.0], [-68.62512460392009, 45.15027259658444, 0.0], [-68.62501240392027, 45.15022132991788, 0.0], [-68.62490020392045, 45.15017012991797, 0.0], [-68.62478800392063, 45.15011879658471, 0.0], [-68.62467580392081, 45.15006759658479, 0.0], [-68.62456360392099, 45.150016329918174, 0.0], [-68.62445127058783, 45.14996499658491, 0.0], [-68.62433907058801, 45.149913796585, 0.0], [-68.62422687058813, 45.14986252991844, 0.0], [-68.62411467058831, 45.149811196585176, 0.0], [-68.6240024705885, 45.14975999658526, 0.0], [-68.62389027058867, 45.14970872991864, 0.0], [-68.62377807058886, 45.14965739658538, 0.0], [-68.62366580392234, 45.14960619658547, 0.0], [-68.62355360392252, 45.14955492991891, 0.0], [-68.6234414039227, 45.14950372991899, 0.0], [-68.62332920392288, 45.14945239658573, 0.0], [-68.62321700392306, 45.14940112991911, 0.0], [-68.62310480392324, 45.1493499299192, 0.0], [-68.62299247059008, 45.149298596585936, 0.0], [-68.62288027059026, 45.149247329919376, 0.0], [-68.62276807059044, 45.14919612991946, 0.0], [-68.62265587059062, 45.1491447965862, 0.0], [-68.62258560392405, 45.14911272991958, 0.0]], "type": "LineString"}, "id": "944", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734112", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.62502207058691, 45.13852839660268, -68.62337427058947, 45.14262099659635], "geometry": {"coordinates": [[-68.62337427058947, 45.14262099659635, 0.0], [-68.62347127058933, 45.142598129929695, 0.0], [-68.6235034705893, 45.14241519659663, 0.0], [-68.62389127058867, 45.141912196597445, 0.0], [-68.6240204705885, 45.14159212993127, 0.0], [-68.62411747058832, 45.14152352993136, 0.0], [-68.62418200392159, 45.14111192993198, 0.0], [-68.62431127058801, 45.140883329932365, 0.0], [-68.62434360392132, 45.140517529932936, 0.0], [-68.6244728039211, 45.14044892993303, 0.0], [-68.6249250705871, 45.13939732993464, 0.0], [-68.62502207058691, 45.138985729935314, 0.0], [-68.62502207058691, 45.13852839660268, 0.0]], "type": "LineString"}, "id": "945", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732562", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.62502207058691, 45.13675552993874, -68.62312367058985, 45.13852839660268], "geometry": {"coordinates": [[-68.62502207058691, 45.13852839660268, 0.0], [-68.62490760392046, 45.13837972993622, 0.0], [-68.62483840392053, 45.138298996603055, 0.0], [-68.62476927058731, 45.138218196603134, 0.0], [-68.62470020392078, 45.13813739660327, 0.0], [-68.62463087058751, 45.13805672993675, 0.0], [-68.62456187058763, 45.137975929936886, 0.0], [-68.62449287058774, 45.137895129936965, 0.0], [-68.62435447058795, 45.13773359660394, 0.0], [-68.62312367058985, 45.13675552993874, 0.0]], "type": "LineString"}, "id": "946", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734132", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.6345170705722, 45.118362729967316, -68.62705707058376, 45.124261729958164], "geometry": {"coordinates": [[-68.6280906039155, 45.124261729958164, 0.0], [-68.62773527058272, 45.12417019662496, 0.0], [-68.62728307058342, 45.123781529958876, 0.0], [-68.62705707058376, 45.12325559662639, 0.0], [-68.62721860391684, 45.12236412996111, 0.0], [-68.62747700391645, 45.12167812996216, 0.0], [-68.62750920391642, 45.1214723299625, 0.0], [-68.6281228705821, 45.12046632996402, 0.0], [-68.62886560391428, 45.11957472996545, 0.0], [-68.63009267057907, 45.11872859663339, 0.0], [-68.63086767057786, 45.11845419663382, 0.0], [-68.63196567057616, 45.118362729967316, 0.0], [-68.63251480390863, 45.118408396633924, 0.0], [-68.63319287057425, 45.118637129966885, 0.0], [-68.63370967057347, 45.11893432996641, 0.0], [-68.63438787057237, 45.11948279663221, 0.0], [-68.6345170705722, 45.11977999663179, 0.0]], "type": "LineString"}, "id": "947", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732632", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.6345170705722, 45.1197731966318, -68.63447407057225, 45.11977999663179], "geometry": {"coordinates": [[-68.6345170705722, 45.11977999663179, 0.0], [-68.6344742039056, 45.1197731966318, 0.0], [-68.63447407057225, 45.11977399663181, 0.0]], "type": "LineString"}, "id": "948", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734162", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.66717307052147, 45.08332839668833, -68.66278900386163, 45.09137793000917], "geometry": {"coordinates": [[-68.66278900386163, 45.09137793000917, 0.0], [-68.66295027052803, 45.091377796675886, 0.0], [-68.6635632705271, 45.09092039667655, 0.0], [-68.66385367052663, 45.09066879667694, 0.0], [-68.66420840385945, 45.09018853001106, 0.0], [-68.66443427052576, 45.09002833001131, 0.0], [-68.66446647052572, 45.08986833001154, 0.0], [-68.6652082038579, 45.08883919667983, 0.0], [-68.66611107052313, 45.08764999668165, 0.0], [-68.66662687052235, 45.086781130016334, 0.0], [-68.66685240385533, 45.0862093966839, 0.0], [-68.66710960385495, 45.0848145300194, 0.0], [-68.66717307052147, 45.08332839668833, 0.0]], "type": "LineString"}, "id": "949", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732732", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.66729860385465, 45.075418130033995, -68.66610247052319, 45.08332839668833], "geometry": {"coordinates": [[-68.66717307052147, 45.08332839668833, 0.0], [-68.66710820385492, 45.08277973002254, 0.0], [-68.66713800385486, 45.079441730027725, 0.0], [-68.66729860385465, 45.078389796696, 0.0], [-68.66729787052128, 45.07752113003073, 0.0], [-68.66726527052134, 45.077017996698146, 0.0], [-68.66707147052165, 45.076583730032155, 0.0], [-68.66690987052192, 45.07635513003254, 0.0], [-68.66652240385582, 45.075943730033146, 0.0], [-68.66639340385603, 45.075852330033285, 0.0], [-68.66610247052319, 45.075418130033995, 0.0]], "type": "LineString"}, "id": "950", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732760", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.65686987053749, 45.06542979671616, -68.65573987053926, 45.068881996710786], "geometry": {"coordinates": [[-68.65686987053749, 45.068881996710786, 0.0], [-68.65654707053801, 45.068813530044224, 0.0], [-68.65622427053847, 45.06847059671139, 0.0], [-68.6560950705387, 45.068264930045075, 0.0], [-68.65599820387217, 45.06817339671187, 0.0], [-68.65573987053926, 45.067578996712825, 0.0], [-68.65586827053903, 45.06623013004821, 0.0], [-68.65599700387219, 45.06552133004931, 0.0], [-68.65619047053855, 45.06542979671616, 0.0]], "type": "LineString"}, "id": "951", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1732786", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.656762803871, 45.065115396716635, -68.65619047053855, 45.06542979671616], "geometry": {"coordinates": [[-68.65619047053855, 45.06542979671616, 0.0], [-68.65635960387164, 45.065372996716235, 0.0], [-68.65646740387143, 45.06531193004963, 0.0], [-68.65655440387133, 45.06526139671638, 0.0], [-68.6566350038712, 45.06520839671646, 0.0], [-68.656762803871, 45.065115396716635, 0.0]], "type": "LineString"}, "id": "952", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734214", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.36914013765079, 45.4952963960489, -68.36305607099354, 45.50006372937486], "geometry": {"coordinates": [[-68.36305607099354, 45.50006372937486, 0.0], [-68.36313767099341, 45.4999893960416, 0.0], [-68.3632198709933, 45.49991459604172, 0.0], [-68.3633020043265, 45.499839929375185, 0.0], [-68.3633842043264, 45.499765129375305, 0.0], [-68.36346627099289, 45.499690329375426, 0.0], [-68.36354847099278, 45.49961559604219, 0.0], [-68.36363060432598, 45.49954079604231, 0.0], [-68.36371280432587, 45.499466129375776, 0.0], [-68.36379487099242, 45.4993913293759, 0.0], [-68.36387707099226, 45.49931659604266, 0.0], [-68.36389447099225, 45.4992833960427, 0.0], [-68.36394100432551, 45.4991947293762, 0.0], [-68.36398747099213, 45.499106129376344, 0.0], [-68.36403400432539, 45.49901739604314, 0.0], [-68.3640804043253, 45.49892879604329, 0.0], [-68.36412700432521, 45.498840196043375, 0.0], [-68.36417327099184, 45.498751529376875, 0.0], [-68.3642198043251, 45.49866292937702, 0.0], [-68.36426627099166, 45.49857419604382, 0.0], [-68.36431280432492, 45.49848559604396, 0.0], [-68.3643590709915, 45.49839692937741, 0.0], [-68.36440567099146, 45.49830832937755, 0.0], [-68.36445227099136, 45.498219729377695, 0.0], [-68.36449860432464, 45.498130996044495, 0.0], [-68.36454507099126, 45.49804239604464, 0.0], [-68.36459160432452, 45.49795372937808, 0.0], [-68.36463807099108, 45.497865129378226, 0.0], [-68.36468460432434, 45.49777652937837, 0.0], [-68.36473100432426, 45.49768779604517, 0.0], [-68.36477760432422, 45.497599196045314, 0.0], [-68.36482387099079, 45.497510529378815, 0.0], [-68.36487040432405, 45.49742192937896, 0.0], [-68.36492087099066, 45.49740272937896, 0.0], [-68.36503927099045, 45.49735779604572, 0.0], [-68.36515747099031, 45.497312996045764, 0.0], [-68.36527567099012, 45.497268196045866, 0.0], [-68.36539400432326, 45.49722332937927, 0.0], [-68.36551220432307, 45.49717852937931, 0.0], [-68.36563027098953, 45.49713359604607, 0.0], [-68.36574867098938, 45.497088796046114, 0.0], [-68.36586687098918, 45.497043929379515, 0.0], [-68.36598520432233, 45.49699912937962, 0.0], [-68.36606860432221, 45.49693659604634, 0.0], [-68.36616067098873, 45.496867796046445, 0.0], [-68.36625260432191, 45.49679899604655, 0.0], [-68.3663446043218, 45.49673012938001, 0.0], [-68.36643660432162, 45.49666132938012, 0.0], [-68.3665286043215, 45.49659239604688, 0.0], [-68.36662047098804, 45.496523596046984, 0.0], [-68.36671260432121, 45.49645479604709, 0.0], [-68.36680460432109, 45.49638592938055, 0.0], [-68.36689660432091, 45.49631712938066, 0.0], [-68.36698867098744, 45.49624819604742, 0.0], [-68.36708060432062, 45.49617939604752, 0.0], [-68.36717267098715, 45.49611059604763, 0.0], [-68.36726467098703, 45.49604172938109, 0.0], [-68.3673568043202, 45.495972929381196, 0.0], [-68.36736667098688, 45.495969129381194, 0.0], [-68.36748487098669, 45.49592419604795, 0.0], [-68.36760320431983, 45.495879396048, 0.0], [-68.36772140431964, 45.4958345293814, 0.0], [-68.36783967098614, 45.49578972938144, 0.0], [-68.36795787098595, 45.4957447960482, 0.0], [-68.3680762043191, 45.4956999960483, 0.0], [-68.36819427098555, 45.4956551293817, 0.0], [-68.3683126709854, 45.49561032938175, 0.0], [-68.36843080431856, 45.49556552938179, 0.0], [-68.36854900431837, 45.49552059604855, 0.0], [-68.36866727098482, 45.495475796048595, 0.0], [-68.36878547098468, 45.49543092938205, 0.0], [-68.36890360431778, 45.4953861293821, 0.0], [-68.36902200431763, 45.495341196048855, 0.0], [-68.36914013765079, 45.4952963960489, 0.0]], "type": "LineString"}, "id": "953", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733664", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.37035620431556, 45.4903371960566, -68.36914013765079, 45.4952963960489], "geometry": {"coordinates": [[-68.36914013765079, 45.4952963960489, 0.0], [-68.3697400709832, 45.49476519604974, 0.0], [-68.37035620431556, 45.49331712938533, 0.0], [-68.3701320043159, 45.49208652938722, 0.0], [-68.36958207098343, 45.49118192938863, 0.0], [-68.36994147098284, 45.4903371960566, 0.0]], "type": "LineString"}, "id": "954", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733666", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.3870132042897, 45.479203796073875, -68.36994147098284, 45.4903371960566], "geometry": {"coordinates": [[-68.36994147098284, 45.4903371960566, 0.0], [-68.37692067097203, 45.487992929393556, 0.0], [-68.38106927096561, 45.485710329397136, 0.0], [-68.38216607096388, 45.48488919606507, 0.0], [-68.38327887096216, 45.48315119606775, 0.0], [-68.3844076709604, 45.480496329405184, 0.0], [-68.38523027095914, 45.47988052940616, 0.0], [-68.3870132042897, 45.479203796073875, 0.0]], "type": "LineString"}, "id": "955", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733670", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.39079113761716, 45.4762515294118, -68.3870132042897, 45.479203796073875], "geometry": {"coordinates": [[-68.3870132042897, 45.479203796073875, 0.0], [-68.3883680042876, 45.47909432940736, 0.0], [-68.38970520428552, 45.478586729408164, 0.0], [-68.39079113761716, 45.4762515294118, 0.0]], "type": "LineString"}, "id": "956", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733674", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.39079113761716, 45.47313992941662, -68.38747147095563, 45.4762515294118], "geometry": {"coordinates": [[-68.39079113761716, 45.4762515294118, 0.0], [-68.39068200428397, 45.476251196078465, 0.0], [-68.39054767095087, 45.47625079607849, 0.0], [-68.3904134042844, 45.47625032941181, 0.0], [-68.3902790709513, 45.47624992941178, 0.0], [-68.39014480428483, 45.4762495294118, 0.0], [-68.39001047095172, 45.476249129411826, 0.0], [-68.38987620428526, 45.47624859607845, 0.0], [-68.38974187095215, 45.47624819607847, 0.0], [-68.38960760428569, 45.476247796078496, 0.0], [-68.38947327095252, 45.47624739607846, 0.0], [-68.38933900428606, 45.476246929411786, 0.0], [-68.38920467095295, 45.47624652941181, 0.0], [-68.38907607095314, 45.47621952941182, 0.0], [-68.38894740428668, 45.476192396078545, 0.0], [-68.38881867095358, 45.47616532941191, 0.0], [-68.38869007095377, 45.47613832941198, 0.0], [-68.38856140428732, 45.476111196078705, 0.0], [-68.38843267095416, 45.47608412941207, 0.0], [-68.38830407095435, 45.476057129412084, 0.0], [-68.38817540428789, 45.47602999607881, 0.0], [-68.38810527095467, 45.47597599607889, 0.0], [-68.38801467095482, 45.475906196078995, 0.0], [-68.38792420428825, 45.4758363960791, 0.0], [-68.3878336709551, 45.475766729412555, 0.0], [-68.38774307095525, 45.47569692941266, 0.0], [-68.38765260428869, 45.47562712941277, 0.0], [-68.38756207095548, 45.47555732941288, 0.0], [-68.38747147095563, 45.47548759607963, 0.0], [-68.38750787095557, 45.475423796079724, 0.0], [-68.38755780428886, 45.47533612941322, 0.0], [-68.38760780428879, 45.47524839608002, 0.0], [-68.38765767095538, 45.47516072941352, 0.0], [-68.38770767095531, 45.4750731294136, 0.0], [-68.38775767095518, 45.474985396080456, 0.0], [-68.38780760428847, 45.4748977294139, 0.0], [-68.3878576042884, 45.474809996080694, 0.0], [-68.38790760428833, 45.47472232941419, 0.0], [-68.38795747095492, 45.47463459608099, 0.0], [-68.38800747095485, 45.47454692941443, 0.0], [-68.38805747095472, 45.47445932941457, 0.0], [-68.38810740428801, 45.47437159608137, 0.0], [-68.38815740428794, 45.47428392941487, 0.0], [-68.38820727095452, 45.474196196081664, 0.0], [-68.3882792709544, 45.474158729415024, 0.0], [-68.38838727095424, 45.47410259608182, 0.0], [-68.38849527095408, 45.47404639608186, 0.0], [-68.38860320428722, 45.47399019608196, 0.0], [-68.38871120428706, 45.4739341294154, 0.0], [-68.3888192042869, 45.473877929415494, 0.0], [-68.38892720428674, 45.47382172941559, 0.0], [-68.3889298042867, 45.47380772941557, 0.0], [-68.38894747095338, 45.473714129415725, 0.0], [-68.38896520428665, 45.47362039608254, 0.0], [-68.38898287095333, 45.473526796082695, 0.0], [-68.3890006042866, 45.47343312941615, 0.0], [-68.38901827095327, 45.47333952941631, 0.0], [-68.38903600428654, 45.47324579608312, 0.0], [-68.38905360428652, 45.47315219608328, 0.0], [-68.3890548042865, 45.47313992941662, 0.0]], "type": "LineString"}, "id": "957", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733676", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.39272540428084, 45.4688413294233, -68.3890548042865, 45.47313992941662], "geometry": {"coordinates": [[-68.3890548042865, 45.47313992941662, 0.0], [-68.3891846042863, 45.47270552941728, 0.0], [-68.38924960428625, 45.47265979608403, 0.0], [-68.3892172042863, 45.47256832941753, 0.0], [-68.38947700428588, 45.47222532941805, 0.0], [-68.3897694042854, 45.47204252941833, 0.0], [-68.39110127095, 45.47048759608742, 0.0], [-68.39165340428247, 45.46966439608866, 0.0], [-68.39236800428137, 45.469001329423065, 0.0], [-68.39272540428084, 45.4688413294233, 0.0]], "type": "LineString"}, "id": "958", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734270", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.4015376709338, 45.46569372942821, -68.39272540428084, 45.4688413294233], "geometry": {"coordinates": [[-68.39272540428084, 45.4688413294233, 0.0], [-68.39276547094744, 45.46882832942333, 0.0], [-68.39288800428056, 45.468789729423406, 0.0], [-68.39301080428038, 45.468751129423424, 0.0], [-68.39313320428022, 45.4687125294235, 0.0], [-68.39325580427999, 45.468673929423574, 0.0], [-68.39337820427983, 45.46863532942359, 0.0], [-68.39350100427964, 45.468596729423666, 0.0], [-68.39362340427942, 45.46855812942374, 0.0], [-68.39374600427925, 45.468519529423816, 0.0], [-68.39386860427908, 45.46848092942383, 0.0], [-68.39399100427886, 45.46844232942391, 0.0], [-68.39411367094533, 45.46840372942398, 0.0], [-68.39423620427846, 45.46836512942406, 0.0], [-68.39424907094514, 45.46833492942409, 0.0], [-68.39428747094507, 45.46824439609088, 0.0], [-68.39432600427835, 45.468153929424375, 0.0], [-68.39436440427829, 45.46806339609117, 0.0], [-68.39440287094487, 45.46797292942466, 0.0], [-68.39444127094481, 45.467882396091454, 0.0], [-68.39446967094477, 45.46785799609148, 0.0], [-68.39455460427797, 45.467784929424965, 0.0], [-68.39463960427787, 45.46771172942505, 0.0], [-68.39472460427771, 45.46763859609183, 0.0], [-68.39480960427761, 45.46756539609197, 0.0], [-68.39489460427745, 45.4674923294254, 0.0], [-68.39497960427735, 45.46741919609218, 0.0], [-68.39506447094385, 45.46734599609226, 0.0], [-68.39514947094375, 45.46727292942575, 0.0], [-68.39523447094359, 45.46719972942583, 0.0], [-68.39531947094349, 45.46712659609261, 0.0], [-68.39540447094333, 45.467053529426096, 0.0], [-68.39548947094323, 45.46698032942618, 0.0], [-68.39557440427643, 45.46690719609296, 0.0], [-68.39565940427627, 45.4668339960931, 0.0], [-68.39574440427612, 45.46676092942653, 0.0], [-68.39582940427601, 45.46668772942667, 0.0], [-68.39591440427586, 45.46661459609339, 0.0], [-68.39592440427589, 45.46661079609345, 0.0], [-68.39604247094235, 45.46656592942685, 0.0], [-68.39616067094215, 45.466521129426894, 0.0], [-68.39627887094196, 45.46647619609365, 0.0], [-68.39639700427512, 45.46643132942705, 0.0], [-68.39651520427492, 45.4663865294271, 0.0], [-68.39663340427478, 45.466341596093855, 0.0], [-68.39675147094124, 45.466296729427256, 0.0], [-68.39686967094104, 45.46625179609396, 0.0], [-68.39698767094086, 45.46620699609406, 0.0], [-68.39710600427401, 45.46616212942746, 0.0], [-68.39722420427387, 45.46611719609422, 0.0], [-68.39734240427367, 45.46607239609426, 0.0], [-68.39746047094013, 45.46602752942766, 0.0], [-68.39757867093994, 45.46598259609442, 0.0], [-68.3976968709398, 45.465937796094465, 0.0], [-68.39782960427289, 45.46594199609444, 0.0], [-68.39796367093936, 45.465946329427766, 0.0], [-68.39809787093918, 45.465950596094444, 0.0], [-68.3982320042723, 45.46595492942777, 0.0], [-68.39836620427207, 45.465959196094445, 0.0], [-68.39850027093854, 45.46596352942777, 0.0], [-68.39863440427166, 45.465967796094446, 0.0], [-68.39876847093814, 45.46597212942777, 0.0], [-68.3989026709379, 45.46597639609439, 0.0], [-68.39903667093768, 45.465980596094425, 0.0], [-68.39917100427084, 45.46598492942775, 0.0], [-68.3993052042706, 45.46598919609437, 0.0], [-68.39943920427038, 45.46599352942769, 0.0], [-68.3995734042702, 45.46599779609437, 0.0], [-68.39970747093668, 45.46600212942769, 0.0], [-68.3998416042698, 45.46600639609437, 0.0], [-68.39997567093621, 45.466010729427694, 0.0], [-68.40010987093603, 45.46601499609437, 0.0], [-68.40024400426915, 45.466019329427695, 0.0], [-68.40037820426897, 45.46602359609432, 0.0], [-68.4005122709354, 45.46602792942764, 0.0], [-68.40064647093521, 45.466032129427674, 0.0], [-68.40071047093511, 45.466007796094345, 0.0], [-68.40082867093491, 45.46596292942775, 0.0], [-68.40094687093472, 45.46591812942785, 0.0], [-68.40106500426788, 45.46587319609455, 0.0], [-68.40118320426768, 45.46582832942795, 0.0], [-68.40130140426754, 45.46578339609471, 0.0], [-68.401419470934, 45.46573859609481, 0.0], [-68.4015376709338, 45.46569372942821, 0.0]], "type": "LineString"}, "id": "959", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733678", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.41044707091999, 45.46099392943546, -68.4015376709338, 45.46569372942821], "geometry": {"coordinates": [[-68.4015376709338, 45.46569372942821, 0.0], [-68.4019832709331, 45.46552452942842, 0.0], [-68.4028390042651, 45.464389796096896, 0.0], [-68.40489527092859, 45.463507596098225, 0.0], [-68.405924470927, 45.46372392943124, 0.0], [-68.4077068042576, 45.46304692943227, 0.0], [-68.41044707091999, 45.46099392943546, 0.0]], "type": "LineString"}, "id": "960", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733682", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.40160680426703, 45.46569372942821, -68.39079113761716, 45.4762515294118], "geometry": {"coordinates": [[-68.39079113761716, 45.4762515294118, 0.0], [-68.39244487094794, 45.475218929413415, 0.0], [-68.39400480427884, 45.4746267294143, 0.0], [-68.39591987094252, 45.4705595960873, 0.0], [-68.39780500427293, 45.46964139608872, 0.0], [-68.39855827093845, 45.46874812942343, 0.0], [-68.4004768042688, 45.467311129425696, 0.0], [-68.40116107093439, 45.4661403294275, 0.0], [-68.40160680426703, 45.46597112942777, 0.0], [-68.4015376709338, 45.46569372942821, 0.0]], "type": "LineString"}, "id": "961", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733680", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.44122400420554, 45.44042119613408, -68.41044707091999, 45.46099392943546], "geometry": {"coordinates": [[-68.41044707091999, 45.46099392943546, 0.0], [-68.41289760424951, 45.4600629294369, 0.0], [-68.41533020424572, 45.458733929439006, 0.0], [-68.41827720424118, 45.457512929440895, 0.0], [-68.42091447090377, 45.45570099611035, 0.0], [-68.42199247090207, 45.45448159611226, 0.0], [-68.42413287089875, 45.452959596114624, 0.0], [-68.42568707089634, 45.4497371961196, 0.0], [-68.4287846708915, 45.44683899612414, 0.0], [-68.43388880421696, 45.444493796127745, 0.0], [-68.43945307087495, 45.44106219613309, 0.0], [-68.44122400420554, 45.44042119613408, 0.0]], "type": "LineString"}, "id": "962", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733692", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.44597947086481, 45.438883929469796, -68.44122400420554, 45.44042119613408], "geometry": {"coordinates": [[-68.44122400420554, 45.44042119613408, 0.0], [-68.4449684708664, 45.43906599613621, 0.0], [-68.44597947086481, 45.438883929469796, 0.0]], "type": "LineString"}, "id": "963", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733694", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.45613680418239, 45.43425272947701, -68.44597947086481, 45.438883929469796], "geometry": {"coordinates": [[-68.44597947086481, 45.438883929469796, 0.0], [-68.44863620419403, 45.4387845961366, 0.0], [-68.45036620419137, 45.43822779613748, 0.0], [-68.45419927085209, 45.43535239614192, 0.0], [-68.45613680418239, 45.43425272947701, 0.0]], "type": "LineString"}, "id": "964", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733698", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.46525780416823, 45.429524996150974, -68.45613680418239, 45.43425272947701], "geometry": {"coordinates": [[-68.45613680418239, 45.43425272947701, 0.0], [-68.459608404177, 45.43228212948003, 0.0], [-68.46525780416823, 45.429524996150974, 0.0]], "type": "LineString"}, "id": "965", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733700", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.46525780416823, 45.42898059615186, -68.46404927083677, 45.429524996150974], "geometry": {"coordinates": [[-68.46525780416823, 45.429524996150974, 0.0], [-68.46404927083677, 45.42898059615186, 0.0]], "type": "LineString"}, "id": "966", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733702", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.4862106708024, 45.4172963295033, -68.46525780416823, 45.429524996150974], "geometry": {"coordinates": [[-68.46525780416823, 45.429524996150974, 0.0], [-68.46815147083043, 45.42842372948604, 0.0], [-68.47172767082486, 45.42615139615623, 0.0], [-68.47484380415335, 45.424965329491386, 0.0], [-68.47592027081834, 45.42374552949332, 0.0], [-68.47768260414898, 45.422669596161654, 0.0], [-68.47824460414807, 45.421341996163676, 0.0], [-68.4787918708139, 45.42093112949766, 0.0], [-68.4852640041372, 45.41887179616754, 0.0], [-68.48576007080311, 45.418581596167996, 0.0], [-68.4862106708024, 45.4172963295033, 0.0]], "type": "LineString"}, "id": "967", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733714", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.4862106708024, 45.4172963295033, -68.48012780414518, 45.418442796168165], "geometry": {"coordinates": [[-68.48012780414518, 45.41800019616886, 0.0], [-68.48020460414506, 45.41805732950212, 0.0], [-68.48029680414493, 45.41812579616868, 0.0], [-68.48038907081144, 45.41819439616859, 0.0], [-68.48048127081125, 45.418262996168494, 0.0], [-68.48056707081116, 45.41828099616845, 0.0], [-68.48069567081097, 45.41830799616838, 0.0], [-68.48082427081073, 45.41833492950167, 0.0], [-68.4809528041439, 45.41836192950166, 0.0], [-68.48108140414371, 45.41838892950159, 0.0], [-68.48121000414346, 45.41841579616823, 0.0], [-68.48133860414328, 45.418442796168165, 0.0], [-68.48144067080977, 45.41841199616823, 0.0], [-68.48156400414291, 45.41837479616828, 0.0], [-68.4816872708094, 45.41833759616833, 0.0], [-68.48181060414254, 45.41830032950173, 0.0], [-68.48193387080903, 45.41826312950178, 0.0], [-68.48205720414217, 45.41822592950189, 0.0], [-68.48218047080866, 45.41818859616859, 0.0], [-68.48230387080844, 45.41815139616864, 0.0], [-68.48242720414157, 45.41811419616869, 0.0], [-68.48255047080806, 45.41807692950209, 0.0], [-68.4826738041412, 45.41803972950214, 0.0], [-68.48279707080769, 45.41800252950219, 0.0], [-68.48292040414083, 45.41796519616895, 0.0], [-68.48304367080732, 45.417927996169, 0.0], [-68.4831670708071, 45.41789079616905, 0.0], [-68.48329040414023, 45.41785352950245, 0.0], [-68.48341367080673, 45.4178163295025, 0.0], [-68.48353700413986, 45.41777912950255, 0.0], [-68.48366027080635, 45.41774179616931, 0.0], [-68.48378360413949, 45.41770459616936, 0.0], [-68.48390687080598, 45.417667396169406, 0.0], [-68.48398707080582, 45.41765439616944, 0.0], [-68.48411787080562, 45.417633396169435, 0.0], [-68.48424867080541, 45.41761232950279, 0.0], [-68.48437947080521, 45.4175911961695, 0.0], [-68.484510270805, 45.41757019616955, 0.0], [-68.4846410708048, 45.4175491295029, 0.0], [-68.4847718708046, 45.417528129502955, 0.0], [-68.48490267080444, 45.417506996169664, 0.0], [-68.48503347080424, 45.417485929503016, 0.0], [-68.48516427080403, 45.41746492950307, 0.0], [-68.48529507080383, 45.41744379616972, 0.0], [-68.48542587080362, 45.41742272950313, 0.0], [-68.48555667080342, 45.417401729503126, 0.0], [-68.48568747080321, 45.417380596169835, 0.0], [-68.48581827080301, 45.41735952950319, 0.0], [-68.4859490708028, 45.41733852950324, 0.0], [-68.4860798708026, 45.41731739616995, 0.0], [-68.4862106708024, 45.4172963295033, 0.0]], "type": "LineString"}, "id": "968", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733712", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.49933340411536, 45.39002279621229, -68.4862106708024, 45.4172963295033], "geometry": {"coordinates": [[-68.4862106708024, 45.4172963295033, 0.0], [-68.48729600413401, 45.4162755295049, 0.0], [-68.48813140413273, 45.41474239617395, 0.0], [-68.4912938707945, 45.41212039617801, 0.0], [-68.49204527079331, 45.41122672951275, 0.0], [-68.49308480412503, 45.40921079618255, 0.0], [-68.49378500412394, 45.408437796183705, 0.0], [-68.49526547078835, 45.40493759618914, 0.0], [-68.49673140411937, 45.402354129526486, 0.0], [-68.49785427078433, 45.3996987961973, 0.0], [-68.49759140411805, 45.39767272953378, 0.0], [-68.49650807078638, 45.39626299620261, 0.0], [-68.4964532041198, 45.395068929537786, 0.0], [-68.49783120411769, 45.39181019620952, 0.0], [-68.49933340411536, 45.39002279621229, 0.0]], "type": "LineString"}, "id": "969", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733738", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.5055816707723, 45.38318652955627, -68.49933340411536, 45.39002279621229], "geometry": {"coordinates": [[-68.49933340411536, 45.39002279621229, 0.0], [-68.49943547078186, 45.3897813962127, 0.0], [-68.49988040411449, 45.38961192954628, 0.0], [-68.50068227077992, 45.38859752954784, 0.0], [-68.50269827077682, 45.386917929550464, 0.0], [-68.5035514041088, 45.38578292955225, 0.0], [-68.50416360410787, 45.38433452955445, 0.0], [-68.5055816707723, 45.38318652955627, 0.0]], "type": "LineString"}, "id": "970", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1742978", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.51648100408875, 45.38516159621986, -68.51620387075582, 45.38520812955312], "geometry": {"coordinates": [[-68.51620387075582, 45.38516159621986, 0.0], [-68.51648100408875, 45.38520812955312, 0.0]], "type": "LineString"}, "id": "971", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734314", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.53760520405592, 45.3714233295745, -68.51648100408875, 45.38520812955312], "geometry": {"coordinates": [[-68.51648100408875, 45.38520812955312, 0.0], [-68.52000647074993, 45.384370196221084, 0.0], [-68.52494980407562, 45.38238399622418, 0.0], [-68.52559840407457, 45.38173152955852, 0.0], [-68.52787300407107, 45.38076279622669, 0.0], [-68.52939247073539, 45.37937319622881, 0.0], [-68.5316160707319, 45.37852512956351, 0.0], [-68.53171787073177, 45.37828372956386, 0.0], [-68.53310300406292, 45.37765412956486, 0.0], [-68.53367760406206, 45.37540972956833, 0.0], [-68.5371466707233, 45.37337739623814, 0.0], [-68.53760520405592, 45.372290996239826, 0.0], [-68.53722547072323, 45.3714233295745, 0.0]], "type": "LineString"}, "id": "972", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733770", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.50571640410544, 45.382426396224105, -68.50452987077398, 45.38268072955702], "geometry": {"coordinates": [[-68.50571640410544, 45.382426396224105, 0.0], [-68.50563887077226, 45.38245599622405, 0.0], [-68.50552100410573, 45.382500929557295, 0.0], [-68.50540307077262, 45.38254592955724, 0.0], [-68.5052850707728, 45.38259079622384, 0.0], [-68.50516720410627, 45.38263579622378, 0.0], [-68.50504920410646, 45.38268072955702, 0.0], [-68.50493840410667, 45.382638329557096, 0.0], [-68.50482060410684, 45.382593196223866, 0.0], [-68.50470280410701, 45.38254812955722, 0.0], [-68.50458500410718, 45.38250292955729, 0.0], [-68.50452987077398, 45.382492396223995, 0.0]], "type": "LineString"}, "id": "973", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733748", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.50571640410544, 45.382426396224105, -68.5055816707723, 45.38318652955627], "geometry": {"coordinates": [[-68.5055816707723, 45.38318652955627, 0.0], [-68.50571640410544, 45.382426396224105, 0.0]], "type": "LineString"}, "id": "974", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733750", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.50632447077118, 45.37966339622841, -68.50571640410544, 45.382426396224105], "geometry": {"coordinates": [[-68.50571640410544, 45.382426396224105, 0.0], [-68.50612447077145, 45.381460929558955, 0.0], [-68.50632447077118, 45.37966339622841, 0.0]], "type": "LineString"}, "id": "975", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733754", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.52094947074846, 45.37418859623688, -68.50632447077118, 45.37966339622841], "geometry": {"coordinates": [[-68.50632447077118, 45.37966339622841, 0.0], [-68.50820147076826, 45.3774291295652, 0.0], [-68.51030487076497, 45.37642479623344, 0.0], [-68.51295900409423, 45.376324196233554, 0.0], [-68.51855467075217, 45.37500059623562, 0.0], [-68.52094947074846, 45.37418859623688, 0.0]], "type": "LineString"}, "id": "976", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733760", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.53722547072323, 45.3714233295745, -68.52094947074846, 45.37418859623688], "geometry": {"coordinates": [[-68.52094947074846, 45.37418859623688, 0.0], [-68.52284860407883, 45.373666929571016, 0.0], [-68.52473367074259, 45.37406179623707, 0.0], [-68.52629000407353, 45.37346819623798, 0.0], [-68.52937020406875, 45.372799729572364, 0.0], [-68.53091247073303, 45.37312272957189, 0.0], [-68.53248727073054, 45.37292712957219, 0.0], [-68.53411287072805, 45.37261072957267, 0.0], [-68.53722547072323, 45.3714233295745, 0.0]], "type": "LineString"}, "id": "977", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733768", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.5374292707229, 45.37088332957535, -68.53559640405905, 45.37119492957487], "geometry": {"coordinates": [[-68.5374292707229, 45.370940396241906, 0.0], [-68.53735180405636, 45.370969996241854, 0.0], [-68.53723387072318, 45.3710149962418, 0.0], [-68.53711600405671, 45.37105999624174, 0.0], [-68.53699807072354, 45.37110492957498, 0.0], [-68.53688020405707, 45.371149929574926, 0.0], [-68.5367622707239, 45.37119492957487, 0.0], [-68.53669187072404, 45.37117492957492, 0.0], [-68.53656747072421, 45.371139529574975, 0.0], [-68.53644320405778, 45.371104196241674, 0.0], [-68.53631880405794, 45.37106879624173, 0.0], [-68.53619447072481, 45.371033396241785, 0.0], [-68.53607020405832, 45.370998129575185, 0.0], [-68.53594580405854, 45.37096272957524, 0.0], [-68.53582147072541, 45.37092739624194, 0.0], [-68.53569720405892, 45.370891996241994, 0.0], [-68.53559640405905, 45.37088332957535, 0.0]], "type": "LineString"}, "id": "978", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733772", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.53845740405461, 45.36872539624534, -68.53736540405635, 45.36890159624511], "geometry": {"coordinates": [[-68.53736540405635, 45.36878399624527, 0.0], [-68.53748640405615, 45.36882299624523, 0.0], [-68.53760840405596, 45.36886232957846, 0.0], [-68.53773027072242, 45.36890159624511, 0.0], [-68.53782347072229, 45.368878996245144, 0.0], [-68.53795027072209, 45.3688483295785, 0.0], [-68.5380770707219, 45.368817529578564, 0.0], [-68.538203804055, 45.368786796245274, 0.0], [-68.5383306040548, 45.36875612957863, 0.0], [-68.53845740405461, 45.36872539624534, 0.0]], "type": "LineString"}, "id": "979", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733784", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.547033670708, 45.36385412958629, -68.53845740405461, 45.36872539624534], "geometry": {"coordinates": [[-68.53845740405461, 45.36872539624534, 0.0], [-68.5407360040511, 45.36664079624859, 0.0], [-68.54367667071318, 45.36541739625051, 0.0], [-68.54454727071186, 45.364680129585, 0.0], [-68.547033670708, 45.36385412958629, 0.0]], "type": "LineString"}, "id": "980", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733794", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.53845740405461, 45.36872539624534, -68.5374292707229, 45.370940396241906], "geometry": {"coordinates": [[-68.5374292707229, 45.370940396241906, 0.0], [-68.53845740405461, 45.36872539624534, 0.0]], "type": "LineString"}, "id": "981", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733786", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.55460900402954, 45.35851039626124, -68.547033670708, 45.36385412958629], "geometry": {"coordinates": [[-68.547033670708, 45.36385412958629, 0.0], [-68.54709420404123, 45.3635055295868, 0.0], [-68.54816840403953, 45.362285396255345, 0.0], [-68.55062700403573, 45.36043552959154, 0.0], [-68.55384047069742, 45.35900639626044, 0.0], [-68.55460900402954, 45.35851039626124, 0.0]], "type": "LineString"}, "id": "982", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733808", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.56509467067997, 45.351772529605, -68.55460900402954, 45.35851039626124], "geometry": {"coordinates": [[-68.55460900402954, 45.35851039626124, 0.0], [-68.55701647069247, 45.35678119626391, 0.0], [-68.55857220402339, 45.35618719626484, 0.0], [-68.56172920401849, 45.35356399626892, 0.0], [-68.56509467067997, 45.351772529605, 0.0]], "type": "LineString"}, "id": "983", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733824", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.58487167064925, 45.340672796288914, -68.56509467067997, 45.351772529605], "geometry": {"coordinates": [[-68.56509467067997, 45.351772529605, 0.0], [-68.57178487066955, 45.35093912960633, 0.0], [-68.57462267066518, 45.34995652960782, 0.0], [-68.57697840399481, 45.348347596276994, 0.0], [-68.58062407065586, 45.34411892961691, 0.0], [-68.58424280398356, 45.34172339628725, 0.0], [-68.58487167064925, 45.340672796288914, 0.0]], "type": "LineString"}, "id": "984", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733836", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.58777280397805, 45.338652596292036, -68.58487167064925, 45.340672796288914], "geometry": {"coordinates": [[-68.58487167064925, 45.340672796288914, 0.0], [-68.58503360398231, 45.340509596289166, 0.0], [-68.58635707064695, 45.33980132962358, 0.0], [-68.58777280397805, 45.338652596292036, 0.0]], "type": "LineString"}, "id": "985", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733840", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.59273820397038, 45.3335747962999, -68.58777280397805, 45.338652596292036], "geometry": {"coordinates": [[-68.58777280397805, 45.338652596292036, 0.0], [-68.58875740397656, 45.33675699629498, 0.0], [-68.59010340397447, 45.335330996297216, 0.0], [-68.59273820397038, 45.3335747962999, 0.0]], "type": "LineString"}, "id": "986", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733848", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.61272260393935, 45.32013079632077, -68.59273820397038, 45.3335747962999], "geometry": {"coordinates": [[-68.59273820397038, 45.3335747962999, 0.0], [-68.59295327063671, 45.33343139630017, 0.0], [-68.59715467063018, 45.331420329636614, 0.0], [-68.60089260395773, 45.329180929640074, 0.0], [-68.60573467061687, 45.32520232964623, 0.0], [-68.60880567061207, 45.323217529649355, 0.0], [-68.61151520394122, 45.32076319631983, 0.0], [-68.61272260393935, 45.32013079632077, 0.0]], "type": "LineString"}, "id": "987", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733856", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.62234107059106, 45.31783752965771, -68.61272260393935, 45.32013079632077], "geometry": {"coordinates": [[-68.61272260393935, 45.32013079632077, 0.0], [-68.61438287060344, 45.3192611296555, 0.0], [-68.61726927059897, 45.318156929657164, 0.0], [-68.61942640392897, 45.31834479632357, 0.0], [-68.62234107059106, 45.31783752965771, 0.0]], "type": "LineString"}, "id": "988", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733860", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.62700367058386, 45.31605352966045, -68.62234107059106, 45.31783752965771], "geometry": {"coordinates": [[-68.62234107059106, 45.31783752965771, 0.0], [-68.62700367058386, 45.31605352966045, 0.0]], "type": "LineString"}, "id": "989", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733864", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.62947747058001, 45.314600396329354, -68.62700367058386, 45.31605352966045], "geometry": {"coordinates": [[-68.62700367058386, 45.31605352966045, 0.0], [-68.62947747058001, 45.314600396329354, 0.0]], "type": "LineString"}, "id": "990", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733868", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.63004680391248, 45.314600396329354, -68.62947747058001, 45.315176329661824], "geometry": {"coordinates": [[-68.62947747058001, 45.314600396329354, 0.0], [-68.62954520391321, 45.314676396329276, 0.0], [-68.62961640391313, 45.31475632966249, 0.0], [-68.629687603913, 45.31483632966234, 0.0], [-68.62975880391292, 45.314916329662196, 0.0], [-68.62983000391279, 45.31499632966211, 0.0], [-68.62990120391271, 45.31507632966196, 0.0], [-68.63004680391248, 45.315176329661824, 0.0]], "type": "LineString"}, "id": "991", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733870", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.63165600390994, 45.30465912967816, -68.62871900391451, 45.314600396329354], "geometry": {"coordinates": [[-68.62947747058001, 45.314600396329354, 0.0], [-68.63066040391152, 45.31333719633136, 0.0], [-68.63165600390994, 45.31052492966904, 0.0], [-68.63062200391158, 45.308995929671426, 0.0], [-68.63073607057805, 45.30783792967321, 0.0], [-68.63047600391178, 45.30712699634097, 0.0], [-68.62871900391451, 45.30465912967816, 0.0]], "type": "LineString"}, "id": "992", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733880", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.63358187057366, 45.29175592969818, -68.62541460391964, 45.30465912967816], "geometry": {"coordinates": [[-68.62871900391451, 45.30465912967816, 0.0], [-68.62684787058407, 45.30334912968016, 0.0], [-68.62576340391911, 45.301940796349015, 0.0], [-68.62541460391964, 45.30055479635121, 0.0], [-68.62607407058528, 45.298985529686945, 0.0], [-68.62706340391708, 45.298404329687855, 0.0], [-68.62764047058283, 45.297474329689294, 0.0], [-68.6292258705804, 45.29636099635769, 0.0], [-68.6308238705779, 45.294331196360815, 0.0], [-68.63292247057467, 45.29332519636239, 0.0], [-68.63358187057366, 45.29175592969818, 0.0]], "type": "LineString"}, "id": "993", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733892", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.63955387056438, 45.285518596374516, -68.63358187057366, 45.29175592969818], "geometry": {"coordinates": [[-68.63358187057366, 45.29175592969818, 0.0], [-68.63368340390679, 45.29151439636519, 0.0], [-68.6343998039057, 45.29113879636577, 0.0], [-68.63579460390355, 45.2895917963682, 0.0], [-68.63765227056734, 45.28827279637022, 0.0], [-68.63853327056597, 45.28661852970612, 0.0], [-68.63955387056438, 45.285518596374516, 0.0]], "type": "LineString"}, "id": "994", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733900", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.6424424705599, 45.272513129728054, -68.63955387056438, 45.285518596374516], "geometry": {"coordinates": [[-68.63955387056438, 45.285518596374516, 0.0], [-68.63960387056432, 45.28185259638019, 0.0], [-68.6408204705624, 45.27895539638473, 0.0], [-68.64163820389444, 45.278338396385664, 0.0], [-68.64229707056012, 45.27676912972146, 0.0], [-68.6424424705599, 45.27509259639072, 0.0], [-68.64180180389423, 45.27351459639317, 0.0], [-68.6420360705605, 45.272513129728054, 0.0]], "type": "LineString"}, "id": "995", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733922", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.64848820388386, 45.2504905297622, -68.64609160388756, 45.25378572975711], "geometry": {"coordinates": [[-68.64609160388756, 45.25378572975711, 0.0], [-68.64651807055355, 45.25296739642505, 0.0], [-68.64743680388545, 45.25210899642639, 0.0], [-68.64794340388465, 45.250901929761596, 0.0], [-68.64848820388386, 45.2504905297622, 0.0]], "type": "LineString"}, "id": "996", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733954", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.64848820388386, 45.24996099642971, -68.64667327055332, 45.25050399642885], "geometry": {"coordinates": [[-68.64848820388386, 45.2504905297622, 0.0], [-68.64845927055052, 45.25049119642887, 0.0], [-68.64832547055073, 45.250494396428905, 0.0], [-68.64819167055094, 45.250497596428886, 0.0], [-68.6480580038845, 45.25050079642887, 0.0], [-68.64792420388471, 45.25050399642885, 0.0], [-68.64779587055159, 45.2504771964289, 0.0], [-68.64766747055177, 45.25045039642896, 0.0], [-68.64753920388529, 45.250423596429016, 0.0], [-68.64741087055216, 45.250396796429015, 0.0], [-68.6472824705524, 45.25036999642907, 0.0], [-68.64715420388592, 45.25034319642913, 0.0], [-68.6470258705528, 45.250316396429184, 0.0], [-68.64689747055297, 45.250289596429184, 0.0], [-68.64684487055302, 45.2502119964293, 0.0], [-68.64678720388645, 45.25012679642947, 0.0], [-68.64672947055323, 45.25004159642958, 0.0], [-68.64667327055332, 45.24996099642971, 0.0]], "type": "LineString"}, "id": "997", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733956", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.65287827054368, 45.24581379643615, -68.64848820388386, 45.2504905297622], "geometry": {"coordinates": [[-68.64848820388386, 45.2504905297622, 0.0], [-68.64858947055035, 45.25024912976261, 0.0], [-68.65242247054437, 45.247767329766475, 0.0], [-68.65287827054368, 45.246680996434804, 0.0], [-68.65249780387762, 45.24581379643615, 0.0]], "type": "LineString"}, "id": "998", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733962", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.65328887054307, 45.23874612978045, -68.6520652038783, 45.24581379643615], "geometry": {"coordinates": [[-68.65249780387762, 45.24581379643615, 0.0], [-68.65328887054307, 45.24348459643977, 0.0], [-68.65220480387808, 45.242076729775306, 0.0], [-68.6520652038783, 45.241522396442804, 0.0], [-68.65240047054442, 45.240279596444736, 0.0], [-68.65322987054316, 45.23874612978045, 0.0]], "type": "LineString"}, "id": "999", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733964", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.64803500388456, 45.20794559649494, -68.63210840390929, 45.22230139647263], "geometry": {"coordinates": [[-68.64803500388456, 45.22230139647263, 0.0], [-68.64704020388609, 45.22156852980709, 0.0], [-68.64583620388794, 45.220004196476225, 0.0], [-68.6458676705546, 45.219485729810344, 0.0], [-68.64153367056127, 45.21385412981908, 0.0], [-68.63962680389761, 45.21174892982236, 0.0], [-68.63710567056819, 45.20977792982541, 0.0], [-68.63462280390536, 45.20860252982726, 0.0], [-68.63210840390929, 45.20794559649494, 0.0]], "type": "LineString"}, "id": "1000", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734024", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.63210840390929, 45.19363319651717, -68.61765767059836, 45.20794559649494], "geometry": {"coordinates": [[-68.63210840390929, 45.20794559649494, 0.0], [-68.62921407058042, 45.20642152983061, 0.0], [-68.62348920392265, 45.19879152984248, 0.0], [-68.62136787059262, 45.19808532984359, 0.0], [-68.61974060392845, 45.19708839651179, 0.0], [-68.61877820392993, 45.195836929847076, 0.0], [-68.61825907059745, 45.194415529849266, 0.0], [-68.61765767059836, 45.19363319651717, 0.0]], "type": "LineString"}, "id": "1001", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734046", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.62129260392607, 45.18558339652964, -68.61765767059836, 45.19363319651717], "geometry": {"coordinates": [[-68.61765767059836, 45.19363319651717, 0.0], [-68.61870267059675, 45.19070112985503, 0.0], [-68.61883580392987, 45.1899413298562, 0.0], [-68.61826607059743, 45.18864059652492, 0.0], [-68.61877267059663, 45.18743379652676, 0.0], [-68.61936787059568, 45.18690192986094, 0.0], [-68.62091907059329, 45.186307529861836, 0.0], [-68.62129260392607, 45.18586059652921, 0.0], [-68.62122300392616, 45.18558339652964, 0.0]], "type": "LineString"}, "id": "1002", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734066", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.62866140391463, 45.17250992988329, -68.62122300392616, 45.18558339652964], "geometry": {"coordinates": [[-68.62122300392616, 45.18558339652964, 0.0], [-68.62166620392549, 45.185413596529884, 0.0], [-68.62434427058798, 45.1812479298697, 0.0], [-68.62531287058647, 45.18026912987119, 0.0], [-68.62644600391803, 45.178011996541386, 0.0], [-68.6270410039171, 45.17748012987556, 0.0], [-68.62866140391463, 45.17361839654819, 0.0], [-68.62838273724839, 45.17250992988329, 0.0]], "type": "LineString"}, "id": "1003", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734084", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.63363567057354, 45.164419929895814, -68.62838273724839, 45.17250992988329], "geometry": {"coordinates": [[-68.62838273724839, 45.17250992988329, 0.0], [-68.62848407058158, 45.17226859655028, 0.0], [-68.62881947058105, 45.17102599655226, 0.0], [-68.62958527057987, 45.17052992988636, 0.0], [-68.63026260391212, 45.169358929888176, 0.0], [-68.63147140391027, 45.168692929889176, 0.0], [-68.63194607057619, 45.168004529890254, 0.0], [-68.63363567057354, 45.164419929895814, 0.0]], "type": "LineString"}, "id": "1004", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734106", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.63659267056897, 45.164419929895814, -68.63363567057354, 45.16905032988865], "geometry": {"coordinates": [[-68.63363567057354, 45.164419929895814, 0.0], [-68.63372960390672, 45.164481996562415, 0.0], [-68.63382727057325, 45.16454652989563, 0.0], [-68.63392487057308, 45.1646109298955, 0.0], [-68.63402260390626, 45.164675396562075, 0.0], [-68.6341202705728, 45.164739796562, 0.0], [-68.63421787057263, 45.16480432989522, 0.0], [-68.63434607057246, 45.16483112989516, 0.0], [-68.6344742039056, 45.16485792989516, 0.0], [-68.63460240390538, 45.16488472989511, 0.0], [-68.63473060390521, 45.16491152989505, 0.0], [-68.63485880390499, 45.164938329894994, 0.0], [-68.63498687057148, 45.164965129894995, 0.0], [-68.63511507057126, 45.16499192989494, 0.0], [-68.63524327057104, 45.16501872989488, 0.0], [-68.63527060390436, 45.16505419656153, 0.0], [-68.63533440390427, 45.165137196561375, 0.0], [-68.63539807057083, 45.16522019656122, 0.0], [-68.63546187057074, 45.165303129894426, 0.0], [-68.63552567057064, 45.16538612989433, 0.0], [-68.6355894705705, 45.16546899656083, 0.0], [-68.6356532705704, 45.16555199656074, 0.0], [-68.63571707057031, 45.16563492989394, 0.0], [-68.63578087057022, 45.16571792989379, 0.0], [-68.63584467057012, 45.16580079656035, 0.0], [-68.63584440390343, 45.165802396560366, 0.0], [-68.63582927057013, 45.1658961965602, 0.0], [-68.63581420390352, 45.16598999656003, 0.0], [-68.63579907057022, 45.16608379655992, 0.0], [-68.63578400390355, 45.16617759655975, 0.0], [-68.63576887057025, 45.16627139655964, 0.0], [-68.63575367057024, 45.16636519655947, 0.0], [-68.63573860390363, 45.1664589965593, 0.0], [-68.63572347057033, 45.16655279655919, 0.0], [-68.63570840390366, 45.166646529892375, 0.0], [-68.63569327057036, 45.16674032989221, 0.0], [-68.6356782039037, 45.166834129892095, 0.0], [-68.63566307057039, 45.166927929891926, 0.0], [-68.63564800390378, 45.16702172989176, 0.0], [-68.63563287057048, 45.167115529891646, 0.0], [-68.63561780390381, 45.16720932989148, 0.0], [-68.6356026705705, 45.167303129891366, 0.0], [-68.6355874705705, 45.1673969298912, 0.0], [-68.6355724039039, 45.16749072989103, 0.0], [-68.63555727057059, 45.16758452989092, 0.0], [-68.63554220390392, 45.167678196557404, 0.0], [-68.63552707057062, 45.16777199655729, 0.0], [-68.63551200390395, 45.16786579655712, 0.0], [-68.63549687057065, 45.16795959655701, 0.0], [-68.63551880390395, 45.16799552989028, 0.0], [-68.63557167057053, 45.16808219655678, 0.0], [-68.63562447057046, 45.16816892988999, 0.0], [-68.63567740390374, 45.16825559655655, 0.0], [-68.63573027057032, 45.16834219655641, 0.0], [-68.63578320390354, 45.168428929889615, 0.0], [-68.63583607057012, 45.16851559655612, 0.0], [-68.6358890039034, 45.168602329889325, 0.0], [-68.63594187056998, 45.168688996555886, 0.0], [-68.6359948039032, 45.168775729889035, 0.0], [-68.63604767056984, 45.168862396555596, 0.0], [-68.63605420390314, 45.16886359655558, 0.0], [-68.63618360390291, 45.168887196555545, 0.0], [-68.63631307056937, 45.16891079655551, 0.0], [-68.6364424705692, 45.16893439655547, 0.0], [-68.63659267056897, 45.16905032988865, 0.0]], "type": "LineString"}, "id": "1005", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734108", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.63373680390674, 45.14911272991958, -68.62211100392477, 45.164419929895814], "geometry": {"coordinates": [[-68.63363567057354, 45.164419929895814, 0.0], [-68.63373680390674, 45.16417859656286, 0.0], [-68.63338860390729, 45.16279312989832, 0.0], [-68.63182507057638, 45.16075959656814, 0.0], [-68.63033780391203, 45.16031719656888, 0.0], [-68.62992647057933, 45.1599685965694, 0.0], [-68.62872387058115, 45.158404396571825, 0.0], [-68.6283948705817, 45.15741659657334, 0.0], [-68.62666060391774, 45.15534739657659, 0.0], [-68.62450280392108, 45.153845729912234, 0.0], [-68.62211720392474, 45.151114929916446, 0.0], [-68.62211100392477, 45.14980092991851, 0.0], [-68.62258560392405, 45.14911272991958, 0.0]], "type": "LineString"}, "id": "1006", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734110", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.62258560392405, 45.142075729930525, -68.61830867059734, 45.14911272991958], "geometry": {"coordinates": [[-68.62258560392405, 45.14911272991958, 0.0], [-68.62018127059446, 45.14598412992444, 0.0], [-68.61983960392831, 45.14591259659119, 0.0], [-68.6191184039294, 45.14497399659268, 0.0], [-68.61902987059625, 45.14429919659369, 0.0], [-68.61830867059734, 45.14336059659519, 0.0], [-68.61875487059666, 45.142075729930525, 0.0]], "type": "LineString"}, "id": "1007", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734120", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.62049787059397, 45.140799929932484, -68.61875487059666, 45.142075729930525], "geometry": {"coordinates": [[-68.61875487059666, 45.142075729930525, 0.0], [-68.62049787059397, 45.140799929932484, 0.0]], "type": "LineString"}, "id": "1008", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734124", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.62337427058947, 45.142579996596396, -68.62331380392288, 45.14262099659635], "geometry": {"coordinates": [[-68.62331380392288, 45.14259172992968, 0.0], [-68.62333680392288, 45.142579996596396, 0.0], [-68.62337427058947, 45.14262099659635, 0.0]], "type": "LineString"}, "id": "1009", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734122", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.62331380392288, 45.140799929932484, -68.62049787059397, 45.14285579659594], "geometry": {"coordinates": [[-68.62049787059397, 45.140799929932484, 0.0], [-68.62056167059387, 45.140882796599044, 0.0], [-68.62062560392707, 45.14096579659889, 0.0], [-68.62068940392697, 45.141048729932095, 0.0], [-68.6207530039269, 45.14113172993194, 0.0], [-68.62081687059344, 45.141214729931846, 0.0], [-68.62088047059336, 45.141297596598406, 0.0], [-68.62094427059327, 45.14138059659825, 0.0], [-68.62100800392648, 45.14146352993146, 0.0], [-68.62107167059304, 45.141546529931304, 0.0], [-68.62113547059295, 45.141629396597864, 0.0], [-68.62119920392621, 45.14171239659771, 0.0], [-68.62126300392612, 45.141795396597615, 0.0], [-68.62132667059268, 45.14187832993082, 0.0], [-68.62139047059259, 45.141961329930666, 0.0], [-68.6214542039258, 45.142044196597226, 0.0], [-68.6215180039257, 45.14212719659707, 0.0], [-68.62158167059226, 45.14221012993028, 0.0], [-68.62164547059217, 45.14229312993018, 0.0], [-68.62170920392538, 45.14237612993003, 0.0], [-68.62177300392528, 45.14245899659659, 0.0], [-68.62183667059185, 45.142541996596435, 0.0], [-68.62190047059175, 45.14262492992964, 0.0], [-68.62194047059171, 45.142676996596265, 0.0], [-68.62206860392484, 45.14270379659621, 0.0], [-68.62219667059134, 45.14273059659615, 0.0], [-68.62232480392447, 45.142757396596096, 0.0], [-68.62245300392425, 45.1427841965961, 0.0], [-68.62258120392403, 45.142811129929385, 0.0], [-68.62270920392388, 45.14283792992933, 0.0], [-68.6227944705904, 45.14285579659594, 0.0], [-68.62290320392356, 45.14280059659603, 0.0], [-68.62301147059003, 45.142745396596126, 0.0], [-68.6231198705899, 45.142690329929565, 0.0], [-68.62322827058972, 45.14263512992966, 0.0], [-68.62331380392288, 45.14259172992968, 0.0]], "type": "LineString"}, "id": "1010", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734126", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.62312367058985, 45.13675552993874, -68.62049787059397, 45.140799929932484], "geometry": {"coordinates": [[-68.62049787059397, 45.140799929932484, 0.0], [-68.62120660392617, 45.139110529935124, 0.0], [-68.62312367058985, 45.13675552993874, 0.0]], "type": "LineString"}, "id": "1011", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734130", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.62416140392162, 45.136053729939874, -68.62312367058985, 45.13675552993874], "geometry": {"coordinates": [[-68.62312367058985, 45.13675552993874, 0.0], [-68.62416140392162, 45.136053729939874, 0.0]], "type": "LineString"}, "id": "1012", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743122", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.63302360390782, 45.12688292995409, -68.62416140392162, 45.136053729939874], "geometry": {"coordinates": [[-68.62416140392162, 45.136053729939874, 0.0], [-68.62437327058791, 45.135769929940295, 0.0], [-68.62552147058614, 45.13502579660809, 0.0], [-68.629070403914, 45.13143712994702, 0.0], [-68.63075300391137, 45.13008292994914, 0.0], [-68.63220767057578, 45.127499729953115, 0.0], [-68.63302360390782, 45.12688292995409, 0.0]], "type": "LineString"}, "id": "1013", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734150", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.63302360390782, 45.12418332995827, -68.6280906039155, 45.12706619662049], "geometry": {"coordinates": [[-68.63302360390782, 45.12688292995409, 0.0], [-68.63292340390797, 45.126901196620736, 0.0], [-68.6327940039082, 45.1269247966207, 0.0], [-68.63266467057508, 45.12694839662066, 0.0], [-68.63253527057526, 45.126971929953925, 0.0], [-68.63240587057544, 45.12699552995389, 0.0], [-68.63227660390902, 45.12701912995385, 0.0], [-68.6321472039092, 45.127042729953814, 0.0], [-68.63201787057608, 45.12706619662049, 0.0], [-68.63192847057621, 45.127042529953826, 0.0], [-68.63180347057641, 45.127009329953864, 0.0], [-68.63167840390992, 45.1269761966206, 0.0], [-68.63155327057677, 45.12694299662064, 0.0], [-68.63142827057698, 45.12690979662074, 0.0], [-68.63130320391053, 45.126876596620775, 0.0], [-68.63117807057739, 45.126843396620814, 0.0], [-68.63105307057754, 45.12681019662085, 0.0], [-68.6309280039111, 45.12677699662089, 0.0], [-68.63080287057795, 45.126743796620985, 0.0], [-68.63067787057815, 45.126710596621024, 0.0], [-68.63055280391166, 45.12667752995441, 0.0], [-68.63042767057851, 45.126644329954445, 0.0], [-68.63030267057871, 45.12661112995448, 0.0], [-68.63017760391227, 45.12657792995458, 0.0], [-68.63005247057913, 45.12654472995462, 0.0], [-68.62992747057933, 45.126511529954655, 0.0], [-68.62980240391283, 45.12647832995469, 0.0], [-68.62967727057969, 45.12644512995479, 0.0], [-68.62965007057971, 45.1264095966215, 0.0], [-68.62958627057986, 45.12632672995494, 0.0], [-68.62952260391324, 45.12624372995509, 0.0], [-68.6294588039134, 45.12616079662189, 0.0], [-68.62939507058013, 45.126077796621985, 0.0], [-68.62933127058022, 45.12599492995548, 0.0], [-68.62926760391366, 45.12591192995558, 0.0], [-68.62920387058045, 45.125828996622374, 0.0], [-68.62914007058055, 45.12574599662253, 0.0], [-68.62907640391398, 45.12566312995597, 0.0], [-68.62907400391396, 45.12564859662268, 0.0], [-68.62905840391397, 45.12555492995614, 0.0], [-68.62904280391399, 45.12546112995631, 0.0], [-68.62902720391406, 45.12536739662312, 0.0], [-68.62901167058072, 45.12527359662323, 0.0], [-68.62899607058074, 45.125179929956744, 0.0], [-68.62898047058076, 45.125086196623556, 0.0], [-68.62896487058083, 45.12499239662367, 0.0], [-68.62894927058085, 45.12489872995718, 0.0], [-68.62893380391421, 45.12480492995729, 0.0], [-68.62891820391422, 45.124711196624105, 0.0], [-68.62887627058092, 45.124656729957564, 0.0], [-68.62881260391435, 45.12457372995766, 0.0], [-68.62874880391445, 45.12449079662446, 0.0], [-68.62868507058124, 45.12440779662461, 0.0], [-68.62862140391468, 45.12432492995805, 0.0], [-68.62855760391477, 45.1242419299582, 0.0], [-68.62846387058158, 45.12422639662486, 0.0], [-68.6283338705818, 45.12420492995824, 0.0], [-68.62820380391531, 45.12418332995827, 0.0], [-68.6280906039155, 45.124261729958164, 0.0]], "type": "LineString"}, "id": "1014", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734152", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.64051507056286, 45.1220847966282, -68.63302360390782, 45.12688292995409], "geometry": {"coordinates": [[-68.63302360390782, 45.12688292995409, 0.0], [-68.63318487057427, 45.12671979662099, 0.0], [-68.63502860390474, 45.12520252995671, 0.0], [-68.63635680390269, 45.12469292995746, 0.0], [-68.63743207056768, 45.124786596624006, 0.0], [-68.63853900389927, 45.12436199662466, 0.0], [-68.63928520389811, 45.123468129959406, 0.0], [-68.63999980389701, 45.123092596626634, 0.0], [-68.64051507056286, 45.1220847966282, 0.0]], "type": "LineString"}, "id": "1015", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734158", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.6441798705572, 45.11976719663181, -68.64051507056286, 45.1220847966282], "geometry": {"coordinates": [[-68.64051507056286, 45.1220847966282, 0.0], [-68.6435540038915, 45.12081752996352, 0.0], [-68.6441798705572, 45.11976719663181, 0.0]], "type": "LineString"}, "id": "1016", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734164", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.64051507056286, 45.11977399663181, -68.63443960390566, 45.1220847966282], "geometry": {"coordinates": [[-68.63447407057225, 45.11977399663181, 0.0], [-68.63445687057231, 45.11986679663164, 0.0], [-68.63443960390566, 45.119960396631484, 0.0], [-68.63448060390556, 45.12000199663146, 0.0], [-68.63455687057211, 45.12007952996464, 0.0], [-68.63463320390537, 45.12015699663118, 0.0], [-68.63470947057186, 45.120234396631076, 0.0], [-68.63478587057176, 45.12031192996426, 0.0], [-68.63486220390496, 45.120389396630856, 0.0], [-68.63493847057151, 45.120466796630694, 0.0], [-68.63501480390477, 45.120544329963934, 0.0], [-68.63509107057132, 45.12062179663047, 0.0], [-68.6351486705712, 45.120637329963756, 0.0], [-68.63527347057101, 45.120670996630395, 0.0], [-68.63539827057082, 45.12070459663033, 0.0], [-68.63552307057063, 45.120738329963615, 0.0], [-68.63564787057044, 45.12077192996355, 0.0], [-68.63577267057025, 45.12080559663019, 0.0], [-68.63589747057006, 45.120839329963474, 0.0], [-68.63602227056987, 45.12087292996341, 0.0], [-68.63614707056968, 45.12090659663005, 0.0], [-68.63627187056949, 45.12094032996333, 0.0], [-68.63639667056924, 45.12097392996327, 0.0], [-68.63652147056905, 45.12100759662985, 0.0], [-68.63664627056886, 45.121041329963134, 0.0], [-68.63677107056867, 45.12107492996313, 0.0], [-68.63689587056848, 45.12110859662971, 0.0], [-68.63702067056829, 45.12114232996299, 0.0], [-68.6371454705681, 45.12117592996293, 0.0], [-68.63727027056791, 45.12120959662957, 0.0], [-68.63739507056772, 45.12124332996285, 0.0], [-68.63751987056753, 45.12127692996279, 0.0], [-68.63764467056734, 45.12131059662943, 0.0], [-68.63776947056715, 45.12134432996271, 0.0], [-68.63789427056696, 45.12137792996265, 0.0], [-68.63801907056677, 45.12141159662923, 0.0], [-68.63814387056658, 45.12144519662917, 0.0], [-68.63826867056639, 45.12147892996245, 0.0], [-68.63839347056614, 45.12151259662909, 0.0], [-68.63851827056595, 45.121546196629026, 0.0], [-68.63864307056576, 45.12157992996231, 0.0], [-68.63876787056557, 45.12161359662895, 0.0], [-68.63889267056538, 45.121647196628885, 0.0], [-68.6390174705652, 45.12168092996217, 0.0], [-68.639142270565, 45.121714529962105, 0.0], [-68.63926707056481, 45.121748196628744, 0.0], [-68.63939187056462, 45.121781929962026, 0.0], [-68.63951667056443, 45.121815529961964, 0.0], [-68.63964147056424, 45.121849196628546, 0.0], [-68.63976627056405, 45.12188292996183, 0.0], [-68.63989107056386, 45.12191652996182, 0.0], [-68.64001587056367, 45.121950196628404, 0.0], [-68.64014067056348, 45.12198379662834, 0.0], [-68.64026547056324, 45.122017529961624, 0.0], [-68.64039027056305, 45.12205119662826, 0.0], [-68.64051507056286, 45.1220847966282, 0.0]], "type": "LineString"}, "id": "1017", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734160", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.6441798705572, 45.113940129974196, -68.64142080389479, 45.11976719663181], "geometry": {"coordinates": [[-68.6441798705572, 45.11976719663181, 0.0], [-68.643641670558, 45.11794839663463, 0.0], [-68.64142080389479, 45.113940129974196, 0.0]], "type": "LineString"}, "id": "1018", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734180", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.65910447053403, 45.10320272999087, -68.64142080389479, 45.113940129974196], "geometry": {"coordinates": [[-68.64142080389479, 45.113940129974196, 0.0], [-68.64176807056094, 45.11178159664422, 0.0], [-68.64250747055979, 45.10957392998097, 0.0], [-68.6435184705582, 45.10716059665134, 0.0], [-68.64468807055641, 45.10569912998699, 0.0], [-68.64623720388732, 45.1051045299879, 0.0], [-68.64908247054956, 45.10451859665545, 0.0], [-68.653332070543, 45.10501392998805, 0.0], [-68.65558307053948, 45.10495972998814, 0.0], [-68.65713227053709, 45.104364996655704, 0.0], [-68.65910447053403, 45.10320272999087, 0.0]], "type": "LineString"}, "id": "1019", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734194", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.66237807052892, 45.09002413001127, -68.65910447053403, 45.10320272999087], "geometry": {"coordinates": [[-68.65910447053403, 45.10320272999087, 0.0], [-68.66182240386314, 45.10114632999404, 0.0], [-68.66237807052892, 45.09981899666275, 0.0], [-68.66180840386318, 45.09851872999809, 0.0], [-68.6620922705294, 45.09739699666653, 0.0], [-68.66134480386387, 45.09474733000394, 0.0], [-68.66133767053054, 45.093433530005996, 0.0], [-68.66066700386494, 45.09237459667429, 0.0], [-68.66024887053226, 45.090712330010206, 0.0], [-68.66072267053153, 45.09002413001127, 0.0]], "type": "LineString"}, "id": "1020", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734198", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.66278900386163, 45.09002413001127, -68.66072267053153, 45.09137793000917], "geometry": {"coordinates": [[-68.66072267053153, 45.09002413001127, 0.0], [-68.66084267053134, 45.090065330011214, 0.0], [-68.66096280386449, 45.090106596677856, 0.0], [-68.66108287053095, 45.090147930011085, 0.0], [-68.66120287053076, 45.09018919667773, 0.0], [-68.66132300386391, 45.090230530010956, 0.0], [-68.66144307053037, 45.0902717966776, 0.0], [-68.66156307053018, 45.09031313001083, 0.0], [-68.66168320386333, 45.09035439667747, 0.0], [-68.66169640386335, 45.09035893001078, 0.0], [-68.66176020386325, 45.09044193001063, 0.0], [-68.66182380386311, 45.09052479667719, 0.0], [-68.66188767052972, 45.09060773001039, 0.0], [-68.66195127052958, 45.09069073001024, 0.0], [-68.66201520386284, 45.0907735966768, 0.0], [-68.66207880386276, 45.09085653001, 0.0], [-68.6621426705293, 45.09093939667656, 0.0], [-68.66220627052923, 45.09102239667641, 0.0], [-68.66227020386242, 45.09110533000961, 0.0], [-68.66233380386234, 45.09118819667617, 0.0], [-68.66239767052889, 45.091271130009375, 0.0], [-68.6624176705289, 45.09129719667601, 0.0], [-68.66254687052867, 45.09132079667597, 0.0], [-68.66267620386179, 45.091344396675936, 0.0], [-68.66278900386163, 45.09137793000917, 0.0]], "type": "LineString"}, "id": "1021", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734200", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.66339240386071, 45.07875613002881, -68.65993180386607, 45.09002413001127], "geometry": {"coordinates": [[-68.66072267053153, 45.09002413001127, 0.0], [-68.65993180386607, 45.08880879667987, 0.0], [-68.66339240386071, 45.082314996689945, 0.0], [-68.66303700386123, 45.07961613002743, 0.0], [-68.66237600386228, 45.07875613002881, 0.0]], "type": "LineString"}, "id": "1022", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734208", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.66300120386131, 45.07526619670085, -68.66237600386228, 45.07875613002881], "geometry": {"coordinates": [[-68.66237600386228, 45.07875613002881, 0.0], [-68.66282100386161, 45.07747133003079, 0.0], [-68.66244107052887, 45.076604530032114, 0.0], [-68.66300120386131, 45.07526619670085, 0.0]], "type": "LineString"}, "id": "1023", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1742990", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.66553047052406, 45.074101330036, -68.66300120386131, 45.07526619670085], "geometry": {"coordinates": [[-68.66300120386131, 45.07526619670085, 0.0], [-68.66304707052791, 45.07515653003435, 0.0], [-68.66553047052406, 45.074101330036, 0.0]], "type": "LineString"}, "id": "1024", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734210", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.66910527051851, 45.055417196731696, -68.66321480386097, 45.074101330036], "geometry": {"coordinates": [[-68.66553047052406, 45.074101330036, 0.0], [-68.66674940385548, 45.07251913003847, 0.0], [-68.66763407052076, 45.07217919670569, 0.0], [-68.66855000385272, 45.071320996707016, 0.0], [-68.66910527051851, 45.06999373004237, 0.0], [-68.66906680385188, 45.069198330043605, 0.0], [-68.66750447052101, 45.06716573004678, 0.0], [-68.66569480385715, 45.06350659671915, 0.0], [-68.66389227052662, 45.06116133005611, 0.0], [-68.66363280386031, 45.060450930057186, 0.0], [-68.66321480386097, 45.058788796726446, 0.0], [-68.66434720385922, 45.055417196731696, 0.0]], "type": "LineString"}, "id": "1025", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734218", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.66610247052319, 45.074101330036, -68.6654486705242, 45.075418130033995], "geometry": {"coordinates": [[-68.66610247052319, 45.075418130033995, 0.0], [-68.66607000385653, 45.07535439670073, 0.0], [-68.6659922705233, 45.07527759670086, 0.0], [-68.66591467052348, 45.07520093003433, 0.0], [-68.6658370038569, 45.07512413003445, 0.0], [-68.66575940385701, 45.07504733003452, 0.0], [-68.66568167052384, 45.07497059670135, 0.0], [-68.66560400385725, 45.074893796701474, 0.0], [-68.66552640385737, 45.07481699670154, 0.0], [-68.6654486705242, 45.07474033003501, 0.0], [-68.66545827052414, 45.0746651967018, 0.0], [-68.66547040385746, 45.074571196701925, 0.0], [-68.66548240385748, 45.074477196702105, 0.0], [-68.66549440385745, 45.07438319670223, 0.0], [-68.66550647052406, 45.0742893300357, 0.0], [-68.66551847052409, 45.07419533003588, 0.0], [-68.66553047052406, 45.074101330036, 0.0]], "type": "LineString"}, "id": "1026", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734212", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.65857973720148, 45.0525701967361, -68.6566836038711, 45.065115396716635], "geometry": {"coordinates": [[-68.656762803871, 45.065115396716635, 0.0], [-68.6566836038711, 45.06463953005073, 0.0], [-68.65718860387034, 45.06343299671926, 0.0], [-68.65679507053761, 45.05993879672468, 0.0], [-68.65790600386924, 45.05728439672879, 0.0], [-68.65781720386934, 45.056609730063144, 0.0], [-68.65832207053523, 45.05540313006503, 0.0], [-68.65818287053543, 45.05484913006592, 0.0], [-68.65857973720148, 45.0525701967361, 0.0]], "type": "LineString"}, "id": "1027", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734224", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.66434720385922, 45.047546996743904, -68.66196080386294, 45.055417196731696], "geometry": {"coordinates": [[-68.66434720385922, 45.055417196731696, 0.0], [-68.66380647052671, 45.05471359673277, 0.0], [-68.66244147052885, 45.05442799673324, 0.0], [-68.66196080386294, 45.053802596734215, 0.0], [-68.6627180705284, 45.05199273007031, 0.0], [-68.6630644038612, 45.04983453007367, 0.0], [-68.66295640386136, 45.04876213007532, 0.0], [-68.66216593719594, 45.047546996743904, 0.0]], "type": "LineString"}, "id": "1028", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734228", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.66216593719594, 45.047546996743904, -68.65857973720148, 45.0525701967361], "geometry": {"coordinates": [[-68.65857973720148, 45.0525701967361, 0.0], [-68.66026500386556, 45.048986330075024, 0.0], [-68.66216593719594, 45.047546996743904, 0.0]], "type": "LineString"}, "id": "1029", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734226", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.6575214705365, 45.01202153013236, -68.64289907055917, 45.03292859676657], "geometry": {"coordinates": [[-68.6575214705365, 45.03292859676657, 0.0], [-68.65436787054136, 45.0293817301054, 0.0], [-68.64987487054833, 45.023717196780865, 0.0], [-68.64921727054934, 45.02174253011731, 0.0], [-68.64753660388533, 45.019553596787375, 0.0], [-68.64574267055474, 45.018521796788946, 0.0], [-68.64389167055765, 45.01629699679239, 0.0], [-68.64292480389247, 45.01373259679639, 0.0], [-68.64289907055917, 45.01202153013236, 0.0]], "type": "LineString"}, "id": "1030", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734242", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.64347720389162, 45.00007413015089, -68.64276567055936, 45.01202153013236], "geometry": {"coordinates": [[-68.64289907055917, 45.01202153013236, 0.0], [-68.64289680389254, 45.01197293013246, 0.0], [-68.64289220389253, 45.01187859679925, 0.0], [-68.64288767055922, 45.01178433013274, 0.0], [-68.64288320389255, 45.01168999679953, 0.0], [-68.64287867055918, 45.011595730133024, 0.0], [-68.64287420389257, 45.01150139679987, 0.0], [-68.64286960389256, 45.01140713013331, 0.0], [-68.64286507055925, 45.011312796800155, 0.0], [-68.64286060389259, 45.01121853013365, 0.0], [-68.64285607055922, 45.01112419680044, 0.0], [-68.64285160389261, 45.01102993013393, 0.0], [-68.64284707055924, 45.01093559680072, 0.0], [-68.64284247055929, 45.01084133013421, 0.0], [-68.64283800389262, 45.010746996801004, 0.0], [-68.64283347055925, 45.01065259680115, 0.0], [-68.64282900389264, 45.01055833013464, 0.0], [-68.64282447055928, 45.010463996801434, 0.0], [-68.64282000389261, 45.010369730134926, 0.0], [-68.64281540389266, 45.010275396801774, 0.0], [-68.64281087055929, 45.01018113013521, 0.0], [-68.64280640389268, 45.01008679680206, 0.0], [-68.64280187055931, 45.00999253013555, 0.0], [-68.64279740389264, 45.00989819680234, 0.0], [-68.64279280389269, 45.00980393013583, 0.0], [-68.64278827055932, 45.00970959680262, 0.0], [-68.64278380389271, 45.009615330136114, 0.0], [-68.64277927055934, 45.009520996802905, 0.0], [-68.64277480389268, 45.0094267301364, 0.0], [-68.64277027055937, 45.00933239680319, 0.0], [-68.64276567055936, 45.009237996803336, 0.0], [-68.64276747055936, 45.0092311968034, 0.0], [-68.64279100389268, 45.009138330136864, 0.0], [-68.6428144705593, 45.009045396803685, 0.0], [-68.64283800389262, 45.00895253013715, 0.0], [-68.64286147055924, 45.00885973013726, 0.0], [-68.64288500389256, 45.00876679680408, 0.0], [-68.64290847055918, 45.00867393013755, 0.0], [-68.64293200389244, 45.00858099680437, 0.0], [-68.6429556038924, 45.008488130137835, 0.0], [-68.64297907055908, 45.008395196804656, 0.0], [-68.64300260389234, 45.00830239680482, 0.0], [-68.64302607055896, 45.00820953013829, 0.0], [-68.64304960389228, 45.00811659680511, 0.0], [-68.6430492038923, 45.00810893013846, 0.0], [-68.64304467055894, 45.00801459680525, 0.0], [-68.64304020389227, 45.007920330138745, 0.0], [-68.64303567055896, 45.007825996805536, 0.0], [-68.64303120389229, 45.00773173013903, 0.0], [-68.64302660389234, 45.00763739680582, 0.0], [-68.64302207055897, 45.00754299680597, 0.0], [-68.6430176038923, 45.00744873013946, 0.0], [-68.643013070559, 45.007354396806306, 0.0], [-68.64300860389233, 45.00726013013974, 0.0], [-68.64300400389237, 45.00716579680659, 0.0], [-68.642999470559, 45.00707153014008, 0.0], [-68.64299500389234, 45.00697719680687, 0.0], [-68.64299047055903, 45.006882930140364, 0.0], [-68.64298600389236, 45.006788596807155, 0.0], [-68.64298147055905, 45.00669433014065, 0.0], [-68.64297687055904, 45.00659999680744, 0.0], [-68.64297240389237, 45.00650573014093, 0.0], [-68.64296787055906, 45.00641139680772, 0.0], [-68.6429634038924, 45.00631713014121, 0.0], [-68.64295887055908, 45.00622279680806, 0.0], [-68.64295440389242, 45.006128530141496, 0.0], [-68.64296000389243, 45.00603559680832, 0.0], [-68.64296567055908, 45.00594133014181, 0.0], [-68.64297140389237, 45.005847130141944, 0.0], [-68.64297707055903, 45.00575279680879, 0.0], [-68.64298287055902, 45.00565853014223, 0.0], [-68.64298860389238, 45.00556433014242, 0.0], [-68.64299427055903, 45.00546999680921, 0.0], [-68.64300000389233, 45.0053757301427, 0.0], [-68.64300567055903, 45.005281396809494, 0.0], [-68.64301140389233, 45.00518719680963, 0.0], [-68.64301720389233, 45.00509293014312, 0.0], [-68.64302287055898, 45.00499859680997, 0.0], [-68.64302860389233, 45.004904330143404, 0.0], [-68.64303427055899, 45.00481013014354, 0.0], [-68.64304000389228, 45.00471579681039, 0.0], [-68.64304580389228, 45.00462153014388, 0.0], [-68.64305147055893, 45.004527330144015, 0.0], [-68.64305720389228, 45.004432996810806, 0.0], [-68.64306287055894, 45.0043387301443, 0.0], [-68.64306860389223, 45.00424439681109, 0.0], [-68.64307427055888, 45.00415019681128, 0.0], [-68.64308007055888, 45.004055930144716, 0.0], [-68.64308580389223, 45.003961596811564, 0.0], [-68.64309147055889, 45.0038673968117, 0.0], [-68.64309720389218, 45.00377313014519, 0.0], [-68.64310287055883, 45.00367879681198, 0.0], [-68.64310860389219, 45.003584530145474, 0.0], [-68.64311440389218, 45.00349033014561, 0.0], [-68.64312007055884, 45.0033959968124, 0.0], [-68.64312580389213, 45.00330173014589, 0.0], [-68.64313147055884, 45.00320739681274, 0.0], [-68.64313720389214, 45.003113196812876, 0.0], [-68.64314287055879, 45.00301893014637, 0.0], [-68.64315287055877, 45.00298179681306, 0.0], [-68.64317787055876, 45.00288913014657, 0.0], [-68.64320280389205, 45.00279653014667, 0.0], [-68.64322780389199, 45.00270379681348, 0.0], [-68.64325267055864, 45.00261113014699, 0.0], [-68.64327767055858, 45.0025183968138, 0.0], [-68.64330260389187, 45.00242573014725, 0.0], [-68.64332760389186, 45.00233299681406, 0.0], [-68.64335247055845, 45.00224033014757, 0.0], [-68.64337747055845, 45.00214759681438, 0.0], [-68.64340240389174, 45.002054930147835, 0.0], [-68.64342740389168, 45.001962196814645, 0.0], [-68.64345227055833, 45.001869530148156, 0.0], [-68.64347720389162, 45.001776796814966, 0.0], [-68.64347520389163, 45.0016825301484, 0.0], [-68.64347320389163, 45.00158819681525, 0.0], [-68.64347120389164, 45.001493796815396, 0.0], [-68.64346920389164, 45.00139953014889, 0.0], [-68.64346720389165, 45.001305130149035, 0.0], [-68.64346520389165, 45.001210796815826, 0.0], [-68.64346320389166, 45.00111639681597, 0.0], [-68.64346120389166, 45.001022130149465, 0.0], [-68.64345920389167, 45.00092773014961, 0.0], [-68.64345720389161, 45.000833396816404, 0.0], [-68.64345520389162, 45.00073899681655, 0.0], [-68.64345320389162, 45.00064473015004, 0.0], [-68.64345120389163, 45.00055033015019, 0.0], [-68.64344920389163, 45.00045599681698, 0.0], [-68.64344720389164, 45.00036159681713, 0.0], [-68.64344520389164, 45.00026733015062, 0.0], [-68.64344320389165, 45.00017293015077, 0.0], [-68.64344120389165, 45.00007859681756, 0.0], [-68.64344107055831, 45.00007413015089, 0.0]], "type": "LineString"}, "id": "1031", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734244", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.51067720409776, 45.38318652955627, -68.5055816707723, 45.384235796221276], "geometry": {"coordinates": [[-68.5055816707723, 45.38318652955627, 0.0], [-68.50928187076659, 45.38381292955529, 0.0], [-68.51067720409776, 45.384235796221276, 0.0]], "type": "LineString"}, "id": "1032", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734308", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.51305720409403, 45.384235796221276, -68.51067720409776, 45.38522172955311], "geometry": {"coordinates": [[-68.51067720409776, 45.384235796221276, 0.0], [-68.51188100409587, 45.38460059622071, 0.0], [-68.51305720409403, 45.38522172955311, 0.0]], "type": "LineString"}, "id": "1033", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734316", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.51620387075582, 45.384235796221276, -68.51067720409776, 45.38516159621986], "geometry": {"coordinates": [[-68.51067720409776, 45.384235796221276, 0.0], [-68.51620387075582, 45.38516159621986, 0.0]], "type": "LineString"}, "id": "1034", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734322", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.65811207053554, 45.068881996710786, -68.65686987053749, 45.06980639670934], "geometry": {"coordinates": [[-68.65811207053554, 45.06980639670934, 0.0], [-68.65686987053749, 45.068881996710786, 0.0]], "type": "LineString"}, "id": "1035", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734312", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.66300120386131, 45.06980639670934, -68.65811207053554, 45.07526619670085], "geometry": {"coordinates": [[-68.66300120386131, 45.07526619670085, 0.0], [-68.66012207053245, 45.07236479670536, 0.0], [-68.65811207053554, 45.06980639670934, 0.0]], "type": "LineString"}, "id": "1036", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734318", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.65811207053554, 45.065115396716635, -68.656762803871, 45.06980639670934], "geometry": {"coordinates": [[-68.65811207053554, 45.06980639670934, 0.0], [-68.65804607053565, 45.068899530044064, 0.0], [-68.65757220386973, 45.06720413004672, 0.0], [-68.656762803871, 45.065115396716635, 0.0]], "type": "LineString"}, "id": "1037", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734320", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.63940760389795, 44.98214679684543, -68.63871267056567, 44.98491659684112], "geometry": {"coordinates": [[-68.63940760389795, 44.98491659684112, 0.0], [-68.63876967056558, 44.983339596843564, 0.0], [-68.63871267056567, 44.98214679684543, 0.0]], "type": "LineString"}, "id": "1044", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736690", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.64477620388959, 44.98491659684112, -68.63940760389795, 45.00007413015089], "geometry": {"coordinates": [[-68.64344107055831, 45.00007413015089, 0.0], [-68.64344060389169, 45.00004999681761, 0.0], [-68.64343900389167, 44.99997359681777, 0.0], [-68.64343727055837, 44.99989719681787, 0.0], [-68.64343567055835, 44.99982079681797, 0.0], [-68.64343407055833, 44.99974453015142, 0.0], [-68.64343247055837, 44.999668130151576, 0.0], [-68.64344440389164, 44.99963559681828, 0.0], [-68.64347160389161, 44.9995617301517, 0.0], [-68.64349880389159, 44.99948779681847, 0.0], [-68.64352600389151, 44.999413930151945, 0.0], [-68.64355307055814, 44.999339930152075, 0.0], [-68.64358027055812, 44.99926599681885, 0.0], [-68.6436074705581, 44.99919213015227, 0.0], [-68.64363467055801, 44.9991181968191, 0.0], [-68.64366187055799, 44.99904419681917, 0.0], [-68.64368900389127, 44.998970330152645, 0.0], [-68.64371620389124, 44.99889639681942, 0.0], [-68.64374340389122, 44.998822530152836, 0.0], [-68.64377060389114, 44.998748530152966, 0.0], [-68.64379780389112, 44.99867459681974, 0.0], [-68.64382487055775, 44.998600730153214, 0.0], [-68.64385207055767, 44.99852679681999, 0.0], [-68.64387927055765, 44.99845279682012, 0.0], [-68.64390647055762, 44.998378930153535, 0.0], [-68.64393367055754, 44.99830499682031, 0.0], [-68.64396080389088, 44.99823113015378, 0.0], [-68.6439880038908, 44.99815713015391, 0.0], [-68.64401520389077, 44.99808319682069, 0.0], [-68.64404240389075, 44.998009330154105, 0.0], [-68.64406960389067, 44.99793539682088, 0.0], [-68.6440966705573, 44.99786153015435, 0.0], [-68.64412387055728, 44.99778753015448, 0.0], [-68.64415107055726, 44.99771359682126, 0.0], [-68.64417827055718, 44.997639730154674, 0.0], [-68.64420547055715, 44.997565796821505, 0.0], [-68.64423260389043, 44.99749179682158, 0.0], [-68.6442598038904, 44.99741793015505, 0.0], [-68.64428700389033, 44.997343996821826, 0.0], [-68.6443142038903, 44.99727013015524, 0.0], [-68.64434140389028, 44.99719613015537, 0.0], [-68.64436847055691, 44.99712219682215, 0.0], [-68.64439567055683, 44.99704833015562, 0.0], [-68.64442287055681, 44.996974396822395, 0.0], [-68.64445007055679, 44.996900396822525, 0.0], [-68.64447720389006, 44.99682653015594, 0.0], [-68.64450440389004, 44.996752596822716, 0.0], [-68.64453160388996, 44.99667873015619, 0.0], [-68.64455880388994, 44.996604796822965, 0.0], [-68.64458600388991, 44.996530796823095, 0.0], [-68.64461307055649, 44.99645693015651, 0.0], [-68.64464027055647, 44.99638299682334, 0.0], [-68.64466747055644, 44.99630913015676, 0.0], [-68.64469467055636, 44.99623513015689, 0.0], [-68.64472187055634, 44.996161196823664, 0.0], [-68.64474900388961, 44.99608733015708, 0.0], [-68.64477620388959, 44.99601339682391, 0.0], [-68.64475847055627, 44.99596813015728, 0.0], [-68.64472960388969, 44.995894530157386, 0.0], [-68.6447006705564, 44.99582093015749, 0.0], [-68.64467180388976, 44.995747330157656, 0.0], [-68.64464300388983, 44.99567373015776, 0.0], [-68.64461407055649, 44.99560013015787, 0.0], [-68.6445852038899, 44.995526530157974, 0.0], [-68.64455640388996, 44.99545293015808, 0.0], [-68.64452747055662, 44.99537933015819, 0.0], [-68.64449860389004, 44.99530573015829, 0.0], [-68.64446980389005, 44.995232130158456, 0.0], [-68.64444087055676, 44.99515853015856, 0.0], [-68.64441200389018, 44.99508493015867, 0.0], [-68.64438320389019, 44.995011330158775, 0.0], [-68.6443542705569, 44.99493773015888, 0.0], [-68.64432540389032, 44.99486413015899, 0.0], [-68.64429660389033, 44.994790530159094, 0.0], [-68.64426767055704, 44.99471693015926, 0.0], [-68.6442388038904, 44.99464333015936, 0.0], [-68.64421000389046, 44.99456973015947, 0.0], [-68.64418107055718, 44.994496130159575, 0.0], [-68.64415220389054, 44.99442253015968, 0.0], [-68.6441234038906, 44.99434893015979, 0.0], [-68.64409447055732, 44.994275330159894, 0.0], [-68.64406560389068, 44.99420173016006, 0.0], [-68.64403680389074, 44.99412813016016, 0.0], [-68.64400787055746, 44.99405453016027, 0.0], [-68.64397900389082, 44.993980930160376, 0.0], [-68.64395020389088, 44.99390733016048, 0.0], [-68.6439212705576, 44.993833596827244, 0.0], [-68.64389240389096, 44.99375999682741, 0.0], [-68.64386347055768, 44.99368639682751, 0.0], [-68.64383467055774, 44.99361279682762, 0.0], [-68.6438058038911, 44.993539196827726, 0.0], [-68.64377687055782, 44.99346559682783, 0.0], [-68.64374807055788, 44.99339199682794, 0.0], [-68.64371920389124, 44.993318396828045, 0.0], [-68.64369027055795, 44.99324479682821, 0.0], [-68.64366147055802, 44.993171196828314, 0.0], [-68.64363260389138, 44.99309759682842, 0.0], [-68.64360380389144, 44.993023996828526, 0.0], [-68.64357487055815, 44.99295039682863, 0.0], [-68.64354600389152, 44.99287679682874, 0.0], [-68.64351720389158, 44.992803196828845, 0.0], [-68.64348827055824, 44.99272959682901, 0.0], [-68.64345940389165, 44.992655996829114, 0.0], [-68.64343060389166, 44.99258239682922, 0.0], [-68.64340860389171, 44.992551730162575, 0.0], [-68.64336000389181, 44.9924835301627, 0.0], [-68.64331140389186, 44.99241533016283, 0.0], [-68.64326280389196, 44.9923471301629, 0.0], [-68.643214203892, 44.992278930163025, 0.0], [-68.64316547055876, 44.99221073016315, 0.0], [-68.64311687055886, 44.99214253016322, 0.0], [-68.6430682705589, 44.99207433016335, 0.0], [-68.643019670559, 44.99200613016342, 0.0], [-68.64297107055904, 44.991937930163544, 0.0], [-68.64292247055914, 44.99186973016367, 0.0], [-68.64287387055924, 44.99180153016374, 0.0], [-68.64282520389264, 44.99173333016387, 0.0], [-68.64277660389268, 44.991665130163994, 0.0], [-68.64272800389278, 44.991596930164064, 0.0], [-68.64267940389283, 44.99152873016419, 0.0], [-68.64263080389293, 44.99146053016426, 0.0], [-68.64258220389303, 44.99139233016439, 0.0], [-68.64253360389307, 44.991324130164514, 0.0], [-68.64248487055983, 44.991255930164584, 0.0], [-68.64243627055987, 44.99118773016471, 0.0], [-68.64238767055997, 44.99111953016484, 0.0], [-68.64233907056007, 44.99105133016491, 0.0], [-68.64229047056011, 44.990983130165034, 0.0], [-68.64224187056021, 44.99091493016516, 0.0], [-68.64219327056026, 44.99084673016523, 0.0], [-68.64214460389366, 44.990778596832, 0.0], [-68.64209600389376, 44.99071039683213, 0.0], [-68.64204740389386, 44.9906421968322, 0.0], [-68.6419988038939, 44.990573996832325, 0.0], [-68.641950203894, 44.99050579683245, 0.0], [-68.64190160389404, 44.99043759683252, 0.0], [-68.64185300389414, 44.99036939683265, 0.0], [-68.64180440389418, 44.990301196832775, 0.0], [-68.64175567056094, 44.990232996832844, 0.0], [-68.64170707056104, 44.99016479683297, 0.0], [-68.64165847056108, 44.9900965968331, 0.0], [-68.64160987056118, 44.99002839683317, 0.0], [-68.64156127056123, 44.989960196833295, 0.0], [-68.64154827056126, 44.98993279683333, 0.0], [-68.64151380389467, 44.989860530166766, 0.0], [-68.64147927056138, 44.98978813016686, 0.0], [-68.64144480389479, 44.989715730167006, 0.0], [-68.6414102705615, 44.9896433301671, 0.0], [-68.64137580389485, 44.98957099683389, 0.0], [-68.64134127056161, 44.98949859683398, 0.0], [-68.64130680389496, 44.98942619683413, 0.0], [-68.64127227056173, 44.98935379683422, 0.0], [-68.64123780389508, 44.989281396834315, 0.0], [-68.64120327056179, 44.98920913016781, 0.0], [-68.6411688038952, 44.9891367301679, 0.0], [-68.6411342705619, 44.98906433016799, 0.0], [-68.64109980389532, 44.98899193016814, 0.0], [-68.64106527056202, 44.988919596834876, 0.0], [-68.64103080389543, 44.988847196835025, 0.0], [-68.64099627056214, 44.988774796835116, 0.0], [-68.6409618038955, 44.98870239683521, 0.0], [-68.64092727056226, 44.9886301301687, 0.0], [-68.64089280389561, 44.98855773016879, 0.0], [-68.64085827056232, 44.988485330168885, 0.0], [-68.64082387056237, 44.988412930169034, 0.0], [-68.64078940389578, 44.988340530169125, 0.0], [-68.64075487056249, 44.98826819683592, 0.0], [-68.6407204038959, 44.98819579683601, 0.0], [-68.6406858705626, 44.98812339683616, 0.0], [-68.64065140389602, 44.98805099683625, 0.0], [-68.64061687056272, 44.98797873016969, 0.0], [-68.64058240389613, 44.98790633016978, 0.0], [-68.64054787056284, 44.98783393016993, 0.0], [-68.6405134038962, 44.98776153017002, 0.0], [-68.64047887056296, 44.98768919683681, 0.0], [-68.64044440389631, 44.9876167968369, 0.0], [-68.64040987056302, 44.98754439683705, 0.0], [-68.64037540389643, 44.987471996837144, 0.0], [-68.64034087056314, 44.987399596837236, 0.0], [-68.64030640389655, 44.98732733017073, 0.0], [-68.64027187056325, 44.98725493017082, 0.0], [-68.6402374705633, 44.98718253017091, 0.0], [-68.64020300389672, 44.98711013017106, 0.0], [-68.64016847056342, 44.9870377968378, 0.0], [-68.64013400389678, 44.986965396837945, 0.0], [-68.64009947056354, 44.98689299683804, 0.0], [-68.6400650038969, 44.98682059683813, 0.0], [-68.6400304705636, 44.98674833017162, 0.0], [-68.63999600389701, 44.986675930171714, 0.0], [-68.63996147056372, 44.986603530171806, 0.0], [-68.63992700389713, 44.986531130171954, 0.0], [-68.63989247056384, 44.98645879683875, 0.0], [-68.63985800389725, 44.98638639683884, 0.0], [-68.63982347056395, 44.98631399683893, 0.0], [-68.639789070564, 44.98624159683908, 0.0], [-68.63975460389742, 44.98616919683917, 0.0], [-68.63972007056412, 44.98609693017261, 0.0], [-68.63968560389748, 44.9860245301727, 0.0], [-68.6396718038975, 44.98596953017284, 0.0], [-68.63965287056419, 44.985894330172925, 0.0], [-68.63963400389758, 44.985818996839726, 0.0], [-68.63961520389762, 44.98574379683981, 0.0], [-68.63959627056431, 44.98566859683996, 0.0], [-68.63957740389765, 44.985593396840045, 0.0], [-68.63955860389768, 44.98551819684019, 0.0], [-68.63953967056437, 44.98544299684028, 0.0], [-68.63952080389777, 44.98536779684042, 0.0], [-68.63950187056446, 44.98529259684051, 0.0], [-68.6394830705645, 44.98521739684065, 0.0], [-68.63946420389783, 44.98514219684074, 0.0], [-68.63944527056452, 44.985066996840885, 0.0], [-68.63942647056456, 44.98499179684097, 0.0], [-68.63940760389795, 44.98491659684112, 0.0]], "type": "LineString"}, "id": "1045", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736686", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.64426233722372, 44.96533533020482, -68.63685580390188, 44.98214679684543], "geometry": {"coordinates": [[-68.63871267056567, 44.98214679684543, 0.0], [-68.63835207056621, 44.97813499685162, 0.0], [-68.63713360390147, 44.9761739968547, 0.0], [-68.63685580390188, 44.97506613018976, 0.0], [-68.63756227056746, 44.97337733019236, 0.0], [-68.64047747056293, 44.970839530196315, 0.0], [-68.6423948038933, 44.96625579687009, 0.0], [-68.64426233722372, 44.96533533020482, 0.0]], "type": "LineString"}, "id": "1046", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736696", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.67444227051021, 44.96614359687027, -68.64530620388877, 44.987137930171], "geometry": {"coordinates": [[-68.64530620388877, 44.96614359687027, 0.0], [-68.64533067055538, 44.96615159687025, 0.0], [-68.64542880388859, 44.96618339687018, 0.0], [-68.6455268705551, 44.966215196870166, 0.0], [-68.64562487055497, 44.9662469968701, 0.0], [-68.64572300388812, 44.96627893020337, 0.0], [-68.64582107055463, 44.966310730203304, 0.0], [-68.64588447055456, 44.966331330203275, 0.0], [-68.64596560388776, 44.966381596869894, 0.0], [-68.64604667055431, 44.9664319968698, 0.0], [-68.64612780388751, 44.96648239686971, 0.0], [-68.64620887055406, 44.96653279686967, 0.0], [-68.64629000388726, 44.96658313020288, 0.0], [-68.64637107055381, 44.96663353020284, 0.0], [-68.64645220388701, 44.96668393020275, 0.0], [-68.64653327055356, 44.966734330202655, 0.0], [-68.64661440388676, 44.966784596869275, 0.0], [-68.64669547055331, 44.96683499686918, 0.0], [-68.64677660388651, 44.96688539686909, 0.0], [-68.646857670553, 44.966935796868995, 0.0], [-68.64693880388626, 44.96698619686896, 0.0], [-68.64701987055275, 44.96703653020222, 0.0], [-68.64710100388601, 44.96708693020213, 0.0], [-68.6471820705525, 44.967137330202036, 0.0], [-68.64726320388576, 44.96718773020194, 0.0], [-68.64734427055225, 44.96723799686856, 0.0], [-68.6474254038855, 44.96728839686847, 0.0], [-68.647506470552, 44.967338796868376, 0.0], [-68.64758760388526, 44.96738919686834, 0.0], [-68.64766867055175, 44.967439530201545, 0.0], [-68.647749803885, 44.96748993020151, 0.0], [-68.64779700388493, 44.96751933020147, 0.0], [-68.6478986705514, 44.96754479686808, 0.0], [-68.64800040388457, 44.9675703302014, 0.0], [-68.64810207055109, 44.96759579686801, 0.0], [-68.64820387055096, 44.96762133020127, 0.0], [-68.64830547055078, 44.96764679686794, 0.0], [-68.64840720388395, 44.9676723302012, 0.0], [-68.64850887055047, 44.96769779686787, 0.0], [-68.64861067055028, 44.967723330201125, 0.0], [-68.64871227055016, 44.96774879686774, 0.0], [-68.64881400388333, 44.96777433020105, 0.0], [-68.64891567054985, 44.967799796867666, 0.0], [-68.64901727054968, 44.96782533020098, 0.0], [-68.64911907054955, 44.967850796867594, 0.0], [-68.64922080388271, 44.96787633020091, 0.0], [-68.64932247054918, 44.96790179686752, 0.0], [-68.6494242038824, 44.96792733020084, 0.0], [-68.64952600388222, 44.96795279686745, 0.0], [-68.64962760388204, 44.96797819686742, 0.0], [-68.64972927054856, 44.96800373020068, 0.0], [-68.64983107054843, 44.96802919686735, 0.0], [-68.6499328038816, 44.968054730200606, 0.0], [-68.65003440388142, 44.96808019686722, 0.0], [-68.65013620388129, 44.968105730200534, 0.0], [-68.65023787054781, 44.96813119686715, 0.0], [-68.65033960388098, 44.96815673020046, 0.0], [-68.65044127054745, 44.968182196867076, 0.0], [-68.65054307054731, 44.96820773020039, 0.0], [-68.65064467054714, 44.968233196867004, 0.0], [-68.6507464038803, 44.96825873020032, 0.0], [-68.65084807054683, 44.96828419686693, 0.0], [-68.65094980388, 44.96830973020025, 0.0], [-68.6509840705466, 44.96831833020019, 0.0], [-68.65106867054652, 44.96836573020016, 0.0], [-68.65115347054638, 44.96841299686673, 0.0], [-68.65123820387959, 44.9684603302, 0.0], [-68.6513228705461, 44.96850759686657, 0.0], [-68.65140740387932, 44.96855499686649, 0.0], [-68.65149220387917, 44.96860233019976, 0.0], [-68.65157687054568, 44.968649596866385, 0.0], [-68.65166160387889, 44.9686969968663, 0.0], [-68.65173527054549, 44.96873813019954, 0.0], [-68.65178667054539, 44.96880519686613, 0.0], [-68.65183827054528, 44.968872396866004, 0.0], [-68.65188980387853, 44.968939530199236, 0.0], [-68.6519412038785, 44.969006596865825, 0.0], [-68.65199280387839, 44.96907373019906, 0.0], [-68.65204427054499, 44.96914079686559, 0.0], [-68.6520956705449, 44.96920793019882, 0.0], [-68.65214727054484, 44.96927499686541, 0.0], [-68.6521988038781, 44.969342196865284, 0.0], [-68.65225027054464, 44.969409330198516, 0.0], [-68.65230180387789, 44.969476396865105, 0.0], [-68.6523532705445, 44.96954353019828, 0.0], [-68.65240480387774, 44.96961059686487, 0.0], [-68.6524564038777, 44.9696777301981, 0.0], [-68.6525078038776, 44.969744930197976, 0.0], [-68.6525592705442, 44.969811996864564, 0.0], [-68.65257500387747, 44.969832530197834, 0.0], [-68.65257867054413, 44.96990879686439, 0.0], [-68.65258240387749, 44.96998513019764, 0.0], [-68.65258600387745, 44.97006153019748, 0.0], [-68.65258960387746, 44.97013779686404, 0.0], [-68.65259340387746, 44.97021413019729, 0.0], [-68.65259700387747, 44.97029053019713, 0.0], [-68.65260067054413, 44.970366796863686, 0.0], [-68.65260440387743, 44.970443130196884, 0.0], [-68.65260800387745, 44.97051953019678, 0.0], [-68.6526116705441, 44.970595796863336, 0.0], [-68.65261320387742, 44.97062759686327, 0.0], [-68.65266467054403, 44.9706947968632, 0.0], [-68.65271620387728, 44.97076193019643, 0.0], [-68.65276767054388, 44.97082899686296, 0.0], [-68.65281920387713, 44.970896130196195, 0.0], [-68.65287080387702, 44.97096319686278, 0.0], [-68.65292220387693, 44.971030330196015, 0.0], [-68.65297380387688, 44.97109739686255, 0.0], [-68.65302527054348, 44.97116459686248, 0.0], [-68.65307687054337, 44.97123173019571, 0.0], [-68.65312827054328, 44.97129879686224, 0.0], [-68.65317980387653, 44.971365930195475, 0.0], [-68.65323120387649, 44.97143299686206, 0.0], [-68.65328280387638, 44.971500130195295, 0.0], [-68.65333427054298, 44.97156733019517, 0.0], [-68.65338580387623, 44.9716343968617, 0.0], [-68.65343740387613, 44.971701530194935, 0.0], [-68.65348880387609, 44.97176859686152, 0.0], [-68.65354027054263, 44.971835730194755, 0.0], [-68.65357300387592, 44.97187833019467, 0.0], [-68.65367747054245, 44.97189739686132, 0.0], [-68.65378200387562, 44.971916396861275, 0.0], [-68.65388647054215, 44.971935396861284, 0.0], [-68.65399100387532, 44.97195453019458, 0.0], [-68.65409540387515, 44.97197353019453, 0.0], [-68.65419987054162, 44.971992596861185, 0.0], [-68.65430440387479, 44.97201159686114, 0.0], [-68.65440887054132, 44.97203073019443, 0.0], [-68.65451347054113, 44.97204973019444, 0.0], [-68.65461780387432, 44.97206879686104, 0.0], [-68.65472240387413, 44.97208779686105, 0.0], [-68.65482687054066, 44.97210693019434, 0.0], [-68.65493140387383, 44.972125930194295, 0.0], [-68.65503587054036, 44.97214499686095, 0.0], [-68.65514040387353, 44.9721639968609, 0.0], [-68.65524487054, 44.972183130194196, 0.0], [-68.65534940387317, 44.972202130194205, 0.0], [-68.655453803873, 44.9722211968608, 0.0], [-68.65555827053953, 44.97224019686081, 0.0], [-68.6556628038727, 44.972259330194106, 0.0], [-68.65576727053923, 44.97227833019406, 0.0], [-68.6558718038724, 44.97229739686071, 0.0], [-68.65597640387222, 44.97231639686066, 0.0], [-68.65608087053869, 44.97233553019396, 0.0], [-68.65618520387187, 44.97235453019397, 0.0], [-68.65628980387174, 44.97237353019392, 0.0], [-68.65639427053821, 44.97239259686057, 0.0], [-68.65649880387139, 44.972411596860525, 0.0], [-68.65660327053791, 44.97243073019382, 0.0], [-68.65670780387109, 44.97244973019377, 0.0], [-68.65681220387091, 44.972468796860426, 0.0], [-68.65691667053744, 44.97248779686038, 0.0], [-68.65702120387061, 44.97250693019373, 0.0], [-68.65712567053708, 44.97252593019368, 0.0], [-68.65723020387026, 44.972544996860336, 0.0], [-68.65733467053678, 44.97256399686029, 0.0], [-68.6574392705366, 44.972583130193584, 0.0], [-68.65754360386978, 44.972602130193536, 0.0], [-68.6576482038696, 44.97262119686019, 0.0], [-68.65775267053613, 44.97264019686014, 0.0], [-68.6578572038693, 44.97265919686015, 0.0], [-68.65796167053577, 44.972678330193446, 0.0], [-68.65806620386894, 44.9726973301934, 0.0], [-68.65817067053547, 44.97271639686005, 0.0], [-68.65827520386864, 44.97273539686, 0.0], [-68.65837967053517, 44.9727545301933, 0.0], [-68.65839487053512, 44.9727573301933, 0.0], [-68.65844647053507, 44.97282439685989, 0.0], [-68.65849800386832, 44.972891530193124, 0.0], [-68.65854960386821, 44.972958596859655, 0.0], [-68.65860107053481, 44.97302573019289, 0.0], [-68.65865247053472, 44.973092796859476, 0.0], [-68.65870407053467, 44.97315999685935, 0.0], [-68.65875560386792, 44.97322713019258, 0.0], [-68.65880707053446, 44.97329419685917, 0.0], [-68.65885860386771, 44.973361330192404, 0.0], [-68.65891020386766, 44.973428396858935, 0.0], [-68.65896180386756, 44.97349553019217, 0.0], [-68.65899500386752, 44.97353893019209, 0.0], [-68.65907380386739, 44.973591130192005, 0.0], [-68.6591528038673, 44.97364319685863, 0.0], [-68.65923147053383, 44.973695330191845, 0.0], [-68.65931040386704, 44.97374753019176, 0.0], [-68.65938920386691, 44.973799596858385, 0.0], [-68.65946807053348, 44.9738517301916, 0.0], [-68.65954687053335, 44.97390393019151, 0.0], [-68.6596258705332, 44.97395599685814, 0.0], [-68.65970460386643, 44.97400819685805, 0.0], [-68.65978347053294, 44.97406033019132, 0.0], [-68.65986227053287, 44.97411239685789, 0.0], [-68.65994120386608, 44.974164596857804, 0.0], [-68.6600200705326, 44.974216730191074, 0.0], [-68.66009900386581, 44.97426893019099, 0.0], [-68.66017780386568, 44.97432099685756, 0.0], [-68.66025660386555, 44.97437313019083, 0.0], [-68.66033540386542, 44.97442533019074, 0.0], [-68.66041427053199, 44.97447739685731, 0.0], [-68.66044700386527, 44.97449899685728, 0.0], [-68.66049847053188, 44.97456613019051, 0.0], [-68.66055007053177, 44.974633330190386, 0.0], [-68.66060147053167, 44.974700396856974, 0.0], [-68.66065307053162, 44.974767530190206, 0.0], [-68.66070460386487, 44.97483459685674, 0.0], [-68.66075607053148, 44.97490173018997, 0.0], [-68.66080760386473, 44.97496879685656, 0.0], [-68.66085920386462, 44.97503593018979, 0.0], [-68.66091060386458, 44.975103130189666, 0.0], [-68.66092700386451, 44.97512433018966, 0.0], [-68.66089640386457, 44.97519759685622, 0.0], [-68.66086580386462, 44.97527079685608, 0.0], [-68.66083520386468, 44.975344130189285, 0.0], [-68.66080447053139, 44.9754173301892, 0.0], [-68.66077387053144, 44.975490596855764, 0.0], [-68.6607432705315, 44.975563796855624, 0.0], [-68.66071267053155, 44.97563699685554, 0.0], [-68.66068207053155, 44.97571033018875, 0.0], [-68.6606514705316, 44.97578353018861, 0.0], [-68.66062080386502, 44.97585679685517, 0.0], [-68.66059020386507, 44.975929996855086, 0.0], [-68.66055960386512, 44.97600319685495, 0.0], [-68.66052900386512, 44.97607653018815, 0.0], [-68.66049840386518, 44.97614973018807, 0.0], [-68.66046780386523, 44.97622299685463, 0.0], [-68.66043707053194, 44.97629619685449, 0.0], [-68.660406470532, 44.9763695301877, 0.0], [-68.66037587053205, 44.976442730187614, 0.0], [-68.66037227053204, 44.97645133018756, 0.0], [-68.66042380386529, 44.976518396854146, 0.0], [-68.66047527053189, 44.97658553018738, 0.0], [-68.66052687053184, 44.976652730187254, 0.0], [-68.66057827053174, 44.97671979685384, 0.0], [-68.66062987053164, 44.976786930187075, 0.0], [-68.66068140386488, 44.976853996853606, 0.0], [-68.66073287053149, 44.97692113018684, 0.0], [-68.66078447053144, 44.976988196853426, 0.0], [-68.66083600386469, 44.97705533018666, 0.0], [-68.66088747053124, 44.977122530186534, 0.0], [-68.66093907053119, 44.97718959685312, 0.0], [-68.66099047053109, 44.977256730186355, 0.0], [-68.66104200386434, 44.977323796852886, 0.0], [-68.66109360386429, 44.97739093018612, 0.0], [-68.66114507053084, 44.977457996852706, 0.0], [-68.66119660386408, 44.97752513018594, 0.0], [-68.66121227053077, 44.977545596852565, 0.0], [-68.66131580386394, 44.97756733018588, 0.0], [-68.66141927053042, 44.97758899685249, 0.0], [-68.66152267053025, 44.97761059685246, 0.0], [-68.66155320386355, 44.97761699685242, 0.0], [-68.6616102705301, 44.97768193018567, 0.0], [-68.66166720386337, 44.97774673018557, 0.0], [-68.66172407052994, 44.97781159685212, 0.0], [-68.6617812038632, 44.977876396852025, 0.0], [-68.66183820386311, 44.977941330185274, 0.0], [-68.66189520386303, 44.97800613018518, 0.0], [-68.66195220386294, 44.97807099685173, 0.0], [-68.6620092705295, 44.978135930184976, 0.0], [-68.66206620386276, 44.97820073018488, 0.0], [-68.66212320386268, 44.97826559685143, 0.0], [-68.66218020386259, 44.978330396851334, 0.0], [-68.6622372038625, 44.97839533018458, 0.0], [-68.66229420386242, 44.97846013018449, 0.0], [-68.66235120386233, 44.978524996851036, 0.0], [-68.6624080705289, 44.978589930184285, 0.0], [-68.66246520386215, 44.97865473018419, 0.0], [-68.66252220386207, 44.97871959685074, 0.0], [-68.66257920386198, 44.97878439685064, 0.0], [-68.6626362038619, 44.97884933018389, 0.0], [-68.66268367052845, 44.978903330183755, 0.0], [-68.66275647052834, 44.97895959685036, 0.0], [-68.66282960386155, 44.97901579685026, 0.0], [-68.66290260386148, 44.97907213018351, 0.0], [-68.66297560386136, 44.979128396850115, 0.0], [-68.66304860386123, 44.97918459685002, 0.0], [-68.66312140386111, 44.979240930183266, 0.0], [-68.66319447052769, 44.979297196849814, 0.0], [-68.66326747052756, 44.979353396849774, 0.0], [-68.66334047052743, 44.97940973018302, 0.0], [-68.66341347052736, 44.97946599684957, 0.0], [-68.66348627052724, 44.97952219684947, 0.0], [-68.66355940386046, 44.97957853018272, 0.0], [-68.66363240386033, 44.979634796849325, 0.0], [-68.6637054038602, 44.97969099684923, 0.0], [-68.66377840386008, 44.97974733018248, 0.0], [-68.66385140386001, 44.979803596849024, 0.0], [-68.66392440385988, 44.979859796848984, 0.0], [-68.66399727052641, 44.97991613018223, 0.0], [-68.66407027052634, 44.97997239684878, 0.0], [-68.66414327052621, 44.98002859684868, 0.0], [-68.66421627052608, 44.98008493018193, 0.0], [-68.66428907052597, 44.980141130181835, 0.0], [-68.66436220385918, 44.98019739684844, 0.0], [-68.66443520385906, 44.98025373018169, 0.0], [-68.66450820385899, 44.98030993018159, 0.0], [-68.66458120385886, 44.980366196848195, 0.0], [-68.66465420385873, 44.98042253018144, 0.0], [-68.6647272038586, 44.980478730181346, 0.0], [-68.66478640385856, 44.980524396847954, 0.0], [-68.66484500385843, 44.98058853018114, 0.0], [-68.664903670525, 44.98065259684773, 0.0], [-68.66496227052494, 44.98071679684762, 0.0], [-68.66502107052486, 44.980780930180856, 0.0], [-68.66507967052473, 44.98084499684745, 0.0], [-68.66513827052466, 44.98090913018069, 0.0], [-68.66519687052454, 44.98097319684723, 0.0], [-68.66525560385782, 44.981037396847114, 0.0], [-68.66531420385769, 44.981101530180354, 0.0], [-68.66537280385762, 44.98116559684695, 0.0], [-68.66543160385754, 44.98122973018019, 0.0], [-68.66549020385742, 44.98129379684673, 0.0], [-68.66554880385735, 44.98135793017997, 0.0], [-68.66560740385728, 44.98142213017985, 0.0], [-68.66566607052386, 44.98148619684645, 0.0], [-68.66572467052373, 44.98155033017969, 0.0], [-68.665783403857, 44.981614396846226, 0.0], [-68.66584207052358, 44.981678530179465, 0.0], [-68.66590067052346, 44.98174273017935, 0.0], [-68.66595927052339, 44.981806796845945, 0.0], [-68.6660180038566, 44.981870930179184, 0.0], [-68.66607660385654, 44.98193499684572, 0.0], [-68.66613527052311, 44.98199913017896, 0.0], [-68.66619400385633, 44.98206319684556, 0.0], [-68.66625260385626, 44.98212739684544, 0.0], [-68.6663112038562, 44.98219153017868, 0.0], [-68.66636987052277, 44.98225559684522, 0.0], [-68.66642847052265, 44.98231973017846, 0.0], [-68.66648707052258, 44.982383796845056, 0.0], [-68.6665458705225, 44.982447930178296, 0.0], [-68.66660427052238, 44.98251213017818, 0.0], [-68.6666630705223, 44.98257619684472, 0.0], [-68.66672167052218, 44.98264033017796, 0.0], [-68.66678040385546, 44.982704396844554, 0.0], [-68.66683900385533, 44.98276853017779, 0.0], [-68.66689760385526, 44.98283273017768, 0.0], [-68.66695627052184, 44.98289679684427, 0.0], [-68.66701500385506, 44.982960930177455, 0.0], [-68.66707360385499, 44.98302499684405, 0.0], [-68.66713227052156, 44.98308913017729, 0.0], [-68.6671908705215, 44.98315319684383, 0.0], [-68.66724960385471, 44.98321739684377, 0.0], [-68.66730820385465, 44.98328153017701, 0.0], [-68.66736687052122, 44.98334559684355, 0.0], [-68.6674254705211, 44.98340973017679, 0.0], [-68.66745800385439, 44.98344533017672, 0.0], [-68.66754120385428, 44.983494130176666, 0.0], [-68.66762407052079, 44.983542930176554, 0.0], [-68.66770727052068, 44.983591596843155, 0.0], [-68.66779040385387, 44.9836403968431, 0.0], [-68.66787340385372, 44.983689196843045, 0.0], [-68.66795647052027, 44.98373793017629, 0.0], [-68.66803947052017, 44.98378673017618, 0.0], [-68.66812260385336, 44.98383553017612, 0.0], [-68.66820567051991, 44.98388419684272, 0.0], [-68.66828867051976, 44.98393299684261, 0.0], [-68.66837180385295, 44.983981796842556, 0.0], [-68.66845480385285, 44.9840305301758, 0.0], [-68.66849987051944, 44.98405699684247, 0.0], [-68.66860347051926, 44.984078730175725, 0.0], [-68.66870700385243, 44.98410039684239, 0.0], [-68.66881047051896, 44.98412199684236, 0.0], [-68.66891380385215, 44.98414373017562, 0.0], [-68.66901740385197, 44.984165396842286, 0.0], [-68.6691208705185, 44.984186996842254, 0.0], [-68.66922440385167, 44.98420873017557, 0.0], [-68.66932787051815, 44.98423039684218, 0.0], [-68.66935227051812, 44.98423553017551, 0.0], [-68.66941387051804, 44.98429813017543, 0.0], [-68.6694756705179, 44.984360796842, 0.0], [-68.66953727051782, 44.98442353017521, 0.0], [-68.66959900385109, 44.98448619684177, 0.0], [-68.66966067051766, 44.98454879684169, 0.0], [-68.66972247051751, 44.9846115301749, 0.0], [-68.66978407051744, 44.98467419684147, 0.0], [-68.6698458038507, 44.98473693017473, 0.0], [-68.66990747051727, 44.984799530174655, 0.0], [-68.66996907051714, 44.98486219684122, 0.0], [-68.67003080385041, 44.98492493017443, 0.0], [-68.67009247051698, 44.98498753017435, 0.0], [-68.67015427051689, 44.985050196840916, 0.0], [-68.67021587051676, 44.985112930174125, 0.0], [-68.67027760385002, 44.98517559684069, 0.0], [-68.67033927051659, 44.98523819684061, 0.0], [-68.6704010705165, 44.98530093017382, 0.0], [-68.67046267051637, 44.98536359684044, 0.0], [-68.67052440384964, 44.98542633017365, 0.0], [-68.67058607051621, 44.985488930173574, 0.0], [-68.67064767051613, 44.98555159684014, 0.0], [-68.67065340384943, 44.985557396840136, 0.0], [-68.670732270516, 44.98560959684005, 0.0], [-68.67081120384921, 44.98566173017326, 0.0], [-68.67089007051572, 44.98571379683989, 0.0], [-68.67096900384894, 44.9857659968398, 0.0], [-68.67104780384881, 44.98581813017307, 0.0], [-68.67112667051538, 44.98587019683964, 0.0], [-68.67120560384859, 44.985922396839555, 0.0], [-68.6712844705151, 44.985974530172825, 0.0], [-68.67136340384832, 44.986026596839395, 0.0], [-68.67144220384819, 44.98607879683931, 0.0], [-68.67152107051476, 44.98613093017258, 0.0], [-68.67160000384797, 44.98618299683915, 0.0], [-68.67167880384784, 44.98623519683906, 0.0], [-68.6717578038477, 44.98628733017233, 0.0], [-68.67183660384757, 44.9863393968389, 0.0], [-68.67191547051414, 44.986391596838814, 0.0], [-68.671994470514, 44.986443730172084, 0.0], [-68.67207320384722, 44.98649579683865, 0.0], [-68.67210587051386, 44.98651739683862, 0.0], [-68.672207003847, 44.98654433017191, 0.0], [-68.67230807051351, 44.98657113017185, 0.0], [-68.67240907051337, 44.986597930171854, 0.0], [-68.67251007051323, 44.9866247301718, 0.0], [-68.67261120384637, 44.98665159683844, 0.0], [-68.67271220384623, 44.986678396838386, 0.0], [-68.67281327051273, 44.98670519683833, 0.0], [-68.67291420384589, 44.98673199683827, 0.0], [-68.67301540384574, 44.98675893017156, 0.0], [-68.6731164038456, 44.98678573017156, 0.0], [-68.6732174705121, 44.986812530171505, 0.0], [-68.67331847051196, 44.98683939683815, 0.0], [-68.67341960384516, 44.98686619683809, 0.0], [-68.67352060384496, 44.98689299683804, 0.0], [-68.67362180384481, 44.98691979683798, 0.0], [-68.67372267051132, 44.98694673017127, 0.0], [-68.67382380384453, 44.98697353017127, 0.0], [-68.67392487051103, 44.98700033017121, 0.0], [-68.67402587051089, 44.98702713017116, 0.0], [-68.67412687051069, 44.9870539968378, 0.0], [-68.6742280038439, 44.987080796837745, 0.0], [-68.6743290038437, 44.98710759683769, 0.0], [-68.67443007051025, 44.98713439683769, 0.0], [-68.67444200384352, 44.98713759683767, 0.0], [-68.67444227051021, 44.987137930171, 0.0]], "type": "LineString"}, "id": "1048", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736698", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.6499784038815, 44.94210519690756, -68.64426233722372, 44.96533533020482], "geometry": {"coordinates": [[-68.64426233722372, 44.96533533020482, 0.0], [-68.64464700388982, 44.96397273020693, 0.0], [-68.64635647055383, 44.96210059687655, 0.0], [-68.6470122038861, 44.96053253021228, 0.0], [-68.64707500388602, 44.95949613021389, 0.0], [-68.64585660388792, 44.95753519688361, 0.0], [-68.64562227055495, 44.95499339688757, 0.0], [-68.64469427055639, 44.95322453022362, 0.0], [-68.64451727055666, 44.951875396892376, 0.0], [-68.64579060388803, 44.94794413023186, 0.0], [-68.64952460388224, 44.94610313023469, 0.0], [-68.6499784038815, 44.945017530236385, 0.0], [-68.64994020388156, 44.94422233023761, 0.0], [-68.64980127054844, 44.94366839690514, 0.0], [-68.64860220388368, 44.94210519690756, 0.0]], "type": "LineString"}, "id": "1058", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1736756", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.64530620388877, 44.96533533020482, -68.64426233722372, 44.96614359687027], "geometry": {"coordinates": [[-68.64426233722372, 44.96533533020482, 0.0], [-68.64431387055697, 44.96540239687141, 0.0], [-68.64436540389022, 44.96546953020464, 0.0], [-68.64441687055682, 44.965536596871175, 0.0], [-68.64446840389007, 44.96560379687111, 0.0], [-68.64451980388998, 44.96567093020434, 0.0], [-68.64457140388993, 44.96573799687087, 0.0], [-68.64462287055647, 44.9658051302041, 0.0], [-68.64467440388978, 44.96587219687069, 0.0], [-68.64472587055633, 44.96593933020392, 0.0], [-68.64474220388962, 44.96596059687056, 0.0], [-68.64484027055619, 44.965992530203835, 0.0], [-68.64493840388934, 44.966024330203766, 0.0], [-68.64503627055586, 44.9660561302037, 0.0], [-68.64513447055572, 44.966087930203685, 0.0], [-68.64523260388887, 44.966119730203616, 0.0], [-68.64530620388877, 44.96614359687027, 0.0]], "type": "LineString"}, "id": "1100", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1743070", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.64609160388756, 45.25378572975711, -68.6420360705605, 45.272513129728054], "geometry": {"coordinates": [[-68.6420360705605, 45.272513129728054, 0.0], [-68.64350020389156, 45.27124332973, 0.0], [-68.64429187055703, 45.26891399640027, 0.0], [-68.64327640389195, 45.26423792974089, 0.0], [-68.64325060389194, 45.262525729743516, 0.0], [-68.6427428705594, 45.260187729747145, 0.0], [-68.64609160388756, 45.25378572975711, 0.0]], "type": "LineString"}, "id": "1108", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733950", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.36305607099354, 45.50006372937486, -68.35888880433333, 45.518127729346816], "geometry": {"coordinates": [[-68.36204113766178, 45.518127729346816, 0.0], [-68.36205040432844, 45.51810612934685, 0.0], [-68.36209980432835, 45.51798972934699, 0.0], [-68.36214927099496, 45.51787339601384, 0.0], [-68.36219887099486, 45.51775699601404, 0.0], [-68.36224840432811, 45.517640596014246, 0.0], [-68.36229800432807, 45.51752432934774, 0.0], [-68.36227080432809, 45.517414996014566, 0.0], [-68.3622410709948, 45.51729532934809, 0.0], [-68.3622114043282, 45.517175596014965, 0.0], [-68.36218167099491, 45.51705599601513, 0.0], [-68.36215207099497, 45.51693632934865, 0.0], [-68.36212227099497, 45.51681672934882, 0.0], [-68.36209267099503, 45.516696996015696, 0.0], [-68.36206280432845, 45.51657732934922, 0.0], [-68.36203307099515, 45.51645772934938, 0.0], [-68.3620034043285, 45.51633799601626, 0.0], [-68.36197367099521, 45.51621832934978, 0.0], [-68.36194400432862, 45.51609872934995, 0.0], [-68.36191440432867, 45.51597899601677, 0.0], [-68.36188460432868, 45.51585939601699, 0.0], [-68.36188307099536, 45.515856396017, 0.0], [-68.36182640432878, 45.515741596017165, 0.0], [-68.36176960432886, 45.515626929350674, 0.0], [-68.36171287099563, 45.51551219601754, 0.0], [-68.36165620432905, 45.515397396017704, 0.0], [-68.36159947099583, 45.51528272935121, 0.0], [-68.36154260432926, 45.51516799601808, 0.0], [-68.36148587099598, 45.51505319601824, 0.0], [-68.3614292043294, 45.51493852935175, 0.0], [-68.36137240432947, 45.51482379601862, 0.0], [-68.36131567099625, 45.51470912935213, 0.0], [-68.36125887099632, 45.51459432935229, 0.0], [-68.36120220432974, 45.5144795960191, 0.0], [-68.36114527099653, 45.51436492935261, 0.0], [-68.36108860432995, 45.51425012935283, 0.0], [-68.36103187099667, 45.51413539601964, 0.0], [-68.36097520433009, 45.51402072935315, 0.0], [-68.36091847099686, 45.51390592935337, 0.0], [-68.36086167099694, 45.51379119602018, 0.0], [-68.36080500433036, 45.51367652935369, 0.0], [-68.36074827099714, 45.51356172935391, 0.0], [-68.36069147099721, 45.51344699602072, 0.0], [-68.36063480433063, 45.51333232935423, 0.0], [-68.3605780043307, 45.51321752935439, 0.0], [-68.36051787099751, 45.5131391960212, 0.0], [-68.3604358709976, 45.5130323293547, 0.0], [-68.36035387099776, 45.51292539602156, 0.0], [-68.36027187099785, 45.512818396021714, 0.0], [-68.360189870998, 45.512711529355215, 0.0], [-68.36010787099815, 45.512604596022015, 0.0], [-68.36002600433159, 45.512497729355516, 0.0], [-68.35994400433174, 45.51239079602237, 0.0], [-68.35986200433183, 45.512283929355874, 0.0], [-68.35978000433198, 45.51217692935603, 0.0], [-68.35969800433207, 45.51206999602289, 0.0], [-68.35961600433222, 45.51196312935639, 0.0], [-68.35958747099892, 45.511848596023185, 0.0], [-68.35955780433233, 45.51172899602341, 0.0], [-68.35952807099903, 45.51160932935693, 0.0], [-68.3594982709991, 45.51148959602375, 0.0], [-68.35946867099909, 45.51136999602397, 0.0], [-68.3594390043325, 45.511250329357495, 0.0], [-68.35940927099921, 45.51113072935766, 0.0], [-68.35944047099917, 45.511057396024455, 0.0], [-68.35949007099907, 45.5109409960246, 0.0], [-68.35953960433233, 45.51082472935815, 0.0], [-68.35958907099894, 45.510708329358295, 0.0], [-68.35963867099883, 45.5105919293585, 0.0], [-68.35968820433209, 45.510475596025344, 0.0], [-68.35973780433204, 45.51035919602555, 0.0], [-68.3597872709986, 45.51024279602569, 0.0], [-68.3598368043319, 45.51012652935924, 0.0], [-68.3598864043318, 45.51001012935939, 0.0], [-68.3599360043317, 45.50989372935959, 0.0], [-68.35998547099831, 45.509777329359736, 0.0], [-68.36003500433156, 45.50966099602658, 0.0], [-68.36008447099817, 45.509544596026785, 0.0], [-68.36013420433142, 45.50942819602699, 0.0], [-68.36018360433133, 45.50931192936048, 0.0], [-68.36023307099794, 45.50919552936068, 0.0], [-68.36028260433119, 45.50907912936083, 0.0], [-68.36028707099786, 45.509012196027584, 0.0], [-68.36029500433119, 45.508890929361144, 0.0], [-68.36030287099783, 45.5087695293613, 0.0], [-68.36031080433116, 45.50864819602816, 0.0], [-68.3603186709978, 45.50852679602838, 0.0], [-68.36032680433112, 45.50840552936188, 0.0], [-68.36033447099777, 45.50828419602874, 0.0], [-68.3603424043311, 45.508162796028955, 0.0], [-68.36035027099774, 45.50804152936246, 0.0], [-68.36034840433109, 45.50803592936245, 0.0], [-68.36030567099783, 45.50791819602932, 0.0], [-68.36026307099786, 45.50780052936284, 0.0], [-68.3602204043313, 45.507682796029655, 0.0], [-68.36017767099804, 45.50756512936317, 0.0], [-68.36013507099807, 45.507447396030045, 0.0], [-68.36009240433145, 45.50732972936356, 0.0], [-68.36009907099816, 45.507292596030254, 0.0], [-68.36012067099813, 45.50717212936382, 0.0], [-68.36014240433138, 45.507051596030635, 0.0], [-68.36016407099805, 45.50693112936415, 0.0], [-68.36018567099802, 45.50681052936437, 0.0], [-68.36020740433128, 45.50668999603124, 0.0], [-68.36022900433125, 45.506569529364754, 0.0], [-68.36022047099794, 45.50655599603141, 0.0], [-68.36015040433136, 45.506444996031576, 0.0], [-68.36008027099814, 45.5063339293651, 0.0], [-68.36001020433162, 45.506222929365265, 0.0], [-68.35994020433174, 45.50611192936543, 0.0], [-68.35987000433181, 45.5060009293656, 0.0], [-68.35979987099859, 45.505889929365765, 0.0], [-68.3597298709987, 45.505778796032644, 0.0], [-68.35965987099883, 45.50566779603281, 0.0], [-68.3595896709989, 45.50555679603298, 0.0], [-68.35951960433238, 45.50544579603314, 0.0], [-68.35944947099915, 45.505334729366666, 0.0], [-68.35937940433257, 45.50522372936683, 0.0], [-68.35930927099935, 45.505112729367, 0.0], [-68.35923940433281, 45.505001729367166, 0.0], [-68.35916920433294, 45.50489072936733, 0.0], [-68.35909907099972, 45.504779596034155, 0.0], [-68.35902900433314, 45.50466859603438, 0.0], [-68.35895887099991, 45.504557596034545, 0.0], [-68.35888880433333, 45.50444659603471, 0.0], [-68.35892620433327, 45.504375329368145, 0.0], [-68.35898587099985, 45.50426139603496, 0.0], [-68.35904560433312, 45.50414739603514, 0.0], [-68.35910560433302, 45.50403339603537, 0.0], [-68.3591652043329, 45.50391952936883, 0.0], [-68.35922500433281, 45.503805529369004, 0.0], [-68.35928480433273, 45.50369152936918, 0.0], [-68.3593444709993, 45.50357759603605, 0.0], [-68.35940427099922, 45.50346359603623, 0.0], [-68.35946407099914, 45.5033495960364, 0.0], [-68.35952380433235, 45.50323572936992, 0.0], [-68.35958360433227, 45.50312172937009, 0.0], [-68.35964327099884, 45.50300772937027, 0.0], [-68.35970307099876, 45.502893796037085, 0.0], [-68.35976267099863, 45.50277979603726, 0.0], [-68.35982247099855, 45.50266579603749, 0.0], [-68.35988247099846, 45.50255192937095, 0.0], [-68.3599608043317, 45.50246799603775, 0.0], [-68.36005600433151, 45.50236652937127, 0.0], [-68.36015087099804, 45.50226512937144, 0.0], [-68.36024587099791, 45.50216359603826, 0.0], [-68.36034087099779, 45.50206219603842, 0.0], [-68.36043580433096, 45.50196072937189, 0.0], [-68.36053100433082, 45.50185932937205, 0.0], [-68.3606258709973, 45.50175779603887, 0.0], [-68.36072087099717, 45.50165639603904, 0.0], [-68.36081587099704, 45.5015549293725, 0.0], [-68.36091080433022, 45.50145352937267, 0.0], [-68.36096227099682, 45.501426729372724, 0.0], [-68.3611010709966, 45.501354596039505, 0.0], [-68.36124007099636, 45.501282396039585, 0.0], [-68.36137900432948, 45.50121019603972, 0.0], [-68.36151787099595, 45.50113799603986, 0.0], [-68.36165687099572, 45.50106579603994, 0.0], [-68.36179580432884, 45.500993596040075, 0.0], [-68.36193467099531, 45.500921396040155, 0.0], [-68.36207360432843, 45.50084919604029, 0.0], [-68.3622124043282, 45.50077699604037, 0.0], [-68.36235140432797, 45.50070479604051, 0.0], [-68.36241547099456, 45.50064639604062, 0.0], [-68.36252120432772, 45.50055032937411, 0.0], [-68.36262680432753, 45.50045419604089, 0.0], [-68.3627324043274, 45.500358129374376, 0.0], [-68.36283800432722, 45.50026199604122, 0.0], [-68.36294367099373, 45.5001659293747, 0.0], [-68.36304927099354, 45.50006979604149, 0.0], [-68.36305607099354, 45.50006372937486, 0.0]], "type": "LineString"}, "id": "1109", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1731422", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.5374292707229, 45.370940396241906, -68.53722547072323, 45.3714233295745], "geometry": {"coordinates": [[-68.53722547072323, 45.3714233295745, 0.0], [-68.5374292707229, 45.370940396241906, 0.0]], "type": "LineString"}, "id": "1110", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1733774", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.66270707052843, 45.03292859676657, -68.6575214705365, 45.047546996743904], "geometry": {"coordinates": [[-68.66216593719594, 45.047546996743904, 0.0], [-68.66270707052843, 45.043592530083345, 0.0], [-68.66249107052874, 45.04144793008669, 0.0], [-68.661251603864, 45.03908913009036, 0.0], [-68.65805927053566, 45.03474693009707, 0.0], [-68.6575214705365, 45.03292859676657, 0.0]], "type": "LineString"}, "id": "1111", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/1734232", "fl_ds_name": "Penobscot River"}, "type": "Feature"}, {"bbox": [-68.05004300481272, 46.68096106087518, -68.04838460481534, 46.685885194200864], "geometry": {"coordinates": [[-68.05004300481272, 46.685885194200864, 0.0], [-68.04838460481534, 46.68096106087518, 0.0]], "type": "LineString"}, "id": "1113", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/166195758", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.04842327148191, 46.672556927554865, -68.04591007148582, 46.68096106087518], "geometry": {"coordinates": [[-68.04838460481534, 46.68096106087518, 0.0], [-68.04842327148191, 46.68051272754252, 0.0], [-68.04805887148251, 46.67982672754363, 0.0], [-68.04769420481637, 46.67946072754415, 0.0], [-68.04749567148338, 46.678912127545004, 0.0], [-68.04726587148372, 46.6771291275478, 0.0], [-68.04696807148417, 46.6764203275489, 0.0], [-68.04627220481859, 46.67543699421708, 0.0], [-68.04620727148534, 46.67447692755189, 0.0], [-68.04600867148565, 46.674019727552604, 0.0], [-68.04591007148582, 46.6733109942204, 0.0], [-68.04604327148564, 46.67294539422096, 0.0], [-68.04604400481895, 46.672556927554865, 0.0]], "type": "LineString"}, "id": "1114", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803949", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.04604400481895, 46.67207552755565, -68.0454916048198, 46.672556927554865], "geometry": {"coordinates": [[-68.04604400481895, 46.672556927554865, 0.0], [-68.04593180481913, 46.67250099422165, 0.0], [-68.04582167148595, 46.67239459422183, 0.0], [-68.04571167148612, 46.67228819422195, 0.0], [-68.04560160481964, 46.67218192755547, 0.0], [-68.0454916048198, 46.67207552755565, 0.0]], "type": "LineString"}, "id": "1152", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805181", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.79541806877023, 43.92831339848118, -69.79145866877639, 43.93606433180247], "geometry": {"coordinates": [[-69.7920900687754, 43.93606433180247, 0.0], [-69.7915530021096, 43.93542359847015, 0.0], [-69.79145866877639, 43.93498919847082, 0.0], [-69.79155466877626, 43.93416599847211, 0.0], [-69.79183980210911, 43.93389179847253, 0.0], [-69.7934220021067, 43.93384713180592, 0.0], [-69.79478346877124, 43.93325353180683, 0.0], [-69.79510046877073, 43.932773531807584, 0.0], [-69.79541806877023, 43.93192759847557, 0.0], [-69.79481846877115, 43.93066953181085, 0.0], [-69.7951992021039, 43.929937998478636, 0.0], [-69.79519966877058, 43.929549198479265, 0.0], [-69.79494686877098, 43.929274731812995, 0.0], [-69.79384000210604, 43.92886233181366, 0.0], [-69.7935240021065, 43.92856479848081, 0.0], [-69.79371406877289, 43.92831339848118, 0.0]], "type": "LineString"}, "id": "1159", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5204854", "fl_ds_name": "Back River Creek"}, "type": "Feature"}, {"bbox": [-69.79406386877235, 43.92449393182045, -69.79277000210766, 43.92831339848118], "geometry": {"coordinates": [[-69.79371406877289, 43.92831339848118, 0.0], [-69.79406386877235, 43.92701013181653, 0.0], [-69.79390700210593, 43.92604959848467, 0.0], [-69.79305360210725, 43.925294398485846, 0.0], [-69.79277000210766, 43.92449393182045, 0.0]], "type": "LineString"}, "id": "1160", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5204858", "fl_ds_name": "Back River Creek"}, "type": "Feature"}, {"bbox": [-69.7940800687723, 43.92005693182733, -69.79277000210766, 43.92449393182045], "geometry": {"coordinates": [[-69.79277000210766, 43.92449393182045, 0.0], [-69.79344900210663, 43.92321199848908, 0.0], [-69.79392060210591, 43.92187613182449, 0.0], [-69.7940800687723, 43.92005693182733, 0.0]], "type": "LineString"}, "id": "1161", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205334", "fl_ds_name": "Back River Creek"}, "type": "Feature"}, {"bbox": [-69.79372560210618, 43.82328133197751, -69.78860646878081, 43.82520033197454], "geometry": {"coordinates": [[-69.78860646878081, 43.82483259864182, 0.0], [-69.7889540021136, 43.82483293197515, 0.0], [-69.78971166877909, 43.82508499864139, 0.0], [-69.79094346877719, 43.82520033197454, 0.0], [-69.79211266877536, 43.82472093197532, 0.0], [-69.79277580210766, 43.82488139864171, 0.0], [-69.79306020210726, 43.824835931975144, 0.0], [-69.79334626877346, 43.82348693197724, 0.0], [-69.79372560210618, 43.82328133197751, 0.0]], "type": "LineString"}, "id": "1162", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5204956", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.80140206876092, 43.822163931979276, -69.79372560210618, 43.82360173197702], "geometry": {"coordinates": [[-69.79372560210618, 43.82328133197751, 0.0], [-69.79407260210564, 43.82360173197702, 0.0], [-69.79533740210371, 43.82252779864535, 0.0], [-69.79843320209886, 43.822163931979276, 0.0], [-69.79963300209704, 43.82248493197875, 0.0], [-69.80042266876245, 43.822485398645426, 0.0], [-69.80140206876092, 43.82230313197903, 0.0]], "type": "LineString"}, "id": "1163", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5204958", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.79964126876371, 43.815738931989245, -69.79372560210618, 43.82328133197751], "geometry": {"coordinates": [[-69.79372560210618, 43.82328133197751, 0.0], [-69.79394686877254, 43.82305279864454, 0.0], [-69.79388506877262, 43.82213813197933, 0.0], [-69.7943616687719, 43.81998879864932, 0.0], [-69.79496400210428, 43.81822853198537, 0.0], [-69.79550140210341, 43.81777139865278, 0.0], [-69.79616466876905, 43.8177719319861, 0.0], [-69.79660786876838, 43.81704039865389, 0.0], [-69.79749280210035, 43.81656073198798, 0.0], [-69.79812466876604, 43.81633253198834, 0.0], [-69.79859880209864, 43.81598973198885, 0.0], [-69.79923040209763, 43.81605879865543, 0.0], [-69.79964126876371, 43.815738931989245, 0.0]], "type": "LineString"}, "id": "1164", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5204962", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.80507640208856, 43.822012931979486, -69.80140206876092, 43.82262559864523], "geometry": {"coordinates": [[-69.80140206876092, 43.82230313197903, 0.0], [-69.80237646875946, 43.82249793197877, 0.0], [-69.80339620209116, 43.82262559864523, 0.0], [-69.80507640208856, 43.822012931979486, 0.0]], "type": "LineString"}, "id": "1165", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205260", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.80093840209503, 43.812612598660735, -69.79964126876371, 43.815738931989245], "geometry": {"coordinates": [[-69.79964126876371, 43.815738931989245, 0.0], [-69.80003326876306, 43.81444273199128, 0.0], [-69.80093840209503, 43.812612598660735, 0.0]], "type": "LineString"}, "id": "1166", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205258", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.78860646878081, 43.822611798645255, -69.77816220213037, 43.82526779864111], "geometry": {"coordinates": [[-69.77816220213037, 43.822611798645255, 0.0], [-69.78372786878839, 43.82376719864345, 0.0], [-69.78640440211757, 43.824742398641945, 0.0], [-69.78744900211592, 43.82521339864121, 0.0], [-69.7880876687816, 43.82526779864111, 0.0], [-69.78860646878081, 43.82483259864182, 0.0]], "type": "LineString"}, "id": "1169", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205262", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.77816220213037, 43.822611798645255, -69.77774680213099, 43.82363939864365], "geometry": {"coordinates": [[-69.77774680213099, 43.82363939864365, 0.0], [-69.77816220213037, 43.822611798645255, 0.0]], "type": "LineString"}, "id": "1170", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205326", "fl_ds_name": "Back River"}, "type": "Feature"}, {"bbox": [-69.78827760211465, 43.80085533201236, -69.77816220213037, 43.822611798645255], "geometry": {"coordinates": [[-69.77816220213037, 43.822611798645255, 0.0], [-69.77946766879501, 43.81745059865324, 0.0], [-69.78094080212605, 43.81270433199393, 0.0], [-69.78358160212196, 43.8088619986666, 0.0], [-69.78537000211918, 43.80684573200307, 0.0], [-69.78827760211465, 43.80085533201236, 0.0]], "type": "LineString"}, "id": "1171", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205266", "fl_ds_name": "Back River"}, "type": "Feature"}, {"bbox": [-69.76030666882474, 43.87875993189141, -69.7560226688314, 43.88864319854275], "geometry": {"coordinates": [[-69.7560226688314, 43.88864319854275, 0.0], [-69.76019546882492, 43.879264931890646, 0.0], [-69.76030666882474, 43.87875993189141, 0.0]], "type": "LineString"}, "id": "1176", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205328", "fl_ds_name": "Back River"}, "type": "Feature"}, {"bbox": [-69.77774680213099, 43.82363939864365, -69.75903540216007, 43.87875993189141], "geometry": {"coordinates": [[-69.76030666882474, 43.87875993189141, 0.0], [-69.76066946882418, 43.87711139856066, 0.0], [-69.76225386882169, 43.87500359856392, 0.0], [-69.76318046882028, 43.87456213189796, 0.0], [-69.76390780215246, 43.87398999856549, 0.0], [-69.76484980215099, 43.873191598566734, 0.0], [-69.76520960215043, 43.87164479856915, 0.0], [-69.76437766881844, 43.870575731904125, 0.0], [-69.76318226882029, 43.86979259857202, 0.0], [-69.76230406882166, 43.86979399857199, 0.0], [-69.76086106882389, 43.869320531906055, 0.0], [-69.75935040215955, 43.86838333190752, 0.0], [-69.75918220215982, 43.86753913190881, 0.0], [-69.75949180215935, 43.86580213191155, 0.0], [-69.75947240215936, 43.864898198579624, 0.0], [-69.7597664021589, 43.863517998581756, 0.0], [-69.75903540216007, 43.86282939858279, 0.0], [-69.7592656021597, 43.862246198583705, 0.0], [-69.76037386882462, 43.861661731917934, 0.0], [-69.76189786882225, 43.86161173191806, 0.0], [-69.76328846882012, 43.86126459858525, 0.0], [-69.76548940215002, 43.86045233191982, 0.0], [-69.76821620214577, 43.85830699858985, 0.0], [-69.76986766880992, 43.85666299859241, 0.0], [-69.7718724021401, 43.851581131933585, 0.0], [-69.77289306880522, 43.84962893193665, 0.0], [-69.77253886880573, 43.84766713193966, 0.0], [-69.77198760213992, 43.84620513194193, 0.0], [-69.77100500214146, 43.84456539861117, 0.0], [-69.7704558021423, 43.84373379861245, 0.0], [-69.76896500214463, 43.843700598612486, 0.0], [-69.76868466881172, 43.84409353194525, 0.0], [-69.76757480214678, 43.844047798611996, 0.0], [-69.76655966881503, 43.84249139861436, 0.0], [-69.76590586881605, 43.8400185986182, 0.0], [-69.76616880214897, 43.83935219861928, 0.0], [-69.77004866880964, 43.83555193195849, 0.0], [-69.77141726880751, 43.83367059862809, 0.0], [-69.77184240214018, 43.83195733196408, 0.0], [-69.7725804688057, 43.82976773196748, 0.0], [-69.77340180213776, 43.827685131970725, 0.0], [-69.77496920213531, 43.825934198640084, 0.0], [-69.77774680213099, 43.82363939864365, 0.0]], "type": "LineString"}, "id": "1178", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205324", "fl_ds_name": "Back River"}, "type": "Feature"}, {"bbox": [-69.78448946878717, 43.887182331878364, -69.76179260215577, 43.90339239851983], "geometry": {"coordinates": [[-69.78448946878717, 43.90339239851983, 0.0], [-69.78395160212136, 43.90211859852184, 0.0], [-69.7822382687907, 43.901292798523116, 0.0], [-69.77862546879629, 43.89990193185861, 0.0], [-69.77726406879839, 43.89902813185995, 0.0], [-69.77539100213465, 43.89808019852808, 0.0], [-69.77445280213612, 43.89708333186297, 0.0], [-69.77311060213822, 43.895317531865714, 0.0], [-69.77043246880902, 43.89366839853494, 0.0], [-69.76802026881279, 43.89261073186992, 0.0], [-69.76668100214818, 43.89168153187137, 0.0], [-69.76493206881753, 43.88989273187417, 0.0], [-69.76361206881961, 43.88807153187696, 0.0], [-69.76179260215577, 43.887182331878364, 0.0]], "type": "LineString"}, "id": "1179", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205342", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.79417406877218, 43.909819198509865, -69.79404020210569, 43.92005693182733], "geometry": {"coordinates": [[-69.7940800687723, 43.92005693182733, 0.0], [-69.79417406877218, 43.91898499849566, 0.0], [-69.79404020210569, 43.91637313183304, 0.0], [-69.79407560210564, 43.909819198509865, 0.0]], "type": "LineString"}, "id": "1180", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205296", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.8083835354168, 43.90742293184695, -69.79407560210564, 43.91045739850887], "geometry": {"coordinates": [[-69.79407560210564, 43.909819198509865, 0.0], [-69.79551040210345, 43.909746798510014, 0.0], [-69.79758380210023, 43.91021219850927, 0.0], [-69.79879160209833, 43.91045739850887, 0.0], [-69.79955486876383, 43.910359798509035, 0.0], [-69.80012946876292, 43.909585131843585, 0.0], [-69.80105966876147, 43.90874879851157, 0.0], [-69.80227280209294, 43.9081927985124, 0.0], [-69.80444186875621, 43.907890331846204, 0.0], [-69.8083835354168, 43.90742293184695, 0.0]], "type": "LineString"}, "id": "1181", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205338", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.79407560210564, 43.90339239851983, -69.78448946878717, 43.909819198509865], "geometry": {"coordinates": [[-69.79407560210564, 43.909819198509865, 0.0], [-69.7906558687776, 43.905798798516116, 0.0], [-69.78827580211464, 43.90476233185109, 0.0], [-69.78448946878717, 43.90339239851983, 0.0]], "type": "LineString"}, "id": "1183", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205340", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.76179260215577, 43.88710259854514, -69.7560226688314, 43.88864319854275], "geometry": {"coordinates": [[-69.76179260215577, 43.887182331878364, 0.0], [-69.76172860215587, 43.88715099854505, 0.0], [-69.7598752688254, 43.88710259854514, 0.0], [-69.75873206882716, 43.88725833187823, 0.0], [-69.7560226688314, 43.88864319854275, 0.0]], "type": "LineString"}, "id": "1184", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5205344", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.91955126857755, 43.88906693187545, -69.9168064685818, 43.89942693185935], "geometry": {"coordinates": [[-69.91696520191488, 43.89942693185935, 0.0], [-69.9168064685818, 43.89864953186054, 0.0], [-69.91718460191458, 43.89695713186319, 0.0], [-69.91772166858038, 43.89633953186416, 0.0], [-69.91791120191345, 43.89592779853143, 0.0], [-69.91791086858012, 43.89553899853206, 0.0], [-69.91778406858032, 43.89519613186593, 0.0], [-69.91797366858003, 43.89494459853296, 0.0], [-69.91835300191275, 43.894715731866654, 0.0], [-69.91825786857959, 43.89448713186704, 0.0], [-69.91876360191213, 43.89409813186762, 0.0], [-69.9187632019121, 43.893640731868345, 0.0], [-69.91857280191243, 43.89288619853619, 0.0], [-69.91860406857904, 43.89247459853681, 0.0], [-69.9191726019115, 43.891628198538115, 0.0], [-69.91955126857755, 43.8905989985397, 0.0], [-69.91945546857772, 43.88938699854157, 0.0], [-69.91926566857802, 43.889204198541904, 0.0], [-69.91932880191126, 43.88906693187545, 0.0]], "type": "LineString"}, "id": "1247", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6719371", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.93110700189294, 43.873099931900185, -69.91932880191126, 43.88906693187545], "geometry": {"coordinates": [[-69.91932880191126, 43.88906693187545, 0.0], [-69.91964420191073, 43.88812933187688, 0.0], [-69.92040266857623, 43.88764873187762, 0.0], [-69.9206236685759, 43.8873285318781, 0.0], [-69.92030700190969, 43.88675699854565, 0.0], [-69.92030660190972, 43.886276731879775, 0.0], [-69.92052786857602, 43.88607079854677, 0.0], [-69.9210968019085, 43.88591053188031, 0.0], [-69.92115926857508, 43.884972931881805, 0.0], [-69.92150660190788, 43.88442393188262, 0.0], [-69.92194906857384, 43.884217998549616, 0.0], [-69.92327666857176, 43.88398873188328, 0.0], [-69.92346626857147, 43.88382853188358, 0.0], [-69.92333940190503, 43.88321119855118, 0.0], [-69.92311760190535, 43.88275393188525, 0.0], [-69.92355966857133, 43.88211339855286, 0.0], [-69.92346440190482, 43.88149599855382, 0.0], [-69.92298940190557, 43.880650198555145, 0.0], [-69.92298906857224, 43.88035293188892, 0.0], [-69.92336826857161, 43.880078331889365, 0.0], [-69.92374760190438, 43.88000953188947, 0.0], [-69.92434780190342, 43.87955199855685, 0.0], [-69.9248206685694, 43.8779281318927, 0.0], [-69.92564200190145, 43.877287398560384, 0.0], [-69.92668520189983, 43.877149731893894, 0.0], [-69.92709586856586, 43.8769665318942, 0.0], [-69.92722186856565, 43.87646339856167, 0.0], [-69.92769600189825, 43.87630313189521, 0.0], [-69.92772700189818, 43.87563999856292, 0.0], [-69.92813740189757, 43.87506799856379, 0.0], [-69.92867440189673, 43.87465619856448, 0.0], [-69.92899046856292, 43.874655998564435, 0.0], [-69.92937000189568, 43.874861731897454, 0.0], [-69.92968620189515, 43.87483859856417, 0.0], [-69.93034960189414, 43.8743809318982, 0.0], [-69.93057040189376, 43.87385479856573, 0.0], [-69.93098120189313, 43.87374033189923, 0.0], [-69.93110700189294, 43.873099931900185, 0.0]], "type": "LineString"}, "id": "1248", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6719387", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.93252400189073, 43.86649179857716, -69.9296470018952, 43.873099931900185], "geometry": {"coordinates": [[-69.93110700189294, 43.873099931900185, 0.0], [-69.93126406855936, 43.87218513190163, 0.0], [-69.93211700189141, 43.87154439856931, 0.0], [-69.93208500189144, 43.87127013190303, 0.0], [-69.93192700189167, 43.87122439856978, 0.0], [-69.93154766855895, 43.87131613190297, 0.0], [-69.93104226855974, 43.871682331902434, 0.0], [-69.93063140189366, 43.87172819856903, 0.0], [-69.93066260189363, 43.8712707985697, 0.0], [-69.93145206855911, 43.87051573190422, 0.0], [-69.93145146855909, 43.86989839857182, 0.0], [-69.93075546856016, 43.86928133190611, 0.0], [-69.93116580189286, 43.86861793190718, 0.0], [-69.93075440189352, 43.868160798574536, 0.0], [-69.93081746856006, 43.86804633190803, 0.0], [-69.93100706855978, 43.868023398574735, 0.0], [-69.93239826855762, 43.86841139857415, 0.0], [-69.93252400189073, 43.86783973190836, 0.0], [-69.93214446855802, 43.86761119857539, 0.0], [-69.93021640189431, 43.86747499857563, 0.0], [-69.92971046856178, 43.8672693985759, 0.0], [-69.9296470018952, 43.866995131909675, 0.0], [-69.93008900189454, 43.86649179857716, 0.0]], "type": "LineString"}, "id": "1249", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6719395", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.90778306859585, 43.880839131888195, -69.90345900193586, 43.90679439851459], "geometry": {"coordinates": [[-69.9044772019343, 43.90679439851459, 0.0], [-69.90447700193431, 43.90642853184846, 0.0], [-69.90482466860044, 43.90601679851579, 0.0], [-69.9050458019334, 43.9054221985167, 0.0], [-69.90482360193374, 43.9040731985188, 0.0], [-69.90529700193304, 43.90228933185489, 0.0], [-69.9050430019334, 43.90052859852432, 0.0], [-69.90453666860088, 43.89986559852531, 0.0], [-69.90364986860226, 43.89757913186219, 0.0], [-69.90349106860248, 43.896458598530614, 0.0], [-69.90345900193586, 43.895338131865685, 0.0], [-69.90428046860126, 43.89410313186761, 0.0], [-69.90427986860124, 43.893188331869, 0.0], [-69.90465886860068, 43.89236499853695, 0.0], [-69.90443666860102, 43.89087873187259, 0.0], [-69.90453126860086, 43.89046699853992, 0.0], [-69.90478406860046, 43.89010113187379, 0.0], [-69.9050688019334, 43.88998673187399, 0.0], [-69.90589026859874, 43.88895733187559, 0.0], [-69.90633240193142, 43.88788253187727, 0.0], [-69.90648940193114, 43.88623593187981, 0.0], [-69.90680540193068, 43.88586993188039, 0.0], [-69.90674200193075, 43.88559559854747, 0.0], [-69.90702600193032, 43.88468093188226, 0.0], [-69.90721486859672, 43.88335439855098, 0.0], [-69.90765746859603, 43.8830113318848, 0.0], [-69.90756206859618, 43.882553931885525, 0.0], [-69.90778306859585, 43.88191359855318, 0.0], [-69.9077828685958, 43.88152479855381, 0.0], [-69.90737166859645, 43.88134199855409, 0.0], [-69.90680240193069, 43.880839131888195, 0.0]], "type": "LineString"}, "id": "1250", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6719373", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.90879566859422, 43.86971453190546, -69.90647246859788, 43.880839131888195], "geometry": {"coordinates": [[-69.90680240193069, 43.880839131888195, 0.0], [-69.90672160193083, 43.880643798555184, 0.0], [-69.90647246859788, 43.88017953188921, 0.0], [-69.90711500193021, 43.879005398557695, 0.0], [-69.90748946859628, 43.877125198560634, 0.0], [-69.90879566859422, 43.874259731898405, 0.0], [-69.9080606685954, 43.87150319856937, 0.0], [-69.90799886859548, 43.86984613190526, 0.0], [-69.90803680192874, 43.86971453190546, 0.0]], "type": "LineString"}, "id": "1251", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6719459", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-69.91441660191884, 43.871437998569434, -69.90807460192872, 43.89622839853098], "geometry": {"coordinates": [[-69.90864566859449, 43.89622839853098, 0.0], [-69.90829726859505, 43.89547393186547, 0.0], [-69.90826526859507, 43.894673531866715, 0.0], [-69.90813846859527, 43.89414759853423, 0.0], [-69.90807460192872, 43.89325579853556, 0.0], [-69.90946426859324, 43.89044273187329, 0.0], [-69.90911600192709, 43.88961959854123, 0.0], [-69.90927366859353, 43.8891393318753, 0.0], [-69.91009526859222, 43.88852153187628, 0.0], [-69.91041100192507, 43.88762973187767, 0.0], [-69.91018860192543, 43.88600613188015, 0.0], [-69.91034606859182, 43.88499979854839, 0.0], [-69.91151440192334, 43.88273573188525, 0.0], [-69.91186120192282, 43.88140919855397, 0.0], [-69.91189206858945, 43.880219998555845, 0.0], [-69.91211286858908, 43.879533931890194, 0.0], [-69.91245900192189, 43.87699553189418, 0.0], [-69.91309006858756, 43.87539459856333, 0.0], [-69.91334286858716, 43.87507433189717, 0.0], [-69.91365860192002, 43.87473119856435, 0.0], [-69.91356346858686, 43.87438819856487, 0.0], [-69.91359500192016, 43.8741367318986, 0.0], [-69.91441660191884, 43.87374759856584, 0.0], [-69.91435320191897, 43.87354179856618, 0.0], [-69.91372086858661, 43.8732905318999, 0.0], [-69.91384626858644, 43.8718727319021, 0.0], [-69.91397260191957, 43.87155239856929, 0.0], [-69.914320201919, 43.871437998569434, 0.0]], "type": "LineString"}, "id": "1252", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6719393", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.01175320487215, 46.8594411939315, -68.00895427154319, 46.859876527264134], "geometry": {"coordinates": [[-68.00895427154319, 46.8594411939315, 0.0], [-68.0099862048749, 46.859876527264134, 0.0], [-68.0107860048737, 46.85983159393089, 0.0], [-68.01168627153896, 46.859535327264666, 0.0], [-68.01175320487215, 46.85946692726475, 0.0]], "type": "LineString"}, "id": "1254", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803601", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-68.01175320487215, 46.85639519393618, -68.0030302048857, 46.85946692726475], "geometry": {"coordinates": [[-68.01175320487215, 46.85946692726475, 0.0], [-68.01135420487282, 46.859009393932126, 0.0], [-68.00985680487514, 46.85811652726687, 0.0], [-68.006493471547, 46.85722152726828, 0.0], [-68.00509447154917, 46.85701439393523, 0.0], [-68.0030302048857, 46.85639519393618, 0.0]], "type": "LineString"}, "id": "1255", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803613", "fl_ds_name": "Caribou Stream"}, "type": "Feature"}, {"bbox": [-68.0030302048857, 46.85634972726962, -68.00235860488675, 46.8564177272695], "geometry": {"coordinates": [[-68.0030302048857, 46.85639519393618, 0.0], [-68.00291807155253, 46.85634972726962, 0.0], [-68.00273160488615, 46.856372393936226, 0.0], [-68.00254507155313, 46.85639499393619, 0.0], [-68.00235860488675, 46.8564177272695, 0.0]], "type": "LineString"}, "id": "1280", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/805069", "fl_ds_name": "Caribou Stream"}, "type": "Feature"}, {"bbox": [-68.01378767153568, 46.8584861272663, -68.01175320487215, 46.85946692726475], "geometry": {"coordinates": [[-68.01378767153568, 46.8584861272663, 0.0], [-68.01291987153701, 46.859193793931865, 0.0], [-68.01245300487108, 46.85937612726491, 0.0], [-68.01175320487215, 46.85946692726475, 0.0]], "type": "LineString"}, "id": "1336", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803603", "fl_ds_name": "Caribou Stream"}, "type": "Feature"}, {"bbox": [-70.7569374006111, 43.08328159979283, -70.75058626728764, 43.08464239979071], "geometry": {"coordinates": [[-70.7569374006111, 43.08464239979071, 0.0], [-70.75387426728253, 43.08376933312542, 0.0], [-70.7526650672844, 43.08328159979283, 0.0], [-70.75058626728764, 43.08333039979277, 0.0]], "type": "LineString"}, "id": "1339", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5846422", "fl_ds_name": "Piscataqua River"}, "type": "Feature"}, {"bbox": [-70.31642960129483, 43.66947299888295, -70.2983680013229, 43.68606919885718], "geometry": {"coordinates": [[-70.2983680013229, 43.68606919885718, 0.0], [-70.29969180132082, 43.68577273219097, 0.0], [-70.3003534679865, 43.685750198857704, 0.0], [-70.30095220131886, 43.685842132190885, 0.0], [-70.30173980131764, 43.68595693219066, 0.0], [-70.30290600131582, 43.68561453219121, 0.0], [-70.30350440131491, 43.68584353219086, 0.0], [-70.30410320131398, 43.685775332190985, 0.0], [-70.30545866797854, 43.68531873219166, 0.0], [-70.30706586797606, 43.6851595321919, 0.0], [-70.30908220130624, 43.68550359885808, 0.0], [-70.30983820130507, 43.685801198857575, 0.0], [-70.3104054013042, 43.685778732190954, 0.0], [-70.31119300130297, 43.68598493219065, 0.0], [-70.31198080130179, 43.685985332190626, 0.0], [-70.31286320130039, 43.6858713988575, 0.0], [-70.31399786796527, 43.68541459885819, 0.0], [-70.31440806796468, 43.684774532192534, 0.0], [-70.314408601298, 43.6843171988599, 0.0], [-70.31447186796458, 43.68385993219397, 0.0], [-70.31491360129723, 43.68324273219491, 0.0], [-70.3149772012971, 43.682671132195765, 0.0], [-70.31519786796343, 43.682511132196055, 0.0], [-70.31516680129681, 43.68212233219663, 0.0], [-70.31526146796335, 43.68196233219692, 0.0], [-70.31532506796322, 43.68120773219806, 0.0], [-70.31545166796303, 43.680681932198866, 0.0], [-70.3157986679625, 43.68020179886628, 0.0], [-70.31608280129541, 43.67963019886719, 0.0], [-70.31642960129483, 43.6792645322011, 0.0], [-70.31620940129523, 43.67894433220158, 0.0], [-70.31567400129603, 43.678646798868726, 0.0], [-70.31554840129621, 43.67816659886944, 0.0], [-70.31403686796523, 43.67720539887097, 0.0], [-70.31277740130054, 43.67647313220539, 0.0], [-70.31208480130158, 43.67599253220618, 0.0], [-70.31158140130236, 43.67516913220743, 0.0], [-70.31114100130304, 43.6745515322084, 0.0], [-70.31073220130372, 43.67375093220966, 0.0], [-70.31070126797039, 43.67315639887721, 0.0], [-70.31082800130355, 43.672493332211616, 0.0], [-70.31019860130453, 43.671783998879334, 0.0], [-70.30982126797176, 43.67107499888044, 0.0], [-70.30922286797272, 43.67096039888065, 0.0], [-70.30849880130717, 43.67038839888153, 0.0], [-70.30831020130745, 43.67002233221541, 0.0], [-70.30793260130804, 43.66963353221604, 0.0], [-70.30739706797556, 43.66947299888295, 0.0]], "type": "LineString"}, "id": "1340", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6721495", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.30797400130797, 43.664897598890036, -70.30697800130952, 43.66947299888295], "geometry": {"coordinates": [[-70.30739706797556, 43.66947299888295, 0.0], [-70.30733920130899, 43.66931473221655, 0.0], [-70.30697800130952, 43.66887493221719, 0.0], [-70.30789086797478, 43.66697393222017, 0.0], [-70.30797400130797, 43.66581879888861, 0.0], [-70.30737080130893, 43.664897598890036, 0.0]], "type": "LineString"}, "id": "1341", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6722407", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.30768686797506, 43.66341353222566, -70.307307401309, 43.66485399889012], "geometry": {"coordinates": [[-70.307307401309, 43.66485399889012, 0.0], [-70.30765446797517, 43.664351132224226, 0.0], [-70.3076862013084, 43.66409953222461, 0.0], [-70.3074344013088, 43.66393933222486, 0.0], [-70.30756080130863, 43.66352773222553, 0.0], [-70.30768686797506, 43.66341353222566, 0.0]], "type": "LineString"}, "id": "1342", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6721515", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.30858726797368, 43.6628165322266, -70.30768686797506, 43.66341353222566], "geometry": {"coordinates": [[-70.30768686797506, 43.66341353222566, 0.0], [-70.30784046797487, 43.66330753222587, 0.0], [-70.3079390679747, 43.663231398892606, 0.0], [-70.30799720130796, 43.66318113222604, 0.0], [-70.3080878013078, 43.663111398892795, 0.0], [-70.30818266797434, 43.66305253222623, 0.0], [-70.30821546797426, 43.66302713222626, 0.0], [-70.30858726797368, 43.6628165322266, 0.0]], "type": "LineString"}, "id": "1343", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6722413", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.30737080130893, 43.66485399889012, -70.307307401309, 43.664897598890036], "geometry": {"coordinates": [[-70.30737080130893, 43.664897598890036, 0.0], [-70.30734500130893, 43.6648581988901, 0.0], [-70.307307401309, 43.66485399889012, 0.0]], "type": "LineString"}, "id": "1344", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6722409", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.31009320130471, 43.66139913222884, -70.30822300130757, 43.6628165322266], "geometry": {"coordinates": [[-70.30858726797368, 43.6628165322266, 0.0], [-70.30822300130757, 43.662353332227326, 0.0], [-70.30845580130722, 43.66174873222826, 0.0], [-70.3093140679726, 43.66139913222884, 0.0], [-70.31009320130471, 43.66148953222864, 0.0]], "type": "LineString"}, "id": "1345", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6722417", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.31186006796861, 43.65929393223206, -70.31009320130471, 43.66148953222864], "geometry": {"coordinates": [[-70.31009320130471, 43.66148953222864, 0.0], [-70.31153420130244, 43.66080039889641, 0.0], [-70.31186006796861, 43.659954132231064, 0.0], [-70.31149560130251, 43.65949093223179, 0.0], [-70.31111460130313, 43.65929393223206, 0.0]], "type": "LineString"}, "id": "1346", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6722421", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-70.31111460130313, 43.65886419889944, -70.31005386797142, 43.65929393223206], "geometry": {"coordinates": [[-70.31111460130313, 43.65929393223206, 0.0], [-70.31005386797142, 43.65886419889944, 0.0]], "type": "LineString"}, "id": "1347", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/6722655", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.7891378052177, 46.87850832723524, -67.78790380521963, 46.879701127233375], "geometry": {"coordinates": [[-67.78790380521963, 46.879701127233375, 0.0], [-67.78800120521947, 46.87958819390019, 0.0], [-67.78825413855242, 46.87944046056708, 0.0], [-67.78861740521853, 46.87930432723397, 0.0], [-67.78885593855148, 46.87916299390088, 0.0], [-67.78900033855126, 46.878983327234494, 0.0], [-67.7891378052177, 46.87850832723524, 0.0]], "type": "LineString"}, "id": "1354", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/166195771", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.86734960509631, 46.96353999376987, -67.84817627179274, 46.98177499374157], "geometry": {"coordinates": [[-67.84817627179274, 46.98177499374157, 0.0], [-67.84817660512607, 46.98127219374237, 0.0], [-67.84864500512538, 46.980060993744246, 0.0], [-67.84927980512435, 46.97939839374527, 0.0], [-67.85188507178697, 46.97825619374703, 0.0], [-67.85362220511763, 46.97697679374903, 0.0], [-67.85408980511687, 46.97683972708256, 0.0], [-67.85642740511327, 46.97677159374933, 0.0], [-67.85736240511181, 46.97652032708305, 0.0], [-67.85886520510951, 46.97599499375053, 0.0], [-67.8593662051087, 46.975674993751056, 0.0], [-67.86103640510612, 46.97384699375391, 0.0], [-67.86167147177179, 46.97169859375725, 0.0], [-67.86354240510224, 46.96877339376175, 0.0], [-67.86451100510072, 46.96705939376443, 0.0], [-67.86734960509631, 46.96353999376987, 0.0]], "type": "LineString"}, "id": "1355", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803057", "fl_ds_name": "Willard Brook"}, "type": "Feature"}, {"bbox": [-67.86281220510335, 46.94907019379235, -67.85146600512098, 46.95396312711807], "geometry": {"coordinates": [[-67.86281220510335, 46.95396312711807, 0.0], [-67.86214480510438, 46.95348312711883, 0.0], [-67.8610768717727, 46.95298019378629, 0.0], [-67.86054307177358, 46.95243159378714, 0.0], [-67.85950860510849, 46.95172299378822, 0.0], [-67.85904127177588, 46.951539993788515, 0.0], [-67.85730580511193, 46.951242593789004, 0.0], [-67.8561712051137, 46.950785327123015, 0.0], [-67.85333447178476, 46.950327593790405, 0.0], [-67.85233327178628, 46.95007599379079, 0.0], [-67.85173280512055, 46.949550193791595, 0.0], [-67.85146600512098, 46.94907019379235, 0.0]], "type": "LineString"}, "id": "1356", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/802851", "fl_ds_name": "Butterfield Brook"}, "type": "Feature"}, {"bbox": [-67.83803287180848, 46.91836839384001, -67.82896587182256, 46.926279727161045], "geometry": {"coordinates": [[-67.83803287180848, 46.926279727161045, 0.0], [-67.83753280514259, 46.92577672716186, 0.0], [-67.83569840514542, 46.9253875938291, 0.0], [-67.83516487181294, 46.925067393829636, 0.0], [-67.8348984051467, 46.92454159383044, 0.0], [-67.8337650718151, 46.923512793832, 0.0], [-67.83146507181868, 46.92122639383558, 0.0], [-67.83116540515249, 46.920700593836386, 0.0], [-67.83056527182009, 46.9201975271705, 0.0], [-67.82979920515459, 46.919008793839, 0.0], [-67.82923260515548, 46.91845999383986, 0.0], [-67.82896587182256, 46.91836839384001, 0.0]], "type": "LineString"}, "id": "1357", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/802867", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.82896587182256, 46.88096279389805, -67.78920993855093, 46.91836839384001], "geometry": {"coordinates": [[-67.82896587182256, 46.91836839384001, 0.0], [-67.82889947182264, 46.91804852717382, 0.0], [-67.82869967182296, 46.91761412717449, 0.0], [-67.82779940515769, 46.917362393841586, 0.0], [-67.8251994718284, 46.91557852717767, 0.0], [-67.82466647182923, 46.91491552717872, 0.0], [-67.82436680516304, 46.914320993846275, 0.0], [-67.82426707182987, 46.913978193846845, 0.0], [-67.82396727183033, 46.91354379384751, 0.0], [-67.82390127183044, 46.912949593848396, 0.0], [-67.82220267183305, 46.910663193851974, 0.0], [-67.82180267183367, 46.91043452718566, 0.0], [-67.82126927183452, 46.91027419385256, 0.0], [-67.82056900516892, 46.91020532718602, 0.0], [-67.81993520516994, 46.91034219385244, 0.0], [-67.81803400517288, 46.910432593852306, 0.0], [-67.81720027184082, 46.91036372718577, 0.0], [-67.81643340517536, 46.91011179385282, 0.0], [-67.81540047184365, 46.909379927187274, 0.0], [-67.8142678051787, 46.908282327189, 0.0], [-67.81360200517975, 46.90732192719048, 0.0], [-67.81176987184926, 46.90560679385982, 0.0], [-67.81047020518463, 46.90489752719424, 0.0], [-67.80997067185206, 46.90439452719505, 0.0], [-67.80960460518594, 46.903754327196054, 0.0], [-67.80954000518602, 46.902108727198595, 0.0], [-67.80937407185297, 46.90151432719949, 0.0], [-67.80907440518678, 46.901125593866766, 0.0], [-67.80834147185459, 46.900576727200985, 0.0], [-67.80787600518863, 46.899616527202454, 0.0], [-67.8075762051891, 46.89941059386945, 0.0], [-67.80604327185813, 46.89874679387049, 0.0], [-67.80424307186092, 46.89840292720436, 0.0], [-67.80387667186153, 46.89805979387154, 0.0], [-67.8020464051977, 46.89554459387546, 0.0], [-67.8007822718663, 46.893463927212, 0.0], [-67.80075020519968, 46.89264119387997, 0.0], [-67.80105207186591, 46.89138439388188, 0.0], [-67.80095287186606, 46.89081292721613, 0.0], [-67.80062020519989, 46.890332727216844, 0.0], [-67.79888867186924, 46.88886879388582, 0.0], [-67.79655620520623, 46.88806732722037, 0.0], [-67.79549027187454, 46.88758652722112, 0.0], [-67.79429147187636, 46.88669432722253, 0.0], [-67.79312600521155, 46.88589352722374, 0.0], [-67.79196200521335, 46.88413279389317, 0.0], [-67.79146260521412, 46.88372112722715, 0.0], [-67.79116400521457, 46.88282952722852, 0.0], [-67.79063207188204, 46.88186919389665, 0.0], [-67.78966667188354, 46.88113712723111, 0.0], [-67.78920993855093, 46.88096279389805, 0.0]], "type": "LineString"}, "id": "1358", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/802881", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.78974487188344, 46.821691260656735, -67.7356896053007, 46.8536423272738], "geometry": {"coordinates": [[-67.78974487188344, 46.8536423272738, 0.0], [-67.78846620521875, 46.853546727273965, 0.0], [-67.78763653855339, 46.85325392727441, 0.0], [-67.78651067188844, 46.852204127276025, 0.0], [-67.78631633855542, 46.85155332727703, 0.0], [-67.78622347188889, 46.851051860611165, 0.0], [-67.78612433855574, 46.85079872727823, 0.0], [-67.78545220522346, 46.850505127278666, 0.0], [-67.78500260522412, 46.84960439394672, 0.0], [-67.78444493855835, 46.84884799394791, 0.0], [-67.7845040718916, 46.84852399394845, 0.0], [-67.78493167189089, 46.84810019394905, 0.0], [-67.78478240522446, 46.84777586061625, 0.0], [-67.78374887189273, 46.84729532728369, 0.0], [-67.78350180522648, 46.84665012728465, 0.0], [-67.78309613856044, 46.84610512728551, 0.0], [-67.78190187189563, 46.84581059395265, 0.0], [-67.78128560522993, 46.84533519395336, 0.0], [-67.78072567189741, 46.84468492728769, 0.0], [-67.77960573856586, 46.843382193956415, 0.0], [-67.77857807190077, 46.84265539395756, 0.0], [-67.77811480523485, 46.8423282606247, 0.0], [-67.77687180523674, 46.84188112729208, 0.0], [-67.77599473857146, 46.84137252729283, 0.0], [-67.77505967190626, 46.8411471939599, 0.0], [-67.77470873857345, 46.840499593960885, 0.0], [-67.77451460524043, 46.83985112729522, 0.0], [-67.77370633857498, 46.83866179396375, 0.0], [-67.77298433857612, 46.83825846063104, 0.0], [-67.7721519385774, 46.83810566063124, 0.0], [-67.77164627191155, 46.83738432729905, 0.0], [-67.77071860524632, 46.83683606063323, 0.0], [-67.76956993858141, 46.83682266063323, 0.0], [-67.7685178052497, 46.837170660632694, 0.0], [-67.7672558052517, 46.837518327298824, 0.0], [-67.76593573858707, 46.83814699396453, 0.0], [-67.76525547192148, 46.83821226063111, 0.0], [-67.7648925385887, 46.8380997939646, 0.0], [-67.764480405256, 46.837843860631665, 0.0], [-67.76365933859057, 46.837191860632686, 0.0], [-67.76289007192514, 46.836606660633606, 0.0], [-67.76227620525941, 46.836029593967794, 0.0], [-67.76171100526028, 46.835627727301755, 0.0], [-67.7607260052618, 46.83529719396893, 0.0], [-67.76000833859626, 46.83471319396983, 0.0], [-67.75923413859749, 46.8343131273038, 0.0], [-67.7583542052655, 46.83397832730435, 0.0], [-67.75757753860006, 46.833682060638125, 0.0], [-67.75642960526847, 46.83363466063821, 0.0], [-67.7556504052697, 46.8334467939718, 0.0], [-67.75481720527097, 46.83336612730528, 0.0], [-67.7538300052725, 46.833141727305645, 0.0], [-67.75320220527351, 46.83320819397221, 0.0], [-67.7527777386075, 46.83348739397178, 0.0], [-67.7521034052752, 46.83326806063877, 0.0], [-67.75158813860935, 46.83297346063921, 0.0], [-67.75160987194266, 46.832043193974016, 0.0], [-67.75130593860979, 46.831642860641296, 0.0], [-67.75006487194503, 46.83109386064217, 0.0], [-67.74807340528145, 46.83028086064343, 0.0], [-67.74646593861729, 46.829799993977474, 0.0], [-67.74501693861953, 46.82924379397832, 0.0], [-67.74383340528806, 46.82847926064619, 0.0], [-67.74311347195584, 46.82800806064694, 0.0], [-67.74223287195719, 46.82767539398077, 0.0], [-67.74093360529253, 46.827409660647845, 0.0], [-67.73999647196064, 46.827290260648056, 0.0], [-67.73850167196298, 46.82645052731601, 0.0], [-67.738057605297, 46.82536906065104, 0.0], [-67.73781460529739, 46.82457932731893, 0.0], [-67.73768413863093, 46.823466927320624, 0.0], [-67.73722473863165, 46.8230313273213, 0.0], [-67.73645080529951, 46.82263112732193, 0.0], [-67.7356896053007, 46.821691260656735, 0.0]], "type": "LineString"}, "id": "1359", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/166195785", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.78920993855093, 46.879701127233375, -67.78790380521963, 46.88096279389805], "geometry": {"coordinates": [[-67.78920993855093, 46.88096279389805, 0.0], [-67.78790380521963, 46.879701127233375, 0.0]], "type": "LineString"}, "id": "1361", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/166195787", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.86301240510306, 46.95396312711807, -67.8618764051048, 46.95773419377889], "geometry": {"coordinates": [[-67.8618764051048, 46.95773419377889, 0.0], [-67.86190987177145, 46.95748279377932, 0.0], [-67.86234407177074, 46.95668292711389, 0.0], [-67.86294540510318, 46.95506019378308, 0.0], [-67.86301240510306, 46.95426019378431, 0.0], [-67.86281220510335, 46.95396312711807, 0.0]], "type": "LineString"}, "id": "1362", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/802849", "fl_ds_name": "Butterfield Brook"}, "type": "Feature"}, {"bbox": [-67.84439580513197, 46.926279727161045, -67.83789840514203, 46.94534272713145], "geometry": {"coordinates": [[-67.8434248718001, 46.94534272713145, 0.0], [-67.84335847180023, 46.94486259379886, 0.0], [-67.84345980513342, 46.943217127134744, 0.0], [-67.84429527179879, 46.94116052713798, 0.0], [-67.84439580513197, 46.94058919380552, 0.0], [-67.84396240513263, 46.93990339380656, 0.0], [-67.84299500513413, 46.939331727140825, 0.0], [-67.8427618051345, 46.938874527141536, 0.0], [-67.84262880513467, 46.938120327142656, 0.0], [-67.84252880513486, 46.93807452714276, 0.0], [-67.84229660513523, 46.93599472714601, 0.0], [-67.8418632051359, 46.935400193813564, 0.0], [-67.84072907180428, 46.93491999381433, 0.0], [-67.84066260513777, 46.934462793815044, 0.0], [-67.8407630051376, 46.93425719381537, 0.0], [-67.84143060513657, 46.93370879381621, 0.0], [-67.8414642051365, 46.933388793816675, 0.0], [-67.84136427180334, 46.9330917271505, 0.0], [-67.84083067180416, 46.932817193817584, 0.0], [-67.84083120513748, 46.93220019381852, 0.0], [-67.8406646718044, 46.93162872715277, 0.0], [-67.84023127180507, 46.93105719382032, 0.0], [-67.83929760513985, 46.930416993821325, 0.0], [-67.83906447180686, 46.92991412715543, 0.0], [-67.83886480514053, 46.929136927156605, 0.0], [-67.83813140514167, 46.9284281271577, 0.0], [-67.83793160514199, 46.92803952715832, 0.0], [-67.83789840514203, 46.92762812715898, 0.0], [-67.83803220514181, 46.927285327159495, 0.0], [-67.83803287180848, 46.926279727161045, 0.0]], "type": "LineString"}, "id": "1363", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/802857", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.79471680520908, 46.857691193934215, -67.7891378052177, 46.87850832723524], "geometry": {"coordinates": [[-67.7891378052177, 46.87850832723524, 0.0], [-67.79060587188212, 46.877595327236634, 0.0], [-67.79154160521398, 46.876041927239044, 0.0], [-67.79157660521395, 46.87503632724059, 0.0], [-67.79164500521381, 46.87389352724239, 0.0], [-67.79174560521369, 46.873482193909695, 0.0], [-67.79251360521249, 46.87259139391108, 0.0], [-67.79438200520957, 46.871267127246426, 0.0], [-67.79471600520907, 46.87076452724722, 0.0], [-67.79471680520908, 46.87028459391462, 0.0], [-67.79405220521011, 46.868958527250015, 0.0], [-67.79392147187696, 46.86733559391922, 0.0], [-67.79289000521192, 46.86637512725406, 0.0], [-67.79265720521227, 46.86605492725454, 0.0], [-67.79272487187882, 46.865392127255575, 0.0], [-67.79309220521156, 46.864843793923114, 0.0], [-67.79426027187645, 46.86367912725825, 0.0], [-67.79446080520944, 46.86338212725872, 0.0], [-67.7944292718762, 46.86217079392725, 0.0], [-67.79399887187685, 46.860342127263436, 0.0], [-67.79400140521017, 46.858742193932585, 0.0], [-67.79430240520969, 46.8580109939337, 0.0], [-67.79463607187586, 46.857691193934215, 0.0]], "type": "LineString"}, "id": "1364", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803089", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.79463640520919, 46.8556335272707, -67.79367240521066, 46.857691193934215], "geometry": {"coordinates": [[-67.79463607187586, 46.857691193934215, 0.0], [-67.79463640520919, 46.85743979393459, 0.0], [-67.79367240521066, 46.856044993936734, 0.0], [-67.79367300521068, 46.8556335272707, 0.0]], "type": "LineString"}, "id": "1365", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/802885", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.8637452051019, 46.95773419377889, -67.8618764051048, 46.95958559377601], "geometry": {"coordinates": [[-67.8637452051019, 46.95958559377601, 0.0], [-67.8636746717687, 46.95948532710952, 0.0], [-67.86350480510231, 46.95937939377637, 0.0], [-67.86333487176921, 46.95927339377653, 0.0], [-67.86316500510281, 46.95916739377668, 0.0], [-67.86299507176972, 46.95906152711018, 0.0], [-67.86282520510332, 46.958955527110334, 0.0], [-67.86265527177028, 46.95884959377719, 0.0], [-67.86248540510388, 46.95874359377734, 0.0], [-67.86231547177078, 46.95863772711084, 0.0], [-67.86223960510426, 46.95848892711109, 0.0], [-67.86216347177105, 46.95833979377795, 0.0], [-67.86208740510449, 46.958190727111514, 0.0], [-67.86201127177128, 46.95804152711179, 0.0], [-67.86193520510471, 46.95789239377865, 0.0], [-67.8618764051048, 46.95773419377889, 0.0]], "type": "LineString"}, "id": "1366", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803137", "fl_ds_name": "Butterfield Brook"}, "type": "Feature"}, {"bbox": [-67.84365540513312, 46.94534272713145, -67.8434248718001, 46.945842727130696], "geometry": {"coordinates": [[-67.84365540513312, 46.945842727130696, 0.0], [-67.84362180513313, 46.945784993797474, 0.0], [-67.8435366051333, 46.94563832713101, 0.0], [-67.84345127180006, 46.94549152713125, 0.0], [-67.8434248718001, 46.94534272713145, 0.0]], "type": "LineString"}, "id": "1367", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803141", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.85157940512079, 46.9456337937977, -67.84365540513312, 46.94907019379235], "geometry": {"coordinates": [[-67.85146600512098, 46.94907019379235, 0.0], [-67.85147140512095, 46.94901132712579, 0.0], [-67.85152540512087, 46.94885772712604, 0.0], [-67.85157940512079, 46.94870399379295, 0.0], [-67.85152287178755, 46.948630727126385, 0.0], [-67.85141540512103, 46.9484911271266, 0.0], [-67.85130780512122, 46.94835152712682, 0.0], [-67.85120027178806, 46.94821199379368, 0.0], [-67.85109280512154, 46.94807239379389, 0.0], [-67.85102620512163, 46.94803779379396, 0.0], [-67.85084340512196, 46.947942793794084, 0.0], [-67.8506604717889, 46.94784772712757, 0.0], [-67.85047760512248, 46.947752593794405, 0.0], [-67.85029467178947, 46.94765759379453, 0.0], [-67.85011180512305, 46.947562527128014, 0.0], [-67.84992900512339, 46.9474675271282, 0.0], [-67.84974607179032, 46.94737239379498, 0.0], [-67.8495632051239, 46.94727739379516, 0.0], [-67.84938027179089, 46.947182327128644, 0.0], [-67.8492724051244, 46.94708699379544, 0.0], [-67.84913140512458, 46.94696252712896, 0.0], [-67.84899040512482, 46.94683792712914, 0.0], [-67.84884940512501, 46.94671339379602, 0.0], [-67.84870840512525, 46.94658892712954, 0.0], [-67.8485674051255, 46.94646432712972, 0.0], [-67.84842640512568, 46.9463397937966, 0.0], [-67.84828540512592, 46.94621532713012, 0.0], [-67.8481444051261, 46.9460907271303, 0.0], [-67.84800340512635, 46.945966193797176, 0.0], [-67.84795960512639, 46.94595692713051, 0.0], [-67.84774067179342, 46.94591079379728, 0.0], [-67.84752180512709, 46.94586459379735, 0.0], [-67.84730300512746, 46.94581852713071, 0.0], [-67.84708407179443, 46.94577232713078, 0.0], [-67.8468652051281, 46.945726193797555, 0.0], [-67.84664627179512, 46.945679993797626, 0.0], [-67.84642747179544, 46.9456337937977, 0.0], [-67.84637447179551, 46.94564172713103, 0.0], [-67.84615080512924, 46.94567479379765, 0.0], [-67.84592700512957, 46.94570779379757, 0.0], [-67.8457032051299, 46.94574092713083, 0.0], [-67.84547940513028, 46.945773993797445, 0.0], [-67.8452556051306, 46.94580712713076, 0.0], [-67.84503187179763, 46.94584019379738, 0.0], [-67.84480807179796, 46.94587332713064, 0.0], [-67.84458427179834, 46.94590639379726, 0.0], [-67.84456627179833, 46.94590519379727, 0.0], [-67.84433847179872, 46.945889527130646, 0.0], [-67.8441108051324, 46.94587392713066, 0.0], [-67.84388307179938, 46.94585832713068, 0.0], [-67.84365540513312, 46.945842727130696, 0.0]], "type": "LineString"}, "id": "1368", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803143", "fl_ds_name": "Butterfield Brook"}, "type": "Feature"}, {"bbox": [-67.86734960509631, 46.95958559377601, -67.8637452051019, 46.96353999376987], "geometry": {"coordinates": [[-67.86734960509631, 46.96353999376987, 0.0], [-67.8662146050981, 46.96335699377016, 0.0], [-67.86601440509838, 46.962854193770966, 0.0], [-67.86638187176447, 46.961962927105674, 0.0], [-67.86628180509797, 46.961322927106664, 0.0], [-67.86534747176609, 46.96029432710827, 0.0], [-67.86424587176782, 46.95974572710912, 0.0], [-67.8637452051019, 46.95958559377601, 0.0]], "type": "LineString"}, "id": "1369", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/802841", "fl_ds_name": "Butterfield Brook"}, "type": "Feature"}, {"bbox": [-67.79367300521068, 46.8536423272738, -67.78974487188344, 46.8556335272707], "geometry": {"coordinates": [[-67.79367300521068, 46.8556335272707, 0.0], [-67.79353967187757, 46.8556105939374, 0.0], [-67.79344007187768, 46.85545059393769, 0.0], [-67.79257480521238, 46.85485572727191, 0.0], [-67.79217567187965, 46.854398327272634, 0.0], [-67.79177640521362, 46.854077993939825, 0.0], [-67.78974487188344, 46.8536423272738, 0.0]], "type": "LineString"}, "id": "1370", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/802887", "fl_ds_name": null}, "type": "Feature"}, {"bbox": [-67.8795016717441, 46.96353999376987, -67.86734960509631, 46.973116793755025], "geometry": {"coordinates": [[-67.8795016717441, 46.973116793755025, 0.0], [-67.8794682717442, 46.97293392708866, 0.0], [-67.8784998717457, 46.97163112709069, 0.0], [-67.87823287174609, 46.969871327093415, 0.0], [-67.87679727174833, 46.96813439376274, 0.0], [-67.87639667174892, 46.967837193763216, 0.0], [-67.87546180508372, 46.96735732709732, 0.0], [-67.87446027175196, 46.966808593764824, 0.0], [-67.87415980508575, 46.96669439376501, 0.0], [-67.87375927175304, 46.966671527098356, 0.0], [-67.8722566717554, 46.96696859376459, 0.0], [-67.87195620508919, 46.966991393764545, 0.0], [-67.87145540508993, 46.96667132709837, 0.0], [-67.87115507175707, 46.96609999376591, 0.0], [-67.87068760509112, 46.96577999376643, 0.0], [-67.87048740509147, 46.96529999376719, 0.0], [-67.8696528717594, 46.96484292710119, 0.0], [-67.86838447176137, 46.96386012710275, 0.0], [-67.86795047176207, 46.96367719376968, 0.0], [-67.86734960509631, 46.96353999376987, 0.0]], "type": "LineString"}, "id": "1380", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/803055", "fl_ds_name": "Butterfield Brook"}, "type": "Feature"}, {"bbox": [-70.76000360060635, 43.11988473306934, -70.73630880064314, 43.13865893304023], "geometry": {"coordinates": [[-70.76000360060635, 43.137223133042426, 0.0], [-70.75934746727404, 43.13738259970887, 0.0], [-70.75831640060898, 43.1378161997082, 0.0], [-70.7575660006101, 43.13829559970742, 0.0], [-70.75662886727827, 43.13854633304038, 0.0], [-70.75494246728084, 43.13865893304023, 0.0], [-70.7545368006148, 43.1385441330404, 0.0], [-70.75419406728201, 43.138109333041086, 0.0], [-70.75375740061605, 43.13788033304144, 0.0], [-70.75313300061703, 43.13781113304151, 0.0], [-70.75225880061834, 43.13781019970821, 0.0], [-70.75175940061916, 43.13771813304169, 0.0], [-70.75088600062048, 43.13723713304239, 0.0], [-70.7501366672883, 43.137190533042485, 0.0], [-70.74994946728862, 43.13712173304259, 0.0], [-70.7495176672893, 43.13706673304267, 0.0], [-70.74848780062422, 43.13729653304233, 0.0], [-70.74823786729127, 43.13725113304241, 0.0], [-70.747987400625, 43.13695413304288, 0.0], [-70.74798726729165, 43.13686259970967, 0.0], [-70.74742320062586, 43.13585713304457, 0.0], [-70.74742300062587, 43.13574279971141, 0.0], [-70.7471410006263, 43.13530859971206, 0.0], [-70.74692140062666, 43.13478293304621, 0.0], [-70.74688900062671, 43.13416559971387, 0.0], [-70.74673226729362, 43.133891333047586, 0.0], [-70.74670006729366, 43.13345693304831, 0.0], [-70.74679340062687, 43.13331959971515, 0.0], [-70.74729206729273, 43.1328387997159, 0.0], [-70.7476972672921, 43.132609733049605, 0.0], [-70.74825846729124, 43.13222039971686, 0.0], [-70.74875726729044, 43.13180819971751, 0.0], [-70.74950466728933, 43.13096133305214, 0.0], [-70.75008666728837, 43.13078793305243, 0.0], [-70.75068120062082, 43.13007973305355, 0.0], [-70.75074520062071, 43.129347933054646, 0.0], [-70.75065180062086, 43.12921073305489, 0.0], [-70.75062166728759, 43.12852473305594, 0.0], [-70.7499678672886, 43.12763213305732, 0.0], [-70.74984446728877, 43.126877399725174, 0.0], [-70.74949560062265, 43.126639533058835, 0.0], [-70.74924546728971, 43.12643393305916, 0.0], [-70.74896226729015, 43.12538239972747, 0.0], [-70.74883720062365, 43.125291133060955, 0.0], [-70.7484310006243, 43.12508573306127, 0.0], [-70.74771186729208, 43.12456073306208, 0.0], [-70.74702386729314, 43.123989733062956, 0.0], [-70.74667986729366, 43.12373859973002, 0.0], [-70.74652366729396, 43.12367019973016, 0.0], [-70.7462422006277, 43.12337319973062, 0.0], [-70.7461164006279, 43.12293893306463, 0.0], [-70.74583506729499, 43.122756199731555, 0.0], [-70.74396066729793, 43.1220951997326, 0.0], [-70.74308646729929, 43.12200459973275, 0.0], [-70.74264866729993, 43.12163933306664, 0.0], [-70.74218046730067, 43.121662733066614, 0.0], [-70.74180620063458, 43.121777399733105, 0.0], [-70.74121306730217, 43.12177799973307, 0.0], [-70.74083806730278, 43.12157259973338, 0.0], [-70.74027620063697, 43.121573199733405, 0.0], [-70.74002626730402, 43.12145913306688, 0.0], [-70.73983786730429, 43.12093339973438, 0.0], [-70.73965040063791, 43.12081919973457, 0.0], [-70.73874520063936, 43.12088879973447, 0.0], [-70.73796460064057, 43.12075239973467, 0.0], [-70.73765200064105, 43.12050113306839, 0.0], [-70.73749506730792, 43.12011259973565, 0.0], [-70.73724506730832, 43.11992993306927, 0.0], [-70.73680800064233, 43.11988473306934, 0.0], [-70.73630880064314, 43.119999533069176, 0.0]], "type": "LineString"}, "id": "1409", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5845554", "fl_ds_name": "Spruce Creek"}, "type": "Feature"}, {"bbox": [-70.73632346730977, 43.10574853309129, -70.72897700065448, 43.119999533069176], "geometry": {"coordinates": [[-70.73630880064314, 43.119999533069176, 0.0], [-70.73617640064333, 43.1199617330692, 0.0], [-70.73579400064392, 43.11956559973652, 0.0], [-70.73582380064386, 43.11853219973813, 0.0], [-70.73632346730977, 43.1172017997402, 0.0], [-70.73489700064533, 43.115751133075776, 0.0], [-70.73333340064772, 43.11323399974634, 0.0], [-70.7320134006498, 43.11245379974753, 0.0], [-70.72963066732012, 43.109255333085855, 0.0], [-70.72931200065398, 43.108672733086735, 0.0], [-70.72982666731986, 43.106825733089636, 0.0], [-70.72897700065448, 43.10574853309129, 0.0]], "type": "LineString"}, "id": "1410", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5845984", "fl_ds_name": "Spruce Creek"}, "type": "Feature"}, {"bbox": [-70.72899120065449, 43.1016591997643, -70.72800446732265, 43.10574853309129], "geometry": {"coordinates": [[-70.72897700065448, 43.10574853309129, 0.0], [-70.72858226732177, 43.10489113309262, 0.0], [-70.72899120065449, 43.10380273309431, 0.0], [-70.72811100065582, 43.102329799763254, 0.0], [-70.72800446732265, 43.1016591997643, 0.0]], "type": "LineString"}, "id": "1411", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5845990", "fl_ds_name": "Spruce Creek"}, "type": "Feature"}, {"bbox": [-70.72821620065565, 43.09566953310696, -70.72004120066839, 43.1016591997643], "geometry": {"coordinates": [[-70.72800446732265, 43.1016591997643, 0.0], [-70.72821620065565, 43.10014213310001, 0.0], [-70.72724506732385, 43.09891099976858, 0.0], [-70.72424240066186, 43.09831813310285, 0.0], [-70.72383286732912, 43.09797733310336, 0.0], [-70.72154286733269, 43.09739513310427, 0.0], [-70.72004120066839, 43.09566953310696, 0.0]], "type": "LineString"}, "id": "1412", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5846008", "fl_ds_name": "Spruce Creek"}, "type": "Feature"}, {"bbox": [-70.72007106733497, 43.08169493312863, -70.71773340067193, 43.09566953310696], "geometry": {"coordinates": [[-70.72004120066839, 43.09566953310696, 0.0], [-70.72007106733497, 43.094636133108565, 0.0], [-70.71812946733803, 43.09217393311235, 0.0], [-70.71926580066958, 43.08915059978369, 0.0], [-70.71865900067053, 43.08838119978492, 0.0], [-70.71821866733785, 43.08621559978826, 0.0], [-70.71773340067193, 43.08560013312257, 0.0], [-70.71873306733704, 43.08293959979335, 0.0], [-70.71946066733591, 43.08243379979416, 0.0], [-70.7197336673355, 43.08174539979524, 0.0], [-70.71989086733527, 43.08169493312863, 0.0]], "type": "LineString"}, "id": "1413", "properties": {"__folium_color": "blue", "fl_ds": "https://geoconnex.us/nhdplusv2/comid/5846016", "fl_ds_name": "Spruce Creek"}, "type": "Feature"}], "type": "FeatureCollection"});
geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a.bindTooltip(
function(layer){
let div = L.DomUtil.create('div');
let handleObject = feature=>typeof(feature)=='object' ? JSON.stringify(feature) : feature;
let fields = ["fl_ds", "fl_ds_name"];
let aliases = ["fl_ds", "fl_ds_name"];
let table = '<table>' +
String(
fields.map(
(v,i)=>
`<tr>
<th>${aliases[i]}</th>
<td>${handleObject(layer.feature.properties[v])}</td>
</tr>`).join(''))
+'</table>';
div.innerHTML=table;
return div
}
,{"className": "foliumtooltip", "sticky": true});
geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a.addTo(map_065b1d422d5592f6b50181ac87f1dc76);
var layer_control_74c263c0af7b106a67e2ee534fec7222_layers = {
base_layers : {
"openstreetmap" : tile_layer_e4e187619aff6441f564473724ac06fd,
},
overlays : {
"\u003cspan style=\"color: darkred;\"\u003eFacilities\u003c/span\u003e" : geo_json_eae18295055b774c2b8c53958cc78b86,
"\u003cspan style=\"color: red;\"\u003eFacility S2 Cells\u003c/span\u003e" : geo_json_f3edb47d8b068abbf32c4787d6480c85,
"\u003cspan style=\"color: navy;\"\u003eNear Flowlines\u003c/span\u003e" : geo_json_847747335874e26c0e7bf4816e8b25c1,
"\u003cspan style=\"color: blue;\"\u003eDS Flowlines\u003c/span\u003e" : geo_json_7bf7dba15fc5cc0a95c2aac9aa04012a,
},
};
let layer_control_74c263c0af7b106a67e2ee534fec7222 = L.control.layers(
layer_control_74c263c0af7b106a67e2ee534fec7222_layers.base_layers,
layer_control_74c263c0af7b106a67e2ee534fec7222_layers.overlays,
{"autoZIndex": true, "collapsed": false, "position": "topright"}
).addTo(map_065b1d422d5592f6b50181ac87f1dc76);
</script>
</html>