-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSeverity.html
6069 lines (4053 loc) · 467 KB
/
Severity.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<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-1.12.4.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.min.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"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_eec6a69f0b27dc7b68c7d1eac4035428 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_eec6a69f0b27dc7b68c7d1eac4035428" ></div>
</body>
<script>
var map_eec6a69f0b27dc7b68c7d1eac4035428 = L.map(
"map_eec6a69f0b27dc7b68c7d1eac4035428",
{
center: [40.73061, -73.935242],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_b3bac945e08e2492e1c64abf025227c6 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_0c5cd6959c7bec832c45b1c9809658a3 = L.circleMarker(
[40.7205573, -74.0035102],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_8c180b37a27a28a97deed5a2fbd08253 = L.circleMarker(
[40.7151811, -73.9519581],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_0baea74ccdcc6450712db2fc639d8892 = L.circleMarker(
[40.781315, -73.94614],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_0ac7d3015f126cd9be7df7f19714f731 = L.circleMarker(
[40.6371575, -73.9336677],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_4c3ae6cdcaecf759992437dbae93ae57 = L.circleMarker(
[40.686356, -73.79381],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_5788dd77bc9584dde1ed62acca71deba = L.circleMarker(
[40.667366, -73.77181],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_cd5d7f0b80ef8c835cf2db299c2fe67d = L.circleMarker(
[40.828278, -73.907036],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_a1c233e20506f3819e06e54d069e7a74 = L.circleMarker(
[40.806797, -73.92458],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_503c85d8265317d7a937a17c24a7db17 = L.circleMarker(
[40.75895, -73.76862],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_214bc70d1daeeab7e584dfb766e72c4a = L.circleMarker(
[40.60354, -73.9606],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_fa6ae1fb64d31b596044a644a68434c2 = L.circleMarker(
[40.71995, -74.00859],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_8e6610ff05bd4d94b38a27a8359b4bb7 = L.circleMarker(
[40.703075, -73.79064],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_b4df02adfa29732f3d72379fe0a4181d = L.circleMarker(
[40.8272005, -73.9366797],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_4920888c81b1cfe4ba0263f055f9b650 = L.circleMarker(
[40.7221435, -73.9022687],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_6dcf76acf678ebafcd591b1b20710836 = L.circleMarker(
[40.7521974, -73.9818237],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_f6f85eeb8b645555bc84b0a02a6b1ced = L.circleMarker(
[40.7865477, -73.9525532],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_787243af9549dd672da3a45cc905df4c = L.circleMarker(
[40.7855588, -73.7958579],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_094bff257be3dafe522055973a034e78 = L.circleMarker(
[40.8161389, -73.8948691],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_168d16f4fa5996e294ceb88643df9af8 = L.circleMarker(
[40.693341, -73.9668817],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_9db62bb1ae32bb263bb8fccbf972baaf = L.circleMarker(
[40.689144, -73.99071],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_081a4449c283467a85ac3e39159b5f77 = L.circleMarker(
[40.7521904, -73.9934636],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_19ec7e91b6791dd1151ee0b3c3380f9d = L.circleMarker(
[40.722355, -73.9932609],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_976112f9259dad555c095d28d37e1c94 = L.circleMarker(
[40.7340278, -73.8440681],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_5748acffa7418c877b8baf5b63939e57 = L.circleMarker(
[40.67342, -73.95017],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_349d70e7cdfee3c88f68daa33219aa80 = L.circleMarker(
[40.819637, -73.93432],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_1b5243245ea603ed26f516ed39796c15 = L.circleMarker(
[40.60373, -73.9968],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_fae7fc6f2e96d4308b98732bb380c405 = L.circleMarker(
[40.7485, -73.974976],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_f164125fea1f3e1d111419ded2f465f9 = L.circleMarker(
[40.68093, -74.004944],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_3471380d7181e1e8aee7d5c279ce23ea = L.circleMarker(
[40.67251, -73.873726],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_74f5298a85a995fc3787f5cbaff1d771 = L.circleMarker(
[40.7885854, -73.9552819],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_a80c878173eb464034622c1b7b42d008 = L.circleMarker(
[40.8731394, -73.9057133],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_5ebff776aa9b0ce28983a1db9f5b1bc8 = L.circleMarker(
[40.809525, -73.93789],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_2efd039ea99540314ff7fdd11427245c = L.circleMarker(
[40.7712484, -73.8437349],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_9902f379680179d82ff337c2a0bf93d8 = L.circleMarker(
[40.7413881, -73.7248837],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_f9148990339a293632b03961ebdc72eb = L.circleMarker(
[40.7650931, -73.8290603],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_96fb7a7789057aa27d447a89b5c7306b = L.circleMarker(
[40.72032, -73.99404],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_ee08ecd17dc390c657899bbe7f1cfab7 = L.circleMarker(
[40.72773, -73.90674],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_8bbd5700a036aaf1e9145fdd195ea9d3 = L.circleMarker(
[40.81467, -73.93623],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_07000efc70e8eea871cde8c63110aa1f = L.circleMarker(
[40.8306815, -73.9242603],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_5324e1112ef86f95e193825b4951168e = L.circleMarker(
[40.86159, -73.92475],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_fdd2c5b691be8354b6cc8eb690befb13 = L.circleMarker(
[40.6383155, -74.0066225],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_b86cdb0cad26d7cfb50a2609b76b11be = L.circleMarker(
[40.68484, -73.79281],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_eff187a102d008fd9dafa5be4398d5a1 = L.circleMarker(
[40.71913, -74.00462],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_0b545fc8c47ab3955a3f4d30bea3454c = L.circleMarker(
[40.765354, -73.81733],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_81afb62ca6d841803304aff7b3ca8db0 = L.circleMarker(
[40.6689504, -73.9338885],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_bc570a0952795f9cdf0e87c833d2c4c8 = L.circleMarker(
[40.754105, -73.72321],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_635d00a7e52142041de9c7c4409b79ab = L.circleMarker(
[40.757694, -74.000595],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_c2aae2bf35d3c8d38b47bc7dac939c60 = L.circleMarker(
[40.758377, -73.994385],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_c015e2ddeed39bc3e64a64e364f00b6b = L.circleMarker(
[40.7238035, -73.8366933],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_de61233fbe4c80cf7c017f25a17b1a1b = L.circleMarker(
[40.6910825, -73.8322286],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_5fefe72ab79359591d29d41115fe43f6 = L.circleMarker(
[40.844788, -73.89168],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_cea5160a09dd1cd0636613782d3e3a70 = L.circleMarker(
[40.595104, -74.07541],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_96374ebfe74d2c8a493e94372d312081 = L.circleMarker(
[40.773766, -73.894264],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_a50af50bad79a4cc4c9849dfb09a127d = L.circleMarker(
[40.68605, -73.831726],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_e72a5065d51ec4b25dd64e8f8f0ccfb4 = L.circleMarker(
[40.7472909, -73.9283178],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_794ad6b105073b60bc578b9a1315ab56 = L.circleMarker(
[40.588886, -73.965645],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_db56467cafa48a4f31ea8336a6198bff = L.circleMarker(
[40.61834, -74.03018],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_c003d11c12f60662aa1b0c207cfe8435 = L.circleMarker(
[40.647526, -73.89469],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_0a80f19ca8e1e7c409c5dbb973ab7fd8 = L.circleMarker(
[40.7520589, -74.0009817],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_c3275593520025c387a1b68fd58e8c37 = L.circleMarker(
[40.5806604, -73.9616347],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_30647f731ef6d3a8bc958f1070d786dc = L.circleMarker(
[40.60186, -74.11778],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_99d4dec93c5370b2d2c9df9d61a69239 = L.circleMarker(
[40.666595, -73.87176],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_33a7656525f4061e0a68182abf799244 = L.circleMarker(
[40.754642, -73.86043],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_359e68ee1ea47a6a1ad835d97fb8be16 = L.circleMarker(
[40.7194838, -73.9912843],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_17739d5e7dc5204dff14fd3ada7c220f = L.circleMarker(
[40.76189, -73.82967],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_c2650e2c14fc64c328f4f532550763c5 = L.circleMarker(
[40.76359, -73.98144],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_3012a73c7f8444888a5ce9925bfc3eee = L.circleMarker(
[40.707653, -73.83118],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_584f89f77b4bb0fe0bd77f859839a78f = L.circleMarker(
[40.7214302, -74.0018327],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_eb13b3c8fcf4fdc93da8cd64ec66e0f0 = L.circleMarker(
[40.79745, -73.9467017],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_11c708dc1901cb69c64f466ddac96dbc = L.circleMarker(
[40.709989, -73.9047429],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_f6a2ad1d0cc0988beb32949bf7491cf9 = L.circleMarker(
[40.8057361, -73.9406446],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_51a1fbddd9e1bd6c0203c32ceb4cc780 = L.circleMarker(
[40.59052, -73.805336],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_0f38e188158ba4cd79b4c455d1e2dd30 = L.circleMarker(
[40.78419, -73.8458097],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_045ed9ecd2e32ae4c2b6f018c0082fdf = L.circleMarker(
[40.7565574, -73.9744374],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_27daecce38c4ef28ec34855aa6fce950 = L.circleMarker(
[40.8496686, -73.9080129],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_841d4c9d77503ded0310c3109fabe726 = L.circleMarker(
[40.645348, -74.01375],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_98719420a9a8267b7bf31fcfbf1d4661 = L.circleMarker(
[40.7254721, -73.9839596],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_0d9815363bc7e08b63f77d5858db3846 = L.circleMarker(
[40.80119, -73.93003],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_b2b01cfe82c241e6c913bb55eeb8a018 = L.circleMarker(
[40.856045, -73.90079],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_e47bd8e28da4efaae7ed9f18d971fe1f = L.circleMarker(
[40.81404, -73.9367],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_f53a1ba62d1e17ebd5768d5336515221 = L.circleMarker(
[40.8057361, -73.9406446],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_5f856e571294a4e338a0ebe6ae59dddd = L.circleMarker(
[40.58196, -73.959946],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_c1f036668a3f0932ff3d261cd0953635 = L.circleMarker(
[40.7152372, -74.0133794],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_bfd3198297610f1516cb7fb53f12bbd2 = L.circleMarker(
[40.8786453, -73.871598],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_913ec52513e3747d6c7ec18f791bddc6 = L.circleMarker(
[40.72591, -73.72557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_dd377c1b7a2c6fd6a69f0c42888985dd = L.circleMarker(
[40.854176, -73.91543],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_4574fe4c9f0ef7155cb0a12a6f1fc220 = L.circleMarker(
[40.8557178, -73.8286032],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_277cc13998ffced7c8312fd280704cf3 = L.circleMarker(
[40.845596, -73.864334],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_11c8700be3c73806482118b17385c5df = L.circleMarker(
[40.6597279, -73.9567992],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_ae915b6f32d3c6b08d80b94229555e8e = L.circleMarker(
[40.7624369, -73.7723673],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_8663e81f07b206940ec294b7191fbb23 = L.circleMarker(
[40.7423486, -73.8699408],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_40addbf9973f86c08c4d29cf590aa6f9 = L.circleMarker(
[40.679653, -73.77724],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_4fb390aa582d164260032587cc11e6ab = L.circleMarker(
[40.6130779, -74.122557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_7a7c83317b1089edd1368375a2d0dd83 = L.circleMarker(
[40.7179, -73.83202],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_f525a0c2e230810d457cff113574630d = L.circleMarker(
[40.6817692, -73.9675328],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_dee51e69d5c0dbf191627781acc0101f = L.circleMarker(
[40.7331526, -74.0102835],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_2f00e31e9795b7257c84f0b564097da7 = L.circleMarker(
[40.6222364, -74.009002],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_1e122c8761f1d53900987f31fff6fff0 = L.circleMarker(
[40.593414, -73.928474],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_d206cb7d81387474f5c16d9602c95f25 = L.circleMarker(
[40.81786, -73.80509],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_4a92d51b2f73c9074585c821a6dc92aa = L.circleMarker(
[40.7678891, -73.9815125],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_f72b4c095873945082e4fa559f8d4326 = L.circleMarker(
[40.72956, -73.87145],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_b91458f177e903a1438a3bcab413d37b = L.circleMarker(
[40.678257, -74.002235],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_ad24b838cc736db501af23dc4ab0bcc3 = L.circleMarker(
[40.786068, -73.83744],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_aaf9f08d6aab141d1c0aeab70b817ee2 = L.circleMarker(
[40.713215, -73.79725],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_ad37cc8f3b558a5bb6e31d60ffc0c725 = L.circleMarker(
[40.607117, -73.98843],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_6101e67da9dce850da29e181e971046c = L.circleMarker(
[40.7339657, -73.8720247],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_7c805a019ec1fdbd3da9b31d05af0e72 = L.circleMarker(
[40.675713, -73.897354],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_999416a1a1596d6ee6070399a6278cd1 = L.circleMarker(
[40.6086739, -73.9543904],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_9ebb01aef03b5e09f2d2d296c43a7b6f = L.circleMarker(
[40.82433, -73.874374],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_d0b92a05ed6b5920373c8b89c9dd7406 = L.circleMarker(
[40.634262, -73.97782],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_50ca815070d5ddb670f0c395a7109ebc = L.circleMarker(
[40.8047, -73.91243],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_ef207f5f78f73f14387a0dbb997912f0 = L.circleMarker(
[40.62431, -73.96219],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_52138a7bd75f1a86599861e18b1068ea = L.circleMarker(
[40.692547, -73.90736],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_3dde1fcf6cca834dff9d4e08a1bc8dd9 = L.circleMarker(
[40.7621793, -73.9661291],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_ecc96223b8c3dae7e64bf5d8dcc7a52a = L.circleMarker(
[40.635178, -73.99542],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_d2ce0ee5406681463933893c5876d9c1 = L.circleMarker(
[40.59039, -73.99155],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_b905023f36fe29da50503d73997d0154 = L.circleMarker(
[40.60389, -73.95349],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_bc2f0f9955d7bb147fa070e56cb0ae47 = L.circleMarker(
[40.861744, -73.911804],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_a25e1320b5b96fe827a886fae88fe8bc = L.circleMarker(
[40.79599, -73.96896],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_bba06bcb1b926fe7e05700a3e3527b68 = L.circleMarker(
[40.8294526, -73.9065701],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_6f6b916e290ddaaad19eb2842a1899b7 = L.circleMarker(
[40.622788, -73.9900937],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_6db95830e288983344bcb8cbd6739d95 = L.circleMarker(
[40.7465356, -73.9859503],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_f54749d98af836cb9bbd666733a49f3b = L.circleMarker(
[40.7316898, -73.805083],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_ba79df18a03374ab09ab7542d3ed9ae3 = L.circleMarker(
[40.747066, -73.97925],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_438b1975db76a9570439c204efb9a8c2 = L.circleMarker(
[40.7642812, -73.9985813],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_ce07c63e561ab94499727cdb3999d450 = L.circleMarker(
[40.663555, -73.93162],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_859aaad1d81c19fc70444637ea3d53d6 = L.circleMarker(
[40.649624, -73.96311],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_16ba69c5469db1563978ef75f036d1d4 = L.circleMarker(
[40.545849, -74.1646003],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_8492e3d83d2675614b7b3b1b2b089c60 = L.circleMarker(
[40.639137, -74.0202],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_920fbaaac745fc827b88a117fcfdbbdd = L.circleMarker(
[40.71652, -73.774254],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_d0f46d5c07fd9d75f484558a64658d04 = L.circleMarker(
[40.709827, -73.83983],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_43186e7108df6c4d1d059a5bae34d30d = L.circleMarker(
[40.72878, -73.926155],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_1535be21e026b715409033d314868283 = L.circleMarker(
[40.7173628, -73.9063918],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_9218d90159ef2513ac978feb79ba7ac2 = L.circleMarker(
[40.7541077, -73.7232034],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_d58b655b9272131733fb8229a4485da8 = L.circleMarker(
[40.6978048, -73.9697284],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_ebce4cecca2181cbefa6bbbea6b4b287 = L.circleMarker(
[40.86006, -73.891136],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_8943e6b21a27e7f33d3bf01bb5260f53 = L.circleMarker(
[40.722496, -73.940414],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_5cebb814ec829b2fa14f66d47436a23e = L.circleMarker(
[40.7949595, -73.9506295],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_41aced8448a5b580fd6dec9f3dd4af32 = L.circleMarker(
[40.6347445, -74.0067519],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_9c24fc8811ae246353f53172e8e525c9 = L.circleMarker(
[40.7075773, -73.9288366],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_b227aac920072c387d3ad6f1ecbaecdb = L.circleMarker(
[40.578938, -73.98522],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_0c297f622b8a6e37407bb789f36a6208 = L.circleMarker(
[40.700592, -73.85457],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_f497b6461b6efadd66cfc6259a5a86d4 = L.circleMarker(
[40.75383, -73.799225],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_8e702eb154324680db1e1b5fe20704da = L.circleMarker(
[40.7524409, -73.9508956],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_d61eebd9daa01031e1cd50153728121a = L.circleMarker(
[40.8616514, -73.9107547],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_52605e72cea2ac72496042321c1c9a43 = L.circleMarker(
[40.683784, -73.769745],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_59f1dfd7f9dae12e94c44ab28bcf7133 = L.circleMarker(
[40.689144, -73.86763],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_d9ef286b0b0536f6bd668237b988bc84 = L.circleMarker(
[40.6420578, -74.02042],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_45787a8398527634fc3a92961a583878 = L.circleMarker(
[40.757668, -73.99483],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_4c295feb91ed5e9b6583eeba1fad97f9 = L.circleMarker(
[40.819225, -73.95288],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_7d37576f261663ca8b8ee201f36b09ff = L.circleMarker(
[40.78519, -73.94934],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_0cca71db6433ffb1ef85699d176ad814 = L.circleMarker(
[40.79337, -73.93274],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_9a69f13b40abb154bf851176562b18c6 = L.circleMarker(
[40.78739, -73.938225],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_8b7382c8536fb4c3816ff0d2ac930e9d = L.circleMarker(
[40.675735, -73.89686],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_516b0dc202a6de6aae2718585ede2025 = L.circleMarker(
[40.723183, -73.90059],
{"bubblingMouseEvents": true, "color": "orange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "orange", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_eec6a69f0b27dc7b68c7d1eac4035428);
var circle_marker_44047afdf956f4fd3eb1d8d1cebbcedf = L.circleMarker(
[40.669544, -73.72879],