-
Notifications
You must be signed in to change notification settings - Fork 0
/
nohup.out
12501 lines (12501 loc) · 466 KB
/
nohup.out
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
Creating new game...
New Game ID: 877a8478-78f9-4546-8e9e-5d68f2e5afac
Creating new game...
New Game ID: 45e5a596-51c9-40c5-b2a3-12a6bba613bb
Creating new game...
New Game ID: 1de9e75b-07a8-4edf-baa2-986833b109b7
Creating new game...
New Game ID: 95e54fd8-920e-4b94-9df7-55b15220ed3e
Creating new game...
New Game ID: dbd4d913-85a5-43c3-987c-8ad3992089e2
Creating new game...
New Game ID: dd92ddce-2304-4df9-8708-4af4ef2af9e5
Creating new game...
New Game ID: 2c402625-e4e7-4caf-a97e-751d03c51544
Creating new game...
New Game ID: 18f6f292-6640-476f-adfb-28d853257d17
Creating new game...
New Game ID: 704c2fd6-ad93-4634-bda7-2cc6d75f1dae
Creating new game...
New Game ID: 783efe1f-1f34-4d0a-881b-9bb172b1c837
Creating new game...
New Game ID: 1d03d5e9-86a6-4a31-ad4e-841923c340d1
Creating new game...
New Game ID: 4ba9c11b-7f60-432c-81d9-a7e74cd42a09
Creating new game...
New Game ID: 10a637ce-3389-41c8-a86b-27444f8de08e
Creating new game...
New Game ID: af0bef24-8a89-4d99-b703-19a84df37434
Creating new game...
New Game ID: eb315c2c-6a05-43c2-af54-44e1718ca2c4
Creating new game...
New Game ID: 294a3475-3269-4f54-af62-187fd7bf7b3e
Creating new game...
New Game ID: d8121c5f-72d3-4553-b7e1-ed88e33b031f
Creating new game...
New Game ID: f30d093b-ce52-423d-aa44-bcb33966d101
Creating new game...
New Game ID: 6d281dba-cefd-47a0-8394-03a2e82039fe
Creating new game...
New Game ID: 6396c2f7-fc06-4838-b2e6-429c8cc8d896
Creating new game...
New Game ID: 78ecfded-27ca-4057-ae6f-8c333ee7cc97
Creating new game...
New Game ID: 7b759f6d-afc9-4fe0-9ddc-624376896f48
Creating new game...
New Game ID: c692cf80-0c48-4d69-b9de-712401db0659
Creating new game...
New Game ID: 5645c887-1af7-4a89-b6fd-201382f4ec2c
Creating new game...
New Game ID: e5732814-5c13-46aa-bf24-8ad97a72ea57
Creating new game...
New Game ID: 950ecefa-b976-48dd-bd8b-e585b763a5b9
Creating new game...
New Game ID: 150ebddf-d0fe-4266-abfe-ce757edbc577
Creating new game...
New Game ID: bdc22869-2679-4168-8e39-ae4624ed38a9
Creating new game...
New Game ID: 76465d47-b254-41e1-be16-6a144e48baa3
Creating new game...
New Game ID: 22462499-b9f6-447c-8455-9234d567de16
Creating new game...
New Game ID: 34dbae59-f5c2-4848-ba96-099996791850
Creating new game...
New Game ID: e1024ad0-391b-4cc8-94eb-ed2662e7f7dd
Creating new game...
New Game ID: aab2e30c-cab2-49eb-be0a-56fb1d35342f
Creating new game...
New Game ID: 63321de4-f33a-4ae7-9434-95771bb81baf
Creating new game...
New Game ID: d55e7249-7f12-4f3b-938f-412743d2a632
Creating new game...
New Game ID: 021e535f-b52f-46f5-8e4c-6fc47087c454
Creating new game...
New Game ID: e12a89e2-ed68-4103-b490-c394bd53dcf6
Creating new game...
New Game ID: 038a55a4-e9fd-4ba1-8b89-48c5150cd008
Creating new game...
New Game ID: f1066076-d261-4115-920f-bc6f76945344
Creating new game...
New Game ID: 8e20c513-59c2-401e-bc2b-803082c39b44
Creating new game...
New Game ID: 5a800125-6973-4b3b-9b0d-f937aa5ee618
Creating new game...
New Game ID: e3b8ff53-872e-4687-b0ad-fa10f1e582b2
Creating new game...
New Game ID: 4da906ad-16c3-41d8-b571-5bba03bd2e96
Creating new game...
New Game ID: 384ea21d-6ed4-41b7-988d-ed23843a5510
Creating new game...
New Game ID: 952a25d9-f702-4ad8-84fa-bb454f5928f1
Creating new game...
New Game ID: 5e4ed512-05f5-417d-9c91-a150d7378e74
Creating new game...
New Game ID: cf91fc08-5437-4830-b45d-60d067c4d266
Creating new game...
New Game ID: d201813e-29cf-4224-95d5-97269154cfa8
Creating new game...
New Game ID: f01f7e84-b4c2-417d-96d6-4c3c21c78bf3
Creating new game...
New Game ID: 8ef6f03d-b08d-4c06-80d2-34fed1af5c33
Creating new game...
New Game ID: 0a08839c-0ce0-4cac-935e-3258e01cca61
Creating new game...
New Game ID: f9dd6e50-c29c-4fe0-a720-f47de6f3ab2b
Creating new game...
New Game ID: 4f62fe9e-15af-4d3d-80b0-f0b4a26f94f5
Creating new game...
New Game ID: 5c750ec8-2665-4d3f-8a09-5ebf0df27b46
Creating new game...
New Game ID: ed24ec18-afd3-4f85-8b92-ebc72e8bf534
Creating new game...
New Game ID: 59425422-713e-4a1e-ae2d-f5014e38ba60
Creating new game...
New Game ID: 1f551008-45c3-4866-8f30-c110027b3128
Creating new game...
New Game ID: 04f9187b-9c91-453c-b3e7-f021eb5da12a
Creating new game...
New Game ID: a6f5bd63-a2c6-4362-92a6-f54ed9858a3b
Creating new game...
New Game ID: 1e00e396-9353-48cb-a236-c08d336c9462
Creating new game...
New Game ID: 1f6ca02f-d228-40b8-84da-e6dab553c6fb
Creating new game...
New Game ID: 3d7203d9-6ea5-48e6-a182-0d0f8cbfbfdf
Creating new game...
New Game ID: 66e3de50-1329-47b5-a464-e58155d3eca7
Creating new game...
New Game ID: 907f91b6-c75d-4b6f-9416-63a2cc931297
Creating new game...
New Game ID: 30c3912a-5c00-4191-8e62-bc117534a655
Creating new game...
New Game ID: 7a900787-2891-481d-a46c-7c0444de16a5
Creating new game...
New Game ID: bf1d6016-033f-45d3-80e6-005dd81d96fa
Creating new game...
New Game ID: f40eef6b-23dc-442b-bb32-4cd56876ff64
Creating new game...
New Game ID: 891906d7-e98c-4eee-800e-f5d35678454a
Creating new game...
New Game ID: 360158f7-dc58-436c-9e6b-c2a3b703343a
Creating new game...
New Game ID: ce25b648-1f0e-4157-9f47-ca8a2ad513bf
Creating new game...
New Game ID: 9fe0aed2-ad9c-40ca-a4db-55f114cb5702
Creating new game...
New Game ID: 795c219a-4b29-4b07-9f10-492f3ac86813
Creating new game...
New Game ID: c6d68be3-29a2-4bdb-b5a3-c0645d05f181
Creating new game...
New Game ID: 2e84e2fb-5ffa-4f25-8209-fb68183b2d5e
Creating new game...
New Game ID: dc0304d5-dfad-4fcd-8004-568c00121071
Creating new game...
New Game ID: db6af9db-b4cb-41d1-b16b-a00ea7a7088d
Creating new game...
New Game ID: 0022593f-2f35-48e8-908e-dc20fd3512a6
Creating new game...
New Game ID: 629b8bf5-a616-4d76-9dbf-a8d6f9f60ec6
Creating new game...
New Game ID: 5465541f-2b90-4f85-aaa5-1dca0b8c7d0c
Creating new game...
New Game ID: 1079e7cc-3a85-429c-9c88-e68b33a298dd
Creating new game...
New Game ID: 5acd0cdb-1b77-4eda-9752-5fc98382cf3d
Creating new game...
New Game ID: 4ccc863e-7ce2-428c-854c-07a22e20b66c
Creating new game...
New Game ID: 062f36e6-486a-46a4-8ceb-82562c8f2f45
Creating new game...
New Game ID: ad845a52-2553-4830-b849-8a4d38485314
Creating new game...
New Game ID: 798d43bf-1007-4f9f-9021-55de75f3fa89
Creating new game...
New Game ID: 19e8d392-6add-4cbb-90cb-de3f25510e61
Creating new game...
New Game ID: 17ec669a-5438-4954-850e-3e91cc16179a
Creating new game...
New Game ID: 7bd8d08f-4667-4db4-9719-910fbd9c6adb
Creating new game...
New Game ID: 0d282c8e-b5fb-47e5-9d78-198fc0d7c585
Creating new game...
New Game ID: 01465d46-035b-4d68-a3c5-3a6cee70365c
Creating new game...
New Game ID: 9607b6de-e787-4134-a656-811bbe561e57
Creating new game...
New Game ID: a679a1d4-5066-4fd6-be18-8bf3cecf461a
Creating new game...
New Game ID: c485dadd-62fa-4408-97ee-d2f1409afed4
Creating new game...
New Game ID: 36e64176-89c8-406a-8866-d9b24e396276
Creating new game...
New Game ID: 1441b9e1-750c-48be-be3e-10cf49a61edd
Creating new game...
New Game ID: 9b80f11e-74ee-4380-aa08-c83d3036658b
Creating new game...
New Game ID: 82557f72-2e2f-4614-99b1-bab5a1a623ec
Creating new game...
New Game ID: 49ff3ac4-aaa1-4526-9d33-540fbdd73640
Creating new game...
New Game ID: 7cd3a68c-a397-48e7-b42a-7c5abc60e3aa
Starting bot 1...
Bot 1: Joining game...
[0;33;49mBot 1: Ready Yellow Player 1e47ecd5-b233-4755-9b3f-05e31cb290e5[0m
[0;33;49mBot 1: Moving to 0-18[0m
[0;33;49mBot 1: Moving to 1-18[0m
[0;33;49mBot 1: Moving to 2-18[0m
[0;33;49mBot 1: Moving to 2-19[0m
[0;33;49mBot 1: Moving to 3-19[0m
[0;33;49mBot 1: I won![0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;31;49mBot 2: Ready Red Player 23469b4d-702a-4b0e-a3f3-3c08386f76ec[0m
[0;31;49mBot 2: Moving to 19-18[0m
[0;31;49mBot 2: Moving to 18-18[0m
[0;31;49mBot 2: Moving to 17-18[0m
[0;31;49mBot 2: Moving to 17-19[0m
[0;31;49mBot 2: Moving to 18-19[0m
[0;31;49mBot 2: Moving to 17-19[0m
[0;31;49mBot 2: Failed to make a move![0m
[0;31;49mBot 2: {"timestamp":"2018-10-11T18:16:19.462+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/e1024ad0-391b-4cc8-94eb-ed2662e7f7dd/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;34;49mBot 1: Ready Blue Player f39df3e7-35ee-4def-85f2-3a54e9ac9db1[0m
[0;34;49mBot 1: Moving to 7-7[0m
[0;34;49mBot 1: Moving to 6-7[0m
[0;34;49mBot 1: Moving to 6-8[0m
[0;34;49mBot 1: Moving to 5-8[0m
[0;34;49mBot 1: Moving to 5-9[0m
[0;34;49mBot 1: Moving to 6-9[0m
[0;34;49mBot 1: Moving to 7-9[0m
[0;34;49mBot 1: Moving to 7-8[0m
[0;34;49mBot 1: Moving to 6-8[0m
[0;34;49mBot 1: Failed to make a move![0m
[0;34;49mBot 1: {"timestamp":"2018-10-11T18:16:20.352+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/eb315c2c-6a05-43c2-af54-44e1718ca2c4/move"}[0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;31;49mBot 2: Ready Red Player 5cc39e77-50e8-426a-92bd-cb99ec147e04[0m
[0;31;49mBot 2: Moving to 9-8[0m
[0;31;49mBot 2: Moving to 10-8[0m
[0;31;49mBot 2: Moving to 10-9[0m
[0;31;49mBot 2: Moving to 10-10[0m
[0;31;49mBot 2: Moving to 9-10[0m
[0;31;49mBot 2: Moving to 8-10[0m
[0;31;49mBot 2: Moving to 8-9[0m
[0;31;49mBot 2: Moving to 9-9[0m
[0;31;49mBot 2: I won![0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;34;49mBot 1: Ready Blue Player cc2d65be-fdb9-4dfb-b6f2-f9943f470388[0m
[0;34;49mBot 1: Moving to 9-11[0m
[0;34;49mBot 1: Moving to 8-11[0m
[0;34;49mBot 1: Moving to 8-12[0m
[0;34;49mBot 1: Moving to 7-12[0m
[0;34;49mBot 1: Moving to 6-12[0m
[0;34;49mBot 1: Moving to 5-12[0m
[0;34;49mBot 1: Moving to 5-11[0m
[0;34;49mBot 1: Moving to 5-10[0m
[0;34;49mBot 1: Moving to 4-10[0m
[0;34;49mBot 1: Moving to 4-11[0m
[0;34;49mBot 1: Moving to 4-12[0m
[0;34;49mBot 1: Moving to 3-12[0m
[0;34;49mBot 1: Moving to 3-11[0m
[0;34;49mBot 1: Moving to 3-10[0m
[0;34;49mBot 1: Moving to 3-9[0m
[0;34;49mBot 1: Moving to 4-9[0m
[0;34;49mBot 1: Moving to 4-8[0m
[0;34;49mBot 1: Moving to 5-8[0m
[0;34;49mBot 1: Moving to 6-8[0m
[0;34;49mBot 1: Moving to 6-9[0m
[0;34;49mBot 1: Moving to 5-9[0m
[0;34;49mBot 1: Moving to 4-9[0m
[0;34;49mBot 1: Failed to make a move![0m
[0;34;49mBot 1: {"timestamp":"2018-10-11T18:16:21.576+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/877a8478-78f9-4546-8e9e-5d68f2e5afac/move"}[0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;32;49mBot 2: Ready Green Player 44933e8c-9aae-47fa-82ad-572c9aea7d38[0m
[0;32;49mBot 2: Moving to 11-12[0m
[0;32;49mBot 2: Moving to 11-13[0m
[0;32;49mBot 2: Moving to 12-13[0m
[0;32;49mBot 2: Moving to 13-13[0m
[0;32;49mBot 2: Moving to 13-12[0m
[0;32;49mBot 2: Moving to 12-12[0m
[0;32;49mBot 2: Moving to 12-11[0m
[0;32;49mBot 2: Moving to 12-10[0m
[0;32;49mBot 2: Moving to 12-9[0m
[0;32;49mBot 2: Moving to 13-9[0m
[0;32;49mBot 2: Moving to 14-9[0m
[0;32;49mBot 2: Moving to 14-8[0m
[0;32;49mBot 2: Moving to 15-8[0m
[0;32;49mBot 2: Moving to 15-9[0m
[0;32;49mBot 2: Moving to 16-9[0m
[0;32;49mBot 2: Moving to 16-8[0m
[0;32;49mBot 2: Moving to 16-7[0m
[0;32;49mBot 2: Moving to 16-6[0m
[0;32;49mBot 2: Moving to 15-6[0m
[0;32;49mBot 2: Moving to 15-7[0m
[0;32;49mBot 2: Moving to 14-7[0m
[0;32;49mBot 2: Moving to 14-6[0m
[0;32;49mBot 2: I won![0m
Exited bot 2
Starting bot 2...
Bot 2: Joining game...
[0;34;49mBot 2: Ready Blue Player c15424a3-021e-4f3e-a626-5b84d7906ab5[0m
[0;34;49mBot 2: Moving to 14-1[0m
[0;34;49mBot 2: Moving to 13-1[0m
[0;34;49mBot 2: Moving to 13-0[0m
[0;34;49mBot 2: Moving to 12-0[0m
[0;34;49mBot 2: Moving to 11-0[0m
[0;34;49mBot 2: Moving to 10-0[0m
[0;34;49mBot 2: Moving to 10-1[0m
[0;34;49mBot 2: Moving to 11-1[0m
[0;34;49mBot 2: I won![0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;31;49mBot 1: Ready Red Player 2f31d48a-31b2-409f-85f0-fffdf5a81ce4[0m
[0;31;49mBot 1: Moving to 0-13[0m
[0;31;49mBot 1: Moving to 0-12[0m
[0;31;49mBot 1: Moving to 1-12[0m
[0;31;49mBot 1: Moving to 1-13[0m
[0;31;49mBot 1: Moving to 2-13[0m
[0;31;49mBot 1: Moving to 2-14[0m
[0;31;49mBot 1: Moving to 1-14[0m
[0;31;49mBot 1: Moving to 0-14[0m
[0;31;49mBot 1: Failed to make a move![0m
[0;31;49mBot 1: {"timestamp":"2018-10-11T18:16:23.762+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/038a55a4-e9fd-4ba1-8b89-48c5150cd008/move"}[0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;34;49mBot 2: Ready Blue Player 3d15e87c-f20a-4948-99fc-c5c8e151b8a6[0m
[0;34;49mBot 2: Moving to 7-8[0m
[0;34;49mBot 2: Moving to 6-8[0m
[0;34;49mBot 2: Moving to 5-8[0m
[0;34;49mBot 2: Moving to 5-9[0m
[0;34;49mBot 2: Moving to 5-10[0m
[0;34;49mBot 2: I won![0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;31;49mBot 1: Ready Red Player f2f73c25-91b3-4ab1-9b4a-3eabd3461fc9[0m
[0;31;49mBot 1: Moving to 8-9[0m
[0;31;49mBot 1: Moving to 7-9[0m
[0;31;49mBot 1: Moving to 7-10[0m
[0;31;49mBot 1: Moving to 6-10[0m
[0;31;49mBot 1: Moving to 6-9[0m
[0;31;49mBot 1: Moving to 5-9[0m
[0;31;49mBot 1: Failed to make a move![0m
[0;31;49mBot 1: {"timestamp":"2018-10-11T18:16:24.234+0000","status":400,"error":"Bad Request","message":"You ran into the blue player's tail","path":"/games/950ecefa-b976-48dd-bd8b-e585b763a5b9/move"}[0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;32;49mBot 2: Ready Green Player 65f46833-4875-4908-ac17-bf526dbd202c[0m
[0;32;49mBot 2: Moving to 18-10[0m
[0;32;49mBot 2: Moving to 18-9[0m
[0;32;49mBot 2: Moving to 18-8[0m
[0;32;49mBot 2: Moving to 19-8[0m
[0;32;49mBot 2: Moving to 19-9[0m
[0;32;49mBot 2: Moving to 18-9[0m
[0;32;49mBot 2: Failed to make a move![0m
[0;32;49mBot 2: {"timestamp":"2018-10-11T18:16:24.859+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/9b80f11e-74ee-4380-aa08-c83d3036658b/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;34;49mBot 1: Ready Blue Player 7acf09b2-0fd2-4c75-952d-d48fa095fffa[0m
[0;34;49mBot 1: Moving to 0-11[0m
[0;34;49mBot 1: Moving to 0-12[0m
[0;34;49mBot 1: Moving to 1-12[0m
[0;34;49mBot 1: Moving to 2-12[0m
[0;34;49mBot 1: Moving to 2-13[0m
[0;34;49mBot 1: Moving to 2-14[0m
[0;34;49mBot 1: I won![0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;31;49mBot 2: Ready Red Player 5b94ebfa-2568-4fb9-9dec-fb9d3f46ca83[0m
[0;31;49mBot 2: Moving to 1-19[0m
[0;31;49mBot 2: Moving to 1-18[0m
[0;31;49mBot 2: Moving to 1-17[0m
[0;31;49mBot 2: Moving to 0-17[0m
[0;31;49mBot 2: Moving to 0-18[0m
[0;31;49mBot 2: Moving to -1-18[0m
[0;31;49mBot 2: Failed to make a move![0m
[0;31;49mBot 2: {"timestamp":"2018-10-11T18:16:25.108+0000","status":400,"error":"Bad Request","message":"You must stay on the board","path":"/games/c692cf80-0c48-4d69-b9de-712401db0659/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;34;49mBot 1: Ready Blue Player bb293a51-84ab-42e3-aa81-104f09b0b17a[0m
[0;34;49mBot 1: Moving to 1-0[0m
[0;34;49mBot 1: Moving to 1-1[0m
[0;34;49mBot 1: Moving to 1-2[0m
[0;34;49mBot 1: Moving to 1-3[0m
[0;34;49mBot 1: Moving to 0-3[0m
[0;34;49mBot 1: I won![0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;34;49mBot 2: Ready Blue Player 18bcf880-8047-49eb-9ea3-db9eac6b63e1[0m
[0;34;49mBot 2: Moving to 13-11[0m
[0;34;49mBot 2: Moving to 12-11[0m
[0;34;49mBot 2: Moving to 11-11[0m
[0;34;49mBot 2: Moving to 11-10[0m
[0;34;49mBot 2: Moving to 10-10[0m
[0;34;49mBot 2: Moving to 10-11[0m
[0;34;49mBot 2: Moving to 10-12[0m
[0;34;49mBot 2: Moving to 11-12[0m
[0;34;49mBot 2: Moving to 12-12[0m
[0;34;49mBot 2: Moving to 11-12[0m
[0;34;49mBot 2: Failed to make a move![0m
[0;34;49mBot 2: {"timestamp":"2018-10-11T18:16:25.155+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/d55e7249-7f12-4f3b-938f-412743d2a632/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;33;49mBot 1: Ready Yellow Player 48f788a1-5b86-4877-a566-28965c370abe[0m
[0;33;49mBot 1: Moving to 11-13[0m
[0;33;49mBot 1: Moving to 10-13[0m
[0;33;49mBot 1: Moving to 9-13[0m
[0;33;49mBot 1: Moving to 9-12[0m
[0;33;49mBot 1: Moving to 9-11[0m
[0;33;49mBot 1: Moving to 8-11[0m
[0;33;49mBot 1: Moving to 8-12[0m
[0;33;49mBot 1: Moving to 7-12[0m
[0;33;49mBot 1: Moving to 7-13[0m
[0;33;49mBot 1: Moving to 8-13[0m
[0;33;49mBot 1: I won![0m
Exited bot 1
Starting bot 1...
Bot 1: Joining game...
[0;32;49mBot 1: Ready Green Player 919a6cdd-422a-43ca-a490-408619f807cc[0m
[0;32;49mBot 1: Moving to 1-0[0m
[0;32;49mBot 1: Moving to 1-1[0m
[0;32;49mBot 1: Moving to 2-1[0m
[0;32;49mBot 1: Moving to 2-2[0m
[0;32;49mBot 1: Moving to 1-2[0m
[0;32;49mBot 1: Moving to 1-3[0m
[0;32;49mBot 1: Moving to 0-3[0m
[0;32;49mBot 1: Moving to 0-2[0m
[0;32;49mBot 1: Moving to 0-1[0m
[0;32;49mBot 1: Moving to -1-1[0m
[0;32;49mBot 1: Failed to make a move![0m
[0;32;49mBot 1: {"timestamp":"2018-10-11T18:16:25.468+0000","status":400,"error":"Bad Request","message":"You must stay on the board","path":"/games/294a3475-3269-4f54-af62-187fd7bf7b3e/move"}[0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;33;49mBot 2: Ready Yellow Player 6dc8ddda-c8bb-43cf-a8f6-13db106180c3[0m
[0;33;49mBot 2: Moving to 13-0[0m
[0;33;49mBot 2: Moving to 13-1[0m
[0;33;49mBot 2: Moving to 14-1[0m
[0;33;49mBot 2: Moving to 14-2[0m
[0;33;49mBot 2: Moving to 13-2[0m
[0;33;49mBot 2: Moving to 12-2[0m
[0;33;49mBot 2: Moving to 12-1[0m
[0;33;49mBot 2: Moving to 12-0[0m
[0;33;49mBot 2: Moving to 11-0[0m
[0;33;49mBot 2: I won![0m
Exited bot 2
Starting bot 2...
Bot 2: Joining game...
[0;32;49mBot 2: Ready Green Player 77ae8345-a6bd-4ce2-8e35-38d3b1e39e64[0m
[0;32;49mBot 2: Moving to 13-0[0m
[0;32;49mBot 2: Moving to 13-1[0m
[0;32;49mBot 2: Moving to 13-2[0m
[0;32;49mBot 2: Moving to 14-2[0m
[0;32;49mBot 2: Moving to 14-1[0m
[0;32;49mBot 2: Moving to 13-1[0m
[0;32;49mBot 2: Failed to make a move![0m
[0;32;49mBot 2: {"timestamp":"2018-10-11T18:16:25.695+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/e12a89e2-ed68-4103-b490-c394bd53dcf6/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;31;49mBot 1: Ready Red Player 455cbe29-3d48-4095-a164-047a661cc224[0m
[0;31;49mBot 1: Moving to 14-13[0m
[0;31;49mBot 1: Moving to 13-13[0m
[0;31;49mBot 1: Moving to 12-13[0m
[0;31;49mBot 1: Moving to 11-13[0m
[0;31;49mBot 1: Moving to 10-13[0m
[0;31;49mBot 1: I won![0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;31;49mBot 2: Ready Red Player 0afd567d-8c30-4e7b-8d64-162fce6998b2[0m
[0;31;49mBot 2: Moving to 11-19[0m
[0;31;49mBot 2: Moving to 12-19[0m
[0;31;49mBot 2: Moving to 12-18[0m
[0;31;49mBot 2: Moving to 12-17[0m
[0;31;49mBot 2: Moving to 11-17[0m
[0;31;49mBot 2: Moving to 11-16[0m
[0;31;49mBot 2: Moving to 10-16[0m
[0;31;49mBot 2: Moving to 10-17[0m
[0;31;49mBot 2: Moving to 10-18[0m
[0;31;49mBot 2: Moving to 11-18[0m
[0;31;49mBot 2: Moving to 10-18[0m
[0;31;49mBot 2: Failed to make a move![0m
[0;31;49mBot 2: {"timestamp":"2018-10-11T18:16:25.813+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/78ecfded-27ca-4057-ae6f-8c333ee7cc97/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;34;49mBot 1: Ready Blue Player 3f27c5d5-638b-4cb3-b937-0333779d0e38[0m
[0;34;49mBot 1: Moving to 10-1[0m
[0;34;49mBot 1: Moving to 10-2[0m
[0;34;49mBot 1: Moving to 11-2[0m
[0;34;49mBot 1: Moving to 11-3[0m
[0;34;49mBot 1: Moving to 10-3[0m
[0;34;49mBot 1: Moving to 9-3[0m
[0;34;49mBot 1: Moving to 8-3[0m
[0;34;49mBot 1: Moving to 7-3[0m
[0;34;49mBot 1: Moving to 7-2[0m
[0;34;49mBot 1: Moving to 6-2[0m
[0;34;49mBot 1: Moving to 5-2[0m
[0;34;49mBot 1: I won![0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;34;49mBot 2: Ready Blue Player 4127a15f-c8df-4219-822b-6b140968257a[0m
[0;34;49mBot 2: Moving to 1-14[0m
[0;34;49mBot 2: Moving to 2-14[0m
[0;34;49mBot 2: Moving to 2-13[0m
[0;34;49mBot 2: Moving to 2-12[0m
[0;34;49mBot 2: Moving to 1-12[0m
[0;34;49mBot 2: Moving to 0-12[0m
[0;34;49mBot 2: Moving to 0-13[0m
[0;34;49mBot 2: Moving to 1-13[0m
[0;34;49mBot 2: Moving to 0-13[0m
[0;34;49mBot 2: Failed to make a move![0m
[0;34;49mBot 2: {"timestamp":"2018-10-11T18:16:25.836+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/dbd4d913-85a5-43c3-987c-8ad3992089e2/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;32;49mBot 1: Ready Green Player 657ff459-b0ad-4596-a8d9-c64241d1fa9a[0m
[0;32;49mBot 1: Moving to 14-1[0m
[0;32;49mBot 1: Moving to 14-2[0m
[0;32;49mBot 1: Moving to 14-3[0m
[0;32;49mBot 1: Moving to 13-3[0m
[0;32;49mBot 1: Moving to 13-2[0m
[0;32;49mBot 1: Moving to 12-2[0m
[0;32;49mBot 1: Moving to 12-1[0m
[0;32;49mBot 1: Moving to 12-0[0m
[0;32;49mBot 1: Moving to 13-0[0m
[0;32;49mBot 1: I won![0m
Exited bot 1
Starting bot 1...
Bot 1: Joining game...
[0;31;49mBot 1: Ready Red Player e3bb8991-065c-4d37-879a-62e54fc24505[0m
[0;31;49mBot 1: Moving to 6-8[0m
[0;31;49mBot 1: Moving to 6-9[0m
[0;31;49mBot 1: Moving to 5-9[0m
[0;31;49mBot 1: Moving to 4-9[0m
[0;31;49mBot 1: Moving to 4-8[0m
[0;31;49mBot 1: Moving to 3-8[0m
[0;31;49mBot 1: Moving to 3-7[0m
[0;31;49mBot 1: Moving to 4-7[0m
[0;31;49mBot 1: Moving to 5-7[0m
[0;31;49mBot 1: Moving to 5-8[0m
[0;31;49mBot 1: Moving to 4-8[0m
[0;31;49mBot 1: Failed to make a move![0m
[0;31;49mBot 1: {"timestamp":"2018-10-11T18:16:26.545+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/34dbae59-f5c2-4848-ba96-099996791850/move"}[0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;32;49mBot 2: Ready Green Player 4a94c351-90ae-477e-b2fa-7ac0dad62f59[0m
[0;32;49mBot 2: Moving to 8-7[0m
[0;32;49mBot 2: Moving to 7-7[0m
[0;32;49mBot 2: Moving to 7-6[0m
[0;32;49mBot 2: Moving to 7-5[0m
[0;32;49mBot 2: Moving to 7-4[0m
[0;32;49mBot 2: Moving to 6-4[0m
[0;32;49mBot 2: Moving to 5-4[0m
[0;32;49mBot 2: Moving to 5-3[0m
[0;32;49mBot 2: Moving to 5-2[0m
[0;32;49mBot 2: Moving to 4-2[0m
[0;32;49mBot 2: I won![0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;31;49mBot 1: Ready Red Player 691fb1d8-c4e7-48c0-9de7-70bf606f0993[0m
[0;31;49mBot 1: Moving to 10-9[0m
[0;31;49mBot 1: Moving to 11-9[0m
[0;31;49mBot 1: Moving to 12-9[0m
[0;31;49mBot 1: Moving to 13-9[0m
[0;31;49mBot 1: Moving to 13-10[0m
[0;31;49mBot 1: Moving to 12-10[0m
[0;31;49mBot 1: Moving to 11-10[0m
[0;31;49mBot 1: Moving to 10-10[0m
[0;31;49mBot 1: Failed to make a move![0m
[0;31;49mBot 1: {"timestamp":"2018-10-11T18:16:26.618+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/1f6ca02f-d228-40b8-84da-e6dab553c6fb/move"}[0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;34;49mBot 2: Ready Blue Player 88fcb588-f441-4549-ab2d-70481a00bb5a[0m
[0;34;49mBot 2: Moving to 12-11[0m
[0;34;49mBot 2: Moving to 13-11[0m
[0;34;49mBot 2: Moving to 14-11[0m
[0;34;49mBot 2: Moving to 15-11[0m
[0;34;49mBot 2: Moving to 15-12[0m
[0;34;49mBot 2: Moving to 14-12[0m
[0;34;49mBot 2: Moving to 13-12[0m
[0;34;49mBot 2: I won![0m
Exited bot 2
Starting bot 2...
Bot 2: Joining game...
[0;32;49mBot 2: Ready Green Player 713d4bed-c16f-4591-bb24-0aa54a3a23af[0m
[0;32;49mBot 2: Moving to 1-19[0m
[0;32;49mBot 2: Moving to 2-19[0m
[0;32;49mBot 2: Moving to 3-19[0m
[0;32;49mBot 2: Moving to 3-18[0m
[0;32;49mBot 2: Moving to 2-18[0m
[0;32;49mBot 2: Moving to 1-18[0m
[0;32;49mBot 2: Moving to 0-18[0m
[0;32;49mBot 2: Moving to 0-17[0m
[0;32;49mBot 2: Moving to 1-17[0m
[0;32;49mBot 2: Moving to 1-16[0m
[0;32;49mBot 2: Moving to 1-15[0m
[0;32;49mBot 2: Moving to 0-15[0m
[0;32;49mBot 2: Moving to 0-16[0m
[0;32;49mBot 2: Moving to -1-16[0m
[0;32;49mBot 2: Failed to make a move![0m
[0;32;49mBot 2: {"timestamp":"2018-10-11T18:16:26.789+0000","status":400,"error":"Bad Request","message":"You must stay on the board","path":"/games/0022593f-2f35-48e8-908e-dc20fd3512a6/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;34;49mBot 1: Ready Blue Player da6f0870-cfee-4f81-8657-d1ae956a1e7e[0m
[0;34;49mBot 1: Moving to 18-0[0m
[0;34;49mBot 1: Moving to 18-1[0m
[0;34;49mBot 1: Moving to 17-1[0m
[0;34;49mBot 1: Moving to 17-0[0m
[0;34;49mBot 1: Moving to 16-0[0m
[0;34;49mBot 1: Moving to 15-0[0m
[0;34;49mBot 1: Moving to 14-0[0m
[0;34;49mBot 1: Moving to 14-1[0m
[0;34;49mBot 1: Moving to 13-1[0m
[0;34;49mBot 1: Moving to 13-0[0m
[0;34;49mBot 1: Moving to 12-0[0m
[0;34;49mBot 1: Moving to 11-0[0m
[0;34;49mBot 1: Moving to 11-1[0m
[0;34;49mBot 1: I won![0m
Exited bot 1
Starting bot 1...
Bot 1: Joining game...
[0;31;49mBot 1: Ready Red Player e25d2af5-3e19-4e2e-88ca-d0f3fd2ec6e4[0m
[0;31;49mBot 1: Moving to 12-12[0m
[0;31;49mBot 1: Moving to 11-12[0m
[0;31;49mBot 1: Moving to 11-11[0m
[0;31;49mBot 1: Moving to 12-11[0m
[0;31;49mBot 1: Moving to 13-11[0m
[0;31;49mBot 1: Moving to 14-11[0m
[0;31;49mBot 1: Moving to 15-11[0m
[0;31;49mBot 1: Moving to 15-12[0m
[0;31;49mBot 1: Moving to 14-12[0m
[0;31;49mBot 1: Moving to 13-12[0m
[0;31;49mBot 1: Failed to make a move![0m
[0;31;49mBot 1: {"timestamp":"2018-10-11T18:16:27.009+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/63321de4-f33a-4ae7-9434-95771bb81baf/move"}[0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;33;49mBot 2: Ready Yellow Player 652e5a68-e56b-4463-a18a-c52bfbb8a4d0[0m
[0;33;49mBot 2: Moving to 14-13[0m
[0;33;49mBot 2: Moving to 15-13[0m
[0;33;49mBot 2: Moving to 16-13[0m
[0;33;49mBot 2: Moving to 16-14[0m
[0;33;49mBot 2: Moving to 15-14[0m
[0;33;49mBot 2: Moving to 14-14[0m
[0;33;49mBot 2: Moving to 13-14[0m
[0;33;49mBot 2: Moving to 13-15[0m
[0;33;49mBot 2: Moving to 12-15[0m
[0;33;49mBot 2: I won![0m
Exited bot 2
Starting bot 2...
Bot 2: Joining game...
[0;32;49mBot 2: Ready Green Player 8b98f8c5-87fc-41d1-ba3d-af5b3e98116f[0m
[0;32;49mBot 2: Moving to 8-8[0m
[0;32;49mBot 2: Moving to 9-8[0m
[0;32;49mBot 2: Moving to 9-9[0m
[0;32;49mBot 2: Moving to 10-9[0m
[0;32;49mBot 2: Moving to 10-8[0m
[0;32;49mBot 2: Moving to 10-7[0m
[0;32;49mBot 2: Moving to 11-7[0m
[0;32;49mBot 2: Moving to 11-8[0m
[0;32;49mBot 2: Moving to 11-9[0m
[0;32;49mBot 2: I won![0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;31;49mBot 1: Ready Red Player 8ecc98da-7e79-47c0-a2d2-a5dd6da26343[0m
[0;31;49mBot 1: Moving to 7-9[0m
[0;31;49mBot 1: Moving to 6-9[0m
[0;31;49mBot 1: Moving to 6-10[0m
[0;31;49mBot 1: Moving to 7-10[0m
[0;31;49mBot 1: Moving to 7-11[0m
[0;31;49mBot 1: Moving to 8-11[0m
[0;31;49mBot 1: Moving to 8-10[0m
[0;31;49mBot 1: Moving to 8-9[0m
[0;31;49mBot 1: Moving to 7-9[0m
[0;31;49mBot 1: Failed to make a move![0m
[0;31;49mBot 1: {"timestamp":"2018-10-11T18:16:27.942+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/ce25b648-1f0e-4157-9f47-ca8a2ad513bf/move"}[0m
Exited bot 1
Starting bot 1...
Bot 1: Joining game...
[0;34;49mBot 1: Ready Blue Player 33452a6e-d20a-478e-a425-89beb761cac8[0m
[0;34;49mBot 1: Moving to 1-14[0m
[0;34;49mBot 1: Moving to 1-13[0m
[0;34;49mBot 1: Moving to 0-13[0m
[0;34;49mBot 1: Moving to 0-12[0m
[0;34;49mBot 1: Moving to 0-11[0m
[0;34;49mBot 1: Moving to 1-11[0m
[0;34;49mBot 1: Moving to 2-11[0m
[0;34;49mBot 1: Moving to 2-12[0m
[0;34;49mBot 1: Moving to 1-12[0m
[0;34;49mBot 1: Moving to 0-12[0m
[0;34;49mBot 1: Failed to make a move![0m
[0;34;49mBot 1: {"timestamp":"2018-10-11T18:16:28.970+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/4ba9c11b-7f60-432c-81d9-a7e74cd42a09/move"}[0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;33;49mBot 2: Ready Yellow Player 6bc51e55-f83e-4d6e-a99d-f4f1ca9c31a7[0m
[0;33;49mBot 2: Moving to 13-0[0m
[0;33;49mBot 2: Moving to 12-0[0m
[0;33;49mBot 2: Moving to 11-0[0m
[0;33;49mBot 2: Moving to 11-1[0m
[0;33;49mBot 2: Moving to 12-1[0m
[0;33;49mBot 2: Moving to 12-2[0m
[0;33;49mBot 2: Moving to 12-3[0m
[0;33;49mBot 2: Moving to 12-4[0m
[0;33;49mBot 2: Moving to 11-4[0m
[0;33;49mBot 2: I won![0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;33;49mBot 1: Ready Yellow Player 74272fdc-d75c-4b2b-84fb-d7559798089d[0m
[0;33;49mBot 1: Moving to 0-1[0m
[0;33;49mBot 1: Moving to 1-1[0m
[0;33;49mBot 1: Moving to 2-1[0m
[0;33;49mBot 1: Moving to 2-0[0m
[0;33;49mBot 1: Moving to 3-0[0m
[0;33;49mBot 1: Moving to 4-0[0m
[0;33;49mBot 1: Moving to 4-1[0m
[0;33;49mBot 1: Moving to 5-1[0m
[0;33;49mBot 1: Moving to 5-0[0m
[0;33;49mBot 1: Moving to 6-0[0m
[0;33;49mBot 1: Moving to 6-1[0m
[0;33;49mBot 1: Moving to 7-1[0m
[0;33;49mBot 1: Moving to 7-2[0m
[0;33;49mBot 1: Moving to 8-2[0m
[0;33;49mBot 1: Moving to 9-2[0m
[0;33;49mBot 1: I won![0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;34;49mBot 2: Ready Blue Player a6fce9a4-362c-4bdb-b4de-3eebf4d186a3[0m
[0;34;49mBot 2: Moving to 14-1[0m
[0;34;49mBot 2: Moving to 14-2[0m
[0;34;49mBot 2: Moving to 14-3[0m
[0;34;49mBot 2: Moving to 14-4[0m
[0;34;49mBot 2: Moving to 13-4[0m
[0;34;49mBot 2: Moving to 13-3[0m
[0;34;49mBot 2: Moving to 13-2[0m
[0;34;49mBot 2: Moving to 13-1[0m
[0;34;49mBot 2: Moving to 13-0[0m
[0;34;49mBot 2: Moving to 12-0[0m
[0;34;49mBot 2: Moving to 11-0[0m
[0;34;49mBot 2: Moving to 10-0[0m
[0;34;49mBot 2: Moving to 9-0[0m
[0;34;49mBot 2: Moving to 8-0[0m
[0;34;49mBot 2: Moving to 7-0[0m
[0;34;49mBot 2: Moving to 6-0[0m
[0;34;49mBot 2: Failed to make a move![0m
[0;34;49mBot 2: {"timestamp":"2018-10-11T18:16:29.238+0000","status":400,"error":"Bad Request","message":"You ran into the yellow player's tail","path":"/games/a679a1d4-5066-4fd6-be18-8bf3cecf461a/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;34;49mBot 1: Ready Blue Player b2292a9b-b407-4e18-bcd5-21ff4347b3aa[0m
[0;34;49mBot 1: Moving to 1-24[0m
[0;34;49mBot 1: Moving to 1-23[0m
[0;34;49mBot 1: Moving to 1-22[0m
[0;34;49mBot 1: Moving to 2-22[0m
[0;34;49mBot 1: Moving to 2-23[0m
[0;34;49mBot 1: Moving to 2-24[0m
[0;34;49mBot 1: Moving to 3-24[0m
[0;34;49mBot 1: Moving to 3-23[0m
[0;34;49mBot 1: Moving to 4-23[0m
[0;34;49mBot 1: Moving to 5-23[0m
[0;34;49mBot 1: Moving to 5-24[0m
[0;34;49mBot 1: Moving to 4-24[0m
[0;34;49mBot 1: Moving to 3-24[0m
[0;34;49mBot 1: Failed to make a move![0m
[0;34;49mBot 1: {"timestamp":"2018-10-11T18:16:29.303+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/4f62fe9e-15af-4d3d-80b0-f0b4a26f94f5/move"}[0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;33;49mBot 2: Ready Yellow Player 4bd555f7-1968-403e-985e-7340cc6dc21c[0m
[0;33;49mBot 2: Moving to 1-0[0m
[0;33;49mBot 2: Moving to 1-1[0m
[0;33;49mBot 2: Moving to 1-2[0m
[0;33;49mBot 2: Moving to 0-2[0m
[0;33;49mBot 2: Moving to 0-3[0m
[0;33;49mBot 2: Moving to 1-3[0m
[0;33;49mBot 2: Moving to 1-4[0m
[0;33;49mBot 2: Moving to 0-4[0m
[0;33;49mBot 2: Moving to 0-5[0m
[0;33;49mBot 2: Moving to 0-6[0m
[0;33;49mBot 2: Moving to 1-6[0m
[0;33;49mBot 2: Moving to 1-7[0m
[0;33;49mBot 2: Moving to 0-7[0m
[0;33;49mBot 2: I won![0m
Exited bot 2
Starting bot 2...
Bot 2: Joining game...
[0;31;49mBot 2: Ready Red Player 137cec8d-e96b-47e2-ac71-c6628d80d850[0m
[0;31;49mBot 2: Moving to 8-9[0m
[0;31;49mBot 2: Moving to 8-10[0m
[0;31;49mBot 2: Moving to 8-11[0m
[0;31;49mBot 2: Moving to 9-11[0m
[0;31;49mBot 2: Moving to 9-12[0m
[0;31;49mBot 2: Moving to 8-12[0m
[0;31;49mBot 2: Moving to 8-13[0m
[0;31;49mBot 2: Moving to 7-13[0m
[0;31;49mBot 2: Moving to 7-12[0m
[0;31;49mBot 2: Moving to 6-12[0m
[0;31;49mBot 2: Moving to 6-11[0m
[0;31;49mBot 2: Moving to 6-10[0m
[0;31;49mBot 2: Moving to 7-10[0m
[0;31;49mBot 2: Moving to 7-11[0m
[0;31;49mBot 2: Moving to 6-11[0m
[0;31;49mBot 2: Failed to make a move![0m
[0;31;49mBot 2: {"timestamp":"2018-10-11T18:16:29.434+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/795c219a-4b29-4b07-9f10-492f3ac86813/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;32;49mBot 1: Ready Green Player 1bdaeffb-0ebe-44bb-9fe0-4389029d5b7e[0m
[0;32;49mBot 1: Moving to 8-6[0m
[0;32;49mBot 1: Moving to 8-5[0m
[0;32;49mBot 1: Moving to 8-4[0m
[0;32;49mBot 1: Moving to 9-4[0m
[0;32;49mBot 1: Moving to 10-4[0m
[0;32;49mBot 1: Moving to 10-3[0m
[0;32;49mBot 1: Moving to 9-3[0m
[0;32;49mBot 1: Moving to 8-3[0m
[0;32;49mBot 1: Moving to 7-3[0m
[0;32;49mBot 1: Moving to 7-2[0m
[0;32;49mBot 1: Moving to 8-2[0m
[0;32;49mBot 1: Moving to 9-2[0m
[0;32;49mBot 1: Moving to 10-2[0m
[0;32;49mBot 1: Moving to 11-2[0m
[0;32;49mBot 1: I won![0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;32;49mBot 2: Ready Green Player a18e77d4-7d24-4979-9e4e-5e8485be1dac[0m
[0;32;49mBot 2: Moving to 24-11[0m
[0;32;49mBot 2: Moving to 24-10[0m
[0;32;49mBot 2: Moving to 23-10[0m
[0;32;49mBot 2: Moving to 22-10[0m
[0;32;49mBot 2: Moving to 22-9[0m
[0;32;49mBot 2: Moving to 22-8[0m
[0;32;49mBot 2: Moving to 23-8[0m
[0;32;49mBot 2: Moving to 23-7[0m
[0;32;49mBot 2: Moving to 24-7[0m
[0;32;49mBot 2: Moving to 24-8[0m
[0;32;49mBot 2: Moving to 24-9[0m
[0;32;49mBot 2: Moving to 23-9[0m
[0;32;49mBot 2: Moving to 22-9[0m
[0;32;49mBot 2: Failed to make a move![0m
[0;32;49mBot 2: {"timestamp":"2018-10-11T18:16:29.548+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/82557f72-2e2f-4614-99b1-bab5a1a623ec/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;33;49mBot 1: Ready Yellow Player dc1dd874-4db5-43ef-85c7-b544f0d3b205[0m
[0;33;49mBot 1: Moving to 0-13[0m
[0;33;49mBot 1: Moving to 0-14[0m
[0;33;49mBot 1: Moving to 0-15[0m
[0;33;49mBot 1: Moving to 0-16[0m
[0;33;49mBot 1: Moving to 0-17[0m
[0;33;49mBot 1: Moving to 0-18[0m
[0;33;49mBot 1: Moving to 0-19[0m
[0;33;49mBot 1: Moving to 1-19[0m
[0;33;49mBot 1: Moving to 1-20[0m
[0;33;49mBot 1: Moving to 0-20[0m
[0;33;49mBot 1: Moving to 0-21[0m
[0;33;49mBot 1: Moving to 1-21[0m
[0;33;49mBot 1: I won![0m
Exited bot 1
Starting bot 1...
Bot 1: Joining game...
[0;31;49mBot 1: Ready Red Player c1cda54d-96f1-4f9e-b75e-cdeb73ce7e2d[0m
[0;31;49mBot 1: Moving to 1-7[0m
[0;31;49mBot 1: Moving to 1-6[0m
[0;31;49mBot 1: Moving to 2-6[0m
[0;31;49mBot 1: Moving to 3-6[0m
[0;31;49mBot 1: Moving to 4-6[0m
[0;31;49mBot 1: Moving to 5-6[0m
[0;31;49mBot 1: Moving to 5-7[0m
[0;31;49mBot 1: Moving to 4-7[0m
[0;31;49mBot 1: Moving to 3-7[0m
[0;31;49mBot 1: Moving to 3-8[0m
[0;31;49mBot 1: Moving to 2-8[0m
[0;31;49mBot 1: Moving to 2-7[0m
[0;31;49mBot 1: Moving to 1-7[0m
[0;31;49mBot 1: Failed to make a move![0m
[0;31;49mBot 1: {"timestamp":"2018-10-11T18:16:29.939+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/7cd3a68c-a397-48e7-b42a-7c5abc60e3aa/move"}[0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;32;49mBot 2: Ready Green Player 82373feb-5419-4e48-af8f-15d4bedace0c[0m
[0;32;49mBot 2: Moving to 8-14[0m
[0;32;49mBot 2: Moving to 9-14[0m
[0;32;49mBot 2: Moving to 9-13[0m
[0;32;49mBot 2: Moving to 9-12[0m
[0;32;49mBot 2: Moving to 8-12[0m
[0;32;49mBot 2: Moving to 7-12[0m
[0;32;49mBot 2: Moving to 7-11[0m
[0;32;49mBot 2: Moving to 8-11[0m
[0;32;49mBot 2: Moving to 8-10[0m
[0;32;49mBot 2: Moving to 7-10[0m
[0;32;49mBot 2: Moving to 7-9[0m
[0;32;49mBot 2: Moving to 6-9[0m
[0;32;49mBot 2: I won![0m
Exited bot 2
Starting bot 2...
Bot 2: Joining game...
[0;33;49mBot 2: Ready Yellow Player afa48a18-e4f5-42b6-aba8-5387aac396fc[0m
[0;33;49mBot 2: Moving to 8-0[0m
[0;33;49mBot 2: Moving to 9-0[0m
[0;33;49mBot 2: Moving to 10-0[0m
[0;33;49mBot 2: Moving to 11-0[0m
[0;33;49mBot 2: Moving to 11-1[0m
[0;33;49mBot 2: Moving to 12-1[0m
[0;33;49mBot 2: Moving to 12-2[0m
[0;33;49mBot 2: Moving to 13-2[0m
[0;33;49mBot 2: Moving to 13-1[0m
[0;33;49mBot 2: Moving to 14-1[0m
[0;33;49mBot 2: Moving to 14-0[0m
[0;33;49mBot 2: Moving to 13-0[0m
[0;33;49mBot 2: Moving to 12-0[0m
[0;33;49mBot 2: Moving to 11-0[0m
[0;33;49mBot 2: Failed to make a move![0m
[0;33;49mBot 2: {"timestamp":"2018-10-11T18:16:31.285+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/7b759f6d-afc9-4fe0-9ddc-624376896f48/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;32;49mBot 1: Ready Green Player 4e02e6b7-acd3-4c6e-98f4-02c989c558c1[0m
[0;32;49mBot 1: Moving to 13-7[0m
[0;32;49mBot 1: Moving to 13-8[0m
[0;32;49mBot 1: Moving to 12-8[0m
[0;32;49mBot 1: Moving to 12-7[0m
[0;32;49mBot 1: Moving to 11-7[0m
[0;32;49mBot 1: Moving to 11-6[0m
[0;32;49mBot 1: Moving to 12-6[0m
[0;32;49mBot 1: Moving to 12-5[0m
[0;32;49mBot 1: Moving to 11-5[0m
[0;32;49mBot 1: Moving to 11-4[0m
[0;32;49mBot 1: Moving to 10-4[0m
[0;32;49mBot 1: Moving to 10-5[0m
[0;32;49mBot 1: Moving to 9-5[0m
[0;32;49mBot 1: Moving to 9-6[0m
[0;32;49mBot 1: I won![0m
Exited bot 1
Starting bot 2...
Bot 2: Joining game...
[0;31;49mBot 2: Ready Red Player 30c61359-a1eb-460f-b415-fe6191030595[0m
[0;31;49mBot 2: Moving to 13-13[0m
[0;31;49mBot 2: Moving to 14-13[0m
[0;31;49mBot 2: Moving to 14-12[0m
[0;31;49mBot 2: Moving to 15-12[0m
[0;31;49mBot 2: Moving to 15-11[0m
[0;31;49mBot 2: Moving to 14-11[0m
[0;31;49mBot 2: Moving to 14-10[0m
[0;31;49mBot 2: Moving to 15-10[0m
[0;31;49mBot 2: Moving to 16-10[0m
[0;31;49mBot 2: Moving to 17-10[0m
[0;31;49mBot 2: Moving to 18-10[0m
[0;31;49mBot 2: Moving to 18-9[0m
[0;31;49mBot 2: Moving to 19-9[0m
[0;31;49mBot 2: Moving to 20-9[0m
[0;31;49mBot 2: Moving to 20-10[0m
[0;31;49mBot 2: Moving to 20-11[0m
[0;31;49mBot 2: Moving to 19-11[0m
[0;31;49mBot 2: Moving to 19-10[0m
[0;31;49mBot 2: Moving to 18-10[0m
[0;31;49mBot 2: Failed to make a move![0m
[0;31;49mBot 2: {"timestamp":"2018-10-11T18:16:31.422+0000","status":400,"error":"Bad Request","message":"You ran into your own tail","path":"/games/59425422-713e-4a1e-ae2d-f5014e38ba60/move"}[0m
Exited bot 2
Starting bot 1...
Bot 1: Joining game...
[0;32;49mBot 1: Ready Green Player a1a00604-87eb-49a2-9832-dbf47dd4d43d[0m
[0;32;49mBot 1: Moving to 12-13[0m
[0;32;49mBot 1: Moving to 11-13[0m
[0;32;49mBot 1: Moving to 11-14[0m
[0;32;49mBot 1: Moving to 11-15[0m
[0;32;49mBot 1: Moving to 11-16[0m
[0;32;49mBot 1: Moving to 11-17[0m
[0;32;49mBot 1: Moving to 11-18[0m
[0;32;49mBot 1: Moving to 10-18[0m
[0;32;49mBot 1: Moving to 9-18[0m
[0;32;49mBot 1: Moving to 9-17[0m
[0;32;49mBot 1: Moving to 9-16[0m
[0;32;49mBot 1: Moving to 9-15[0m
[0;32;49mBot 1: Moving to 10-15[0m