-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2025_Week_2 _PLANO.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
3769 lines (3769 loc) · 471 KB
/
2025_Week_2 _PLANO.csv
File metadata and controls
3769 lines (3769 loc) · 471 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
"id";"ip_address";"event_name";"match_no";"time_sec";"robot";"alliance";"action";"location";"result";"points";"timestamp"
"5223";"192.168.1.131";"Week 2 PLANO";"3";"0";"148";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 10:30:20"
"5224";"192.168.1.131";"Week 2 PLANO";"3";"2";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:30:21"
"5225";"192.168.1.131";"Week 2 PLANO";"3";"3";"148";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 10:30:22"
"5226";"192.168.1.131";"Week 2 PLANO";"3";"10";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:30:30"
"5227";"192.168.1.131";"Week 2 PLANO";"3";"14";"148";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 10:30:34"
"5228";"192.168.1.110";"Week 2 PLANO";"3";"7";"5411";"Red";"scores_algae_processor";"processor";"Success";"12";"2025-03-08 10:30:35"
"5229";"192.168.1.131";"Week 2 PLANO";"3";"20";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:30:40"
"5230";"192.168.1.131";"Week 2 PLANO";"3";"24";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:30:44"
"5231";"192.168.1.139";"Week 2 PLANO";"3";"19";"10014";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 10:30:46"
"5232";"192.168.1.130";"Week 2 PLANO";"3";"28";"6171";"Blue";"disabled";"anywhere";"Success";"0";"2025-03-08 10:30:47"
"5233";"192.168.1.110";"Week 2 PLANO";"3";"19";"5411";"Red";"scores_algae_processor";"processor";"Success";"6";"2025-03-08 10:30:47"
"5234";"192.168.1.139";"Week 2 PLANO";"3";"21";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:30:48"
"5235";"192.168.1.131";"Week 2 PLANO";"3";"31";"148";"Red";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 10:30:50"
"5236";"192.168.1.131";"Week 2 PLANO";"3";"32";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:30:51"
"5237";"192.168.1.110";"Week 2 PLANO";"3";"29";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:30:57"
"5238";"192.168.1.131";"Week 2 PLANO";"3";"39";"148";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 10:30:58"
"5239";"192.168.1.139";"Week 2 PLANO";"3";"31";"10014";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 10:30:58"
"5240";"192.168.1.139";"Week 2 PLANO";"3";"33";"10014";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 10:31:00"
"5241";"192.168.1.131";"Week 2 PLANO";"3";"41";"148";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 10:31:01"
"5242";"192.168.1.131";"Week 2 PLANO";"3";"45";"148";"Red";"scores_algae_net";"net";"Success";"4";"2025-03-08 10:31:04"
"5243";"192.168.1.110";"Week 2 PLANO";"3";"37";"5411";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 10:31:05"
"5244";"192.168.1.110";"Week 2 PLANO";"3";"38";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:31:06"
"5245";"192.168.1.131";"Week 2 PLANO";"3";"47";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:31:07"
"5246";"192.168.1.109";"Week 2 PLANO";"3";"58";"7091";"Red";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 10:31:11"
"5247";"192.168.1.131";"Week 2 PLANO";"3";"52";"148";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 10:31:11"
"5248";"192.168.1.131";"Week 2 PLANO";"3";"56";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:31:15"
"5249";"192.168.1.139";"Week 2 PLANO";"3";"48";"10014";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 10:31:15"
"5250";"192.168.1.110";"Week 2 PLANO";"3";"50";"5411";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 10:31:18"
"5251";"192.168.1.131";"Week 2 PLANO";"3";"61";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:31:21"
"5252";"192.168.1.110";"Week 2 PLANO";"3";"53";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:31:21"
"5253";"192.168.1.131";"Week 2 PLANO";"3";"64";"148";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 10:31:23"
"5254";"192.168.1.110";"Week 2 PLANO";"3";"57";"5411";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 10:31:25"
"5255";"192.168.1.110";"Week 2 PLANO";"3";"60";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:31:28"
"5256";"192.168.1.110";"Week 2 PLANO";"3";"64";"5411";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 10:31:32"
"5257";"192.168.1.131";"Week 2 PLANO";"3";"72";"148";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 10:31:32"
"5258";"192.168.1.110";"Week 2 PLANO";"3";"68";"5411";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 10:31:36"
"5259";"192.168.1.131";"Week 2 PLANO";"3";"79";"148";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 10:31:39"
"5260";"192.168.1.131";"Week 2 PLANO";"3";"81";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:31:41"
"5261";"192.168.1.139";"Week 2 PLANO";"3";"79";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:31:46"
"5262";"192.168.1.139";"Week 2 PLANO";"3";"84";"10014";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 10:31:51"
"5263";"192.168.1.131";"Week 2 PLANO";"3";"91";"148";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 10:31:51"
"5264";"192.168.1.131";"Week 2 PLANO";"3";"96";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:31:56"
"5265";"192.168.1.139";"Week 2 PLANO";"3";"94";"10014";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 10:32:01"
"5266";"192.168.1.109";"Week 2 PLANO";"3";"112";"7091";"Red";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 10:32:04"
"5267";"192.168.1.131";"Week 2 PLANO";"3";"106";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:32:06"
"5268";"192.168.1.131";"Week 2 PLANO";"3";"109";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:32:08"
"5269";"192.168.1.139";"Week 2 PLANO";"3";"102";"10014";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:32:09"
"5270";"192.168.1.110";"Week 2 PLANO";"3";"102";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:32:10"
"5271";"192.168.1.131";"Week 2 PLANO";"3";"114";"148";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 10:32:14"
"5272";"192.168.1.110";"Week 2 PLANO";"3";"106";"5411";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 10:32:14"
"5273";"192.168.1.131";"Week 2 PLANO";"3";"118";"148";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 10:32:17"
"5274";"192.168.1.110";"Week 2 PLANO";"3";"110";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:32:18"
"5275";"192.168.1.131";"Week 2 PLANO";"3";"119";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:32:19"
"5276";"192.168.1.131";"Week 2 PLANO";"3";"124";"148";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 10:32:23"
"5277";"192.168.1.110";"Week 2 PLANO";"3";"116";"5411";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 10:32:24"
"5278";"192.168.1.131";"Week 2 PLANO";"3";"126";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:32:25"
"5279";"192.168.1.139";"Week 2 PLANO";"3";"118";"10014";"Blue";"scores_algae_processor";"processor";"Success";"6";"2025-03-08 10:32:25"
"5280";"192.168.1.131";"Week 2 PLANO";"3";"130";"148";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 10:32:30"
"5281";"192.168.1.131";"Week 2 PLANO";"3";"139";"148";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 10:32:42"
"5282";"192.168.1.110";"Week 2 PLANO";"3";"130";"5411";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 10:32:42"
"5283";"192.168.1.109";"Week 2 PLANO";"4";"12";"7535";"Red";"disabled";"anywhere";"Success";"0";"2025-03-08 10:43:17"
"5284";"192.168.1.139";"Week 2 PLANO";"4";"3";"6526";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 10:43:23"
"5285";"192.168.1.131";"Week 2 PLANO";"4";"15";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:43:27"
"5287";"192.168.1.110";"Week 2 PLANO";"4";"21";"4192";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:43:42"
"5288";"192.168.1.131";"Week 2 PLANO";"4";"40";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:43:52"
"5289";"192.168.1.110";"Week 2 PLANO";"4";"32";"4192";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:43:53"
"5290";"192.168.1.131";"Week 2 PLANO";"4";"47";"1296";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 10:44:00"
"5291";"192.168.1.110";"Week 2 PLANO";"4";"42";"4192";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:44:03"
"5292";"192.168.1.139";"Week 2 PLANO";"4";"44";"6526";"Blue";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 10:44:04"
"5293";"192.168.1.110";"Week 2 PLANO";"4";"47";"4192";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:44:08"
"5294";"192.168.1.110";"Week 2 PLANO";"4";"57";"4192";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:44:18"
"5295";"192.168.1.110";"Week 2 PLANO";"4";"65";"4192";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:44:26"
"5296";"192.168.1.110";"Week 2 PLANO";"4";"70";"4192";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:44:31"
"5297";"192.168.1.131";"Week 2 PLANO";"4";"83";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:44:36"
"5298";"192.168.1.110";"Week 2 PLANO";"4";"77";"4192";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:44:38"
"5299";"192.168.1.131";"Week 2 PLANO";"4";"87";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:44:40"
"5300";"192.168.1.110";"Week 2 PLANO";"4";"87";"4192";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:44:48"
"5301";"192.168.1.131";"Week 2 PLANO";"4";"104";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:44:57"
"5302";"192.168.1.110";"Week 2 PLANO";"4";"96";"4192";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 10:44:57"
"5303";"192.168.1.131";"Week 2 PLANO";"4";"110";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:45:02"
"5305";"192.168.1.110";"Week 2 PLANO";"4";"130";"4192";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 10:45:32"
"5306";"192.168.1.131";"Week 2 PLANO";"4";"138";"1296";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 10:45:34"
"5307";"192.168.1.131";"Week 2 PLANO";"5";"2";"6768";"Red";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 10:53:57"
"5308";"192.168.1.131";"Week 2 PLANO";"5";"4";"6768";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 10:53:58"
"5309";"192.168.1.110";"Week 2 PLANO";"5";"17";"3355";"Red";"disabled";"anywhere";"Failure";"0";"2025-03-08 10:54:20"
"5310";"192.168.1.130";"Week 2 PLANO";"5";"27";"8732";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:54:22"
"5311";"192.168.1.131";"Week 2 PLANO";"5";"35";"6768";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:54:30"
"5312";"192.168.1.130";"Week 2 PLANO";"5";"40";"8732";"Blue";"scores_coral_level_3";"reef";"Failure";"0";"2025-03-08 10:54:35"
"5313";"192.168.1.131";"Week 2 PLANO";"5";"42";"6768";"Red";"scores_coral_level_2";"reef";"Failure";"0";"2025-03-08 10:54:37"
"5314";"192.168.1.130";"Week 2 PLANO";"5";"47";"8732";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:54:41"
"5315";"192.168.1.109";"Week 2 PLANO";"5";"61";"8816";"Red";"disabled";"anywhere";"Success";"0";"2025-03-08 10:54:48"
"5316";"192.168.1.130";"Week 2 PLANO";"5";"56";"8732";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 10:54:51"
"5317";"192.168.1.131";"Week 2 PLANO";"5";"63";"6768";"Red";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 10:54:57"
"5318";"192.168.1.130";"Week 2 PLANO";"5";"71";"8732";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:55:05"
"5319";"192.168.1.130";"Week 2 PLANO";"5";"83";"8732";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:55:17"
"5320";"192.168.1.130";"Week 2 PLANO";"5";"87";"8732";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:55:22"
"5321";"192.168.1.130";"Week 2 PLANO";"5";"98";"8732";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 10:55:33"
"5322";"192.168.1.125";"Week 2 PLANO";"5";"93";"5431";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:55:35"
"5323";"192.168.1.130";"Week 2 PLANO";"5";"106";"8732";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 10:55:40"
"5324";"192.168.1.131";"Week 2 PLANO";"5";"137";"6768";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 10:56:11"
"5325";"192.168.1.130";"Week 2 PLANO";"5";"139";"8732";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 10:56:55"
"5326";"192.168.1.109";"Week 2 PLANO";"6";"4";"9492";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 11:03:14"
"5327";"192.168.1.109";"Week 2 PLANO";"6";"7";"9492";"Red";"scores_coral_level_1";"reef";"Success";"2";"2025-03-08 11:03:17"
"5328";"192.168.1.130";"Week 2 PLANO";"6";"3";"10340";"Blue";"auton_center";"starting_pad";"Success";"0";"2025-03-08 11:03:21"
"5329";"192.168.1.130";"Week 2 PLANO";"6";"5";"10340";"Blue";"starting_position_3";"starting_pad";"Success";"0";"2025-03-08 11:03:22"
"5330";"192.168.1.139";"Week 2 PLANO";"6";"0";"3310";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 11:03:25"
"5331";"192.168.1.139";"Week 2 PLANO";"6";"5";"3310";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:03:30"
"5332";"192.168.1.109";"Week 2 PLANO";"6";"21";"9492";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:03:31"
"5333";"192.168.1.131";"Week 2 PLANO";"6";"15";"9156";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 11:03:33"
"5334";"192.168.1.139";"Week 2 PLANO";"6";"8";"3310";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 11:03:33"
"5335";"192.168.1.110";"Week 2 PLANO";"6";"9";"3282";"Red";"scores_coral_level_1";"reef";"Success";"2";"2025-03-08 11:03:36"
"5336";"192.168.1.109";"Week 2 PLANO";"6";"26";"9492";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:03:36"
"5337";"192.168.1.109";"Week 2 PLANO";"6";"31";"9492";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:03:41"
"5338";"192.168.1.139";"Week 2 PLANO";"6";"17";"3310";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:03:42"
"5340";"192.168.1.139";"Week 2 PLANO";"6";"23";"3310";"Blue";"scores_algae_net";"net";"Success";"4";"2025-03-08 11:03:48"
"5341";"192.168.1.130";"Week 2 PLANO";"6";"31";"10340";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:03:48"
"5342";"192.168.1.110";"Week 2 PLANO";"6";"24";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:03:50"
"5343";"192.168.1.109";"Week 2 PLANO";"6";"42";"9492";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:03:53"
"5344";"192.168.1.131";"Week 2 PLANO";"6";"37";"9156";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:03:54"
"5345";"192.168.1.139";"Week 2 PLANO";"6";"30";"3310";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:03:55"
"5346";"192.168.1.109";"Week 2 PLANO";"6";"48";"9492";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:03:58"
"5347";"192.168.1.139";"Week 2 PLANO";"6";"35";"3310";"Blue";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 11:04:00"
"5348";"192.168.1.110";"Week 2 PLANO";"6";"34";"3282";"Red";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 11:04:00"
"5349";"192.168.1.139";"Week 2 PLANO";"6";"42";"3310";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:04:07"
"5350";"192.168.1.110";"Week 2 PLANO";"6";"42";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:04:08"
"5351";"192.168.1.109";"Week 2 PLANO";"6";"58";"9492";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:04:08"
"5352";"192.168.1.139";"Week 2 PLANO";"6";"45";"3310";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:04:10"
"5353";"192.168.1.109";"Week 2 PLANO";"6";"64";"9492";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:04:14"
"5354";"192.168.1.110";"Week 2 PLANO";"6";"53";"3282";"Red";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 11:04:19"
"5355";"192.168.1.109";"Week 2 PLANO";"6";"73";"9492";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:04:23"
"5356";"192.168.1.110";"Week 2 PLANO";"6";"60";"3282";"Red";"crosses_starting_line";"starting_line";"Success";"0";"2025-03-08 11:04:26"
"5357";"192.168.1.109";"Week 2 PLANO";"6";"82";"9492";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:04:32"
"5358";"192.168.1.131";"Week 2 PLANO";"6";"75";"9156";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:04:33"
"5359";"192.168.1.110";"Week 2 PLANO";"6";"68";"3282";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:04:34"
"5360";"192.168.1.110";"Week 2 PLANO";"6";"75";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:04:41"
"5361";"192.168.1.109";"Week 2 PLANO";"6";"100";"9492";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:04:50"
"5362";"192.168.1.110";"Week 2 PLANO";"6";"84";"3282";"Red";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 11:04:50"
"5363";"192.168.1.109";"Week 2 PLANO";"6";"110";"9492";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:05:01"
"5364";"192.168.1.110";"Week 2 PLANO";"6";"96";"3282";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:05:02"
"5365";"192.168.1.110";"Week 2 PLANO";"6";"108";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:05:14"
"5366";"192.168.1.131";"Week 2 PLANO";"6";"119";"9156";"Red";"scores_coral_level_2";"reef";"Failure";"0";"2025-03-08 11:05:16"
"5367";"192.168.1.110";"Week 2 PLANO";"6";"112";"3282";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:05:18"
"5368";"192.168.1.110";"Week 2 PLANO";"6";"118";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:05:24"
"5369";"192.168.1.110";"Week 2 PLANO";"6";"123";"3282";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:05:29"
"5370";"192.168.1.125";"Week 2 PLANO";"6";"126";"9457";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:05:31"
"5371";"192.168.1.110";"Week 2 PLANO";"6";"130";"3282";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:05:37"
"5372";"192.168.1.131";"Week 2 PLANO";"6";"138";"9156";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:05:40"
"5373";"192.168.1.109";"Week 2 PLANO";"6";"146";"9492";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:05:42"
"5374";"192.168.1.130";"Week 2 PLANO";"6";"139";"10340";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:05:44"
"5375";"192.168.1.109";"Week 2 PLANO";"7";"4";"4153";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 11:12:54"
"5376";"192.168.1.131";"Week 2 PLANO";"7";"1";"5411";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 11:12:59"
"5377";"192.168.1.109";"Week 2 PLANO";"7";"9";"4153";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:13:00"
"5378";"192.168.1.131";"Week 2 PLANO";"7";"3";"5411";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 11:13:00"
"5379";"192.168.1.131";"Week 2 PLANO";"7";"11";"5411";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:13:09"
"5380";"192.168.1.131";"Week 2 PLANO";"7";"19";"5411";"Red";"scores_algae_net";"net";"Failure";"0";"2025-03-08 11:13:16"
"5381";"192.168.1.131";"Week 2 PLANO";"7";"21";"5411";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:13:19"
"5382";"192.168.1.109";"Week 2 PLANO";"7";"31";"4153";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:13:21"
"5383";"192.168.1.131";"Week 2 PLANO";"7";"25";"5411";"Red";"scores_algae_net";"net";"Success";"4";"2025-03-08 11:13:22"
"5384";"192.168.1.109";"Week 2 PLANO";"7";"36";"4153";"Red";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 11:13:26"
"5385";"192.168.1.131";"Week 2 PLANO";"7";"30";"5411";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:13:28"
"5386";"192.168.1.131";"Week 2 PLANO";"7";"37";"5411";"Red";"scores_algae_net";"net";"Failure";"0";"2025-03-08 11:13:35"
"5387";"192.168.1.110";"Week 2 PLANO";"7";"29";"7119";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:13:35"
"5388";"192.168.1.109";"Week 2 PLANO";"7";"45";"4153";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:13:36"
"5389";"192.168.1.131";"Week 2 PLANO";"7";"40";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:13:38"
"5390";"192.168.1.131";"Week 2 PLANO";"7";"45";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:13:42"
"5391";"192.168.1.131";"Week 2 PLANO";"7";"49";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:13:47"
"5392";"192.168.1.131";"Week 2 PLANO";"7";"51";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:13:48"
"5393";"192.168.1.131";"Week 2 PLANO";"7";"57";"5411";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:13:55"
"5394";"192.168.1.131";"Week 2 PLANO";"7";"59";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:13:56"
"5395";"192.168.1.131";"Week 2 PLANO";"7";"63";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:14:01"
"5396";"192.168.1.131";"Week 2 PLANO";"7";"73";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:14:11"
"5397";"192.168.1.125";"Week 2 PLANO";"7";"66";"7091";"Blue";"disabled";"anywhere";"Success";"0";"2025-03-08 11:14:11"
"5398";"192.168.1.131";"Week 2 PLANO";"7";"77";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:14:14"
"5399";"192.168.1.109";"Week 2 PLANO";"7";"86";"4153";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:14:17"
"5400";"192.168.1.109";"Week 2 PLANO";"7";"88";"4153";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:14:18"
"5401";"192.168.1.131";"Week 2 PLANO";"7";"82";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:14:19"
"5402";"192.168.1.109";"Week 2 PLANO";"7";"91";"4153";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:14:21"
"5403";"192.168.1.131";"Week 2 PLANO";"7";"85";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:14:22"
"5404";"192.168.1.109";"Week 2 PLANO";"7";"92";"4153";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:14:23"
"5405";"192.168.1.131";"Week 2 PLANO";"7";"89";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:14:27"
"5406";"192.168.1.131";"Week 2 PLANO";"7";"95";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:14:33"
"5407";"192.168.1.131";"Week 2 PLANO";"7";"100";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:14:38"
"5408";"192.168.1.109";"Week 2 PLANO";"7";"109";"4153";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:14:39"
"5409";"192.168.1.110";"Week 2 PLANO";"7";"95";"7119";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:14:41"
"5410";"192.168.1.110";"Week 2 PLANO";"7";"96";"7119";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:14:42"
"5411";"192.168.1.109";"Week 2 PLANO";"7";"113";"4153";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:14:44"
"5412";"192.168.1.131";"Week 2 PLANO";"7";"106";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:14:44"
"5413";"192.168.1.131";"Week 2 PLANO";"7";"111";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:14:49"
"5414";"192.168.1.131";"Week 2 PLANO";"7";"120";"5411";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:14:57"
"5415";"192.168.1.131";"Week 2 PLANO";"7";"125";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:15:02"
"5416";"192.168.1.110";"Week 2 PLANO";"7";"121";"7119";"Red";"attempts_deep_climb";"barge";"Success";"12";"2025-03-08 11:15:07"
"5417";"192.168.1.131";"Week 2 PLANO";"7";"133";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:15:10"
"5418";"192.168.1.130";"Week 2 PLANO";"7";"139";"5682";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:15:29"
"5419";"192.168.1.109";"Week 2 PLANO";"7";"146";"4153";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:15:41"
"5420";"192.168.1.110";"Week 2 PLANO";"7";"130";"7119";"Red";"attempts_deep_climb";"barge";"Failure";"0";"2025-03-08 11:20:06"
"5421";"192.168.1.110";"Week 2 PLANO";"7";"130";"7119";"Red";"attempts_deep_climb";"barge";"Success";"12";"2025-03-08 11:20:09"
"5422";"192.168.1.109";"Week 2 PLANO";"8";"11";"8732";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 11:28:12"
"5423";"192.168.1.109";"Week 2 PLANO";"8";"16";"8732";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:28:17"
"5424";"192.168.1.109";"Week 2 PLANO";"8";"17";"8732";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 11:28:18"
"5425";"192.168.1.109";"Week 2 PLANO";"8";"22";"8732";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:28:24"
"5426";"192.168.1.131";"Week 2 PLANO";"8";"17";"5431";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 11:28:26"
"5427";"192.168.1.139";"Week 2 PLANO";"8";"11";"10014";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:28:28"
"5428";"192.168.1.139";"Week 2 PLANO";"8";"20";"10014";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:28:37"
"5429";"192.168.1.139";"Week 2 PLANO";"8";"24";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:28:41"
"5430";"192.168.1.109";"Week 2 PLANO";"8";"41";"8732";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:28:42"
"5431";"192.168.1.109";"Week 2 PLANO";"8";"46";"8732";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:28:47"
"5432";"192.168.1.139";"Week 2 PLANO";"8";"37";"10014";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:28:53"
"5433";"192.168.1.139";"Week 2 PLANO";"8";"39";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:28:55"
"5434";"192.168.1.109";"Week 2 PLANO";"8";"56";"8732";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:28:57"
"5435";"192.168.1.125";"Week 2 PLANO";"8";"42";"8818";"Blue";"crosses_starting_line";"starting_line";"Success";"0";"2025-03-08 11:28:59"
"5436";"192.168.1.110";"Week 2 PLANO";"8";"44";"6171";"Red";"disabled";"anywhere";"Success";"0";"2025-03-08 11:29:01"
"5437";"192.168.1.139";"Week 2 PLANO";"8";"46";"10014";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:29:03"
"5438";"192.168.1.109";"Week 2 PLANO";"8";"65";"8732";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:29:06"
"5439";"192.168.1.139";"Week 2 PLANO";"8";"53";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:29:09"
"5440";"192.168.1.109";"Week 2 PLANO";"8";"71";"8732";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:29:12"
"5441";"192.168.1.139";"Week 2 PLANO";"8";"60";"10014";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:29:16"
"5442";"192.168.1.109";"Week 2 PLANO";"8";"77";"8732";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:29:18"
"5443";"192.168.1.139";"Week 2 PLANO";"8";"68";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:29:24"
"5444";"192.168.1.109";"Week 2 PLANO";"8";"88";"8732";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:29:30"
"5445";"192.168.1.139";"Week 2 PLANO";"8";"76";"10014";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:29:32"
"5446";"192.168.1.109";"Week 2 PLANO";"8";"94";"8732";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:29:35"
"5447";"192.168.1.139";"Week 2 PLANO";"8";"82";"10014";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:29:38"
"5448";"192.168.1.109";"Week 2 PLANO";"8";"98";"8732";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:29:39"
"5449";"192.168.1.139";"Week 2 PLANO";"8";"97";"10014";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:29:53"
"5450";"192.168.1.139";"Week 2 PLANO";"8";"101";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:29:57"
"5451";"192.168.1.131";"Week 2 PLANO";"8";"115";"5431";"Red";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 11:30:03"
"5452";"192.168.1.110";"Week 2 PLANO";"8";"119";"6171";"Red";"disabled";"anywhere";"Success";"0";"2025-03-08 11:30:16"
"5453";"192.168.1.139";"Week 2 PLANO";"8";"128";"10014";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:30:25"
"5454";"192.168.1.139";"Week 2 PLANO";"8";"132";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:30:30"
"5455";"192.168.1.109";"Week 2 PLANO";"8";"146";"8732";"Red";"attempts_deep_climb";"barge";"Success";"12";"2025-03-08 11:30:31"
"5456";"192.168.1.131";"Week 2 PLANO";"8";"139";"5431";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:30:32"
"5457";"192.168.1.139";"Week 2 PLANO";"8";"132";"10014";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:30:34"
"5458";"192.168.1.125";"Week 2 PLANO";"8";"131";"8818";"Blue";"crosses_starting_line";"starting_line";"Success";"0";"2025-03-08 11:30:35"
"5459";"192.168.1.109";"Week 2 PLANO";"9";"3";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:40:55"
"5460";"192.168.1.130";"Week 2 PLANO";"9";"3";"148";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:41:03"
"5461";"192.168.1.109";"Week 2 PLANO";"9";"11";"4641";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:41:03"
"5462";"192.168.1.130";"Week 2 PLANO";"9";"4";"148";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:41:04"
"5463";"192.168.1.125";"Week 2 PLANO";"9";"0";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:07"
"5464";"192.168.1.130";"Week 2 PLANO";"9";"10";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:09"
"5465";"192.168.1.125";"Week 2 PLANO";"9";"2";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 11:41:09"
"5466";"192.168.1.131";"Week 2 PLANO";"9";"10";"9156";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 11:41:10"
"5467";"192.168.1.109";"Week 2 PLANO";"9";"18";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:10"
"5468";"192.168.1.131";"Week 2 PLANO";"9";"13";"9156";"Red";"starting_position_2";"starting_pad";"Success";"0";"2025-03-08 11:41:13"
"5469";"192.168.1.125";"Week 2 PLANO";"9";"6";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:13"
"5470";"192.168.1.125";"Week 2 PLANO";"9";"7";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 11:41:14"
"5471";"192.168.1.131";"Week 2 PLANO";"9";"15";"9156";"Red";"auton_center";"starting_pad";"Success";"0";"2025-03-08 11:41:14"
"5472";"192.168.1.109";"Week 2 PLANO";"9";"23";"4641";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:41:15"
"5473";"192.168.1.131";"Week 2 PLANO";"9";"16";"9156";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:41:15"
"5474";"192.168.1.130";"Week 2 PLANO";"9";"16";"148";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 11:41:16"
"5475";"192.168.1.125";"Week 2 PLANO";"9";"9";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:16"
"5476";"192.168.1.125";"Week 2 PLANO";"9";"10";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 11:41:17"
"5477";"192.168.1.109";"Week 2 PLANO";"9";"27";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:19"
"5478";"192.168.1.130";"Week 2 PLANO";"9";"21";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:20"
"5479";"192.168.1.109";"Week 2 PLANO";"9";"28";"4641";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:41:20"
"5480";"192.168.1.125";"Week 2 PLANO";"9";"14";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:22"
"5481";"192.168.1.125";"Week 2 PLANO";"9";"16";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 11:41:23"
"5482";"192.168.1.130";"Week 2 PLANO";"9";"26";"148";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:41:25"
"5483";"192.168.1.109";"Week 2 PLANO";"9";"37";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:29"
"5484";"192.168.1.131";"Week 2 PLANO";"9";"29";"9156";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:41:29"
"5485";"192.168.1.125";"Week 2 PLANO";"9";"22";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:29"
"5486";"192.168.1.109";"Week 2 PLANO";"9";"38";"4641";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:41:30"
"5487";"192.168.1.139";"Week 2 PLANO";"9";"23";"4206";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:41:30"
"5488";"192.168.1.125";"Week 2 PLANO";"9";"24";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:41:31"
"5490";"192.168.1.130";"Week 2 PLANO";"9";"36";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:35"
"5491";"192.168.1.125";"Week 2 PLANO";"9";"29";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:36"
"5492";"192.168.1.125";"Week 2 PLANO";"9";"30";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:41:38"
"5493";"192.168.1.130";"Week 2 PLANO";"9";"38";"148";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:41:38"
"5494";"192.168.1.110";"Week 2 PLANO";"9";"33";"6768";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:41:41"
"5495";"192.168.1.130";"Week 2 PLANO";"9";"42";"148";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:41:41"
"5496";"192.168.1.131";"Week 2 PLANO";"9";"43";"9156";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:42"
"5497";"192.168.1.125";"Week 2 PLANO";"9";"35";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:43"
"5498";"192.168.1.109";"Week 2 PLANO";"9";"52";"4641";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:41:44"
"5499";"192.168.1.109";"Week 2 PLANO";"9";"53";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:45"
"5500";"192.168.1.131";"Week 2 PLANO";"9";"48";"9156";"Red";"scores_coral_level_3";"reef";"Failure";"0";"2025-03-08 11:41:47"
"5501";"192.168.1.130";"Week 2 PLANO";"9";"49";"148";"Blue";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 11:41:48"
"5502";"192.168.1.125";"Week 2 PLANO";"9";"42";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:41:49"
"5503";"192.168.1.109";"Week 2 PLANO";"9";"58";"4641";"Red";"scores_coral_level_3";"reef";"Failure";"0";"2025-03-08 11:41:50"
"5504";"192.168.1.125";"Week 2 PLANO";"9";"47";"9105";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:41:54"
"5505";"192.168.1.109";"Week 2 PLANO";"9";"65";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:41:58"
"5506";"192.168.1.139";"Week 2 PLANO";"9";"52";"4206";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:41:59"
"5507";"192.168.1.109";"Week 2 PLANO";"9";"67";"4641";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:41:59"
"5508";"192.168.1.130";"Week 2 PLANO";"9";"60";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:00"
"5509";"192.168.1.125";"Week 2 PLANO";"9";"53";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:01"
"5510";"192.168.1.109";"Week 2 PLANO";"9";"70";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:02"
"5511";"192.168.1.130";"Week 2 PLANO";"9";"66";"148";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:42:05"
"5512";"192.168.1.109";"Week 2 PLANO";"9";"77";"4641";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:42:09"
"5513";"192.168.1.125";"Week 2 PLANO";"9";"62";"9105";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:42:09"
"5514";"192.168.1.131";"Week 2 PLANO";"9";"71";"9156";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:10"
"5515";"192.168.1.130";"Week 2 PLANO";"9";"71";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:10"
"5516";"192.168.1.131";"Week 2 PLANO";"9";"76";"9156";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:42:15"
"5517";"192.168.1.125";"Week 2 PLANO";"9";"68";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:16"
"5518";"192.168.1.125";"Week 2 PLANO";"9";"71";"9105";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:42:18"
"5519";"192.168.1.110";"Week 2 PLANO";"9";"70";"6768";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:42:18"
"5520";"192.168.1.130";"Week 2 PLANO";"9";"79";"148";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:42:18"
"5521";"192.168.1.109";"Week 2 PLANO";"9";"87";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:19"
"5522";"192.168.1.109";"Week 2 PLANO";"9";"89";"4641";"Red";"scores_coral_level_2";"reef";"Failure";"0";"2025-03-08 11:42:21"
"5523";"192.168.1.131";"Week 2 PLANO";"9";"81";"9156";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:21"
"5524";"192.168.1.125";"Week 2 PLANO";"9";"74";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:21"
"5525";"192.168.1.130";"Week 2 PLANO";"9";"83";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:23"
"5526";"192.168.1.139";"Week 2 PLANO";"9";"76";"4206";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:42:23"
"5527";"192.168.1.109";"Week 2 PLANO";"9";"95";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:27"
"5528";"192.168.1.125";"Week 2 PLANO";"9";"82";"9105";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:42:29"
"5529";"192.168.1.130";"Week 2 PLANO";"9";"90";"148";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:42:29"
"5530";"192.168.1.130";"Week 2 PLANO";"9";"94";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:33"
"5531";"192.168.1.125";"Week 2 PLANO";"9";"86";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:34"
"5532";"192.168.1.139";"Week 2 PLANO";"9";"89";"4206";"Blue";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 11:42:36"
"5533";"192.168.1.110";"Week 2 PLANO";"9";"89";"6768";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:37"
"5534";"192.168.1.109";"Week 2 PLANO";"9";"106";"4641";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:42:38"
"5535";"192.168.1.131";"Week 2 PLANO";"9";"99";"9156";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:42:39"
"5536";"192.168.1.110";"Week 2 PLANO";"9";"91";"6768";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:42:39"
"5537";"192.168.1.125";"Week 2 PLANO";"9";"92";"9105";"Blue";"scores_coral_level_3";"reef";"Failure";"0";"2025-03-08 11:42:39"
"5538";"192.168.1.130";"Week 2 PLANO";"9";"100";"148";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:42:40"
"5539";"192.168.1.109";"Week 2 PLANO";"9";"108";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:40"
"5540";"192.168.1.125";"Week 2 PLANO";"9";"94";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:41"
"5541";"192.168.1.130";"Week 2 PLANO";"9";"104";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:43"
"5542";"192.168.1.125";"Week 2 PLANO";"9";"98";"9105";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:42:45"
"5543";"192.168.1.109";"Week 2 PLANO";"9";"115";"4641";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:42:47"
"5544";"192.168.1.125";"Week 2 PLANO";"9";"102";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:49"
"5545";"192.168.1.109";"Week 2 PLANO";"9";"119";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:42:51"
"5546";"192.168.1.125";"Week 2 PLANO";"9";"105";"9105";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:42:53"
"5547";"192.168.1.110";"Week 2 PLANO";"9";"112";"6768";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:43:00"
"5548";"192.168.1.125";"Week 2 PLANO";"9";"114";"9105";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:43:02"
"5549";"192.168.1.139";"Week 2 PLANO";"9";"119";"4206";"Blue";"attempts_shallow_climb";"barge";"Success";"6";"2025-03-08 11:43:06"
"5550";"192.168.1.131";"Week 2 PLANO";"9";"132";"9156";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:43:11"
"5551";"192.168.1.130";"Week 2 PLANO";"9";"135";"148";"Blue";"attempts_deep_climb";"barge";"Success";"12";"2025-03-08 11:43:14"
"5552";"192.168.1.109";"Week 2 PLANO";"10";"3";"1296";"Red";"auton_center";"starting_pad";"Success";"0";"2025-03-08 11:48:19"
"5553";"192.168.1.130";"Week 2 PLANO";"10";"3";"7506";"Blue";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 11:48:27"
"5554";"192.168.1.109";"Week 2 PLANO";"10";"12";"1296";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 11:48:28"
"5555";"192.168.1.131";"Week 2 PLANO";"10";"17";"10312";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:48:40"
"5556";"192.168.1.110";"Week 2 PLANO";"10";"12";"2848";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:48:44"
"5557";"192.168.1.109";"Week 2 PLANO";"10";"29";"1296";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 11:48:45"
"5558";"192.168.1.125";"Week 2 PLANO";"10";"16";"4192";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:48:47"
"5559";"192.168.1.131";"Week 2 PLANO";"10";"25";"10312";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:48:49"
"5560";"192.168.1.125";"Week 2 PLANO";"10";"18";"4192";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:48:49"
"5561";"192.168.1.109";"Week 2 PLANO";"10";"35";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:48:51"
"5562";"192.168.1.110";"Week 2 PLANO";"10";"21";"2848";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:48:53"
"5563";"192.168.1.109";"Week 2 PLANO";"10";"38";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:48:55"
"5564";"192.168.1.130";"Week 2 PLANO";"10";"38";"7506";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:49:01"
"5565";"192.168.1.125";"Week 2 PLANO";"10";"33";"4192";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:04"
"5566";"192.168.1.109";"Week 2 PLANO";"10";"48";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:04"
"5567";"192.168.1.125";"Week 2 PLANO";"10";"33";"4192";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:04"
"5568";"192.168.1.131";"Week 2 PLANO";"10";"41";"10312";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:04"
"5569";"192.168.1.109";"Week 2 PLANO";"10";"49";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:49:05"
"5570";"192.168.1.110";"Week 2 PLANO";"10";"34";"2848";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:49:06"
"5571";"192.168.1.131";"Week 2 PLANO";"10";"47";"10312";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:49:11"
"5572";"192.168.1.109";"Week 2 PLANO";"10";"55";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:11"
"5573";"192.168.1.110";"Week 2 PLANO";"10";"40";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:12"
"5574";"192.168.1.130";"Week 2 PLANO";"10";"50";"7506";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:49:13"
"5575";"192.168.1.110";"Week 2 PLANO";"10";"46";"2848";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:49:18"
"5576";"192.168.1.131";"Week 2 PLANO";"10";"56";"10312";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:20"
"5577";"192.168.1.109";"Week 2 PLANO";"10";"67";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:49:23"
"5578";"192.168.1.131";"Week 2 PLANO";"10";"62";"10312";"Red";"scores_coral_level_3";"reef";"Failure";"0";"2025-03-08 11:49:26"
"5579";"192.168.1.109";"Week 2 PLANO";"10";"70";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:26"
"5580";"192.168.1.110";"Week 2 PLANO";"10";"57";"2848";"Red";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 11:49:29"
"5581";"192.168.1.131";"Week 2 PLANO";"10";"66";"10312";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:29"
"5582";"192.168.1.131";"Week 2 PLANO";"10";"70";"10312";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:49:34"
"5583";"192.168.1.110";"Week 2 PLANO";"10";"62";"2848";"Red";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 11:49:34"
"5584";"192.168.1.131";"Week 2 PLANO";"10";"75";"10312";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:38"
"5585";"192.168.1.130";"Week 2 PLANO";"10";"75";"7506";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:49:38"
"5587";"192.168.1.131";"Week 2 PLANO";"10";"82";"10312";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:49:45"
"5588";"192.168.1.110";"Week 2 PLANO";"10";"75";"2848";"Red";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 11:49:47"
"5589";"192.168.1.125";"Week 2 PLANO";"10";"77";"4192";"Blue";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 11:49:49"
"5590";"192.168.1.131";"Week 2 PLANO";"10";"86";"10312";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:50"
"5591";"192.168.1.130";"Week 2 PLANO";"10";"87";"7506";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:49:51"
"5592";"192.168.1.110";"Week 2 PLANO";"10";"80";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:52"
"5593";"192.168.1.110";"Week 2 PLANO";"10";"82";"2848";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:49:54"
"5594";"192.168.1.131";"Week 2 PLANO";"10";"91";"10312";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:49:54"
"5595";"192.168.1.130";"Week 2 PLANO";"10";"92";"7506";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:49:55"
"5596";"192.168.1.109";"Week 2 PLANO";"10";"99";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:49:56"
"5597";"192.168.1.131";"Week 2 PLANO";"10";"96";"10312";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:49:59"
"5598";"192.168.1.110";"Week 2 PLANO";"10";"89";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:50:01"
"5599";"192.168.1.130";"Week 2 PLANO";"10";"99";"7506";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:50:02"
"5600";"192.168.1.109";"Week 2 PLANO";"10";"106";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:50:02"
"5601";"192.168.1.131";"Week 2 PLANO";"10";"100";"10312";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:50:04"
"5602";"192.168.1.110";"Week 2 PLANO";"10";"93";"2848";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:50:05"
"5604";"192.168.1.110";"Week 2 PLANO";"10";"99";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:50:11"
"5605";"192.168.1.130";"Week 2 PLANO";"10";"108";"7506";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:50:12"
"5606";"192.168.1.109";"Week 2 PLANO";"10";"116";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:50:12"
"5607";"192.168.1.131";"Week 2 PLANO";"10";"114";"10312";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 11:50:18"
"5608";"192.168.1.110";"Week 2 PLANO";"10";"107";"2848";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:50:19"
"5609";"192.168.1.131";"Week 2 PLANO";"10";"115";"10312";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:50:19"
"5610";"192.168.1.110";"Week 2 PLANO";"10";"110";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:50:22"
"5611";"192.168.1.130";"Week 2 PLANO";"10";"122";"7506";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:50:25"
"5612";"192.168.1.131";"Week 2 PLANO";"10";"125";"10312";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:50:28"
"5613";"192.168.1.109";"Week 2 PLANO";"10";"134";"1296";"Red";"attempts_deep_climb";"barge";"Success";"12";"2025-03-08 11:50:30"
"5614";"192.168.1.131";"Week 2 PLANO";"10";"128";"10312";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:50:32"
"5615";"192.168.1.130";"Week 2 PLANO";"10";"129";"7506";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:50:33"
"5616";"192.168.1.110";"Week 2 PLANO";"10";"122";"2848";"Red";"scores_coral_level_3";"reef";"Failure";"0";"2025-03-08 11:50:35"
"5617";"192.168.1.131";"Week 2 PLANO";"10";"135";"10312";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 11:50:38"
"5618";"192.168.1.110";"Week 2 PLANO";"10";"130";"2848";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:50:46"
"5619";"192.168.1.125";"Week 2 PLANO";"10";"131";"4192";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:50:46"
"5620";"192.168.1.130";"Week 2 PLANO";"10";"139";"7506";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:50:47"
"5621";"192.168.1.131";"Week 2 PLANO";"10";"139";"10312";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:50:47"
"5623";"192.168.1.109";"Week 2 PLANO";"11";"5";"8818";"Red";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 11:58:28"
"5624";"192.168.1.131";"Week 2 PLANO";"11";"3";"3282";"Red";"scores_coral_level_1";"reef";"Success";"2";"2025-03-08 11:58:34"
"5625";"192.168.1.130";"Week 2 PLANO";"11";"10";"9492";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:58:40"
"5626";"192.168.1.131";"Week 2 PLANO";"11";"12";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:58:42"
"5627";"192.168.1.125";"Week 2 PLANO";"11";"5";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:58:43"
"5628";"192.168.1.125";"Week 2 PLANO";"11";"6";"9128";"Blue";"scores_coral_level_2";"reef";"Success";"4";"2025-03-08 11:58:44"
"5629";"192.168.1.131";"Week 2 PLANO";"11";"18";"3282";"Red";"scores_coral_level_1";"reef";"Success";"2";"2025-03-08 11:58:48"
"5630";"192.168.1.125";"Week 2 PLANO";"11";"12";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:58:50"
"5631";"192.168.1.110";"Week 2 PLANO";"11";"12";"8816";"Red";"scores_coral_level_1";"reef";"Success";"2";"2025-03-08 11:58:51"
"5632";"192.168.1.130";"Week 2 PLANO";"11";"24";"9492";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:58:54"
"5633";"192.168.1.131";"Week 2 PLANO";"11";"25";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:58:56"
"5634";"192.168.1.125";"Week 2 PLANO";"11";"23";"9128";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:59:01"
"5635";"192.168.1.131";"Week 2 PLANO";"11";"32";"3282";"Red";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 11:59:02"
"5636";"192.168.1.125";"Week 2 PLANO";"11";"26";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:59:04"
"5637";"192.168.1.130";"Week 2 PLANO";"11";"36";"9492";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:59:06"
"5638";"192.168.1.110";"Week 2 PLANO";"11";"27";"8816";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:59:06"
"5639";"192.168.1.109";"Week 2 PLANO";"11";"44";"8818";"Red";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 11:59:07"
"5640";"192.168.1.131";"Week 2 PLANO";"11";"38";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:59:09"
"5641";"192.168.1.125";"Week 2 PLANO";"11";"35";"9128";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 11:59:13"
"5642";"192.168.1.130";"Week 2 PLANO";"11";"45";"9492";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:59:15"
"5643";"192.168.1.131";"Week 2 PLANO";"11";"45";"3282";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:59:16"
"5644";"192.168.1.125";"Week 2 PLANO";"11";"41";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:59:19"
"5645";"192.168.1.109";"Week 2 PLANO";"11";"58";"8818";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 11:59:22"
"5646";"192.168.1.131";"Week 2 PLANO";"11";"53";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:59:24"
"5647";"192.168.1.125";"Week 2 PLANO";"11";"46";"9128";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:59:24"
"5648";"192.168.1.125";"Week 2 PLANO";"11";"50";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:59:28"
"5649";"192.168.1.109";"Week 2 PLANO";"11";"69";"8818";"Red";"scores_algae_net";"net";"Failure";"0";"2025-03-08 11:59:32"
"5650";"192.168.1.125";"Week 2 PLANO";"11";"55";"9128";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:59:33"
"5651";"192.168.1.131";"Week 2 PLANO";"11";"63";"3282";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:59:34"
"5652";"192.168.1.139";"Week 2 PLANO";"11";"57";"6526";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 11:59:35"
"5653";"192.168.1.139";"Week 2 PLANO";"11";"59";"6526";"Blue";"scores_coral_level_2";"reef";"Failure";"0";"2025-03-08 11:59:37"
"5654";"192.168.1.139";"Week 2 PLANO";"11";"60";"6526";"Blue";"starting_position_2";"starting_pad";"Success";"0";"2025-03-08 11:59:38"
"5655";"192.168.1.125";"Week 2 PLANO";"11";"60";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 11:59:39"
"5656";"192.168.1.125";"Week 2 PLANO";"11";"65";"9128";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 11:59:43"
"5657";"192.168.1.139";"Week 2 PLANO";"11";"67";"6526";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:59:45"
"5658";"192.168.1.125";"Week 2 PLANO";"11";"76";"9128";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:59:54"
"5659";"192.168.1.131";"Week 2 PLANO";"11";"85";"3282";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:59:56"
"5660";"192.168.1.130";"Week 2 PLANO";"11";"86";"9492";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:59:57"
"5661";"192.168.1.109";"Week 2 PLANO";"11";"94";"8818";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 11:59:57"
"5662";"192.168.1.130";"Week 2 PLANO";"13";"13";"5682";"Blue";"starting_position_1";"starting_pad";"Success";"0";"2025-03-08 12:12:39"
"5663";"192.168.1.125";"Week 2 PLANO";"13";"5";"4153";"Blue";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 12:12:39"
"5664";"192.168.1.139";"Week 2 PLANO";"13";"13";"148";"Blue";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 12:12:48"
"5665";"192.168.1.125";"Week 2 PLANO";"13";"14";"4153";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:12:48"
"5666";"192.168.1.139";"Week 2 PLANO";"13";"14";"148";"Blue";"auton_center";"starting_pad";"Success";"0";"2025-03-08 12:12:49"
"5667";"192.168.1.139";"Week 2 PLANO";"13";"16";"148";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 12:12:50"
"5668";"192.168.1.110";"Week 2 PLANO";"13";"15";"9105";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 12:12:50"
"5669";"192.168.1.110";"Week 2 PLANO";"13";"16";"9105";"Red";"auton_left";"starting_pad";"Success";"0";"2025-03-08 12:12:51"
"5670";"192.168.1.139";"Week 2 PLANO";"13";"22";"148";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 12:12:56"
"5671";"192.168.1.130";"Week 2 PLANO";"13";"31";"5682";"Blue";"crosses_starting_line";"starting_line";"Success";"0";"2025-03-08 12:12:57"
"5672";"192.168.1.109";"Week 2 PLANO";"13";"38";"7506";"Red";"crosses_starting_line";"starting_line";"Success";"0";"2025-03-08 12:12:58"
"5673";"192.168.1.109";"Week 2 PLANO";"13";"40";"7506";"Red";"starting_position_2";"starting_pad";"Success";"0";"2025-03-08 12:12:59"
"5674";"192.168.1.109";"Week 2 PLANO";"13";"41";"7506";"Red";"auton_center";"starting_pad";"Success";"0";"2025-03-08 12:13:00"
"5675";"192.168.1.110";"Week 2 PLANO";"13";"28";"9105";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:13:04"
"5676";"192.168.1.110";"Week 2 PLANO";"13";"32";"9105";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 12:13:08"
"5677";"192.168.1.139";"Week 2 PLANO";"13";"36";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:13:11"
"5678";"192.168.1.131";"Week 2 PLANO";"13";"44";"10340";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:13:11"
"5679";"192.168.1.110";"Week 2 PLANO";"13";"35";"9105";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:13:11"
"5680";"192.168.1.110";"Week 2 PLANO";"13";"38";"9105";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 12:13:13"
"5681";"192.168.1.125";"Week 2 PLANO";"13";"40";"4153";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 12:13:15"
"5682";"192.168.1.131";"Week 2 PLANO";"13";"48";"10340";"Red";"crosses_starting_line";"starting_line";"Success";"0";"2025-03-08 12:13:15"
"5683";"192.168.1.139";"Week 2 PLANO";"13";"42";"148";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 12:13:17"
"5684";"192.168.1.110";"Week 2 PLANO";"13";"44";"9105";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 12:13:19"
"5685";"192.168.1.131";"Week 2 PLANO";"13";"52";"10340";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 12:13:19"
"5686";"192.168.1.110";"Week 2 PLANO";"13";"45";"9105";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:13:20"
"5687";"192.168.1.125";"Week 2 PLANO";"13";"48";"4153";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:13:22"
"5688";"192.168.1.130";"Week 2 PLANO";"13";"56";"5682";"Blue";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 12:13:23"
"5689";"192.168.1.125";"Week 2 PLANO";"13";"50";"4153";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 12:13:25"
"5690";"192.168.1.139";"Week 2 PLANO";"13";"53";"148";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 12:13:28"
"5691";"192.168.1.139";"Week 2 PLANO";"13";"61";"148";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 12:13:36"
"5692";"192.168.1.125";"Week 2 PLANO";"13";"64";"4153";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:13:39"
"5693";"192.168.1.139";"Week 2 PLANO";"13";"69";"148";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 12:13:44"
"5694";"192.168.1.139";"Week 2 PLANO";"13";"71";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:13:45"
"5695";"192.168.1.139";"Week 2 PLANO";"13";"72";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:13:46"
"5696";"192.168.1.139";"Week 2 PLANO";"13";"72";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:13:47"
"5697";"192.168.1.125";"Week 2 PLANO";"13";"72";"4153";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 12:13:47"
"5698";"192.168.1.139";"Week 2 PLANO";"13";"80";"148";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 12:13:55"
"5699";"192.168.1.139";"Week 2 PLANO";"13";"83";"148";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 12:13:58"
"5700";"192.168.1.139";"Week 2 PLANO";"13";"86";"148";"Blue";"scores_algae_net";"net";"Success";"4";"2025-03-08 12:14:01"
"5701";"192.168.1.139";"Week 2 PLANO";"13";"88";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:14:02"
"5702";"192.168.1.131";"Week 2 PLANO";"13";"98";"10340";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:14:05"
"5703";"192.168.1.125";"Week 2 PLANO";"13";"99";"4153";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:14:14"
"5704";"192.168.1.139";"Week 2 PLANO";"13";"100";"148";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 12:14:14"
"5705";"192.168.1.139";"Week 2 PLANO";"13";"102";"148";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 12:14:16"
"5706";"192.168.1.131";"Week 2 PLANO";"13";"111";"10340";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 12:14:18"
"5707";"192.168.1.139";"Week 2 PLANO";"13";"107";"148";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 12:14:22"
"5708";"192.168.1.131";"Week 2 PLANO";"13";"119";"10340";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:14:25"
"5709";"192.168.1.139";"Week 2 PLANO";"13";"114";"148";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 12:14:28"
"5710";"192.168.1.139";"Week 2 PLANO";"13";"118";"148";"Blue";"scores_algae_net";"net";"Success";"4";"2025-03-08 12:14:33"
"5711";"192.168.1.109";"Week 2 PLANO";"13";"133";"7506";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:14:33"
"5712";"192.168.1.131";"Week 2 PLANO";"13";"129";"10340";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 12:14:36"
"5713";"192.168.1.139";"Week 2 PLANO";"13";"122";"148";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 12:14:37"
"5714";"192.168.1.139";"Week 2 PLANO";"13";"123";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:14:38"
"5715";"192.168.1.139";"Week 2 PLANO";"13";"130";"148";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 12:14:44"
"5716";"192.168.1.125";"Week 2 PLANO";"13";"130";"4153";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:14:45"
"5717";"192.168.1.125";"Week 2 PLANO";"13";"131";"4153";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 12:14:46"
"5718";"192.168.1.139";"Week 2 PLANO";"13";"133";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 12:14:48"
"5719";"192.168.1.139";"Week 2 PLANO";"13";"138";"148";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 12:14:53"
"5720";"192.168.1.141";"Week 2 PLANO";"16";"1";"5431";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 13:22:42"
"5721";"192.168.1.135";"Week 2 PLANO";"16";"0";"9128";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 13:22:48"
"5722";"192.168.1.135";"Week 2 PLANO";"16";"2";"9128";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:22:50"
"5723";"192.168.1.135";"Week 2 PLANO";"16";"4";"9128";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 13:22:52"
"5724";"192.168.1.135";"Week 2 PLANO";"16";"9";"9128";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 13:22:57"
"5725";"192.168.1.135";"Week 2 PLANO";"16";"10";"9128";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 13:22:58"
"5726";"192.168.1.126";"Week 2 PLANO";"16";"7";"1296";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:23:02"
"5727";"192.168.1.135";"Week 2 PLANO";"16";"16";"9128";"Red";"auton_right";"starting_pad";"Success";"0";"2025-03-08 13:23:04"
"5728";"192.168.1.141";"Week 2 PLANO";"16";"30";"5431";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 13:23:10"
"5729";"192.168.1.135";"Week 2 PLANO";"16";"24";"9128";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:23:12"
"5730";"192.168.1.104";"Week 2 PLANO";"16";"25";"10312";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:23:13"
"5731";"192.168.1.135";"Week 2 PLANO";"16";"26";"9128";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:23:14"
"5732";"192.168.1.104";"Week 2 PLANO";"16";"29";"10312";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:23:17"
"5733";"192.168.1.126";"Week 2 PLANO";"16";"22";"1296";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:23:17"
"5734";"192.168.1.104";"Week 2 PLANO";"16";"31";"10312";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:23:19"
"5735";"192.168.1.104";"Week 2 PLANO";"16";"32";"10312";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:23:20"
"5736";"192.168.1.135";"Week 2 PLANO";"16";"33";"9128";"Red";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 13:23:21"
"5737";"192.168.1.104";"Week 2 PLANO";"16";"36";"10312";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:23:24"
"5738";"192.168.1.126";"Week 2 PLANO";"16";"29";"1296";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:23:24"
"5739";"192.168.1.135";"Week 2 PLANO";"16";"37";"9128";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 13:23:25"
"5740";"192.168.1.104";"Week 2 PLANO";"16";"37";"10312";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:23:26"
"5741";"192.168.1.126";"Week 2 PLANO";"16";"31";"1296";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:23:27"
"5742";"192.168.1.126";"Week 2 PLANO";"16";"37";"1296";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:23:32"
"5743";"192.168.1.132";"Week 2 PLANO";"16";"36";"7506";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:23:33"
"5744";"192.168.1.135";"Week 2 PLANO";"16";"46";"9128";"Red";"scores_algae_net";"net";"Success";"4";"2025-03-08 13:23:34"
"5745";"192.168.1.104";"Week 2 PLANO";"16";"47";"10312";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 13:23:35"
"5746";"192.168.1.104";"Week 2 PLANO";"16";"50";"10312";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:23:38"
"5747";"192.168.1.126";"Week 2 PLANO";"16";"43";"1296";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:23:38"
"5748";"192.168.1.135";"Week 2 PLANO";"16";"54";"9128";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:23:42"
"5749";"192.168.1.135";"Week 2 PLANO";"16";"56";"9128";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:23:44"
"5750";"192.168.1.141";"Week 2 PLANO";"16";"70";"5431";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 13:23:51"
"5751";"192.168.1.135";"Week 2 PLANO";"16";"64";"9128";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 13:23:52"
"5752";"192.168.1.135";"Week 2 PLANO";"16";"67";"9128";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:23:55"
"5753";"192.168.1.135";"Week 2 PLANO";"16";"69";"9128";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:23:57"
"5754";"192.168.1.101";"Week 2 PLANO";"16";"61";"8732";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:23:57"
"5755";"192.168.1.135";"Week 2 PLANO";"16";"71";"9128";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:23:59"
"5756";"192.168.1.101";"Week 2 PLANO";"16";"67";"8732";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:24:03"
"5757";"192.168.1.135";"Week 2 PLANO";"16";"76";"9128";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 13:24:04"
"5758";"192.168.1.126";"Week 2 PLANO";"16";"71";"1296";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:24:06"
"5759";"192.168.1.126";"Week 2 PLANO";"16";"74";"1296";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:24:10"
"5760";"192.168.1.135";"Week 2 PLANO";"16";"82";"9128";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:24:10"
"5761";"192.168.1.135";"Week 2 PLANO";"16";"85";"9128";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:24:13"
"5762";"192.168.1.126";"Week 2 PLANO";"16";"80";"1296";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:24:15"
"5763";"192.168.1.132";"Week 2 PLANO";"16";"79";"7506";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:24:16"
"5764";"192.168.1.135";"Week 2 PLANO";"16";"90";"9128";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:24:18"
"5765";"192.168.1.104";"Week 2 PLANO";"16";"93";"10312";"Red";"disabled";"anywhere";"Success";"0";"2025-03-08 13:24:21"
"5766";"192.168.1.101";"Week 2 PLANO";"16";"89";"8732";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 13:24:25"
"5767";"192.168.1.135";"Week 2 PLANO";"16";"97";"9128";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 13:24:25"
"5768";"192.168.1.135";"Week 2 PLANO";"16";"100";"9128";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:24:28"
"5769";"192.168.1.126";"Week 2 PLANO";"16";"96";"1296";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:24:32"
"5770";"192.168.1.135";"Week 2 PLANO";"16";"105";"9128";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 13:24:33"
"5771";"192.168.1.135";"Week 2 PLANO";"16";"108";"9128";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 13:24:36"
"5772";"192.168.1.126";"Week 2 PLANO";"16";"103";"1296";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:24:39"
"5773";"192.168.1.132";"Week 2 PLANO";"16";"106";"7506";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:24:42"
"5774";"192.168.1.135";"Week 2 PLANO";"16";"115";"9128";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:24:43"
"5775";"192.168.1.135";"Week 2 PLANO";"16";"119";"9128";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:24:47"
"5776";"192.168.1.101";"Week 2 PLANO";"16";"112";"8732";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 13:24:47"
"5777";"192.168.1.135";"Week 2 PLANO";"16";"126";"9128";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:24:54"
"5778";"192.168.1.126";"Week 2 PLANO";"16";"120";"1296";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:24:55"
"5779";"192.168.1.135";"Week 2 PLANO";"16";"128";"9128";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 13:24:56"
"5780";"192.168.1.141";"Week 2 PLANO";"16";"137";"5431";"Red";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 13:24:58"
"5781";"192.168.1.132";"Week 2 PLANO";"16";"132";"7506";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:25:12"
"5782";"192.168.1.141";"Week 2 PLANO";"16";"148";"5431";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:25:16"
"5783";"192.168.1.126";"Week 2 PLANO";"16";"133";"1296";"Blue";"attempts_deep_climb";"barge";"Failure";"0";"2025-03-08 13:25:17"
"5784";"192.168.1.135";"Week 2 PLANO";"16";"141";"9128";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 13:25:18"
"5785";"192.168.1.135";"Week 2 PLANO";"16";"141";"9128";"Red";"attempts_deep_climb";"barge";"Success";"12";"2025-03-08 13:25:24"
"5786";"192.168.1.104";"Week 2 PLANO";"17";"2";"4641";"Red";"auton_center";"starting_pad";"Success";"0";"2025-03-08 13:33:32"
"5787";"192.168.1.135";"Week 2 PLANO";"17";"4";"5682";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 13:33:33"
"5788";"192.168.1.135";"Week 2 PLANO";"17";"9";"5682";"Red";"starting_position_3";"starting_pad";"Success";"0";"2025-03-08 13:33:39"
"5789";"192.168.1.141";"Week 2 PLANO";"17";"19";"6171";"Red";"crosses_starting_line";"starting_line";"Success";"0";"2025-03-08 13:33:41"
"5790";"192.168.1.132";"Week 2 PLANO";"17";"10";"4153";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:33:49"
"5791";"192.168.1.104";"Week 2 PLANO";"17";"23";"4641";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:33:53"
"5792";"192.168.1.104";"Week 2 PLANO";"17";"28";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:33:58"
"5793";"192.168.1.104";"Week 2 PLANO";"17";"33";"4641";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 13:34:03"
"5794";"192.168.1.104";"Week 2 PLANO";"17";"38";"4641";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:34:09"
"5795";"192.168.1.104";"Week 2 PLANO";"17";"44";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:34:15"
"5796";"192.168.1.104";"Week 2 PLANO";"17";"52";"4641";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:34:23"
"5797";"192.168.1.135";"Week 2 PLANO";"17";"54";"5682";"Red";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 13:34:24"
"5798";"192.168.1.104";"Week 2 PLANO";"17";"58";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:34:29"
"5799";"192.168.1.104";"Week 2 PLANO";"17";"63";"4641";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:34:33"
"5800";"192.168.1.104";"Week 2 PLANO";"17";"67";"4641";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:34:37"
"5801";"192.168.1.104";"Week 2 PLANO";"17";"75";"4641";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:34:45"
"5802";"192.168.1.132";"Week 2 PLANO";"17";"71";"4153";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:34:49"
"5803";"192.168.1.104";"Week 2 PLANO";"17";"83";"4641";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 13:34:53"
"5804";"192.168.1.104";"Week 2 PLANO";"17";"86";"4641";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 13:34:56"
"5805";"192.168.1.132";"Week 2 PLANO";"17";"86";"4153";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:35:05"
"5806";"192.168.1.104";"Week 2 PLANO";"17";"114";"4641";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 13:35:24"
"5807";"192.168.1.132";"Week 2 PLANO";"17";"111";"4153";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:35:29"
"5808";"192.168.1.104";"Week 2 PLANO";"17";"126";"4641";"Red";"scores_coral_level_2";"reef";"Failure";"0";"2025-03-08 13:35:37"
"5809";"192.168.1.132";"Week 2 PLANO";"17";"123";"4153";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 13:35:42"
"5810";"192.168.1.132";"Week 2 PLANO";"17";"128";"4153";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:35:46"
"5811";"192.168.1.104";"Week 2 PLANO";"17";"141";"4641";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:35:51"
"5812";"192.168.1.141";"Week 2 PLANO";"17";"149";"6171";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:35:52"
"5813";"192.168.1.135";"Week 2 PLANO";"17";"141";"5682";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:36:00"
"5814";"192.168.1.126";"Week 2 PLANO";"17";"134";"3355";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:36:00"
"5815";"192.168.1.135";"Week 2 PLANO";"18";"8";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:42:23"
"5816";"192.168.1.126";"Week 2 PLANO";"18";"2";"8816";"Blue";"plays_defense";"opponent_side";"Failure";"0";"2025-03-08 13:42:25"
"5817";"192.168.1.104";"Week 2 PLANO";"18";"11";"9457";"Red";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 13:42:26"
"5818";"192.168.1.141";"Week 2 PLANO";"18";"20";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:42:28"
"5819";"192.168.1.135";"Week 2 PLANO";"18";"21";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:42:35"
"5820";"192.168.1.141";"Week 2 PLANO";"18";"29";"3282";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:42:36"
"5821";"192.168.1.101";"Week 2 PLANO";"18";"15";"7119";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 13:42:38"
"5822";"192.168.1.135";"Week 2 PLANO";"18";"28";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:42:43"
"5823";"192.168.1.135";"Week 2 PLANO";"18";"30";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:42:45"
"5824";"192.168.1.135";"Week 2 PLANO";"18";"31";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:42:46"
"5825";"192.168.1.135";"Week 2 PLANO";"18";"32";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:42:47"
"5826";"192.168.1.135";"Week 2 PLANO";"18";"32";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:42:47"
"5827";"192.168.1.135";"Week 2 PLANO";"18";"33";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:42:48"
"5828";"192.168.1.135";"Week 2 PLANO";"18";"33";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:42:48"
"5829";"192.168.1.135";"Week 2 PLANO";"18";"34";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:42:49"
"5830";"192.168.1.135";"Week 2 PLANO";"18";"37";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:42:52"
"5831";"192.168.1.126";"Week 2 PLANO";"18";"29";"8816";"Blue";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 13:42:52"
"5832";"192.168.1.135";"Week 2 PLANO";"18";"37";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:42:52"
"5833";"192.168.1.135";"Week 2 PLANO";"18";"37";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:42:52"
"5834";"192.168.1.135";"Week 2 PLANO";"18";"38";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:42:53"
"5835";"192.168.1.104";"Week 2 PLANO";"18";"38";"9457";"Red";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 13:42:53"
"5836";"192.168.1.135";"Week 2 PLANO";"18";"38";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:42:53"
"5837";"192.168.1.135";"Week 2 PLANO";"18";"39";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:42:54"
"5838";"192.168.1.135";"Week 2 PLANO";"18";"40";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:42:55"
"5839";"192.168.1.135";"Week 2 PLANO";"18";"41";"148";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 13:42:56"
"5840";"192.168.1.141";"Week 2 PLANO";"18";"49";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:42:57"
"5841";"192.168.1.135";"Week 2 PLANO";"18";"42";"148";"Red";"scores_algae_net";"net";"Success";"4";"2025-03-08 13:42:57"
"5842";"192.168.1.132";"Week 2 PLANO";"18";"41";"3310";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:43:04"
"5843";"192.168.1.135";"Week 2 PLANO";"18";"51";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:43:06"
"5844";"192.168.1.135";"Week 2 PLANO";"18";"52";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:43:07"
"5845";"192.168.1.104";"Week 2 PLANO";"18";"53";"9457";"Red";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 13:43:08"
"5846";"192.168.1.132";"Week 2 PLANO";"18";"46";"3310";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:43:10"
"5847";"192.168.1.135";"Week 2 PLANO";"18";"56";"148";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 13:43:11"
"5848";"192.168.1.132";"Week 2 PLANO";"18";"52";"3310";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:43:16"
"5849";"192.168.1.132";"Week 2 PLANO";"18";"57";"3310";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:43:21"
"5850";"192.168.1.135";"Week 2 PLANO";"18";"66";"148";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:43:21"
"5851";"192.168.1.135";"Week 2 PLANO";"18";"72";"148";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:43:27"
"5852";"192.168.1.126";"Week 2 PLANO";"18";"66";"8816";"Blue";"plays_defense";"opponent_side";"Failure";"0";"2025-03-08 13:43:28"
"5853";"192.168.1.141";"Week 2 PLANO";"18";"90";"3282";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:43:38"
"5854";"192.168.1.135";"Week 2 PLANO";"18";"84";"148";"Red";"attempts_deep_climb";"barge";"Success";"12";"2025-03-08 13:43:39"
"5855";"192.168.1.132";"Week 2 PLANO";"18";"77";"3310";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:43:40"
"5856";"192.168.1.126";"Week 2 PLANO";"18";"78";"8816";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:43:40"
"5857";"192.168.1.141";"Week 2 PLANO";"19";"2";"2848";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 13:50:56"
"5858";"192.168.1.141";"Week 2 PLANO";"19";"9";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:51:03"
"5859";"192.168.1.141";"Week 2 PLANO";"19";"11";"2848";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 13:51:05"
"5860";"192.168.1.104";"Week 2 PLANO";"19";"6";"4192";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:51:07"
"5861";"192.168.1.135";"Week 2 PLANO";"19";"8";"8818";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 13:51:09"
"5862";"192.168.1.135";"Week 2 PLANO";"19";"9";"8818";"Red";"auton_center";"starting_pad";"Success";"0";"2025-03-08 13:51:10"
"5863";"192.168.1.141";"Week 2 PLANO";"19";"18";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:51:12"
"5864";"192.168.1.104";"Week 2 PLANO";"19";"18";"4192";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 13:51:19"
"5865";"192.168.1.141";"Week 2 PLANO";"19";"28";"2848";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:51:22"
"5866";"192.168.1.141";"Week 2 PLANO";"19";"31";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:51:24"
"5867";"192.168.1.132";"Week 2 PLANO";"19";"16";"4206";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 13:51:26"
"5868";"192.168.1.126";"Week 2 PLANO";"19";"17";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:51:26"
"5869";"192.168.1.104";"Week 2 PLANO";"19";"25";"4192";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:51:27"
"5870";"192.168.1.101";"Week 2 PLANO";"19";"18";"6768";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 13:51:27"
"5871";"192.168.1.132";"Week 2 PLANO";"19";"22";"4206";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:51:32"
"5872";"192.168.1.135";"Week 2 PLANO";"19";"32";"8818";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 13:51:32"
"5873";"192.168.1.141";"Week 2 PLANO";"19";"39";"2848";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:51:33"
"5874";"192.168.1.104";"Week 2 PLANO";"19";"31";"4192";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:51:33"
"5875";"192.168.1.104";"Week 2 PLANO";"19";"40";"4192";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:51:41"
"5876";"192.168.1.132";"Week 2 PLANO";"19";"32";"4206";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 13:51:41"
"5877";"192.168.1.104";"Week 2 PLANO";"19";"44";"4192";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:51:45"
"5878";"192.168.1.141";"Week 2 PLANO";"19";"55";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:51:49"
"5879";"192.168.1.126";"Week 2 PLANO";"19";"42";"10312";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 13:51:51"
"5880";"192.168.1.141";"Week 2 PLANO";"19";"64";"2848";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:51:57"
"5881";"192.168.1.104";"Week 2 PLANO";"19";"58";"4192";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:51:59"
"5882";"192.168.1.141";"Week 2 PLANO";"19";"70";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:52:04"
"5883";"192.168.1.104";"Week 2 PLANO";"19";"63";"4192";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:52:04"
"5884";"192.168.1.126";"Week 2 PLANO";"19";"56";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:52:05"
"5885";"192.168.1.126";"Week 2 PLANO";"19";"61";"10312";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 13:52:09"
"5886";"192.168.1.104";"Week 2 PLANO";"19";"69";"4192";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:52:10"
"5887";"192.168.1.132";"Week 2 PLANO";"19";"63";"4206";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 13:52:12"
"5888";"192.168.1.135";"Week 2 PLANO";"19";"72";"8818";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 13:52:13"
"5889";"192.168.1.101";"Week 2 PLANO";"19";"66";"6768";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 13:52:15"
"5890";"192.168.1.126";"Week 2 PLANO";"19";"75";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:52:24"
"5891";"192.168.1.126";"Week 2 PLANO";"19";"78";"10312";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 13:52:26"
"5892";"192.168.1.101";"Week 2 PLANO";"19";"78";"6768";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 13:52:27"
"5893";"192.168.1.126";"Week 2 PLANO";"19";"83";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:52:32"
"5894";"192.168.1.104";"Week 2 PLANO";"19";"93";"4192";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 13:52:34"
"5895";"192.168.1.126";"Week 2 PLANO";"19";"88";"10312";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 13:52:37"
"5896";"192.168.1.135";"Week 2 PLANO";"19";"96";"8818";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 13:52:37"
"5897";"192.168.1.104";"Week 2 PLANO";"19";"102";"4192";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 13:52:44"
"5898";"192.168.1.104";"Week 2 PLANO";"19";"103";"4192";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 13:52:44"
"5899";"192.168.1.104";"Week 2 PLANO";"19";"105";"4192";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 13:52:46"
"5900";"192.168.1.126";"Week 2 PLANO";"19";"103";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:52:51"
"5901";"192.168.1.126";"Week 2 PLANO";"19";"107";"10312";"Blue";"scores_coral_level_2";"reef";"Failure";"0";"2025-03-08 13:52:55"
"5902";"192.168.1.104";"Week 2 PLANO";"19";"116";"4192";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:52:57"
"5903";"192.168.1.141";"Week 2 PLANO";"19";"125";"2848";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 13:52:58"
"5904";"192.168.1.126";"Week 2 PLANO";"19";"112";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:53:01"
"5905";"192.168.1.141";"Week 2 PLANO";"19";"127";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:53:01"
"5906";"192.168.1.132";"Week 2 PLANO";"19";"118";"4206";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:53:07"
"5907";"192.168.1.126";"Week 2 PLANO";"19";"123";"10312";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 13:53:12"
"5908";"192.168.1.132";"Week 2 PLANO";"19";"123";"4206";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 13:53:13"
"5909";"192.168.1.101";"Week 2 PLANO";"19";"125";"6768";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 13:53:14"
"5910";"192.168.1.141";"Week 2 PLANO";"19";"148";"2848";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:53:24"
"5911";"192.168.1.132";"Week 2 PLANO";"19";"132";"4206";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:53:25"
"5912";"192.168.1.126";"Week 2 PLANO";"19";"133";"10312";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:53:26"
"5913";"192.168.1.104";"Week 2 PLANO";"19";"141";"4192";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:53:26"
"5914";"192.168.1.135";"Week 2 PLANO";"19";"141";"8818";"Red";"attempts_parked";"barge";"Failure";"0";"2025-03-08 13:53:31"
"5915";"192.168.1.135";"Week 2 PLANO";"19";"141";"8818";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:53:33"
"5916";"192.168.1.135";"Week 2 PLANO";"19";"141";"8818";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:53:33"
"5917";"192.168.1.135";"Week 2 PLANO";"19";"141";"8818";"Red";"attempts_parked";"barge";"Failure";"0";"2025-03-08 13:53:40"
"5918";"192.168.1.135";"Week 2 PLANO";"19";"141";"8818";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 13:53:42"
"5919";"192.168.1.141";"Week 2 PLANO";"20";"5";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 13:59:54"
"5920";"192.168.1.141";"Week 2 PLANO";"20";"7";"1296";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 13:59:55"
"5921";"192.168.1.135";"Week 2 PLANO";"20";"0";"10340";"Red";"auton_right";"starting_pad";"Success";"0";"2025-03-08 13:59:56"
"5922";"192.168.1.141";"Week 2 PLANO";"20";"12";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:00:00"
"5923";"192.168.1.135";"Week 2 PLANO";"20";"5";"10340";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:00:01"
"5924";"192.168.1.126";"Week 2 PLANO";"20";"7";"9156";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 14:00:11"
"5925";"192.168.1.104";"Week 2 PLANO";"20";"16";"6526";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 14:00:12"
"5926";"192.168.1.135";"Week 2 PLANO";"20";"20";"10340";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:00:16"
"5927";"192.168.1.141";"Week 2 PLANO";"20";"28";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:00:17"
"5928";"192.168.1.132";"Week 2 PLANO";"20";"15";"5431";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 14:00:20"
"5929";"192.168.1.141";"Week 2 PLANO";"20";"31";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:00:20"
"5930";"192.168.1.135";"Week 2 PLANO";"20";"28";"10340";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:00:23"
"5931";"192.168.1.126";"Week 2 PLANO";"20";"21";"9156";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:00:25"
"5932";"192.168.1.141";"Week 2 PLANO";"20";"37";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:00:26"
"5933";"192.168.1.135";"Week 2 PLANO";"20";"30";"10340";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:00:26"
"5934";"192.168.1.101";"Week 2 PLANO";"20";"26";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:00:30"
"5935";"192.168.1.141";"Week 2 PLANO";"20";"48";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:00:37"
"5936";"192.168.1.132";"Week 2 PLANO";"20";"34";"5431";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:00:39"
"5937";"192.168.1.104";"Week 2 PLANO";"20";"43";"6526";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:00:40"
"5938";"192.168.1.141";"Week 2 PLANO";"20";"53";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:00:41"
"5939";"192.168.1.101";"Week 2 PLANO";"20";"42";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:00:46"
"5940";"192.168.1.135";"Week 2 PLANO";"20";"53";"10340";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 14:00:48"
"5941";"192.168.1.126";"Week 2 PLANO";"20";"49";"9156";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:00:53"
"5942";"192.168.1.135";"Week 2 PLANO";"20";"58";"10340";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 14:00:54"
"5943";"192.168.1.141";"Week 2 PLANO";"20";"65";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:00:54"
"5944";"192.168.1.135";"Week 2 PLANO";"20";"59";"10340";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:00:55"
"5945";"192.168.1.135";"Week 2 PLANO";"20";"61";"10340";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:00:57"
"5946";"192.168.1.141";"Week 2 PLANO";"20";"69";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:00:57"
"5947";"192.168.1.101";"Week 2 PLANO";"20";"54";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:00:58"
"5948";"192.168.1.141";"Week 2 PLANO";"20";"75";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:01:04"
"5949";"192.168.1.135";"Week 2 PLANO";"20";"70";"10340";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 14:01:06"
"5950";"192.168.1.141";"Week 2 PLANO";"20";"78";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:01:06"
"5951";"192.168.1.135";"Week 2 PLANO";"20";"73";"10340";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:01:09"
"5952";"192.168.1.132";"Week 2 PLANO";"20";"65";"5431";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 14:01:10"
"5953";"192.168.1.135";"Week 2 PLANO";"20";"79";"10340";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 14:01:15"
"5954";"192.168.1.126";"Week 2 PLANO";"20";"74";"9156";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:01:17"
"5955";"192.168.1.141";"Week 2 PLANO";"20";"94";"1296";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:01:22"
"5956";"192.168.1.126";"Week 2 PLANO";"20";"86";"9156";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:01:29"
"5957";"192.168.1.132";"Week 2 PLANO";"20";"89";"5431";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:01:34"
"5958";"192.168.1.141";"Week 2 PLANO";"20";"106";"1296";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:01:35"
"5959";"192.168.1.104";"Week 2 PLANO";"20";"100";"6526";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:01:36"
"5960";"192.168.1.132";"Week 2 PLANO";"20";"93";"5431";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:01:38"
"5961";"192.168.1.101";"Week 2 PLANO";"20";"95";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:01:39"
"5962";"192.168.1.104";"Week 2 PLANO";"20";"105";"6526";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:01:41"
"5963";"192.168.1.132";"Week 2 PLANO";"20";"101";"5431";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:01:45"
"5964";"192.168.1.135";"Week 2 PLANO";"20";"113";"10340";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:01:49"
"5965";"192.168.1.126";"Week 2 PLANO";"20";"107";"9156";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:01:50"
"5966";"192.168.1.135";"Week 2 PLANO";"20";"117";"10340";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:01:53"
"5967";"192.168.1.135";"Week 2 PLANO";"20";"126";"10340";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:02:02"
"5969";"192.168.1.101";"Week 2 PLANO";"20";"127";"10014";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:02:11"
"5970";"192.168.1.126";"Week 2 PLANO";"20";"130";"9156";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:02:14"
"5971";"192.168.1.141";"Week 2 PLANO";"20";"146";"1296";"Red";"attempts_shallow_climb";"barge";"Success";"6";"2025-03-08 14:02:14"
"5972";"192.168.1.132";"Week 2 PLANO";"20";"133";"5431";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:02:21"
"5973";"192.168.1.135";"Week 2 PLANO";"20";"141";"10340";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:02:23"
"5974";"192.168.1.104";"Week 2 PLANO";"20";"141";"6526";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:02:24"
"5975";"192.168.1.132";"Week 2 PLANO";"20";"133";"5431";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:02:25"
"5976";"192.168.1.141";"Week 2 PLANO";"21";"2";"7506";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 14:07:54"
"5977";"192.168.1.104";"Week 2 PLANO";"21";"3";"9492";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 14:08:03"
"5978";"192.168.1.104";"Week 2 PLANO";"21";"5";"9492";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 14:08:05"
"5979";"192.168.1.104";"Week 2 PLANO";"21";"7";"9492";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 14:08:07"
"5980";"192.168.1.126";"Week 2 PLANO";"21";"3";"7091";"Blue";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 14:08:10"
"5981";"192.168.1.135";"Week 2 PLANO";"21";"11";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:11"
"5982";"192.168.1.132";"Week 2 PLANO";"21";"5";"9105";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:08:14"
"5983";"192.168.1.135";"Week 2 PLANO";"21";"16";"5411";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 14:08:16"
"5984";"192.168.1.132";"Week 2 PLANO";"21";"8";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:16"
"5985";"192.168.1.104";"Week 2 PLANO";"21";"19";"9492";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:19"
"5986";"192.168.1.132";"Week 2 PLANO";"21";"11";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 14:08:19"
"5987";"192.168.1.135";"Week 2 PLANO";"21";"21";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:21"
"5988";"192.168.1.132";"Week 2 PLANO";"21";"13";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:22"
"5989";"192.168.1.132";"Week 2 PLANO";"21";"15";"9105";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:08:23"
"5990";"192.168.1.104";"Week 2 PLANO";"21";"24";"9492";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:08:25"
"5991";"192.168.1.135";"Week 2 PLANO";"21";"25";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:08:25"
"5992";"192.168.1.132";"Week 2 PLANO";"21";"17";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:26"
"5993";"192.168.1.104";"Week 2 PLANO";"21";"26";"9492";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:26"
"5994";"192.168.1.132";"Week 2 PLANO";"21";"19";"9105";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:08:28"
"5995";"192.168.1.135";"Week 2 PLANO";"21";"29";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:29"
"5996";"192.168.1.135";"Week 2 PLANO";"21";"30";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:08:30"
"5997";"192.168.1.132";"Week 2 PLANO";"21";"22";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:31"
"5998";"192.168.1.104";"Week 2 PLANO";"21";"31";"9492";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:31"
"5999";"192.168.1.132";"Week 2 PLANO";"21";"23";"9105";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:08:31"
"6000";"192.168.1.132";"Week 2 PLANO";"21";"27";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:35"
"6001";"192.168.1.135";"Week 2 PLANO";"21";"39";"5411";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:08:39"
"6002";"192.168.1.132";"Week 2 PLANO";"21";"30";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:08:39"
"6003";"192.168.1.135";"Week 2 PLANO";"21";"41";"5411";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:08:41"
"6005";"192.168.1.132";"Week 2 PLANO";"21";"34";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:43"
"6006";"192.168.1.135";"Week 2 PLANO";"21";"45";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:45"
"6007";"192.168.1.132";"Week 2 PLANO";"21";"38";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:08:47"
"6008";"192.168.1.132";"Week 2 PLANO";"21";"42";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:08:50"
"6009";"192.168.1.135";"Week 2 PLANO";"21";"55";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:08:55"
"6010";"192.168.1.132";"Week 2 PLANO";"21";"47";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:08:55"
"6011";"192.168.1.132";"Week 2 PLANO";"21";"52";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:01"
"6012";"192.168.1.104";"Week 2 PLANO";"21";"61";"9492";"Red";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:09:02"
"6013";"192.168.1.141";"Week 2 PLANO";"21";"70";"7506";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:03"
"6014";"192.168.1.135";"Week 2 PLANO";"21";"64";"5411";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:09:04"
"6015";"192.168.1.132";"Week 2 PLANO";"21";"57";"9105";"Blue";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 14:09:05"
"6016";"192.168.1.104";"Week 2 PLANO";"21";"65";"9492";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 14:09:05"
"6017";"192.168.1.132";"Week 2 PLANO";"21";"59";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:08"
"6018";"192.168.1.135";"Week 2 PLANO";"21";"68";"5411";"Red";"scores_algae_net";"net";"Success";"4";"2025-03-08 14:09:08"
"6019";"192.168.1.135";"Week 2 PLANO";"21";"71";"5411";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:09:11"
"6020";"192.168.1.132";"Week 2 PLANO";"21";"65";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:09:13"
"6021";"192.168.1.135";"Week 2 PLANO";"21";"75";"5411";"Red";"scores_algae_net";"net";"Success";"4";"2025-03-08 14:09:15"
"6022";"192.168.1.132";"Week 2 PLANO";"21";"69";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:18"
"6023";"192.168.1.135";"Week 2 PLANO";"21";"81";"5411";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:09:21"
"6024";"192.168.1.132";"Week 2 PLANO";"21";"74";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:09:23"
"6025";"192.168.1.104";"Week 2 PLANO";"21";"86";"9492";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:26"
"6026";"192.168.1.132";"Week 2 PLANO";"21";"79";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:28"
"6027";"192.168.1.135";"Week 2 PLANO";"21";"91";"5411";"Red";"scores_algae_net";"net";"Success";"4";"2025-03-08 14:09:31"
"6028";"192.168.1.132";"Week 2 PLANO";"21";"83";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:09:32"
"6029";"192.168.1.135";"Week 2 PLANO";"21";"97";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:37"
"6030";"192.168.1.132";"Week 2 PLANO";"21";"89";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:37"
"6031";"192.168.1.135";"Week 2 PLANO";"21";"99";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:09:40"
"6032";"192.168.1.132";"Week 2 PLANO";"21";"93";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:09:42"
"6033";"192.168.1.135";"Week 2 PLANO";"21";"104";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:44"
"6034";"192.168.1.132";"Week 2 PLANO";"21";"97";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:46"
"6035";"192.168.1.104";"Week 2 PLANO";"21";"107";"9492";"Red";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 14:09:47"
"6036";"192.168.1.132";"Week 2 PLANO";"21";"101";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:09:49"
"6037";"192.168.1.135";"Week 2 PLANO";"21";"111";"5411";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:09:51"
"6038";"192.168.1.132";"Week 2 PLANO";"21";"105";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:54"
"6039";"192.168.1.132";"Week 2 PLANO";"21";"107";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:09:56"
"6040";"192.168.1.135";"Week 2 PLANO";"21";"118";"5411";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:58"
"6041";"192.168.1.132";"Week 2 PLANO";"21";"111";"9105";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:09:59"
"6042";"192.168.1.132";"Week 2 PLANO";"21";"114";"9105";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:10:03"
"6043";"192.168.1.135";"Week 2 PLANO";"21";"136";"5411";"Red";"attempts_deep_climb";"barge";"Success";"12";"2025-03-08 14:10:16"
"6044";"192.168.1.104";"Week 2 PLANO";"21";"141";"9492";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:10:28"
"6045";"192.168.1.132";"Week 2 PLANO";"21";"133";"9105";"Blue";"attempts_deep_climb";"barge";"Failure";"0";"2025-03-08 14:10:29"
"6046";"192.168.1.132";"Week 2 PLANO";"21";"133";"9105";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:10:31"
"6047";"192.168.1.104";"Week 2 PLANO";"21";"141";"9492";"Red";"attempts_parked";"barge";"Failure";"0";"2025-03-08 14:11:23"
"6048";"192.168.1.104";"Week 2 PLANO";"21";"141";"9492";"Red";"attempts_parked";"barge";"Failure";"0";"2025-03-08 14:11:24"
"6049";"192.168.1.104";"Week 2 PLANO";"21";"141";"9492";"Red";"attempts_parked";"barge";"Failure";"0";"2025-03-08 14:11:27"
"6050";"192.168.1.141";"Week 2 PLANO";"22";"3";"3282";"Red";"crosses_starting_line";"starting_line";"Failure";"0";"2025-03-08 14:15:47"
"6051";"192.168.1.141";"Week 2 PLANO";"22";"4";"3282";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 14:15:49"
"6052";"192.168.1.104";"Week 2 PLANO";"22";"2";"6768";"Red";"scores_coral_level_3";"reef";"Failure";"0";"2025-03-08 14:15:54"
"6053";"192.168.1.132";"Week 2 PLANO";"22";"2";"10312";"Blue";"auton_center";"starting_pad";"Success";"0";"2025-03-08 14:16:03"
"6054";"192.168.1.101";"Week 2 PLANO";"22";"3";"3310";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 14:16:03"
"6055";"192.168.1.132";"Week 2 PLANO";"22";"3";"10312";"Blue";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 14:16:04"
"6056";"192.168.1.132";"Week 2 PLANO";"22";"11";"10312";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:16:12"
"6057";"192.168.1.141";"Week 2 PLANO";"22";"28";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:16:12"
"6059";"192.168.1.132";"Week 2 PLANO";"22";"13";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:16:13"
"6060";"192.168.1.141";"Week 2 PLANO";"22";"29";"3282";"Red";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 14:16:14"
"6061";"192.168.1.104";"Week 2 PLANO";"22";"22";"6768";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:16:14"
"6062";"192.168.1.126";"Week 2 PLANO";"22";"15";"7535";"Blue";"disabled";"anywhere";"Success";"0";"2025-03-08 14:16:15"
"6063";"192.168.1.141";"Week 2 PLANO";"22";"33";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:16:18"
"6064";"192.168.1.135";"Week 2 PLANO";"22";"27";"5682";"Red";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 14:16:19"
"6065";"192.168.1.132";"Week 2 PLANO";"22";"21";"10312";"Blue";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 14:16:22"
"6066";"192.168.1.141";"Week 2 PLANO";"22";"38";"3282";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:16:23"
"6067";"192.168.1.132";"Week 2 PLANO";"22";"26";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:16:26"
"6068";"192.168.1.141";"Week 2 PLANO";"22";"49";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:16:33"
"6069";"192.168.1.141";"Week 2 PLANO";"22";"50";"3282";"Red";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 14:16:35"
"6070";"192.168.1.132";"Week 2 PLANO";"22";"38";"10312";"Blue";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 14:16:38"
"6071";"192.168.1.132";"Week 2 PLANO";"22";"43";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:16:43"
"6072";"192.168.1.104";"Week 2 PLANO";"22";"52";"6768";"Red";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 14:16:44"
"6073";"192.168.1.141";"Week 2 PLANO";"22";"60";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:16:44"
"6074";"192.168.1.141";"Week 2 PLANO";"22";"63";"3282";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:16:48"
"6075";"192.168.1.104";"Week 2 PLANO";"22";"57";"6768";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:16:49"
"6076";"192.168.1.132";"Week 2 PLANO";"22";"54";"10312";"Blue";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 14:16:54"
"6077";"192.168.1.104";"Week 2 PLANO";"22";"64";"6768";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:16:57"
"6078";"192.168.1.141";"Week 2 PLANO";"22";"75";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:17:00"
"6079";"192.168.1.104";"Week 2 PLANO";"22";"70";"6768";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:17:02"
"6080";"192.168.1.132";"Week 2 PLANO";"22";"63";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:17:04"
"6081";"192.168.1.104";"Week 2 PLANO";"22";"78";"6768";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:17:10"
"6082";"192.168.1.141";"Week 2 PLANO";"22";"87";"3282";"Red";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 14:17:12"
"6083";"192.168.1.141";"Week 2 PLANO";"22";"88";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:17:13"
"6084";"192.168.1.132";"Week 2 PLANO";"22";"75";"10312";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 14:17:15"
"6085";"192.168.1.132";"Week 2 PLANO";"22";"77";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:17:18"
"6086";"192.168.1.141";"Week 2 PLANO";"22";"96";"3282";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:17:20"
"6087";"192.168.1.104";"Week 2 PLANO";"22";"90";"6768";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:17:22"
"6088";"192.168.1.132";"Week 2 PLANO";"22";"83";"10312";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 14:17:24"
"6089";"192.168.1.141";"Week 2 PLANO";"22";"101";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:17:26"
"6090";"192.168.1.104";"Week 2 PLANO";"22";"103";"6768";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:17:35"
"6091";"192.168.1.132";"Week 2 PLANO";"22";"97";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:17:38"
"6092";"192.168.1.141";"Week 2 PLANO";"22";"114";"3282";"Red";"scores_coral_level_3";"reef";"Failure";"0";"2025-03-08 14:17:39"
"6093";"192.168.1.101";"Week 2 PLANO";"22";"103";"3310";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:17:43"
"6094";"192.168.1.141";"Week 2 PLANO";"22";"119";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:17:43"
"6095";"192.168.1.132";"Week 2 PLANO";"22";"106";"10312";"Blue";"scores_coral_level_3";"reef";"Failure";"0";"2025-03-08 14:17:47"
"6096";"192.168.1.104";"Week 2 PLANO";"22";"115";"6768";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:17:47"
"6098";"192.168.1.101";"Week 2 PLANO";"22";"111";"3310";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:17:51"
"6099";"192.168.1.132";"Week 2 PLANO";"22";"123";"10312";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:18:04"
"6100";"192.168.1.141";"Week 2 PLANO";"22";"141";"3282";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:18:05"
"6101";"192.168.1.141";"Week 2 PLANO";"22";"145";"3282";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:18:09"
"6102";"192.168.1.104";"Week 2 PLANO";"22";"137";"6768";"Red";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 14:18:10"
"6103";"192.168.1.132";"Week 2 PLANO";"22";"131";"10312";"Blue";"scores_coral_level_3";"reef";"Failure";"0";"2025-03-08 14:18:11"
"6104";"192.168.1.141";"Week 2 PLANO";"22";"149";"3282";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:18:15"
"6105";"192.168.1.132";"Week 2 PLANO";"22";"133";"10312";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:18:19"
"6106";"192.168.1.135";"Week 2 PLANO";"22";"142";"5682";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:18:22"
"6107";"192.168.1.135";"Week 2 PLANO";"22";"142";"5682";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:18:24"
"6108";"192.168.1.141";"Week 2 PLANO";"23";"2";"10014";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 14:24:48"
"6110";"192.168.1.135";"Week 2 PLANO";"23";"15";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:25:08"
"6111";"192.168.1.132";"Week 2 PLANO";"23";"8";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:25:10"
"6112";"192.168.1.132";"Week 2 PLANO";"23";"12";"9128";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 14:25:13"
"6113";"192.168.1.141";"Week 2 PLANO";"23";"28";"10014";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:14"
"6114";"192.168.1.135";"Week 2 PLANO";"23";"22";"2848";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:15"
"6115";"192.168.1.132";"Week 2 PLANO";"23";"16";"9128";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:25:18"
"6116";"192.168.1.135";"Week 2 PLANO";"23";"29";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:25:22"
"6117";"192.168.1.132";"Week 2 PLANO";"23";"21";"9128";"Blue";"scores_algae_net";"net";"Success";"4";"2025-03-08 14:25:23"
"6118";"192.168.1.141";"Week 2 PLANO";"23";"38";"10014";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:25:24"
"6119";"192.168.1.132";"Week 2 PLANO";"23";"25";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:25:26"
"6120";"192.168.1.132";"Week 2 PLANO";"23";"27";"9128";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:29"
"6121";"192.168.1.135";"Week 2 PLANO";"23";"36";"2848";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:29"
"6122";"192.168.1.132";"Week 2 PLANO";"23";"28";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:25:30"
"6123";"192.168.1.132";"Week 2 PLANO";"23";"29";"9128";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:31"
"6124";"192.168.1.132";"Week 2 PLANO";"23";"30";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:25:31"
"6125";"192.168.1.132";"Week 2 PLANO";"23";"30";"9128";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:32"
"6126";"192.168.1.132";"Week 2 PLANO";"23";"31";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:25:33"
"6127";"192.168.1.132";"Week 2 PLANO";"23";"32";"9128";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:34"
"6128";"192.168.1.101";"Week 2 PLANO";"23";"34";"7119";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:35"
"6129";"192.168.1.132";"Week 2 PLANO";"23";"34";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:25:35"
"6130";"192.168.1.104";"Week 2 PLANO";"23";"42";"10340";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:36"
"6131";"192.168.1.132";"Week 2 PLANO";"23";"35";"9128";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:37"
"6132";"192.168.1.101";"Week 2 PLANO";"23";"36";"7119";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:37"
"6133";"192.168.1.101";"Week 2 PLANO";"23";"37";"7119";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:38"
"6134";"192.168.1.132";"Week 2 PLANO";"23";"37";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:25:39"
"6135";"192.168.1.135";"Week 2 PLANO";"23";"49";"2848";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 14:25:42"
"6136";"192.168.1.141";"Week 2 PLANO";"23";"57";"10014";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:25:42"
"6137";"192.168.1.132";"Week 2 PLANO";"23";"42";"9128";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 14:25:44"
"6138";"192.168.1.132";"Week 2 PLANO";"23";"46";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:25:47"
"6139";"192.168.1.135";"Week 2 PLANO";"23";"55";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:25:48"
"6140";"192.168.1.101";"Week 2 PLANO";"23";"52";"7119";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:53"
"6141";"192.168.1.135";"Week 2 PLANO";"23";"60";"2848";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:25:53"
"6142";"192.168.1.132";"Week 2 PLANO";"23";"53";"9128";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 14:25:54"
"6143";"192.168.1.132";"Week 2 PLANO";"23";"57";"9128";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:25:58"
"6144";"192.168.1.135";"Week 2 PLANO";"23";"66";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:25:59"
"6145";"192.168.1.132";"Week 2 PLANO";"23";"58";"9128";"Blue";"picks_up_algae";"mid_field";"Failure";"0";"2025-03-08 14:25:59"
"6146";"192.168.1.104";"Week 2 PLANO";"23";"70";"10340";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:26:03"
"6147";"192.168.1.132";"Week 2 PLANO";"23";"62";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:26:03"
"6148";"192.168.1.135";"Week 2 PLANO";"23";"72";"2848";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:26:05"
"6149";"192.168.1.132";"Week 2 PLANO";"23";"66";"9128";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 14:26:07"
"6150";"192.168.1.135";"Week 2 PLANO";"23";"76";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:26:09"
"6151";"192.168.1.132";"Week 2 PLANO";"23";"68";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:26:10"
"6152";"192.168.1.101";"Week 2 PLANO";"23";"70";"7119";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:26:11"
"6153";"192.168.1.132";"Week 2 PLANO";"23";"72";"9128";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 14:26:13"
"6154";"192.168.1.132";"Week 2 PLANO";"23";"77";"9128";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:26:19"
"6155";"192.168.1.135";"Week 2 PLANO";"23";"86";"2848";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 14:26:19"
"6156";"192.168.1.132";"Week 2 PLANO";"23";"83";"9128";"Blue";"scores_algae_net";"net";"Failure";"0";"2025-03-08 14:26:25"
"6157";"192.168.1.132";"Week 2 PLANO";"23";"87";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:26:29"
"6158";"192.168.1.135";"Week 2 PLANO";"23";"100";"2848";"Red";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:26:33"
"6159";"192.168.1.132";"Week 2 PLANO";"23";"92";"9128";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:26:34"
"6160";"192.168.1.135";"Week 2 PLANO";"23";"102";"2848";"Red";"scores_coral_level_3";"reef";"Failure";"0";"2025-03-08 14:26:35"
"6161";"192.168.1.132";"Week 2 PLANO";"23";"96";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:26:38"
"6162";"192.168.1.135";"Week 2 PLANO";"23";"105";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:26:38"
"6163";"192.168.1.104";"Week 2 PLANO";"23";"109";"10340";"Red";"scores_coral_level_4";"reef";"Failure";"0";"2025-03-08 14:26:42"
"6164";"192.168.1.132";"Week 2 PLANO";"23";"104";"9128";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 14:26:46"
"6165";"192.168.1.132";"Week 2 PLANO";"23";"106";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:26:48"
"6166";"192.168.1.135";"Week 2 PLANO";"23";"116";"2848";"Red";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 14:26:49"
"6167";"192.168.1.101";"Week 2 PLANO";"23";"108";"7119";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:26:49"
"6168";"192.168.1.135";"Week 2 PLANO";"23";"119";"2848";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:26:52"
"6169";"192.168.1.126";"Week 2 PLANO";"23";"113";"6171";"Blue";"disabled";"anywhere";"Success";"0";"2025-03-08 14:26:54"
"6170";"192.168.1.132";"Week 2 PLANO";"23";"112";"9128";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 14:26:54"
"6171";"192.168.1.132";"Week 2 PLANO";"23";"115";"9128";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:26:56"
"6172";"192.168.1.135";"Week 2 PLANO";"23";"126";"2848";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 14:26:59"
"6173";"192.168.1.104";"Week 2 PLANO";"23";"130";"10340";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:27:04"
"6174";"192.168.1.132";"Week 2 PLANO";"23";"132";"9128";"Blue";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:27:19"
"6175";"192.168.1.141";"Week 2 PLANO";"23";"148";"10014";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:27:19"
"6176";"192.168.1.135";"Week 2 PLANO";"23";"141";"2848";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:27:23"
"6177";"192.168.1.135";"Week 2 PLANO";"23";"141";"2848";"Red";"attempts_parked";"barge";"Success";"2";"2025-03-08 14:30:10"
"6178";"192.168.1.135";"Week 2 PLANO";"24";"1";"4192";"Red";"crosses_starting_line";"starting_line";"Success";"3";"2025-03-08 14:33:15"
"6179";"192.168.1.135";"Week 2 PLANO";"24";"3";"4192";"Red";"auton_center";"starting_pad";"Success";"0";"2025-03-08 14:33:17"
"6180";"192.168.1.132";"Week 2 PLANO";"24";"3";"5411";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:33:26"
"6181";"192.168.1.132";"Week 2 PLANO";"24";"6";"5411";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:33:28"
"6182";"192.168.1.126";"Week 2 PLANO";"24";"7";"148";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 14:33:29"
"6183";"192.168.1.135";"Week 2 PLANO";"24";"16";"4192";"Red";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 14:33:30"
"6184";"192.168.1.104";"Week 2 PLANO";"24";"16";"4153";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:33:30"
"6185";"192.168.1.132";"Week 2 PLANO";"24";"8";"5411";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:33:31"
"6186";"192.168.1.101";"Week 2 PLANO";"24";"10";"4641";"Blue";"scores_coral_level_2";"reef";"Success";"4";"2025-03-08 14:33:32"
"6187";"192.168.1.126";"Week 2 PLANO";"24";"11";"148";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:33:33"
"6188";"192.168.1.135";"Week 2 PLANO";"24";"21";"4192";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:33:35"
"6189";"192.168.1.132";"Week 2 PLANO";"24";"12";"5411";"Blue";"scores_coral_level_4";"reef";"Success";"8";"2025-03-08 14:33:35"
"6190";"192.168.1.132";"Week 2 PLANO";"24";"16";"5411";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:33:38"
"6191";"192.168.1.141";"Week 2 PLANO";"24";"32";"6526";"Red";"plays_defense";"opponent_side";"Success";"0";"2025-03-08 14:33:38"
"6192";"192.168.1.126";"Week 2 PLANO";"24";"18";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:33:39"
"6193";"192.168.1.135";"Week 2 PLANO";"24";"26";"4192";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:33:40"
"6194";"192.168.1.135";"Week 2 PLANO";"24";"30";"4192";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:33:44"
"6195";"192.168.1.132";"Week 2 PLANO";"24";"22";"5411";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:33:45"
"6196";"192.168.1.126";"Week 2 PLANO";"24";"28";"148";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 14:33:50"
"6197";"192.168.1.132";"Week 2 PLANO";"24";"27";"5411";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:33:50"
"6198";"192.168.1.135";"Week 2 PLANO";"24";"37";"4192";"Red";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:33:51"
"6199";"192.168.1.126";"Week 2 PLANO";"24";"30";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:33:52"
"6200";"192.168.1.135";"Week 2 PLANO";"24";"38";"4192";"Red";"starting_position_3";"starting_pad";"Success";"0";"2025-03-08 14:33:52"
"6201";"192.168.1.132";"Week 2 PLANO";"24";"32";"5411";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:33:55"
"6202";"192.168.1.135";"Week 2 PLANO";"24";"41";"4192";"Red";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:33:55"
"6203";"192.168.1.126";"Week 2 PLANO";"24";"37";"148";"Blue";"scores_coral_level_1";"reef";"Failure";"0";"2025-03-08 14:33:58"
"6204";"192.168.1.126";"Week 2 PLANO";"24";"40";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:34:01"
"6205";"192.168.1.132";"Week 2 PLANO";"24";"39";"5411";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:34:02"
"6206";"192.168.1.101";"Week 2 PLANO";"24";"44";"4641";"Blue";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 14:34:05"
"6207";"192.168.1.132";"Week 2 PLANO";"24";"45";"5411";"Blue";"scores_algae_net";"net";"Success";"4";"2025-03-08 14:34:07"
"6208";"192.168.1.126";"Week 2 PLANO";"24";"47";"148";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:34:09"
"6209";"192.168.1.132";"Week 2 PLANO";"24";"48";"5411";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:34:11"
"6211";"192.168.1.101";"Week 2 PLANO";"24";"52";"4641";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:34:14"
"6213";"192.168.1.126";"Week 2 PLANO";"24";"54";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:34:15"
"6214";"192.168.1.132";"Week 2 PLANO";"24";"53";"5411";"Blue";"scores_coral_level_4";"reef";"Success";"4";"2025-03-08 14:34:16"
"6215";"192.168.1.132";"Week 2 PLANO";"24";"56";"5411";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:34:19"
"6216";"192.168.1.126";"Week 2 PLANO";"24";"61";"148";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:34:22"
"6217";"192.168.1.126";"Week 2 PLANO";"24";"64";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:34:26"
"6218";"192.168.1.132";"Week 2 PLANO";"24";"65";"5411";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:34:28"
"6219";"192.168.1.126";"Week 2 PLANO";"24";"71";"148";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:34:32"
"6220";"192.168.1.132";"Week 2 PLANO";"24";"70";"5411";"Blue";"scores_algae_net";"net";"Failure";"0";"2025-03-08 14:34:33"
"6222";"192.168.1.126";"Week 2 PLANO";"24";"74";"148";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:34:36"
"6225";"192.168.1.104";"Week 2 PLANO";"24";"91";"4153";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:34:45"
"6226";"192.168.1.126";"Week 2 PLANO";"24";"84";"148";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 14:34:46"
"6227";"192.168.1.104";"Week 2 PLANO";"24";"92";"4153";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:34:46"
"6228";"192.168.1.104";"Week 2 PLANO";"24";"92";"4153";"Red";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:34:47"
"6229";"192.168.1.132";"Week 2 PLANO";"24";"87";"5411";"Blue";"picks_up_coral";"station";"Success";"0";"2025-03-08 14:34:49"
"6230";"192.168.1.126";"Week 2 PLANO";"24";"92";"148";"Blue";"picks_up_coral";"station";"Failure";"0";"2025-03-08 14:34:54"
"6231";"192.168.1.104";"Week 2 PLANO";"24";"101";"4153";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 14:34:55"
"6232";"192.168.1.104";"Week 2 PLANO";"24";"103";"4153";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 14:34:57"
"6233";"192.168.1.132";"Week 2 PLANO";"24";"97";"5411";"Blue";"scores_coral_level_3";"reef";"Success";"3";"2025-03-08 14:35:00"
"6234";"192.168.1.101";"Week 2 PLANO";"24";"99";"4641";"Blue";"scores_coral_level_1";"reef";"Success";"1";"2025-03-08 14:35:01"
"6235";"192.168.1.132";"Week 2 PLANO";"24";"104";"5411";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:35:06"
"6238";"192.168.1.132";"Week 2 PLANO";"24";"110";"5411";"Blue";"scores_algae_net";"net";"Success";"4";"2025-03-08 14:35:12"
"6239";"192.168.1.104";"Week 2 PLANO";"24";"124";"4153";"Red";"scores_coral_level_2";"reef";"Success";"2";"2025-03-08 14:35:18"
"6240";"192.168.1.132";"Week 2 PLANO";"24";"116";"5411";"Blue";"picks_up_algae";"mid_field";"Success";"0";"2025-03-08 14:35:19"