forked from usf-cs360-spring2020/midterm-chinchillas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
8b9n-iqj8.json
4155 lines (4155 loc) · 563 KB
/
8b9n-iqj8.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"meta" : {
"view" : {
"id" : "8b9n-iqj8",
"name" : "SFPD Incidents 2016 Daily",
"attribution" : "City and County of San Francisco",
"attributionLink" : "http://www.sfgov.org",
"averageRating" : 0,
"category" : "Public Safety",
"createdAt" : 1489946864,
"description" : "***As of July 19, 2015, the PD District boundaries have been updated through a redistricting process. These new boundaries are not reflected in the dataset yet so you cannot compare data from July 19, 2015 onward to official reports from PD with the Police District column. We are working on an update to the dataset to reflect the updated boundaries starting with data entered July 19 onward.***\r\n\r\nIncidents derived from SFPD Crime Incident Reporting system Updated daily, showing data from 1/1/2003 up until two weeks ago from current date. Please note: San Francisco police have implemented a new system for tracking crime. The dataset included here is still coming from the old system, which is in the process of being retired (a multi-year process). Data included here is no longer the official SFPD data. We will migrate to the new system for DataSF in the upcoming months.",
"displayType" : "table",
"downloadCount" : 96,
"hideFromCatalog" : true,
"hideFromDataJson" : true,
"indexUpdatedAt" : 1571261140,
"licenseId" : "PDDL",
"newBackend" : true,
"numberOfComments" : 0,
"oid" : 25621249,
"provenance" : "community",
"publicationAppendEnabled" : true,
"publicationDate" : 1489451997,
"publicationGroup" : 289138,
"publicationStage" : "published",
"rowsUpdatedAt" : 1528837761,
"rowsUpdatedBy" : "3i4b-bknh",
"tableId" : 14083480,
"totalTimesRated" : 0,
"viewCount" : 322,
"viewLastModified" : 1567735126,
"viewType" : "tabular",
"approvals" : [ {
"reviewedAt" : 1489946864,
"reviewedAutomatically" : false,
"state" : "approved",
"submissionId" : 646726,
"submissionObject" : "public_audience_request",
"submissionOutcome" : "change_audience",
"submittedAt" : 1489946864,
"workflowId" : 2017,
"reviewer" : {
"id" : "s7k8-df3k",
"displayName" : "Jason Lally"
},
"submissionDetails" : {
"permissionType" : "READ"
},
"submissionOutcomeApplication" : {
"status" : "success"
},
"submitter" : {
"id" : "v78p-nxgt",
"displayName" : "Sophie Engle"
}
} ],
"columns" : [ {
"id" : -1,
"name" : "sid",
"dataTypeName" : "meta_data",
"fieldName" : ":sid",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : { },
"flags" : [ "hidden" ]
}, {
"id" : -1,
"name" : "id",
"dataTypeName" : "meta_data",
"fieldName" : ":id",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : { },
"flags" : [ "hidden" ]
}, {
"id" : -1,
"name" : "position",
"dataTypeName" : "meta_data",
"fieldName" : ":position",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : { },
"flags" : [ "hidden" ]
}, {
"id" : -1,
"name" : "created_at",
"dataTypeName" : "meta_data",
"fieldName" : ":created_at",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : { },
"flags" : [ "hidden" ]
}, {
"id" : -1,
"name" : "created_meta",
"dataTypeName" : "meta_data",
"fieldName" : ":created_meta",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : { },
"flags" : [ "hidden" ]
}, {
"id" : -1,
"name" : "updated_at",
"dataTypeName" : "meta_data",
"fieldName" : ":updated_at",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : { },
"flags" : [ "hidden" ]
}, {
"id" : -1,
"name" : "updated_meta",
"dataTypeName" : "meta_data",
"fieldName" : ":updated_meta",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : { },
"flags" : [ "hidden" ]
}, {
"id" : -1,
"name" : "meta",
"dataTypeName" : "meta_data",
"fieldName" : ":meta",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : { },
"flags" : [ "hidden" ]
}, {
"id" : 294022399,
"name" : "IncidntNum",
"dataTypeName" : "text",
"description" : "",
"fieldName" : "incidntnum",
"position" : 1,
"renderTypeName" : "number",
"tableColumnId" : 2155096,
"width" : 80,
"cachedContents" : {
"largest" : "144",
"non_null" : 3661,
"average" : "41.21360284075389",
"null" : 0,
"top" : [ {
"item" : "30",
"count" : 20
}, {
"item" : "24",
"count" : 19
}, {
"item" : "26",
"count" : 18
}, {
"item" : "27",
"count" : 17
}, {
"item" : "28",
"count" : 16
}, {
"item" : "40",
"count" : 15
}, {
"item" : "29",
"count" : 14
}, {
"item" : "32",
"count" : 13
}, {
"item" : "22",
"count" : 12
}, {
"item" : "39",
"count" : 11
}, {
"item" : "65",
"count" : 10
}, {
"item" : "43",
"count" : 9
}, {
"item" : "31",
"count" : 8
}, {
"item" : "115",
"count" : 7
}, {
"item" : "56",
"count" : 6
}, {
"item" : "49",
"count" : 5
}, {
"item" : "60",
"count" : 4
}, {
"item" : "59",
"count" : 3
}, {
"item" : "47",
"count" : 2
}, {
"item" : "33",
"count" : 1
} ],
"smallest" : "1",
"sum" : "150883"
},
"format" : {
"precisionStyle" : "standard",
"noCommas" : "true",
"align" : "right",
"grouping_aggregate" : "count"
}
}, {
"id" : 294022398,
"name" : "Date",
"dataTypeName" : "calendar_date",
"description" : "",
"fieldName" : "date",
"position" : 5,
"renderTypeName" : "calendar_date",
"tableColumnId" : 2155100,
"width" : 101,
"cachedContents" : {
"largest" : "2016-12-31T00:00:00",
"non_null" : 3661,
"null" : 0,
"top" : [ {
"item" : "2016-12-01T00:00:00",
"count" : 20
}, {
"item" : "2016-10-01T00:00:00",
"count" : 19
}, {
"item" : "2016-12-08T00:00:00",
"count" : 18
}, {
"item" : "2016-05-01T00:00:00",
"count" : 17
}, {
"item" : "2016-09-30T00:00:00",
"count" : 16
}, {
"item" : "2016-07-01T00:00:00",
"count" : 15
}, {
"item" : "2016-10-02T00:00:00",
"count" : 14
}, {
"item" : "2016-06-01T00:00:00",
"count" : 13
}, {
"item" : "2016-01-01T00:00:00",
"count" : 12
} ],
"smallest" : "2016-01-01T00:00:00"
},
"format" : {
"view" : "date",
"align" : "left",
"drill_down" : "true",
"group_function" : "date_ymd"
}
}, {
"id" : 294022404,
"name" : "PdDistrict",
"dataTypeName" : "text",
"description" : "PD District Effective Through 7-18-2015",
"fieldName" : "pddistrict",
"position" : 7,
"renderTypeName" : "text",
"tableColumnId" : 2155102,
"width" : 121,
"cachedContents" : {
"largest" : "TENDERLOIN",
"non_null" : 3660,
"null" : 1,
"top" : [ {
"item" : "INGLESIDE",
"count" : 20
}, {
"item" : "TENDERLOIN",
"count" : 19
}, {
"item" : "PARK",
"count" : 18
}, {
"item" : "RICHMOND",
"count" : 17
}, {
"item" : "CENTRAL",
"count" : 16
}, {
"item" : "MISSION",
"count" : 15
}, {
"item" : "BAYVIEW",
"count" : 14
}, {
"item" : "TARAVAL",
"count" : 13
}, {
"item" : "NORTHERN",
"count" : 12
}, {
"item" : "SOUTHERN",
"count" : 11
} ],
"smallest" : "BAYVIEW"
},
"format" : {
"align" : "left",
"drill_down" : "true"
}
} ],
"grants" : [ {
"inherited" : true,
"type" : "viewer",
"flags" : [ "public" ]
} ],
"license" : {
"name" : "Open Data Commons Public Domain Dedication and License",
"termsLink" : "http://opendatacommons.org/licenses/pddl/1.0/"
},
"metadata" : {
"rdfSubject" : "0",
"thumbnail" : {
"page" : {
"created" : true
}
},
"custom_fields" : {
"Department Metrics" : {
"Publishing Department" : "Police Department"
},
"Detailed Descriptive" : {
"Geographic unit" : "Latitude/longitude"
},
"Publishing Details" : {
"Data change frequency" : "Daily",
"Publishing frequency" : "Daily"
}
},
"rowIdentifier" : 294022410,
"availableDisplayTypes" : [ "table", "fatrow", "page" ],
"rowLabel" : "Incident",
"renderTypeConfig" : {
"visible" : {
"table" : true
}
}
},
"owner" : {
"id" : "v78p-nxgt",
"displayName" : "Sophie Engle",
"screenName" : "Sophie Engle",
"type" : "interactive",
"userSegment" : "community_user",
"flags" : [ "acceptedEula" ]
},
"query" : {
"filterCondition" : {
"type" : "operator",
"value" : "AND",
"children" : [ {
"type" : "operator",
"value" : "AND",
"children" : [ {
"type" : "operator",
"value" : "BETWEEN",
"children" : [ {
"columnId" : 294022398,
"type" : "column"
}, {
"type" : "literal",
"value" : "2016-01-01T00:00:00"
}, {
"type" : "literal",
"value" : "2016-12-31T00:00:00"
} ],
"metadata" : {
"freeform" : true,
"tableColumnId" : {
"289138" : 2155100
},
"unifiedVersion" : 2,
"operator" : "BETWEEN"
}
}, {
"type" : "operator",
"value" : "BETWEEN",
"children" : [ {
"columnId" : 294022398,
"type" : "column"
}, {
"type" : "literal",
"value" : "2016-01-01T00:00:00"
}, {
"type" : "literal",
"value" : "2016-12-31T00:00:00"
} ],
"metadata" : {
"freeform" : true,
"tableColumnId" : {
"289138" : 2155100
},
"unifiedVersion" : 2,
"operator" : "BETWEEN"
}
} ]
}, {
"type" : "operator",
"value" : "AND",
"children" : [ {
"type" : "operator",
"value" : "BETWEEN",
"children" : [ {
"columnId" : 294022398,
"type" : "column"
}, {
"type" : "literal",
"value" : "2016-01-01T00:00:00"
}, {
"type" : "literal",
"value" : "2016-12-31T00:00:00"
} ],
"metadata" : {
"freeform" : true,
"tableColumnId" : {
"289138" : 2155100
},
"unifiedVersion" : 2,
"operator" : "BETWEEN"
}
}, {
"type" : "operator",
"value" : "BETWEEN",
"children" : [ {
"columnId" : 294022398,
"type" : "column"
}, {
"type" : "literal",
"value" : "2016-01-01T00:00:00"
}, {
"type" : "literal",
"value" : "2016-12-31T00:00:00"
} ],
"metadata" : {
"freeform" : true,
"tableColumnId" : {
"289138" : 2155100
},
"unifiedVersion" : 2,
"operator" : "BETWEEN"
}
} ]
} ]
},
"groupBys" : [ {
"columnId" : 294022404,
"type" : "column"
}, {
"columnId" : 294022398,
"type" : "column"
} ],
"orderBys" : [ {
"ascending" : true,
"expression" : {
"columnId" : 294022404,
"type" : "column"
}
}, {
"ascending" : true,
"expression" : {
"columnId" : 294022398,
"type" : "column"
}
} ]
},
"rights" : [ "read" ],
"tableAuthor" : {
"id" : "dbag-6qd9",
"displayName" : "OpenData",
"screenName" : "OpenData",
"type" : "interactive",
"userSegment" : "site_member",
"flags" : [ "acceptedEula" ]
},
"tags" : [ "sfpd", "crime", "police department" ],
"flags" : [ "restorable", "restorePossibleForType" ]
}
},
"data" : [ [ "row-gpxp.piph_6cgn", "00000000-0000-0000-8C7C-881E871A2096", 0, 1555747092, null, 1555748529, null, "{ }", "47", "2016-01-01T00:00:00", "BAYVIEW" ]
, [ "row-wjie~9ejv~d8qv", "00000000-0000-0000-66E3-E5F05AA4DEDD", 0, 1555747092, null, 1555748530, null, "{ }", "34", "2016-01-02T00:00:00", "BAYVIEW" ]
, [ "row-i3ig~w7js_exja", "00000000-0000-0000-1ACB-8370ADA5B2CA", 0, 1555747092, null, 1555748518, null, "{ }", "29", "2016-01-03T00:00:00", "BAYVIEW" ]
, [ "row-kw9z.a4a6-874j", "00000000-0000-0000-BE95-D30845C81C88", 0, 1555747092, null, 1555748518, null, "{ }", "39", "2016-01-04T00:00:00", "BAYVIEW" ]
, [ "row-6ys7.aw8t_vc2t", "00000000-0000-0000-04EA-0C99ACA9F5CA", 0, 1555747092, null, 1555748518, null, "{ }", "46", "2016-01-05T00:00:00", "BAYVIEW" ]
, [ "row-zd55-5fsj_snx5", "00000000-0000-0000-0782-5DA17D968590", 0, 1555747092, null, 1555748522, null, "{ }", "31", "2016-01-06T00:00:00", "BAYVIEW" ]
, [ "row-miia.3kdi~gv5w", "00000000-0000-0000-3667-AD01E9A40BBC", 0, 1555747092, null, 1555748534, null, "{ }", "43", "2016-01-07T00:00:00", "BAYVIEW" ]
, [ "row-zg2j-i332-56pj", "00000000-0000-0000-C82F-C6AF7DF881A3", 0, 1555747092, null, 1555748536, null, "{ }", "47", "2016-01-08T00:00:00", "BAYVIEW" ]
, [ "row-pavt-bp3j_inzd", "00000000-0000-0000-6FD5-1854D2AAF11A", 0, 1555747092, null, 1555748519, null, "{ }", "46", "2016-01-09T00:00:00", "BAYVIEW" ]
, [ "row-cuwh~dzwp_ns89", "00000000-0000-0000-B280-C70A89B21369", 0, 1555747092, null, 1555748544, null, "{ }", "53", "2016-01-10T00:00:00", "BAYVIEW" ]
, [ "row-t52v~jij8.uv26", "00000000-0000-0000-AD45-2864A96BA3D7", 0, 1555747092, null, 1555748522, null, "{ }", "30", "2016-01-11T00:00:00", "BAYVIEW" ]
, [ "row-pmqv-yhju.j65v", "00000000-0000-0000-5A46-2B18719B6CF7", 0, 1555747092, null, 1555748520, null, "{ }", "41", "2016-01-12T00:00:00", "BAYVIEW" ]
, [ "row-ks4x_pzha-jist", "00000000-0000-0000-0E4B-446984FE1254", 0, 1555747092, null, 1555748536, null, "{ }", "33", "2016-01-13T00:00:00", "BAYVIEW" ]
, [ "row-ihyy_7pam_gy8x", "00000000-0000-0000-CB0F-DB3DF2962298", 0, 1555747092, null, 1555748522, null, "{ }", "44", "2016-01-14T00:00:00", "BAYVIEW" ]
, [ "row-8x8k-n3qe.w78h", "00000000-0000-0000-3659-D24D43616851", 0, 1555747092, null, 1555748520, null, "{ }", "51", "2016-01-15T00:00:00", "BAYVIEW" ]
, [ "row-4zg8.xjvq-thj2", "00000000-0000-0000-DBE7-00F9AB361023", 0, 1555747092, null, 1555748522, null, "{ }", "36", "2016-01-16T00:00:00", "BAYVIEW" ]
, [ "row-ccva~3apg_wdv3", "00000000-0000-0000-E5B2-62E350CF261C", 0, 1555747092, null, 1555748512, null, "{ }", "32", "2016-01-17T00:00:00", "BAYVIEW" ]
, [ "row-kram~rhhw-pk85", "00000000-0000-0000-1713-7BF80E608438", 0, 1555747092, null, 1555748544, null, "{ }", "38", "2016-01-18T00:00:00", "BAYVIEW" ]
, [ "row-fm86_ng48~xjhu", "00000000-0000-0000-500B-664734514E2E", 0, 1555747092, null, 1555748523, null, "{ }", "36", "2016-01-19T00:00:00", "BAYVIEW" ]
, [ "row-a29e~vx38~a7ti", "00000000-0000-0000-32A0-34943F5079AD", 0, 1555747092, null, 1555748544, null, "{ }", "40", "2016-01-20T00:00:00", "BAYVIEW" ]
, [ "row-t3r5~k359-m895", "00000000-0000-0000-6FF1-0714D04FDBA4", 0, 1555747092, null, 1555748515, null, "{ }", "36", "2016-01-21T00:00:00", "BAYVIEW" ]
, [ "row-i7br~v8r3-wcmc", "00000000-0000-0000-C442-16C57EB15A24", 0, 1555747092, null, 1555748515, null, "{ }", "40", "2016-01-22T00:00:00", "BAYVIEW" ]
, [ "row-9mhk_4jp7_ufpr", "00000000-0000-0000-9852-F115F529170C", 0, 1555747092, null, 1555748531, null, "{ }", "51", "2016-01-23T00:00:00", "BAYVIEW" ]
, [ "row-d434~nmbe-4keg", "00000000-0000-0000-8ED3-BEF27E04356A", 0, 1555747092, null, 1555748543, null, "{ }", "46", "2016-01-24T00:00:00", "BAYVIEW" ]
, [ "row-hb7u_zr2b-nsu3", "00000000-0000-0000-D8CA-0A82F30AC376", 0, 1555747092, null, 1555748544, null, "{ }", "47", "2016-01-25T00:00:00", "BAYVIEW" ]
, [ "row-srjn~r7yn-26bv", "00000000-0000-0000-9A5B-589EED8FA658", 0, 1555747092, null, 1555748508, null, "{ }", "39", "2016-01-26T00:00:00", "BAYVIEW" ]
, [ "row-mfqk_4mtm-866q", "00000000-0000-0000-9CE6-63A6FAAA1003", 0, 1555747092, null, 1555748533, null, "{ }", "41", "2016-01-27T00:00:00", "BAYVIEW" ]
, [ "row-e8up~y5mb_2t6z", "00000000-0000-0000-5294-B7441DF36149", 0, 1555747092, null, 1555748508, null, "{ }", "40", "2016-01-28T00:00:00", "BAYVIEW" ]
, [ "row-d5pi-ph4h.5pj4", "00000000-0000-0000-34CB-65ACBC1C39A0", 0, 1555747092, null, 1555748535, null, "{ }", "43", "2016-01-29T00:00:00", "BAYVIEW" ]
, [ "row-uynp-nfrr_it5d", "00000000-0000-0000-E44C-54D9D53E3CD3", 0, 1555747092, null, 1555748544, null, "{ }", "39", "2016-01-30T00:00:00", "BAYVIEW" ]
, [ "row-s7sf~tr4g.6vkg", "00000000-0000-0000-442E-7500A79E5E5D", 0, 1555747092, null, 1555748487, null, "{ }", "32", "2016-01-31T00:00:00", "BAYVIEW" ]
, [ "row-662t-jh58_ktes", "00000000-0000-0000-FED8-36F59B47CF7B", 0, 1555747092, null, 1555748503, null, "{ }", "43", "2016-02-01T00:00:00", "BAYVIEW" ]
, [ "row-a7uc~ic3r~drvn", "00000000-0000-0000-5C62-F0910852D4EF", 0, 1555747092, null, 1555748504, null, "{ }", "36", "2016-02-02T00:00:00", "BAYVIEW" ]
, [ "row-k9vn_ptmi~puqx", "00000000-0000-0000-F5D0-F3F775BA8133", 0, 1555747092, null, 1555748524, null, "{ }", "28", "2016-02-03T00:00:00", "BAYVIEW" ]
, [ "row-bpu4-pmtk-2asp", "00000000-0000-0000-8B11-46A0C0AD5A2D", 0, 1555747092, null, 1555748544, null, "{ }", "54", "2016-02-04T00:00:00", "BAYVIEW" ]
, [ "row-inat~s9em_ivmv", "00000000-0000-0000-6469-CEEBF60C0F8A", 0, 1555747092, null, 1555748506, null, "{ }", "42", "2016-02-05T00:00:00", "BAYVIEW" ]
, [ "row-dmsx-64vs~vr5d", "00000000-0000-0000-7AE0-D173D1E93DA9", 0, 1555747092, null, 1555748524, null, "{ }", "28", "2016-02-06T00:00:00", "BAYVIEW" ]
, [ "row-tf8q_imdi.sm4m", "00000000-0000-0000-5A1A-56F273DE6D69", 0, 1555747092, null, 1555748530, null, "{ }", "36", "2016-02-07T00:00:00", "BAYVIEW" ]
, [ "row-67qr_zsnp_nz5k", "00000000-0000-0000-DD12-C3ABC9C79B74", 0, 1555747092, null, 1555748524, null, "{ }", "54", "2016-02-08T00:00:00", "BAYVIEW" ]
, [ "row-6ckx~kb2t_ikhu", "00000000-0000-0000-0C4F-9C1B10D6DF5F", 0, 1555747092, null, 1555748524, null, "{ }", "42", "2016-02-09T00:00:00", "BAYVIEW" ]
, [ "row-paxq_2f6v-q79a", "00000000-0000-0000-53CB-2E49B7A86958", 0, 1555747092, null, 1555748524, null, "{ }", "36", "2016-02-10T00:00:00", "BAYVIEW" ]
, [ "row-ducm_5p87-upx7", "00000000-0000-0000-FD6C-AF65EC899107", 0, 1555747092, null, 1555748530, null, "{ }", "34", "2016-02-11T00:00:00", "BAYVIEW" ]
, [ "row-fvwp_hxeh_p423", "00000000-0000-0000-6945-A0D04FD9A079", 0, 1555747092, null, 1555748521, null, "{ }", "41", "2016-02-12T00:00:00", "BAYVIEW" ]
, [ "row-fm2h~2vb2~7xek", "00000000-0000-0000-1F89-0459A741F4DB", 0, 1555747092, null, 1555748509, null, "{ }", "41", "2016-02-13T00:00:00", "BAYVIEW" ]
, [ "row-aien.f2fk-hbrx", "00000000-0000-0000-1F27-8B5BD450D839", 0, 1555747092, null, 1555748530, null, "{ }", "28", "2016-02-14T00:00:00", "BAYVIEW" ]
, [ "row-j783~gtxf.pq9b", "00000000-0000-0000-85CB-BC96E1B31BED", 0, 1555747092, null, 1555748528, null, "{ }", "45", "2016-02-15T00:00:00", "BAYVIEW" ]
, [ "row-5fnv-xxsc_tv7s", "00000000-0000-0000-21E7-D1F10F451CC7", 0, 1555747092, null, 1555748540, null, "{ }", "37", "2016-02-16T00:00:00", "BAYVIEW" ]
, [ "row-6t2n.pehg_r2g7", "00000000-0000-0000-F58F-66987E060126", 0, 1555747092, null, 1555748539, null, "{ }", "53", "2016-02-17T00:00:00", "BAYVIEW" ]
, [ "row-ppyy.23vi-guqh", "00000000-0000-0000-665E-A5FC7BD15B92", 0, 1555747092, null, 1555748524, null, "{ }", "53", "2016-02-18T00:00:00", "BAYVIEW" ]
, [ "row-76bu.yf5s.rna9", "00000000-0000-0000-A613-797F7735909F", 0, 1555747092, null, 1555748524, null, "{ }", "26", "2016-02-19T00:00:00", "BAYVIEW" ]
, [ "row-fyvv~8nka.g3k7", "00000000-0000-0000-C35E-FFD10BFFAEFA", 0, 1555747092, null, 1555748539, null, "{ }", "33", "2016-02-20T00:00:00", "BAYVIEW" ]
, [ "row-weq5_8fmq-4f82", "00000000-0000-0000-BCE6-6958884EE0CF", 0, 1555747092, null, 1555748509, null, "{ }", "35", "2016-02-21T00:00:00", "BAYVIEW" ]
, [ "row-26qv~jmv9.5aa2", "00000000-0000-0000-743B-4A4EA49FFE6E", 0, 1555747092, null, 1555748520, null, "{ }", "46", "2016-02-22T00:00:00", "BAYVIEW" ]
, [ "row-d9ek~rwk4-nc2a", "00000000-0000-0000-8DDA-8B6856C1E526", 0, 1555747092, null, 1555748529, null, "{ }", "36", "2016-02-23T00:00:00", "BAYVIEW" ]
, [ "row-n97w-8miw_zkgw", "00000000-0000-0000-CA36-AE1ECDD5B6E2", 0, 1555747092, null, 1555748524, null, "{ }", "34", "2016-02-24T00:00:00", "BAYVIEW" ]
, [ "row-hjua.ux7p-zy9n", "00000000-0000-0000-E308-08E1D33C415A", 0, 1555747092, null, 1555748525, null, "{ }", "44", "2016-02-25T00:00:00", "BAYVIEW" ]
, [ "row-5hn4.g26p~5hw2", "00000000-0000-0000-A1F1-10B8BFAFCA4C", 0, 1555747092, null, 1555748544, null, "{ }", "40", "2016-02-26T00:00:00", "BAYVIEW" ]
, [ "row-agnx~jjkt~jxx2", "00000000-0000-0000-75B5-94E587F29B36", 0, 1555747092, null, 1555748524, null, "{ }", "35", "2016-02-27T00:00:00", "BAYVIEW" ]
, [ "row-nw66.35rj_evzk", "00000000-0000-0000-2B52-ABCFE3C798CF", 0, 1555747092, null, 1555748525, null, "{ }", "64", "2016-02-28T00:00:00", "BAYVIEW" ]
, [ "row-mw3v~hgcc~x952", "00000000-0000-0000-318B-216A4B46ED09", 0, 1555747092, null, 1555748508, null, "{ }", "50", "2016-02-29T00:00:00", "BAYVIEW" ]
, [ "row-w347-5pgs.m7ri", "00000000-0000-0000-0B20-CBD46A164AF9", 0, 1555747092, null, 1555748535, null, "{ }", "40", "2016-03-01T00:00:00", "BAYVIEW" ]
, [ "row-3i98_m7jw-7qtt", "00000000-0000-0000-1723-58B386558687", 0, 1555747092, null, 1555748508, null, "{ }", "36", "2016-03-02T00:00:00", "BAYVIEW" ]
, [ "row-mqun-ndig_p3ze", "00000000-0000-0000-2243-BF3BA64191D2", 0, 1555747092, null, 1555748521, null, "{ }", "47", "2016-03-03T00:00:00", "BAYVIEW" ]
, [ "row-xtx5_kpsd.txbv", "00000000-0000-0000-A58C-519822363332", 0, 1555747092, null, 1555748537, null, "{ }", "51", "2016-03-04T00:00:00", "BAYVIEW" ]
, [ "row-yhsh~feyz-pxsw", "00000000-0000-0000-2DFF-983D338A5D8D", 0, 1555747092, null, 1555748544, null, "{ }", "46", "2016-03-05T00:00:00", "BAYVIEW" ]
, [ "row-erjx~nwhf~wad2", "00000000-0000-0000-CD99-C490BC41C22C", 0, 1555747092, null, 1555748525, null, "{ }", "35", "2016-03-06T00:00:00", "BAYVIEW" ]
, [ "row-95u3-y4rd.5kvb", "00000000-0000-0000-35E5-425340D8C1E8", 0, 1555747092, null, 1555748525, null, "{ }", "32", "2016-03-07T00:00:00", "BAYVIEW" ]
, [ "row-ppxg~z7ud-de66", "00000000-0000-0000-D573-1EB95D65A0BE", 0, 1555747092, null, 1555748525, null, "{ }", "29", "2016-03-08T00:00:00", "BAYVIEW" ]
, [ "row-p5v8.nadd_ukq7", "00000000-0000-0000-D144-4320D621DE04", 0, 1555747092, null, 1555748527, null, "{ }", "39", "2016-03-09T00:00:00", "BAYVIEW" ]
, [ "row-e7gw-wm63-p7as", "00000000-0000-0000-0D4C-9E1299B2D5BB", 0, 1555747092, null, 1555748525, null, "{ }", "45", "2016-03-10T00:00:00", "BAYVIEW" ]
, [ "row-hicw~v4fh.jqzc", "00000000-0000-0000-F98D-16E2FD0607CC", 0, 1555747092, null, 1555748509, null, "{ }", "30", "2016-03-11T00:00:00", "BAYVIEW" ]
, [ "row-zcz7_audv.8scr", "00000000-0000-0000-DC27-A7AE77714481", 0, 1555747092, null, 1555748525, null, "{ }", "37", "2016-03-12T00:00:00", "BAYVIEW" ]
, [ "row-ax9r.nf5y_zxxh", "00000000-0000-0000-AC41-20B8B507A7DB", 0, 1555747092, null, 1555748525, null, "{ }", "33", "2016-03-13T00:00:00", "BAYVIEW" ]
, [ "row-fh8w~3996.q9tf", "00000000-0000-0000-0980-3F93EA032179", 0, 1555747092, null, 1555748544, null, "{ }", "44", "2016-03-14T00:00:00", "BAYVIEW" ]
, [ "row-rgiw.4a4p~t4ve", "00000000-0000-0000-B4F9-6A37F6A86810", 0, 1555747092, null, 1555748510, null, "{ }", "43", "2016-03-15T00:00:00", "BAYVIEW" ]
, [ "row-jtmi_2i9v-73qj", "00000000-0000-0000-FBDD-9695B02F2EF8", 0, 1555747092, null, 1555748526, null, "{ }", "45", "2016-03-16T00:00:00", "BAYVIEW" ]
, [ "row-4pi8~hkq9~9vfg", "00000000-0000-0000-328C-4993F7C5648A", 0, 1555747092, null, 1555748502, null, "{ }", "52", "2016-03-17T00:00:00", "BAYVIEW" ]
, [ "row-iaca.ryf4-hfxk", "00000000-0000-0000-7D31-4005B41A384D", 0, 1555747092, null, 1555748531, null, "{ }", "53", "2016-03-18T00:00:00", "BAYVIEW" ]
, [ "row-sza9_6rnc~v49g", "00000000-0000-0000-2B53-3AC67E2FA86D", 0, 1555747092, null, 1555748531, null, "{ }", "50", "2016-03-19T00:00:00", "BAYVIEW" ]
, [ "row-dgyf_6q9c-q6xi", "00000000-0000-0000-7EE8-30DA0624604B", 0, 1555747092, null, 1555748531, null, "{ }", "46", "2016-03-20T00:00:00", "BAYVIEW" ]
, [ "row-fsqp-nup4.b85b", "00000000-0000-0000-5D11-362046168DD3", 0, 1555747092, null, 1555748531, null, "{ }", "51", "2016-03-21T00:00:00", "BAYVIEW" ]
, [ "row-fesq.4dca_5a7t", "00000000-0000-0000-3F23-D12BA1E99E6B", 0, 1555747092, null, 1555748529, null, "{ }", "40", "2016-03-22T00:00:00", "BAYVIEW" ]
, [ "row-uwju~eesp.b8mz", "00000000-0000-0000-A872-773DDEF81694", 0, 1555747092, null, 1555748529, null, "{ }", "38", "2016-03-23T00:00:00", "BAYVIEW" ]
, [ "row-3cvy~8twv~gjgr", "00000000-0000-0000-13A9-971B887E0E84", 0, 1555747092, null, 1555748539, null, "{ }", "29", "2016-03-24T00:00:00", "BAYVIEW" ]
, [ "row-g7fg.mbw8~4jp8", "00000000-0000-0000-DA31-1E0AFE5FAE37", 0, 1555747092, null, 1555748511, null, "{ }", "33", "2016-03-25T00:00:00", "BAYVIEW" ]
, [ "row-usfx_w592-yce4", "00000000-0000-0000-EE26-AF12330BAD23", 0, 1555747092, null, 1555748526, null, "{ }", "34", "2016-03-26T00:00:00", "BAYVIEW" ]
, [ "row-ncff.jbw3~9uuq", "00000000-0000-0000-DB72-F7596A8792EA", 0, 1555747092, null, 1555748526, null, "{ }", "49", "2016-03-27T00:00:00", "BAYVIEW" ]
, [ "row-tven_th3x-jnyr", "00000000-0000-0000-F1DC-5F6123DF3B65", 0, 1555747092, null, 1555748526, null, "{ }", "25", "2016-03-28T00:00:00", "BAYVIEW" ]
, [ "row-tuds~xiz5~f5hv", "00000000-0000-0000-AA49-D842876B25F7", 0, 1555747092, null, 1555748540, null, "{ }", "51", "2016-03-29T00:00:00", "BAYVIEW" ]
, [ "row-67uv.3r2h~kbxi", "00000000-0000-0000-949E-CDD9E5CFB99C", 0, 1555747092, null, 1555748544, null, "{ }", "43", "2016-03-30T00:00:00", "BAYVIEW" ]
, [ "row-m7i8-ykvc-deci", "00000000-0000-0000-C5F7-8ED1EB2CAD98", 0, 1555747092, null, 1555748544, null, "{ }", "36", "2016-03-31T00:00:00", "BAYVIEW" ]
, [ "row-txyz.6j4w~azk9", "00000000-0000-0000-5094-B77E5A11EE18", 0, 1555747092, null, 1555748526, null, "{ }", "40", "2016-04-01T00:00:00", "BAYVIEW" ]
, [ "row-y9px-yahi-wb8z", "00000000-0000-0000-A9F3-8E728AA5C0EA", 0, 1555747092, null, 1555748544, null, "{ }", "46", "2016-04-02T00:00:00", "BAYVIEW" ]
, [ "row-4g3s.z923-ttzc", "00000000-0000-0000-979A-10EAB1E2C7D5", 0, 1555747092, null, 1555748538, null, "{ }", "18", "2016-04-03T00:00:00", "BAYVIEW" ]
, [ "row-yj3n.g4ne.x8rh", "00000000-0000-0000-C914-A0EE247F93D9", 0, 1555747092, null, 1555748526, null, "{ }", "44", "2016-04-04T00:00:00", "BAYVIEW" ]
, [ "row-h5v6.hfnk_d32b", "00000000-0000-0000-EE8A-811B97C5DDD5", 0, 1555747092, null, 1555748516, null, "{ }", "32", "2016-04-05T00:00:00", "BAYVIEW" ]
, [ "row-c98v_rmun~w3su", "00000000-0000-0000-7C0A-2B88FBD80E25", 0, 1555747092, null, 1555748538, null, "{ }", "40", "2016-04-06T00:00:00", "BAYVIEW" ]
, [ "row-a5qc.avte_mtis", "00000000-0000-0000-A829-1CD6218B4120", 0, 1555747092, null, 1555748523, null, "{ }", "37", "2016-04-07T00:00:00", "BAYVIEW" ]
, [ "row-3une-sj7j_vbn6", "00000000-0000-0000-691F-701F97EF7247", 0, 1555747092, null, 1555748515, null, "{ }", "43", "2016-04-08T00:00:00", "BAYVIEW" ]
, [ "row-2cc6.dwzx-cm2v", "00000000-0000-0000-49CC-16D8E4033DD0", 0, 1555747092, null, 1555748516, null, "{ }", "29", "2016-04-09T00:00:00", "BAYVIEW" ]
, [ "row-yuzq.j5cy-dqxg", "00000000-0000-0000-1968-ED45A39A4E8D", 0, 1555747092, null, 1555748522, null, "{ }", "32", "2016-04-10T00:00:00", "BAYVIEW" ]
, [ "row-idwe-ku6m-wqcx", "00000000-0000-0000-8076-4888C1BA05FD", 0, 1555747092, null, 1555748526, null, "{ }", "40", "2016-04-11T00:00:00", "BAYVIEW" ]
, [ "row-nmxh~njq4.ec9r", "00000000-0000-0000-620B-D41E5C0BC866", 0, 1555747092, null, 1555748541, null, "{ }", "42", "2016-04-12T00:00:00", "BAYVIEW" ]
, [ "row-s396_tr7y-3nty", "00000000-0000-0000-E4E4-AAF99446B422", 0, 1555747092, null, 1555748516, null, "{ }", "32", "2016-04-13T00:00:00", "BAYVIEW" ]
, [ "row-mewf~adw4.ec25", "00000000-0000-0000-C707-AAD02B772144", 0, 1555747092, null, 1555748544, null, "{ }", "50", "2016-04-14T00:00:00", "BAYVIEW" ]
, [ "row-f5fj-3byg~8k9k", "00000000-0000-0000-F688-85F94E41DC94", 0, 1555747092, null, 1555748544, null, "{ }", "43", "2016-04-15T00:00:00", "BAYVIEW" ]
, [ "row-ij4t-txbu_j77g", "00000000-0000-0000-8E36-5D0A4CD90154", 0, 1555747092, null, 1555748544, null, "{ }", "43", "2016-04-16T00:00:00", "BAYVIEW" ]
, [ "row-2fjr-cjdp-tpmk", "00000000-0000-0000-5876-514F8A1DAE4A", 0, 1555747092, null, 1555748522, null, "{ }", "36", "2016-04-17T00:00:00", "BAYVIEW" ]
, [ "row-5x99_gpat-e7cj", "00000000-0000-0000-3235-40BA73DD2437", 0, 1555747092, null, 1555748529, null, "{ }", "22", "2016-04-18T00:00:00", "BAYVIEW" ]
, [ "row-q2d8~t79m-dx44", "00000000-0000-0000-7C98-105A6E5B1DFD", 0, 1555747092, null, 1555748518, null, "{ }", "33", "2016-04-19T00:00:00", "BAYVIEW" ]
, [ "row-zw2i~tf6g.yzir", "00000000-0000-0000-A7BC-3945E232BD0C", 0, 1555747092, null, 1555748523, null, "{ }", "56", "2016-04-20T00:00:00", "BAYVIEW" ]
, [ "row-pxaj-du4n-9jrf", "00000000-0000-0000-4BDF-E172259D1CBA", 0, 1555747092, null, 1555748523, null, "{ }", "46", "2016-04-21T00:00:00", "BAYVIEW" ]
, [ "row-idxu.bamk~qzbb", "00000000-0000-0000-2C4F-742E49D903BE", 0, 1555747092, null, 1555748523, null, "{ }", "45", "2016-04-22T00:00:00", "BAYVIEW" ]
, [ "row-puqd~8bjx~m4vd", "00000000-0000-0000-0619-DCAF37A090A7", 0, 1555747092, null, 1555748544, null, "{ }", "28", "2016-04-23T00:00:00", "BAYVIEW" ]
, [ "row-envm.cc6s-7kkr", "00000000-0000-0000-56E5-BA872A0CCC7F", 0, 1555747092, null, 1555748509, null, "{ }", "27", "2016-04-24T00:00:00", "BAYVIEW" ]
, [ "row-pd2b.sn8p-2jmy", "00000000-0000-0000-05A0-8C9BE426D56F", 0, 1555747092, null, 1555748529, null, "{ }", "37", "2016-04-25T00:00:00", "BAYVIEW" ]
, [ "row-7bkt-5sb4-76ja", "00000000-0000-0000-0DD4-35930E925E8F", 0, 1555747092, null, 1555748528, null, "{ }", "30", "2016-04-26T00:00:00", "BAYVIEW" ]
, [ "row-beee~ss2y-naeg", "00000000-0000-0000-D56D-00AF8B1D6944", 0, 1555747092, null, 1555748509, null, "{ }", "26", "2016-04-27T00:00:00", "BAYVIEW" ]
, [ "row-ay87~hpuf~7jw9", "00000000-0000-0000-EB52-1F0D943B89FC", 0, 1555747092, null, 1555748544, null, "{ }", "39", "2016-04-28T00:00:00", "BAYVIEW" ]
, [ "row-39sh~p3ni.xfgs", "00000000-0000-0000-AF12-E908527A908F", 0, 1555747092, null, 1555748544, null, "{ }", "46", "2016-04-29T00:00:00", "BAYVIEW" ]
, [ "row-gpas_byp9~42ma", "00000000-0000-0000-812E-39EEEC131B69", 0, 1555747092, null, 1555748527, null, "{ }", "40", "2016-04-30T00:00:00", "BAYVIEW" ]
, [ "row-zmxk~rpu8.p8nd", "00000000-0000-0000-08B8-274DA7AA30F2", 0, 1555747092, null, 1555748541, null, "{ }", "47", "2016-05-01T00:00:00", "BAYVIEW" ]
, [ "row-s2n8_ap3s-njf8", "00000000-0000-0000-6A4E-619E0FAB1630", 0, 1555747092, null, 1555748535, null, "{ }", "46", "2016-05-02T00:00:00", "BAYVIEW" ]
, [ "row-sjuq_9gwy_jjhp", "00000000-0000-0000-B00F-2833AF4F5BD4", 0, 1555747092, null, 1555748544, null, "{ }", "36", "2016-05-03T00:00:00", "BAYVIEW" ]
, [ "row-bmyk~gk7w.299r", "00000000-0000-0000-057F-A4EACA71FFD3", 0, 1555747092, null, 1555748527, null, "{ }", "26", "2016-05-04T00:00:00", "BAYVIEW" ]
, [ "row-xqpf-g3m8.8rka", "00000000-0000-0000-B6AB-5FB70411ACC1", 0, 1555747092, null, 1555748520, null, "{ }", "51", "2016-05-05T00:00:00", "BAYVIEW" ]
, [ "row-h2nn_p2pj.89hp", "00000000-0000-0000-7638-E6BC181C31A2", 0, 1555747092, null, 1555748518, null, "{ }", "32", "2016-05-06T00:00:00", "BAYVIEW" ]
, [ "row-f2ui_q9hd_wybw", "00000000-0000-0000-A19B-EAA5606BBE27", 0, 1555747092, null, 1555748544, null, "{ }", "33", "2016-05-07T00:00:00", "BAYVIEW" ]
, [ "row-whrz-m8cs~9c5g", "00000000-0000-0000-464A-37B041A05A85", 0, 1555747092, null, 1555748527, null, "{ }", "50", "2016-05-08T00:00:00", "BAYVIEW" ]
, [ "row-iuu7_ea6e.fhj7", "00000000-0000-0000-6C2B-5B907E0F2A8E", 0, 1555747092, null, 1555748539, null, "{ }", "36", "2016-05-09T00:00:00", "BAYVIEW" ]
, [ "row-fpw9~jhtp_te5e", "00000000-0000-0000-699B-45AC63FFE012", 0, 1555747092, null, 1555748539, null, "{ }", "40", "2016-05-10T00:00:00", "BAYVIEW" ]
, [ "row-sdbg.iuhy~d7fh", "00000000-0000-0000-5425-716A8110AD19", 0, 1555747092, null, 1555748505, null, "{ }", "36", "2016-05-11T00:00:00", "BAYVIEW" ]
, [ "row-eyw5-uqjw-4xjr", "00000000-0000-0000-F0CE-06E7AE14C696", 0, 1555747092, null, 1555748527, null, "{ }", "46", "2016-05-12T00:00:00", "BAYVIEW" ]
, [ "row-nxyn~2rdv~ubc8", "00000000-0000-0000-37D9-F69398C386E3", 0, 1555747092, null, 1555748527, null, "{ }", "32", "2016-05-13T00:00:00", "BAYVIEW" ]
, [ "row-pcdz~e3h7.wayr", "00000000-0000-0000-06BE-5548E0837B1B", 0, 1555747092, null, 1555748499, null, "{ }", "42", "2016-05-14T00:00:00", "BAYVIEW" ]
, [ "row-qumk~gh6h_ray7", "00000000-0000-0000-5CA6-936FE6EC98AA", 0, 1555747092, null, 1555748527, null, "{ }", "31", "2016-05-15T00:00:00", "BAYVIEW" ]
, [ "row-cc2c_yvcu-h8rd", "00000000-0000-0000-56DD-8459F3EE13BC", 0, 1555747092, null, 1555748531, null, "{ }", "44", "2016-05-16T00:00:00", "BAYVIEW" ]
, [ "row-mqvn_rrda-hyds", "00000000-0000-0000-0F1A-7205B1E4252F", 0, 1555747092, null, 1555748529, null, "{ }", "38", "2016-05-17T00:00:00", "BAYVIEW" ]
, [ "row-4tr8_ryy4~87xk", "00000000-0000-0000-2A6B-F6F94D0CEBD4", 0, 1555747092, null, 1555748544, null, "{ }", "45", "2016-05-18T00:00:00", "BAYVIEW" ]
, [ "row-akng~t5j5_c4fn", "00000000-0000-0000-9934-CD04E6E1C8BA", 0, 1555747092, null, 1555748544, null, "{ }", "37", "2016-05-19T00:00:00", "BAYVIEW" ]
, [ "row-bmvc~93cj_9u9a", "00000000-0000-0000-F320-DFF97F06A381", 0, 1555747092, null, 1555748539, null, "{ }", "46", "2016-05-20T00:00:00", "BAYVIEW" ]
, [ "row-p7up_nxx9-jebt", "00000000-0000-0000-5AB6-4E728AB16EB0", 0, 1555747092, null, 1555748529, null, "{ }", "32", "2016-05-21T00:00:00", "BAYVIEW" ]
, [ "row-bbnq~5sba_icqe", "00000000-0000-0000-C58B-284DA26620D6", 0, 1555747092, null, 1555748518, null, "{ }", "37", "2016-05-22T00:00:00", "BAYVIEW" ]
, [ "row-h5es.tuua_jzd6", "00000000-0000-0000-8A0B-6780ECBA3351", 0, 1555747092, null, 1555748539, null, "{ }", "42", "2016-05-23T00:00:00", "BAYVIEW" ]
, [ "row-enei.i4fw~djvz", "00000000-0000-0000-6E37-B92A019B4BA3", 0, 1555747092, null, 1555748544, null, "{ }", "42", "2016-05-24T00:00:00", "BAYVIEW" ]
, [ "row-6hx5-xk7f_4gqm", "00000000-0000-0000-CF62-007150BC0732", 0, 1555747092, null, 1555748529, null, "{ }", "29", "2016-05-25T00:00:00", "BAYVIEW" ]
, [ "row-uqnc_z8zk-gjpf", "00000000-0000-0000-D044-81F568756004", 0, 1555747092, null, 1555748531, null, "{ }", "55", "2016-05-26T00:00:00", "BAYVIEW" ]
, [ "row-y4zh.ncnm~wjz2", "00000000-0000-0000-F433-FF85D20DE489", 0, 1555747092, null, 1555748529, null, "{ }", "37", "2016-05-27T00:00:00", "BAYVIEW" ]
, [ "row-qgnb_va2p_uf37", "00000000-0000-0000-5BE5-FB7A2FEDC11C", 0, 1555747092, null, 1555748529, null, "{ }", "34", "2016-05-28T00:00:00", "BAYVIEW" ]
, [ "row-8z9w.wnn2-jmwe", "00000000-0000-0000-3E4F-8F341091A7F3", 0, 1555747092, null, 1555748543, null, "{ }", "27", "2016-05-29T00:00:00", "BAYVIEW" ]
, [ "row-mm94.n6nk-xjah", "00000000-0000-0000-D1A1-4CA2A7957A3F", 0, 1555747092, null, 1555748513, null, "{ }", "24", "2016-05-30T00:00:00", "BAYVIEW" ]
, [ "row-jy9x-p529~mw4p", "00000000-0000-0000-57E3-1252739D77FC", 0, 1555747092, null, 1555748532, null, "{ }", "48", "2016-05-31T00:00:00", "BAYVIEW" ]
, [ "row-qgex~ugjg~a2e3", "00000000-0000-0000-521C-4A32CAA56DE2", 0, 1555747092, null, 1555748537, null, "{ }", "38", "2016-06-01T00:00:00", "BAYVIEW" ]
, [ "row-y8kv.zib6_6vnm", "00000000-0000-0000-DE8F-A4354B2562E8", 0, 1555747092, null, 1555748543, null, "{ }", "46", "2016-06-02T00:00:00", "BAYVIEW" ]
, [ "row-jtz8~i786~arkw", "00000000-0000-0000-78E8-E5FE8DE53326", 0, 1555747092, null, 1555748501, null, "{ }", "32", "2016-06-03T00:00:00", "BAYVIEW" ]
, [ "row-q5mi~qjr4-5b7z", "00000000-0000-0000-52CF-4D14D58388FF", 0, 1555747092, null, 1555748502, null, "{ }", "38", "2016-06-04T00:00:00", "BAYVIEW" ]
, [ "row-n7ub_3465.v4rr", "00000000-0000-0000-073F-E35484FDB027", 0, 1555747092, null, 1555748535, null, "{ }", "33", "2016-06-05T00:00:00", "BAYVIEW" ]
, [ "row-ieb8.piwx-ntm8", "00000000-0000-0000-0945-7B7E8804D062", 0, 1555747092, null, 1555748541, null, "{ }", "41", "2016-06-06T00:00:00", "BAYVIEW" ]
, [ "row-vziv_uayx_7833", "00000000-0000-0000-86D2-9B2C306289FC", 0, 1555747092, null, 1555748544, null, "{ }", "50", "2016-06-07T00:00:00", "BAYVIEW" ]
, [ "row-crt3.5uuc-7ea5", "00000000-0000-0000-11D1-4E811D35354C", 0, 1555747092, null, 1555748525, null, "{ }", "35", "2016-06-08T00:00:00", "BAYVIEW" ]
, [ "row-j9ps.mske.xvki", "00000000-0000-0000-A442-C95FDE38C052", 0, 1555747092, null, 1555748529, null, "{ }", "29", "2016-06-09T00:00:00", "BAYVIEW" ]
, [ "row-f4p3~phqc.ukxv", "00000000-0000-0000-B7E7-90DB87A51DD2", 0, 1555747092, null, 1555748527, null, "{ }", "46", "2016-06-10T00:00:00", "BAYVIEW" ]
, [ "row-umru_ry4a~8wht", "00000000-0000-0000-9CC1-A4A08C920579", 0, 1555747092, null, 1555748518, null, "{ }", "37", "2016-06-11T00:00:00", "BAYVIEW" ]
, [ "row-7jce-xwca_k2sw", "00000000-0000-0000-7CF7-8B361F0AB5CD", 0, 1555747092, null, 1555748541, null, "{ }", "35", "2016-06-12T00:00:00", "BAYVIEW" ]
, [ "row-7jha~sy5k_nn9n", "00000000-0000-0000-99D6-BA8241DA1FF2", 0, 1555747092, null, 1555748530, null, "{ }", "26", "2016-06-13T00:00:00", "BAYVIEW" ]
, [ "row-fqdz~3uiy~x3ts", "00000000-0000-0000-9174-EEDF2FDCCFB6", 0, 1555747092, null, 1555748529, null, "{ }", "40", "2016-06-14T00:00:00", "BAYVIEW" ]
, [ "row-a9t2-mymi.5ig7", "00000000-0000-0000-97DB-82566068021A", 0, 1555747092, null, 1555748531, null, "{ }", "58", "2016-06-15T00:00:00", "BAYVIEW" ]
, [ "row-qmtr.7ejr~pwu4", "00000000-0000-0000-B32E-537C48C25272", 0, 1555747092, null, 1555748544, null, "{ }", "58", "2016-06-16T00:00:00", "BAYVIEW" ]
, [ "row-m4pc-tdqx-mz5z", "00000000-0000-0000-E9B0-30F80C71DA05", 0, 1555747092, null, 1555748529, null, "{ }", "35", "2016-06-17T00:00:00", "BAYVIEW" ]
, [ "row-cwmr-xqna-2sjm", "00000000-0000-0000-D193-6FAB56B5F4A5", 0, 1555747092, null, 1555748520, null, "{ }", "30", "2016-06-18T00:00:00", "BAYVIEW" ]
, [ "row-xbnv~axn5.vnyg", "00000000-0000-0000-891F-651E0BA070A8", 0, 1555747092, null, 1555748529, null, "{ }", "23", "2016-06-19T00:00:00", "BAYVIEW" ]
, [ "row-mfed-7u4f.yerk", "00000000-0000-0000-5489-C3524AA93FFB", 0, 1555747092, null, 1555748544, null, "{ }", "29", "2016-06-20T00:00:00", "BAYVIEW" ]
, [ "row-puze~a28j~6byb", "00000000-0000-0000-4BEA-5FD20A45F862", 0, 1555747092, null, 1555748544, null, "{ }", "43", "2016-06-21T00:00:00", "BAYVIEW" ]
, [ "row-i84i-n2xz.wweu", "00000000-0000-0000-0308-7A195BEA6BFC", 0, 1555747092, null, 1555748531, null, "{ }", "40", "2016-06-22T00:00:00", "BAYVIEW" ]
, [ "row-eky4~t2ff.fnsk", "00000000-0000-0000-28F0-BDC2073F3FCA", 0, 1555747092, null, 1555748529, null, "{ }", "35", "2016-06-23T00:00:00", "BAYVIEW" ]
, [ "row-7wtn~e4zn_58pu", "00000000-0000-0000-ECC2-B230995AE172", 0, 1555747092, null, 1555748544, null, "{ }", "40", "2016-06-24T00:00:00", "BAYVIEW" ]
, [ "row-nkkn_8ers~i6wh", "00000000-0000-0000-4046-9299311FE050", 0, 1555747092, null, 1555748529, null, "{ }", "46", "2016-06-25T00:00:00", "BAYVIEW" ]
, [ "row-46xs-4g4s.eenc", "00000000-0000-0000-A7C2-BA6F61982D8E", 0, 1555747092, null, 1555748530, null, "{ }", "28", "2016-06-26T00:00:00", "BAYVIEW" ]
, [ "row-fu3k~zcsj~w2uu", "00000000-0000-0000-8567-2DE1A4043640", 0, 1555747092, null, 1555748519, null, "{ }", "33", "2016-06-27T00:00:00", "BAYVIEW" ]
, [ "row-8svd.yjtp.ad3d", "00000000-0000-0000-1814-74718AEDBB1F", 0, 1555747092, null, 1555748520, null, "{ }", "45", "2016-06-28T00:00:00", "BAYVIEW" ]
, [ "row-pqum_xp43~yggx", "00000000-0000-0000-99EF-C04C5C406B62", 0, 1555747092, null, 1555748522, null, "{ }", "34", "2016-06-29T00:00:00", "BAYVIEW" ]
, [ "row-xs7x.6b5d.y9ps", "00000000-0000-0000-A1C7-E388E82135C4", 0, 1555747092, null, 1555748529, null, "{ }", "46", "2016-06-30T00:00:00", "BAYVIEW" ]
, [ "row-dr9n~kqjk.qet2", "00000000-0000-0000-80D7-AD37A46D2B8C", 0, 1555747092, null, 1555748532, null, "{ }", "48", "2016-07-01T00:00:00", "BAYVIEW" ]
, [ "row-rwq2-eb45-dbk4", "00000000-0000-0000-B038-45478B6C3D76", 0, 1555747092, null, 1555748516, null, "{ }", "40", "2016-07-02T00:00:00", "BAYVIEW" ]
, [ "row-xwev-5kqd.2qb9", "00000000-0000-0000-8E95-92EC6AE95A3D", 0, 1555747092, null, 1555748531, null, "{ }", "32", "2016-07-03T00:00:00", "BAYVIEW" ]
, [ "row-yss3-97iz_9ifd", "00000000-0000-0000-70B7-4A3716130DB0", 0, 1555747092, null, 1555748519, null, "{ }", "30", "2016-07-04T00:00:00", "BAYVIEW" ]
, [ "row-y5ga_u6ay-numx", "00000000-0000-0000-8BFF-7C69A025A47A", 0, 1555747092, null, 1555748544, null, "{ }", "42", "2016-07-05T00:00:00", "BAYVIEW" ]
, [ "row-acnt_6skq.w6c9", "00000000-0000-0000-FD65-B4688E9B26B8", 0, 1555747092, null, 1555748532, null, "{ }", "30", "2016-07-06T00:00:00", "BAYVIEW" ]
, [ "row-htuh_piar_wpzi", "00000000-0000-0000-F8CE-90398AD14338", 0, 1555747092, null, 1555748530, null, "{ }", "31", "2016-07-07T00:00:00", "BAYVIEW" ]
, [ "row-62wc~s7m7~j5hw", "00000000-0000-0000-210B-6C98717FEFB5", 0, 1555747092, null, 1555748529, null, "{ }", "28", "2016-07-08T00:00:00", "BAYVIEW" ]
, [ "row-rg5v_vzhs_eqa9", "00000000-0000-0000-3AAA-A52B7AB348DF", 0, 1555747092, null, 1555748543, null, "{ }", "36", "2016-07-09T00:00:00", "BAYVIEW" ]
, [ "row-7484~ixpv~imtm", "00000000-0000-0000-1989-BFD7D6FE01EF", 0, 1555747092, null, 1555748519, null, "{ }", "37", "2016-07-10T00:00:00", "BAYVIEW" ]
, [ "row-3585_9qti-sqnd", "00000000-0000-0000-4F66-1A066098EF76", 0, 1555747092, null, 1555748541, null, "{ }", "49", "2016-07-11T00:00:00", "BAYVIEW" ]
, [ "row-mn2w~9jkt.hyyk", "00000000-0000-0000-6112-9183997E1AE4", 0, 1555747092, null, 1555748530, null, "{ }", "30", "2016-07-12T00:00:00", "BAYVIEW" ]
, [ "row-aix8-pe9m.7we5", "00000000-0000-0000-B9FE-296DEE296024", 0, 1555747092, null, 1555748530, null, "{ }", "33", "2016-07-13T00:00:00", "BAYVIEW" ]
, [ "row-spvh.2bhd-r5vq", "00000000-0000-0000-828D-F58EB09ACC79", 0, 1555747092, null, 1555748520, null, "{ }", "45", "2016-07-14T00:00:00", "BAYVIEW" ]
, [ "row-5kzt~9riz.vdhu", "00000000-0000-0000-DF4F-827E9D796854", 0, 1555747092, null, 1555748544, null, "{ }", "36", "2016-07-15T00:00:00", "BAYVIEW" ]
, [ "row-n2jv_25z3_njq8", "00000000-0000-0000-710D-192797FB4BBB", 0, 1555747092, null, 1555748520, null, "{ }", "33", "2016-07-16T00:00:00", "BAYVIEW" ]
, [ "row-aktv_dkup~i5gk", "00000000-0000-0000-CB38-D1C6A8AAB4FE", 0, 1555747092, null, 1555748536, null, "{ }", "23", "2016-07-17T00:00:00", "BAYVIEW" ]
, [ "row-ssd4~y4w6~j3i7", "00000000-0000-0000-6177-629D3C37FB18", 0, 1555747092, null, 1555748530, null, "{ }", "32", "2016-07-18T00:00:00", "BAYVIEW" ]
, [ "row-pkut.k35r.qaw9", "00000000-0000-0000-E376-DA821CD53D27", 0, 1555747092, null, 1555748532, null, "{ }", "37", "2016-07-19T00:00:00", "BAYVIEW" ]
, [ "row-57vw.6bm6_2fpf", "00000000-0000-0000-FD12-39FB6CFAC28C", 0, 1555747092, null, 1555748544, null, "{ }", "51", "2016-07-20T00:00:00", "BAYVIEW" ]
, [ "row-itmi.2vgb.pvjf", "00000000-0000-0000-7417-12C7489F945A", 0, 1555747092, null, 1555748540, null, "{ }", "48", "2016-07-21T00:00:00", "BAYVIEW" ]
, [ "row-zie3_ash4_cghk", "00000000-0000-0000-53BC-3048813871DA", 0, 1555747092, null, 1555748530, null, "{ }", "41", "2016-07-22T00:00:00", "BAYVIEW" ]
, [ "row-6mq3~grmf-s32q", "00000000-0000-0000-EE6A-F160EE8CF1AB", 0, 1555747092, null, 1555748530, null, "{ }", "39", "2016-07-23T00:00:00", "BAYVIEW" ]
, [ "row-ue8t~8j4j~6khs", "00000000-0000-0000-F89A-BEA90C375330", 0, 1555747092, null, 1555748532, null, "{ }", "40", "2016-07-24T00:00:00", "BAYVIEW" ]
, [ "row-eykh_89n3_rinx", "00000000-0000-0000-281B-2458615D3FA4", 0, 1555747092, null, 1555748532, null, "{ }", "32", "2016-07-25T00:00:00", "BAYVIEW" ]
, [ "row-whm8~zpdi~e435", "00000000-0000-0000-2FC0-B34BA01F538B", 0, 1555747092, null, 1555748532, null, "{ }", "51", "2016-07-26T00:00:00", "BAYVIEW" ]
, [ "row-mn98.pywg_4ua2", "00000000-0000-0000-117C-32639BCD604A", 0, 1555747092, null, 1555748544, null, "{ }", "38", "2016-07-27T00:00:00", "BAYVIEW" ]
, [ "row-efep_94j6.n97x", "00000000-0000-0000-055B-A4A9925E07D4", 0, 1555747092, null, 1555748521, null, "{ }", "33", "2016-07-28T00:00:00", "BAYVIEW" ]
, [ "row-ahv5.atju.cucg", "00000000-0000-0000-A780-1E7B14DB61FB", 0, 1555747092, null, 1555748533, null, "{ }", "39", "2016-07-29T00:00:00", "BAYVIEW" ]
, [ "row-pdrs.auiv.8wyw", "00000000-0000-0000-5076-E5D6C7D7BF8E", 0, 1555747092, null, 1555748531, null, "{ }", "50", "2016-07-30T00:00:00", "BAYVIEW" ]
, [ "row-ceqx.9p2e~zfk4", "00000000-0000-0000-E5B5-CB89DEDB3F88", 0, 1555747092, null, 1555748536, null, "{ }", "46", "2016-07-31T00:00:00", "BAYVIEW" ]
, [ "row-u8wk_fun4_d96b", "00000000-0000-0000-D543-7124845F41D1", 0, 1555747092, null, 1555748531, null, "{ }", "35", "2016-08-01T00:00:00", "BAYVIEW" ]
, [ "row-ujqg.sh3a-drpg", "00000000-0000-0000-33D1-8A493944FD92", 0, 1555747092, null, 1555748530, null, "{ }", "31", "2016-08-02T00:00:00", "BAYVIEW" ]
, [ "row-hazg~4v57~7wc5", "00000000-0000-0000-3F7E-1F561D7D1382", 0, 1555747092, null, 1555748539, null, "{ }", "26", "2016-08-03T00:00:00", "BAYVIEW" ]
, [ "row-2k3d-6rvu.mfpm", "00000000-0000-0000-9D90-353DAF8BA440", 0, 1555747092, null, 1555748530, null, "{ }", "26", "2016-08-04T00:00:00", "BAYVIEW" ]
, [ "row-t9fe-whq4.xvad", "00000000-0000-0000-D416-17F7EDEEFCA3", 0, 1555747092, null, 1555748531, null, "{ }", "47", "2016-08-05T00:00:00", "BAYVIEW" ]
, [ "row-jsfr~ne6d.ggye", "00000000-0000-0000-B288-4F1F076B63B6", 0, 1555747092, null, 1555748531, null, "{ }", "27", "2016-08-06T00:00:00", "BAYVIEW" ]
, [ "row-sve6.ss8y.uj48", "00000000-0000-0000-794A-F5F5DBA398E0", 0, 1555747092, null, 1555748521, null, "{ }", "36", "2016-08-07T00:00:00", "BAYVIEW" ]
, [ "row-qv2v~zqsj-fd3w", "00000000-0000-0000-05ED-7D0D70C27376", 0, 1555747092, null, 1555748522, null, "{ }", "19", "2016-08-08T00:00:00", "BAYVIEW" ]
, [ "row-g97p.4wn2_pygr", "00000000-0000-0000-F5DC-4A545117D976", 0, 1555747092, null, 1555748541, null, "{ }", "40", "2016-08-09T00:00:00", "BAYVIEW" ]
, [ "row-urrx_bgxq_n6jc", "00000000-0000-0000-EBE3-B10911B802E5", 0, 1555747092, null, 1555748522, null, "{ }", "51", "2016-08-10T00:00:00", "BAYVIEW" ]
, [ "row-vn2q-q2ud~8pm9", "00000000-0000-0000-1857-6C641244AE04", 0, 1555747092, null, 1555748544, null, "{ }", "30", "2016-08-11T00:00:00", "BAYVIEW" ]
, [ "row-pwwd~ifm7.uwbx", "00000000-0000-0000-6D90-5671E3E776E9", 0, 1555747092, null, 1555748531, null, "{ }", "31", "2016-08-12T00:00:00", "BAYVIEW" ]
, [ "row-6fff.qjp4~aism", "00000000-0000-0000-8796-36886D388CFB", 0, 1555747092, null, 1555748540, null, "{ }", "42", "2016-08-13T00:00:00", "BAYVIEW" ]
, [ "row-uxgs_77mm_6qi4", "00000000-0000-0000-A576-1146E235D566", 0, 1555747092, null, 1555748540, null, "{ }", "42", "2016-08-14T00:00:00", "BAYVIEW" ]
, [ "row-isqb_wqxs.2jdf", "00000000-0000-0000-45D8-3F390C44C436", 0, 1555747092, null, 1555748544, null, "{ }", "37", "2016-08-15T00:00:00", "BAYVIEW" ]
, [ "row-9s56-dvgk-vs74", "00000000-0000-0000-ED4B-7F6CB85743A6", 0, 1555747092, null, 1555748544, null, "{ }", "48", "2016-08-16T00:00:00", "BAYVIEW" ]
, [ "row-ftry-rkbg.uak7", "00000000-0000-0000-23CE-F1F0A69762CF", 0, 1555747092, null, 1555748531, null, "{ }", "34", "2016-08-17T00:00:00", "BAYVIEW" ]
, [ "row-h2c7~6uqb_hntp", "00000000-0000-0000-2B37-ADD30C782797", 0, 1555747092, null, 1555748532, null, "{ }", "31", "2016-08-18T00:00:00", "BAYVIEW" ]
, [ "row-iuha-823g.3t6v", "00000000-0000-0000-A24C-E3B1982F6583", 0, 1555747092, null, 1555748540, null, "{ }", "44", "2016-08-19T00:00:00", "BAYVIEW" ]
, [ "row-atev-xm3r~pdrd", "00000000-0000-0000-8D31-71D37E78C014", 0, 1555747092, null, 1555748518, null, "{ }", "27", "2016-08-20T00:00:00", "BAYVIEW" ]
, [ "row-qq72~invs~wnh4", "00000000-0000-0000-9FD5-EE5A3412C55B", 0, 1555747092, null, 1555748537, null, "{ }", "39", "2016-08-21T00:00:00", "BAYVIEW" ]
, [ "row-6qii~8p2f_rbwk", "00000000-0000-0000-835D-5D5FE1913C47", 0, 1555747092, null, 1555748532, null, "{ }", "49", "2016-08-22T00:00:00", "BAYVIEW" ]
, [ "row-caae-eht3-5u2d", "00000000-0000-0000-EF1F-BBBFC124FF1A", 0, 1555747092, null, 1555748522, null, "{ }", "35", "2016-08-23T00:00:00", "BAYVIEW" ]
, [ "row-jfdu_9grx~uuh6", "00000000-0000-0000-3FA1-619E0016590F", 0, 1555747092, null, 1555748533, null, "{ }", "40", "2016-08-24T00:00:00", "BAYVIEW" ]
, [ "row-w52d~rah2_xhfa", "00000000-0000-0000-71E9-44733B63B586", 0, 1555747092, null, 1555748540, null, "{ }", "42", "2016-08-25T00:00:00", "BAYVIEW" ]
, [ "row-cv3v-7vby_ev4r", "00000000-0000-0000-8E51-0BC6C75E3C52", 0, 1555747092, null, 1555748543, null, "{ }", "54", "2016-08-26T00:00:00", "BAYVIEW" ]
, [ "row-bvjk_ecrh.vcyt", "00000000-0000-0000-7A33-8F9A8B92BFF0", 0, 1555747092, null, 1555748543, null, "{ }", "44", "2016-08-27T00:00:00", "BAYVIEW" ]
, [ "row-nxp5_qmbt.xbu6", "00000000-0000-0000-97B5-B58BCC8BF5B6", 0, 1555747092, null, 1555748532, null, "{ }", "34", "2016-08-28T00:00:00", "BAYVIEW" ]
, [ "row-uwxs_88ii-x3nn", "00000000-0000-0000-A582-76595FB098D7", 0, 1555747092, null, 1555748532, null, "{ }", "50", "2016-08-29T00:00:00", "BAYVIEW" ]
, [ "row-cdnz.rfms-iytt", "00000000-0000-0000-423E-53A5A4F38B59", 0, 1555747092, null, 1555748544, null, "{ }", "37", "2016-08-30T00:00:00", "BAYVIEW" ]
, [ "row-vnb5-n2a9-vimz", "00000000-0000-0000-2FCD-25703BF81FE7", 0, 1555747092, null, 1555748532, null, "{ }", "52", "2016-08-31T00:00:00", "BAYVIEW" ]
, [ "row-fpua_2vgn~f9hx", "00000000-0000-0000-4BED-97CA4FB75579", 0, 1555747092, null, 1555748544, null, "{ }", "48", "2016-09-01T00:00:00", "BAYVIEW" ]
, [ "row-54kw_yd2x.9zcf", "00000000-0000-0000-584F-22E411CD715D", 0, 1555747092, null, 1555748540, null, "{ }", "55", "2016-09-02T00:00:00", "BAYVIEW" ]
, [ "row-6nca_k5un-y26y", "00000000-0000-0000-B4B9-4804625E1375", 0, 1555747092, null, 1555748531, null, "{ }", "35", "2016-09-03T00:00:00", "BAYVIEW" ]
, [ "row-67cu_ffgb_m27m", "00000000-0000-0000-990E-5DD7B40F3BFE", 0, 1555747092, null, 1555748521, null, "{ }", "34", "2016-09-04T00:00:00", "BAYVIEW" ]
, [ "row-cwbu_tr2s.yvx7", "00000000-0000-0000-9EED-F893D4E433F0", 0, 1555747092, null, 1555748518, null, "{ }", "43", "2016-09-05T00:00:00", "BAYVIEW" ]
, [ "row-yjda~fjq3-um7t", "00000000-0000-0000-8086-18B5D4E2199C", 0, 1555747092, null, 1555748543, null, "{ }", "38", "2016-09-06T00:00:00", "BAYVIEW" ]
, [ "row-4rvs-pq7r-twkh", "00000000-0000-0000-3379-B8C2E73CE016", 0, 1555747092, null, 1555748531, null, "{ }", "66", "2016-09-07T00:00:00", "BAYVIEW" ]
, [ "row-842t_nmbi.jvnh", "00000000-0000-0000-2B84-15971CF51A14", 0, 1555747092, null, 1555748531, null, "{ }", "45", "2016-09-08T00:00:00", "BAYVIEW" ]
, [ "row-6pj8.f6fs.d28a", "00000000-0000-0000-E456-939599629133", 0, 1555747092, null, 1555748532, null, "{ }", "41", "2016-09-09T00:00:00", "BAYVIEW" ]
, [ "row-mdw2_vypw-zgti", "00000000-0000-0000-0148-6D6BD7184DAE", 0, 1555747092, null, 1555748532, null, "{ }", "42", "2016-09-10T00:00:00", "BAYVIEW" ]
, [ "row-5uhn-8jus~9x6h", "00000000-0000-0000-7179-282DDF6D1959", 0, 1555747092, null, 1555748543, null, "{ }", "28", "2016-09-11T00:00:00", "BAYVIEW" ]
, [ "row-34rr~fnpc~a8vk", "00000000-0000-0000-9D7C-66E94A4B8B20", 0, 1555747092, null, 1555748529, null, "{ }", "42", "2016-09-12T00:00:00", "BAYVIEW" ]
, [ "row-85fn.82xx.7k34", "00000000-0000-0000-C382-0DD9F557558B", 0, 1555747092, null, 1555748529, null, "{ }", "29", "2016-09-13T00:00:00", "BAYVIEW" ]
, [ "row-ydpc-ys6i.hq3c", "00000000-0000-0000-CAF6-7A14D89F5739", 0, 1555747092, null, 1555748522, null, "{ }", "41", "2016-09-14T00:00:00", "BAYVIEW" ]
, [ "row-kytz~3kck~b2vu", "00000000-0000-0000-944B-DAE83B8458F1", 0, 1555747092, null, 1555748537, null, "{ }", "49", "2016-09-15T00:00:00", "BAYVIEW" ]
, [ "row-wgrq.mrun-g4fk", "00000000-0000-0000-0AFF-0C3C9F2D5F6B", 0, 1555747092, null, 1555748522, null, "{ }", "39", "2016-09-16T00:00:00", "BAYVIEW" ]
, [ "row-rc6a_ubzq-ycam", "00000000-0000-0000-3749-BA63732A9A40", 0, 1555747092, null, 1555748544, null, "{ }", "33", "2016-09-17T00:00:00", "BAYVIEW" ]
, [ "row-3rru~gpzu~yynk", "00000000-0000-0000-270D-E0A780A6B030", 0, 1555747092, null, 1555748533, null, "{ }", "40", "2016-09-18T00:00:00", "BAYVIEW" ]
, [ "row-vaej_8kwx~6pcv", "00000000-0000-0000-B84E-49DE1113E364", 0, 1555747092, null, 1555748536, null, "{ }", "31", "2016-09-19T00:00:00", "BAYVIEW" ]
, [ "row-2hg8-qrxv~ysew", "00000000-0000-0000-AC76-F80AE04FCF84", 0, 1555747092, null, 1555748536, null, "{ }", "47", "2016-09-20T00:00:00", "BAYVIEW" ]
, [ "row-62h3.twcp~6cmu", "00000000-0000-0000-DEEF-97BBEC2D8CC3", 0, 1555747092, null, 1555748522, null, "{ }", "39", "2016-09-21T00:00:00", "BAYVIEW" ]
, [ "row-aef7-msyr_ra38", "00000000-0000-0000-54A3-0A927C30989C", 0, 1555747092, null, 1555748526, null, "{ }", "44", "2016-09-22T00:00:00", "BAYVIEW" ]
, [ "row-ym26~89ey~bhbp", "00000000-0000-0000-4B59-449BCCEF298B", 0, 1555747092, null, 1555748533, null, "{ }", "40", "2016-09-23T00:00:00", "BAYVIEW" ]
, [ "row-6izj-3cam~qmcy", "00000000-0000-0000-E05B-B62433569241", 0, 1555747092, null, 1555748536, null, "{ }", "30", "2016-09-24T00:00:00", "BAYVIEW" ]
, [ "row-8ki7.uj6b_ahre", "00000000-0000-0000-16C8-607DB3E72CAB", 0, 1555747092, null, 1555748533, null, "{ }", "35", "2016-09-25T00:00:00", "BAYVIEW" ]
, [ "row-vhvd~rt4g~9cb4", "00000000-0000-0000-14C2-B66257140701", 0, 1555747092, null, 1555748543, null, "{ }", "43", "2016-09-26T00:00:00", "BAYVIEW" ]
, [ "row-iu3y_cbat.4tuz", "00000000-0000-0000-E7CD-50DFC09D621E", 0, 1555747092, null, 1555748537, null, "{ }", "56", "2016-09-27T00:00:00", "BAYVIEW" ]
, [ "row-jt6w_k7n5~b7y2", "00000000-0000-0000-E5C5-259F238372F8", 0, 1555747092, null, 1555748537, null, "{ }", "35", "2016-09-28T00:00:00", "BAYVIEW" ]
, [ "row-d5ei-7hf5_emdx", "00000000-0000-0000-E259-832DF5A79B45", 0, 1555747092, null, 1555748533, null, "{ }", "28", "2016-09-29T00:00:00", "BAYVIEW" ]
, [ "row-8hwj-gbfd~fy24", "00000000-0000-0000-08E1-BF45D85F672C", 0, 1555747092, null, 1555748534, null, "{ }", "38", "2016-09-30T00:00:00", "BAYVIEW" ]
, [ "row-7quh_sd59.up2e", "00000000-0000-0000-120F-501B6D9FDCB1", 0, 1555747092, null, 1555748532, null, "{ }", "40", "2016-10-01T00:00:00", "BAYVIEW" ]
, [ "row-9hvx.5jy2_z632", "00000000-0000-0000-0D26-896DA9A42D6B", 0, 1555747092, null, 1555748531, null, "{ }", "34", "2016-10-02T00:00:00", "BAYVIEW" ]
, [ "row-6sq9.himh_fnz7", "00000000-0000-0000-F5BA-488BCF959B6D", 0, 1555747092, null, 1555748537, null, "{ }", "45", "2016-10-03T00:00:00", "BAYVIEW" ]
, [ "row-3kvr_775k_jtpk", "00000000-0000-0000-47A0-1B157613869B", 0, 1555747092, null, 1555748529, null, "{ }", "35", "2016-10-04T00:00:00", "BAYVIEW" ]
, [ "row-jw5w-jb7q_jru9", "00000000-0000-0000-8A46-5BB1E77D0472", 0, 1555747092, null, 1555748531, null, "{ }", "42", "2016-10-05T00:00:00", "BAYVIEW" ]
, [ "row-699j-k9mm_bx7g", "00000000-0000-0000-0668-8AB5A0D5BFA6", 0, 1555747092, null, 1555748534, null, "{ }", "33", "2016-10-06T00:00:00", "BAYVIEW" ]
, [ "row-ajip-6wkp-sjx2", "00000000-0000-0000-2BE0-DE05FD19E292", 0, 1555747092, null, 1555748537, null, "{ }", "38", "2016-10-07T00:00:00", "BAYVIEW" ]
, [ "row-2cf7-qed4-47pg", "00000000-0000-0000-FEA3-F6AC841B300B", 0, 1555747092, null, 1555748525, null, "{ }", "44", "2016-10-08T00:00:00", "BAYVIEW" ]
, [ "row-3qgy_tmz2_jb5d", "00000000-0000-0000-2241-8C8CE9939347", 0, 1555747092, null, 1555748537, null, "{ }", "49", "2016-10-09T00:00:00", "BAYVIEW" ]
, [ "row-567y~9yet-v9mr", "00000000-0000-0000-F881-1FD50A678D01", 0, 1555747092, null, 1555748537, null, "{ }", "50", "2016-10-10T00:00:00", "BAYVIEW" ]
, [ "row-qbbz~5x67.hc3d", "00000000-0000-0000-539E-A1ACB72A56BD", 0, 1555747092, null, 1555748534, null, "{ }", "36", "2016-10-11T00:00:00", "BAYVIEW" ]
, [ "row-hx2a_unt2.eecy", "00000000-0000-0000-D673-635BD45B10CD", 0, 1555747092, null, 1555748532, null, "{ }", "47", "2016-10-12T00:00:00", "BAYVIEW" ]
, [ "row-k56d_cvbc-v85a", "00000000-0000-0000-8833-74F3D5DFC027", 0, 1555747092, null, 1555748537, null, "{ }", "35", "2016-10-13T00:00:00", "BAYVIEW" ]
, [ "row-h5tz~4vrq~r86g", "00000000-0000-0000-6CD8-529832D52ADC", 0, 1555747092, null, 1555748535, null, "{ }", "40", "2016-10-14T00:00:00", "BAYVIEW" ]
, [ "row-kbhz_btkv.72g9", "00000000-0000-0000-F4D2-BB9422BE35BF", 0, 1555747092, null, 1555748544, null, "{ }", "43", "2016-10-15T00:00:00", "BAYVIEW" ]
, [ "row-gszd.y8rb~zb37", "00000000-0000-0000-10E0-F27B7B358A19", 0, 1555747092, null, 1555748535, null, "{ }", "34", "2016-10-16T00:00:00", "BAYVIEW" ]
, [ "row-x3j6_u78d_hv85", "00000000-0000-0000-4916-6C4228612716", 0, 1555747092, null, 1555748524, null, "{ }", "43", "2016-10-17T00:00:00", "BAYVIEW" ]
, [ "row-ef5q_wep4.nffj", "00000000-0000-0000-C935-409C3E99B55B", 0, 1555747092, null, 1555748533, null, "{ }", "27", "2016-10-18T00:00:00", "BAYVIEW" ]
, [ "row-nuj8_f4tr.dy2w", "00000000-0000-0000-CBB3-849EA4D1AD23", 0, 1555747092, null, 1555748533, null, "{ }", "35", "2016-10-19T00:00:00", "BAYVIEW" ]
, [ "row-b6pn_23ns.unzn", "00000000-0000-0000-AB79-868C5FE073F9", 0, 1555747092, null, 1555748532, null, "{ }", "38", "2016-10-20T00:00:00", "BAYVIEW" ]
, [ "row-suie-rqe7-dcqa", "00000000-0000-0000-C13F-28A4E665FCB2", 0, 1555747092, null, 1555748535, null, "{ }", "35", "2016-10-21T00:00:00", "BAYVIEW" ]
, [ "row-qc53~qjws~ryit", "00000000-0000-0000-8C9B-597B83B961F4", 0, 1555747092, null, 1555748535, null, "{ }", "46", "2016-10-22T00:00:00", "BAYVIEW" ]
, [ "row-ga99-f2gu_bmp5", "00000000-0000-0000-C50E-1F9F7976E18D", 0, 1555747092, null, 1555748531, null, "{ }", "37", "2016-10-23T00:00:00", "BAYVIEW" ]
, [ "row-cvkk~a3h2~5izx", "00000000-0000-0000-4B1C-00F9014773C7", 0, 1555747092, null, 1555748533, null, "{ }", "44", "2016-10-24T00:00:00", "BAYVIEW" ]
, [ "row-y3f6-nesk~thva", "00000000-0000-0000-0BED-49B270785666", 0, 1555747092, null, 1555748531, null, "{ }", "32", "2016-10-25T00:00:00", "BAYVIEW" ]
, [ "row-s6gr-mrrh-bcth", "00000000-0000-0000-169F-845F18C49CC0", 0, 1555747092, null, 1555748536, null, "{ }", "34", "2016-10-26T00:00:00", "BAYVIEW" ]
, [ "row-i69u_iwcf_iibq", "00000000-0000-0000-9364-8FC9FBFB4007", 0, 1555747092, null, 1555748535, null, "{ }", "41", "2016-10-27T00:00:00", "BAYVIEW" ]
, [ "row-f3dt.zfqe~p9sm", "00000000-0000-0000-5340-5A067F76F846", 0, 1555747092, null, 1555748535, null, "{ }", "57", "2016-10-28T00:00:00", "BAYVIEW" ]
, [ "row-ccbg~tasn.muct", "00000000-0000-0000-8391-14E4D5E63AB0", 0, 1555747092, null, 1555748542, null, "{ }", "42", "2016-10-29T00:00:00", "BAYVIEW" ]
, [ "row-yiqj.rq5y.86d9", "00000000-0000-0000-7780-C1CE1492FCE9", 0, 1555747092, null, 1555748542, null, "{ }", "40", "2016-10-30T00:00:00", "BAYVIEW" ]
, [ "row-iwne~gwug.vjun", "00000000-0000-0000-DAB6-3CF870D08FB7", 0, 1555747092, null, 1555748535, null, "{ }", "34", "2016-10-31T00:00:00", "BAYVIEW" ]
, [ "row-g8ti~3bqj~4g8e", "00000000-0000-0000-49B6-0F2E163CC295", 0, 1555747092, null, 1555748544, null, "{ }", "37", "2016-11-01T00:00:00", "BAYVIEW" ]
, [ "row-cmq7-ppqr-hm9e", "00000000-0000-0000-C3B6-8369D2AD1113", 0, 1555747092, null, 1555748535, null, "{ }", "42", "2016-11-02T00:00:00", "BAYVIEW" ]
, [ "row-2qux.miwi-48bg", "00000000-0000-0000-6998-84A8B3DA47AF", 0, 1555747092, null, 1555748544, null, "{ }", "55", "2016-11-03T00:00:00", "BAYVIEW" ]
, [ "row-zuy9.sscy~75w6", "00000000-0000-0000-50FE-C5FB5CAE5257", 0, 1555747092, null, 1555748544, null, "{ }", "56", "2016-11-04T00:00:00", "BAYVIEW" ]
, [ "row-hwta-6bnq.2mgd", "00000000-0000-0000-8C4C-27E9DDE441E0", 0, 1555747092, null, 1555748532, null, "{ }", "43", "2016-11-05T00:00:00", "BAYVIEW" ]
, [ "row-hyhn_gd49~3u2n", "00000000-0000-0000-F5D8-51229A9AFDDF", 0, 1555747092, null, 1555748540, null, "{ }", "33", "2016-11-06T00:00:00", "BAYVIEW" ]
, [ "row-dme2.r4ge-qn93", "00000000-0000-0000-CC9F-DDCEA9192046", 0, 1555747092, null, 1555748535, null, "{ }", "32", "2016-11-07T00:00:00", "BAYVIEW" ]
, [ "row-h6vf-hdjr-qgs9", "00000000-0000-0000-A948-EB9EB8FF2D95", 0, 1555747092, null, 1555748536, null, "{ }", "34", "2016-11-08T00:00:00", "BAYVIEW" ]
, [ "row-798r-u852_d8fc", "00000000-0000-0000-2287-C4B6348A2A89", 0, 1555747092, null, 1555748544, null, "{ }", "41", "2016-11-09T00:00:00", "BAYVIEW" ]
, [ "row-4eua-bp2w_sk2h", "00000000-0000-0000-FC21-C1ABFCDE5B68", 0, 1555747092, null, 1555748534, null, "{ }", "34", "2016-11-10T00:00:00", "BAYVIEW" ]
, [ "row-e4bx~4h9z~psgi", "00000000-0000-0000-0D85-E71ECAA2777B", 0, 1555747092, null, 1555748543, null, "{ }", "41", "2016-11-11T00:00:00", "BAYVIEW" ]
, [ "row-sdma.gqbz_pd6y", "00000000-0000-0000-51C6-561FEF43FE71", 0, 1555747092, null, 1555748535, null, "{ }", "40", "2016-11-12T00:00:00", "BAYVIEW" ]
, [ "row-9r48.9n9f_fpwv", "00000000-0000-0000-7B58-54BB63F125D1", 0, 1555747092, null, 1555748533, null, "{ }", "31", "2016-11-13T00:00:00", "BAYVIEW" ]
, [ "row-n345_fq4f-pkhc", "00000000-0000-0000-2B69-CD84547A56EF", 0, 1555747092, null, 1555748535, null, "{ }", "32", "2016-11-14T00:00:00", "BAYVIEW" ]
, [ "row-hgg4~in73-evmr", "00000000-0000-0000-7AD2-A010E82437D4", 0, 1555747092, null, 1555748537, null, "{ }", "45", "2016-11-15T00:00:00", "BAYVIEW" ]
, [ "row-wvxv-h55b_rf3p", "00000000-0000-0000-F270-1BBF8CDEEA0C", 0, 1555747092, null, 1555748535, null, "{ }", "42", "2016-11-16T00:00:00", "BAYVIEW" ]
, [ "row-xh93_yzua-qbva", "00000000-0000-0000-AFB2-CEC096FDA1F1", 0, 1555747092, null, 1555748537, null, "{ }", "42", "2016-11-17T00:00:00", "BAYVIEW" ]
, [ "row-zwdw_y5r2.5xtc", "00000000-0000-0000-38A6-79E00C411E43", 0, 1555747092, null, 1555748536, null, "{ }", "45", "2016-11-18T00:00:00", "BAYVIEW" ]
, [ "row-8p6i_qcwt-3snh", "00000000-0000-0000-45F4-D6129DB4B5FE", 0, 1555747092, null, 1555748536, null, "{ }", "58", "2016-11-19T00:00:00", "BAYVIEW" ]
, [ "row-7ymf-umt9-qffk", "00000000-0000-0000-26E7-09B60B561071", 0, 1555747092, null, 1555748536, null, "{ }", "36", "2016-11-20T00:00:00", "BAYVIEW" ]
, [ "row-ewnh~ds4w-b5x5", "00000000-0000-0000-A424-0287F55F7E92", 0, 1555747092, null, 1555748529, null, "{ }", "52", "2016-11-21T00:00:00", "BAYVIEW" ]
, [ "row-rnfg_t4zi~ci7f", "00000000-0000-0000-6E3E-D0178DA79D6F", 0, 1555747092, null, 1555748536, null, "{ }", "35", "2016-11-22T00:00:00", "BAYVIEW" ]
, [ "row-equm-e3s7~y2tx", "00000000-0000-0000-BB28-CAC5A8501190", 0, 1555747092, null, 1555748529, null, "{ }", "39", "2016-11-23T00:00:00", "BAYVIEW" ]
, [ "row-mxz6~zvsk~s3yp", "00000000-0000-0000-A129-277024892341", 0, 1555747092, null, 1555748544, null, "{ }", "35", "2016-11-24T00:00:00", "BAYVIEW" ]
, [ "row-e49f~ihqp~ncer", "00000000-0000-0000-06A8-0009D6B72F41", 0, 1555747092, null, 1555748536, null, "{ }", "45", "2016-11-25T00:00:00", "BAYVIEW" ]
, [ "row-wqmn.c8gk-vmnx", "00000000-0000-0000-4760-19F887C90380", 0, 1555747092, null, 1555748544, null, "{ }", "40", "2016-11-26T00:00:00", "BAYVIEW" ]
, [ "row-ps3r_nvms.qk77", "00000000-0000-0000-AE24-949F1E184F25", 0, 1555747092, null, 1555748544, null, "{ }", "32", "2016-11-27T00:00:00", "BAYVIEW" ]
, [ "row-2uis_b94n.mmbk", "00000000-0000-0000-47A0-8DE79218010E", 0, 1555747092, null, 1555748533, null, "{ }", "37", "2016-11-28T00:00:00", "BAYVIEW" ]
, [ "row-cijq-vrhv.4tcu", "00000000-0000-0000-F7FD-61643E4F78DB", 0, 1555747092, null, 1555748535, null, "{ }", "48", "2016-11-29T00:00:00", "BAYVIEW" ]
, [ "row-65gy_6my3_2h5c", "00000000-0000-0000-959C-E0CAB8502826", 0, 1555747092, null, 1555748543, null, "{ }", "55", "2016-11-30T00:00:00", "BAYVIEW" ]
, [ "row-789h~xth9~k7be", "00000000-0000-0000-6E74-CEBBBB38DCAB", 0, 1555747092, null, 1555748537, null, "{ }", "29", "2016-12-01T00:00:00", "BAYVIEW" ]
, [ "row-6fen_ab98.g6pj", "00000000-0000-0000-6E76-4509A6AA1323", 0, 1555747092, null, 1555748533, null, "{ }", "38", "2016-12-02T00:00:00", "BAYVIEW" ]
, [ "row-g5vn-azcw-wm8s", "00000000-0000-0000-4A7C-664D7611A8FD", 0, 1555747092, null, 1555748524, null, "{ }", "40", "2016-12-03T00:00:00", "BAYVIEW" ]
, [ "row-ahbt_9xtc.pz8w", "00000000-0000-0000-5B45-BD4AD9D4BA4E", 0, 1555747092, null, 1555748536, null, "{ }", "34", "2016-12-04T00:00:00", "BAYVIEW" ]
, [ "row-38b5_tavb.55ev", "00000000-0000-0000-52BE-940EEB227A45", 0, 1555747092, null, 1555748529, null, "{ }", "52", "2016-12-05T00:00:00", "BAYVIEW" ]
, [ "row-7zer~zm5h~fxap", "00000000-0000-0000-8748-D804678BB49A", 0, 1555747092, null, 1555748537, null, "{ }", "43", "2016-12-06T00:00:00", "BAYVIEW" ]
, [ "row-urq2.3jrn-y4m8", "00000000-0000-0000-6780-E781A6A7D216", 0, 1555747092, null, 1555748526, null, "{ }", "29", "2016-12-07T00:00:00", "BAYVIEW" ]
, [ "row-kudp~x7qb_zppd", "00000000-0000-0000-F702-8229139B1AFE", 0, 1555747092, null, 1555748524, null, "{ }", "45", "2016-12-08T00:00:00", "BAYVIEW" ]
, [ "row-246q-s6kx_cmpi", "00000000-0000-0000-05A8-A1ADE338E1B9", 0, 1555747092, null, 1555748526, null, "{ }", "34", "2016-12-09T00:00:00", "BAYVIEW" ]
, [ "row-mptq~c3tz.h56s", "00000000-0000-0000-8314-89B53936443F", 0, 1555747092, null, 1555748537, null, "{ }", "26", "2016-12-10T00:00:00", "BAYVIEW" ]
, [ "row-9i85~qnbn-v5ck", "00000000-0000-0000-0427-6F52D5994AE1", 0, 1555747092, null, 1555748525, null, "{ }", "32", "2016-12-11T00:00:00", "BAYVIEW" ]
, [ "row-56bn~sz4n.giz6", "00000000-0000-0000-5597-15F5214DB5CB", 0, 1555747092, null, 1555748527, null, "{ }", "40", "2016-12-12T00:00:00", "BAYVIEW" ]
, [ "row-d4pb-jwwe.8zwj", "00000000-0000-0000-6832-3EBAA3A0F4B7", 0, 1555747092, null, 1555748537, null, "{ }", "39", "2016-12-13T00:00:00", "BAYVIEW" ]
, [ "row-6bm4.a9jp.hsw3", "00000000-0000-0000-89C9-A59BCA8768D4", 0, 1555747092, null, 1555748544, null, "{ }", "49", "2016-12-14T00:00:00", "BAYVIEW" ]
, [ "row-ued5~486k~3gvt", "00000000-0000-0000-28BF-6B02BD296395", 0, 1555747092, null, 1555748529, null, "{ }", "44", "2016-12-15T00:00:00", "BAYVIEW" ]
, [ "row-2ci4~ebb6-9d4v", "00000000-0000-0000-5FA4-80D72B4F58DF", 0, 1555747092, null, 1555748537, null, "{ }", "42", "2016-12-16T00:00:00", "BAYVIEW" ]
, [ "row-xakq~kmuy_3xgc", "00000000-0000-0000-B8E9-4B5B8AF45E04", 0, 1555747092, null, 1555748527, null, "{ }", "37", "2016-12-17T00:00:00", "BAYVIEW" ]
, [ "row-828c_r3n4.m267", "00000000-0000-0000-D708-2B5B95A5D910", 0, 1555747092, null, 1555748540, null, "{ }", "25", "2016-12-18T00:00:00", "BAYVIEW" ]
, [ "row-qp7s_43rm~vw4q", "00000000-0000-0000-903F-F4AC192EAE3E", 0, 1555747092, null, 1555748541, null, "{ }", "28", "2016-12-19T00:00:00", "BAYVIEW" ]
, [ "row-zzh8~s2qf~55ke", "00000000-0000-0000-D413-25A60FAC2C86", 0, 1555747092, null, 1555748528, null, "{ }", "44", "2016-12-20T00:00:00", "BAYVIEW" ]
, [ "row-xhxs.nrf8.v3ic", "00000000-0000-0000-A1A3-03D1C6AE6021", 0, 1555747092, null, 1555748537, null, "{ }", "32", "2016-12-21T00:00:00", "BAYVIEW" ]
, [ "row-zr23-tpyn-cykq", "00000000-0000-0000-CECD-969CBF9AA26E", 0, 1555747092, null, 1555748536, null, "{ }", "51", "2016-12-22T00:00:00", "BAYVIEW" ]
, [ "row-y45i.vehf_y4py", "00000000-0000-0000-174A-3CC40A44E91A", 0, 1555747092, null, 1555748540, null, "{ }", "41", "2016-12-23T00:00:00", "BAYVIEW" ]
, [ "row-gu6f.73bt_254p", "00000000-0000-0000-CA1F-AE06FA22F6B8", 0, 1555747092, null, 1555748526, null, "{ }", "22", "2016-12-24T00:00:00", "BAYVIEW" ]
, [ "row-7tqy_vskg_xuc4", "00000000-0000-0000-B6CE-FF4A70AA04E7", 0, 1555747092, null, 1555748540, null, "{ }", "25", "2016-12-25T00:00:00", "BAYVIEW" ]
, [ "row-8eu9_d2s9-ugnc", "00000000-0000-0000-BBF9-B7111D7EAC5F", 0, 1555747092, null, 1555748535, null, "{ }", "25", "2016-12-26T00:00:00", "BAYVIEW" ]
, [ "row-na4f_t2xd.sk4d", "00000000-0000-0000-5EF8-33F1794F9383", 0, 1555747092, null, 1555748540, null, "{ }", "52", "2016-12-27T00:00:00", "BAYVIEW" ]
, [ "row-gmnm-zgs3_n33r", "00000000-0000-0000-FC2A-961F26C67954", 0, 1555747092, null, 1555748536, null, "{ }", "43", "2016-12-28T00:00:00", "BAYVIEW" ]
, [ "row-dyy8.jxrk~ksaq", "00000000-0000-0000-5310-8BF64D154594", 0, 1555747092, null, 1555748529, null, "{ }", "38", "2016-12-29T00:00:00", "BAYVIEW" ]
, [ "row-e786.j4fh-7mq3", "00000000-0000-0000-F635-EFAC6069112A", 0, 1555747092, null, 1555748544, null, "{ }", "30", "2016-12-30T00:00:00", "BAYVIEW" ]
, [ "row-wq9d.bhyv-pub4", "00000000-0000-0000-59ED-1CF3B23DA718", 0, 1555747092, null, 1555748540, null, "{ }", "36", "2016-12-31T00:00:00", "BAYVIEW" ]
, [ "row-cegn-qaqa_7yui", "00000000-0000-0000-6397-C7E38F73C705", 0, 1555747092, null, 1555748522, null, "{ }", "85", "2016-01-01T00:00:00", "CENTRAL" ]
, [ "row-vh73-s9bp-8sng", "00000000-0000-0000-B0F7-BFBC7A88F406", 0, 1555747092, null, 1555748528, null, "{ }", "42", "2016-01-02T00:00:00", "CENTRAL" ]
, [ "row-pe9i.4spn-epp8", "00000000-0000-0000-1A64-464BE852399C", 0, 1555747092, null, 1555748544, null, "{ }", "45", "2016-01-03T00:00:00", "CENTRAL" ]
, [ "row-q6kg-emw3.kcgd", "00000000-0000-0000-E6F2-1757FDA46547", 0, 1555747092, null, 1555748524, null, "{ }", "42", "2016-01-04T00:00:00", "CENTRAL" ]
, [ "row-hu35_se9v~95k6", "00000000-0000-0000-071E-AE086356BC62", 0, 1555747092, null, 1555748532, null, "{ }", "44", "2016-01-05T00:00:00", "CENTRAL" ]
, [ "row-jphd-cm9w_zzhx", "00000000-0000-0000-7723-3A4F167DA788", 0, 1555747092, null, 1555748518, null, "{ }", "53", "2016-01-06T00:00:00", "CENTRAL" ]
, [ "row-gcqn-jdqs~w34h", "00000000-0000-0000-116A-ACD813F917DC", 0, 1555747092, null, 1555748518, null, "{ }", "50", "2016-01-07T00:00:00", "CENTRAL" ]
, [ "row-phsc-w5nq~ba8d", "00000000-0000-0000-A908-61DEDD31C18F", 0, 1555747092, null, 1555748519, null, "{ }", "56", "2016-01-08T00:00:00", "CENTRAL" ]
, [ "row-mpnh-i3n6.tbr6", "00000000-0000-0000-BDF0-AB34C077097E", 0, 1555747092, null, 1555748528, null, "{ }", "50", "2016-01-09T00:00:00", "CENTRAL" ]
, [ "row-vb9m.kh46~cytr", "00000000-0000-0000-B6B2-4591D7F2B9AE", 0, 1555747092, null, 1555748536, null, "{ }", "38", "2016-01-10T00:00:00", "CENTRAL" ]
, [ "row-5zqi.iqqu-fbn4", "00000000-0000-0000-75B7-A4704EF3F2FE", 0, 1555747092, null, 1555748536, null, "{ }", "46", "2016-01-11T00:00:00", "CENTRAL" ]
, [ "row-acwu~r4sg_8uxu", "00000000-0000-0000-8B92-B358E060DB3F", 0, 1555747092, null, 1555748536, null, "{ }", "45", "2016-01-12T00:00:00", "CENTRAL" ]
, [ "row-ebzi_edqh_spve", "00000000-0000-0000-DFE8-03D3EC053811", 0, 1555747092, null, 1555748536, null, "{ }", "40", "2016-01-13T00:00:00", "CENTRAL" ]
, [ "row-9u6s.9r5p.ca2g", "00000000-0000-0000-486B-3549036D5788", 0, 1555747092, null, 1555748538, null, "{ }", "42", "2016-01-14T00:00:00", "CENTRAL" ]
, [ "row-davn.kstg~isab", "00000000-0000-0000-7D0A-4CA1C20FC43E", 0, 1555747092, null, 1555748524, null, "{ }", "61", "2016-01-15T00:00:00", "CENTRAL" ]
, [ "row-fbe8_jdax-dg54", "00000000-0000-0000-254C-0D59540A0B40", 0, 1555747092, null, 1555748522, null, "{ }", "57", "2016-01-16T00:00:00", "CENTRAL" ]
, [ "row-9etv.4v99_wyk5", "00000000-0000-0000-9E18-49441469AA67", 0, 1555747092, null, 1555748524, null, "{ }", "51", "2016-01-17T00:00:00", "CENTRAL" ]
, [ "row-egp4-mbfs~icnc", "00000000-0000-0000-B3B5-89A54216F811", 0, 1555747092, null, 1555748523, null, "{ }", "45", "2016-01-18T00:00:00", "CENTRAL" ]
, [ "row-fm3b_rwxx-z8ef", "00000000-0000-0000-8B3E-A691BD695A29", 0, 1555747092, null, 1555748523, null, "{ }", "37", "2016-01-19T00:00:00", "CENTRAL" ]
, [ "row-hicz.ueij~9fma", "00000000-0000-0000-29F5-4DEEB7BB6D56", 0, 1555747092, null, 1555748526, null, "{ }", "60", "2016-01-20T00:00:00", "CENTRAL" ]
, [ "row-xkvw.grsw_xaya", "00000000-0000-0000-1442-29A22CA06C6A", 0, 1555747092, null, 1555748528, null, "{ }", "50", "2016-01-21T00:00:00", "CENTRAL" ]
, [ "row-wrbw-m2zq_su3x", "00000000-0000-0000-AC78-A159DF75D694", 0, 1555747092, null, 1555748528, null, "{ }", "62", "2016-01-22T00:00:00", "CENTRAL" ]
, [ "row-kwns-n7yc_qt2z", "00000000-0000-0000-8404-57D20D0A1267", 0, 1555747092, null, 1555748528, null, "{ }", "58", "2016-01-23T00:00:00", "CENTRAL" ]
, [ "row-c8j3.jsej_9egp", "00000000-0000-0000-3A43-A50AC8929414", 0, 1555747092, null, 1555748524, null, "{ }", "52", "2016-01-24T00:00:00", "CENTRAL" ]
, [ "row-sszs.8yns_de3t", "00000000-0000-0000-FC95-F776AAA2B702", 0, 1555747092, null, 1555748544, null, "{ }", "33", "2016-01-25T00:00:00", "CENTRAL" ]
, [ "row-8hf5_fx28_npbw", "00000000-0000-0000-8E59-D229AAB7CAF7", 0, 1555747092, null, 1555748544, null, "{ }", "38", "2016-01-26T00:00:00", "CENTRAL" ]
, [ "row-fwb2~4dff.wpwa", "00000000-0000-0000-2491-C1EE2287CB03", 0, 1555747092, null, 1555748520, null, "{ }", "51", "2016-01-27T00:00:00", "CENTRAL" ]
, [ "row-ds2h.57aq_d594", "00000000-0000-0000-CA76-5B3F97D72119", 0, 1555747092, null, 1555748535, null, "{ }", "42", "2016-01-28T00:00:00", "CENTRAL" ]
, [ "row-ht23-4gty~43xg", "00000000-0000-0000-C900-83580A1A503C", 0, 1555747092, null, 1555748529, null, "{ }", "43", "2016-01-29T00:00:00", "CENTRAL" ]
, [ "row-rvk7-kd9k~9u78", "00000000-0000-0000-C98C-E13A44AF6052", 0, 1555747092, null, 1555748544, null, "{ }", "57", "2016-01-30T00:00:00", "CENTRAL" ]
, [ "row-c88a_dh9f~ye72", "00000000-0000-0000-A8E0-DC70CF7970C6", 0, 1555747092, null, 1555748517, null, "{ }", "62", "2016-01-31T00:00:00", "CENTRAL" ]
, [ "row-eteu~raub.qebh", "00000000-0000-0000-CCF4-11C3C39297B5", 0, 1555747092, null, 1555748538, null, "{ }", "69", "2016-02-01T00:00:00", "CENTRAL" ]
, [ "row-7v6t.zii3_zafa", "00000000-0000-0000-79D8-DE5DE2F5EE55", 0, 1555747092, null, 1555748520, null, "{ }", "48", "2016-02-02T00:00:00", "CENTRAL" ]
, [ "row-tyis~66si-km99", "00000000-0000-0000-D049-9ABA03852E21", 0, 1555747092, null, 1555748520, null, "{ }", "57", "2016-02-03T00:00:00", "CENTRAL" ]
, [ "row-7u39.vwf9-mnvc", "00000000-0000-0000-3FE5-6A0B24A57598", 0, 1555747092, null, 1555748535, null, "{ }", "36", "2016-02-04T00:00:00", "CENTRAL" ]
, [ "row-y4qz_gy2w-au8c", "00000000-0000-0000-48AF-929C8E85DC2D", 0, 1555747092, null, 1555748534, null, "{ }", "39", "2016-02-05T00:00:00", "CENTRAL" ]
, [ "row-gvkb~i8zb~6ism", "00000000-0000-0000-F8C4-65786F93A18E", 0, 1555747092, null, 1555748524, null, "{ }", "60", "2016-02-06T00:00:00", "CENTRAL" ]
, [ "row-2if3.mwtt-96pq", "00000000-0000-0000-9C52-9D2D1A793FA5", 0, 1555747092, null, 1555748530, null, "{ }", "49", "2016-02-07T00:00:00", "CENTRAL" ]
, [ "row-b3dw.t2qf_ybeq", "00000000-0000-0000-CDA6-419E56D99052", 0, 1555747092, null, 1555748518, null, "{ }", "59", "2016-02-08T00:00:00", "CENTRAL" ]
, [ "row-mzvd_66hu~cbjg", "00000000-0000-0000-9BCD-7E26206CA139", 0, 1555747092, null, 1555748524, null, "{ }", "47", "2016-02-09T00:00:00", "CENTRAL" ]
, [ "row-rtr9_xnb9.bsxq", "00000000-0000-0000-793C-3F2DF9F2471D", 0, 1555747092, null, 1555748544, null, "{ }", "52", "2016-02-10T00:00:00", "CENTRAL" ]
, [ "row-ddn6-mrdn.f9gz", "00000000-0000-0000-75FC-A8004710BD38", 0, 1555747092, null, 1555748531, null, "{ }", "40", "2016-02-11T00:00:00", "CENTRAL" ]
, [ "row-trec~vzve~umid", "00000000-0000-0000-6500-39F47D9709D9", 0, 1555747092, null, 1555748537, null, "{ }", "57", "2016-02-12T00:00:00", "CENTRAL" ]
, [ "row-34j8~rriz-gdp8", "00000000-0000-0000-C271-8697BA784559", 0, 1555747092, null, 1555748537, null, "{ }", "51", "2016-02-13T00:00:00", "CENTRAL" ]
, [ "row-kcca-9eh8~4tk3", "00000000-0000-0000-BBFA-F3AAEE7FACA6", 0, 1555747092, null, 1555748528, null, "{ }", "38", "2016-02-14T00:00:00", "CENTRAL" ]
, [ "row-my4e.njzn~ubqv", "00000000-0000-0000-6F44-887E3CBE2213", 0, 1555747092, null, 1555748530, null, "{ }", "43", "2016-02-15T00:00:00", "CENTRAL" ]
, [ "row-j7wj_25u8-ymbb", "00000000-0000-0000-3668-8B93A5C7BEB8", 0, 1555747092, null, 1555748537, null, "{ }", "41", "2016-02-16T00:00:00", "CENTRAL" ]
, [ "row-uhn4_kkde.2cjf", "00000000-0000-0000-64FD-7D26805769ED", 0, 1555747092, null, 1555748537, null, "{ }", "47", "2016-02-17T00:00:00", "CENTRAL" ]
, [ "row-hsva.npp5-2zf6", "00000000-0000-0000-2CAD-C8E40BCE498A", 0, 1555747092, null, 1555748527, null, "{ }", "35", "2016-02-18T00:00:00", "CENTRAL" ]
, [ "row-5sk4.6v4v_z2as", "00000000-0000-0000-FFF8-4EF35CEC12A0", 0, 1555747092, null, 1555748515, null, "{ }", "52", "2016-02-19T00:00:00", "CENTRAL" ]
, [ "row-je9n-m6rx-f8cq", "00000000-0000-0000-143A-21E4CABECE11", 0, 1555747092, null, 1555748539, null, "{ }", "62", "2016-02-20T00:00:00", "CENTRAL" ]
, [ "row-r2c4~33tk~x66t", "00000000-0000-0000-8A7B-A4F42094671A", 0, 1555747092, null, 1555748509, null, "{ }", "41", "2016-02-21T00:00:00", "CENTRAL" ]
, [ "row-yzdn~i8nt_q3tt", "00000000-0000-0000-F6AF-2EA331B42FC8", 0, 1555747092, null, 1555748544, null, "{ }", "43", "2016-02-22T00:00:00", "CENTRAL" ]
, [ "row-jk3m~vkbq-ekt3", "00000000-0000-0000-1E71-BEE24ED4B2F9", 0, 1555747092, null, 1555748524, null, "{ }", "39", "2016-02-23T00:00:00", "CENTRAL" ]
, [ "row-csn5~uzgh~gzh2", "00000000-0000-0000-8ADE-2C32DC819E5F", 0, 1555747092, null, 1555748524, null, "{ }", "37", "2016-02-24T00:00:00", "CENTRAL" ]
, [ "row-ynpk.pfqw-xka9", "00000000-0000-0000-2DEF-4FF2826FD681", 0, 1555747092, null, 1555748525, null, "{ }", "43", "2016-02-25T00:00:00", "CENTRAL" ]
, [ "row-mpgk_9t9n~yzhy", "00000000-0000-0000-A144-F56124A19F25", 0, 1555747092, null, 1555748516, null, "{ }", "50", "2016-02-26T00:00:00", "CENTRAL" ]
, [ "row-b72f~ui5n.tgux", "00000000-0000-0000-D497-09CD0EC319F1", 0, 1555747092, null, 1555748544, null, "{ }", "67", "2016-02-27T00:00:00", "CENTRAL" ]
, [ "row-hyu8~2xqc.tuge", "00000000-0000-0000-A0F8-80C8971BD877", 0, 1555747092, null, 1555748525, null, "{ }", "32", "2016-02-28T00:00:00", "CENTRAL" ]
, [ "row-n694_7zt3_59nn", "00000000-0000-0000-0AC8-5608F4C95647", 0, 1555747092, null, 1555748544, null, "{ }", "45", "2016-02-29T00:00:00", "CENTRAL" ]
, [ "row-h65f-xvs7_h36i", "00000000-0000-0000-574B-6A1D748EBD02", 0, 1555747092, null, 1555748529, null, "{ }", "50", "2016-03-01T00:00:00", "CENTRAL" ]
, [ "row-nvjw~eiks_f4js", "00000000-0000-0000-7939-D7763F673540", 0, 1555747092, null, 1555748524, null, "{ }", "54", "2016-03-02T00:00:00", "CENTRAL" ]
, [ "row-5ks2.iytk~zmgn", "00000000-0000-0000-6039-912458A74906", 0, 1555747092, null, 1555748508, null, "{ }", "67", "2016-03-03T00:00:00", "CENTRAL" ]
, [ "row-3tet-bhzi~jv7d", "00000000-0000-0000-1689-A1783C059F73", 0, 1555747092, null, 1555748538, null, "{ }", "55", "2016-03-04T00:00:00", "CENTRAL" ]
, [ "row-3czq_wfy2~it2y", "00000000-0000-0000-CC56-A842F8BF0189", 0, 1555747092, null, 1555748535, null, "{ }", "46", "2016-03-05T00:00:00", "CENTRAL" ]
, [ "row-re5n~hpk5~md5g", "00000000-0000-0000-CC67-DEC962F0D7B8", 0, 1555747092, null, 1555748527, null, "{ }", "46", "2016-03-06T00:00:00", "CENTRAL" ]
, [ "row-tdgc-2v5y~3mvr", "00000000-0000-0000-F4BF-2EAEE80EA31B", 0, 1555747092, null, 1555748540, null, "{ }", "40", "2016-03-07T00:00:00", "CENTRAL" ]
, [ "row-tpbz-nfy2~n2rw", "00000000-0000-0000-E871-2BFF9B7629F4", 0, 1555747092, null, 1555748534, null, "{ }", "46", "2016-03-08T00:00:00", "CENTRAL" ]
, [ "row-rycx~z95v~ufg9", "00000000-0000-0000-ED16-CF18F3828951", 0, 1555747092, null, 1555748531, null, "{ }", "28", "2016-03-09T00:00:00", "CENTRAL" ]
, [ "row-y2jx.y5hv.546g", "00000000-0000-0000-E076-6B22694DB996", 0, 1555747092, null, 1555748531, null, "{ }", "27", "2016-03-10T00:00:00", "CENTRAL" ]
, [ "row-7nyi-2x7a-88n4", "00000000-0000-0000-47A2-BF2E9A644FDD", 0, 1555747092, null, 1555748535, null, "{ }", "48", "2016-03-11T00:00:00", "CENTRAL" ]
, [ "row-k23e~c3wa_zhaj", "00000000-0000-0000-A85B-2B21FE9570AB", 0, 1555747092, null, 1555748535, null, "{ }", "45", "2016-03-12T00:00:00", "CENTRAL" ]
, [ "row-t578-sc8d.fk2m", "00000000-0000-0000-C378-5007FD5CE57B", 0, 1555747092, null, 1555748527, null, "{ }", "28", "2016-03-13T00:00:00", "CENTRAL" ]
, [ "row-ib8f.tj2u-izfw", "00000000-0000-0000-87D9-F915BE97346B", 0, 1555747092, null, 1555748535, null, "{ }", "45", "2016-03-14T00:00:00", "CENTRAL" ]
, [ "row-fq2v.b5jm-vu6m", "00000000-0000-0000-720D-521108CB6180", 0, 1555747092, null, 1555748526, null, "{ }", "31", "2016-03-15T00:00:00", "CENTRAL" ]
, [ "row-7vg2_yjei_bh5d", "00000000-0000-0000-0727-9EC8510997C0", 0, 1555747092, null, 1555748498, null, "{ }", "41", "2016-03-16T00:00:00", "CENTRAL" ]
, [ "row-2r3e_nt9s-w84h", "00000000-0000-0000-45BF-7431FCAA60F2", 0, 1555747092, null, 1555748544, null, "{ }", "55", "2016-03-17T00:00:00", "CENTRAL" ]
, [ "row-bv9t~378v~w5nd", "00000000-0000-0000-00A0-9157C2A82150", 0, 1555747092, null, 1555748537, null, "{ }", "57", "2016-03-18T00:00:00", "CENTRAL" ]
, [ "row-kgae_6qtz-5fa3", "00000000-0000-0000-D836-90BD5A060E2B", 0, 1555747092, null, 1555748529, null, "{ }", "43", "2016-03-19T00:00:00", "CENTRAL" ]
, [ "row-pjaa_jxkg_x4b3", "00000000-0000-0000-6A76-64288EE6C3B2", 0, 1555747092, null, 1555748527, null, "{ }", "43", "2016-03-20T00:00:00", "CENTRAL" ]
, [ "row-jhkb~8q6s~vx88", "00000000-0000-0000-5808-96FDCB560E7B", 0, 1555747092, null, 1555748544, null, "{ }", "44", "2016-03-21T00:00:00", "CENTRAL" ]
, [ "row-rxzx_4t9a-s8f4", "00000000-0000-0000-F194-55B080BFF9A9", 0, 1555747092, null, 1555748526, null, "{ }", "28", "2016-03-22T00:00:00", "CENTRAL" ]
, [ "row-uvmz_7aj6.yrxb", "00000000-0000-0000-883E-7DDBD1C45CB7", 0, 1555747092, null, 1555748526, null, "{ }", "44", "2016-03-23T00:00:00", "CENTRAL" ]
, [ "row-ycr2_zssu~j6sf", "00000000-0000-0000-2B70-F8F15892E3AA", 0, 1555747092, null, 1555748500, null, "{ }", "33", "2016-03-24T00:00:00", "CENTRAL" ]
, [ "row-sew6.wjga~7cjq", "00000000-0000-0000-59D7-6093C2C3BCBA", 0, 1555747092, null, 1555748544, null, "{ }", "52", "2016-03-25T00:00:00", "CENTRAL" ]
, [ "row-5juw_282m-u2ks", "00000000-0000-0000-7FCB-00D1B129510C", 0, 1555747092, null, 1555748541, null, "{ }", "50", "2016-03-26T00:00:00", "CENTRAL" ]
, [ "row-gwgy~mm8a.657b", "00000000-0000-0000-D058-887C2F5F83F6", 0, 1555747092, null, 1555748539, null, "{ }", "35", "2016-03-27T00:00:00", "CENTRAL" ]
, [ "row-tj5j~ufzx.v6nt", "00000000-0000-0000-3B8D-5C4F3CBC39D8", 0, 1555747092, null, 1555748512, null, "{ }", "34", "2016-03-28T00:00:00", "CENTRAL" ]
, [ "row-gmea-shxg~gam7", "00000000-0000-0000-1B08-E54F0B705246", 0, 1555747092, null, 1555748539, null, "{ }", "50", "2016-03-29T00:00:00", "CENTRAL" ]
, [ "row-hudv-k97s.58dd", "00000000-0000-0000-8BAB-4CAA1FF5249A", 0, 1555747092, null, 1555748539, null, "{ }", "43", "2016-03-30T00:00:00", "CENTRAL" ]
, [ "row-j9k2~qyut.ec3s", "00000000-0000-0000-9371-363FC7F09343", 0, 1555747092, null, 1555748526, null, "{ }", "50", "2016-03-31T00:00:00", "CENTRAL" ]
, [ "row-hguy-un2c.8dfj", "00000000-0000-0000-8C79-0BB1AB3EE288", 0, 1555747092, null, 1555748531, null, "{ }", "66", "2016-04-01T00:00:00", "CENTRAL" ]
, [ "row-ufpx_t97h~5f7v", "00000000-0000-0000-5C63-A48C0D1EF988", 0, 1555747092, null, 1555748544, null, "{ }", "56", "2016-04-02T00:00:00", "CENTRAL" ]
, [ "row-42t3~cmuf~8rp8", "00000000-0000-0000-13E5-69BC507A22F7", 0, 1555747092, null, 1555748539, null, "{ }", "44", "2016-04-03T00:00:00", "CENTRAL" ]
, [ "row-piy9~j8dn.pkuv", "00000000-0000-0000-DB18-27166F233F45", 0, 1555747092, null, 1555748538, null, "{ }", "48", "2016-04-04T00:00:00", "CENTRAL" ]
, [ "row-b7w7_mrmt.8h6u", "00000000-0000-0000-599E-9EA16E683E60", 0, 1555747092, null, 1555748544, null, "{ }", "44", "2016-04-05T00:00:00", "CENTRAL" ]
, [ "row-x7yk-3ksp.77a2", "00000000-0000-0000-BAB0-7DFF2C983881", 0, 1555747092, null, 1555748531, null, "{ }", "35", "2016-04-06T00:00:00", "CENTRAL" ]
, [ "row-de3p.9zex~frvq", "00000000-0000-0000-6E62-17037EF619C3", 0, 1555747092, null, 1555748526, null, "{ }", "60", "2016-04-07T00:00:00", "CENTRAL" ]
, [ "row-3v8v-buys~86f2", "00000000-0000-0000-0849-CA227A466C10", 0, 1555747092, null, 1555748521, null, "{ }", "32", "2016-04-08T00:00:00", "CENTRAL" ]
, [ "row-cfki.846h.t35a", "00000000-0000-0000-FE1F-9E0A399DD74E", 0, 1555747092, null, 1555748528, null, "{ }", "48", "2016-04-09T00:00:00", "CENTRAL" ]
, [ "row-qax7_8b3q-ixhc", "00000000-0000-0000-D6BD-D84D25DE264C", 0, 1555747092, null, 1555748526, null, "{ }", "31", "2016-04-10T00:00:00", "CENTRAL" ]
, [ "row-ffz7_b9r8_dkfa", "00000000-0000-0000-56EC-E1969F545374", 0, 1555747092, null, 1555748529, null, "{ }", "41", "2016-04-11T00:00:00", "CENTRAL" ]
, [ "row-395b~imfy.ifrs", "00000000-0000-0000-D6DA-12A60CCE5AD2", 0, 1555747092, null, 1555748529, null, "{ }", "41", "2016-04-12T00:00:00", "CENTRAL" ]
, [ "row-gbi3_jipq~kswe", "00000000-0000-0000-E827-27F567D17F05", 0, 1555747092, null, 1555748530, null, "{ }", "42", "2016-04-13T00:00:00", "CENTRAL" ]
, [ "row-ye2u_7t7x_qjcv", "00000000-0000-0000-9BD9-8A7831862A33", 0, 1555747092, null, 1555748544, null, "{ }", "35", "2016-04-14T00:00:00", "CENTRAL" ]
, [ "row-a28j_gs84-pkn5", "00000000-0000-0000-900A-00FDB50B9809", 0, 1555747092, null, 1555748544, null, "{ }", "46", "2016-04-15T00:00:00", "CENTRAL" ]
, [ "row-5d8x_munk~u7vm", "00000000-0000-0000-0F7D-D449C03CEA17", 0, 1555747092, null, 1555748544, null, "{ }", "41", "2016-04-16T00:00:00", "CENTRAL" ]
, [ "row-vsaz_j78d.4vzb", "00000000-0000-0000-C9AA-8710A1BE381D", 0, 1555747092, null, 1555748544, null, "{ }", "45", "2016-04-17T00:00:00", "CENTRAL" ]
, [ "row-7btp-n7f8-vg63", "00000000-0000-0000-6BD2-C4032DB929C4", 0, 1555747092, null, 1555748531, null, "{ }", "49", "2016-04-18T00:00:00", "CENTRAL" ]
, [ "row-si6t~pr7w.via7", "00000000-0000-0000-66E7-4C5590B2C2F9", 0, 1555747092, null, 1555748528, null, "{ }", "54", "2016-04-19T00:00:00", "CENTRAL" ]
, [ "row-ixfm-ju8p~driw", "00000000-0000-0000-A010-907F73620358", 0, 1555747092, null, 1555748531, null, "{ }", "35", "2016-04-20T00:00:00", "CENTRAL" ]
, [ "row-zye2-c37p~tipi", "00000000-0000-0000-9794-289D807420B1", 0, 1555747092, null, 1555748544, null, "{ }", "57", "2016-04-21T00:00:00", "CENTRAL" ]
, [ "row-mrfx-jn3w-9wgt", "00000000-0000-0000-91F3-D11FD50FDBCB", 0, 1555747092, null, 1555748538, null, "{ }", "44", "2016-04-22T00:00:00", "CENTRAL" ]
, [ "row-qnwx~bneq-3w93", "00000000-0000-0000-5E37-D8D7EBB9B60C", 0, 1555747092, null, 1555748523, null, "{ }", "56", "2016-04-23T00:00:00", "CENTRAL" ]
, [ "row-7vuu.k9pb~gz78", "00000000-0000-0000-F197-ABC6A9E9AB80", 0, 1555747092, null, 1555748528, null, "{ }", "45", "2016-04-24T00:00:00", "CENTRAL" ]
, [ "row-u3up-aq3c.7rjk", "00000000-0000-0000-6007-9237BA963212", 0, 1555747092, null, 1555748528, null, "{ }", "55", "2016-04-25T00:00:00", "CENTRAL" ]
, [ "row-phcc_tw8t~r3ck", "00000000-0000-0000-AE5C-1BEEC212AEB3", 0, 1555747092, null, 1555748538, null, "{ }", "41", "2016-04-26T00:00:00", "CENTRAL" ]
, [ "row-2cpw_na4j-8uvg", "00000000-0000-0000-175E-F14E815623E7", 0, 1555747092, null, 1555748523, null, "{ }", "44", "2016-04-27T00:00:00", "CENTRAL" ]
, [ "row-ywah.2uhf~vzxk", "00000000-0000-0000-41C9-FABBBE5377B0", 0, 1555747092, null, 1555748531, null, "{ }", "42", "2016-04-28T00:00:00", "CENTRAL" ]
, [ "row-mz7v.mn96~5jgj", "00000000-0000-0000-C551-E5E3410148B7", 0, 1555747092, null, 1555748518, null, "{ }", "49", "2016-04-29T00:00:00", "CENTRAL" ]
, [ "row-vwpy~rkdb.c4cr", "00000000-0000-0000-2C4D-DDFBE34751C2", 0, 1555747092, null, 1555748530, null, "{ }", "68", "2016-04-30T00:00:00", "CENTRAL" ]
, [ "row-pi3f_isie-56ju", "00000000-0000-0000-5F9F-63BB9F55BE0B", 0, 1555747092, null, 1555748523, null, "{ }", "55", "2016-05-01T00:00:00", "CENTRAL" ]
, [ "row-gnmv~y9hd~6j39", "00000000-0000-0000-B170-CBD07AB01461", 0, 1555747092, null, 1555748530, null, "{ }", "51", "2016-05-02T00:00:00", "CENTRAL" ]
, [ "row-fw2s.mdib~tywb", "00000000-0000-0000-D7A0-1D7B3FD2BCAB", 0, 1555747092, null, 1555748529, null, "{ }", "31", "2016-05-03T00:00:00", "CENTRAL" ]
, [ "row-te7j-ctz8~8msm", "00000000-0000-0000-B02F-43F6E12528CF", 0, 1555747092, null, 1555748529, null, "{ }", "40", "2016-05-04T00:00:00", "CENTRAL" ]
, [ "row-kwbt.52y7.jmzj", "00000000-0000-0000-4D20-FC089B658B4A", 0, 1555747092, null, 1555748544, null, "{ }", "41", "2016-05-05T00:00:00", "CENTRAL" ]
, [ "row-gyxh~432p.ea28", "00000000-0000-0000-0109-2762C7A497CA", 0, 1555747092, null, 1555748544, null, "{ }", "53", "2016-05-06T00:00:00", "CENTRAL" ]
, [ "row-t2zu-dq9g-s6ms", "00000000-0000-0000-F9A1-00C2EB4B5CF0", 0, 1555747092, null, 1555748544, null, "{ }", "57", "2016-05-07T00:00:00", "CENTRAL" ]
, [ "row-rm3e.i2hb-rw9t", "00000000-0000-0000-43FF-0E74E0101BB9", 0, 1555747092, null, 1555748524, null, "{ }", "37", "2016-05-08T00:00:00", "CENTRAL" ]
, [ "row-yyf3_dgsc~wdfc", "00000000-0000-0000-2E11-15B8FEB0C089", 0, 1555747092, null, 1555748529, null, "{ }", "24", "2016-05-09T00:00:00", "CENTRAL" ]
, [ "row-gps7~thr3~kzwg", "00000000-0000-0000-61B6-D167DBC96A70", 0, 1555747092, null, 1555748522, null, "{ }", "53", "2016-05-10T00:00:00", "CENTRAL" ]
, [ "row-gjpq~9pv8_ndkc", "00000000-0000-0000-F4E1-4FB21279BFE7", 0, 1555747092, null, 1555748529, null, "{ }", "57", "2016-05-11T00:00:00", "CENTRAL" ]
, [ "row-37wd-gxip.u4zg", "00000000-0000-0000-877B-FB77F4CB6EE4", 0, 1555747092, null, 1555748515, null, "{ }", "34", "2016-05-12T00:00:00", "CENTRAL" ]
, [ "row-w864_w84m-sxmi", "00000000-0000-0000-D630-F5643D783F71", 0, 1555747092, null, 1555748544, null, "{ }", "41", "2016-05-13T00:00:00", "CENTRAL" ]
, [ "row-zwcf_w9u5~vivf", "00000000-0000-0000-33A2-BB7AD6CBE37D", 0, 1555747092, null, 1555748532, null, "{ }", "46", "2016-05-14T00:00:00", "CENTRAL" ]
, [ "row-fn43~tbmj.i422", "00000000-0000-0000-48C2-B82EFE8EC622", 0, 1555747092, null, 1555748527, null, "{ }", "64", "2016-05-15T00:00:00", "CENTRAL" ]
, [ "row-skih-dfzm.yu9h", "00000000-0000-0000-F24C-D8994E32BCAA", 0, 1555747092, null, 1555748544, null, "{ }", "59", "2016-05-16T00:00:00", "CENTRAL" ]
, [ "row-eype-6jvy~3stv", "00000000-0000-0000-79EF-F403CE2B0839", 0, 1555747092, null, 1555748529, null, "{ }", "48", "2016-05-17T00:00:00", "CENTRAL" ]
, [ "row-384j-yi4r~t54t", "00000000-0000-0000-8B26-18356DE6375F", 0, 1555747092, null, 1555748531, null, "{ }", "50", "2016-05-18T00:00:00", "CENTRAL" ]
, [ "row-a336_djt3-3p4m", "00000000-0000-0000-66DC-9C35DC202E56", 0, 1555747092, null, 1555748544, null, "{ }", "25", "2016-05-19T00:00:00", "CENTRAL" ]
, [ "row-yt5m_ps8w-ijnz", "00000000-0000-0000-E6A2-CCA5F08D1D11", 0, 1555747092, null, 1555748521, null, "{ }", "38", "2016-05-20T00:00:00", "CENTRAL" ]
, [ "row-mgi8~e67e-xm9z", "00000000-0000-0000-5192-3B77157FE334", 0, 1555747092, null, 1555748544, null, "{ }", "47", "2016-05-21T00:00:00", "CENTRAL" ]