forked from siit-video-turing-test/3rd-year
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.jsonl
More file actions
1369 lines (1369 loc) · 89 KB
/
example.jsonl
File metadata and controls
1369 lines (1369 loc) · 89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
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
{"seconds": 1.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 2.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 3.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 4.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 5.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 6.0, "type": "location", "class": "cafe"}
{"seconds": 7.0, "type": "location", "class": "cafe"}
{"seconds": 8.0, "type": "location", "class": "cafe"}
{"seconds": 9.0, "type": "location", "class": "restaurant"}
{"seconds": 10.0, "type": "location", "class": "cafe"}
{"seconds": 11.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 12.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 13.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 14.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 15.0, "type": "location", "class": "cafe"}
{"seconds": 16.0, "type": "location", "class": "cafe"}
{"seconds": 17.0, "type": "location", "class": "cafe"}
{"seconds": 18.0, "type": "location", "class": "road-none-none"}
{"seconds": 19.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 20.0, "type": "location", "class": "none"}
{"seconds": 21.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 22.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 23.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 24.0, "type": "location", "class": "home-livingroom-none"}
{"seconds": 25.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 26.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 27.0, "type": "location", "class": "none"}
{"seconds": 28.0, "type": "location", "class": "none"}
{"seconds": 29.0, "type": "location", "class": "none"}
{"seconds": 30.0, "type": "location", "class": "none"}
{"seconds": 31.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 32.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 33.0, "type": "location", "class": "restaurant"}
{"seconds": 34.0, "type": "location", "class": "cafe"}
{"seconds": 35.0, "type": "location", "class": "cafe"}
{"seconds": 36.0, "type": "location", "class": "cafe"}
{"seconds": 37.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 38.0, "type": "location", "class": "hospital"}
{"seconds": 39.0, "type": "location", "class": "hospital"}
{"seconds": 40.0, "type": "location", "class": "hospital"}
{"seconds": 41.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 42.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 43.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 44.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 45.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 46.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 47.0, "type": "location", "class": "cafe"}
{"seconds": 48.0, "type": "location", "class": "cafe"}
{"seconds": 49.0, "type": "location", "class": "restaurant"}
{"seconds": 50.0, "type": "location", "class": "restaurant"}
{"seconds": 51.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 52.0, "type": "location", "class": "restaurant"}
{"seconds": 53.0, "type": "location", "class": "restaurant"}
{"seconds": 54.0, "type": "location", "class": "cafe"}
{"seconds": 55.0, "type": "location", "class": "cafe"}
{"seconds": 56.0, "type": "location", "class": "road-none-none"}
{"seconds": 57.0, "type": "location", "class": "hospital"}
{"seconds": 58.0, "type": "location", "class": "hospital"}
{"seconds": 59.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 60.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 61.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 62.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 63.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 64.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 65.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 66.0, "type": "location", "class": "hospital"}
{"seconds": 67.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 68.0, "type": "location", "class": "cafe"}
{"seconds": 69.0, "type": "location", "class": "restaurant"}
{"seconds": 70.0, "type": "location", "class": "restaurant"}
{"seconds": 71.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 72.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 73.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 74.0, "type": "location", "class": "cafe"}
{"seconds": 75.0, "type": "location", "class": "cafe"}
{"seconds": 76.0, "type": "location", "class": "restaurant"}
{"seconds": 77.0, "type": "location", "class": "hospital"}
{"seconds": 78.0, "type": "location", "class": "hospital"}
{"seconds": 79.0, "type": "location", "class": "hospital"}
{"seconds": 80.0, "type": "location", "class": "hospital"}
{"seconds": 81.0, "type": "location", "class": "restaurant"}
{"seconds": 82.0, "type": "location", "class": "restaurant"}
{"seconds": 83.0, "type": "location", "class": "cafe"}
{"seconds": 84.0, "type": "location", "class": "cafe"}
{"seconds": 85.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 86.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 87.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 88.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 89.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 90.0, "type": "location", "class": "none"}
{"seconds": 91.0, "type": "location", "class": "home-livingroom-Ross"}
{"seconds": 92.0, "type": "location", "class": "home-livingroom-Ross"}
{"seconds": 93.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 94.0, "type": "location", "class": "none"}
{"seconds": 95.0, "type": "location", "class": "none"}
{"seconds": 96.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 97.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 98.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 99.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 100.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 101.0, "type": "location", "class": "office-none-none"}
{"seconds": 102.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 103.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 104.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 105.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 106.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 107.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 108.0, "type": "location", "class": "none"}
{"seconds": 109.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 110.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 111.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 112.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 113.0, "type": "location", "class": "hospital"}
{"seconds": 114.0, "type": "location", "class": "hospital"}
{"seconds": 115.0, "type": "location", "class": "road-none-none"}
{"seconds": 116.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 117.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 118.0, "type": "location", "class": "restaurant"}
{"seconds": 119.0, "type": "location", "class": "restaurant"}
{"seconds": 120.0, "type": "location", "class": "restaurant"}
{"seconds": 121.0, "type": "location", "class": "home-kitchen-none"}
{"seconds": 122.0, "type": "location", "class": "cafe"}
{"seconds": 123.0, "type": "location", "class": "cafe"}
{"seconds": 124.0, "type": "location", "class": "cafe"}
{"seconds": 125.0, "type": "location", "class": "road-none-none"}
{"seconds": 126.0, "type": "location", "class": "none"}
{"seconds": 127.0, "type": "location", "class": "none"}
{"seconds": 128.0, "type": "location", "class": "none"}
{"seconds": 129.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 130.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 131.0, "type": "location", "class": "hospital"}
{"seconds": 132.0, "type": "location", "class": "hospital"}
{"seconds": 133.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 134.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 135.0, "type": "location", "class": "road-none-none"}
{"seconds": 136.0, "type": "location", "class": "none"}
{"seconds": 137.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 138.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 139.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 140.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 141.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 142.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 143.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 144.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 145.0, "type": "location", "class": "none"}
{"seconds": 146.0, "type": "location", "class": "none"}
{"seconds": 147.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 148.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 149.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 150.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 151.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 152.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 153.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 154.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 155.0, "type": "location", "class": "cafe"}
{"seconds": 156.0, "type": "location", "class": "none"}
{"seconds": 157.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 158.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 159.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 160.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 161.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 162.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 163.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 164.0, "type": "location", "class": "hospital"}
{"seconds": 165.0, "type": "location", "class": "none"}
{"seconds": 166.0, "type": "location", "class": "cafe"}
{"seconds": 167.0, "type": "location", "class": "cafe"}
{"seconds": 168.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 169.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 170.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 171.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 172.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 173.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 174.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 175.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 176.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 177.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 178.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 179.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 180.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 181.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 182.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 183.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 184.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 185.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 186.0, "type": "location", "class": "none"}
{"seconds": 187.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 188.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 189.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 190.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 191.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 192.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 193.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 194.0, "type": "location", "class": "cafe"}
{"seconds": 195.0, "type": "location", "class": "cafe"}
{"seconds": 196.0, "type": "location", "class": "none"}
{"seconds": 197.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 198.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 199.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 200.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 201.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 202.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 203.0, "type": "location", "class": "hospital"}
{"seconds": 204.0, "type": "location", "class": "hospital"}
{"seconds": 205.0, "type": "location", "class": "none"}
{"seconds": 206.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 207.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 208.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 209.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 210.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 211.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 212.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 213.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 214.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 215.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 216.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 217.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 218.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 219.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 220.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 221.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 222.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 223.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 224.0, "type": "location", "class": "hospital"}
{"seconds": 225.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 226.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 227.0, "type": "location", "class": "cafe"}
{"seconds": 228.0, "type": "location", "class": "cafe"}
{"seconds": 229.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 230.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 231.0, "type": "location", "class": "office-none-none"}
{"seconds": 232.0, "type": "location", "class": "office-none-none"}
{"seconds": 233.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 234.0, "type": "location", "class": "road-none-none"}
{"seconds": 235.0, "type": "location", "class": "road-none-none"}
{"seconds": 236.0, "type": "location", "class": "road-none-none"}
{"seconds": 237.0, "type": "location", "class": "cafe"}
{"seconds": 238.0, "type": "location", "class": "cafe"}
{"seconds": 239.0, "type": "location", "class": "cafe"}
{"seconds": 240.0, "type": "location", "class": "cafe"}
{"seconds": 241.0, "type": "location", "class": "restaurant"}
{"seconds": 242.0, "type": "location", "class": "restaurant"}
{"seconds": 243.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 244.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 245.0, "type": "location", "class": "hospital"}
{"seconds": 246.0, "type": "location", "class": "hospital"}
{"seconds": 247.0, "type": "location", "class": "road-none-none"}
{"seconds": 248.0, "type": "location", "class": "road-none-none"}
{"seconds": 249.0, "type": "location", "class": "cafe"}
{"seconds": 250.0, "type": "location", "class": "cafe"}
{"seconds": 251.0, "type": "location", "class": "hospital"}
{"seconds": 252.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 253.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 254.0, "type": "location", "class": "cafe"}
{"seconds": 255.0, "type": "location", "class": "cafe"}
{"seconds": 256.0, "type": "location", "class": "restaurant"}
{"seconds": 257.0, "type": "location", "class": "restaurant"}
{"seconds": 258.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 259.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 260.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 261.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 262.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 263.0, "type": "location", "class": "restaurant"}
{"seconds": 264.0, "type": "location", "class": "restaurant"}
{"seconds": 265.0, "type": "location", "class": "none"}
{"seconds": 266.0, "type": "location", "class": "none"}
{"seconds": 267.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 268.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 269.0, "type": "location", "class": "cafe"}
{"seconds": 270.0, "type": "location", "class": "cafe"}
{"seconds": 271.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 272.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 273.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 274.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 275.0, "type": "location", "class": "home-livingroom-none"}
{"seconds": 276.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 277.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 278.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 279.0, "type": "location", "class": "office-none-none"}
{"seconds": 280.0, "type": "location", "class": "office-none-none"}
{"seconds": 281.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 282.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 283.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 284.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 285.0, "type": "location", "class": "restaurant"}
{"seconds": 286.0, "type": "location", "class": "cafe"}
{"seconds": 287.0, "type": "location", "class": "cafe"}
{"seconds": 288.0, "type": "location", "class": "road-none-none"}
{"seconds": 289.0, "type": "location", "class": "road-none-none"}
{"seconds": 290.0, "type": "location", "class": "road-none-none"}
{"seconds": 291.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 292.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 293.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 294.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 295.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 296.0, "type": "location", "class": "cafe"}
{"seconds": 297.0, "type": "location", "class": "cafe"}
{"seconds": 298.0, "type": "location", "class": "restaurant"}
{"seconds": 299.0, "type": "location", "class": "restaurant"}
{"seconds": 300.0, "type": "location", "class": "restaurant"}
{"seconds": 301.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 302.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 303.0, "type": "location", "class": "cafe"}
{"seconds": 304.0, "type": "location", "class": "cafe"}
{"seconds": 305.0, "type": "location", "class": "cafe"}
{"seconds": 306.0, "type": "location", "class": "restaurant"}
{"seconds": 307.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 308.0, "type": "location", "class": "none"}
{"seconds": 309.0, "type": "location", "class": "none"}
{"seconds": 310.0, "type": "location", "class": "none"}
{"seconds": 311.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 312.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 313.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 314.0, "type": "location", "class": "cafe"}
{"seconds": 315.0, "type": "location", "class": "cafe"}
{"seconds": 316.0, "type": "location", "class": "cafe"}
{"seconds": 317.0, "type": "location", "class": "cafe"}
{"seconds": 318.0, "type": "location", "class": "home-livingroom-none"}
{"seconds": 319.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 320.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 321.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 322.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 323.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 324.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 325.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 326.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 327.0, "type": "location", "class": "home-livingroom-none"}
{"seconds": 328.0, "type": "location", "class": "home-livingroom-none"}
{"seconds": 329.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 330.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 331.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 332.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 333.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 334.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 335.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 336.0, "type": "location", "class": "cafe"}
{"seconds": 337.0, "type": "location", "class": "cafe"}
{"seconds": 338.0, "type": "location", "class": "restaurant"}
{"seconds": 339.0, "type": "location", "class": "none"}
{"seconds": 340.0, "type": "location", "class": "none"}
{"seconds": 341.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 342.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 343.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 344.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 345.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 346.0, "type": "location", "class": "road-none-none"}
{"seconds": 347.0, "type": "location", "class": "hospital"}
{"seconds": 348.0, "type": "location", "class": "road-none-none"}
{"seconds": 349.0, "type": "location", "class": "cafe"}
{"seconds": 350.0, "type": "location", "class": "cafe"}
{"seconds": 351.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 352.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 353.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 354.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 355.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 356.0, "type": "location", "class": "cafe"}
{"seconds": 357.0, "type": "location", "class": "cafe"}
{"seconds": 358.0, "type": "location", "class": "restaurant"}
{"seconds": 359.0, "type": "location", "class": "hospital"}
{"seconds": 360.0, "type": "location", "class": "hospital"}
{"seconds": 361.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 362.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 363.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 364.0, "type": "location", "class": "cafe"}
{"seconds": 365.0, "type": "location", "class": "cafe"}
{"seconds": 366.0, "type": "location", "class": "cafe"}
{"seconds": 367.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 368.0, "type": "location", "class": "restaurant"}
{"seconds": 369.0, "type": "location", "class": "restaurant"}
{"seconds": 370.0, "type": "location", "class": "restaurant"}
{"seconds": 371.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 372.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 373.0, "type": "location", "class": "restaurant"}
{"seconds": 374.0, "type": "location", "class": "restaurant"}
{"seconds": 375.0, "type": "location", "class": "restaurant"}
{"seconds": 376.0, "type": "location", "class": "cafe"}
{"seconds": 377.0, "type": "location", "class": "cafe"}
{"seconds": 378.0, "type": "location", "class": "road-none-none"}
{"seconds": 379.0, "type": "location", "class": "road-none-none"}
{"seconds": 380.0, "type": "location", "class": "road-none-none"}
{"seconds": 381.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 382.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 383.0, "type": "location", "class": "restaurant"}
{"seconds": 384.0, "type": "location", "class": "restaurant"}
{"seconds": 385.0, "type": "location", "class": "restaurant"}
{"seconds": 386.0, "type": "location", "class": "cafe"}
{"seconds": 387.0, "type": "location", "class": "hospital"}
{"seconds": 388.0, "type": "location", "class": "road-none-none"}
{"seconds": 389.0, "type": "location", "class": "road-none-none"}
{"seconds": 390.0, "type": "location", "class": "road-none-none"}
{"seconds": 391.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 392.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 393.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 394.0, "type": "location", "class": "cafe"}
{"seconds": 395.0, "type": "location", "class": "cafe"}
{"seconds": 396.0, "type": "location", "class": "none"}
{"seconds": 397.0, "type": "location", "class": "none"}
{"seconds": 398.0, "type": "location", "class": "road-none-none"}
{"seconds": 399.0, "type": "location", "class": "road-none-none"}
{"seconds": 400.0, "type": "location", "class": "road-none-none"}
{"seconds": 401.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 402.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 403.0, "type": "location", "class": "restaurant"}
{"seconds": 404.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 405.0, "type": "location", "class": "none"}
{"seconds": 406.0, "type": "location", "class": "none"}
{"seconds": 407.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 408.0, "type": "location", "class": "cafe"}
{"seconds": 409.0, "type": "location", "class": "cafe"}
{"seconds": 410.0, "type": "location", "class": "cafe"}
{"seconds": 411.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 412.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 413.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 414.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 415.0, "type": "location", "class": "cafe"}
{"seconds": 416.0, "type": "location", "class": "cafe"}
{"seconds": 417.0, "type": "location", "class": "cafe"}
{"seconds": 418.0, "type": "location", "class": "road-none-none"}
{"seconds": 419.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 420.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 421.0, "type": "location", "class": "home-livingroom-Ross"}
{"seconds": 422.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 423.0, "type": "location", "class": "home-kitchen-none"}
{"seconds": 424.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 425.0, "type": "location", "class": "cafe"}
{"seconds": 426.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 427.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 428.0, "type": "location", "class": "hospital"}
{"seconds": 429.0, "type": "location", "class": "hospital"}
{"seconds": 430.0, "type": "location", "class": "hospital"}
{"seconds": 431.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 432.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 433.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 434.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 435.0, "type": "location", "class": "none"}
{"seconds": 436.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 437.0, "type": "location", "class": "restaurant"}
{"seconds": 438.0, "type": "location", "class": "restaurant"}
{"seconds": 439.0, "type": "location", "class": "restaurant"}
{"seconds": 440.0, "type": "location", "class": "restaurant"}
{"seconds": 441.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 442.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 443.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 444.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 445.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 446.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 447.0, "type": "location", "class": "restaurant"}
{"seconds": 448.0, "type": "location", "class": "restaurant"}
{"seconds": 449.0, "type": "location", "class": "restaurant"}
{"seconds": 450.0, "type": "location", "class": "restaurant"}
{"seconds": 451.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 452.0, "type": "location", "class": "restaurant"}
{"seconds": 453.0, "type": "location", "class": "restaurant"}
{"seconds": 454.0, "type": "location", "class": "restaurant"}
{"seconds": 455.0, "type": "location", "class": "road-none-none"}
{"seconds": 456.0, "type": "location", "class": "road-none-none"}
{"seconds": 457.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 458.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 459.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 460.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 461.0, "type": "location", "class": "hospital"}
{"seconds": 462.0, "type": "location", "class": "restaurant"}
{"seconds": 463.0, "type": "location", "class": "restaurant"}
{"seconds": 464.0, "type": "location", "class": "restaurant"}
{"seconds": 465.0, "type": "location", "class": "home-livingroom-none"}
{"seconds": 466.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 467.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 468.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 469.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 470.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 471.0, "type": "location", "class": "restaurant"}
{"seconds": 472.0, "type": "location", "class": "restaurant"}
{"seconds": 473.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 474.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 475.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 476.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 477.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 478.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 479.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 480.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 481.0, "type": "location", "class": "restaurant"}
{"seconds": 482.0, "type": "location", "class": "restaurant"}
{"seconds": 483.0, "type": "location", "class": "cafe"}
{"seconds": 484.0, "type": "location", "class": "none"}
{"seconds": 485.0, "type": "location", "class": "none"}
{"seconds": 486.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 487.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 488.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 489.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 490.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 491.0, "type": "location", "class": "restaurant"}
{"seconds": 492.0, "type": "location", "class": "restaurant"}
{"seconds": 493.0, "type": "location", "class": "restaurant"}
{"seconds": 494.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 495.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 496.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 497.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 498.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 499.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 500.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 501.0, "type": "location", "class": "restaurant"}
{"seconds": 502.0, "type": "location", "class": "restaurant"}
{"seconds": 503.0, "type": "location", "class": "cafe"}
{"seconds": 504.0, "type": "location", "class": "cafe"}
{"seconds": 505.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 506.0, "type": "location", "class": "home-kitchen-none"}
{"seconds": 507.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 508.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 509.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 510.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 511.0, "type": "location", "class": "hospital"}
{"seconds": 512.0, "type": "location", "class": "restaurant"}
{"seconds": 513.0, "type": "location", "class": "cafe"}
{"seconds": 514.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 515.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 516.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 517.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 518.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 519.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 520.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 521.0, "type": "location", "class": "office-none-none"}
{"seconds": 522.0, "type": "location", "class": "office-none-none"}
{"seconds": 523.0, "type": "location", "class": "none"}
{"seconds": 524.0, "type": "location", "class": "none"}
{"seconds": 525.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 526.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 527.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 528.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 529.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 530.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 531.0, "type": "location", "class": "office-none-none"}
{"seconds": 532.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 533.0, "type": "location", "class": "restaurant"}
{"seconds": 534.0, "type": "location", "class": "restaurant"}
{"seconds": 535.0, "type": "location", "class": "home-kitchen-none"}
{"seconds": 536.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 537.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 538.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 539.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 540.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 541.0, "type": "location", "class": "restaurant"}
{"seconds": 542.0, "type": "location", "class": "restaurant"}
{"seconds": 543.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 544.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 545.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 546.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 547.0, "type": "location", "class": "none"}
{"seconds": 548.0, "type": "location", "class": "none"}
{"seconds": 549.0, "type": "location", "class": "none"}
{"seconds": 550.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 551.0, "type": "location", "class": "hospital"}
{"seconds": 552.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 553.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 554.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 555.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 556.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 557.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 558.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 559.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 560.0, "type": "location", "class": "cafe"}
{"seconds": 561.0, "type": "location", "class": "office-none-none"}
{"seconds": 562.0, "type": "location", "class": "office-none-none"}
{"seconds": 563.0, "type": "location", "class": "hospital"}
{"seconds": 564.0, "type": "location", "class": "hospital"}
{"seconds": 565.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 566.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 567.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 568.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 569.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 570.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 571.0, "type": "location", "class": "hospital"}
{"seconds": 572.0, "type": "location", "class": "restaurant"}
{"seconds": 573.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 574.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 575.0, "type": "location", "class": "home-livingroom-none"}
{"seconds": 576.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 577.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 578.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 579.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 580.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 581.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 582.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 583.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 584.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 585.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 586.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 587.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 588.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 589.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 590.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 591.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 592.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 593.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 594.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 595.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 596.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 597.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 598.0, "type": "location", "class": "home-livingroom-none"}
{"seconds": 599.0, "type": "location", "class": "restaurant"}
{"seconds": 600.0, "type": "location", "class": "restaurant"}
{"seconds": 601.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 602.0, "type": "location", "class": "hospital"}
{"seconds": 603.0, "type": "location", "class": "none"}
{"seconds": 604.0, "type": "location", "class": "road-none-none"}
{"seconds": 605.0, "type": "location", "class": "road-none-none"}
{"seconds": 606.0, "type": "location", "class": "home-livingroom-none"}
{"seconds": 607.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 608.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 609.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 610.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 611.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 612.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 613.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 614.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 615.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 616.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 617.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 618.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 619.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 620.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 621.0, "type": "location", "class": "hospital"}
{"seconds": 622.0, "type": "location", "class": "hospital"}
{"seconds": 623.0, "type": "location", "class": "hospital"}
{"seconds": 624.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 625.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 626.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 627.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 628.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 629.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 630.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 631.0, "type": "location", "class": "restaurant"}
{"seconds": 632.0, "type": "location", "class": "restaurant"}
{"seconds": 633.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 634.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 635.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 636.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 637.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 638.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 639.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 640.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 641.0, "type": "location", "class": "hospital"}
{"seconds": 642.0, "type": "location", "class": "hospital"}
{"seconds": 643.0, "type": "location", "class": "hospital"}
{"seconds": 644.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 645.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 646.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 647.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 648.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 649.0, "type": "location", "class": "cafe"}
{"seconds": 650.0, "type": "location", "class": "cafe"}
{"seconds": 651.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 652.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 653.0, "type": "location", "class": "restaurant"}
{"seconds": 654.0, "type": "location", "class": "restaurant"}
{"seconds": 655.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 656.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 657.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 658.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 659.0, "type": "location", "class": "cafe"}
{"seconds": 660.0, "type": "location", "class": "cafe"}
{"seconds": 661.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 662.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 663.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 664.0, "type": "location", "class": "cafe"}
{"seconds": 665.0, "type": "location", "class": "cafe"}
{"seconds": 666.0, "type": "location", "class": "cafe"}
{"seconds": 667.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 668.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 669.0, "type": "location", "class": "none"}
{"seconds": 670.0, "type": "location", "class": "none"}
{"seconds": 671.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 672.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 673.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 674.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 675.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 676.0, "type": "location", "class": "road-none-none"}
{"seconds": 677.0, "type": "location", "class": "road-none-none"}
{"seconds": 678.0, "type": "location", "class": "road-none-none"}
{"seconds": 679.0, "type": "location", "class": "none"}
{"seconds": 680.0, "type": "location", "class": "cafe"}
{"seconds": 681.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 682.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 683.0, "type": "location", "class": "restaurant"}
{"seconds": 684.0, "type": "location", "class": "restaurant"}
{"seconds": 685.0, "type": "location", "class": "cafe"}
{"seconds": 686.0, "type": "location", "class": "none"}
{"seconds": 687.0, "type": "location", "class": "none"}
{"seconds": 688.0, "type": "location", "class": "hospital"}
{"seconds": 689.0, "type": "location", "class": "hospital"}
{"seconds": 690.0, "type": "location", "class": "road-none-none"}
{"seconds": 691.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 692.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 693.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 694.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 695.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 696.0, "type": "location", "class": "hospital"}
{"seconds": 697.0, "type": "location", "class": "cafe"}
{"seconds": 698.0, "type": "location", "class": "restaurant"}
{"seconds": 699.0, "type": "location", "class": "restaurant"}
{"seconds": 700.0, "type": "location", "class": "restaurant"}
{"seconds": 701.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 702.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 703.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 704.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 705.0, "type": "location", "class": "cafe"}
{"seconds": 706.0, "type": "location", "class": "none"}
{"seconds": 707.0, "type": "location", "class": "none"}
{"seconds": 708.0, "type": "location", "class": "hospital"}
{"seconds": 709.0, "type": "location", "class": "hospital"}
{"seconds": 710.0, "type": "location", "class": "hospital"}
{"seconds": 711.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 712.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 713.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 714.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 715.0, "type": "location", "class": "hospital"}
{"seconds": 716.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 717.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 718.0, "type": "location", "class": "road-none-none"}
{"seconds": 719.0, "type": "location", "class": "road-none-none"}
{"seconds": 720.0, "type": "location", "class": "road-none-none"}
{"seconds": 721.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 722.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 723.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 724.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 725.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 726.0, "type": "location", "class": "home-livingroom-none"}
{"seconds": 727.0, "type": "location", "class": "road-none-none"}
{"seconds": 728.0, "type": "location", "class": "road-none-none"}
{"seconds": 729.0, "type": "location", "class": "road-none-none"}
{"seconds": 730.0, "type": "location", "class": "road-none-none"}
{"seconds": 731.0, "type": "location", "class": "restaurant"}
{"seconds": 732.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 733.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 734.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 735.0, "type": "location", "class": "hospital"}
{"seconds": 736.0, "type": "location", "class": "home-livingroom-none"}
{"seconds": 737.0, "type": "location", "class": "road-none-none"}
{"seconds": 738.0, "type": "location", "class": "road-none-none"}
{"seconds": 739.0, "type": "location", "class": "road-none-none"}
{"seconds": 740.0, "type": "location", "class": "road-none-none"}
{"seconds": 741.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 742.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 743.0, "type": "location", "class": "restaurant"}
{"seconds": 744.0, "type": "location", "class": "hospital"}
{"seconds": 745.0, "type": "location", "class": "hospital"}
{"seconds": 746.0, "type": "location", "class": "none"}
{"seconds": 747.0, "type": "location", "class": "road-none-none"}
{"seconds": 748.0, "type": "location", "class": "road-none-none"}
{"seconds": 749.0, "type": "location", "class": "road-none-none"}
{"seconds": 750.0, "type": "location", "class": "road-none-none"}
{"seconds": 751.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 752.0, "type": "location", "class": "restaurant"}
{"seconds": 753.0, "type": "location", "class": "restaurant"}
{"seconds": 754.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 755.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 756.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 757.0, "type": "location", "class": "road-none-none"}
{"seconds": 758.0, "type": "location", "class": "road-none-none"}
{"seconds": 759.0, "type": "location", "class": "cafe"}
{"seconds": 760.0, "type": "location", "class": "cafe"}
{"seconds": 761.0, "type": "location", "class": "hospital"}
{"seconds": 762.0, "type": "location", "class": "hospital"}
{"seconds": 763.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 764.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 765.0, "type": "location", "class": "none"}
{"seconds": 766.0, "type": "location", "class": "none"}
{"seconds": 767.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 768.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 769.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 770.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 771.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 772.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 773.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 774.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 775.0, "type": "location", "class": "none"}
{"seconds": 776.0, "type": "location", "class": "hospital"}
{"seconds": 777.0, "type": "location", "class": "road-none-none"}
{"seconds": 778.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 779.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 780.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 781.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 782.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 783.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 784.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 785.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 786.0, "type": "location", "class": "office-none-none"}
{"seconds": 787.0, "type": "location", "class": "road-none-none"}
{"seconds": 788.0, "type": "location", "class": "road-none-none"}
{"seconds": 789.0, "type": "location", "class": "road-none-none"}
{"seconds": 790.0, "type": "location", "class": "road-none-none"}
{"seconds": 791.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 792.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 793.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 794.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 795.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 796.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 797.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 798.0, "type": "location", "class": "road-none-none"}
{"seconds": 799.0, "type": "location", "class": "road-none-none"}
{"seconds": 800.0, "type": "location", "class": "road-none-none"}
{"seconds": 801.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 802.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 803.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 804.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 805.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 806.0, "type": "location", "class": "hospital"}
{"seconds": 807.0, "type": "location", "class": "road-none-none"}
{"seconds": 808.0, "type": "location", "class": "road-none-none"}
{"seconds": 809.0, "type": "location", "class": "road-none-none"}
{"seconds": 810.0, "type": "location", "class": "road-none-none"}
{"seconds": 811.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 812.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 813.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 814.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 815.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 816.0, "type": "location", "class": "hospital"}
{"seconds": 817.0, "type": "location", "class": "cafe"}
{"seconds": 818.0, "type": "location", "class": "road-none-none"}
{"seconds": 819.0, "type": "location", "class": "road-none-none"}
{"seconds": 820.0, "type": "location", "class": "road-none-none"}
{"seconds": 821.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 822.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 823.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 824.0, "type": "location", "class": "hospital"}
{"seconds": 825.0, "type": "location", "class": "hospital"}
{"seconds": 826.0, "type": "location", "class": "road-none-none"}
{"seconds": 827.0, "type": "location", "class": "cafe"}
{"seconds": 828.0, "type": "location", "class": "cafe"}
{"seconds": 829.0, "type": "location", "class": "cafe"}
{"seconds": 830.0, "type": "location", "class": "none"}
{"seconds": 831.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 832.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 833.0, "type": "location", "class": "restaurant"}
{"seconds": 834.0, "type": "location", "class": "restaurant"}
{"seconds": 835.0, "type": "location", "class": "none"}
{"seconds": 836.0, "type": "location", "class": "none"}
{"seconds": 837.0, "type": "location", "class": "hospital"}
{"seconds": 838.0, "type": "location", "class": "hospital"}
{"seconds": 839.0, "type": "location", "class": "road-none-none"}
{"seconds": 840.0, "type": "location", "class": "road-none-none"}
{"seconds": 841.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 842.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 843.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 844.0, "type": "location", "class": "home-livingroom-none"}
{"seconds": 845.0, "type": "location", "class": "cafe"}
{"seconds": 846.0, "type": "location", "class": "cafe"}
{"seconds": 847.0, "type": "location", "class": "restaurant"}
{"seconds": 848.0, "type": "location", "class": "restaurant"}
{"seconds": 849.0, "type": "location", "class": "none"}
{"seconds": 850.0, "type": "location", "class": "none"}
{"seconds": 851.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 852.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 853.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 854.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 855.0, "type": "location", "class": "none"}
{"seconds": 856.0, "type": "location", "class": "cafe"}
{"seconds": 857.0, "type": "location", "class": "cafe"}
{"seconds": 858.0, "type": "location", "class": "cafe"}
{"seconds": 859.0, "type": "location", "class": "road-none-none"}
{"seconds": 860.0, "type": "location", "class": "road-none-none"}
{"seconds": 861.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 862.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 863.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 864.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 865.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 866.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 867.0, "type": "location", "class": "restaurant"}
{"seconds": 868.0, "type": "location", "class": "restaurant"}
{"seconds": 869.0, "type": "location", "class": "restaurant"}
{"seconds": 870.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 871.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 872.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 873.0, "type": "location", "class": "cafe"}
{"seconds": 874.0, "type": "location", "class": "cafe"}
{"seconds": 875.0, "type": "location", "class": "cafe"}
{"seconds": 876.0, "type": "location", "class": "none"}
{"seconds": 877.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 878.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 879.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 880.0, "type": "location", "class": "restaurant"}
{"seconds": 881.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 882.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 883.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 884.0, "type": "location", "class": "cafe"}
{"seconds": 885.0, "type": "location", "class": "cafe"}
{"seconds": 886.0, "type": "location", "class": "cafe"}
{"seconds": 887.0, "type": "location", "class": "restaurant"}
{"seconds": 888.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 889.0, "type": "location", "class": "office-none-Chandler"}
{"seconds": 890.0, "type": "location", "class": "road-none-none"}
{"seconds": 891.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 892.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 893.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 894.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 895.0, "type": "location", "class": "cafe"}
{"seconds": 896.0, "type": "location", "class": "cafe"}
{"seconds": 897.0, "type": "location", "class": "cafe"}
{"seconds": 898.0, "type": "location", "class": "restaurant"}
{"seconds": 899.0, "type": "location", "class": "restaurant"}
{"seconds": 900.0, "type": "location", "class": "restaurant"}
{"seconds": 901.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 902.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 903.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 904.0, "type": "location", "class": "cafe"}
{"seconds": 905.0, "type": "location", "class": "cafe"}
{"seconds": 906.0, "type": "location", "class": "none"}
{"seconds": 907.0, "type": "location", "class": "hospital"}
{"seconds": 908.0, "type": "location", "class": "hospital"}
{"seconds": 909.0, "type": "location", "class": "hospital"}
{"seconds": 910.0, "type": "location", "class": "hospital"}
{"seconds": 911.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 912.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 913.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 914.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 915.0, "type": "location", "class": "cafe"}
{"seconds": 916.0, "type": "location", "class": "cafe"}
{"seconds": 917.0, "type": "location", "class": "cafe"}
{"seconds": 918.0, "type": "location", "class": "hospital"}
{"seconds": 919.0, "type": "location", "class": "hospital"}
{"seconds": 920.0, "type": "location", "class": "hospital"}
{"seconds": 921.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 922.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 923.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 924.0, "type": "location", "class": "restaurant"}
{"seconds": 925.0, "type": "location", "class": "restaurant"}
{"seconds": 926.0, "type": "location", "class": "restaurant"}
{"seconds": 927.0, "type": "location", "class": "cafe"}
{"seconds": 928.0, "type": "location", "class": "cafe"}
{"seconds": 929.0, "type": "location", "class": "cafe"}
{"seconds": 930.0, "type": "location", "class": "cafe"}
{"seconds": 931.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 932.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 933.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 934.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 935.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 936.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 937.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 938.0, "type": "location", "class": "restaurant"}
{"seconds": 939.0, "type": "location", "class": "restaurant"}
{"seconds": 940.0, "type": "location", "class": "restaurant"}
{"seconds": 941.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 942.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 943.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 944.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 945.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 946.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 947.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 948.0, "type": "location", "class": "restaurant"}
{"seconds": 949.0, "type": "location", "class": "restaurant"}
{"seconds": 950.0, "type": "location", "class": "restaurant"}
{"seconds": 951.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 952.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 953.0, "type": "location", "class": "home-livingroom-Monica"}
{"seconds": 954.0, "type": "location", "class": "cafe"}
{"seconds": 955.0, "type": "location", "class": "cafe"}
{"seconds": 956.0, "type": "location", "class": "cafe"}
{"seconds": 957.0, "type": "location", "class": "road-none-none"}
{"seconds": 958.0, "type": "location", "class": "restaurant"}
{"seconds": 959.0, "type": "location", "class": "restaurant"}
{"seconds": 960.0, "type": "location", "class": "none"}
{"seconds": 961.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 962.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 963.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 964.0, "type": "location", "class": "home-kitchen-Monica"}
{"seconds": 965.0, "type": "location", "class": "none"}
{"seconds": 966.0, "type": "location", "class": "none"}
{"seconds": 967.0, "type": "location", "class": "restaurant"}
{"seconds": 968.0, "type": "location", "class": "restaurant"}
{"seconds": 969.0, "type": "location", "class": "restaurant"}
{"seconds": 970.0, "type": "location", "class": "restaurant"}
{"seconds": 971.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 972.0, "type": "location", "class": "home-livingroom-Chandler"}
{"seconds": 973.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 974.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 975.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 976.0, "type": "location", "class": "museum-none-Ross"}
{"seconds": 977.0, "type": "location", "class": "restaurant"}
{"seconds": 978.0, "type": "location", "class": "restaurant"}
{"seconds": 979.0, "type": "location", "class": "restaurant"}
{"seconds": 980.0, "type": "location", "class": "restaurant"}
{"seconds": 981.0, "type": "location", "class": "office-none-none"}
{"seconds": 982.0, "type": "location", "class": "office-none-none"}
{"seconds": 983.0, "type": "location", "class": "home-kitchen-Chandler"}
{"seconds": 984.0, "type": "location", "class": "road-none-none"}
{"seconds": 985.0, "type": "location", "class": "home-none-Monica"}
{"seconds": 986.0, "type": "location", "class": "none"}
{"seconds": 987.0, "type": "location", "class": "home-doorway-Monica"}
{"seconds": 988.0, "type": "location", "class": "restaurant"}
{"seconds": 989.0, "type": "location", "class": "restaurant"}
{"seconds": 990.0, "type": "location", "class": "restaurant"}
{"seconds": 991.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 992.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 993.0, "type": "location", "class": "home-none-Ross"}
{"seconds": 994.0, "type": "location", "class": "hospital"}
{"seconds": 995.0, "type": "location", "class": "none"}
{"seconds": 996.0, "type": "location", "class": "cafe"}
{"seconds": 997.0, "type": "location", "class": "restaurant"}
{"seconds": 998.0, "type": "location", "class": "restaurant"}
{"seconds": 999.0, "type": "location", "class": "restaurant"}
{"seconds": 1000.0, "type": "location", "class": "restaurant"}