-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·12214 lines (11274 loc) · 810 KB
/
index.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>
<head>
<title>Platte River Flows</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="js/nvd3/nv.d3.css" type="text/css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/topbar/topbar.css" />
<link href='http://fonts.googleapis.com/css?family=Raleway:400,100' rel='stylesheet' type='text/css'>
<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/button.js"></script>
<script src="js/tooltip.js"></script>
<script src="js/popover.js"></script>
<script src="js/carousel.js"></script>
<script src="js/buildGraph.js"></script>
<script src="js/mapTooltip.js"></script>
<script src="js/nvd3/lib/d3.v3.js"></script>
<script src="js/nvd3/nv.d3.min.js"></script>
</head>
<body>
<!------ The beginning of the PBT top navigation bar ------>
<nav id="topbar">
<!------ Set the max-width of topcontainer to the width of the main body of content ------>
<div id="topcontainer" style="max-width:1260px;margin-right:auto;margin-left:auto;">
<div id="title">
<a href="http://www.plattebasintimelapse.org" id="PBTlogo">
<img src="css/topbar/PBTlogo.png">
</a>
<h1>Flows in the Platte</h1>
</div>
</div>
</nav>
<!------ The end of the top navigation bar ------>
<!------ NOTE: Make sure to include 50px of space at the top of the main content, so that the top bar doesn't cover up the top of the content ------>
<div class="container" style="padding-top:50px;">
<header class="row">
<div class="col-xs-5">
<h1>Platte River in Nebraska</h1>
<p id="subheading">Explore the Platte River by sorting and searching flow rates recorded throughout the state. You will find evidence of droughts, floods, irrigation seasons, precipitation, and groundwater flows.</p>
</div>
<div class="col-xs-1 credit">
<h5>By Steven Speicher</h5>
</div>
<div class="col-md-3 interactive-years">
<span class="btn-group btn-group-xs" data-toggle="buttons">
<p>Choose year(s) to view:</p>
<label id="sel-all" onclick="toggleAll()" class="btn btn-default yr-sel">
<input type="radio">All
</label>
<label id="sel-2011" onclick="toggle2011()" class="btn btn-default yr-sel">
<input type="radio">2011
</label>
<label id="sel-2012" onclick="toggle2012()" class="btn btn-default yr-sel">
<input type="radio">2012
</label>
<label id="sel-2013" onclick="toggle2013()" class="btn btn-default yr-sel">
<input type="radio">2013
</label>
</span>
</div>
<div class="col-md-3 interactive-btns">
<span id="heading-buttons" class="btn-group-s btns">
<button type="button" class="btn btn-default pop-btn" data-container="body" data-toggle="popover" data-placement="bottom" data-content="<div class='btn-text'>
Explore the Platte River in Nebraska by:
<ul>
<li>Selecting different years to view</li>
<li>Adding & deleting gauging stations</li>
<li>Using different graphing formats</li>
<li>Comparing and constrasting years, seasons, and locations</li>
<li>Examining weekly averages and daily flow values</li>
</ul>
<p>The x-axis shows time.</p>
<p>The y-axis plots the cumulative flow at each selected location.</p>
<p><b>A quick note about the data:</b><i> The yearly data is composed of daily averaged data compiled by USGS. The 'all' data on this page represents the weekly averages rounded down to the nearest whole number.</i></p>
<p class='instr-note-sm'>All values are estimates and are subject to change.</p>
<p class='instr-note-sm'>Data last updated: January 2014.</p></div>
" title="Interactive Instructions">Instructions</button>
<button type="button" class="btn btn-default pop-btn" data-container="body" data-toggle="popover" data-placement="bottom" data-content="<div class='btn-text'>
<p><b>Drought vs Flood:</b> Compare 2011 to 2012. 2011 had record snowpack in the Rocky Mountains and high levels of precipitation basin wide, increasing flows throughout the state. There was little snowpack and precipition in 2012 resulting in a record drought year. In 2013, a rare late-summer flood flowed through Nebraska from Colorado.</p>
<p><b>Irrigation season:</b> During mid-summer, irrigation water is diverted to crop fields along the panhandle of Nebraska. The North Platte River at State Line Gauge increases when storage water is released from Pathfinder Dam. Downstream, the main stem of the Platte decreases. </br><i>View: State Line Gauge, Kearney</i></p>
<p><b>Groundwater flows:</b> The Middle Loup at Dunning NE carries fairly consistent groundwater flows throughout the year. Relatively warm upwellings of the Ogallala Aquifer prevent springs from icing over.</br><i>View: Dunning in a stream graph.</i></p>
<p><b>Rainfall event:</b> Several locations demonstrate sudden spikes in flow as precipitation fills the river and quickly passes over a gauging station.</br><i>View: Louisville or Overton</i></p></div>
" data-original-title title=Scenarios>Hints</button>
</span>
</div>
</header>
<div class="interactive row">
<div class="col-md-12">
<div id="platte_graph_container">
<svg />
</div>
</div>
</div>
<footer>
<p>One cfs is approximately equivalent to one basketball rolling past your feet in one second.</p>
<p>Stream gauge data from
<a target="_blank" href="http://waterservices.usgs.gov/">USGS</a>.</p>
</footer>
<div class="map story row">
<div class="col-xs-5">
<h4>Locations of Gauging Stations:</h4>
<div id="stateline-tooltip" class="hidden map-tooltip">
<p>State Line Gauge</p>
<p>on the North Platte River</p>
</div>
<div id="roscoe-tooltip" class="hidden map-tooltip">
<p>Roscoe NE</p>
<p>on the South Platte River</p>
</div>
<div id="overton-tooltip" class="hidden map-tooltip">
<p>Overton NE</p>
<p>on the Platte River</p>
</div>
<div id="kearney-tooltip" class="hidden map-tooltip">
<p>Kearney NE</p>
<p>on the Platte River</p>
</div>
<div id="grandisland-tooltip" class="hidden map-tooltip">
<p>Grand Island NE</p>
<p>on the Platte River</p>
</div>
<div id="dunning-tooltip" class="hidden map-tooltip">
<p>Dunning NE</p>
<p>on the Middle Loup River</p>
</div>
<div id="saintpaul-tooltip" class="hidden map-tooltip">
<p>Saint Paul NE</p>
<p>on the Middle Loup River</p>
</div>
<div id="northbend-tooltip" class="hidden map-tooltip">
<p>North Bend NE</p>
<p>on the Platte River</p>
</div>
<div id="louisville-tooltip" class="hidden map-tooltip">
<p>Louisville NE</p>
<p>on the Platte River</p>
</div>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="600.5px" height="390px" viewBox="300 194.5 600.5 390" enable-background="new 300 194.5 600.5 390" xml:space="preserve">
<g id="state">
<g>
<g id="XMLID_1_">
<g>
<polygon fill="#CCCCCC" points="886.33,515.491 886.785,516.51 693.29,516.286 596.54,516.395 446.81,516.25 446.815,431.64
368.6,431.685 359.04,431.621 350.045,431.715 316.225,431.72 316.29,398.13 316.24,262.44 321.905,262.346 324.6,262.411
458.315,262.541 468.78,262.786 474.13,262.806 500.565,262.646 543.915,262.646 546.36,262.57 560.435,262.61 583.09,262.686
678.64,262.61 678.82,263.5 679.165,264.355 680.675,266.931 681.915,267.871 683.05,268.291 684.56,268.775 688.575,270.726
689.475,271.76 692.895,273.076 694.315,273.125 696.035,274.246 696.825,274.925 698.78,275.9 700.235,276.295 701.57,276.07
702.835,277.735 703.83,278.306 704.985,279.496 705.755,279.916 706.765,280.726 707.26,281.741 708.42,282.201
710.04,282.616 711.14,282.541 712.625,281.976 713.64,282.081 714.415,282 715.295,281.485 716.29,280.416 717.1,279.86
718.43,277.971 718.995,276.431 719.255,275.391 719.285,274.456 720.425,273.916 721.475,273.65 722.35,273.601
725.885,275.21 727.46,275.241 729.39,275.416 730.675,275.735 731.62,275.851 732.805,275.8 736.495,274.48 737.79,274.866
738.67,275.146 740.01,275.4 740.87,275.335 742.33,275.021 743.47,274.471 744.635,275.141 745.71,275.15 746.91,275.525
747.76,275.436 748.645,274.625 749.2,273.84 750.36,273.936 751.835,273.905 752.95,274.78 754.48,274.616 755.24,274.175
756.4,273.701 757.5,274.726 758.845,274.971 760.08,274.715 760.89,274.925 762.185,275.605 762.17,276.92 762.45,277.721
762.7,278.635 765.515,279.246 766.575,279.8 767.395,280.826 767.64,281.585 769.06,282.041 770.19,282.021 772.025,281.766
773.69,282.135 774.79,282.605 776.88,282.855 777.775,282.806 778.94,284.451 778.64,285.596 779.745,286.246 780.535,285.905
781.36,285.326 782.49,285.03 783.795,285.755 784.71,285.851 785.515,286.13 786.625,286.875 787.53,287.175 789.055,287.541
789.43,288.53 789.315,290.241 790.975,291.05 791.805,291.11 792.64,290.911 794.155,290.695 796.14,291.351 796.78,292.465
795.365,294.5 795.345,295.925 797.025,298.351 798.675,299.201 799.665,299.951 800.205,300.791 800.37,302.396
800.67,303.391 801.76,304.311 803.09,304.371 804.605,303.311 805.85,303.085 807.155,303.706 808,305.315 808.945,306.286
809.72,306.51 810.975,306.346 811.895,305.831 812.59,305.621 815.43,305.976 816.51,307.105 816.775,308.07 816.855,308.936
816.58,310.135 814.885,312.195 814.58,313.851 814.96,314.86 814.44,316.561 814.395,317.405 815.035,318.596 815.8,319.15
816.59,319.57 817.4,320.561 817.6,321.36 817.615,322.385 818.12,323.471 819.38,324.38 820.04,325.201 820.275,325.996
820.135,326.866 820.535,327.701 819.67,328.75 818.455,328.92 818.85,330.385 818.995,331.436 818.79,332.326 819.01,333.166
820.33,334.266 821.165,335.61 822.07,336.351 823.19,336.576 824.075,337.491 824.185,338.945 823.6,340.246 823.42,341.161
823.515,342.215 823.75,342.996 824.67,343.88 825.55,343.641 826.43,343.806 827.175,344.661 826.79,345.585 825.94,346.375
825.95,347.221 826.835,347.646 827.615,346.596 828.96,346.431 829.665,347.355 829.235,348.181 829.44,349.03 830.23,349.195
831.345,348.835 832.345,348.985 833.15,349.46 833.175,350.326 832.82,351.21 832.22,352.116 832.74,353.331 832.545,354.206
831.59,354.581 831.1,355.476 831.95,356.63 832.13,357.741 832.85,358.741 834.05,359.431 834.635,360.675 834.415,361.655
834.7,362.436 836.645,363.375 837.385,364.315 836.595,365.976 836.535,367.26 835.955,368.146 835.065,368.536
834.715,369.371 834.985,370.226 836.09,370.76 836.87,371.701 836.61,372.545 835.75,372.78 834.88,372.616 833.835,373.19
833.655,374 834.405,375.315 835.385,376.42 835.275,377.675 834.515,378.59 833.975,379.46 834.1,380.556 834.515,381.306
835.965,382.17 836.36,383.21 835.64,384.346 835.37,385.181 835.66,386.616 836.915,387.545 838.065,388.695 839.005,388.916
839.46,388.05 839.915,386.081 840.75,385.666 841.655,386.155 842.025,387.491 842.125,388.266 841.615,389.286 840.38,390.21
840.77,391.326 842.68,391.96 843.83,392.595 845.245,392.34 846.58,392.981 846.905,393.89 846.195,395.026 846.255,396.67
845.72,398.411 845.805,399.166 846.255,400.055 846.08,401.106 844.89,401.72 844.45,402.55 845.145,403.63 846.265,404.475
848.185,404.616 849.295,405.026 849.99,406.175 850.045,406.996 849.19,408.071 847.995,408.606 847.71,407.71 847.905,406.64
846.86,406.335 846.245,407.09 846.31,408.015 847.26,408.77 846.725,409.566 846.935,410.441 847.405,411.43 847.43,412.451
846.475,413.92 846.355,414.895 846.665,415.725 848.145,416.206 849.605,415.925 850.54,415.895 851.415,416.166
851.96,417.326 850.4,417.6 849.32,418.64 849.405,419.84 850.06,420.93 850.355,422.951 850.63,424.246 850.41,425.055
849.42,426.225 849.38,427.231 850.675,428.5 850.795,429.685 850.17,431.041 850.78,432.241 851.81,432.725 852.76,433.755
852.76,434.895 852.23,436.02 852.075,436.92 852.24,438.21 852.7,439.036 853.77,440.055 854.09,440.875 853.665,442.01
852.175,442.661 851.535,443.6 852.01,444.911 852.28,445.781 852.185,446.555 851.745,447.81 852.45,449.805 852.165,450.93
850.14,452.191 849.245,453.191 848.915,454.166 849.275,455.75 850.83,456.56 851.575,457.731 851.7,458.71 852.59,459.67
854.425,460.215 855.58,460.861 856.255,461.691 856.655,463.64 857.885,464.941 857.95,466.02 856.945,466.96 856.355,467.946
857.065,469.611 856.765,470.76 857.125,471.77 858.055,472.121 859.585,471.821 860.39,471.941 861.41,471.765 861.4,470.67
861.61,469.356 862.615,468.875 863.48,469.375 864.11,470.231 864.12,472.18 861.23,473.731 861.565,474.621 861.44,475.965
862.04,477.121 863.335,478.116 863.855,478.875 864.1,480.111 863.79,481.045 863.9,481.911 864.53,482.97 864.885,483.755
864.985,485.196 865.985,486.64 866.275,487.526 865.95,488.366 864.625,488.946 863.985,489.77 864.395,490.545
866.585,489.946 867.84,490.281 868.94,491.145 870.22,491.331 870.92,492.715 870.605,493.585 870.92,494.406 872.845,495.39
874.26,495.375 875.4,495.661 876.07,496.52 876.145,498.111 875.43,499.52 875.635,500.791 876.84,502.185 878.01,502.691
878.595,503.56 878.705,504.571 879.395,505.395 880.3,505.515 881.235,506.416 881.18,507.345 881.1,508.395 881.085,509.316
881.015,510.206 879.83,510.975 879.495,512.241 879.815,513.095 880.735,513.986 881.915,514.215 883.15,513.845
884.145,514.031 884.96,514.895 " />
</g>
<g>
<polyline fill="none" stroke="#646464" stroke-width="1.6658" stroke-miterlimit="1" stroke-dasharray="0.6663,0" points="
886.785,516.51 693.29,516.286 596.54,516.395 446.81,516.25 " />
<polyline fill="none" stroke="#646464" stroke-width="1.6658" stroke-miterlimit="1" stroke-dasharray="0.6663,0" points="
856.945,466.96 856.355,467.946 857.065,469.611 856.765,470.76 857.125,471.77 858.055,472.121 859.585,471.821
860.39,471.941 861.41,471.765 861.4,470.67 861.61,469.356 862.615,468.875 863.48,469.375 864.11,470.231 864.12,472.18
861.23,473.731 861.565,474.621 861.44,475.965 862.04,477.121 863.335,478.116 863.855,478.875 864.1,480.111 863.79,481.045
863.9,481.911 864.53,482.97 864.885,483.755 864.985,485.196 865.985,486.64 866.275,487.526 865.95,488.366 864.625,488.946
863.985,489.77 864.395,490.545 866.585,489.946 867.84,490.281 868.94,491.145 870.22,491.331 870.92,492.715 870.605,493.585
870.92,494.406 872.845,495.39 874.26,495.375 875.4,495.661 876.07,496.52 876.145,498.111 875.43,499.52 875.635,500.791
876.84,502.185 878.01,502.691 878.595,503.56 878.705,504.571 879.395,505.395 880.3,505.515 881.235,506.416 881.18,507.345
881.1,508.395 881.085,509.316 881.015,510.206 879.83,510.975 879.495,512.241 879.815,513.095 880.735,513.986
881.915,514.215 883.15,513.845 884.145,514.031 884.96,514.895 886.33,515.491 886.785,516.51 " />
<polyline fill="none" stroke="#646464" stroke-width="1.6658" stroke-miterlimit="1" stroke-dasharray="0.6663,0" points="
446.81,516.25 446.815,431.64 368.6,431.685 359.04,431.621 350.045,431.715 316.225,431.72 " />
<polyline fill="none" stroke="#646464" stroke-width="1.6658" stroke-miterlimit="1" stroke-dasharray="0.6663,0" points="
817.6,321.36 817.615,322.385 818.12,323.471 819.38,324.38 820.04,325.201 820.275,325.996 820.135,326.866 820.535,327.701
819.67,328.75 818.455,328.92 818.85,330.385 818.995,331.436 818.79,332.326 819.01,333.166 820.33,334.266 821.165,335.61
822.07,336.351 823.19,336.576 824.075,337.491 824.185,338.945 823.6,340.246 823.42,341.161 823.515,342.215 823.75,342.996
824.67,343.88 825.55,343.641 826.43,343.806 827.175,344.661 826.79,345.585 825.94,346.375 825.95,347.221 826.835,347.646
827.615,346.596 828.96,346.431 829.665,347.355 829.235,348.181 829.44,349.03 830.23,349.195 831.345,348.835
832.345,348.985 833.15,349.46 833.175,350.326 832.82,351.21 832.22,352.116 832.74,353.331 832.545,354.206 831.59,354.581
831.1,355.476 831.95,356.63 832.13,357.741 832.85,358.741 834.05,359.431 834.635,360.675 834.415,361.655 834.7,362.436
836.645,363.375 837.385,364.315 836.595,365.976 836.535,367.26 835.955,368.146 835.065,368.536 834.715,369.371
834.985,370.226 836.09,370.76 836.87,371.701 836.61,372.545 835.75,372.78 834.88,372.616 833.835,373.19 833.655,374
834.405,375.315 835.385,376.42 835.275,377.675 834.515,378.59 833.975,379.46 834.1,380.556 834.515,381.306 835.965,382.17
836.36,383.21 835.64,384.346 835.37,385.181 835.66,386.616 836.915,387.545 838.065,388.695 839.005,388.916 839.46,388.05
839.915,386.081 840.75,385.666 841.655,386.155 842.025,387.491 842.125,388.266 841.615,389.286 840.38,390.21
840.77,391.326 842.68,391.96 843.83,392.595 845.245,392.34 846.58,392.981 846.905,393.89 846.195,395.026 846.255,396.67
845.72,398.411 845.805,399.166 846.255,400.055 846.08,401.106 844.89,401.72 844.45,402.55 845.145,403.63 846.265,404.475
848.185,404.616 849.295,405.026 849.99,406.175 850.045,406.996 849.19,408.071 847.995,408.606 847.71,407.71 847.905,406.64
846.86,406.335 846.245,407.09 846.31,408.015 847.26,408.77 846.725,409.566 846.935,410.441 847.405,411.43 847.43,412.451
846.475,413.92 846.355,414.895 846.665,415.725 848.145,416.206 849.605,415.925 850.54,415.895 851.415,416.166
851.96,417.326 850.4,417.6 849.32,418.64 849.405,419.84 850.06,420.93 850.355,422.951 850.63,424.246 850.41,425.055
849.42,426.225 849.38,427.231 850.675,428.5 850.795,429.685 850.17,431.041 850.78,432.241 851.81,432.725 852.76,433.755
852.76,434.895 852.23,436.02 852.075,436.92 852.24,438.21 852.7,439.036 853.77,440.055 854.09,440.875 853.665,442.01
852.175,442.661 851.535,443.6 852.01,444.911 852.28,445.781 852.185,446.555 851.745,447.81 852.45,449.805 852.165,450.93
850.14,452.191 849.245,453.191 848.915,454.166 849.275,455.75 850.83,456.56 851.575,457.731 851.7,458.71 852.59,459.67
854.425,460.215 855.58,460.861 856.255,461.691 856.655,463.64 857.885,464.941 857.95,466.02 856.945,466.96 " />
<polyline fill="none" stroke="#646464" stroke-width="1.6658" stroke-miterlimit="1" stroke-dasharray="0.6663,0" points="
812.59,305.621 815.43,305.976 816.51,307.105 816.775,308.07 816.855,308.936 816.58,310.135 814.885,312.195 814.58,313.851
814.96,314.86 814.44,316.561 814.395,317.405 815.035,318.596 815.8,319.15 816.59,319.57 817.4,320.561 817.6,321.36 " />
<polyline fill="none" stroke="#646464" stroke-width="1.6658" stroke-miterlimit="1" stroke-dasharray="0.6663,0" points="
316.225,431.72 316.29,398.13 316.24,262.44 " />
<polyline fill="none" stroke="#646464" stroke-width="1.6658" stroke-miterlimit="1" stroke-dasharray="0.6663,0" points="
316.24,262.44 321.905,262.346 324.6,262.411 458.315,262.541 468.78,262.786 474.13,262.806 500.565,262.646 543.915,262.646
546.36,262.57 560.435,262.61 583.09,262.686 678.64,262.61 678.82,263.5 679.165,264.355 680.675,266.931 681.915,267.871
683.05,268.291 684.56,268.775 688.575,270.726 689.475,271.76 692.895,273.076 694.315,273.125 696.035,274.246
696.825,274.925 698.78,275.9 700.235,276.295 701.57,276.07 702.835,277.735 703.83,278.306 704.985,279.496 705.755,279.916
706.765,280.726 707.26,281.741 708.42,282.201 710.04,282.616 711.14,282.541 712.625,281.976 713.64,282.081 714.415,282
715.295,281.485 716.29,280.416 717.1,279.86 718.43,277.971 718.995,276.431 719.255,275.391 719.285,274.456 720.425,273.916
721.475,273.65 722.35,273.601 725.885,275.21 727.46,275.241 729.39,275.416 730.675,275.735 731.62,275.851 732.805,275.8
736.495,274.48 737.79,274.866 738.67,275.146 740.01,275.4 740.87,275.335 742.33,275.021 743.47,274.471 744.635,275.141
745.71,275.15 746.91,275.525 747.76,275.436 748.645,274.625 749.2,273.84 750.36,273.936 751.835,273.905 752.95,274.78
754.48,274.616 755.24,274.175 756.4,273.701 757.5,274.726 758.845,274.971 760.08,274.715 760.89,274.925 762.185,275.605
762.17,276.92 762.45,277.721 762.7,278.635 765.515,279.246 766.575,279.8 767.395,280.826 767.64,281.585 769.06,282.041
770.19,282.021 772.025,281.766 773.69,282.135 774.79,282.605 776.88,282.855 777.775,282.806 778.94,284.451 778.64,285.596
779.745,286.246 780.535,285.905 781.36,285.326 782.49,285.03 783.795,285.755 784.71,285.851 785.515,286.13 786.625,286.875
787.53,287.175 789.055,287.541 789.43,288.53 789.315,290.241 790.975,291.05 791.805,291.11 792.64,290.911 794.155,290.695
796.14,291.351 796.78,292.465 795.365,294.5 795.345,295.925 797.025,298.351 798.675,299.201 799.665,299.951
800.205,300.791 800.37,302.396 800.67,303.391 801.76,304.311 803.09,304.371 804.605,303.311 805.85,303.085 807.155,303.706
808,305.315 808.945,306.286 809.72,306.51 810.975,306.346 811.895,305.831 812.59,305.621 " />
</g>
</g>
</g>
</g>
<g id="county" opacity="0.4">
<g>
<defs>
<rect id="SVGID_1303_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1304_">
<use xlink:href="#SVGID_1303_" overflow="visible" />
</clipPath>
<path id="path2337" clip-path="url(#SVGID_1304_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M691.88,354.365l0.012-14.094" />
</g>
<g>
<defs>
<rect id="SVGID_1305_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1306_">
<use xlink:href="#SVGID_1305_" overflow="visible" />
</clipPath>
<path id="path2339" clip-path="url(#SVGID_1306_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M601.138,353.417l-0.036-13.542" />
</g>
<g>
<defs>
<rect id="SVGID_1307_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1308_">
<use xlink:href="#SVGID_1307_" overflow="visible" />
</clipPath>
<path id="path2341" clip-path="url(#SVGID_1308_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M601.102,339.875l1.604,0.005" />
</g>
<g>
<defs>
<rect id="SVGID_1309_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1310_">
<use xlink:href="#SVGID_1309_" overflow="visible" />
</clipPath>
<path id="path2343" clip-path="url(#SVGID_1310_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M569.741,339.894l31.36-0.019" />
</g>
<g>
<defs>
<rect id="SVGID_1311_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1312_">
<use xlink:href="#SVGID_1311_" overflow="visible" />
</clipPath>
<path id="path2345" clip-path="url(#SVGID_1312_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M563.216,339.869l-0.002,7.277l0.1,8.386l-0.028,9.342l0.071,4.316" />
</g>
<g>
<defs>
<rect id="SVGID_1313_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1314_">
<use xlink:href="#SVGID_1313_" overflow="visible" />
</clipPath>
<path id="path2347" clip-path="url(#SVGID_1314_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M569.741,339.894l-6.525-0.025" />
</g>
<g>
<defs>
<rect id="SVGID_1315_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1316_">
<use xlink:href="#SVGID_1315_" overflow="visible" />
</clipPath>
<path id="path2349" clip-path="url(#SVGID_1316_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M608.567,339.844l0.023,0" />
</g>
<g>
<defs>
<rect id="SVGID_1317_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1318_">
<use xlink:href="#SVGID_1317_" overflow="visible" />
</clipPath>
<path id="path2351" clip-path="url(#SVGID_1318_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M602.705,339.881l5.862-0.037" />
</g>
<g>
<defs>
<rect id="SVGID_1319_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1320_">
<use xlink:href="#SVGID_1319_" overflow="visible" />
</clipPath>
<path id="path2353" clip-path="url(#SVGID_1320_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M631.448,369.112l-0.059-29.393" />
</g>
<g>
<defs>
<rect id="SVGID_1321_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1322_">
<use xlink:href="#SVGID_1321_" overflow="visible" />
</clipPath>
<path id="path2355" clip-path="url(#SVGID_1322_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M608.591,339.844l22.022-0.131" />
</g>
<g>
<defs>
<rect id="SVGID_1323_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1324_">
<use xlink:href="#SVGID_1323_" overflow="visible" />
</clipPath>
<path id="path2357" clip-path="url(#SVGID_1324_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M630.613,339.712l0.776,0.007" />
</g>
<g>
<defs>
<rect id="SVGID_1325_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1326_">
<use xlink:href="#SVGID_1325_" overflow="visible" />
</clipPath>
<path id="path2359" clip-path="url(#SVGID_1326_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M525.711,369.145l-0.079-3.631l0.011-10.939l-0.169-7.499l-0.002-7.378" />
</g>
<g>
<defs>
<rect id="SVGID_1327_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1328_">
<use xlink:href="#SVGID_1327_" overflow="visible" />
</clipPath>
<path id="path2361" clip-path="url(#SVGID_1328_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M525.472,339.698l37.744,0.171" />
</g>
<g>
<defs>
<rect id="SVGID_1329_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1330_">
<use xlink:href="#SVGID_1329_" overflow="visible" />
</clipPath>
<path id="path2363" clip-path="url(#SVGID_1330_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M661.505,339.668l0.035,14.794" />
</g>
<g>
<defs>
<rect id="SVGID_1331_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1332_">
<use xlink:href="#SVGID_1331_" overflow="visible" />
</clipPath>
<path id="path2365" clip-path="url(#SVGID_1332_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M631.39,339.719l30.115-0.051" />
</g>
<g>
<defs>
<rect id="SVGID_1333_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1334_">
<use xlink:href="#SVGID_1333_" overflow="visible" />
</clipPath>
<path id="path2367" clip-path="url(#SVGID_1334_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M691.554,339.64l-30.049,0.028" />
</g>
<g>
<defs>
<rect id="SVGID_1335_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1336_">
<use xlink:href="#SVGID_1335_" overflow="visible" />
</clipPath>
<path id="path2369" clip-path="url(#SVGID_1336_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M691.892,340.271l-0.001-0.632" />
</g>
<g>
<defs>
<rect id="SVGID_1337_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1338_">
<use xlink:href="#SVGID_1337_" overflow="visible" />
</clipPath>
<path id="path2371" clip-path="url(#SVGID_1338_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M691.891,339.638l-0.337,0.002" />
</g>
<g>
<defs>
<rect id="SVGID_1339_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1340_">
<use xlink:href="#SVGID_1339_" overflow="visible" />
</clipPath>
<path id="path2373" clip-path="url(#SVGID_1340_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M722.043,354.251l-0.081-14.688" />
</g>
<g>
<defs>
<rect id="SVGID_1341_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1342_">
<use xlink:href="#SVGID_1341_" overflow="visible" />
</clipPath>
<path id="path2375" clip-path="url(#SVGID_1342_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M805.453,345.819l-0.042-6.273l-17.496-0.038" />
</g>
<g>
<defs>
<rect id="SVGID_1343_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1344_">
<use xlink:href="#SVGID_1343_" overflow="visible" />
</clipPath>
<path id="path2377" clip-path="url(#SVGID_1344_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M775.121,366.732l0.026-27.238" />
</g>
<g>
<defs>
<rect id="SVGID_1345_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1346_">
<use xlink:href="#SVGID_1345_" overflow="visible" />
</clipPath>
<path id="path2379" clip-path="url(#SVGID_1346_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M775.147,339.494l12.768,0.015" />
</g>
<g>
<defs>
<rect id="SVGID_1347_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1348_">
<use xlink:href="#SVGID_1347_" overflow="visible" />
</clipPath>
<path id="path2381" clip-path="url(#SVGID_1348_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M752.374,339.465l0.022,29.442" />
</g>
<g>
<defs>
<rect id="SVGID_1349_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1350_">
<use xlink:href="#SVGID_1349_" overflow="visible" />
</clipPath>
<path id="path2383" clip-path="url(#SVGID_1350_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M752.374,339.465l-30.412,0.099" />
</g>
<g>
<defs>
<rect id="SVGID_1351_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1352_">
<use xlink:href="#SVGID_1351_" overflow="visible" />
</clipPath>
<path id="path2385" clip-path="url(#SVGID_1352_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M775.147,339.494l-22.773-0.029" />
</g>
<g>
<defs>
<rect id="SVGID_1353_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1354_">
<use xlink:href="#SVGID_1353_" overflow="visible" />
</clipPath>
<path id="path2387" clip-path="url(#SVGID_1354_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M525.472,339.698l-36.782-0.332" />
</g>
<g>
<defs>
<rect id="SVGID_1355_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1356_">
<use xlink:href="#SVGID_1355_" overflow="visible" />
</clipPath>
<path id="path2389" clip-path="url(#SVGID_1356_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M487.619,342.047l-0.017-2.69" />
</g>
<g>
<defs>
<rect id="SVGID_1357_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1358_">
<use xlink:href="#SVGID_1357_" overflow="visible" />
</clipPath>
<path id="path2391" clip-path="url(#SVGID_1358_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M488.689,339.366l-1.088-0.009" />
</g>
<g>
<defs>
<rect id="SVGID_1359_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1360_">
<use xlink:href="#SVGID_1359_" overflow="visible" />
</clipPath>
<path id="path2393" clip-path="url(#SVGID_1360_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M449.783,339.006l-0.154,7.403l-3.79-0.024" />
</g>
<g>
<defs>
<rect id="SVGID_1361_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1362_">
<use xlink:href="#SVGID_1361_" overflow="visible" />
</clipPath>
<path id="path2395" clip-path="url(#SVGID_1362_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M487.602,339.357l-9.237-0.125l-14.361,0.043l-14.22-0.269" />
</g>
<g>
<defs>
<rect id="SVGID_1363_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1364_">
<use xlink:href="#SVGID_1363_" overflow="visible" />
</clipPath>
<path id="path2397" clip-path="url(#SVGID_1364_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M824.243,338.365l-0.582,1.708l-0.222,0.863l0.075,1.281l0.321,0.953" />
</g>
<g>
<defs>
<rect id="SVGID_1365_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1366_">
<use xlink:href="#SVGID_1365_" overflow="visible" />
</clipPath>
<path id="path2401" clip-path="url(#SVGID_1366_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M818.392,328.958l0.35,1.236l0.256,1.238l-0.205,0.894l0.36,1.088l1.178,0.851l0.836,1.344l0.906,0.741l0.926,0.149l0.818,0.563
l0.313,0.563" />
</g>
<g>
<defs>
<rect id="SVGID_1367_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1368_">
<use xlink:href="#SVGID_1367_" overflow="visible" />
</clipPath>
<path id="path2403" clip-path="url(#SVGID_1368_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M787.915,339.508l0.077-14.724" />
</g>
<g>
<defs>
<rect id="SVGID_1369_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1370_">
<use xlink:href="#SVGID_1369_" overflow="visible" />
</clipPath>
<path id="path2405" clip-path="url(#SVGID_1370_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M818.402,323.751l0.979,0.627l0.657,0.82l0.235,0.797l-0.142,0.867l0.401,0.835l-0.866,1.052l-1.276,0.209" />
</g>
<g>
<defs>
<rect id="SVGID_1371_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1372_">
<use xlink:href="#SVGID_1371_" overflow="visible" />
</clipPath>
<path id="path2407" clip-path="url(#SVGID_1372_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M787.992,324.785l6.283,0.016l-0.03-1.177" />
</g>
<g>
<defs>
<rect id="SVGID_1373_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1374_">
<use xlink:href="#SVGID_1373_" overflow="visible" />
</clipPath>
<path id="path2409" clip-path="url(#SVGID_1374_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M818.402,323.751l-24.157-0.128" />
</g>
<g>
<defs>
<rect id="SVGID_1375_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1376_">
<use xlink:href="#SVGID_1375_" overflow="visible" />
</clipPath>
<path id="path2411" clip-path="url(#SVGID_1376_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M817.602,321.359l0.011,0.991l0.358,0.917l0.432,0.484" />
</g>
<g>
<defs>
<rect id="SVGID_1377_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1378_">
<use xlink:href="#SVGID_1377_" overflow="visible" />
</clipPath>
<path id="path2413" clip-path="url(#SVGID_1378_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M787.992,324.785l-12.738-0.014l-0.004-7.357" />
</g>
<g>
<defs>
<rect id="SVGID_1379_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1380_">
<use xlink:href="#SVGID_1379_" overflow="visible" />
</clipPath>
<path id="path2415" clip-path="url(#SVGID_1380_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M760.923,317.391l14.327,0.022" />
</g>
<g>
<defs>
<rect id="SVGID_1381_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1382_">
<use xlink:href="#SVGID_1381_" overflow="visible" />
</clipPath>
<path id="path2417" clip-path="url(#SVGID_1382_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M752.419,317.37l-0.045,22.095" />
</g>
<g>
<defs>
<rect id="SVGID_1383_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1384_">
<use xlink:href="#SVGID_1383_" overflow="visible" />
</clipPath>
<path id="path2419" clip-path="url(#SVGID_1384_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M752.419,317.37l8.504,0.021" />
</g>
<g>
<defs>
<rect id="SVGID_1385_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1386_">
<use xlink:href="#SVGID_1385_" overflow="visible" />
</clipPath>
<path id="path2421" clip-path="url(#SVGID_1386_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M602.705,339.881l-0.104-25.707v-2.405l0.029-1.026l-0.815-0.367" />
</g>
<g>
<defs>
<rect id="SVGID_1387_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1388_">
<use xlink:href="#SVGID_1387_" overflow="visible" />
</clipPath>
<path id="path2423" clip-path="url(#SVGID_1388_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M691.577,310.168l-0.023,29.472" />
</g>
<g>
<defs>
<rect id="SVGID_1389_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1390_">
<use xlink:href="#SVGID_1389_" overflow="visible" />
</clipPath>
<path id="path2425" clip-path="url(#SVGID_1390_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M358.738,346.864l-0.002-7.368l-2.769-0.013l-0.028-29.352" />
</g>
<g>
<defs>
<rect id="SVGID_1391_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1392_">
<use xlink:href="#SVGID_1391_" overflow="visible" />
</clipPath>
<path id="path2427" clip-path="url(#SVGID_1392_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M362.601,310.125l-6.661,0.007" />
</g>
<g>
<defs>
<rect id="SVGID_1393_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1394_">
<use xlink:href="#SVGID_1393_" overflow="visible" />
</clipPath>
<path id="path2429" clip-path="url(#SVGID_1394_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M721.969,310.103l-30.392,0.065" />
</g>
<g>
<defs>
<rect id="SVGID_1395_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1396_">
<use xlink:href="#SVGID_1395_" overflow="visible" />
</clipPath>
<path id="path2431" clip-path="url(#SVGID_1396_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M721.962,339.564l0.007-29.461" />
</g>
<g>
<defs>
<rect id="SVGID_1397_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1398_">
<use xlink:href="#SVGID_1397_" overflow="visible" />
</clipPath>
<path id="path2433" clip-path="url(#SVGID_1398_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M725.751,310.09l-3.782,0.013" />
</g>
<g>
<defs>
<rect id="SVGID_1399_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1400_">
<use xlink:href="#SVGID_1399_" overflow="visible" />
</clipPath>
<path id="path2435" clip-path="url(#SVGID_1400_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M744.748,310.027l-18.997,0.063" />
</g>
<g>
<defs>
<rect id="SVGID_1401_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1402_">
<use xlink:href="#SVGID_1401_" overflow="visible" />
</clipPath>
<path id="path2437" clip-path="url(#SVGID_1402_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M744.748,310.027l7.68-0.017l-0.009,7.359" />
</g>
<g>
<defs>
<rect id="SVGID_1403_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1404_">
<use xlink:href="#SVGID_1403_" overflow="visible" />
</clipPath>
<path id="path2439" clip-path="url(#SVGID_1404_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M399.729,309.914l-14.816,0.18l-22.312,0.031" />
</g>
<g>
<defs>
<rect id="SVGID_1405_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1406_">
<use xlink:href="#SVGID_1405_" overflow="visible" />
</clipPath>
<path id="path2441" clip-path="url(#SVGID_1406_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M399.729,309.914l1.562-0.001l-0.137,7.013l0.331,9.072l0.319,6.117l-0.045,7.226l2.603-0.03l0.019,3.508l0.214,2.09l0.064,1.846" />
</g>
<g>
<defs>
<rect id="SVGID_1407_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1408_">
<use xlink:href="#SVGID_1407_" overflow="visible" />
</clipPath>
<path id="path2443" clip-path="url(#SVGID_1408_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M812.59,305.62l2.84,0.355l1.08,1.13l0.268,0.965l0.078,0.864l-0.274,1.202l-1.696,2.06l-0.305,1.653l0.38,1.012l-0.518,1.698
l-0.045,0.846l0.638,1.189l0.766,0.555l0.79,0.422l0.808,0.99l0.203,0.798" />
</g>
<g>
<defs>
<rect id="SVGID_1409_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1410_">
<use xlink:href="#SVGID_1409_" overflow="visible" />
</clipPath>
<path id="path2445" clip-path="url(#SVGID_1410_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M355.94,310.131l-2.32,0.007l-0.016-5.13" />
</g>
<g>
<defs>
<rect id="SVGID_1411_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1412_">
<use xlink:href="#SVGID_1411_" overflow="visible" />
</clipPath>
<path id="path2447" clip-path="url(#SVGID_1412_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M800.454,302.767l0.36,0.91l0.944,0.634l1.329,0.058l1.516-1.056l1.246-0.227l1.123,0.458l0.715,0.885l0.312,0.887l0.947,0.972
l0.771,0.223l0.908-0.007l1.032-0.569l0.931-0.314" />
</g>
<g>
<defs>
<rect id="SVGID_1413_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1414_">
<use xlink:href="#SVGID_1413_" overflow="visible" />
</clipPath>
<path id="path2449" clip-path="url(#SVGID_1414_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M794.245,323.624l0.016-12.833l0.273-8.052l5.92,0.028" />
</g>
<g>
<defs>
<rect id="SVGID_1415_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1416_">
<use xlink:href="#SVGID_1415_" overflow="visible" />
</clipPath>
<path id="path2451" clip-path="url(#SVGID_1416_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M316.264,347.018l-0.013-51.655" />
</g>
<g>
<defs>
<rect id="SVGID_1417_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1418_">
<use xlink:href="#SVGID_1417_" overflow="visible" />
</clipPath>
<path id="path2453" clip-path="url(#SVGID_1418_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M800.454,302.767l-0.12-1.346l-0.307-0.994l-0.654-0.751l-1.819-0.912l-1.977-2.339l-0.347-1.316l0.959-1.934l0.645-1.033
l-0.695-0.792l-1.983-0.655l-1.234,0.056l-1.116,0.359l-0.83-0.062l-1.031-0.269" />
</g>
<g>
<defs>
<rect id="SVGID_1419_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1420_">
<use xlink:href="#SVGID_1419_" overflow="visible" />
</clipPath>
<path id="path2455" clip-path="url(#SVGID_1420_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M789.943,290.78l-0.496-1.562l-0.093-1.222l-0.3-0.456" />
</g>
<g>
<defs>
<rect id="SVGID_1421_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1422_">
<use xlink:href="#SVGID_1421_" overflow="visible" />
</clipPath>
<path id="path2457" clip-path="url(#SVGID_1422_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M601.815,310.377l-0.109-25.102" />
</g>
<g>
<defs>
<rect id="SVGID_1423_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1424_">
<use xlink:href="#SVGID_1423_" overflow="visible" />
</clipPath>
<path id="path2459" clip-path="url(#SVGID_1424_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M691.577,310.168l-0.32-27.459" />
</g>
<g>
<defs>
<rect id="SVGID_1425_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1426_">
<use xlink:href="#SVGID_1425_" overflow="visible" />
</clipPath>
<path id="path2461" clip-path="url(#SVGID_1426_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M775.25,317.414l0.006-7.33l0.189-21.104l-0.068-6.282" />
</g>
<g>
<defs>
<rect id="SVGID_1427_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1428_">
<use xlink:href="#SVGID_1427_" overflow="visible" />
</clipPath>
<path id="path2463" clip-path="url(#SVGID_1428_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M789.055,287.54l-0.864-0.306l-1.563-0.36l-1.11-0.743l-0.806-0.279l-0.917-0.095l-1.302-0.727l-1.133,0.294l-0.823,0.584
l-0.792,0.336l-0.826-0.032l0.046-1.63l-0.522-1.286l-1.562-0.44l-1.502-0.157" />
</g>
<g>
<defs>
<rect id="SVGID_1429_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1430_">
<use xlink:href="#SVGID_1429_" overflow="visible" />
</clipPath>
<path id="path2465" clip-path="url(#SVGID_1430_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M712.043,282.207l0.104-0.049" />
</g>
<g>
<defs>
<rect id="SVGID_1431_" x="300.125" y="194.75" width="600.251" height="389.5" />
</defs>
<clipPath id="SVGID_1432_">
<use xlink:href="#SVGID_1431_" overflow="visible" />
</clipPath>
<path id="path2467" clip-path="url(#SVGID_1432_)" fill="none" stroke="#646464" stroke-width="0.6663" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="1" stroke-dasharray="0.6663,0" d="
M775.377,282.698l-0.818-0.145l-2.428-0.774l-1.941,0.24l-0.374-0.027" />