-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathreplay.html
More file actions
1142 lines (904 loc) · 275 KB
/
replay.html
File metadata and controls
1142 lines (904 loc) · 275 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- saved from url=(0097)http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments= -->
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml" xml:lang="en" lang="en" class="dj_webkit dj_chrome dj_contentbox"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Language" content="en">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="description" content="{PAGE_META_DESCRIPTION}">
<meta name="description" content="{PAGE_META_DESCRIPTION}">
<meta property="og:title" content="Quoridor">
<meta property="og:type" content="game">
<meta property="og:url" content="http://en.3.boardgamearena.com/quoridor?table=17456177">
<meta property="og:image" content="http://cdn.boardgamearena.net/data/themereleases/151217-1440/img/mainsite/landing_img.png">
<meta property="og:site_name" content="Board Game Arena">
<meta property="fb:admins" content="653096428">
<meta property="fb:app_id" content="180422645455864">
<meta property="og:description" content="{PAGE_META_DESCRIPTION}">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="Board Game Arena">
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-TileImage" content="bc5a4ada-ff33-46e9-9a58-55ec3f8b08f2.png">
<meta name="robots" content="noindex">
<link rel="image_src" href="http://cdn.boardgamearena.net/data/themereleases/151217-1440/img/logo/logo.png">
<link rel="canonical" href="">
<link rel="shortcut icon" type="image/x-icon" href="http://en.boardgamearena.com/favicon.ico">
<link rel="stylesheet" type="text/css" href="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/tundra.css">
<link rel="stylesheet" type="text/css" href="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/quoridor.css">
<style type="text/css"></style>
<link rel="apple-touch-icon" href="http://cdn.boardgamearena.net/data/themereleases/151119-1457//img/logo/apple_icon.png">
<link rel="publisher" href="https://plus.google.com/+BoardgamearenaOfficial">
<script src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/cb=gapi.loaded_0" async=""></script><script type="text/javascript" async="" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/client-plusone.js" gapi_processed="true"></script><script async="" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/analytics.js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/acme.js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/ly_studio_ROOT.js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/quoridor.js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/loading.js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/common.js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/validate.js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/ComboBox.js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/commands.js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/FontChoice.js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/lang_mainsite-20151119.js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/lang_quoridor-20151119.js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/lang_quoridor-20151119(1).js"></script><script type="text/javascript" charset="utf-8" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/lang_mainsite-20151119(1).js"></script><script type="text/javascript">
var dojoConfig = {
parseOnLoad: true,
async: true,
useXDomain: true,
baseUrl: "http://cdn.boardgamearena.net/data/themereleases/151119-1457/js/dojoroot/dojo/",
packages: [{
name: "ebg",
location: "http://cdn.boardgamearena.net/data/themereleases/151119-1457/js/modules"
},{
name: "bgagame",
location: "http://cdn.boardgamearena.net/data/themereleases/151119-1457/games/quoridor/150505-0012/"
}],
dojoBlankHtmlUrl: "/blank.html",
locale: 'en'
};
var bgaConfig = {
webrtcEnabled: true,
facebookAppId: 'replace_with_real_id',
googleAppId: 'replace_with_real_id'
};
var webrtcConfig = {
pcConfig: {'iceServers': [
{'url': 'stun:stun.l.google.com:19302'},
{'url': 'stun:stun2.l.google.com:19302'},
{'url': 'stun:stun4.l.google.com:19302'},
{'url': 'stun:stun.iptel.org'},
{'url': 'stun:stun.schlund.de'}
]},
pcConstraints: {'optional': [{'DtlsSrtpKeyAgreement': true}]},
audioSendCodec: '',
audioReceiveCodec: '',
iceTricklingEnabled: true
};
</script>
<script type="text/javascript" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/socket.io-1.2.0.js"> </script>
<script type="text/javascript" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/dojo.js"> </script>
<script type="text/javascript" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/webrtcadapter.js"> </script>
<script type="text/javascript" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/ly_studio.js"> </script>
<title>You must move your pawn or place a fence • Quoridor • Board Game Arena</title>
<style type="text/css">.fb_hidden{position:absolute;top:-10000px;z-index:10001}.fb_reposition{overflow-x:hidden;position:relative}.fb_invisible{display:none}.fb_reset{background:none;border:0;border-spacing:0;color:#000;cursor:auto;direction:ltr;font-family:"lucida grande", tahoma, verdana, arial, sans-serif;font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:1;margin:0;overflow:visible;padding:0;text-align:left;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;visibility:visible;white-space:normal;word-spacing:normal}.fb_reset>div{overflow:hidden}.fb_link img{border:none}
.fb_dialog{background:rgba(82, 82, 82, .7);position:absolute;top:-10000px;z-index:10001}.fb_reset .fb_dialog_legacy{overflow:visible}.fb_dialog_advanced{padding:10px;-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px}.fb_dialog_content{background:#fff;color:#333}.fb_dialog_close_icon{background:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 0 transparent;_background-image:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/yL/r/s816eWC-2sl.gif);cursor:pointer;display:block;height:15px;position:absolute;right:18px;top:17px;width:15px}.fb_dialog_mobile .fb_dialog_close_icon{top:5px;left:5px;right:auto}.fb_dialog_padding{background-color:transparent;position:absolute;width:1px;z-index:-1}.fb_dialog_close_icon:hover{background:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -15px transparent;_background-image:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/yL/r/s816eWC-2sl.gif)}.fb_dialog_close_icon:active{background:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -30px transparent;_background-image:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/yL/r/s816eWC-2sl.gif)}.fb_dialog_loader{background-color:#f6f7f8;border:1px solid #606060;font-size:24px;padding:20px}.fb_dialog_top_left,.fb_dialog_top_right,.fb_dialog_bottom_left,.fb_dialog_bottom_right{height:10px;width:10px;overflow:hidden;position:absolute}.fb_dialog_top_left{background:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/ye/r/8YeTNIlTZjm.png) no-repeat 0 0;left:-10px;top:-10px}.fb_dialog_top_right{background:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/ye/r/8YeTNIlTZjm.png) no-repeat 0 -10px;right:-10px;top:-10px}.fb_dialog_bottom_left{background:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/ye/r/8YeTNIlTZjm.png) no-repeat 0 -20px;bottom:-10px;left:-10px}.fb_dialog_bottom_right{background:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/ye/r/8YeTNIlTZjm.png) no-repeat 0 -30px;right:-10px;bottom:-10px}.fb_dialog_vert_left,.fb_dialog_vert_right,.fb_dialog_horiz_top,.fb_dialog_horiz_bottom{position:absolute;background:#525252;filter:alpha(opacity=70);opacity:.7}.fb_dialog_vert_left,.fb_dialog_vert_right{width:10px;height:100%}.fb_dialog_vert_left{margin-left:-10px}.fb_dialog_vert_right{right:0;margin-right:-10px}.fb_dialog_horiz_top,.fb_dialog_horiz_bottom{width:100%;height:10px}.fb_dialog_horiz_top{margin-top:-10px}.fb_dialog_horiz_bottom{bottom:0;margin-bottom:-10px}.fb_dialog_iframe{line-height:0}.fb_dialog_content .dialog_title{background:#6d84b4;border:1px solid #3a5795;color:#fff;font-size:14px;font-weight:bold;margin:0}.fb_dialog_content .dialog_title>span{background:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/yd/r/Cou7n-nqK52.gif) no-repeat 5px 50%;float:left;padding:5px 0 7px 26px}body.fb_hidden{-webkit-transform:none;height:100%;margin:0;overflow:visible;position:absolute;top:-10000px;left:0;width:100%}.fb_dialog.fb_dialog_mobile.loading{background:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/ya/r/3rhSv5V8j3o.gif) white no-repeat 50% 50%;min-height:100%;min-width:100%;overflow:hidden;position:absolute;top:0;z-index:10001}.fb_dialog.fb_dialog_mobile.loading.centered{width:auto;height:auto;min-height:initial;min-width:initial;background:none}.fb_dialog.fb_dialog_mobile.loading.centered #fb_dialog_loader_spinner{width:100%}.fb_dialog.fb_dialog_mobile.loading.centered .fb_dialog_content{background:none}.loading.centered #fb_dialog_loader_close{color:#fff;display:block;padding-top:20px;clear:both;font-size:18px}#fb-root #fb_dialog_ipad_overlay{background:rgba(0, 0, 0, .45);position:absolute;left:0;top:0;width:100%;min-height:100%;z-index:10000}#fb-root #fb_dialog_ipad_overlay.hidden{display:none}.fb_dialog.fb_dialog_mobile.loading iframe{visibility:hidden}.fb_dialog_content .dialog_header{-webkit-box-shadow:white 0 1px 1px -1px inset;background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#738ABA), to(#2C4987));border-bottom:1px solid;border-color:#1d4088;color:#fff;font:14px Helvetica, sans-serif;font-weight:bold;text-overflow:ellipsis;text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0;vertical-align:middle;white-space:nowrap}.fb_dialog_content .dialog_header table{-webkit-font-smoothing:subpixel-antialiased;height:43px;width:100%}.fb_dialog_content .dialog_header td.header_left{font-size:12px;padding-left:5px;vertical-align:middle;width:60px}.fb_dialog_content .dialog_header td.header_right{font-size:12px;padding-right:5px;vertical-align:middle;width:60px}.fb_dialog_content .touchable_button{background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#4966A6), color-stop(.5, #355492), to(#2A4887));border:1px solid #2f477a;-webkit-background-clip:padding-box;-webkit-border-radius:3px;-webkit-box-shadow:rgba(0, 0, 0, .117188) 0 1px 1px inset, rgba(255, 255, 255, .167969) 0 1px 0;display:inline-block;margin-top:3px;max-width:85px;line-height:18px;padding:4px 12px;position:relative}.fb_dialog_content .dialog_header .touchable_button input{border:none;background:none;color:#fff;font:12px Helvetica, sans-serif;font-weight:bold;margin:2px -12px;padding:2px 6px 3px 6px;text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0}.fb_dialog_content .dialog_header .header_center{color:#fff;font-size:16px;font-weight:bold;line-height:18px;text-align:center;vertical-align:middle}.fb_dialog_content .dialog_content{background:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/y9/r/jKEcVPZFk-2.gif) no-repeat 50% 50%;border:1px solid #555;border-bottom:0;border-top:0;height:150px}.fb_dialog_content .dialog_footer{background:#f6f7f8;border:1px solid #555;border-top-color:#ccc;height:40px}#fb_dialog_loader_close{float:left}.fb_dialog.fb_dialog_mobile .fb_dialog_close_button{text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0}.fb_dialog.fb_dialog_mobile .fb_dialog_close_icon{visibility:hidden}#fb_dialog_loader_spinner{animation:rotateSpinner 1.2s linear infinite;background-color:transparent;background-image:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/yD/r/t-wz8gw1xG1.png);background-repeat:no-repeat;background-position:50% 50%;height:24px;width:24px}@keyframes rotateSpinner{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
.fb_iframe_widget{display:inline-block;position:relative}.fb_iframe_widget span{display:inline-block;position:relative;text-align:justify}.fb_iframe_widget iframe{position:absolute}.fb_iframe_widget_fluid_desktop,.fb_iframe_widget_fluid_desktop span,.fb_iframe_widget_fluid_desktop iframe{max-width:100%}.fb_iframe_widget_fluid_desktop iframe{min-width:220px;position:relative}.fb_iframe_widget_lift{z-index:1}.fb_hide_iframes iframe{position:relative;left:-10000px}.fb_iframe_widget_loader{position:relative;display:inline-block}.fb_iframe_widget_fluid{display:inline}.fb_iframe_widget_fluid span{width:100%}.fb_iframe_widget_loader iframe{min-height:32px;z-index:2;zoom:1}.fb_iframe_widget_loader .FB_Loader{background:url(https://fbstatic-a.akamaihd.net/rsrc.php/v2/y9/r/jKEcVPZFk-2.gif) no-repeat;height:32px;width:32px;margin-left:-16px;position:absolute;left:50%;z-index:4}</style></head>
<body id="ebd-body" class="tundra notouch-device lockedInterface">
<div id="overall-content" class="gamestate_playerTurn">
<div id="topbar" class="ingame playmode_realtime">
<div id="topbar_content">
<div id="tableinfos">
<div class="table_ref_item">Table #17456177</div>
<div class="table_ref_item">Move #<span id="move_nbr">1</span></div>
<div class="table_ref_item">Progression <span id="pr_gameprogression">0</span>%</div>
</div>
<div id="current_header_infos_wrap">
<div id="inactiveplayerpanel">
<div id="">
</div>
</div>
<div id="reflexiontime" style="display:none">
<div id="reflexiontimevalues">
<span id="its_your_turn">It's your turn!<br></span>
<span id="reflexiontime_value"></span>
<div id="wouldlikethink"><a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="wouldlikethink_button" style="display:none;">I would like to think a little, thank you</a></div>
</div>
</div>
</div>
<div id="site-logo">
<a id="logoicon" href="http://en.boardgamearena.com/#!table?table=17456177"><img id="logoiconimg" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/logo.png"></a>
<a id="logoicon_inprogress" href="http://en.boardgamearena.com/#!table?table=17456177" style="display:none"><img id="logoiconimg_inprogress" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/waiting.gif"></a>
<div id="inprogress"><span id="inprogress_inner"></span></div>
</div>
<span id="previously_on">Previously on Quoridor n°17456177 ... <span id="skip_last_moves" class="smalltext">(<a href="http://en.boardgamearena.com/quoridor?table=17456177">[Skip last moves replay]</a>)</span></span>
<div id="archivecontrol" class="" style="display: block;"><a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="archive_addcomment"><div class="icon20 icon20_comment"></div></a><a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" onclick="window.location.reload();return false;"><img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/archive_restart.png" alt="restart"></a><a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="archive_next"><img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/archive_nextmove.png" alt="next move"></a><a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="archive_next_turn"><img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/archive_nextturn.png" alt="next turn"></a><a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="archive_end_game"><img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/archive_toend.png" alt="to end"></a><div id="archive_go_to_move_wrap"><a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="archive_go_to_move">Go to move...</a>
<div id="archive_go_to_move_control" style="display:none;">
<input type="text" id="archive_go_to_move_nbr"> <a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="archive_go_to_move_btn">Go</a>
</div>
•
<a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="archive_go_to_nextComment">Go to next comment</a>
</div><div id="archiveViewerName" style="display:none;">wickedbad</div></div><div id="archiveComments" style="display:none;"></div>
<div id="upperrightmenu">
<div class="upperrightmenu_item">
<a id="globalaction_sound" class="globalaction globalaction_sound icon20 icon20_mute_white" href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" onclick="return false;"></a>
</div>
<div class="upperrightmenu_item">
<a id="globalaction_fullscreen" class="globalaction globalaction_fullscreen icon20 icon20_fullscreen_white" href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#"></a>
</div>
<div id="ingame_menu_notes_wrap" class="upperrightmenu_item" style="display:none;">
<a id="ingame_menu_notes" class="icon32 icon32_notes" href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#"></a>
</div>
<div id="ingame_menu" class="upperrightmenu_item">
<div id="ingame_menu_wheel" class="icon32 icon32_wheel">
<div id="ingame_menu_mark" class="icon20 icon20_arrowdown_white"></div>
</div>
</div>
</div>
</div><!-- topbar content -->
</div>
<div id="leftright_page_wrapper">
<div id="ingame_menu_content">
<a id="ingame_menu_howtoplay" class="ingame_menu_item" href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#help">
<div class="icon64 icon64_book"></div>
<p>How to play?</p>
</a>
<a class="ingame_menu_item" href="http://amazon.com/gp/search?ie=UTF8&camp=1642&creative=6746&index=toys&keywords=Quoridor&linkCode=ur2&tag=boagamare-20" target="_blank" style="display:inline-block">
<div class="icon64 icon64_cart"></div>
<p>Buy on Amazon.com</p>
</a>
<div id="ingame_menu_concede" class="ingame_menu_item">
<div class="icon64 icon64_whiteflag"></div>
<p>Concede the game</p>
</div>
<div id="ingame_menu_abandon" class="ingame_menu_item">
<div class="icon64 icon64_handshake"></div>
<p>Propose to abandon the game collectively</p>
</div>
<a id="ingame_menu_quit" class="ingame_menu_item" href="http://en.boardgamearena.com/#!table?table=17456177">
<div class="icon64 icon64_quit"></div>
<p>Quit this game</p>
</a>
<a id="ingame_menu_back" class="ingame_menu_item" href="http://en.boardgamearena.com/#!table?table=17456177">
<div class="icon64 icon64_back"></div>
<p>Return to the main website</p>
</a>
<div id="ingame_menu_expresstop" class="ingame_menu_item" style="display:none;">
<div class="icon64 icon64_stop"></div>
<p>Express STOP</p>
</div>
<div class="clear"></div>
<hr>
<h2>Preferences</h2>
<div class="preference_choice">
<div class="row-data row-data-large">
<div class="row-label">Display game logs</div>
<div class="row-value">
<select id="preference_global_control_logsSecondColumn" class="preference_control" style="display: block;">
<option value="0" selected="selected">Below player panels</option>
<option value="1">On a second column</option>
</select>
</div>
</div>
</div>
<br>
<h2>Game options</h2>
<div class="row-data row-data-large">
<div class="row-label">Game speed</div>
<div class="row-value">Realtime • Normal speed</div>
</div>
<div class="row-data row-data-large">
<div class="row-label">ELO rating</div>
<div class="row-value">On</div>
</div>
<div class="row-data row-data-large">
<div class="row-label">Audio-Video</div>
<div class="row-value">Off</div>
</div>
<div id="login-status" style="display:none">
<span><a href="http://en.boardgamearena.com/#!player" target="_blank" id="connected_username" style="display:visible;">Big bear</a></span>
<span id="disconnected_player_menu" style="display:none;">
<a id="connect_button" style="display:none" href="http://en.boardgamearena.com/#!account">log in</a>
</span>
</div>
</div>
<div id="left-side-wrapper" class="playmode_realtime" "="">
<div id="left-side">
<div id="overall-header" style="display:none"></div>
<div id="gameUpdated" class="roundedbox">
<div class="roundedboxinner">
<div class="icon20 icon20_warning"></div> This game has been updated since game start: thus the replay is EXPERIMENTAL.
</div>
</div>
<div id="neutralized_game_panel" class="whiteblock" style="display: none">
</div>
<div id="page-title" class="roundedbox">
<div class="roundedbox_top">
<div class="roundedbox_topleft"></div>
<div class="roundedbox_topmain"></div>
<div class="roundedbox_topright"></div>
</div>
<div class="roundedbox_main">
</div>
<div class="roundedbox_bottom">
<div class="roundedbox_bottomleft"></div>
<div class="roundedbox_bottommain"></div>
<div class="roundedbox_bottomright"></div>
</div>
<div id="pagemaintitle_wrap" class="roundedboxinner">
<div id="maintitlebar_content">
<div style="display:inline-block; position:relative;">
<img id="synchronous_notif_icon" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/waiting.gif" style="display:none; width:22px; height: 22px; position:absolute; left:-30px;" class="imgtext">
<div class="textalign" id="active_player_statusbar" style="display:none;">
<img class="textalign_inner" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/active_player.gif" alt="" id="active_player_statusbar_icon" style="width:32px; height: 32px;">
</div>
<span id="pagemaintitletext"><span style="font-weight:bold;color:#f29a00;">You</span> must move your pawn or place a fence</span><div id="generalactions"></div>
<span id="gotonexttable_wrap" style="display: none;"> <a class="bgabutton bgabutton_red" href="http://en.boardgamearena.com/play?from=17456177"><span>Go to next table</span></a></span>
<a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="ai_not_playing">[The AI is not playing... click here to relaunch it!]</a>
<a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="skip_player_turn" class="bgabutton bgabutton_red" style="display: none;">Skip turn of players out of time</a>
</div>
</div>
<a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="not_playing_help">This player is not playing: what can I do?</a>
</div>
<div id="gameaction_status_wrap" class="roundedboxinner" style="display: none;">
<div style="display:inline-block; padding-left: 22px; position:relative;">
<img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/waiting.gif" style="width:22px; height: 22px; position:absolute; left:-22px;" class="imgtext">
<span id="gameaction_status"></span>
</div>
</div>
</div>
<div id="table-decision" class="roundedbox" style="display: none">
<div class="roundedbox_top">
<div class="roundedbox_topleft"></div>
<div class="roundedbox_topmain"></div>
<div class="roundedbox_topright"></div>
</div>
<div class="roundedbox_main">
</div>
<div class="roundedbox_bottom">
<div class="roundedbox_bottomleft"></div>
<div class="roundedbox_bottommain"></div>
<div class="roundedbox_bottomright"></div>
</div>
<div class="roundedboxinner">
<span id="decision-title"></span><br>
[<a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="decision_yes">Yes</a>] [<a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" id="decision_no">No</a>]
<div id="decision-players">
<br>
Yes: <span id="decision-players-1"></span> •
No: <span id="decision-players-0"></span>
<br>
Pending: <span id="decision-players-undecided"></span>
</div>
</div>
</div>
<div id="zombieBack" class="whiteblock" style="display:none">
<p>Your time to think has expired and all your turns are skipped.</p>
<br>
<p>
<a class="bgabutton bgabutton_red" id="zombieBack_button">Get back in the game</a>
</p>
<br>
</div>
<div id="connect_status" class="roundedbox" style="display: none;">
<div class="roundedbox_top">
<div class="roundedbox_topleft"></div>
<div class="roundedbox_topmain"></div>
<div class="roundedbox_topright"></div>
</div>
<div class="roundedbox_main">
</div>
<div class="roundedbox_bottom">
<div class="roundedbox_bottomleft"></div>
<div class="roundedbox_bottommain"></div>
<div class="roundedbox_bottomright"></div>
</div>
<div id="connect_status_text" class="roundedboxinner">
Application loading ...
</div>
</div>
<div id="page-content" class="game-content">
<div id="head_infomsg" class="head_infomsg"></div>
<div id="game_play_area">
<!--
--------
-- BGA framework: © Gregory Isabelli <gisabelli@boardgamearena.com> & Emmanuel Colin <ecolin@boardgamearena.com>
-- Quoridor implementation : © <Your name here> <Your email address here>
--
-- This code has been produced on the BGA studio platform for use on http://boardgamearena.com.
-- See http://en.boardgamearena.com/#!doc/Studio for more information.
-------
quoridor_quoridor.tpl
This is the HTML template of your game.
Everything you are writing in this file will be displayed in the HTML page of your game user interface,
in the "main game zone" of the screen.
You can use in this template:
_ variables, with the format {MY_VARIABLE_ELEMENT}.
_ HTML block, with the BEGIN/END format
See your "view" PHP file to check how to set variables and control blocks
-->
<!-- BEGIN dynamic_classes -->
<style type="text/css">
/* Dynamic classes */
.wall_{ORIENTATION} {
width: 9px;
height: 123px;
background-position: -200px 0px;
}
.wall_{OTHER_ORIENTATION} {
width: 123px;
height: 9px;
background-position: 0px -200px;
}
.possible_wall_{ORIENTATION} {
width: 9px;
height: 123px;
background-position: -209px 0px;
visibility: hidden;
}
.possible_wall_{OTHER_ORIENTATION} {
width: 123px;
height: 9px;
background-position: 0px -209px;
visibility: hidden;
}
.wall_space_{ORIENTATION} {
width: 15px;
height: 57px;
}
.wall_space_{OTHER_ORIENTATION} {
width: 57px;
height: 15px;
}
/* Had to move this here, it's to be declared after .possible_wall_vertical/horizontal */
.possibleWall {
visibility: visible;
}
</style>
<!-- END dynamic_classes -->
<div id="gamearea">
<div id="board">
<div id="pieces"><div id="2_4_8" class="piece" style="left:314px;top:528px"><div id="2_4_8_0" class="sprite jpg shadow" style="background-position:-373px -2293px;width:8px;height:18px;left:26px;top:6px;z-index:52"></div><div id="2_4_8_1" class="sprite jpg shadow" style="background-position:-333px -2048px;width:46px;height:20px;left:-21px;top:24px;z-index:52"></div><div id="2_4_8_2" class="sprite png shadow" style="background-position:-462px -375px;width:9px;height:16px;left:25px;top:24px;z-index:52"></div><div id="2_4_8_3" class="sprite jpg" style="background-position:-196px -1299px;width:49px;height:34px;left:-24px;top:-10px;z-index:72"></div><div id="2_4_8_4" class="sprite jpg" style="background-position:-272px -2798px;width:45px;height:13px;left:-20px;top:-23px;z-index:72"></div><div id="2_4_8_6" class="sprite png" style="background-position:-596px -668px;width:35px;height:8px;left:-15px;top:-31px;z-index:72"></div></div><div id="3_4_0" class="piece" style="left:309px;top:53px"><div id="3_4_0_0" class="sprite jpg shadow" style="background-position:-303px -1987px;width:6px;height:21px;left:26px;top:-2px;z-index:12"></div><div id="3_4_0_1" class="sprite jpg shadow" style="background-position:-282px -2362px;width:46px;height:17px;left:-35px;top:22px;z-index:12"></div><div id="3_4_0_3" class="sprite jpg" style="background-position:-240px -838px;width:47px;height:43px;left:-23px;top:-21px;z-index:32"></div><div id="3_4_0_6" class="sprite png" style="background-position:-242px -148px;width:45px;height:25px;left:-21px;top:-46px;z-index:32"></div><div id="3_4_0_7" class="sprite png" style="background-position:-654px -697px;width:7px;height:1px;left:24px;top:-3px;z-index:32"></div></div><div id="6_0_0" class="piece" style="left:0px;top:0px"><div id="6_0_0_0" class="sprite png shadow" style="background-position:-0px -697px;width:628px;height:1px;left:0px;top:0px;z-index:6"></div><div id="6_0_0_1" class="sprite png shadow" style="background-position:-0px -652px;width:628px;height:8px;left:0px;top:595px;z-index:6"></div><div id="6_0_0_2" class="sprite jpg shadow" style="background-position:-0px -0px;width:548px;height:594px;left:40px;top:1px;z-index:6"></div><div id="6_0_0_3" class="sprite png shadow" style="background-position:-264px -643px;width:25px;height:9px;left:15px;top:1px;z-index:6"></div><div id="6_0_0_4" class="sprite png shadow" style="background-position:-574px -101px;width:6px;height:35px;left:10px;top:10px;z-index:6"></div><div id="6_0_0_5" class="sprite jpg shadow" style="background-position:-184px -1403px;width:24px;height:35px;left:16px;top:10px;z-index:6"></div><div id="6_0_0_6" class="sprite png shadow" style="background-position:-13px -0px;width:3px;height:74px;left:8px;top:45px;z-index:6"></div><div id="6_0_0_7" class="sprite jpg shadow" style="background-position:-174px -594px;width:29px;height:74px;left:11px;top:45px;z-index:6"></div><div id="6_0_0_8" class="sprite png shadow" style="background-position:-10px -0px;width:3px;height:85px;left:6px;top:119px;z-index:6"></div><div id="6_0_0_9" class="sprite jpg shadow" style="background-position:-143px -594px;width:31px;height:85px;left:9px;top:119px;z-index:6"></div><div id="6_0_0_10" class="sprite png shadow" style="background-position:-4px -0px;width:3px;height:91px;left:4px;top:204px;z-index:6"></div><div id="6_0_0_11" class="sprite jpg shadow" style="background-position:-75px -594px;width:33px;height:91px;left:7px;top:204px;z-index:6"></div><div id="6_0_0_12" class="sprite png shadow" style="background-position:-7px -0px;width:3px;height:87px;left:2px;top:295px;z-index:6"></div><div id="6_0_0_13" class="sprite jpg shadow" style="background-position:-108px -594px;width:35px;height:87px;left:5px;top:295px;z-index:6"></div><div id="6_0_0_14" class="sprite png shadow" style="background-position:-2px -0px;width:2px;height:101px;left:1px;top:382px;z-index:6"></div><div id="6_0_0_15" class="sprite jpg shadow" style="background-position:-38px -594px;width:37px;height:101px;left:3px;top:382px;z-index:6"></div><div id="6_0_0_16" class="sprite png shadow" style="background-position:-0px -0px;width:2px;height:101px;left:0px;top:483px;z-index:6"></div><div id="6_0_0_17" class="sprite jpg shadow" style="background-position:-0px -594px;width:38px;height:101px;left:2px;top:483px;z-index:6"></div><div id="6_0_0_18" class="sprite png shadow" style="background-position:-252px -406px;width:14px;height:15px;left:2px;top:584px;z-index:6"></div><div id="6_0_0_19" class="sprite jpg shadow" style="background-position:-348px -2992px;width:24px;height:15px;left:16px;top:584px;z-index:6"></div><div id="6_0_0_20" class="sprite png shadow" style="background-position:-450px -488px;width:16px;height:13px;left:588px;top:1px;z-index:6"></div><div id="6_0_0_21" class="sprite png shadow" style="background-position:-496px -101px;width:5px;height:42px;left:604px;top:14px;z-index:6"></div><div id="6_0_0_22" class="sprite jpg shadow" style="background-position:-477px -925px;width:16px;height:42px;left:588px;top:14px;z-index:6"></div><div id="6_0_0_23" class="sprite png shadow" style="background-position:-401px -0px;width:4px;height:51px;left:608px;top:56px;z-index:6"></div><div id="6_0_0_24" class="sprite jpg shadow" style="background-position:-410px -594px;width:20px;height:51px;left:588px;top:56px;z-index:6"></div><div id="6_0_0_25" class="sprite png shadow" style="background-position:-16px -0px;width:3px;height:67px;left:610px;top:107px;z-index:6"></div><div id="6_0_0_26" class="sprite jpg shadow" style="background-position:-270px -594px;width:22px;height:67px;left:588px;top:107px;z-index:6"></div><div id="6_0_0_27" class="sprite png shadow" style="background-position:-91px -0px;width:4px;height:60px;left:613px;top:174px;z-index:6"></div><div id="6_0_0_28" class="sprite jpg shadow" style="background-position:-353px -594px;width:25px;height:60px;left:588px;top:174px;z-index:6"></div><div id="6_0_0_29" class="sprite png shadow" style="background-position:-95px -0px;width:4px;height:60px;left:615px;top:234px;z-index:6"></div><div id="6_0_0_30" class="sprite jpg shadow" style="background-position:-326px -594px;width:27px;height:60px;left:588px;top:234px;z-index:6"></div><div id="6_0_0_31" class="sprite png shadow" style="background-position:-22px -0px;width:3px;height:67px;left:618px;top:294px;z-index:6"></div><div id="6_0_0_32" class="sprite jpg shadow" style="background-position:-240px -594px;width:30px;height:67px;left:588px;top:294px;z-index:6"></div><div id="6_0_0_33" class="sprite png shadow" style="background-position:-397px -0px;width:4px;height:51px;left:620px;top:361px;z-index:6"></div><div id="6_0_0_34" class="sprite jpg shadow" style="background-position:-378px -594px;width:32px;height:51px;left:588px;top:361px;z-index:6"></div><div id="6_0_0_35" class="sprite png shadow" style="background-position:-25px -0px;width:4px;height:66px;left:622px;top:412px;z-index:6"></div><div id="6_0_0_36" class="sprite jpg shadow" style="background-position:-292px -594px;width:34px;height:66px;left:588px;top:412px;z-index:6"></div><div id="6_0_0_37" class="sprite png shadow" style="background-position:-19px -0px;width:3px;height:67px;left:625px;top:478px;z-index:6"></div><div id="6_0_0_38" class="sprite jpg shadow" style="background-position:-203px -594px;width:37px;height:67px;left:588px;top:478px;z-index:6"></div><div id="6_0_0_39" class="sprite png shadow" style="background-position:-523px -101px;width:6px;height:40px;left:622px;top:545px;z-index:6"></div><div id="6_0_0_40" class="sprite jpg shadow" style="background-position:-505px -925px;width:34px;height:40px;left:588px;top:545px;z-index:6"></div><div id="6_0_0_41" class="sprite png shadow" style="background-position:-537px -605px;width:31px;height:10px;left:591px;top:585px;z-index:6"></div><div id="6_0_0_42" class="sprite jpg shadow" style="background-position:-42px -3488px;width:3px;height:10px;left:588px;top:585px;z-index:6"></div></div><div id="2_3_8" class="piece" style="left:251px;top:529px"><div id="2_3_8_0" class="sprite jpg shadow" style="width: 5px; height: 14px; left: 28px; top: 10px; z-index: 55; opacity: 0.5; background-position: -533px -3106px;"></div><div id="2_3_8_1" class="sprite jpg shadow" style="width: 43px; height: 21px; left: -17px; top: 24px; z-index: 55; opacity: 0.5; background-position: -394px -1966px;"></div><div id="2_3_8_2" class="sprite png shadow" style="width: 6px; height: 14px; left: 26px; top: 24px; z-index: 55; opacity: 0.5; background-position: -275px -435px;"></div><div id="2_3_8_3" class="sprite jpg" style="width: 50px; height: 34px; left: -25px; top: -10px; z-index: 75; opacity: 0.5; background-position: -350px -1229px;"></div><div id="2_3_8_4" class="sprite jpg" style="width: 45px; height: 13px; left: -22px; top: -23px; z-index: 75; opacity: 0.5; background-position: -407px -2798px;"></div><div id="2_3_8_6" class="sprite png" style="width: 35px; height: 10px; left: -17px; top: -33px; z-index: 75; opacity: 0.5; background-position: -401px -605px;"></div></div><div id="2_4_7" class="piece" style="left:313px;top:468px"><div id="2_4_7_0" class="sprite jpg shadow" style="width: 7px; height: 19px; left: 26px; top: 6px; z-index: 47; opacity: 0.5; background-position: -298px -2184px;"></div><div id="2_4_7_1" class="sprite jpg shadow" style="width: 25px; height: 7px; left: 0px; top: 31px; z-index: 47; opacity: 0.5; background-position: -82px -3523px;"></div><div id="2_4_7_2" class="sprite png shadow" style="width: 7px; height: 7px; left: 25px; top: 25px; z-index: 47; opacity: 0.5; background-position: -229px -684px;"></div><div id="2_4_7_3" class="sprite jpg" style="width: 49px; height: 35px; left: -24px; top: -10px; z-index: 67; opacity: 0.5; background-position: -202px -1121px;"></div><div id="2_4_7_4" class="sprite jpg" style="width: 46px; height: 14px; left: -21px; top: -24px; z-index: 67; opacity: 0.5; background-position: -421px -2530px;"></div><div id="2_4_7_6" class="sprite png" style="width: 41px; height: 13px; left: -18px; top: -37px; z-index: 67; opacity: 0.5; background-position: -340px -462px;"></div><div id="2_4_7_7" class="sprite png" style="width: 1px; height: 4px; left: 25px; top: -16px; z-index: 67; opacity: 0.5; background-position: -515px -691px;"></div></div><div id="2_5_8" class="piece" style="left:377px;top:528px"><div id="2_5_8_0" class="sprite jpg shadow" style="width: 6px; height: 13px; left: 25px; top: 11px; z-index: 49; opacity: 0.5; background-position: -499px -3302px;"></div><div id="2_5_8_1" class="sprite jpg shadow" style="width: 54px; height: 21px; left: -29px; top: 24px; z-index: 49; opacity: 0.5; background-position: -292px -1966px;"></div><div id="2_5_8_2" class="sprite png shadow" style="width: 6px; height: 14px; left: 25px; top: 24px; z-index: 49; opacity: 0.5; background-position: -269px -435px;"></div><div id="2_5_8_3" class="sprite jpg" style="width: 49px; height: 34px; left: -25px; top: -10px; z-index: 69; opacity: 0.5; background-position: -99px -1264px;"></div><div id="2_5_8_4" class="sprite jpg" style="width: 45px; height: 13px; left: -21px; top: -23px; z-index: 69; opacity: 0.5; background-position: -45px -2843px;"></div><div id="2_5_8_6" class="sprite png" style="width: 33px; height: 9px; left: -15px; top: -32px; z-index: 69; opacity: 0.5; background-position: -167px -643px;"></div></div></div>
<!-- BEGIN finish_line -->
<div id="finish_{ORIENTATION}_{PLAYER_NO}" class="finish_color_{PLAYER_NO} {ORIENTATION}_finish" style="left: {LEFT}px; top: {TOP}px;"></div>
<!-- END finish_line -->
<!-- BEGIN square -->
<div id="square_{X}_{Y}" class="square" style="left: {LEFT}px; top: {TOP}px;"></div>
<!-- END square -->
<!-- BEGIN possible_move -->
<div id="move_68364687_{X}_{Y}" class="token hidden_token move_tokencolor_{PLAYER_NO}" style="left: {LEFT}px; top: {TOP}px;"></div>
<!-- END possible_move -->
<!-- BEGIN wall_space -->
<div id="wall_space_{X}_{Y}_{ORIENTATION}" class="wall_space wall_space_{ORIENTATION}" style="left: {LEFT}px; top: {TOP}px;"></div>
<div id="possible_wall_{X}_{Y}_{ORIENTATION}" class="wall possible_wall_{ORIENTATION}" style="left: {LEFT_WALL}px; top: {TOP_WALL}px;"></div>
<!-- END wall_space -->
<div id="tokens">
</div>
<div id="moves">
</div>
<div id="moves">
</div>
<div id="walls">
</div>
<div id="square_1_1" style="position: absolute; width:30px;height:30px;left:54px;top:39px;z-index:99"></div><div id="wall_space_1_1_horizontal" style="position: absolute; width:40px;height:14px;left:49px;top:75px;z-index:99"></div><div id="wall_space_1_1_vertical" style="position: absolute; width:14px;height:40px;left:91px;top:34px;z-index:99"></div><div id="square_1_2" style="position: absolute; width:30px;height:30px;left:53px;top:95px;z-index:99"></div><div id="wall_space_1_2_horizontal" style="position: absolute; width:40px;height:14px;left:48px;top:132px;z-index:99"></div><div id="wall_space_1_2_vertical" style="position: absolute; width:14px;height:40px;left:91px;top:90px;z-index:99"></div><div id="square_1_3" style="position: absolute; width:30px;height:30px;left:52px;top:153px;z-index:99"></div><div id="wall_space_1_3_horizontal" style="position: absolute; width:40px;height:14px;left:47px;top:191px;z-index:99"></div><div id="wall_space_1_3_vertical" style="position: absolute; width:14px;height:40px;left:90px;top:148px;z-index:99"></div><div id="square_1_4" style="position: absolute; width:30px;height:30px;left:51px;top:212px;z-index:99"></div><div id="wall_space_1_4_horizontal" style="position: absolute; width:40px;height:14px;left:46px;top:250px;z-index:99"></div><div id="wall_space_1_4_vertical" style="position: absolute; width:14px;height:40px;left:89px;top:207px;z-index:99"></div><div id="square_1_5" style="position: absolute; width:30px;height:30px;left:51px;top:271px;z-index:99"></div><div id="wall_space_1_5_horizontal" style="position: absolute; width:40px;height:14px;left:45px;top:308px;z-index:99"></div><div id="wall_space_1_5_vertical" style="position: absolute; width:14px;height:40px;left:89px;top:266px;z-index:99"></div><div id="square_1_6" style="position: absolute; width:30px;height:30px;left:50px;top:330px;z-index:99"></div><div id="wall_space_1_6_horizontal" style="position: absolute; width:40px;height:14px;left:44px;top:369px;z-index:99"></div><div id="wall_space_1_6_vertical" style="position: absolute; width:14px;height:40px;left:88px;top:325px;z-index:99"></div><div id="square_1_7" style="position: absolute; width:30px;height:30px;left:49px;top:392px;z-index:99"></div><div id="wall_space_1_7_horizontal" style="position: absolute; width:40px;height:14px;left:44px;top:431px;z-index:99"></div><div id="wall_space_1_7_vertical" style="position: absolute; width:14px;height:40px;left:87px;top:387px;z-index:99"></div><div id="square_1_8" style="position: absolute; width:30px;height:30px;left:48px;top:454px;z-index:99"></div><div id="wall_space_1_8_horizontal" style="position: absolute; width:40px;height:14px;left:43px;top:493px;z-index:99"></div><div id="wall_space_1_8_vertical" style="position: absolute; width:14px;height:40px;left:87px;top:449px;z-index:99"></div><div id="square_1_9" style="position: absolute; width:30px;height:30px;left:47px;top:515px;z-index:99"></div><div id="square_2_1" style="position: absolute; width:30px;height:30px;left:113px;top:39px;z-index:99"></div><div id="wall_space_2_1_horizontal" style="position: absolute; width:40px;height:14px;left:108px;top:75px;z-index:99"></div><div id="wall_space_2_1_vertical" style="position: absolute; width:14px;height:40px;left:151px;top:34px;z-index:99"></div><div id="square_2_2" style="position: absolute; width:30px;height:30px;left:112px;top:95px;z-index:99"></div><div id="wall_space_2_2_horizontal" style="position: absolute; width:40px;height:14px;left:107px;top:132px;z-index:99"></div><div id="wall_space_2_2_vertical" style="position: absolute; width:14px;height:40px;left:151px;top:90px;z-index:99"></div><div id="square_2_3" style="position: absolute; width:30px;height:30px;left:113px;top:153px;z-index:99"></div><div id="wall_space_2_3_horizontal" style="position: absolute; width:40px;height:14px;left:107px;top:191px;z-index:99"></div><div id="wall_space_2_3_vertical" style="position: absolute; width:14px;height:40px;left:151px;top:148px;z-index:99"></div><div id="square_2_4" style="position: absolute; width:30px;height:30px;left:112px;top:212px;z-index:99"></div><div id="wall_space_2_4_horizontal" style="position: absolute; width:40px;height:14px;left:107px;top:250px;z-index:99"></div><div id="wall_space_2_4_vertical" style="position: absolute; width:14px;height:40px;left:151px;top:207px;z-index:99"></div><div id="square_2_5" style="position: absolute; width:30px;height:30px;left:111px;top:271px;z-index:99"></div><div id="wall_space_2_5_horizontal" style="position: absolute; width:40px;height:14px;left:106px;top:308px;z-index:99"></div><div id="wall_space_2_5_vertical" style="position: absolute; width:14px;height:40px;left:150px;top:266px;z-index:99"></div><div id="square_2_6" style="position: absolute; width:30px;height:30px;left:111px;top:330px;z-index:99"></div><div id="wall_space_2_6_horizontal" style="position: absolute; width:40px;height:14px;left:106px;top:369px;z-index:99"></div><div id="wall_space_2_6_vertical" style="position: absolute; width:14px;height:40px;left:150px;top:325px;z-index:99"></div><div id="square_2_7" style="position: absolute; width:30px;height:30px;left:110px;top:392px;z-index:99"></div><div id="wall_space_2_7_horizontal" style="position: absolute; width:40px;height:14px;left:105px;top:431px;z-index:99"></div><div id="wall_space_2_7_vertical" style="position: absolute; width:14px;height:40px;left:150px;top:387px;z-index:99"></div><div id="square_2_8" style="position: absolute; width:30px;height:30px;left:110px;top:454px;z-index:99"></div><div id="wall_space_2_8_horizontal" style="position: absolute; width:40px;height:14px;left:105px;top:493px;z-index:99"></div><div id="wall_space_2_8_vertical" style="position: absolute; width:14px;height:40px;left:149px;top:449px;z-index:99"></div><div id="square_2_9" style="position: absolute; width:30px;height:30px;left:110px;top:515px;z-index:99"></div><div id="square_3_1" style="position: absolute; width:30px;height:30px;left:174px;top:39px;z-index:99"></div><div id="wall_space_3_1_horizontal" style="position: absolute; width:40px;height:14px;left:169px;top:74px;z-index:99"></div><div id="wall_space_3_1_vertical" style="position: absolute; width:14px;height:40px;left:213px;top:34px;z-index:99"></div><div id="square_3_2" style="position: absolute; width:30px;height:30px;left:174px;top:94px;z-index:99"></div><div id="wall_space_3_2_horizontal" style="position: absolute; width:40px;height:14px;left:169px;top:131px;z-index:99"></div><div id="wall_space_3_2_vertical" style="position: absolute; width:14px;height:40px;left:213px;top:89px;z-index:99"></div><div id="square_3_3" style="position: absolute; width:30px;height:30px;left:175px;top:153px;z-index:99"></div><div id="wall_space_3_3_horizontal" style="position: absolute; width:40px;height:14px;left:170px;top:191px;z-index:99"></div><div id="wall_space_3_3_vertical" style="position: absolute; width:14px;height:40px;left:213px;top:148px;z-index:99"></div><div id="square_3_4" style="position: absolute; width:30px;height:30px;left:175px;top:212px;z-index:99"></div><div id="wall_space_3_4_horizontal" style="position: absolute; width:40px;height:14px;left:169px;top:250px;z-index:99"></div><div id="wall_space_3_4_vertical" style="position: absolute; width:14px;height:40px;left:213px;top:207px;z-index:99"></div><div id="square_3_5" style="position: absolute; width:30px;height:30px;left:174px;top:271px;z-index:99"></div><div id="wall_space_3_5_horizontal" style="position: absolute; width:40px;height:14px;left:169px;top:308px;z-index:99"></div><div id="wall_space_3_5_vertical" style="position: absolute; width:14px;height:40px;left:213px;top:266px;z-index:99"></div><div id="square_3_6" style="position: absolute; width:30px;height:30px;left:174px;top:330px;z-index:99"></div><div id="wall_space_3_6_horizontal" style="position: absolute; width:40px;height:14px;left:169px;top:368px;z-index:99"></div><div id="wall_space_3_6_vertical" style="position: absolute; width:14px;height:40px;left:213px;top:325px;z-index:99"></div><div id="square_3_7" style="position: absolute; width:30px;height:30px;left:174px;top:391px;z-index:99"></div><div id="wall_space_3_7_horizontal" style="position: absolute; width:40px;height:14px;left:169px;top:430px;z-index:99"></div><div id="wall_space_3_7_vertical" style="position: absolute; width:14px;height:40px;left:213px;top:386px;z-index:99"></div><div id="square_3_8" style="position: absolute; width:30px;height:30px;left:173px;top:453px;z-index:99"></div><div id="wall_space_3_8_horizontal" style="position: absolute; width:40px;height:14px;left:168px;top:492px;z-index:99"></div><div id="wall_space_3_8_vertical" style="position: absolute; width:14px;height:40px;left:213px;top:448px;z-index:99"></div><div id="square_3_9" style="position: absolute; width:30px;height:30px;left:174px;top:514px;z-index:99"></div><div id="square_4_1" style="position: absolute; width:30px;height:30px;left:235px;top:38px;z-index:99"></div><div id="wall_space_4_1_horizontal" style="position: absolute; width:40px;height:14px;left:230px;top:74px;z-index:99"></div><div id="wall_space_4_1_vertical" style="position: absolute; width:14px;height:40px;left:273px;top:33px;z-index:99"></div><div id="square_4_2" style="position: absolute; width:30px;height:30px;left:235px;top:94px;z-index:99"></div><div id="wall_space_4_2_horizontal" style="position: absolute; width:40px;height:14px;left:230px;top:131px;z-index:99"></div><div id="wall_space_4_2_vertical" style="position: absolute; width:14px;height:40px;left:273px;top:89px;z-index:99"></div><div id="square_4_3" style="position: absolute; width:30px;height:30px;left:235px;top:153px;z-index:99"></div><div id="wall_space_4_3_horizontal" style="position: absolute; width:40px;height:14px;left:230px;top:191px;z-index:99"></div><div id="wall_space_4_3_vertical" style="position: absolute; width:14px;height:40px;left:274px;top:148px;z-index:99"></div><div id="square_4_4" style="position: absolute; width:30px;height:30px;left:235px;top:212px;z-index:99"></div><div id="wall_space_4_4_horizontal" style="position: absolute; width:40px;height:14px;left:230px;top:250px;z-index:99"></div><div id="wall_space_4_4_vertical" style="position: absolute; width:14px;height:40px;left:274px;top:207px;z-index:99"></div><div id="square_4_5" style="position: absolute; width:30px;height:30px;left:235px;top:271px;z-index:99"></div><div id="wall_space_4_5_horizontal" style="position: absolute; width:40px;height:14px;left:230px;top:308px;z-index:99"></div><div id="wall_space_4_5_vertical" style="position: absolute; width:14px;height:40px;left:274px;top:266px;z-index:99"></div><div id="square_4_6" style="position: absolute; width:30px;height:30px;left:236px;top:330px;z-index:99"></div><div id="wall_space_4_6_horizontal" style="position: absolute; width:40px;height:14px;left:231px;top:368px;z-index:99"></div><div id="wall_space_4_6_vertical" style="position: absolute; width:14px;height:40px;left:275px;top:325px;z-index:99"></div><div id="square_4_7" style="position: absolute; width:30px;height:30px;left:236px;top:391px;z-index:99"></div><div id="wall_space_4_7_horizontal" style="position: absolute; width:40px;height:14px;left:231px;top:430px;z-index:99"></div><div id="wall_space_4_7_vertical" style="position: absolute; width:14px;height:40px;left:275px;top:386px;z-index:99"></div><div id="square_4_8" style="position: absolute; width:30px;height:30px;left:236px;top:453px;z-index:99"></div><div id="wall_space_4_8_horizontal" style="position: absolute; width:40px;height:14px;left:231px;top:492px;z-index:99"></div><div id="wall_space_4_8_vertical" style="position: absolute; width:14px;height:40px;left:275px;top:448px;z-index:99"></div><div id="square_4_9" style="position: absolute; width:30px;height:30px;left:236px;top:514px;z-index:99" class="possible_token"></div><div id="square_5_1" style="position: absolute; width:30px;height:30px;left:294px;top:38px;z-index:99"></div><div id="wall_space_5_1_horizontal" style="position: absolute; width:40px;height:14px;left:289px;top:74px;z-index:99"></div><div id="wall_space_5_1_vertical" style="position: absolute; width:14px;height:40px;left:332px;top:33px;z-index:99"></div><div id="square_5_2" style="position: absolute; width:30px;height:30px;left:294px;top:94px;z-index:99"></div><div id="wall_space_5_2_horizontal" style="position: absolute; width:40px;height:14px;left:290px;top:131px;z-index:99"></div><div id="wall_space_5_2_vertical" style="position: absolute; width:14px;height:40px;left:332px;top:89px;z-index:99"></div><div id="square_5_3" style="position: absolute; width:30px;height:30px;left:295px;top:153px;z-index:99"></div><div id="wall_space_5_3_horizontal" style="position: absolute; width:40px;height:14px;left:290px;top:191px;z-index:99"></div><div id="wall_space_5_3_vertical" style="position: absolute; width:14px;height:40px;left:333px;top:148px;z-index:99"></div><div id="square_5_4" style="position: absolute; width:30px;height:30px;left:296px;top:212px;z-index:99"></div><div id="wall_space_5_4_horizontal" style="position: absolute; width:40px;height:14px;left:291px;top:250px;z-index:99"></div><div id="wall_space_5_4_vertical" style="position: absolute; width:14px;height:40px;left:334px;top:207px;z-index:99"></div><div id="square_5_5" style="position: absolute; width:30px;height:30px;left:297px;top:271px;z-index:99"></div><div id="wall_space_5_5_horizontal" style="position: absolute; width:40px;height:14px;left:292px;top:308px;z-index:99"></div><div id="wall_space_5_5_vertical" style="position: absolute; width:14px;height:40px;left:335px;top:265px;z-index:99"></div><div id="square_5_6" style="position: absolute; width:30px;height:30px;left:297px;top:330px;z-index:99"></div><div id="wall_space_5_6_horizontal" style="position: absolute; width:40px;height:14px;left:292px;top:368px;z-index:99"></div><div id="wall_space_5_6_vertical" style="position: absolute; width:14px;height:40px;left:335px;top:325px;z-index:99"></div><div id="square_5_7" style="position: absolute; width:30px;height:30px;left:298px;top:391px;z-index:99"></div><div id="wall_space_5_7_horizontal" style="position: absolute; width:40px;height:14px;left:293px;top:430px;z-index:99"></div><div id="wall_space_5_7_vertical" style="position: absolute; width:14px;height:40px;left:337px;top:386px;z-index:99"></div><div id="square_5_8" style="position: absolute; width:30px;height:30px;left:298px;top:453px;z-index:99" class="possible_token"></div><div id="wall_space_5_8_horizontal" style="position: absolute; width:40px;height:14px;left:294px;top:492px;z-index:99"></div><div id="wall_space_5_8_vertical" style="position: absolute; width:14px;height:40px;left:337px;top:448px;z-index:99"></div><div id="square_5_9" style="position: absolute; width:30px;height:30px;left:299px;top:513px;z-index:99"></div><div id="square_6_1" style="position: absolute; width:30px;height:30px;left:353px;top:38px;z-index:99"></div><div id="wall_space_6_1_horizontal" style="position: absolute; width:40px;height:14px;left:349px;top:74px;z-index:99"></div><div id="wall_space_6_1_vertical" style="position: absolute; width:14px;height:40px;left:391px;top:33px;z-index:99"></div><div id="square_6_2" style="position: absolute; width:30px;height:30px;left:355px;top:94px;z-index:99"></div><div id="wall_space_6_2_horizontal" style="position: absolute; width:40px;height:14px;left:350px;top:131px;z-index:99"></div><div id="wall_space_6_2_vertical" style="position: absolute; width:14px;height:40px;left:393px;top:89px;z-index:99"></div><div id="square_6_3" style="position: absolute; width:30px;height:30px;left:356px;top:152px;z-index:99"></div><div id="wall_space_6_3_horizontal" style="position: absolute; width:40px;height:14px;left:351px;top:190px;z-index:99"></div><div id="wall_space_6_3_vertical" style="position: absolute; width:14px;height:40px;left:394px;top:147px;z-index:99"></div><div id="square_6_4" style="position: absolute; width:30px;height:30px;left:356px;top:212px;z-index:99"></div><div id="wall_space_6_4_horizontal" style="position: absolute; width:40px;height:14px;left:351px;top:249px;z-index:99"></div><div id="wall_space_6_4_vertical" style="position: absolute; width:14px;height:40px;left:394px;top:207px;z-index:99"></div><div id="square_6_5" style="position: absolute; width:30px;height:30px;left:357px;top:270px;z-index:99"></div><div id="wall_space_6_5_horizontal" style="position: absolute; width:40px;height:14px;left:353px;top:307px;z-index:99"></div><div id="wall_space_6_5_vertical" style="position: absolute; width:14px;height:40px;left:396px;top:265px;z-index:99"></div><div id="square_6_6" style="position: absolute; width:30px;height:30px;left:358px;top:329px;z-index:99"></div><div id="wall_space_6_6_horizontal" style="position: absolute; width:40px;height:14px;left:354px;top:367px;z-index:99"></div><div id="wall_space_6_6_vertical" style="position: absolute; width:14px;height:40px;left:397px;top:324px;z-index:99"></div><div id="square_6_7" style="position: absolute; width:30px;height:30px;left:359px;top:390px;z-index:99"></div><div id="wall_space_6_7_horizontal" style="position: absolute; width:40px;height:14px;left:355px;top:429px;z-index:99"></div><div id="wall_space_6_7_vertical" style="position: absolute; width:14px;height:40px;left:398px;top:385px;z-index:99"></div><div id="square_6_8" style="position: absolute; width:30px;height:30px;left:361px;top:452px;z-index:99"></div><div id="wall_space_6_8_horizontal" style="position: absolute; width:40px;height:14px;left:356px;top:491px;z-index:99"></div><div id="wall_space_6_8_vertical" style="position: absolute; width:14px;height:40px;left:400px;top:447px;z-index:99"></div><div id="square_6_9" style="position: absolute; width:30px;height:30px;left:362px;top:513px;z-index:99" class="possible_token"></div><div id="square_7_1" style="position: absolute; width:30px;height:30px;left:414px;top:38px;z-index:99"></div><div id="wall_space_7_1_horizontal" style="position: absolute; width:40px;height:14px;left:410px;top:74px;z-index:99"></div><div id="wall_space_7_1_vertical" style="position: absolute; width:14px;height:40px;left:452px;top:33px;z-index:99"></div><div id="square_7_2" style="position: absolute; width:30px;height:30px;left:415px;top:94px;z-index:99"></div><div id="wall_space_7_2_horizontal" style="position: absolute; width:40px;height:14px;left:411px;top:131px;z-index:99"></div><div id="wall_space_7_2_vertical" style="position: absolute; width:14px;height:40px;left:454px;top:89px;z-index:99"></div><div id="square_7_3" style="position: absolute; width:30px;height:30px;left:416px;top:152px;z-index:99"></div><div id="wall_space_7_3_horizontal" style="position: absolute; width:40px;height:14px;left:412px;top:190px;z-index:99"></div><div id="wall_space_7_3_vertical" style="position: absolute; width:14px;height:40px;left:455px;top:147px;z-index:99"></div><div id="square_7_4" style="position: absolute; width:30px;height:30px;left:418px;top:211px;z-index:99"></div><div id="wall_space_7_4_horizontal" style="position: absolute; width:40px;height:14px;left:413px;top:249px;z-index:99"></div><div id="wall_space_7_4_vertical" style="position: absolute; width:14px;height:40px;left:457px;top:206px;z-index:99"></div><div id="square_7_5" style="position: absolute; width:30px;height:30px;left:419px;top:270px;z-index:99"></div><div id="wall_space_7_5_horizontal" style="position: absolute; width:40px;height:14px;left:415px;top:307px;z-index:99"></div><div id="wall_space_7_5_vertical" style="position: absolute; width:14px;height:40px;left:458px;top:265px;z-index:99"></div><div id="square_7_6" style="position: absolute; width:30px;height:30px;left:421px;top:329px;z-index:99"></div><div id="wall_space_7_6_horizontal" style="position: absolute; width:40px;height:14px;left:416px;top:367px;z-index:99"></div><div id="wall_space_7_6_vertical" style="position: absolute; width:14px;height:40px;left:460px;top:324px;z-index:99"></div><div id="square_7_7" style="position: absolute; width:30px;height:30px;left:422px;top:390px;z-index:99"></div><div id="wall_space_7_7_horizontal" style="position: absolute; width:40px;height:14px;left:418px;top:429px;z-index:99"></div><div id="wall_space_7_7_vertical" style="position: absolute; width:14px;height:40px;left:461px;top:385px;z-index:99"></div><div id="square_7_8" style="position: absolute; width:30px;height:30px;left:423px;top:452px;z-index:99"></div><div id="wall_space_7_8_horizontal" style="position: absolute; width:40px;height:14px;left:419px;top:491px;z-index:99"></div><div id="wall_space_7_8_vertical" style="position: absolute; width:14px;height:40px;left:463px;top:447px;z-index:99"></div><div id="square_7_9" style="position: absolute; width:30px;height:30px;left:424px;top:513px;z-index:99"></div><div id="square_8_1" style="position: absolute; width:30px;height:30px;left:474px;top:38px;z-index:99"></div><div id="wall_space_8_1_horizontal" style="position: absolute; width:40px;height:14px;left:470px;top:74px;z-index:99"></div><div id="wall_space_8_1_vertical" style="position: absolute; width:14px;height:40px;left:511px;top:33px;z-index:99"></div><div id="square_8_2" style="position: absolute; width:30px;height:30px;left:476px;top:94px;z-index:99"></div><div id="wall_space_8_2_horizontal" style="position: absolute; width:40px;height:14px;left:471px;top:131px;z-index:99"></div><div id="wall_space_8_2_vertical" style="position: absolute; width:14px;height:40px;left:513px;top:89px;z-index:99"></div><div id="square_8_3" style="position: absolute; width:30px;height:30px;left:477px;top:152px;z-index:99"></div><div id="wall_space_8_3_horizontal" style="position: absolute; width:40px;height:14px;left:473px;top:190px;z-index:99"></div><div id="wall_space_8_3_vertical" style="position: absolute; width:14px;height:40px;left:515px;top:147px;z-index:99"></div><div id="square_8_4" style="position: absolute; width:30px;height:30px;left:479px;top:211px;z-index:99"></div><div id="wall_space_8_4_horizontal" style="position: absolute; width:40px;height:14px;left:475px;top:249px;z-index:99"></div><div id="wall_space_8_4_vertical" style="position: absolute; width:14px;height:40px;left:517px;top:206px;z-index:99"></div><div id="square_8_5" style="position: absolute; width:30px;height:30px;left:480px;top:270px;z-index:99"></div><div id="wall_space_8_5_horizontal" style="position: absolute; width:40px;height:14px;left:476px;top:307px;z-index:99"></div><div id="wall_space_8_5_vertical" style="position: absolute; width:14px;height:40px;left:519px;top:265px;z-index:99"></div><div id="square_8_6" style="position: absolute; width:30px;height:30px;left:483px;top:329px;z-index:99"></div><div id="wall_space_8_6_horizontal" style="position: absolute; width:40px;height:14px;left:478px;top:367px;z-index:99"></div><div id="wall_space_8_6_vertical" style="position: absolute; width:14px;height:40px;left:521px;top:324px;z-index:99"></div><div id="square_8_7" style="position: absolute; width:30px;height:30px;left:484px;top:390px;z-index:99"></div><div id="wall_space_8_7_horizontal" style="position: absolute; width:40px;height:14px;left:480px;top:429px;z-index:99"></div><div id="wall_space_8_7_vertical" style="position: absolute; width:14px;height:40px;left:523px;top:385px;z-index:99"></div><div id="square_8_8" style="position: absolute; width:30px;height:30px;left:486px;top:452px;z-index:99"></div><div id="wall_space_8_8_horizontal" style="position: absolute; width:40px;height:14px;left:481px;top:491px;z-index:99"></div><div id="wall_space_8_8_vertical" style="position: absolute; width:14px;height:40px;left:524px;top:447px;z-index:99"></div><div id="square_8_9" style="position: absolute; width:30px;height:30px;left:487px;top:512px;z-index:99"></div><div id="square_9_1" style="position: absolute; width:30px;height:30px;left:532px;top:38px;z-index:99"></div><div id="square_9_2" style="position: absolute; width:30px;height:30px;left:534px;top:94px;z-index:99"></div><div id="square_9_3" style="position: absolute; width:30px;height:30px;left:536px;top:152px;z-index:99"></div><div id="square_9_4" style="position: absolute; width:30px;height:30px;left:538px;top:211px;z-index:99"></div><div id="square_9_5" style="position: absolute; width:30px;height:30px;left:541px;top:270px;z-index:99"></div><div id="square_9_6" style="position: absolute; width:30px;height:30px;left:543px;top:328px;z-index:99"></div><div id="square_9_7" style="position: absolute; width:30px;height:30px;left:545px;top:390px;z-index:99"></div><div id="square_9_8" style="position: absolute; width:30px;height:30px;left:546px;top:451px;z-index:99"></div><div id="square_9_9" style="position: absolute; width:30px;height:30px;left:548px;top:512px;z-index:99"></div></div>
</div>
<script type="text/javascript">
// Templates
var jstpl_token='<div class="token tokencolor_${player_no}" id="token_${player_id}"></div>';
var jstpl_wall='<div class="wall hidden wall_${orientation}" id="wall_${player_id}_${wall_id}_${orientation}"></div>';
var jstpl_player_board = '\<div class="cp_board">\
<div id="wallicon_p${id}" class="wallicon"></div><span id="wallcount_p${id}" class="wallcount">0</span>\
<div id="objective_${id}" class="objective" style="background-position: -${objectiveSprite}px 0px"></div>\
</div>';
var jstpl_objective_sprite = '<div class="objective_tooltip" style="background-position: -${objectiveSprite}px 0px"></div>';
// Javascript HTML templates
/*
// Example:
var jstpl_some_game_item='<div class="my_game_item" id="my_game_item_${id}"></div>';
*/
</script>
<div id="replay_mask">
</div>
</div><!-- game_play_area -->
<br class="clear">
<div class="whiteblock" id="game_first_footer">
<div style="display:block;float:left;">
<a href="http://www.gigamic.com/" target="_blanck"><img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/publisher.png" alt="publisher"></a>
</div>
<div style="display:none;float:left;">
<a href="" target="_blank"></a>
</div>
<div style="float:right;text-align:right;">
Developed by: Pierre Scelles (<a href="http://en.boardgamearena.com/#!player?id=2336137">pikiou</a>)
<div class="smalltext">Quoridor Release 150505-0012</div>
</div>
<div style="text-align:center;" class="buybuttonlink">
<a class="bigbutton" href="http://amazon.com/gp/search?ie=UTF8&camp=1642&creative=6746&index=toys&keywords=Quoridor&linkCode=ur2&tag=boagamare-20" target="_blank" id="buygame" style="display:inline-block">Buy on Amazon.com</a>
</div>
<br class="clear">
</div>
<a name="help"></a>
<div id="gamehelp-section" class="whiteblock">
<h2>Quoridor • Complete rules:</h2>
<p><a href="http://en.boardgamearena.com/link?url=http%3A%2F%2Fwww.ptt.cc%2Fbbs%2FBoardGame%2FM.1361271563.A.A94.html&id=937" target="_blank">步步為營中文教學</a> (zh) (External link)</p>
<p><a href="http://en.boardgamearena.com/link?url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DmXpeBsi2ApM&id=894" target="_blank">Game review (The Dice Tower)</a> (en) (External link)</p>
<p><a href="http://en.boardgamearena.com/link?url=http%3A%2F%2Fwww.gigamic.com%2Fmedia%2Fblfa_files%2FQUORIDOR-FRGB.pdf&id=763" target="_blank">Règles</a> (fr) (External link)</p>
<p><a href="http://en.boardgamearena.com/link?url=http%3A%2F%2Fwww.gaga.ru%2Fgaga%2Ffiles%2Fpdf%2Frules%2F230.pdf&id=624" target="_blank">Правилы игры</a> (ru) (External link)</p>
<p><a href="http://en.boardgamearena.com/link?url=http%3A%2F%2Fwww.boardgamegeek.com%2Ffilepage%2F21106%2Fquoridorpdf&id=1691" target="_blank">Rules (BGG)</a> (en) (External link)</p>
<p><a href="http://en.boardgamearena.com/link?url=http%3A%2F%2Fhu.wikipedia.org%2Fwiki%2FQuoridor&id=1938" target="_blank">Quoridor játékszabály </a> (hu) (External link)</p>
<h2>Quoridor • Game help:</h2>
<div class="whiteblock wikifootnote">This page comes from <a href="http://en.doc.boardgamearena.com/">BGA wiki</a>, and has been written by BGA players community. Feel free to <a href="http://en.doc.boardgamearena.com/Gamehelpquoridor">edit it</a>!</div><div class="wikicontent"><a href="http://en.doc.boardgamearena.com/Gamehelpquoridor" class="wikimenu" id="wikimenu564e6ad15cf18"></a><div><p>Quoridor is an abstract board game for 2 or 4 players. Players move their pawns to reach the opposite side before their opponents; however, the defining quality is that players can place walls on the board that block all pawns, thus forcing pawns to navigate their way around the walls.
</p>
<table id="toc" class="toc"><tbody><tr><td><div id="toctitle"></div><div class="pagesection"><div><div class="wikicontent"><h2>Contents</h2></div>
<ul>
<li class="toclevel-1 tocsection-1"><a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#Start_of_the_game"><span class="tocnumber">1</span> <span class="toctext">Start of the game</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#Player.27s_turn"><span class="tocnumber">2</span> <span class="toctext">Player's turn</span></a>
<ul>
<li class="toclevel-2 tocsection-3"><a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#Moving_a_pawn"><span class="tocnumber">2.1</span> <span class="toctext">Moving a pawn</span></a></li>
<li class="toclevel-2 tocsection-4"><a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#Placing_a_wall"><span class="tocnumber">2.2</span> <span class="toctext">Placing a wall</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-5"><a href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#End_of_the_game"><span class="tocnumber">3</span> <span class="toctext">End of the game</span></a></li>
</ul>
</div></div></td></tr></tbody></table>
</div></div></div><div class="pagesection"><div><div class="wikicontent"><h2> <span class="mw-headline" id="Start_of_the_game"> Start of the game </span></h2>
<p>The board is 9x9 by size. Each player has one pawn, placed in the middle of their respective side. There are 20 walls, distributed equally to all players (10 each for two or 5 each for four).
</p>
</div></div></div><div class="pagesection"><div><div class="wikicontent"><h2> <span class="mw-headline" id="Player.27s_turn"> Player's turn </span></h2>
<p>In a player's turn, a player must do one of the following:
</p>
<ul><li> move their pawn, or
</li><li> place a wall.
</li></ul>
<h4> <span class="mw-headline" id="Moving_a_pawn"> Moving a pawn </span></h4>
<p>A player can move a pawn to an adjacent square in the four orthogonal directions (front, back, or sideways). The pawn may not cross past a wall. The pawn may never occupy the same square as an opponent's pawn; if an opponent pawn is adjacent, the player can jump over the opponent's pawn. If there is no wall, no board edge, and no other pawn behind the opponent's pawn, the jump must be straight (the player's pawn moves two squares in that direction). Otherwise, the jump must be diagonal (the player moves to the opponent, then moves sideways). Jumping is never mandatory.
</p>
<h4> <span class="mw-headline" id="Placing_a_wall"> Placing a wall </span></h4>
<p>There are some walls in a player's inventory. Each wall are two squares long. A player may place a wall inside the board, between the squares. The wall may not jut out of the board, and it must be aligned with the grid, so that it blocks two pairs of adjacent squares. A wall blocks all pawns' movements; no pawn can jump over a wall. However, there must always be at least one path for each pawn to reach the opposite side; a wall may not be placed to completely isolate a pawn from their destination side.
</p><p>Note that walls are limited; if a player uses up all their walls, they can no longer place walls.
</p>
</div></div></div><div class="pagesection"><div><div class="wikicontent"><h2> <span class="mw-headline" id="End_of_the_game"> End of the game </span></h2>
<p>If a player's pawn reaches any one of the nine squares on its destination side, opposite of the starting side, the player wins.
</p>
<!--
NewPP limit report
Preprocessor node count: 19/1000000
Post-expand include size: 0/2097152 bytes
Template argument size: 0/2097152 bytes
Expensive parser function count: 0/100
-->
<!-- Saved in parser cache with key tournoidoc_en:pcache:idhash:102-0!*!*!!en!*!* and timestamp 20151119141955 -->
</div> </div>
<br>
<a class="returntogame" href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#">Back to game</a>
</div>
<div id="infomsg"></div>
</div><!-- page-content -->
</div><!-- left-side -->
</div><!-- left-side-wrapper -->
<div id="right-side">
<div id="right-side-first-part">
<div id="player_boards"><div id="overall_player_board_83860461" class="roundedbox player-board current-player-board">
<div class="roundedbox_top">
<div class="roundedbox_topleft"></div>
<div class="roundedbox_topmain"></div>
<div class="roundedbox_topright"></div>
</div>
<div class="roundedbox_main">
</div>
<div class="roundedbox_bottom">
<div class="roundedbox_bottomleft"></div>
<div class="roundedbox_bottommain"></div>
<div class="roundedbox_bottomright"></div>
</div>
<div class="roundedboxinner">
<div class="emblemwrap" id="avatarwrap_83860461">
<img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/player_83860461.png" alt="" class="avatar" id="avatar_83860461">
<div class="emblempremium" id="6cc109ad-bd82-4ef6-87c7-585bd5a5a2e4"></div>
</div>
<div id="rtc_placeholder_83860461" class="rtc_placeholder"><div id="rtc_container_83860461" class="rtc_container"></div></div>
<img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/active_player(1).gif" alt="" class="avatar avatar_active" id="avatar_active_83860461">
<div class="player-name" id="player_name_83860461" style="color: #f29a00">
Big bear
<img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/online_.png" alt="" id="player_83860461_status" class="player_status">
<div class="flag" style="background-position: -160px -33px;"></div>
</div>
<div id="player_board_83860461">
<div class="player_score">
<span id="player_score_83860461">0</span> <div class="icon16 icon16_point" id="icon_point_83860461"></div>
• <span id="player_elo_83860461"><a href="http://en.boardgamearena.com/#!club" target="_blank"><img class="masqued_rank imgtext" id="maskag_83860461" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/rankmask.png"></a></span> <img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/rank.png" class="imgtext">
<span id="timeToThink_83860461" class="timeToThink">--:--</span>
</div>
<div class="player_table_status" id="player_table_status_83860461" style="display: none;"></div>
<div class="cp_board"> <div id="wallicon_p83860461" class="wallicon"></div><span id="wallcount_p83860461" class="wallcount">10</span> <div id="objective_83860461" class="objective" style="background-position: -0px 0px"></div></div></div>
<div id="current_player_board">
</div>
</div>
</div><div id="overall_player_board_68364687" class="roundedbox player-board" style="border-color: #3d1303">
<div class="roundedbox_top">
<div class="roundedbox_topleft"></div>
<div class="roundedbox_topmain"></div>
<div class="roundedbox_topright"></div>
</div>
<div class="roundedbox_main">
</div>
<div class="roundedbox_bottom">
<div class="roundedbox_bottomleft"></div>
<div class="roundedbox_bottommain"></div>
<div class="roundedbox_bottomright"></div>
</div>
<div class="roundedboxinner">
<div class="emblemwrap" id="avatarwrap_68364687">
<img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/player_68364687.png" alt="SimonNLP" class="avatar" id="avatar_68364687">
<div class="emblempremium" id="f170415b-98e6-4a36-8940-850403900187"></div>
</div>
<div id="rtc_placeholder_68364687" class="rtc_placeholder"></div>
<img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/active_player(1).gif" alt="" class="avatar avatar_active" id="avatar_active_68364687">
<div class="player-name" id="player_name_68364687" style="color: #3d1303">
SimonNLP
<img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/online_.png" alt="" id="player_68364687_status" class="player_status">
<div class="flag" style="background-position: -144px -55px;" title="Hong Kong"></div>
</div>
<div id="player_board_68364687">
<div class="player_score">
<span id="player_score_68364687">0</span> <div class="icon16 icon16_point" id="icon_point_68364687"></div>
• <span id="player_elo_68364687"><a href="http://en.boardgamearena.com/#!club" target="_blank"><img class="masqued_rank imgtext" id="maskag_68364687" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/rankmask.png"></a></span> <img src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/rank.png" class="imgtext">
<span id="timeToThink_68364687" class="timeToThink">--:--</span>
</div>
<div class="player_table_status" id="player_table_status_68364687" style="display: none;"></div>
<div class="cp_board"> <div id="wallicon_p68364687" class="wallicon"></div><span id="wallcount_p68364687" class="wallcount">10</span> <div id="objective_68364687" class="objective" style="background-position: -46px 0px"></div></div></div>
</div>
</div>
<div class="roundedbox player-board" id="spectatorbox" style="display:none;">
<div class="roundedbox_top">
<div class="roundedbox_topleft"></div>
<div class="roundedbox_topmain"></div>
<div class="roundedbox_topright"></div>
</div>
<div class="roundedbox_main">
</div>
<div class="roundedbox_bottom">
<div class="roundedbox_bottomleft"></div>
<div class="roundedbox_bottommain"></div>
<div class="roundedbox_bottomright"></div>
</div>
<div class="roundedboxinner">
<div id="spectatorlist"></div>
</div>
</div>
</div><!-- player_boards -->
</div><!-- right-side-first-part -->
<div id="right-side-second-part">
<div id="concede_alternate_button">Resign</div>
<div id="abandon_alternate_button">Abandon</div>
<div id="logs_wrap">
<div id="chatinput"></div>
<div id="chatlogs">
</div>
<div id="logs"><div class="roundedbox log " id="log_0" style="height: auto; display: block; color: rgb(0, 0, 0);"><div class="roundedboxinner"><b>Did you know?</b><br>You find a bug? Please report it to the BGA bug reporting system, including a description and if possible a screenshot. Thank you.</div></div>
<div id="seemorelogs"><a id="seemorelogs_btn" href="http://en.boardgamearena.com/archive/replay/151119-1457/?table=17456177&player=83860461&comments=#" onclick="return false"></a>
</div>
</div>
</div>
</div>
</div> <!-- right side -->
</div><!-- leftright_page_wrapper -->
<div id="loader_mask" style="display:none;">
<div id="loader_mask_inner">
<div class="site-logo">
<a class="logoicon" href="http://en.boardgamearena.com/#!welcome"><img class="logoiconimg" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/logo.png" alt="BGA"></a>
<a class="logotitle logotitle_white" href="http://en.boardgamearena.com/#!welcome"></a>
</div>
<div class="loader">
</div>
<div id="progress_bar" class="ui-progress-bar ui-container">
<div id="progress_bar_progress" class="ui-progress" style="width: 100%;">
<span class="ui-label" style="display:none;"></span>
</div><!-- .ui-progress -->
</div><!-- #progress_bar -->
<div id="loader_skip">
<a href="http://en.boardgamearena.com/quoridor?table=17456177">[Skip last moves replay]</a>
</div>
</div>
</div>
<div class="clear"></div>
<div id="dd_stock" style="display:none;">
</div>
<script type="text/javascript">
require(["dojo/parser", "dojo/dom", "dojo/domReady!"], function(parser, dom) {
console.log( "After first require" );
console.dir( "Dojo configuration:" );
console.log( dojo.config );
$=dom.byId;
window.onerror = function(msg, url, linenumber) {
if( typeof gameui != 'undefined' )
{gameui.onScriptError( msg, url, linenumber );}
else if( typeof mainsite != 'undefined' )
{mainsite.onScriptError( msg, url, linenumber );}
else if( $('globalerrormsg') )
{$('globalerrormsg').innerHTML = msg; }
}
// Parse the page
parser.parse();
});
var jstpl_action_button = '<a href="#" class="action-button bgabutton ${addclass}" onclick="return false;" id="${id}">${label}</a>';
// Can be override using jstpl_score_entry_specific variable
var jstpl_score_entry = '<div class="score-entry">\
<div class="rank">${rank}</div>\
<div class="name" style="color:#${color};${color_back}">${name}</div>\
<div class="score">\
${score} <div class="icon16 icon16_point"></div>\
<span class="score_aux score_aux_${score} tttiebraker" id="score_aux_${index}">(${score_aux}<div class="icon16 icon16_tiebreaker"></div>)</span>\
</div>\
</div>';
var g_img_preload=['sprites_photo.png','goal.png','tokens.png','board.jpg','sprites_photo.jpg','sprites.png'];
g_themeurl = 'http://cdn.boardgamearena.net/data/themereleases/151119-1457/';
g_gamethemeurl = 'http://cdn.boardgamearena.net/data/themereleases/151119-1457/games/quoridor/150505-0012/';
gamegui=null;
g_last_msg_dispatched_uid = 0;
require(["dojo","dojo/_base/unload", "dojo/i18n!ebg/nls/lang_mainsite-20151119", "dojo/i18n!ebg/nls/lang_quoridor-20151119","bgagame/quoridor","ebg/core/soundManager", "dojo/domReady!"], function( dojo, baseUnload ) {
// Load translation bundle here to ensure they are all load on asynchronous XDomain load
console.log( 'Main page addOnLoad' );
;(function() {
var dconnect = dojo.connect;
dojo.connect = function( obj, event, context, method, dontFix ) {
try
{
if( context[ method ] )
{ return dconnect.call( this, obj, event, context, function(){
try { context[ method ].apply( context, arguments ); }
catch(e)
{
if( gameui )
{
var msg = 'During callback: '+event+' / '+method+'\n'+e.message+'\n';
msg += ( e.stack || e.stacktrace || "no_stack_avail" );
gameui.onScriptError( msg, '', '' );
}
else
{ throw e; }
}
}, dontFix );
}
else
{ return dconnect.call( this, obj, event, context, method, dontFix ); }
}
catch( e )
{
// In case of ANY error during our method, we fallback to normal dojo.connect method
return dconnect.call( this, obj, event, context, method, dontFix );
}
};
})();
gameui = new bgagame.quoridor();
g_i18n = new ebg.core.i18n();
try {
console.log( gameui );
soundManager = new ebg.core.soundManager();
soundManager.soundMode = 0;
var audioSupport = soundManager.init();
if( ! audioSupport )
{
soundManager = new dojox.av.FLAudio({
initialVolume: .5,
autoPlay: false,
isDebug: false,
statusInterval: 500
});
soundManager.load({
url: "http://cdn.boardgamearena.net/data/themereleases/151119-1457/sound/yourturn.mp3",
id: 'yourturn'
});
soundManager.load({
url: "http://cdn.boardgamearena.net/data/themereleases/151119-1457/sound/chatmessage.mp3",
id: 'chatmessage'
});
soundManager.load({
url: "http://cdn.boardgamearena.net/data/themereleases/151119-1457/sound/move.mp3",
id: 'move'
});
}
soundManager.bMuteSound=true;
soundManager.sounds={"yourturn":"yourturn","chatmessage":"chatmessage","move":"move","joinTable":"move","tableReady":"yourturn"};
g_archive_mode = true;g_gamelogs = {"status":1,"data":{"valid":1,"data":[{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"1","packet_type":"resend","move_id":"1","data":[{"time":"00:35","uid":"564e6ad099fd2","type":"gameStateChange","log":"","args":{"name":"gameSetup","description":"Game setup","type":"manager","action":"stGameSetup","transitions":{"":10},"active_player":83860461,"admin_player":83860461,"args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":null,"68364687":null}}}},{"time":"00:35","uid":"564e6ad09a16f","type":"leaveGameState","log":"","args":{"name":"gameSetup","description":"Game setup","type":"manager","action":"stGameSetup","transitions":{"":10},"active_player":83860461,"admin_player":83860461,"args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":null,"68364687":null}}}},{"time":"00:35","uid":"564e6ad09adc2","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":[]},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":83860461,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":null,"68364687":null}}}}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"4","packet_type":"resend","move_id":"2","data":[{"time":"02:36","uid":"564e6af2a872b","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"1":0},"6":{"1":0},"5":{"2":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"49b0e19d-add5-456f-8e79-019c337989f0"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"5","packet_type":"resend","move_id":"2","data":[{"time":"02:36","uid":"564e6af2a7f70","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"83860461","player_name":"Big bear","x":"5","y":"8","quoridorstrats_notation":"e2"}},{"time":"02:36","uid":"564e6af2a821c","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":[]},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":206,"total":240},"total":{"83860461":232,"68364687":"300"}}}},{"time":"02:36","uid":"564e6af2a8425","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":0,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":206,"total":240},"total":{"83860461":232,"68364687":"300"}}}},{"time":"02:36","uid":"564e6af2a87e9","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:36","uid":"564e6af2a8926","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"266","68364687":"300"}}}},{"time":"02:36","uid":"564e6af2a910d","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":[]},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"266","68364687":"300"}}},"lock_uuid":"49b0e19d-add5-456f-8e79-019c337989f0"}]},{"channel":"\/player\/p83860461","table_id":"17456177","packet_id":"7","packet_type":"resend","move_id":"3","data":[{"time":"08:36","uid":"564e6af62e829","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"8":0},"6":{"8":0},"5":{"7":0,"9":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"2c239f26-ccac-4022-860c-87b91977baf4"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"8","packet_type":"resend","move_id":"3","data":[{"time":"08:36","uid":"564e6af62e281","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"68364687","player_name":"SimonNLP","x":"5","y":"2","quoridorstrats_notation":"e8"}},{"time":"08:36","uid":"564e6af62e465","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":[]},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":236,"total":240},"total":{"83860461":"266","68364687":292}}}},{"time":"08:36","uid":"564e6af62e5ef","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":5,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"68364687","admin_player":"83860461","args":null,"reflexion":{"move":{"value":236,"total":240},"total":{"83860461":"266","68364687":292}}}},{"time":"08:36","uid":"564e6af62e8be","type":"updateReflexionTime","log":"","args":{"player_id":83860461,"delta":"19","max":"300"}},{"time":"08:36","uid":"564e6af62e9bb","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":83860461,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"285","68364687":"296"}}}},{"time":"08:36","uid":"564e6af62f185","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":[]},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"285","68364687":"296"}}},"lock_uuid":"2c239f26-ccac-4022-860c-87b91977baf4"}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"9","packet_type":"resend","move_id":"4","data":[{"time":"02:36","uid":"564e6af8dd9e8","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"2":0},"6":{"2":0},"5":{"1":0,"3":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"f7904cf7-96fb-43cf-808a-0deec4412084"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"10","packet_type":"resend","move_id":"4","data":[{"time":"02:36","uid":"564e6af8dd446","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"83860461","player_name":"Big bear","x":"5","y":"7","quoridorstrats_notation":"e3"}},{"time":"02:36","uid":"564e6af8dd62e","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":[]},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":238,"total":240},"total":{"83860461":281,"68364687":"296"}}}},{"time":"02:36","uid":"564e6af8dd7a5","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":10,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":238,"total":240},"total":{"83860461":281,"68364687":"296"}}}},{"time":"02:36","uid":"564e6af8dda84","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:36","uid":"564e6af8ddb98","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"283","68364687":"300"}}}},{"time":"02:36","uid":"564e6af8de389","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":[]},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"283","68364687":"300"}}},"lock_uuid":"f7904cf7-96fb-43cf-808a-0deec4412084"}]},{"channel":"\/player\/p83860461","table_id":"17456177","packet_id":"11","packet_type":"resend","move_id":"5","data":[{"time":"08:36","uid":"564e6afbd380a","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"7":0},"6":{"7":0},"5":{"8":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"7ccc3aa3-6ea9-4651-84f3-684df0db2d32"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"12","packet_type":"resend","move_id":"5","data":[{"time":"08:36","uid":"564e6afbd31d6","type":"playWall","log":"${player_name} places a fence","args":{"player_id":"68364687","player_name":"SimonNLP","x":"4","y":"6","orientation":"horizontal","counters":{"wallcount_p68364687":{"counter_name":"wallcount_p68364687","counter_value":"9"},"wallcount_p83860461":{"counter_name":"wallcount_p83860461","counter_value":"10"}},"quoridorstrats_notation":"d3h"}},{"time":"08:36","uid":"564e6afbd33b1","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":[]},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":237,"total":240},"total":{"83860461":"283","68364687":294}}}},{"time":"08:36","uid":"564e6afbd3527","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":15,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"68364687","admin_player":"83860461","args":null,"reflexion":{"move":{"value":237,"total":240},"total":{"83860461":"283","68364687":294}}}},{"time":"08:36","uid":"564e6afbd38cd","type":"updateReflexionTime","log":"","args":{"player_id":83860461,"delta":"19","max":"300"}},{"time":"08:36","uid":"564e6afbd3a15","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":83860461,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"300","68364687":"297"}}}},{"time":"08:36","uid":"564e6afbd416f","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"300","68364687":"297"}}},"lock_uuid":"7ccc3aa3-6ea9-4651-84f3-684df0db2d32"}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"13","packet_type":"resend","move_id":"6","data":[{"time":"02:36","uid":"564e6b040e2c0","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"2":0},"6":{"2":0},"5":{"1":0,"3":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"2d6bc5df-49e4-41b1-8575-5d5d3ab509c9"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"14","packet_type":"resend","move_id":"6","data":[{"time":"02:36","uid":"564e6b040dd05","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"83860461","player_name":"Big bear","x":"6","y":"7","quoridorstrats_notation":"f3"}},{"time":"02:36","uid":"564e6b040defd","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":231,"total":240},"total":{"83860461":282,"68364687":"297"}}}},{"time":"02:36","uid":"564e6b040e073","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":20,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":231,"total":240},"total":{"83860461":282,"68364687":"297"}}}},{"time":"02:36","uid":"564e6b040e373","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:36","uid":"564e6b040e485","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"291","68364687":"300"}}}},{"time":"02:36","uid":"564e6b040ec1c","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"291","68364687":"300"}}},"lock_uuid":"2d6bc5df-49e4-41b1-8575-5d5d3ab509c9"}]},{"channel":"\/player\/p83860461","table_id":"17456177","packet_id":"15","packet_type":"resend","move_id":"7","data":[{"time":"08:36","uid":"564e6b08794aa","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"5":{"7":0},"7":{"7":0},"6":{"8":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"9f16e458-a1b7-4196-8266-c755b851b6dc"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"16","packet_type":"resend","move_id":"7","data":[{"time":"08:36","uid":"564e6b0878e00","type":"playWall","log":"${player_name} places a fence","args":{"player_id":"68364687","player_name":"SimonNLP","x":"6","y":"6","orientation":"horizontal","counters":{"wallcount_p68364687":{"counter_name":"wallcount_p68364687","counter_value":"8"},"wallcount_p83860461":{"counter_name":"wallcount_p83860461","counter_value":"10"}},"quoridorstrats_notation":"f3h"}},{"time":"08:36","uid":"564e6b0879024","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":236,"total":240},"total":{"83860461":"291","68364687":292}}}},{"time":"08:36","uid":"564e6b08791dc","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":25,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"68364687","admin_player":"83860461","args":null,"reflexion":{"move":{"value":236,"total":240},"total":{"83860461":"291","68364687":292}}}},{"time":"08:36","uid":"564e6b0879571","type":"updateReflexionTime","log":"","args":{"player_id":83860461,"delta":"19","max":"300"}},{"time":"08:36","uid":"564e6b08796ab","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":83860461,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"300","68364687":"296"}}}},{"time":"08:36","uid":"564e6b087b22b","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"300","68364687":"296"}}},"lock_uuid":"9f16e458-a1b7-4196-8266-c755b851b6dc"}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"17","packet_type":"resend","move_id":"8","data":[{"time":"02:36","uid":"564e6b10a05a0","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"2":0},"6":{"2":0},"5":{"1":0,"3":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"593fa38e-2cb2-4b41-8ffe-d0d045f08c6a"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"18","packet_type":"resend","move_id":"8","data":[{"time":"02:36","uid":"564e6b109ffcd","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"83860461","player_name":"Big bear","x":"6","y":"8","quoridorstrats_notation":"f2"}},{"time":"02:36","uid":"564e6b10a01b6","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":232,"total":240},"total":{"83860461":284,"68364687":"296"}}}},{"time":"02:36","uid":"564e6b10a0342","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":30,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":232,"total":240},"total":{"83860461":284,"68364687":"296"}}}},{"time":"02:36","uid":"564e6b10a065a","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:36","uid":"564e6b10a0771","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"292","68364687":"300"}}}},{"time":"02:36","uid":"564e6b10a219e","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"292","68364687":"300"}}},"lock_uuid":"593fa38e-2cb2-4b41-8ffe-d0d045f08c6a"}]},{"channel":"\/player\/p83860461","table_id":"17456177","packet_id":"19","packet_type":"resend","move_id":"9","data":[{"time":"08:36","uid":"564e6b13b3af7","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"5":{"8":0},"7":{"8":0},"6":{"7":0,"9":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"89e230ad-3dd1-4e1c-8bbd-44f12a373910"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"20","packet_type":"resend","move_id":"9","data":[{"time":"08:36","uid":"564e6b13b3537","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"68364687","player_name":"SimonNLP","x":"5","y":"3","quoridorstrats_notation":"e7"}},{"time":"08:36","uid":"564e6b13b3720","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":237,"total":240},"total":{"83860461":"292","68364687":294}}}},{"time":"08:36","uid":"564e6b13b389f","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":35,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"68364687","admin_player":"83860461","args":null,"reflexion":{"move":{"value":237,"total":240},"total":{"83860461":"292","68364687":294}}}},{"time":"08:36","uid":"564e6b13b3bac","type":"updateReflexionTime","log":"","args":{"player_id":83860461,"delta":"19","max":"300"}},{"time":"08:36","uid":"564e6b13b3cc0","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":83860461,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"300","68364687":"297"}}}},{"time":"08:36","uid":"564e6b13b5502","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"300","68364687":"297"}}},"lock_uuid":"89e230ad-3dd1-4e1c-8bbd-44f12a373910"}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"21","packet_type":"resend","move_id":"10","data":[{"time":"02:36","uid":"564e6b1a6ce71","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"3":0},"6":{"3":0},"5":{"2":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"ba5e0109-e6de-43fb-8743-d85170e2b3c7"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"22","packet_type":"resend","move_id":"10","data":[{"time":"02:36","uid":"564e6b1a6c7b6","type":"playWall","log":"${player_name} places a fence","args":{"player_id":"83860461","player_name":"Big bear","x":"5","y":"3","orientation":"horizontal","counters":{"wallcount_p68364687":{"counter_name":"wallcount_p68364687","counter_value":"8"},"wallcount_p83860461":{"counter_name":"wallcount_p83860461","counter_value":"9"}},"quoridorstrats_notation":"e6h"}},{"time":"02:36","uid":"564e6b1a6c9de","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":233,"total":240},"total":{"83860461":286,"68364687":"297"}}}},{"time":"02:36","uid":"564e6b1a6cb9c","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":40,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":233,"total":240},"total":{"83860461":286,"68364687":"297"}}}},{"time":"02:36","uid":"564e6b1a6cf37","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:36","uid":"564e6b1a6d071","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"293","68364687":"300"}}}},{"time":"02:36","uid":"564e6b1a6eb5d","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"4_3_horizontal":2,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"293","68364687":"300"}}},"lock_uuid":"ba5e0109-e6de-43fb-8743-d85170e2b3c7"}]},{"channel":"\/player\/p83860461","table_id":"17456177","packet_id":"23","packet_type":"resend","move_id":"11","data":[{"time":"08:36","uid":"564e6b2775e46","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"5":{"8":0},"7":{"8":0},"6":{"7":0,"9":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"6a168e74-a511-4dc4-807d-f5bf311faf69"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"24","packet_type":"resend","move_id":"11","data":[{"time":"08:36","uid":"564e6b27758a4","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"68364687","player_name":"SimonNLP","x":"4","y":"3","quoridorstrats_notation":"d7"}},{"time":"08:36","uid":"564e6b2775a7d","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"4_3_horizontal":2,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":227,"total":240},"total":{"83860461":"293","68364687":274}}}},{"time":"08:36","uid":"564e6b2775bf0","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":45,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"68364687","admin_player":"83860461","args":null,"reflexion":{"move":{"value":227,"total":240},"total":{"83860461":"293","68364687":274}}}},{"time":"08:36","uid":"564e6b2775efa","type":"updateReflexionTime","log":"","args":{"player_id":83860461,"delta":"19","max":"300"}},{"time":"08:36","uid":"564e6b277600c","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":83860461,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"300","68364687":"287"}}}},{"time":"08:36","uid":"564e6b2777baa","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"4_3_horizontal":2,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"300","68364687":"287"}}},"lock_uuid":"6a168e74-a511-4dc4-807d-f5bf311faf69"}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"25","packet_type":"resend","move_id":"12","data":[{"time":"02:37","uid":"564e6b2c3a960","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"3":{"3":0},"5":{"3":0},"4":{"2":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"af1fc7df-193a-4497-8062-a597afdb0634"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"26","packet_type":"resend","move_id":"12","data":[{"time":"02:37","uid":"564e6b2c3a3b4","type":"playWall","log":"${player_name} places a fence","args":{"player_id":"83860461","player_name":"Big bear","x":"3","y":"3","orientation":"horizontal","counters":{"wallcount_p68364687":{"counter_name":"wallcount_p68364687","counter_value":"8"},"wallcount_p83860461":{"counter_name":"wallcount_p83860461","counter_value":"8"}},"quoridorstrats_notation":"c6h"}},{"time":"02:37","uid":"564e6b2c3a596","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"4_3_horizontal":2,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":235,"total":240},"total":{"83860461":290,"68364687":"287"}}}},{"time":"02:37","uid":"564e6b2c3a70f","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":50,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":235,"total":240},"total":{"83860461":290,"68364687":"287"}}}},{"time":"02:37","uid":"564e6b2c3aa15","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:37","uid":"564e6b2c3ab26","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"295","68364687":"300"}}}},{"time":"02:37","uid":"564e6b2c3d031","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"295","68364687":"300"}}},"lock_uuid":"af1fc7df-193a-4497-8062-a597afdb0634"}]},{"channel":"\/player\/p83860461","table_id":"17456177","packet_id":"27","packet_type":"resend","move_id":"13","data":[{"time":"08:37","uid":"564e6b355e836","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"5":{"8":0},"7":{"8":0},"6":{"7":0,"9":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"c5e08cb1-53c3-478c-863a-c7c99ff75ff4"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"28","packet_type":"resend","move_id":"13","data":[{"time":"08:37","uid":"564e6b355e1d6","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"68364687","player_name":"SimonNLP","x":"5","y":"3","quoridorstrats_notation":"e7"}},{"time":"08:37","uid":"564e6b355e3e1","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":231,"total":240},"total":{"83860461":"295","68364687":282}}}},{"time":"08:37","uid":"564e6b355e582","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":55,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"68364687","admin_player":"83860461","args":null,"reflexion":{"move":{"value":231,"total":240},"total":{"83860461":"295","68364687":282}}}},{"time":"08:37","uid":"564e6b355e8d8","type":"updateReflexionTime","log":"","args":{"player_id":83860461,"delta":"19","max":"300"}},{"time":"08:37","uid":"564e6b355e9eb","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":83860461,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"300","68364687":"291"}}}},{"time":"08:37","uid":"564e6b35611bc","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"300","68364687":"291"}}},"lock_uuid":"c5e08cb1-53c3-478c-863a-c7c99ff75ff4"}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"29","packet_type":"resend","move_id":"14","data":[{"time":"02:37","uid":"564e6b425ae77","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"3":0},"6":{"3":0},"5":{"2":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"b2bc8a94-da07-4a3f-81e5-2e48e5868af8"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"30","packet_type":"resend","move_id":"14","data":[{"time":"02:37","uid":"564e6b425a8ca","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"83860461","player_name":"Big bear","x":"5","y":"8","quoridorstrats_notation":"e2"}},{"time":"02:37","uid":"564e6b425aaa3","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":227,"total":240},"total":{"83860461":274,"68364687":"291"}}}},{"time":"02:37","uid":"564e6b425ac22","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":60,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":227,"total":240},"total":{"83860461":274,"68364687":"291"}}}},{"time":"02:37","uid":"564e6b425af2a","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:37","uid":"564e6b425b040","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"287","68364687":"300"}}}},{"time":"02:37","uid":"564e6b425d969","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"287","68364687":"300"}}},"lock_uuid":"b2bc8a94-da07-4a3f-81e5-2e48e5868af8"}]},{"channel":"\/player\/p83860461","table_id":"17456177","packet_id":"31","packet_type":"resend","move_id":"15","data":[{"time":"08:37","uid":"564e6b5496276","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"8":0},"6":{"8":0},"5":{"7":0,"9":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"6b0f0bc7-4674-4ac0-8b4c-df64960a6d76"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"32","packet_type":"resend","move_id":"15","data":[{"time":"08:37","uid":"564e6b5495bb5","type":"playWall","log":"${player_name} places a fence","args":{"player_id":"68364687","player_name":"SimonNLP","x":"3","y":"8","orientation":"vertical","counters":{"wallcount_p68364687":{"counter_name":"wallcount_p68364687","counter_value":"7"},"wallcount_p83860461":{"counter_name":"wallcount_p83860461","counter_value":"8"}},"quoridorstrats_notation":"c1v"}},{"time":"08:37","uid":"564e6b5495dd8","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":222,"total":240},"total":{"83860461":"287","68364687":264}}}},{"time":"08:37","uid":"564e6b5495f97","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":65,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"68364687","admin_player":"83860461","args":null,"reflexion":{"move":{"value":222,"total":240},"total":{"83860461":"287","68364687":264}}}},{"time":"08:37","uid":"564e6b549633b","type":"updateReflexionTime","log":"","args":{"player_id":83860461,"delta":"19","max":"300"}},{"time":"08:37","uid":"564e6b5496475","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":83860461,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"300","68364687":"282"}}}},{"time":"08:37","uid":"564e6b5499609","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_8_vertical":1,"3_7_vertical":2,"3_8_horizontal":3,"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"300","68364687":"282"}}},"lock_uuid":"6b0f0bc7-4674-4ac0-8b4c-df64960a6d76"}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"33","packet_type":"resend","move_id":"16","data":[{"time":"02:38","uid":"564e6b9038fee","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"3":0},"6":{"3":0},"5":{"2":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"3b532f30-0d29-446c-8799-ff7c9f172191"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"34","packet_type":"resend","move_id":"16","data":[{"time":"02:38","uid":"564e6b9038954","type":"playWall","log":"${player_name} places a fence","args":{"player_id":"83860461","player_name":"Big bear","x":"3","y":"6","orientation":"vertical","counters":{"wallcount_p68364687":{"counter_name":"wallcount_p68364687","counter_value":"7"},"wallcount_p83860461":{"counter_name":"wallcount_p83860461","counter_value":"7"}},"quoridorstrats_notation":"c3v"}},{"time":"02:38","uid":"564e6b9038b5d","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_8_vertical":1,"3_7_vertical":2,"3_8_horizontal":3,"4_6_horizontal":1,"3_6_horizontal":2,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":180,"total":240},"total":{"83860461":180,"68364687":"282"}}}},{"time":"02:38","uid":"564e6b9038d11","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":70,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":180,"total":240},"total":{"83860461":180,"68364687":"282"}}}},{"time":"02:38","uid":"564e6b9039093","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:38","uid":"564e6b90391a6","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"240","68364687":"300"}}}},{"time":"02:38","uid":"564e6b903b610","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"240","68364687":"300"}}},"lock_uuid":"3b532f30-0d29-446c-8799-ff7c9f172191"}]},{"channel":"\/player\/p83860461","table_id":"17456177","packet_id":"35","packet_type":"resend","move_id":"17","data":[{"time":"08:39","uid":"564e6ba46d113","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"8":0},"6":{"8":0},"5":{"7":0,"9":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"3bcec36a-2fcb-4439-8bae-399d85eaf3c7"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"36","packet_type":"resend","move_id":"17","data":[{"time":"08:39","uid":"564e6ba46cb46","type":"playWall","log":"${player_name} places a fence","args":{"player_id":"68364687","player_name":"SimonNLP","x":"6","y":"2","orientation":"horizontal","counters":{"wallcount_p68364687":{"counter_name":"wallcount_p68364687","counter_value":"6"},"wallcount_p83860461":{"counter_name":"wallcount_p83860461","counter_value":"7"}},"quoridorstrats_notation":"f7h"}},{"time":"08:39","uid":"564e6ba46cd2e","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":220,"total":240},"total":{"83860461":"240","68364687":260}}}},{"time":"08:39","uid":"564e6ba46ceab","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":75,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"68364687","admin_player":"83860461","args":null,"reflexion":{"move":{"value":220,"total":240},"total":{"83860461":"240","68364687":260}}}},{"time":"08:39","uid":"564e6ba46d1ca","type":"updateReflexionTime","log":"","args":{"player_id":83860461,"delta":"19","max":"300"}},{"time":"08:39","uid":"564e6ba46d2de","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":83860461,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"259","68364687":"280"}}}},{"time":"08:39","uid":"564e6ba472832","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"259","68364687":"280"}}},"lock_uuid":"3bcec36a-2fcb-4439-8bae-399d85eaf3c7"}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"37","packet_type":"resend","move_id":"18","data":[{"time":"02:39","uid":"564e6bd8eb5b2","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"3":0},"6":{"3":0},"5":{"2":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"df6d6965-d9de-43d3-88c4-de99c48f2767"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"38","packet_type":"resend","move_id":"18","data":[{"time":"02:39","uid":"564e6bd8eafdf","type":"playWall","log":"${player_name} places a fence","args":{"player_id":"83860461","player_name":"Big bear","x":"8","y":"2","orientation":"vertical","counters":{"wallcount_p68364687":{"counter_name":"wallcount_p68364687","counter_value":"6"},"wallcount_p83860461":{"counter_name":"wallcount_p83860461","counter_value":"6"}},"quoridorstrats_notation":"h7v"}},{"time":"02:39","uid":"564e6bd8eb1c7","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":188,"total":240},"total":{"83860461":155,"68364687":"280"}}}},{"time":"02:39","uid":"564e6bd8eb348","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":80,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":188,"total":240},"total":{"83860461":155,"68364687":"280"}}}},{"time":"02:39","uid":"564e6bd8eb667","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:39","uid":"564e6bd8eb815","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"207","68364687":"299"}}}},{"time":"02:39","uid":"564e6bd8f250a","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_2_vertical":1,"8_1_vertical":2,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"207","68364687":"299"}}},"lock_uuid":"df6d6965-d9de-43d3-88c4-de99c48f2767"}]},{"channel":"\/player\/p83860461","table_id":"17456177","packet_id":"39","packet_type":"resend","move_id":"19","data":[{"time":"08:40","uid":"564e6bf1c1412","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"8":0},"6":{"8":0},"5":{"7":0,"9":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"8e290d1e-7075-4ad2-8762-5788370cd931"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"40","packet_type":"resend","move_id":"19","data":[{"time":"08:40","uid":"564e6bf1c0eb3","type":"playWall","log":"${player_name} places a fence","args":{"player_id":"68364687","player_name":"SimonNLP","x":"8","y":"1","orientation":"horizontal","counters":{"wallcount_p68364687":{"counter_name":"wallcount_p68364687","counter_value":"5"},"wallcount_p83860461":{"counter_name":"wallcount_p83860461","counter_value":"6"}},"quoridorstrats_notation":"h8h"}},{"time":"08:40","uid":"564e6bf1c1077","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_2_vertical":1,"8_1_vertical":2,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":215,"total":240},"total":{"83860461":"207","68364687":249}}}},{"time":"08:40","uid":"564e6bf1c11d5","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":85,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"68364687","admin_player":"83860461","args":null,"reflexion":{"move":{"value":215,"total":240},"total":{"83860461":"207","68364687":249}}}},{"time":"08:40","uid":"564e6bf1c149a","type":"updateReflexionTime","log":"","args":{"player_id":83860461,"delta":"19","max":"300"}},{"time":"08:40","uid":"564e6bf1c1583","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":83860461,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"226","68364687":"274"}}}},{"time":"08:40","uid":"564e6bf1c8bb3","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"226","68364687":"274"}}},"lock_uuid":"8e290d1e-7075-4ad2-8762-5788370cd931"}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"41","packet_type":"resend","move_id":"20","data":[{"time":"02:40","uid":"564e6c0760359","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"3":0},"6":{"3":0},"5":{"2":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"098805dc-908d-48d9-85d1-3d5bdf6b6f2d"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"42","packet_type":"resend","move_id":"20","data":[{"time":"02:40","uid":"564e6c075fba3","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"83860461","player_name":"Big bear","x":"6","y":"8","quoridorstrats_notation":"f2"}},{"time":"02:40","uid":"564e6c075fd7b","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":218,"total":240},"total":{"83860461":182,"68364687":"274"}}}},{"time":"02:40","uid":"564e6c075ff77","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":90,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":218,"total":240},"total":{"83860461":182,"68364687":"274"}}}},{"time":"02:40","uid":"564e6c076042a","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:40","uid":"564e6c076055d","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"204","68364687":"293"}}}},{"time":"02:40","uid":"564e6c07680db","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"204","68364687":"293"}}},"lock_uuid":"098805dc-908d-48d9-85d1-3d5bdf6b6f2d"}]},{"channel":"\/player\/p83860461","table_id":"17456177","packet_id":"43","packet_type":"resend","move_id":"21","data":[{"time":"08:42","uid":"564e6c66bb8b4","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"5":{"8":0},"7":{"8":0},"6":{"7":0,"9":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"1000d679-ef25-4225-844c-aa292272243b"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"44","packet_type":"resend","move_id":"21","data":[{"time":"08:42","uid":"564e6c66bb247","type":"playWall","log":"${player_name} places a fence","args":{"player_id":"68364687","player_name":"SimonNLP","x":"2","y":"1","orientation":"vertical","counters":{"wallcount_p68364687":{"counter_name":"wallcount_p68364687","counter_value":"4"},"wallcount_p83860461":{"counter_name":"wallcount_p83860461","counter_value":"6"}},"quoridorstrats_notation":"b8v"}},{"time":"08:42","uid":"564e6c66bb44e","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":145,"total":240},"total":{"83860461":"204","68364687":103}}}},{"time":"08:42","uid":"564e6c66bb5ea","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":95,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"68364687","admin_player":"83860461","args":null,"reflexion":{"move":{"value":145,"total":240},"total":{"83860461":"204","68364687":103}}}},{"time":"08:42","uid":"564e6c66bb953","type":"updateReflexionTime","log":"","args":{"player_id":83860461,"delta":"19","max":"300"}},{"time":"08:42","uid":"564e6c66bba62","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":83860461,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"223","68364687":"198"}}}},{"time":"08:42","uid":"564e6c66c628e","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"2_1_vertical":1,"2_2_vertical":2,"2_1_horizontal":3,"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"223","68364687":"198"}}},"lock_uuid":"1000d679-ef25-4225-844c-aa292272243b"}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"45","packet_type":"resend","move_id":"22","data":[{"time":"02:42","uid":"564e6c7225cdf","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"4":{"3":0},"6":{"3":0},"5":{"2":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"076a03a0-4c8a-4179-8df0-7b71e72586a2"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"46","packet_type":"resend","move_id":"22","data":[{"time":"02:42","uid":"564e6c722561a","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"83860461","player_name":"Big bear","x":"7","y":"8","quoridorstrats_notation":"g2"}},{"time":"02:42","uid":"564e6c7225845","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"2_1_vertical":1,"2_2_vertical":2,"2_1_horizontal":3,"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":228,"total":240},"total":{"83860461":199,"68364687":"198"}}}},{"time":"02:42","uid":"564e6c7225a0e","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":100,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":228,"total":240},"total":{"83860461":199,"68364687":"198"}}}},{"time":"02:42","uid":"564e6c7225d90","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:42","uid":"564e6c7225eca","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"211","68364687":"217"}}}},{"time":"02:42","uid":"564e6c7231fbe","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"2_1_vertical":1,"2_2_vertical":2,"2_1_horizontal":3,"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"211","68364687":"217"}}},"lock_uuid":"076a03a0-4c8a-4179-8df0-7b71e72586a2"}]},{"channel":"\/player\/p83860461","table_id":"17456177","packet_id":"47","packet_type":"resend","move_id":"23","data":[{"time":"08:43","uid":"564e6c97dd180","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"6":{"8":0},"8":{"8":0},"7":{"7":0,"9":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"37cb6c30-84b4-4420-8cb1-de277e904f80"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"48","packet_type":"resend","move_id":"23","data":[{"time":"08:43","uid":"564e6c97dca78","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"68364687","player_name":"SimonNLP","x":"6","y":"3","quoridorstrats_notation":"f7"}},{"time":"08:43","uid":"564e6c97dccec","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"2_1_vertical":1,"2_2_vertical":2,"2_1_horizontal":3,"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":203,"total":240},"total":{"83860461":"211","68364687":143}}}},{"time":"08:43","uid":"564e6c97dceac","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":100,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"68364687","admin_player":"83860461","args":null,"reflexion":{"move":{"value":203,"total":240},"total":{"83860461":"211","68364687":143}}}},{"time":"08:43","uid":"564e6c97dd23e","type":"updateReflexionTime","log":"","args":{"player_id":83860461,"delta":"19","max":"300"}},{"time":"08:43","uid":"564e6c97dd379","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":83860461,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"230","68364687":"180"}}}},{"time":"08:43","uid":"564e6c97e7804","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"2_1_vertical":1,"2_2_vertical":2,"2_1_horizontal":3,"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"230","68364687":"180"}}},"lock_uuid":"37cb6c30-84b4-4420-8cb1-de277e904f80"}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"49","packet_type":"resend","move_id":"24","data":[{"time":"02:43","uid":"564e6c9cda993","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"5":{"3":0},"7":{"3":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"72547f8d-7ee5-48e4-804d-f95938484d44"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"50","packet_type":"resend","move_id":"24","data":[{"time":"02:43","uid":"564e6c9cda2ae","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"83860461","player_name":"Big bear","x":"8","y":"8","quoridorstrats_notation":"h2"}},{"time":"02:43","uid":"564e6c9cda4dc","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"2_1_vertical":1,"2_2_vertical":2,"2_1_horizontal":3,"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":235,"total":240},"total":{"83860461":220,"68364687":"180"}}}},{"time":"02:43","uid":"564e6c9cda6a4","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":100,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":235,"total":240},"total":{"83860461":220,"68364687":"180"}}}},{"time":"02:43","uid":"564e6c9cdaa59","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:43","uid":"564e6c9cdab95","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"225","68364687":"199"}}}},{"time":"02:43","uid":"564e6c9ce6665","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"2_1_vertical":1,"2_2_vertical":2,"2_1_horizontal":3,"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"225","68364687":"199"}}},"lock_uuid":"72547f8d-7ee5-48e4-804d-f95938484d44"}]},{"channel":"\/player\/p83860461","table_id":"17456177","packet_id":"51","packet_type":"resend","move_id":"25","data":[{"time":"08:43","uid":"564e6cb415c64","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"7":{"8":0},"9":{"8":0},"8":{"7":0,"9":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"d6f918d1-97cf-4a92-8016-63e117380b9b"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"52","packet_type":"resend","move_id":"25","data":[{"time":"08:43","uid":"564e6cb4156ce","type":"playToken","log":"${player_name} moves his pawn","args":{"player_id":"68364687","player_name":"SimonNLP","x":"7","y":"3","quoridorstrats_notation":"g7"}},{"time":"08:43","uid":"564e6cb4158a6","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"2_1_vertical":1,"2_2_vertical":2,"2_1_horizontal":3,"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":216,"total":240},"total":{"83860461":"225","68364687":151}}}},{"time":"08:43","uid":"564e6cb415a0a","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":100,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"68364687","admin_player":"83860461","args":null,"reflexion":{"move":{"value":216,"total":240},"total":{"83860461":"225","68364687":151}}}},{"time":"08:43","uid":"564e6cb415d18","type":"updateReflexionTime","log":"","args":{"player_id":83860461,"delta":"19","max":"300"}},{"time":"08:43","uid":"564e6cb415e2d","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":83860461,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"244","68364687":"175"}}}},{"time":"08:43","uid":"564e6cb41f960","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"2_1_vertical":1,"2_2_vertical":2,"2_1_horizontal":3,"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":83860461,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"244","68364687":"175"}}},"lock_uuid":"d6f918d1-97cf-4a92-8016-63e117380b9b"}]},{"channel":"\/player\/p68364687","table_id":"17456177","packet_id":"53","packet_type":"resend","move_id":"26","data":[{"time":"02:43","uid":"564e6cb6bdd84","type":"updateMoves","log":"","args":{"possibleTokenMoves":{"6":{"3":0},"8":{"3":0}},"canPlayWall":true},"synchro":3,"lock_uuid":"c4556e6f-58a3-4515-87c2-fa9c7810db48"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"54","packet_type":"resend","move_id":"26","data":[{"time":"02:43","uid":"564e6cb6bd7ba","type":"playWall","log":"${player_name} places a fence","args":{"player_id":"83860461","player_name":"Big bear","x":"7","y":"3","orientation":"horizontal","counters":{"wallcount_p68364687":{"counter_name":"wallcount_p68364687","counter_value":"4"},"wallcount_p83860461":{"counter_name":"wallcount_p83860461","counter_value":"5"}},"quoridorstrats_notation":"g6h"}},{"time":"02:43","uid":"564e6cb6bd99f","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"2_1_vertical":1,"2_2_vertical":2,"2_1_horizontal":3,"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":238,"total":240},"total":{"83860461":240,"68364687":"175"}}}},{"time":"02:43","uid":"564e6cb6bdb1f","type":"gameStateChange","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":100,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":"83860461","admin_player":"83860461","args":null,"reflexion":{"move":{"value":238,"total":240},"total":{"83860461":240,"68364687":"175"}}}},{"time":"02:43","uid":"564e6cb6bde2c","type":"updateReflexionTime","log":"","args":{"player_id":68364687,"delta":"19","max":"300"}},{"time":"02:43","uid":"564e6cb6bdf36","type":"leaveGameState","log":"","args":{"name":"nextPlayer","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"game","action":"stNextPlayer","updateGameProgression":true,"transitions":{"nextTurn":10,"cantPlay":11},"active_player":68364687,"admin_player":"83860461","args":null,"reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"242","68364687":"194"}}}},{"time":"02:43","uid":"564e6cb6cd549","type":"gameStateChange","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"2_1_vertical":1,"2_2_vertical":2,"2_1_horizontal":3,"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"7_3_horizontal":1,"8_3_horizontal":2,"7_3_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"1_3_horizontal":4,"2_3_vertical":4,"3_4_vertical":4,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":68364687,"admin_player":"83860461","reflexion":{"move":{"value":240,"total":240},"total":{"83860461":"242","68364687":"194"}}},"lock_uuid":"c4556e6f-58a3-4515-87c2-fa9c7810db48"}]},{"channel":"\/table\/t17456177","table_id":"17456177","packet_id":"56","packet_type":"resend","move_id":"27","data":[{"time":"00:43","uid":"564e6cc4ed72e","type":"leaveGameState","log":"","args":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":{"2_1_vertical":1,"2_2_vertical":2,"2_1_horizontal":3,"3_3_horizontal":1,"2_3_horizontal":2,"4_3_horizontal":2,"3_3_vertical":3,"3_6_vertical":1,"3_5_vertical":2,"3_7_vertical":2,"3_6_horizontal":2,"3_8_vertical":1,"3_8_horizontal":3,"4_6_horizontal":1,"5_6_horizontal":2,"4_6_vertical":3,"5_3_horizontal":1,"6_3_horizontal":2,"5_3_vertical":3,"6_2_horizontal":1,"5_2_horizontal":2,"7_2_horizontal":2,"6_2_vertical":3,"6_6_horizontal":1,"7_6_horizontal":2,"6_6_vertical":3,"7_3_horizontal":1,"8_3_horizontal":2,"7_3_vertical":3,"8_1_horizontal":1,"7_1_horizontal":2,"8_1_vertical":2,"8_2_vertical":1,"8_3_vertical":2,"8_2_horizontal":3,"1_3_horizontal":4,"2_3_vertical":4,"3_4_vertical":4,"8_6_horizontal":4}},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":226,"total":240},"total":{"83860461":"242","68364687":166}}}},{"time":"00:43","uid":"564e6cc4edc1d","type":"gameStateChange","log":"","args":{"name":"gameEnd","description":"End of game","type":"manager","action":"stGameEnd","args":{"table":{"stats":{"10":"25","11":"11","12":"4","1":2,"2":0,"3":"0"},"concede":true,"neutralized":"0"},"result":[{"player":"83860461","name":"Big bear","color":"f29a00","score":"0","score_aux":"0","zombie":0,"tie":false,"rank":1,"stats":{"10":"13","11":"5","12":"5","1":"3.85"},"color_back":null,"concede":0},{"player":"68364687","name":"SimonNLP","color":"3d1303","score":"0","score_aux":"0","zombie":0,"tie":false,"rank":2,"stats":{"10":"12","11":"6","12":"2","1":"4.48333"},"color_back":null,"concede":1}]},"active_player":"68364687","admin_player":"83860461","reflexion":{"move":{"value":226,"total":240},"total":{"83860461":"242","68364687":166}}}}]}]}}
;
gameui.current_player_name="Big bear";
gameui.blinkid="http://amazon.com/gp/search?ie=UTF8&camp=1642&creative=6746&index=toys&keywords=Quoridor&linkCode=ur2&tag=boagamare-20";
gameui.blinkdomain="Buy on Amazon.com";
gameui.game_id=43;
gameui.is_coop=false;
gameui.is_solo=false;
gameui.reportJsError=false;
gameui.decision={"decision_type":"none"};
gameui.visitors=[];
gameui.prefs=[];
gameui.metasiteurl="http://en.boardgamearena.com";
gameui.tiebreaker="";
gameui.bTutorial=false;
gameui.jsbundlesversion='20151119';
gameui.bActiveEvents=false;
gameui.bRealtime=1;
gameui.quickGameEnd=false;
gameui.chatDetached = false;
gameui.dockedChat=true;
gameui.bTimerCommon=false;
gameui.turnBasedNotes="";
gameui.bUseWebStockets=false;
gameui.completesetup( "quoridor", "Quoridor", 17456177, 83860461, 0, "9bf56cb78670296d809d1f166d74b20b","socketio", {"players":{"83860461":{"id":"83860461","no":"1","score":"0","x":"5","y":"9","color":"f29a00","color_back":null,"name":"Big bear","avatar":"000000","zombie":0,"eliminated":0,"is_ai":"0","beginner":false},"68364687":{"id":"68364687","no":"2","score":"0","x":"5","y":"1","color":"3d1303","color_back":null,"name":"SimonNLP","avatar":"85119acd79","zombie":0,"eliminated":0,"is_ai":"0","beginner":false}},"player_no":"1","players_count":2,"sprites":"var sprites = {\"spriteInfos\":[[40,1,548,594,2281],594,[2,483,38,101,19291],[3,382,37,101,17023],[7,204,33,91,12487],[5,295,35,87,14755],[9,119,31,85,10219],[11,45,29,74,7951],[588,478,37,67,43105],[588,294,30,67,36301],[588,107,22,67,29497],[588,412,34,66,40837],[588,234,27,60,34033],[588,174,25,60,31765],[588,361,32,51,38569],[588,56,20,51,27229],[88,445,13,49,5421],[88,445,13,49,6429],[399,381,13,49,6373],[88,383,13,49,6303],[276,444,13,49,5463],[88,383,13,49,5295],[276,444,13,49,6471],[276,382,13,49,5337],[276,382,13,49,6345],101,[399,381,13,49,5365],[401,443,12,49,6499],[464,443,12,49,5505],[524,381,12,49,6401],[524,381,12,49,5393],[464,443,12,49,6513],[401,443,12,49,5491],[214,444,12,49,6457],[214,444,12,49,5449],[463,381,11,49,6387],[215,382,11,49,5323],[215,382,11,49,6331],[463,381,11,49,5379],[150,383,14,48,5309],[150,383,14,48,6317],[150,445,13,48,5435],[338,444,13,48,6485],[338,444,13,48,5477],[150,445,13,48,6443],[338,382,12,48,6359],[338,382,12,48,5351],[526,443,11,48,5519],[526,443,11,48,6527],[151,204,14,47,4931],[151,204,14,47,5939],[91,145,13,47,5799],[90,204,13,47,5925],[91,145,13,47,4791],[152,145,13,47,4805],[151,322,13,47,5183],[89,322,13,47,5169],[90,204,13,47,4917],[89,322,13,47,6177],[151,322,13,47,6191],[339,505,13,47,6611],[398,321,13,47,6247],[87,507,13,47,6555],[398,321,13,47,5239],[152,145,13,47,5813],[456,144,12,47,5883],[275,145,12,47,5841],[275,204,12,47,5967],[395,144,12,47,4861],[458,203,12,47,5001],49,[276,322,12,47,6219],[275,145,12,47,4833],[456,144,12,47,4875],[275,204,12,47,4959],[458,203,12,47,6009],[276,322,12,47,5211],[335,204,12,47,5981],[461,321,12,47,6261],[402,505,12,47,6625],[335,204,12,47,4973],[461,321,12,47,5253],[395,144,12,47,5869],[215,204,11,47,4945],[519,203,11,47,5015],[517,144,11,47,5897],[215,145,11,47,5827],[215,145,11,47,4819],[215,506,11,47,6583],[517,144,11,47,4889],[215,322,11,47,5197],[519,203,11,47,6023],[528,504,11,47,6653],[215,322,11,47,6205],[215,204,11,47,5953],[277,506,13,46,6597],[336,322,13,46,6233],[395,204,13,46,4987],[151,263,13,46,5057],[395,204,13,46,5995],[275,263,13,46,6093],[275,263,13,46,5085],[151,263,13,46,6065],[336,322,13,46,5225],[334,145,13,46,5855],[334,145,13,46,4847],[150,507,13,46,6569],[397,262,12,46,5113],[90,263,12,46,6051],[90,263,12,46,5043],[459,262,12,46,6135],[214,263,12,46,6079],[397,262,12,46,6121],[214,263,12,46,5071],[520,262,12,46,6149],[520,262,12,46,5141],[465,505,12,46,6639],47,[459,262,12,46,5127],[523,321,11,46,5267],[523,321,11,46,6275],[333,87,13,45,5729],[333,87,13,45,4721],[336,263,12,45,5099],[336,263,12,45,6107],[455,87,12,45,4749],[214,87,12,45,4693],[214,87,12,45,5701],[394,87,12,45,5743],[274,87,12,45,5715],[274,87,12,45,4707],[394,87,12,45,4735],[455,87,12,45,5757],[92,88,12,45,5673],[92,88,12,45,4665],[515,87,11,45,4763],[515,87,11,45,5771],[405,31,49,44,44321],[405,31,49,44,44319],[405,31,49,44,44317],[165,32,49,44,44263],[405,31,49,44,44315],[166,32,48,44,44265],46,[165,32,48,44,44259],[465,31,48,44,44331],[226,31,48,44,44273],[465,31,48,44,44329],[226,31,48,44,44275],[286,31,47,44,44289],[345,31,47,44,44303],[105,32,47,44,44251],[524,31,47,44,44343],[105,32,47,44,44247],[524,31,47,44,44347],44,[466,31,47,44,44335],[105,32,47,44,44245],[466,31,47,44,44333],[105,32,47,44,44249],[165,32,47,44,44261],[345,31,47,44,44305],[286,31,46,44,44287],[46,32,46,44,44233],[345,31,46,44,44307],[345,31,46,44,44301],[226,31,46,44,44277],44,[525,31,46,44,44349],[46,32,46,44,44235],[227,31,46,44,44279],[525,31,46,44,44345],[286,31,45,44,44291],[46,32,45,44,44231],[46,32,45,44,44237],[286,31,45,44,44293],[151,88,14,44,5687],[151,88,14,44,4679],[392,32,13,43,4609],[92,33,13,43,4539],[152,33,13,43,4553],[333,32,12,43,4595],[274,32,12,43,4581],[454,32,11,43,4623],[513,32,11,43,4637],[588,14,16,42,24961],[214,33,12,42,4567],[588,545,34,40,45373],44,[538,452,48,39,45227],[536,391,48,39,45099],[536,391,48,39,45105],[538,452,48,39,45225],[538,452,48,39,45231],[536,391,48,39,45103],[536,391,48,39,45101],[538,452,48,39,45229],[39,456,49,38,45119],[39,456,49,38,45115],[39,456,48,38,45113],39,[39,456,48,38,45117],[528,153,47,38,44599],[528,153,47,38,44601],[528,153,47,38,44595],[528,153,47,38,44597],[226,456,50,37,45161],[226,456,50,37,45155],[226,456,50,37,45157],[226,456,50,37,45159],[101,395,49,37,45005],[101,395,49,37,45001],38,[101,395,49,37,45007],[101,395,49,37,45003],[40,395,48,37,44987],[40,395,48,37,44993],[540,514,48,37,45355],[40,395,48,37,44991],[540,514,48,37,45357],[540,514,48,37,45351],[40,395,48,37,44989],[540,514,48,37,45353],[287,155,47,37,44539],37,[287,155,47,37,44545],[526,95,47,37,44473],[287,155,47,37,44541],[527,95,46,37,44471],[527,95,46,37,44475],[287,155,46,37,44543],[527,95,46,37,44469],[413,456,51,36,45197],[413,456,51,36,45203],[412,394,51,36,45077],[412,394,51,36,45075],37,[413,456,51,36,45199],[413,456,51,36,45201],[412,394,50,36,45073],[412,394,50,36,45071],[289,457,49,36,45169],[350,394,49,36,45059],[350,394,49,36,45057],[101,458,49,36,45127],[289,457,49,36,45171],[289,457,49,36,45175],[101,458,49,36,45133],36,[350,394,49,36,45061],[101,458,49,36,45129],[101,458,49,36,45131],[289,457,49,36,45173],[350,394,48,36,45063],[534,331,48,36,44973],[534,331,48,36,44979],[534,331,48,36,44975],[534,331,48,36,44977],[288,215,47,36,44665],[288,215,47,36,44669],36,[530,214,47,36,44725],[288,215,47,36,44667],[530,214,47,36,44723],[531,214,46,36,44727],[531,214,46,36,44721],[289,215,46,36,44671],[414,517,51,35,45323],[414,517,51,35,45329],[414,517,51,35,45325],[414,517,51,35,45327],[226,518,50,35,45285],36,[226,396,50,35,45035],[352,517,50,35,45315],[352,517,50,35,45311],[474,395,50,35,45087],[226,396,50,35,45029],[474,395,50,35,45085],[226,396,50,35,45031],[226,518,50,35,45281],[352,517,50,35,45313],[474,395,50,35,45091],[100,519,50,35,45255],35,[474,395,50,35,45089],[226,396,49,35,45033],[352,517,49,35,45309],[165,216,49,35,44639],[226,216,49,35,44653],[226,216,49,35,44655],[100,519,49,35,45253],[226,216,49,35,44657],[100,519,49,35,45257],[38,519,49,35,45241],[227,518,49,35,45287],35,[100,519,49,35,45259],[227,518,49,35,45283],[38,519,49,35,45245],[226,216,49,35,44651],[290,517,49,35,45295],[288,334,48,35,44919],[104,157,48,35,44503],[41,334,48,35,44863],[38,519,48,35,45239],[289,396,48,35,45045],[41,334,48,35,44865],35,[38,519,48,35,45243],[41,334,48,35,44867],[290,517,48,35,45297],[165,216,48,35,44643],[288,334,48,35,44921],[290,517,48,35,45299],[104,157,48,35,44497],[289,396,48,35,45047],[104,157,48,35,44501],[289,396,48,35,45043],[288,334,48,35,44917],35,[165,216,48,35,44641],[41,334,48,35,44861],[290,517,48,35,45301],[289,396,48,35,45049],[289,334,47,35,44923],[104,157,47,35,44499],[43,216,47,35,44615],[43,216,47,35,44609],[44,157,47,35,44483],[43,216,47,35,44613],[43,216,47,35,44611],35,[44,157,47,35,44487],[45,157,46,35,44489],[45,157,46,35,44485],[167,216,45,35,44637],[16,10,24,35,5683],[411,334,50,34,44947],[411,334,50,34,44951],[164,335,50,34,44895],[411,334,50,34,44949],[164,335,50,34,44891],[226,335,50,34,44909],35,[411,334,50,34,44945],[226,335,50,34,44907],[164,335,50,34,44889],[351,458,50,34,45187],[351,458,50,34,45183],[226,335,49,34,44903],[165,158,49,34,44515],[102,335,49,34,44881],[165,98,49,34,44389],[226,335,49,34,44905],[226,275,49,34,44777],34,[164,275,49,34,44765],[164,275,49,34,44769],[165,335,49,34,44893],[226,275,49,34,44783],[165,158,49,34,44511],[226,158,49,34,44527],[351,458,49,34,45185],[102,335,49,34,44877],[164,275,49,34,44767],[226,275,49,34,44779],[102,335,49,34,44875],34,[102,335,49,34,44879],[164,275,49,34,44763],[351,458,49,34,45189],[226,275,49,34,44781],[103,217,48,34,44627],[103,217,48,34,44625],[347,217,48,34,44679],[166,98,48,34,44387],[103,217,48,34,44623],[226,158,48,34,44525],[226,158,48,34,44531],34,[532,274,48,34,44849],[165,98,48,34,44391],[226,158,48,34,44529],[347,217,48,34,44683],[532,274,48,34,44853],[347,157,48,34,44557],[165,158,48,34,44517],[532,274,48,34,44847],[532,274,48,34,44851],[165,98,48,34,44385],[165,158,48,34,44513],34,[347,217,48,34,44685],[347,157,47,34,44553],[288,275,47,34,44797],[104,217,47,34,44629],[288,275,47,34,44791],[347,157,47,34,44559],[288,275,47,34,44793],[347,157,47,34,44555],[348,217,46,34,44681],[288,275,46,34,44795],[163,460,51,33,45143],34,[163,460,51,33,45145],[163,460,50,33,45147],[163,460,50,33,45141],[408,217,50,33,44699],[408,217,50,33,44697],[476,459,50,33,45215],[476,459,50,33,45211],[476,459,50,33,45213],[476,459,50,33,45217],[408,217,50,33,44695],[349,335,49,33,44931],33,[102,276,49,33,44751],[468,158,49,33,44585],[407,158,49,33,44567],[102,276,49,33,44753],[407,158,49,33,44569],[349,335,49,33,44937],[102,276,49,33,44755],[349,335,49,33,44935],[409,217,49,33,44693],[407,158,49,33,44571],[349,335,49,33,44933],33,[103,276,48,33,44749],[42,276,48,33,44737],[407,158,48,33,44573],[468,158,48,33,44587],[468,158,48,33,44581],[468,158,48,33,44583],[42,276,47,33,44741],[42,276,47,33,44735],[104,100,47,33,44373],[346,99,47,33,44429],[104,100,47,33,44371],33,[42,276,47,33,44739],[104,100,47,33,44375],[104,100,47,33,44377],[346,99,47,33,44431],[346,99,47,33,44433],[45,100,47,33,44359],[346,99,46,33,44427],[45,100,46,33,44357],[45,100,46,33,44361],[47,100,44,33,44363],[477,519,51,32,45339],33,[477,519,51,32,45341],[477,519,51,32,45337],[409,276,50,32,44821],[164,399,50,32,45019],[164,399,50,32,45021],[409,276,50,32,44823],[409,276,50,32,44819],[163,521,50,32,45271],[163,521,50,32,45273],[164,399,50,32,45015],[478,519,50,32,45343],32,[163,521,50,32,45269],[163,521,50,32,45267],[471,276,49,32,44839],[471,276,49,32,44833],[471,276,49,32,44837],[471,276,49,32,44835],[164,399,49,32,45017],[409,276,49,32,44825],[226,100,48,32,44401],[226,100,48,32,44403],[226,100,48,32,44399],32,[287,100,46,32,44417],[287,100,46,32,44415],[287,100,46,32,44419],[287,100,46,32,44413],[230,100,44,32,44405],[348,277,49,31,44807],[348,277,49,31,44809],[467,101,48,31,44455],[348,277,48,31,44805],[467,101,48,31,44457],[467,101,48,31,44461],32,[467,101,48,31,44459],[348,277,47,31,44811],[473,338,50,30,44961],[473,338,50,30,44963],[406,102,49,30,44441],[406,102,49,30,44445],[470,220,49,30,44709],[473,338,49,30,44959],[470,220,49,30,44707],[406,102,49,30,44443],[473,338,49,30,44965],31,[407,102,48,30,44447],[470,220,48,30,44713],[470,220,47,30,44711],[213,75,61,28,1181],[150,553,65,26,2175],[390,75,64,26,1225],[172,553,43,26,2177],[516,106,10,26,231],[516,106,9,26,233],[456,106,9,26,217],[573,106,8,26,243],[337,225,7,26,443],[83,432,67,25,1909],[578,225,11,25,497],[94,167,11,25,259],[519,225,10,25,487],[517,166,10,25,359],[517,166,9,25,355],[577,225,9,25,495],30,[575,166,9,25,371],[151,106,1,25,145],[151,106,1,25,147],[292,552,47,24,2207],[459,262,12,24,1597],[454,51,11,24,91],[395,227,11,24,453],[338,407,10,24,819],[519,226,10,24,483],[516,108,9,24,229],[459,226,9,24,469],[456,108,9,24,215],[155,345,9,24,651],[278,407,9,24,805],[154,345,8,24,653],[517,167,8,24,357],[515,51,8,24,107],[150,309,63,23,1671],[153,132,60,23,1297],[509,75,60,23,1255],[584,407,13,23,879],[584,407,12,23,875],[463,407,10,23,849],[523,345,10,23,735],[461,345,10,23,721],[519,227,10,23,481],[524,407,10,23,865],[524,407,9,23,861],[523,345,9,23,733],[399,345,8,23,705],[574,109,8,23,247],[574,109,8,23,249],[455,52,7,23,93],[577,168,7,23,373],[95,286,6,23,515],[151,108,1,23,151],25,[211,431,65,22,1939],[334,308,63,22,1715],[215,309,60,22,1691],[272,75,58,22,1199],[453,75,58,22,1239],[511,75,57,22,1253],[395,132,55,22,1353],[333,75,54,22,1209],[414,552,51,22,2233],22,[105,554,45,22,2165],[231,75,42,22,1187],[582,345,13,22,749],[399,381,13,22,1835],[455,87,12,22,1219],[152,54,12,22,25],[90,263,12,22,1513],[580,286,11,22,623],[571,53,11,22,121],[520,286,11,22,611],[397,286,10,22,581],[275,53,10,22,47],[333,109,9,22,189],[463,408,9,22,851],[525,408,9,22,859],[396,169,9,22,331],[461,346,8,22,723],[580,286,8,22,625],[336,170,8,22,315],[460,286,8,22,595],[399,346,8,22,707],[460,286,8,22,593],[395,229,8,22,459],[582,345,8,22,753],[525,408,8,22,863],[456,110,7,22,219],[514,53,7,22,103],[337,287,7,22,571],[457,169,7,22,343],[455,53,6,22,89],[463,408,5,22,847],[398,229,5,22,457],[518,110,5,22,235],[151,107,1,22,149],[456,308,64,21,1745],[335,430,64,21,1969],[92,76,60,21,1159],22,[91,309,60,21,1661],[152,192,59,21,1423],[515,191,59,21,1505],[334,191,58,21,1461],[214,132,56,21,1307],[348,552,54,21,2217],[354,552,48,21,2219],[234,553,43,21,2189],[45,554,42,21,2151],[109,554,41,21,2163],21,[110,554,40,21,2161],[47,554,40,21,2147],[397,262,12,21,1583],[456,144,12,21,1345],[92,88,12,21,1135],[278,472,12,21,933],[215,382,11,21,1793],[527,471,10,21,987],[527,471,9,21,985],[333,111,9,21,191],[527,471,9,21,989],[521,287,9,21,609],[401,471,8,21,957],[398,287,8,21,583],[401,471,8,21,959],[527,471,8,21,991],[465,471,8,21,975],[401,471,8,21,963],[454,54,8,21,95],[400,409,8,21,833],[338,410,7,21,817],[398,287,7,21,585],[572,54,7,21,119],[277,288,7,21,553],[460,229,7,21,467],[336,230,7,21,441],[338,348,6,21,693],[278,410,6,21,809],[335,51,6,21,63],[459,229,6,21,473],[396,111,5,21,207],[396,54,5,21,79],[582,345,5,21,751],[338,230,4,21,439],[397,111,4,21,203],[393,430,70,20,1983],[214,553,63,20,2193],[213,369,63,20,1815],21,[212,369,63,20,1817],[466,551,62,20,2249],[152,369,61,20,1799],[90,369,60,20,1787],[337,308,60,20,1717],[453,75,59,20,1237],[455,191,59,20,1493],[530,551,58,20,2259],[335,191,57,20,1465],20,[334,191,57,20,1463],[275,132,55,20,1327],[213,75,54,20,1185],[393,75,54,20,1223],[512,75,53,20,1251],[393,75,51,20,1227],[473,320,50,20,56299],[473,320,50,20,57433],[471,202,48,20,56049],[475,320,48,20,56303],20,[471,202,48,20,57183],[475,320,48,20,56301],[475,320,48,20,57435],[475,320,48,20,57437],[476,320,47,20,56305],[418,552,47,20,2235],[476,320,47,20,57439],[293,552,46,20,2203],[166,381,46,20,57491],[166,381,46,20,56357],[165,381,46,20,56359],20,[165,381,46,20,57493],[164,381,45,20,56355],[474,202,45,20,56051],[474,202,45,20,56047],[170,553,45,20,2181],[474,202,45,20,57181],[165,381,45,20,56361],[474,202,45,20,57185],[165,381,45,20,57495],[170,553,45,20,2179],[164,381,45,20,57489],[475,202,44,20,56053],20,[475,202,44,20,57187],[43,432,43,20,1895],[47,309,42,20,1649],[409,75,41,20,1229],[51,554,36,20,2149],[151,204,14,20,1401],[91,145,13,20,1261],[151,263,13,20,1527],[520,262,12,20,1611],[274,87,12,20,1177],[458,203,12,20,1471],[461,321,12,20,1723],[275,204,12,20,1429],[395,144,12,20,1331],[528,504,11,20,2115],[586,471,11,20,1001],[587,471,10,20,1005],[90,534,10,20,1015],[523,348,9,20,737],[520,288,9,20,607],[586,471,9,20,1003],[523,348,8,20,739],[514,55,8,20,105],[337,289,8,20,567],[400,410,8,20,831],[514,55,7,20,109],[458,171,7,20,345],[398,288,7,20,579],[458,171,6,20,341],[400,410,6,20,835],[339,411,6,20,821],[459,230,6,20,471],[396,171,6,20,329],[585,410,5,20,877],[572,55,5,20,123],[277,231,5,20,429],[157,349,4,20,655],[335,368,63,19,1839],20,[396,308,63,19,1731],[212,309,61,19,1689],[455,191,59,19,1495],[513,132,59,19,1381],[395,191,59,19,1475],[92,251,59,19,1535],[470,551,58,19,2247],[530,551,58,19,2261],[530,551,58,19,2265],19,[394,132,57,19,1349],[275,192,57,19,1451],[213,192,57,19,1439],[275,192,56,19,1453],[394,132,56,19,1351],[152,76,56,19,1169],[275,132,55,19,1321],[275,132,55,19,1323],[215,75,52,19,1183],[476,442,50,19,56555],19,[476,442,50,19,57689],[274,75,50,19,1201],[477,442,49,19,57687],[477,442,49,19,56553],[478,442,48,19,57691],[478,442,48,19,57685],[478,442,48,19,56551],[478,442,48,19,56557],[164,443,46,19,56481],[166,443,46,19,56483],[166,443,46,19,57617],19,[164,443,46,19,57615],[164,443,45,19,56485],[164,443,45,19,57621],[164,443,45,19,57619],[164,443,45,19,56487],[47,309,42,19,1645],[109,554,41,19,2167],[48,309,41,19,1647],[106,251,39,19,1531],[238,553,39,19,2195],[173,132,37,19,1295],[173,132,36,19,1299],[243,553,34,19,2191],19,[294,132,34,19,1325],[353,75,30,19,1213],[55,133,29,19,1269],[55,251,28,19,1521],[398,321,13,19,1709],[87,507,13,19,2017],[395,204,13,19,1457],[90,204,13,19,1387],[150,445,13,19,1905],[88,383,13,19,1765],[526,443,11,19,1989],[215,145,11,19,1289],[215,290,10,19,537],[466,533,9,19,1103],[402,533,9,19,1085],[521,289,9,19,613],[466,533,9,19,1101],[399,349,8,19,711],[465,473,8,19,973],[340,533,8,19,1071],[339,474,7,19,945],[339,474,7,19,943],[399,349,7,19,709],[463,411,6,19,845],[466,473,6,19,971],[571,56,6,19,117],[462,349,6,19,725],[215,534,6,19,1043],[579,231,6,19,501],[398,172,5,19,333],[457,170,4,19,347],[278,350,4,19,677],[336,172,4,19,319],[278,229,3,19,427],[269,431,69,18,1953],[397,368,64,18,1857],19,[398,368,63,18,1855],[335,308,61,18,1713],[397,250,60,18,1605],[276,309,60,18,1699],[276,369,60,18,1827],[215,309,60,18,1687],[530,551,58,18,2263],[93,77,54,18,1153],[164,382,51,18,659],18,[477,503,51,18,57815],[477,503,51,18,56681],[478,503,50,18,56677],[478,503,50,18,56679],[351,442,50,18,56529],[351,442,50,18,57663],[478,503,50,18,57813],[274,75,50,18,1195],[473,321,50,18,603],[478,503,50,18,57811],[470,203,49,18,351],18,[348,261,49,18,56147],[351,442,49,18,57659],[348,261,49,18,57281],[351,442,49,18,56525],[164,505,48,18,56609],[164,505,48,18,57743],[407,86,48,18,55783],[407,86,48,18,56917],[354,442,47,18,56527],[354,442,47,18,57657],[354,442,47,18,56523],18,[354,442,47,18,57661],[351,261,46,18,57279],[351,261,46,18,56145],[409,86,46,18,56919],[409,86,46,18,55785],[410,86,45,18,56915],[163,505,45,18,57741],[163,505,45,18,56607],[163,505,45,18,56611],[352,261,45,18,57285],[163,505,45,18,57745],[352,261,45,18,56151],18,[352,261,45,18,56149],[410,86,45,18,55781],[352,261,45,18,57283],[163,505,44,18,57747],[484,503,44,18,57817],[163,505,44,18,56613],[484,503,44,18,56683],[297,552,42,18,2205],[413,86,42,18,55787],[413,86,42,18,56921],[412,132,41,18,1355],[50,192,39,18,1393],18,[49,554,38,18,2153],[174,309,36,18,1677],[350,75,27,18,1215],[353,75,24,18,1211],[242,192,23,18,1437],[150,383,14,18,1779],[339,505,13,18,2073],[152,145,13,18,1275],[89,322,13,18,1639],[151,322,13,18,1653],[88,445,13,18,1891],[338,382,12,18,1821],[402,505,12,18,2087],[214,87,12,18,1163],[401,443,12,18,1961],[214,263,12,18,1541],[465,505,12,18,2101],[214,444,12,18,1919],[523,321,11,18,1737],[519,203,11,18,1485],[215,506,11,18,2045],[517,144,11,18,1359],[528,533,9,18,1115],[460,290,9,18,597],[340,534,8,18,1069],[588,533,8,18,1127],[588,533,8,18,1125],[529,533,8,18,1117],[588,533,7,18,1131],[529,533,7,18,1113],[589,533,7,18,1129],[529,533,6,18,1111],[466,534,6,18,1097],[337,291,6,18,565],[216,351,5,18,665],[400,412,5,18,837],[336,173,5,18,313],[335,57,4,18,61],[216,413,4,18,793],[277,231,4,18,431],[340,534,4,18,1075],[95,408,1,18,761],[396,308,62,17,1727],18,[212,369,61,17,1811],[459,308,61,17,1741],[459,308,61,17,1743],[399,430,60,17,1981],[88,369,60,17,1783],[520,367,60,17,1883],[460,308,60,17,1747],[90,192,59,17,1409],[394,191,58,17,1479],17,[276,369,58,17,1829],[90,369,58,17,1789],[152,309,57,17,1675],[517,191,57,17,1507],[474,380,50,17,56431],[474,380,50,17,57561],[476,443,50,17,855],[474,380,50,17,56427],[348,368,50,17,1845],[474,380,50,17,57565],17,[478,551,50,17,2245],[289,381,49,17,57519],[471,261,49,17,57311],[471,261,49,17,56177],[289,381,49,17,56385],[227,381,48,17,56371],[227,381,48,17,57505],[94,133,48,17,1279],[289,381,48,17,56383],[289,381,48,17,57517],[412,261,47,17,57295],17,[412,261,47,17,56161],[409,143,47,17,57043],[412,261,47,17,56159],[418,552,47,17,2237],[412,261,47,17,57293],[409,143,47,17,55909],[274,75,46,17,1197],[410,143,46,17,57045],[352,320,46,17,57405],[352,320,46,17,56271],[471,143,46,17,57057],17,[352,320,46,17,56275],[412,202,46,17,57171],[410,143,46,17,55911],[352,320,46,17,56273],[290,381,46,17,57523],[352,320,46,17,57407],[290,381,46,17,56389],[471,143,46,17,55923],[412,202,46,17,56037],[469,86,46,17,55797],[469,86,46,17,56931],[352,320,46,17,57409],17,[470,86,45,17,55795],[475,261,45,17,57307],[413,202,45,17,57173],[411,143,45,17,57047],[413,202,45,17,56039],[475,261,45,17,56173],[470,86,45,17,56929],[475,261,45,17,56175],[411,143,45,17,55913],[414,261,45,17,56165],[475,261,45,17,57309],[414,261,45,17,57299],17,[414,261,45,17,57297],[414,261,45,17,56163],[479,380,45,17,56429],[479,380,45,17,56425],[479,380,45,17,57559],[479,380,45,17,57563],[231,381,44,17,57509],[412,143,44,17,55907],[230,381,44,17,57503],[229,381,44,17,56373],[412,143,44,17,57041],[473,143,44,17,57061],17,[230,381,44,17,56369],[473,143,44,17,55927],[231,381,44,17,56375],[229,381,44,17,57507],[473,143,44,17,55925],[414,202,44,17,56035],[414,202,44,17,57169],[473,143,44,17,57059],[294,381,43,17,57521],[294,381,43,17,56387],[355,320,43,17,56277],[415,202,43,17,56033],17,[415,202,43,17,57167],[355,320,43,17,57411],[477,261,43,17,57313],[477,261,43,17,56179],[474,143,43,17,57055],[472,86,43,17,56935],[472,86,43,17,55801],[474,143,43,17,55921],[473,86,42,17,55799],[473,86,42,17,56933],[298,552,41,17,2209],[47,309,38,17,1643],[170,132,38,17,1293],17,[371,552,31,17,2221],[275,263,13,17,1555],[338,444,13,17,1947],[336,263,12,17,1569],[464,443,12,17,1975],[276,322,12,17,1681],[524,381,12,17,1863],[215,204,11,17,1415],[215,322,11,17,1667],[402,475,7,17,961],[340,535,7,17,1073],[583,350,6,17,747],[339,414,5,17,823],[466,474,4,17,977],[580,171,2,17,369],[280,476,2,17,929],[280,476,2,17,931],[151,227,1,17,399],[460,430,64,16,1999],[337,368,60,16,1841],[399,368,59,16,1859],[458,250,59,16,1617],[522,367,59,16,1881],[527,491,58,16,2135],17,[522,367,58,16,1887],[522,367,57,16,1885],[89,432,56,16,1915],[395,191,54,16,1477],[455,132,54,16,1363],[216,132,54,16,1311],[163,506,52,16,911],[412,380,51,16,57549],[412,380,51,16,56415],[477,504,51,16,981],16,[163,445,50,16,3039],[348,368,50,16,1843],[411,320,50,16,56287],[351,443,50,16,827],[411,320,50,16,57421],[458,132,49,16,1365],[101,444,49,16,57605],[412,380,49,16,56413],[406,87,49,16,85],[348,262,49,16,449],[412,380,49,16,57547],16,[101,444,49,16,56471],[101,444,48,16,57603],[101,444,48,16,56469],[414,380,48,16,57545],[414,380,48,16,56411],[101,444,48,16,57601],[101,444,48,16,56467],[416,442,48,16,56541],[416,442,48,16,57675],[350,380,47,16,57535],[102,321,47,16,57351],16,[290,443,47,16,57645],[348,203,47,16,56023],[166,431,47,16,1927],[348,203,47,16,57157],[350,380,47,16,56401],[102,321,47,16,56217],[290,443,47,16,56511],[287,86,46,16,56889],[102,262,46,16,56089],[292,443,46,16,56509],[102,262,46,16,57223],16,[292,443,46,16,57643],[415,320,46,16,57423],[227,321,46,16,57381],[102,321,46,16,56219],[102,321,46,16,57353],[415,320,46,16,56289],[292,443,46,16,57647],[287,86,46,16,55755],[227,321,46,16,56247],[292,443,46,16,56513],[102,321,46,16,57355],[418,442,46,16,56537],16,[102,321,46,16,56221],[418,442,46,16,57671],[164,321,45,16,57363],[165,144,45,16,56985],[419,442,45,16,56539],[227,321,45,16,57379],[166,321,45,16,56231],[227,321,45,16,56245],[166,321,45,16,57365],[165,144,45,16,55851],[419,442,45,16,57673],[165,144,45,16,55855],16,[354,380,45,16,57533],[165,144,45,16,56989],[164,321,45,16,56229],[419,442,45,16,57677],[419,442,45,16,56543],[164,321,45,16,57367],[350,203,45,16,57155],[164,321,45,16,56233],[350,203,45,16,56021],[354,380,45,16,56399],[228,321,45,16,57377],[228,321,45,16,56243],16,[102,262,44,16,57225],[473,250,44,16,1615],[350,143,44,16,57029],[103,203,44,16,57097],[350,143,44,16,55895],[102,262,44,16,56091],[529,191,44,16,1503],[419,380,44,16,57551],[355,380,44,16,56403],[355,380,44,16,57537],[350,143,44,16,57027],[227,86,44,16,56873],16,[167,431,44,16,1923],[228,144,44,16,56999],[355,380,44,16,57531],[417,320,44,16,56285],[228,144,44,16,55865],[42,262,44,16,56081],[227,144,44,16,57001],[103,203,44,16,55963],[42,262,44,16,57215],[228,144,44,16,55871],[350,143,44,16,55893],[227,144,44,16,55867],16,[228,144,44,16,57005],[227,86,44,16,55739],[289,86,44,16,55753],[289,86,44,16,56887],[228,144,44,16,55869],[42,262,44,16,56079],[416,320,44,16,56291],[42,262,44,16,57213],[419,380,44,16,56417],[165,321,44,16,57369],[228,144,44,16,57003],[165,321,44,16,56235],16,[416,320,44,16,57425],[417,320,44,16,57419],[102,262,44,16,56093],[228,86,44,16,56877],[228,86,44,16,55743],[102,262,44,16,57227],[42,262,44,16,57211],[42,262,44,16,56077],[355,380,44,16,56397],[352,143,43,16,55897],[290,86,43,16,56891],[352,143,43,16,57031],16,[290,86,43,16,55757],[528,132,43,16,1377],[231,86,43,16,56879],[101,444,43,16,56473],[103,203,43,16,57103],[103,203,43,16,55969],[101,444,43,16,57607],[228,86,43,16,55741],[292,443,43,16,57649],[292,443,43,16,56515],[170,431,43,16,1929],[102,321,43,16,57349],16,[228,86,43,16,56875],[102,321,43,16,56215],[352,143,43,16,55899],[106,432,43,16,1913],[231,86,43,16,55745],[352,143,43,16,57033],[352,203,43,16,57159],[103,203,43,16,57101],[352,203,43,16,56025],[166,144,43,16,55857],[103,203,43,16,55967],[103,203,43,16,55965],16,[166,144,43,16,56991],[103,203,43,16,57099],[42,262,42,16,57209],[102,262,42,16,56095],[165,144,42,16,55853],[353,203,42,16,56019],[102,262,42,16,57229],[165,144,42,16,56987],[42,262,42,16,56075],[353,203,42,16,57153],[172,493,42,16,2049],[229,321,42,16,57383],[229,321,42,16,56249],16,[290,86,41,16,55759],[290,86,41,16,56893],[172,369,41,16,1797],[174,431,39,16,1925],[47,432,39,16,1899],[108,309,38,16,1659],[534,132,37,16,1379],[411,191,37,16,1481],[419,250,37,16,1603],[350,132,36,16,1335],[50,369,36,16,1769],[50,369,35,16,1773],[51,494,35,16,2027],[52,369,35,16,1775],16,[475,132,30,16,1367],[496,551,29,16,2251],[475,75,25,16,1241],[114,192,25,16,1407],[150,368,14,16,69821],[88,368,14,16,69807],[150,430,14,16,69947],[151,88,14,16,1149],[336,367,14,16,69863],[334,145,13,16,1317],[336,307,13,16,69737],[523,366,13,16,69905],[276,444,13,16,1933],[150,507,13,16,2031],[150,492,13,16,70073],[276,382,13,16,1807],[338,429,13,16,69989],[394,87,12,16,1205],[275,145,12,16,1303],[335,204,12,16,1443],[340,477,6,16,947],[279,537,6,16,1057],[278,537,6,16,1061],[518,175,5,16,361],[278,415,5,16,803],[462,351,5,16,719],[338,353,5,16,695],[338,353,5,16,691],[216,415,4,16,791],[458,116,4,16,221],[278,353,4,16,681],[396,58,2,16,81],[400,492,64,15,2109],[339,492,62,15,2093],16,[399,430,62,15,1979],[461,368,62,15,1871],[215,431,61,15,1937],[91,369,59,15,1785],[518,308,59,15,1757],[517,191,57,15,1509],[335,132,51,15,1341],[352,504,50,15,57785],[226,382,50,15,2927],15,[352,504,50,15,56651],[408,203,50,15,337],[474,381,50,15,729],[409,262,50,15,463],[407,144,49,15,211],[468,144,49,15,2479],[349,321,49,15,575],[289,382,49,15,687],[468,144,49,15,225],[471,262,49,15,477],[471,262,49,15,2731],15,[417,504,48,15,56667],[417,504,48,15,57801],[467,87,48,15,2353],[292,504,47,15,57771],[418,504,47,15,57799],[418,504,47,15,57797],[418,504,47,15,56663],[229,505,47,15,56623],[418,504,47,15,56665],[229,505,47,15,57757],[292,504,47,15,56637],15,[289,321,46,15,56261],[289,321,46,15,57395],[290,321,46,15,57393],[228,443,46,15,57631],[229,443,46,15,56499],[229,443,46,15,57633],[228,443,46,15,56497],[164,262,46,15,56103],[164,262,46,15,57237],[101,382,46,15,57479],[290,321,46,15,56259],[292,504,46,15,57773],15,[101,382,46,15,56345],[292,504,46,15,56639],[38,506,45,15,56585],[40,382,45,15,56329],[38,506,45,15,57719],[100,506,45,15,57727],[294,504,45,15,56635],[230,443,45,15,57629],[100,506,45,15,56599],[229,505,45,15,56621],[290,262,45,15,57269],[100,506,45,15,57733],15,[290,262,45,15,56135],[294,504,45,15,57769],[38,506,45,15,57715],[230,443,45,15,56495],[535,261,45,15,56187],[100,506,45,15,56593],[535,261,45,15,57321],[292,504,45,15,56641],[229,203,45,15,55995],[292,504,45,15,57775],[229,505,45,15,57755],[38,506,45,15,56581],15,[229,203,45,15,57129],[40,382,45,15,57463],[104,87,45,15,55711],[104,87,45,15,56845],[291,321,45,15,57391],[349,86,45,15,55769],[349,86,45,15,56903],[291,321,45,15,56257],[356,492,45,15,2091],[230,262,45,15,56119],[230,262,45,15,57253],[291,262,45,15,56133],15,[291,262,45,15,57267],[356,504,45,15,56649],[356,504,45,15,57783],[228,203,45,15,55993],[357,504,45,15,57787],[228,203,45,15,57127],[357,504,45,15,56653],[536,261,44,15,56189],[44,144,44,15,55827],[166,203,44,15,55979],[100,506,44,15,56597],[166,203,44,15,57113],15,[227,262,44,15,56117],[231,505,44,15,56627],[104,87,44,15,56849],[227,262,44,15,56121],[165,262,44,15,56105],[227,262,44,15,57251],[104,87,44,15,55713],[291,262,44,15,57265],[231,505,44,15,57761],[104,87,44,15,56847],[229,203,44,15,55991],[350,86,44,15,55767],15,[165,262,44,15,57239],[229,203,44,15,57125],[229,203,44,15,55997],[228,505,44,15,57759],[44,144,44,15,56959],[229,203,44,15,57131],[164,262,44,15,56107],[44,144,44,15,56961],[536,261,44,15,57323],[228,505,44,15,56625],[231,443,44,15,57635],[100,506,44,15,57731],15,[358,504,44,15,56655],[358,504,44,15,57789],[104,87,44,15,55715],[165,262,44,15,57243],[227,262,44,15,57255],[164,262,44,15,57241],[291,262,44,15,56131],[231,443,44,15,56501],[350,86,44,15,56901],[166,203,44,15,57111],[165,262,44,15,56109],[350,86,44,15,55771],15,[44,144,44,15,55825],[166,203,44,15,55977],[350,86,44,15,56905],[421,504,44,15,57803],[421,504,44,15,56669],[290,321,43,15,57397],[293,262,43,15,57271],[351,86,43,15,56907],[293,262,43,15,56137],[41,321,43,15,56203],[228,262,43,15,57257],[40,382,43,15,57467],15,[228,262,43,15,56123],[165,203,43,15,57115],[165,203,43,15,57117],[100,506,43,15,56595],[41,321,43,15,57341],[104,87,43,15,55717],[351,86,43,15,55773],[40,382,43,15,56333],[45,87,43,15,56837],[41,321,43,15,56207],[165,203,43,15,55983],[45,87,43,15,55703],15,[101,382,43,15,57481],[165,203,43,15,55981],[101,382,43,15,56347],[41,321,43,15,57337],[104,87,43,15,56851],[100,506,43,15,57729],[290,321,43,15,56263],[45,87,43,15,56831],[45,87,43,15,55697],[537,261,43,15,57327],[44,144,43,15,55823],[537,261,43,15,56193],15,[41,321,43,15,56201],[101,382,43,15,56341],[104,144,43,15,55837],[44,144,43,15,56957],[101,382,43,15,57475],[104,144,43,15,56971],[40,382,43,15,56327],[41,321,43,15,57335],[40,382,43,15,57461],[44,144,42,15,56963],[45,87,42,15,56835],[44,144,42,15,55829],15,[101,382,42,15,56343],[45,87,42,15,55701],[43,203,42,15,55955],[43,203,42,15,57089],[101,382,42,15,57477],[41,321,42,15,57339],[104,144,42,15,55841],[38,506,42,15,56583],[45,87,42,15,56833],[38,506,42,15,57713],[38,506,42,15,57717],[41,321,42,15,56205],[45,87,42,15,55699],15,[38,506,42,15,56579],[104,144,42,15,56975],[43,203,42,15,55953],[43,203,42,15,57087],[43,203,41,15,57083],[43,203,41,15,55949],[104,144,41,15,56977],[539,261,41,15,56191],[43,203,41,15,57085],[43,203,41,15,55951],[104,144,41,15,55843],[539,261,41,15,57325],[40,382,40,15,56331],15,[104,144,40,15,56973],[104,144,40,15,55839],[40,382,40,15,57465],[356,308,39,15,1719],[112,309,34,15,1657],[238,132,32,15,1313],[474,191,32,15,1489],[51,494,31,15,2025],[235,132,31,15,1309],[357,132,29,15,1339],[16,584,24,15,21559],[61,192,20,15,1397],[459,307,14,15,69765],[87,493,14,15,70059],[398,367,14,15,69877],[338,491,14,15,70115],[399,429,14,15,70003],[151,131,14,15,69317],[397,307,14,15,69751],[520,307,14,15,69779],[276,492,14,15,70101],[333,131,14,15,69359],[274,131,13,15,69345],15,[333,87,13,15,1191],[524,429,13,15,70031],[464,491,13,15,70143],[89,308,13,15,69681],[526,490,13,15,70157],[277,506,13,15,2059],[463,429,13,15,70017],[275,308,13,15,69723],[461,367,13,15,69891],[276,368,13,15,69849],[276,430,13,15,69975],[88,431,13,15,69933],[334,190,13,15,69485],[151,308,13,15,69695],[401,491,13,15,70129],[395,190,13,15,69499],[214,131,12,15,69331],[214,430,12,15,69961],[214,308,12,15,69709],[214,492,12,15,70087],[215,368,11,15,69835],[463,381,11,15,1849],[402,537,9,15,1087],[402,537,8,15,1089],[466,537,8,15,1099],[217,478,5,15,917],[279,478,5,15,935],[398,176,3,15,327],[398,116,3,15,205],[278,416,2,15,807],[102,369,113,14,7449],[41,369,109,14,7435],15,[461,430,63,14,1995],[337,430,62,14,1965],[212,369,61,14,1813],[521,430,61,14,2013],[519,250,57,14,1631],[528,491,56,14,2139],[164,322,51,14,533],[413,443,51,14,841],[335,132,51,14,1337],14,[412,381,51,14,2969],[408,204,50,14,2591],[411,321,50,14,589],[226,322,50,14,547],[411,321,50,14,2843],[165,145,50,14,155],[515,132,50,14,1383],[164,444,50,14,785],[102,263,49,14,2647],[289,444,49,14,813],[226,145,49,14,2423],14,[102,322,49,14,2773],[226,87,48,14,43],[347,144,48,14,197],[347,204,48,14,323],[103,204,48,14,2521],[102,445,48,14,771],[286,87,47,14,2311],[43,263,47,14,379],[105,204,46,14,267],[290,203,45,14,57141],[290,203,45,14,56007],14,[355,492,45,14,2097],[291,203,44,14,56005],[39,444,44,14,56453],[165,86,44,14,56859],[291,203,44,14,57143],[165,86,44,14,56863],[291,203,44,14,56009],[165,86,44,14,55729],[291,203,44,14,57139],[39,444,44,14,57587],[165,86,44,14,55725],[534,202,43,14,56063],14,[166,86,43,14,55731],[39,444,43,14,57593],[39,444,43,14,56459],[168,86,43,14,55727],[418,430,43,14,1985],[166,86,43,14,56865],[534,202,43,14,57197],[168,86,43,14,56861],[534,202,43,14,56065],[534,202,43,14,57199],[292,203,42,14,56011],[292,203,42,14,57145],14,[39,444,41,14,56457],[39,444,41,14,57589],[39,444,41,14,57591],[39,444,41,14,56455],[537,202,40,14,57195],[537,202,40,14,56067],[537,202,40,14,56061],[537,202,40,14,57201],[177,493,36,14,2053],[110,192,36,14,1411],[240,431,35,14,1943],[177,493,35,14,2055],[419,250,34,14,1607],[356,191,34,14,1467],14,[424,250,32,14,1601],[307,431,31,14,1955],[127,369,22,14,647],[177,192,22,14,1421],[70,369,17,14,633],[104,369,17,14,1767],[121,133,17,14,1283],[151,75,14,14,69191],[392,74,14,14,69247],[395,249,14,14,69625],[151,250,14,14,69569],[456,190,14,14,69513],[90,191,14,14,69429],[151,191,14,14,69443],[335,250,13,14,69611],[519,249,13,14,69653],[455,131,13,14,69387],[336,322,13,14,1695],[515,131,13,14,69401],[394,131,13,14,69373],[90,250,13,14,69555],[454,74,13,14,69261],[513,74,13,14,69275],[91,132,13,14,69303],[458,249,13,14,69639],[517,190,13,14,69527],[333,74,13,14,69233],[275,250,13,14,69597],[92,75,13,14,69177],[275,191,12,14,69471],[274,74,12,14,69219],[214,74,12,14,69205],[214,250,12,14,69583],[515,87,11,14,1233],[215,191,11,14,69457],[461,294,6,14,599],[581,293,6,14,627],[279,539,5,14,1055],[216,479,4,14,915],[278,539,3,14,1059],[279,354,2,14,679],14,[163,493,113,13,7715],[101,432,113,13,7575],[101,494,113,13,7701],[102,309,112,13,7323],13,[226,431,112,13,7603],[352,492,112,13,7757],[226,493,112,13,7729],[414,492,112,13,7771],13,[351,430,112,13,7631],[164,369,112,13,7463],[164,431,112,13,7589],[413,430,111,13,7645],13,[39,494,111,13,7687],[412,368,111,13,7519],[350,368,111,13,7505],[164,309,111,13,7337],13,[289,431,110,13,7617],[226,369,110,13,7477],[226,309,110,13,7351],[349,308,110,13,7379],[40,432,110,13,7561],13,[288,309,109,13,7365],[42,309,109,13,7309],[289,369,109,13,7491],[347,191,109,13,7127],[411,308,109,13,7393],13,[165,132,109,13,6959],[476,430,108,13,7659],[474,368,108,13,7533],[473,308,107,13,7407],[226,132,107,13,6973],13,[287,132,107,13,6987],[459,368,64,13,1867],[462,430,62,13,1997],[274,198,59,13,1449],[523,430,58,13,2011],[523,430,58,13,2009],[155,84,54,13,1171],[412,381,51,13,715],13,[414,505,51,13,967],[165,204,50,13,2535],[164,383,50,13,2913],[409,262,50,13,2717],[226,506,50,13,3179],[352,505,50,13,953],[226,322,49,13,2801],[350,382,49,13,2955],[226,263,49,13,421],[226,204,49,13,295],[289,382,49,13,2941],13,[226,444,49,13,3053],[290,505,49,13,939],[350,381,49,13,701],[470,203,49,13,2605],[100,507,49,13,3151],[101,383,49,13,2899],[164,263,49,13,2661],[536,380,48,13,56443],[536,380,48,13,56445],[536,380,48,13,57577],[104,145,48,13,2395],13,[39,507,48,13,883],[532,262,48,13,2745],[536,380,48,13,57579],[288,322,48,13,2815],[288,263,48,13,435],[346,87,48,13,71],[104,88,47,13,2269],[103,383,47,13,645],[104,322,47,13,519],[43,322,46,13,505],[42,383,46,13,631],13,[105,263,46,13,393],[44,204,46,13,253],[46,88,46,13,1],[45,145,46,13,127],[543,503,45,13,56693],[543,503,45,13,57827],[357,559,45,13,2223],[290,144,44,13,55881],[290,144,44,13,57015],[356,430,43,13,1967],[290,144,43,13,55879],[545,503,43,13,57829],13,[545,503,43,13,56695],[290,144,43,13,57013],[288,144,43,13,57017],[288,144,43,13,55883],[291,144,42,13,55885],[539,430,42,13,2007],[540,320,42,13,57449],[540,320,42,13,56317],[540,320,42,13,56315],[291,144,42,13,57019],[540,320,42,13,57451],[543,380,41,13,57573],[543,380,41,13,57575],13,[543,380,41,13,56439],[543,380,41,13,56441],[542,320,40,13,56319],[542,320,40,13,57453],[548,503,40,13,57831],[548,503,40,13,56697],[548,503,40,13,57825],[548,503,40,13,56691],[543,320,39,13,56313],[543,320,39,13,57447],[174,369,35,13,1801],[552,491,32,13,2133],[490,368,31,13,1869],[304,369,30,13,1825],13,[369,430,30,13,1971],[428,368,29,13,1853],[186,493,26,13,2051],[187,431,25,13,787],[498,430,25,13,857],[433,308,24,13,1733],[374,430,22,13,829],[372,191,22,13,325],[189,369,22,13,661],[183,309,21,13,1673],[377,368,20,13,703],[253,132,20,13,171],[131,309,19,13,521],[318,431,18,13,815],[69,309,18,13,507],[443,430,18,13,843],[195,132,17,13,157],[442,368,16,13,717],[350,191,14,13,1445],[168,132,13,13,1277],[387,492,12,13,955],[103,309,12,13,1641],[385,308,11,13,577],[452,492,11,13,969],[449,308,10,13,591],[510,308,9,13,605],[325,132,8,13,185],[328,309,7,13,563],[402,539,6,13,1083],[276,117,5,13,177],[290,132,4,13,1305],[219,115,1,13,161],13,[103,251,111,12,7197],[104,192,111,12,7071],[290,493,111,12,7743],[104,133,110,12,6945],12,[165,192,110,12,7085],[409,250,110,12,7267],[165,251,110,12,7211],[226,251,109,12,7225],[477,492,109,12,7785],12,[105,76,109,12,6819],[408,191,109,12,7141],[43,251,108,12,7183],[287,192,108,12,7113],[346,75,108,12,6875],12,[407,132,108,12,7015],[226,192,108,12,7099],[347,132,108,12,7001],[288,251,107,12,7239],[406,75,107,12,6889],12,[44,192,107,12,7057],[226,75,107,12,6847],[471,250,106,12,7281],[45,133,106,12,6931],[286,75,106,12,6861],12,[46,76,105,12,6805],[468,132,105,12,7029],[470,191,105,12,7155],[467,75,104,12,6903],[461,368,62,12,1873],[275,257,59,12,1575],12,[515,82,52,12,1257],[165,145,50,12,2409],[473,321,50,12,2857],[226,444,50,12,799],[164,322,49,12,2787],[407,144,49,12,2465],[165,87,49,12,29],[226,204,49,12,2549],[101,445,49,12,3025],[166,204,49,12,281],[165,263,49,12,407],12,[226,145,49,12,169],[226,87,48,12,2297],[287,204,48,12,2563],[347,145,48,12,2451],[41,445,47,12,757],[105,145,47,12,141],[418,558,47,12,2231],[530,203,47,12,2619],[291,315,45,12,1701],[231,199,42,12,1435],[546,442,40,12,56571],[546,442,40,12,57703],12,[535,143,40,12,57069],[546,442,40,12,56569],[546,442,40,12,57705],[535,143,40,12,55935],[546,442,40,12,57701],[535,143,40,12,57073],[546,442,40,12,56567],[535,143,40,12,55939],[536,143,39,12,55941],[547,442,39,12,56565],[536,143,39,12,57075],[547,442,39,12,57699],[537,143,38,12,55937],[537,143,38,12,57071],12,[54,84,37,12,1141],[173,369,37,12,1803],[55,257,31,12,1517],[57,432,21,12,1901],[131,251,20,12,395],[371,75,19,12,73],[72,192,17,12,255],[256,75,17,12,45],[436,191,17,12,339],[496,191,17,12,353],[498,75,15,12,101],[77,76,14,12,3],[319,75,13,12,59],[326,493,11,12,941],[515,492,10,12,983],[383,132,10,12,199],[444,132,10,12,213],[507,132,8,12,227],[152,542,3,12,1033],[277,174,3,12,301],[348,251,110,11,7253],[165,76,109,11,6833],12,[462,497,64,11,2119],[335,257,60,11,1587],[93,85,54,11,1155],[414,505,51,11,3221],[477,505,51,11,3235],[413,443,51,11,3095],[226,382,50,11,673],[351,444,50,11,3081],[352,505,50,11,3207],[348,263,49,11,2703],11,[406,87,49,11,2339],[539,504,49,11,3249],[165,88,48,11,2283],[288,263,48,11,2689],[287,204,48,11,309],[536,381,48,11,2997],[467,87,48,11,99],[534,321,48,11,2871],[287,145,47,11,2437],[106,88,45,11,15],[532,86,41,11,55813],11,[532,86,41,11,56947],[51,141,41,11,1267],[535,86,38,11,56949],[535,86,38,11,55811],[535,86,38,11,55815],[535,86,38,11,56945],[536,86,37,11,56943],[536,86,37,11,55809],[238,199,32,11,1433],[122,434,27,11,773],[121,496,26,11,899],[184,495,25,11,913],[226,495,24,11,2047],[252,495,23,11,927],[103,496,19,11,2019],[578,231,5,11,499],[588,480,4,11,999],[277,176,3,11,299],[276,117,3,11,173],[398,121,2,11,201],[101,65,1,11,7],11,[212,499,64,10,2067],[465,497,61,10,2123],[213,257,58,10,1565],[213,257,58,10,1563],[93,85,55,10,1157],[226,506,51,10,925],[476,443,50,10,3109],[163,507,50,10,3165],[537,443,49,10,3123],[101,507,49,10,897],10,[289,444,49,10,3067],[226,263,49,10,2675],[528,144,47,10,2493],[287,145,47,10,183],[347,204,46,10,2577],[177,258,36,10,1547],[174,258,32,10,1551],[246,312,26,10,549],[228,312,23,10,1669],[165,496,22,10,2033],[253,372,21,10,675],[102,435,21,10,1893],[192,312,20,10,535],[255,434,20,10,801],[167,434,20,10,1907],[500,371,19,10,731],[187,258,17,10,1549],[68,435,17,10,759],[68,497,17,10,885],10,[318,372,17,10,689],[321,253,13,10,437],[228,434,12,10,1921],[588,585,3,10,47641],[92,421,2,10,763],[159,359,2,10,649],[474,381,50,9,2983],[349,322,49,9,2829],[290,506,49,9,3193],[286,87,47,9,57],[526,87,47,9,2367],[289,322,47,9,561],[293,499,45,9,2079],[232,499,44,9,2069],[49,438,39,9,1897],[305,498,33,9,2081],[57,84,32,9,1143],10,[56,260,26,9,1519],[187,195,24,9,283],[371,253,23,9,451],[166,373,21,9,1781],[253,254,18,9,423],[253,195,18,9,297],[194,254,18,9,409],[315,195,18,9,311],[501,253,16,9,479],[440,253,14,9,465],[228,254,13,9,1543],[77,254,13,9,381],[355,434,12,9,1949],[108,254,12,9,1515],[479,372,11,9,1851],[166,313,11,9,1655],[227,373,11,9,1795],[417,372,7,9,1837],[155,300,6,9,527],[354,372,6,9,1823],[417,434,5,9,1963],[294,435,2,9,1935],[152,545,2,9,1027],[278,239,2,9,425],[470,498,56,8,2121],[337,257,53,8,1591],[96,500,53,8,2037],[346,87,48,8,2325],9,[100,142,47,8,1285],[105,500,44,8,2039],[293,437,44,8,1951],[535,256,41,8,1629],[536,256,40,8,1635],[237,499,39,8,2065],[425,498,39,8,2107],[109,500,39,8,2035],[301,436,37,8,1957],[369,498,32,8,2095],[299,257,32,8,1573],[55,501,31,8,2021],[363,257,24,8,1593],[168,196,20,8,1403],[105,196,19,8,1389],[134,137,17,8,143],8,[134,196,17,8,269],[435,79,16,8,87],[73,137,15,8,129],[245,257,15,8,1559],[167,255,13,8,1529],[354,254,13,8,1571],[140,80,11,8,17],[106,80,10,8,1137],[230,137,9,8,1291],[227,196,8,8,1417],[105,137,7,8,1263],[481,435,6,8,1977],[413,254,6,8,1585],[352,313,4,8,1697],[414,313,3,8,1711],[354,497,3,8,2075],[416,497,3,8,2089],[293,497,3,8,2061],[292,374,2,8,1809],[289,255,2,8,1557],[290,314,2,8,1683],[541,373,2,8,1865],[588,419,1,8,873],[487,436,37,7,1993],[236,437,37,7,1941],[110,259,35,7,1533],[174,202,35,7,1419],[111,438,34,7,1911],[472,84,33,7,1243],[303,315,33,7,1705],[52,502,31,7,2023],[309,499,29,7,2083],[180,86,29,7,1173],[55,201,28,7,1391],8,[304,258,28,7,1579],[436,498,27,7,2105],[437,498,27,7,2111],[313,499,25,7,2077],[472,196,25,7,1473],[197,80,15,7,31],[412,196,12,7,1459],[130,258,11,7,1537],[347,80,10,7,1193],[168,80,9,7,1151],[230,80,9,7,1165],[473,255,4,7,1599],[544,435,3,7,1991],[471,80,3,7,1221],[481,497,3,7,2103],[538,255,2,7,1613],[475,313,2,7,1725],[534,196,2,7,1487],[289,197,2,7,1431],[102,143,43,6,1281],[483,498,42,6,2125],[247,500,29,6,2063],[181,88,21,6,1167],[566,498,18,6,2137],[291,81,4,6,1179],[408,81,4,6,1207],[348,138,3,6,1319],[215,547,3,6,1041],[409,138,2,6,1333],[533,81,2,6,1235],[470,138,1,6,1347],[546,498,1,6,2117],[276,260,52,5,1577],[541,315,39,5,1755],[55,87,31,5,1139],[563,314,14,5,1761],[578,112,2,5,245],[538,315,1,5,1739],7,[109,202,39,4,1405],[118,502,27,4,2041],[63,145,20,3,1271],[314,317,17,3,1703],[216,425,1,3,795],[91,489,1,3,893],[51,369,34,2,1771],[65,145,18,2,1265],[71,88,11,2,1145],[315,378,9,2,1831],[255,257,8,2,1561],[213,309,62,1,1685],[397,308,60,1,1729],[457,191,54,1,1491],[520,308,50,1,1759],[103,309,48,1,1663],[55,192,32,1,1395],[482,250,25,1,1619],[181,192,24,1,1425],[0,483,2,101,18156],[1,382,2,101,15888],[4,204,3,91,11352],[2,295,3,87,13620],[6,119,3,85,9084],[8,45,3,74,6816],[610,107,3,67,28362],[625,478,3,67,41970],[618,294,3,67,35166],[622,412,4,66,39702],[101,369,3,63,11972],[87,369,1,63,9704],[163,431,4,62,12112],[211,369,4,62,9732],[350,368,4,62,12028],[164,369,2,62,11986],[149,369,1,62,9718],[226,369,1,62,12000],[289,431,5,61,12140],[351,430,4,61,12154],[335,369,3,61,9760],[85,432,3,61,9830],[212,431,2,61,9858],[274,369,2,61,9746],[275,431,1,61,9872],[149,432,1,61,9844],[209,493,6,60,9984],[458,368,5,60,9788],[412,368,5,60,12042],[474,368,5,60,12056],[613,174,4,60,30630],[615,234,4,60,32898],[411,308,3,60,11916],[165,132,3,60,11482],[399,492,3,60,10026],[100,494,3,60,12224],[212,309,3,60,9606],[349,308,3,60,11902],[164,309,2,60,11860],[473,308,2,60,11930],[85,494,2,60,9956],[87,309,2,60,9578],[397,368,2,60,9774],[396,308,2,60,9648],[459,308,2,60,9662],[336,431,2,60,9886],[102,309,1,60,11846],[150,309,1,60,9592],[333,132,1,60,9256],[476,430,5,59,12182],[272,309,4,59,9620],[477,492,4,59,12308],[226,132,4,59,11496],[461,430,3,59,9914],[212,132,3,59,9228],[287,132,3,59,11510],[337,493,2,59,10012],[273,132,2,59,9242],[275,493,2,59,9998],[103,192,2,59,11594],[407,132,2,59,11538],[393,132,2,59,9270],[463,492,2,59,10040],[468,132,2,59,11552],[454,132,2,59,9284],[89,192,1,59,9326],[335,309,1,59,9634],[102,251,6,58,11720],[396,430,5,58,9900],[409,250,4,58,11790],[413,430,4,58,12168],[211,192,4,58,9354],[347,191,3,58,11650],[212,251,2,58,9480],[226,434,2,58,12126],[414,492,2,58,12294],[101,435,1,58,12098],[537,430,7,57,12196],[539,491,7,57,12322],[348,251,6,57,11776],[532,250,6,57,11818],[454,250,5,57,9536],[286,75,5,57,11384],[271,251,4,57,9494],[390,75,4,57,9144],[519,308,4,57,9676],[271,192,4,57,9368],[226,75,4,57,11370],[408,191,4,57,11664],[534,308,4,57,11944],[88,133,3,57,9200],[394,251,3,57,9522],[523,430,3,57,9928],[517,250,3,57,9550],[471,250,2,57,11804],[333,192,2,57,9382],[406,75,2,57,11412],[334,251,2,57,9508],[104,76,2,57,11342],[346,75,1,57,11398],[394,191,1,57,9396],[91,76,1,57,9074],[347,132,1,57,11524],[332,75,1,57,9130],[273,75,1,57,9116],[536,367,5,56,12070],[289,374,3,56,12014],[525,492,3,56,10054],[212,76,2,56,9102],[226,313,2,56,11874],[104,134,1,56,11468],[528,132,7,55,11566],[513,191,6,55,9424],[519,368,5,55,9802],[530,191,4,55,11692],[290,497,3,55,12266],[147,494,3,55,9970],[165,196,3,55,11608],[164,254,3,55,11734],[352,497,2,55,12280],[226,254,2,55,11748],[515,132,2,55,9298],[288,313,2,55,11888],[151,137,1,55,9214],[451,75,4,54,9158],[467,75,4,54,11426],[163,495,2,54,12238],[226,196,1,54,11622],[453,191,5,53,9410],[470,191,2,53,11678],[288,255,1,53,11762],[165,80,3,52,11356],[287,197,2,52,11636],[526,75,7,51,11440],[620,361,4,51,37434],[608,56,4,51,26094],[513,75,2,51,9172],[200,444,14,49,8850],[202,382,13,49,8724],[138,445,12,49,8836],[451,381,12,49,8780],[266,444,10,49,8864],[140,383,10,49,8710],[329,382,9,49,8752],[515,381,9,49,8794],[268,382,8,49,8738],[536,381,8,49,11062],[393,443,8,49,8892],[80,445,8,49,8822],[80,383,8,49,8696],[537,442,8,49,11188],[474,381,7,49,11048],[412,381,6,49,11034],[458,443,6,49,8906],[350,381,5,49,11020],[521,443,5,49,8920],[476,443,5,49,11174],[289,382,5,49,11006],[413,443,4,49,11160],[334,444,4,49,8878],[389,382,10,48,8766],[163,445,6,48,11104],[226,445,3,48,11118],[199,322,16,47,8598],[510,321,13,47,8668],[449,321,12,47,8654],[506,144,11,47,8290],101,[448,203,10,47,8402],[265,145,10,47,8234],[141,322,10,47,8584],[266,322,10,47,8612],[206,145,9,47,8220],[206,204,9,47,8346],[266,204,9,47,8360],[510,203,9,47,8416],[142,204,9,47,8332],[388,204,7,47,8388],[530,203,7,47,10684],[82,322,7,47,8570],[347,204,7,47,10642],[473,321,6,47,10922],[407,144,6,47,10530],[528,144,6,47,10558],[534,320,6,47,10936],[408,203,6,47,10656],[411,321,5,47,10908],[347,144,5,47,10516],[468,144,5,47,10544],[349,321,5,47,10894],[148,145,4,47,8206],[289,446,4,47,11132],[288,322,4,47,10880],[470,203,4,47,10670],[88,145,3,47,8192],[325,205,10,46,8374],[265,263,10,46,8486],[205,263,9,46,8472],[101,447,7,46,11090],[449,145,7,46,8276],[391,322,7,46,8640],[83,263,7,46,8444],[328,146,6,46,8248],[145,263,6,46,8458],[514,262,6,46,8542],[409,262,6,46,10782],[453,262,6,46,8528],[348,262,6,46,10768],[331,323,5,46,8626],[532,262,5,46,10810],[471,262,3,46,10796],[333,263,3,46,8500],[394,262,3,46,8514],[526,87,8,45,10432],[388,146,7,45,8262],[101,387,7,45,10964],[164,386,7,45,10978],[103,206,7,45,10586],[286,87,6,45,10376],[268,87,6,45,8108],[449,87,6,45,8150],[390,87,4,45,8136],[88,88,4,45,8066],[512,87,3,45,8164],[226,206,3,45,10614],[467,87,3,45,10418],[406,87,2,45,10404],[346,87,2,45,10390],[351,448,4,44,11146],[102,265,4,44,10712],[210,88,4,44,8094],[226,387,3,44,10992],[331,88,2,44,8122],[524,32,9,43,10306],[102,326,8,43,10838],[446,32,8,43,8024],[385,32,7,43,8010],[506,32,7,43,8038],[327,32,6,43,7996],[165,149,6,43,10474],[465,32,6,43,10292],[286,32,6,43,10250],[164,266,5,43,10726],[226,32,5,43,10236],[345,32,4,43,10264],[226,89,4,43,10362],[226,266,3,43,10740],[405,32,3,43,10278],[89,33,3,43,7940],[104,90,3,43,10334],[165,208,3,43,10600],[211,33,3,43,7968],[287,149,2,43,10502],[226,149,2,43,10488],[89,208,1,43,8318],[164,327,6,42,10852],[604,14,5,42,23826],[226,327,4,42,10866],[105,34,3,42,10208],[287,208,2,42,10628],[288,267,2,42,10754],[104,151,6,41,10460],[165,91,5,41,10348],[622,545,6,40,44238],[148,36,4,40,7954],[271,35,3,40,7982],[165,37,5,39,10222],[577,189,9,36,8434],[577,190,8,35,8432],[580,251,8,35,8560],[573,71,8,35,8180],[10,10,6,35,4548],[148,98,3,35,8080],[582,311,10,34,8686],[573,72,9,34,8182],[586,438,9,33,8940],[515,73,5,33,8170],[586,439,9,32,8938],[571,18,8,32,8056],[584,375,8,32,8816],[584,375,8,32,8812],[588,501,8,32,9064],[526,439,7,32,8924],47,[586,439,7,32,8936],[515,74,6,32,8168],[577,192,8,31,8438],[586,439,8,31,8942],[575,135,8,31,8308],[582,314,8,31,8690],[571,17,7,31,8058],[584,375,6,31,8810],[517,135,4,31,8296],[573,73,8,30,8186],[582,315,7,30,8684],[575,134,7,30,8306],[580,252,7,30,8564],[575,134,7,30,8310],[575,134,7,30,8312],[588,503,7,30,9066],[455,76,4,30,8154],[588,504,8,29,9062],[580,257,8,29,8562],[588,504,7,29,9068],[573,75,6,29,8184],[577,193,6,29,8436],[523,316,4,29,8670],[520,258,8,28,8548],[582,317,6,28,8688],[524,379,4,28,8802],[526,443,3,28,8928],[454,24,9,27,8028],[571,18,6,27,8054],[571,18,6,27,8060],[519,196,5,27,8420],[526,444,5,27,8922],[523,315,5,27,8672],[465,506,4,27,9040],[526,444,4,27,8926],[519,196,5,26,8418],[100,145,4,26,9344],[215,553,3,26,3308],[162,145,3,26,9358],[461,319,3,26,8658],[459,260,2,26,8532],[103,145,1,26,9346],[164,204,1,26,9488],[288,7,45,25,6866],[40,8,44,25,6808],[44,8,41,25,6814],[584,379,4,25,8814],[513,17,4,25,8044],[36,383,4,25,9836],[519,194,4,25,8424],[98,383,3,25,9848],[524,382,2,25,8798],[528,508,2,25,9052],[104,33,1,25,9092],[103,88,1,25,9222],[348,8,44,24,6880],[103,9,43,24,6822],[165,9,42,24,6836],[168,9,42,24,6842],[351,8,40,24,6884],[478,120,39,24,7158],[36,322,5,24,9706],[98,322,4,24,9720],[524,380,3,24,8796],32,[164,10,45,23,6838],[42,10,45,23,6810],[102,65,45,23,6950],[350,64,44,23,7006],[227,9,44,23,6852],[42,10,44,23,6812],[289,9,43,23,6864],[41,65,43,23,6934],[104,10,43,23,6824],[102,10,43,23,6826],[106,10,42,23,6828],[412,9,42,23,6892],[226,9,42,23,6854],[353,64,41,23,7010],[351,9,41,23,6882],23,[475,9,38,23,6910],[520,308,12,23,2878],[454,75,11,23,2358],[36,263,6,23,9580],[33,445,6,23,9960],[397,263,6,23,8518],[33,445,6,23,9962],[35,383,5,23,9832],[520,259,4,23,8550],[97,445,4,23,9974],[528,506,4,23,9054],[515,77,4,23,8166],[458,197,4,23,8406],[520,258,4,23,8546],[97,383,4,23,9846],[517,136,3,23,8292],[98,445,3,23,9976],[465,510,2,23,9038],[102,66,44,22,6952],[289,65,44,22,6992],[166,11,44,22,6840],[411,10,43,22,6896],[414,65,41,22,7020],[474,10,39,22,6912],[214,309,10,22,2804],[515,77,4,22,8172],[37,322,4,22,9710],[163,263,1,22,9612],[395,203,1,22,8396],[162,124,45,21,7090],[103,67,44,21,6948],[228,66,44,21,6980],[40,67,44,21,6936],[165,124,44,21,7088],[102,67,43,21,6954],23,[228,66,43,21,6978],[168,66,43,21,6964],[471,11,42,21,6906],[348,11,42,21,6878],[352,66,42,21,7004],[413,66,42,21,7022],[41,67,42,21,6938],[287,11,42,21,6868],[288,11,41,21,6870],[415,66,40,21,7018],[476,66,39,21,7032],[415,11,39,21,6898],[476,66,39,21,7034],[478,66,37,21,7036],[478,66,37,21,7038],[534,11,37,21,6920],21,[535,11,36,21,6924],[535,11,36,21,6926],[538,66,35,21,7046],[41,33,5,21,9076],[33,507,5,21,10088],[36,447,3,21,9958],[395,199,3,21,8390],[580,258,3,21,8558],[411,383,1,21,9920],[165,67,44,20,6962],[351,67,43,20,7008],[102,125,43,20,7074],[289,67,43,20,6990],[167,184,43,20,7216],[43,68,42,20,6940],[102,125,42,20,7078],[228,67,42,20,6976],[472,12,41,20,6908],[413,12,41,20,6894],[232,67,41,20,6982],[539,67,34,20,7052],[274,75,11,20,2314],[397,308,10,20,2848],[463,430,10,20,3116],[91,309,10,20,2782],21,[526,492,8,20,5502],[524,430,8,20,5376],[459,308,7,20,5110],[398,369,7,20,5222],[339,552,6,20,3340],[336,369,6,20,5208],[582,368,6,20,5264],[336,309,6,20,5082],[276,493,6,20,5446],[456,191,6,20,4858],[463,430,6,20,5362],[461,368,6,20,5236],[399,431,6,20,5348],[520,308,6,20,5124],[523,368,5,20,5250],[338,493,5,20,5460],[464,492,5,20,5488],[580,308,5,20,5138],[215,553,5,20,3310],[33,508,5,20,10084],[36,322,5,20,9708],[519,197,3,20,8422],[520,260,3,20,8544],[458,199,3,20,8404],[455,77,3,20,8152],[36,447,3,20,9964],[333,85,1,20,8126],[228,185,44,19,7230],[351,185,44,19,7258],[291,185,44,19,7246],[100,126,43,19,7076],[228,126,43,19,7104],[290,68,43,19,6994],[229,13,43,19,6850],[229,185,43,19,7228],[292,185,43,19,7242],[413,125,43,19,7146],[167,68,42,19,6968],[41,126,42,19,7066],20,[355,125,40,19,7136],[104,126,40,19,7080],[291,68,40,19,6996],[536,68,37,19,7050],[535,13,36,19,6922],[538,68,35,19,7048],[153,76,11,19,2292],[276,431,11,19,3072],[397,309,7,19,5096],[333,132,7,19,4704],[96,76,6,19,2274],[584,430,5,19,5390],[150,370,5,19,5166],[39,204,4,19,9454],[35,509,3,19,10086],[39,263,3,19,9584],[464,448,3,19,8910],[97,509,3,19,10100],[463,382,3,19,8788],[215,553,2,19,3312],[36,508,2,19,10090],[38,384,2,19,9834],[43,127,44,18,7062],[100,186,44,18,7202],[351,186,44,18,7260],[40,127,44,18,7060],[165,245,44,18,7342],[350,126,44,18,7132],[228,127,44,18,7102],[166,69,43,18,6966],19,[40,245,42,18,7318],[476,126,41,18,7160],[354,186,41,18,7262],[41,186,40,18,7192],[416,69,39,18,7024],[416,126,39,18,7150],[482,185,37,18,7290],[541,185,36,18,7300],[542,185,35,18,7298],[152,369,10,18,2920],[338,431,10,18,3086],[518,191,9,18,2626],[461,368,9,18,2988],[513,75,8,18,4620],[151,251,8,18,4914],[395,251,7,18,4970],[151,76,7,18,4536],[151,133,7,18,4662],[519,250,7,18,4998],[334,192,7,18,4830],[517,191,6,18,4872],[335,251,6,18,4956],[586,492,6,18,5516],[515,132,6,18,4746],[333,75,6,18,4578],[394,132,6,18,4718],[455,132,6,18,4732],[401,493,6,18,5474],[38,204,5,18,9456],[573,132,5,18,4760],[454,75,4,18,4606],[523,323,3,18,8674],[38,322,3,18,9712],[99,447,2,18,9978],[99,446,2,18,9972],[456,75,2,18,2360],[290,187,44,17,7244],[41,128,44,17,7064],[164,187,44,17,7218],18,[291,128,43,17,7118],[38,187,43,17,7188],[230,187,43,17,7232],[291,246,43,17,7372],[102,246,43,17,7326],[291,128,42,17,7116],[102,187,42,17,7204],[37,246,42,17,7312],[229,128,42,17,7106],[229,246,41,17,7354],[40,187,41,17,7186],[231,15,41,17,6856],[415,127,41,17,7144],[41,187,41,17,7190],[357,245,40,17,7388],17,[417,186,40,17,7276],[479,186,40,17,7288],[356,187,39,17,7256],[478,127,39,17,7162],[481,186,38,17,7284],[538,127,37,17,7172],[540,186,37,17,7302],[539,127,36,17,7176],[542,186,35,17,7304],[463,388,8,17,8786],[399,430,7,17,3102],[276,434,6,17,5320],[577,250,6,17,5012],[151,193,6,17,4788],[150,432,6,17,5292],[458,251,6,17,4984],[395,192,5,17,4844],[515,75,5,17,2372],[40,145,4,17,9328],[39,263,3,17,9582],[513,25,2,17,8042],[524,383,2,17,8800],[99,383,2,17,9852],[459,260,2,17,8530],[162,385,2,17,9860],[285,59,110,16,5726],[351,246,46,16,7384],[166,188,43,16,7214],[166,129,43,16,7092],17,[228,306,43,16,7482],[102,188,43,16,7200],[101,247,43,16,7328],[289,129,42,16,7120],[353,128,42,16,7134],[102,306,42,16,7454],[414,128,42,16,7148],[103,188,41,16,7206],[40,247,41,16,7316],[294,247,41,16,7374],[418,246,41,16,7398],[416,187,41,16,7274],[167,129,41,16,7094],[418,246,41,16,7396],[231,188,41,16,7234],[230,306,41,16,7480],16,[230,129,41,16,7108],[292,129,40,16,7122],[293,188,40,16,7248],[477,128,39,16,7164],[480,187,39,16,7286],[419,187,39,16,7272],[541,246,39,16,7424],[482,246,38,16,7414],[544,246,36,16,7430],[544,246,36,16,7426],[540,128,35,16,7178],[277,552,19,16,3194],[93,193,12,16,2526],[528,551,9,16,3382],[339,552,9,16,3336],[465,552,8,16,3366],[276,493,8,16,3200],[338,391,8,16,8756],[336,369,7,16,2960],[154,310,7,16,2794],[150,496,6,16,5418],[151,311,6,16,5040],[276,369,6,16,2948],[588,551,5,16,3392],[40,204,3,16,9458],[98,512,2,16,10098],[459,264,2,16,8534],[513,23,2,16,8046],[395,141,2,16,8268],[38,383,2,16,9838],[392,24,2,16,8016],[466,60,111,15,5768],16,[291,307,43,15,7496],[37,307,43,15,7440],[231,248,43,15,7356],[164,248,43,15,7344],[40,248,42,15,7314],[100,307,42,15,7452],[354,247,42,15,7382],[293,307,42,15,7494],[357,306,41,15,7510],[351,129,41,15,7130],[165,189,41,15,7220],[420,306,41,15,7524],[483,306,40,15,7536],[102,307,40,15,7458],[292,307,40,15,7500],[480,247,40,15,7410],15,[419,188,39,15,7270],[357,247,39,15,7386],[481,247,39,15,7412],[540,129,35,15,7174],[339,552,18,15,3208],[513,17,18,15,3502],[87,554,18,15,3152],[150,553,17,15,3166],[213,18,15,15,3432],[333,17,14,15,3460],[2,584,14,15,20424],[275,17,14,15,3446],[91,18,14,15,3404],[582,367,13,15,3016],[153,18,12,15,3418],[586,491,11,15,3268],[524,430,10,15,3132],[275,309,8,15,2820],[588,551,8,15,3396],[582,367,6,15,3018],[392,75,6,15,4592],[575,191,6,15,4886],[40,88,5,15,9204],[214,437,5,15,5306],[588,551,5,15,3394],[588,551,5,15,3398],[276,374,5,15,5194],[338,369,4,15,2962],[94,433,3,15,3028],[101,204,2,15,9468],[517,140,2,15,8294],[100,263,2,15,9596],[461,323,2,15,8656],[523,321,2,15,8676],[101,204,2,15,9472],[411,389,1,15,9918],[535,389,1,15,9948],[97,310,1,15,2780],[225,237,111,14,6090],[103,62,110,14,5684],15,[293,249,42,14,7370],[418,367,41,14,7650],[356,307,41,14,7508],[167,249,41,14,7340],[357,367,41,14,7636],[293,249,41,14,7368],[295,368,40,14,7620],[358,429,40,14,7762],[167,308,40,14,7472],[483,307,40,14,7542],[356,307,40,14,7512],[39,308,40,14,7442],[229,249,40,14,7358],[40,369,39,14,7570],[231,308,39,14,7486],[420,307,39,14,7528],14,[485,307,38,14,7538],[483,248,37,14,7416],[336,308,21,14,2704],[465,551,17,14,3236],[88,369,17,14,2774],[452,18,17,14,3488],[392,18,14,14,3474],[150,369,14,14,4060],[151,431,13,14,4186],[215,553,13,14,3180],[526,492,10,14,3252],[465,552,10,14,3370],[399,430,8,14,3098],[465,552,8,14,3368],[277,553,7,14,3324],[582,367,7,14,3020],[214,255,6,14,4928],[96,369,6,14,4046],[583,367,6,14,3014],[402,552,6,14,3350],[277,553,6,14,3322],[87,554,6,14,3282],[401,492,6,14,3230],[571,75,5,14,4634],[214,137,5,14,4676],[36,369,5,14,4032],[274,138,5,14,4690],[275,314,5,14,5068],[214,315,5,14,5054],[41,88,4,14,9206],[338,436,4,14,5334],[216,369,4,14,2932],[465,514,2,14,9036],[100,322,2,14,9726],[513,26,1,14,8040],[101,322,1,14,9724],[162,512,1,14,10116],[40,120,112,13,5796],[467,119,112,13,5894],14,[225,179,111,13,5964],[285,179,111,13,5978],[103,120,111,13,5810],[286,119,110,13,5852],[163,63,110,13,5698],[346,62,110,13,5740],13,[226,119,109,13,5838],[270,369,67,13,7622],[292,309,41,13,7498],[38,309,41,13,7438],[102,309,41,13,7456],[166,309,41,13,7470],[295,431,41,13,7746],[230,431,41,13,7734],[103,250,41,13,7330],[100,432,41,13,7706],[420,308,40,13,7526],[169,309,40,13,7468],[102,432,40,13,7704],[101,370,40,13,7584],13,[167,309,40,13,7466],[419,249,39,13,7400],[296,369,39,13,7624],[232,369,39,13,7610],[483,308,39,13,7540],[37,370,39,13,7564],[168,250,39,13,7346],[230,250,39,13,7360],[100,370,39,13,7578],[419,249,39,13,7402],[546,368,38,13,7680],[233,369,38,13,7606],[422,308,38,13,7522],[235,369,38,13,7612],[103,250,38,13,7332],[356,368,38,13,7638],[359,308,38,13,7514],13,[487,368,37,13,7668],[548,368,36,13,7676],[549,307,33,13,7552],[520,308,20,13,2746],[463,430,20,13,2984],[89,309,20,13,2648],[397,308,20,13,2718],[399,430,20,13,2970],[338,430,19,13,2956],[274,132,19,13,2312],[333,132,18,13,2326],[276,431,18,13,2942],[150,493,18,13,3040],[459,308,18,13,2732],[150,369,18,13,2788],[88,432,17,13,2900],[151,132,17,13,2284],[214,132,17,13,2298],[515,74,17,13,3628],[276,369,16,13,2816],[214,309,16,13,2676],[151,309,16,13,2662],[588,1,16,13,22692],[89,75,15,13,3530],[215,369,15,13,2802],[338,492,14,13,4354],[459,308,14,13,4004],[399,368,13,13,4116],[463,430,13,13,4256],[464,492,13,13,4382],[399,308,12,13,3990],[152,309,12,13,3934],[90,309,12,13,3920],[278,493,12,13,4340],[584,430,12,13,3142],[90,494,11,13,4298],[463,368,11,13,4130],[586,491,11,13,3272],[276,132,11,13,3584],13,[526,492,10,13,3256],[216,493,10,13,4326],[279,431,10,13,4214],[217,431,9,13,4200],[464,492,9,13,3240],[575,191,9,13,2638],[586,491,9,13,3270],[280,369,9,13,4088],[336,309,8,13,2834],[403,552,8,13,3354],[402,552,8,13,3352],[464,492,8,13,3242],[219,369,7,13,4074],[94,432,7,13,4172],[339,552,7,13,3338],[159,132,6,13,3556],[336,309,6,13,2838],[402,552,6,13,3356],[587,491,6,13,3266],[465,552,6,13,3364],[571,75,6,13,2386],[35,432,5,13,4158],[38,309,4,13,3906],[35,494,4,13,4284],[41,88,4,13,9202],[338,309,4,13,2832],[100,204,3,13,9470],[41,145,3,13,9332],[333,83,2,13,8128],[41,204,2,13,9460],[399,386,1,13,8768],[464,448,1,13,8908],[456,142,1,13,8282],[456,143,1,13,8278],[398,321,1,13,8644],[102,239,113,12,6062],[162,297,113,12,6202],[39,180,112,12,5922],[408,179,112,12,6006],13,[286,239,112,12,6104],[288,297,112,12,6230],[164,180,111,12,5950],[164,239,111,12,6076],[42,64,111,12,5670],[40,310,40,12,7444],[230,310,40,12,7484],12,[100,433,40,12,7708],[169,370,39,12,7594],[166,370,39,12,7592],[170,432,39,12,7720],[100,371,39,12,7580],[168,370,39,12,7596],[295,370,38,12,7626],[485,369,38,12,7664],[105,371,38,12,7582],[486,369,38,12,7662],[488,431,38,12,7794],[362,431,37,12,7766],[37,433,37,12,7694],[487,369,36,12,7666],[359,369,36,12,7640],[545,250,35,12,7428],[548,308,34,12,7556],12,[548,308,34,12,7550],[526,491,21,12,3124],[395,250,20,12,2592],[515,132,20,12,2368],[455,132,19,12,2354],[276,493,19,12,3068],[338,492,19,12,3082],[150,431,18,12,2914],[336,368,18,12,2830],[401,492,18,12,3096],[335,251,18,12,2578],[91,133,17,12,2270],[90,251,17,12,2522],[151,192,17,12,2410],[275,192,16,12,2438],[214,431,16,12,2928],[395,192,16,12,3852],[214,493,16,12,3054],[516,132,16,12,3754],[402,552,16,12,3222],[275,309,16,12,2690],[90,192,16,12,2396],[151,251,16,12,2536],[335,192,16,12,3838],[394,132,15,12,2340],[275,251,15,12,2564],[523,367,15,12,2872],[458,250,15,12,2606],[214,251,15,12,2550],[456,191,14,12,3752],[393,75,14,12,3600],[333,75,14,12,3586],[151,133,14,12,3670],[274,75,13,12,3572],[273,192,13,12,3824],[458,250,13,12,3878],[152,76,13,12,3544],[335,133,13,12,3712],[150,192,13,12,3796],[152,192,13,12,3682],12,[275,251,13,12,3836],[213,75,13,12,3558],[336,310,13,12,3976],[215,192,13,12,2424],[213,192,12,12,3810],[339,432,12,12,4228],[214,251,12,12,3822],[395,132,12,12,3612],[455,75,12,12,3500],[275,192,12,12,3710],[215,192,11,12,3696],[215,75,11,12,3444],[457,132,11,12,3626],[526,492,10,12,3254],[155,251,10,12,3808],[571,75,10,12,2388],[584,430,10,12,3146],[520,308,10,12,2880],[523,368,9,12,3004],[459,308,9,12,2864],[520,308,9,12,2876],[398,368,8,12,2976],[520,308,8,12,2874],[157,76,8,12,3430],[401,492,8,12,3228],[397,308,8,12,2850],[98,192,6,12,3668],[277,553,6,12,3328],[401,492,6,12,3226],[99,76,6,12,3416],[40,133,5,12,3528],[275,257,5,12,4942],[39,192,5,12,3654],[41,76,5,12,3402],[458,132,5,12,2484],[215,197,4,12,4802],[458,132,4,12,2482],[39,251,4,12,3780],[214,81,4,12,4550],[150,554,3,12,3298],[41,145,3,12,9334],[215,376,3,12,5180],[102,145,2,12,9342],[101,322,1,12,9722],[464,451,1,12,8912],[528,511,1,12,9050],[394,83,1,12,8142],[454,25,1,12,8032],[465,511,1,12,9034],[40,240,113,11,6048],[349,240,112,11,6118],12,[346,121,112,11,5866],[406,121,112,11,5880],[103,181,111,11,5936],[297,494,39,11,7874],[360,494,39,11,7888],[168,495,38,11,7846],[168,433,38,11,7718],[37,434,38,11,7692],[425,494,38,11,7900],[41,372,38,11,7566],[425,432,37,11,7774],11,[422,370,37,11,7648],[360,370,37,11,7634],[234,433,37,11,7732],[488,493,37,11,7914],[546,309,36,11,7554],[362,494,36,11,7890],[490,432,36,11,7790],[232,495,36,11,7862],[39,372,36,11,7568],[425,432,35,11,7780],[551,370,33,11,7678],[551,370,33,11,7682],[518,192,18,11,3880],[398,368,18,11,2844],[335,252,16,11,3964],[87,494,16,11,3026],[458,251,15,11,3992],[336,371,14,11,4102],[456,133,14,11,3740],[211,134,14,11,3684],[454,76,14,11,3614],[150,496,13,11,4312],[273,134,13,11,3698],[334,191,13,11,2452],[456,191,13,11,2480],[395,191,13,11,2466],[214,134,12,11,3570],[92,193,12,11,3782],11,[90,134,12,11,3656],[580,308,11,11,2890],[403,494,11,11,4368],[573,132,9,11,2514],[524,430,9,11,3126],[401,492,7,11,3224],[338,493,7,11,3214],[464,492,7,11,3238],[276,493,7,11,3202],[338,493,7,11,3212],[337,251,7,11,2710],[92,316,6,11,2778],[150,554,5,11,3300],[275,199,5,11,4816],[339,552,5,11,3342],[277,553,4,11,3326],[150,554,4,11,3294],[43,88,2,11,9208],[40,263,2,11,9586],[402,513,1,11,9024],[99,517,1,11,10102],[162,515,1,11,10112],[43,145,1,11,9330],[350,453,1,11,10030],[164,204,1,11,9486],[411,358,114,10,6384],[409,240,114,10,6132],[101,299,113,10,6188],[468,181,113,10,6020],11,[38,299,113,10,6174],[164,122,111,10,5824],[407,65,111,10,5754],[225,65,110,10,5712],[397,371,63,10,7652],[295,434,39,10,7748],[165,496,38,10,7848],[102,435,38,10,7710],[40,435,37,10,7690],10,[361,433,37,10,7760],[296,495,37,10,7878],[39,497,37,10,7822],[426,371,37,10,7654],[234,496,37,10,7860],[101,497,36,10,7832],[360,433,36,10,7764],[489,433,36,10,7792],[296,434,36,10,7752],[170,372,36,10,7598],[489,494,36,10,7916],[234,496,35,10,7858],[37,497,35,10,7820],[363,495,34,10,7892],[554,432,32,10,7806],[591,585,31,10,46506],[464,492,21,10,3110],[524,430,19,10,2998],[521,311,17,10,4132],[525,433,17,10,4384],[519,252,17,10,4006],10,[335,372,16,10,4216],[396,252,16,10,3978],[456,193,15,10,3866],[519,250,15,10,2620],[336,312,15,10,4090],[212,253,14,10,3936],[396,134,14,10,3726],[87,253,14,10,3908],[461,368,14,10,2858],[274,253,13,10,3950],[150,253,13,10,3922],[395,194,13,10,3738],[211,312,13,10,4062],[400,433,13,10,4242],[519,250,9,10,2748],[523,368,9,10,3002],[520,250,9,10,2750],[397,251,8,10,2720],[524,430,8,10,3130],[398,368,7,10,2978],[524,430,7,10,3128],[531,551,6,10,3384],[584,430,6,10,3144],[214,499,4,10,5432],[43,33,3,10,9078],[103,33,2,10,9094],[398,324,1,10,8648],[102,204,1,10,9474],[101,264,1,10,9594],[216,432,1,10,3062],[349,394,1,10,9906],[35,423,115,9,6426],[473,359,115,9,6398],[98,485,115,9,6566],10,[225,484,114,9,6594],[163,422,114,9,6454],[351,421,114,9,6496],[472,299,113,9,6272],[470,241,113,9,6146],9,[349,299,113,9,6244],[226,300,112,9,6216],[348,182,111,9,5992],[233,373,37,9,7608],[103,498,36,9,7830],[40,436,36,9,7696],[40,498,36,9,7818],[298,435,36,9,7750],[169,435,35,9,7724],[236,497,35,9,7864],[236,435,35,9,7738],[491,434,35,9,7788],9,[554,495,34,9,7932],[430,496,34,9,7906],[555,495,33,9,7930],[492,495,33,9,7918],[494,495,33,9,7920],[362,496,33,9,7886],[554,433,32,9,7808],[554,433,32,9,7802],[15,1,25,9,3414],[460,312,16,9,4118],[148,436,16,9,4300],[210,435,16,9,4314],[463,434,16,9,4370],[462,372,16,9,4244],[148,313,15,9,4048],[398,312,15,9,4104],[399,372,15,9,4230],[274,435,15,9,4328],[86,374,14,9,4160],[528,551,14,9,3250],[395,253,14,9,3864],[275,313,14,9,4076],[277,373,13,9,4202],[212,373,13,9,4188],[458,250,9,9,2736],[463,430,9,9,3118],[280,313,8,9,3962],[339,136,8,9,3598],[523,368,8,9,3000],[574,134,8,9,2512],[399,368,7,9,2974],[399,430,7,9,3100],[461,368,7,9,2990],[399,368,7,9,2972],[338,431,7,9,3088],[276,431,6,9,3070],[460,308,6,9,2860],[459,250,6,9,2734],[399,430,6,9,3104],[530,551,6,9,3380],[460,308,5,9,2866],[584,430,5,9,3140],[88,432,5,9,3030],[578,250,4,9,2762],[580,309,3,9,2894],[43,33,3,9,9080],[455,86,1,9,8158],[101,266,1,9,9600],[459,266,1,9,8536],[395,203,1,9,8392],[162,516,1,9,10118],[398,325,1,9,8642],9,[0,595,628,8,1146],8,[414,422,115,8,6510],[99,361,114,8,6314],[351,484,114,8,6622],[163,485,114,8,6580],[163,361,113,8,6328],8,[225,361,113,8,6342],[288,361,113,8,6356],[225,423,113,8,6468],[410,300,113,8,6258],[426,497,37,8,7904],[298,497,36,8,7876],[234,436,36,8,7736],[105,499,35,8,7836],[299,497,35,8,7872],[104,499,34,8,7834],8,[168,498,34,8,7850],[169,436,34,8,7722],[427,435,33,8,7778],[427,435,33,8,7776],[555,434,31,8,7804],[524,373,17,8,4258],[398,435,16,8,4356],[336,436,15,8,4342],[87,314,15,8,4034],[86,437,15,8,4286],[149,375,14,8,4174],[517,191,11,8,2494],[276,79,10,8,3458],[396,79,10,8,3486],[579,250,8,8,2764],[523,368,7,8,3006],[577,191,7,8,2640],[463,430,6,8,3112],[341,196,6,8,3724],[459,250,5,8,2738],[336,369,5,8,2958],[278,493,4,8,3196],[274,82,3,8,4564],[87,559,3,8,3280],[580,310,2,8,2888],[159,369,2,8,2916],[103,33,2,8,9090],[351,516,1,8,10156],[528,513,1,8,9048],[454,26,1,8,8030],[456,142,1,8,8280],[103,88,1,8,9216],[35,487,115,7,6552],[350,361,114,7,6370],8,[36,362,114,7,6300],[39,500,33,7,7816],[557,497,31,7,7928],[428,498,31,7,7902],[337,256,11,7,3850],[217,315,9,7,3948],[338,493,7,7,3210],[462,370,5,7,2986],[398,308,5,7,2846],[338,431,5,7,3090],[397,191,5,7,2598],[398,308,5,7,2852],[100,138,4,7,3542],[338,431,4,7,3084],[102,88,2,7,9220],[395,144,1,7,8270],[334,146,1,7,8252],[474,424,115,6,6524],[288,487,115,6,6608],[100,426,114,6,6440],7,[287,425,114,6,6482],[169,500,31,6,7844],[558,498,30,6,7934],[91,257,12,6,3794],[335,81,11,6,3472],[90,280,10,6,8452],[530,551,5,6,3378],[103,88,1,6,9218],[395,205,1,6,8394],[476,487,116,5,6650],[416,487,115,5,6636],[517,132,8,5,2498],[576,132,6,5,2516],[455,75,5,5,2362],[336,192,5,5,2582],[577,193,5,5,2636],[518,132,5,5,2500],[515,75,4,5,2370],[278,493,4,5,3198],[216,493,2,5,3182],[336,268,1,5,8504],[398,191,1,5,2594],[399,388,1,5,8770],[336,327,1,5,8628],[45,33,1,5,9082],[216,432,1,5,3058],[517,132,6,4,2496],[577,192,4,4,2642],[337,251,4,4,2708],[459,191,3,4,2612],[463,368,1,4,2992],[394,87,1,4,8138],[338,452,1,4,8880],[579,132,1,4,2510],[214,281,11,3,8474],[401,468,8,3,8896],[460,308,7,3,2862],[581,308,7,3,2892],[401,468,5,3,8900],[516,75,4,3,2374],[278,431,4,3,3076],[529,492,4,3,3258],[398,251,3,3,2726],[216,431,3,3,3060],[521,191,2,3,2622],[278,369,1,3,2944],[464,431,1,3,3114],[464,499,1,3,3244],[520,191,1,3,2628],[399,404,7,2,8772],[521,250,6,2,2754],[217,493,3,2,3184],[402,531,3,2,9022],[278,431,2,2,3074],[460,191,2,2,2608],[337,252,1,2,2706],[580,250,1,2,2768],[338,132,1,2,2458],[279,251,1,2,2696],[459,191,1,2,2610],[398,75,1,2,2346],[458,132,1,2,2486],[457,75,1,2,2356],6,[0,0,628,1,12],[276,402,11,1,8742],[338,470,8,1,8882],[518,191,7,1,2624],[333,50,7,1,8000],[461,337,6,1,8660],1,[339,532,5,1,9008],[151,105,1,1,8082]],\"marginPx\":1,\"boardPartCount\":43,\"centers\":{\"2\":[[[69,54],[68,110],[67,168],[66,227],[66,286],[65,345],[64,407],[63,469],[62,530]],[[128,54],[127,110],[128,168],[127,227],[126,286],[126,345],[125,407],[125,469],[125,530]],[[189,54],[189,109],[190,168],[190,227],[189,286],[189,345],[189,406],[188,468],[189,529]],[[250,53],[250,109],[250,168],[250,227],[250,286],[251,345],[251,406],[251,468],[251,529]],[[309,53],[309,109],[310,168],[311,227],[312,286],[312,345],[313,406],[313,468],[314,528]],[[368,53],[370,109],[371,167],[371,227],[372,285],[373,344],[374,405],[376,467],[377,528]],[[429,53],[430,109],[431,167],[433,226],[434,285],[436,344],[437,405],[438,467],[439,528]],[[489,53],[491,109],[492,167],[494,226],[495,285],[498,344],[499,405],[501,467],[502,527]],[[547,53],[549,109],[551,167],[553,226],[556,285],[558,343],[560,405],[561,466],[563,527]]],\"0\":[[[69,82],[68,139],[67,198],[66,257],[65,315],[64,376],[64,438],[63,500]],[[128,82],[127,139],[127,198],[127,257],[126,315],[126,376],[125,438],[125,500]],[[189,81],[189,138],[190,198],[189,257],[189,315],[189,375],[189,437],[188,499]],[[250,81],[250,138],[250,198],[250,257],[250,315],[251,375],[251,437],[251,499]],[[309,81],[310,138],[310,198],[311,257],[312,315],[312,375],[313,437],[314,499]],[[369,81],[370,138],[371,197],[371,256],[373,314],[374,374],[375,436],[376,498]],[[430,81],[431,138],[432,197],[433,256],[435,314],[436,374],[438,436],[439,498]],[[490,81],[491,138],[493,197],[495,256],[496,314],[498,374],[500,436],[501,498]]],\"1\":[[[98,54],[98,110],[97,168],[96,227],[96,286],[95,345],[94,407],[94,469]],[[158,54],[158,110],[158,168],[158,227],[157,286],[157,345],[157,407],[156,469]],[[220,54],[220,109],[220,168],[220,227],[220,286],[220,345],[220,406],[220,468]],[[280,53],[280,109],[281,168],[281,227],[281,286],[282,345],[282,406],[282,468]],[[339,53],[339,109],[340,168],[341,227],[342,285],[342,345],[344,406],[344,468]],[[398,53],[400,109],[401,167],[401,227],[403,285],[404,344],[405,405],[407,467]],[[459,53],[461,109],[462,167],[464,226],[465,285],[467,344],[468,405],[470,467]],[[518,53],[520,109],[522,167],[524,226],[526,285],[528,344],[530,405],[531,467]]]},\"pieceMaps\":[[-20,-7,40,14],[-7,-20,14,40],[-15,-15,30,30],[-15,-15,30,30],[-15,-15,30,30],[-15,-15,30,30]]};","board":{"2_4_8":0,"3_4_0":0},"moves":{"possibleTokenMoves":{"4":{"9":0},"6":{"9":0},"5":{"8":0}},"canPlayWall":true},"counters":{"wallcount_p68364687":{"counter_name":"wallcount_p68364687","counter_value":"10"},"wallcount_p83860461":{"counter_name":"wallcount_p83860461","counter_value":"10"}},"rotateMatrix":[1,0,0,1],"quoridorstrats_notation":[],"gamestate":{"name":"playerTurn","description":"${actplayer} must move his\/her pawn or place a fence","descriptionmyturn":"${you} must move your pawn or place a fence","type":"activeplayer","args":{"impossibleWallPlacements":[]},"possibleactions":["playToken","playWall","endGame"],"transitions":{"playToken":11,"playWall":11,"endGame":99,"zombiePass":11},"active_player":"83860461","admin_player":"83860461","reflexion":{"move":{"value":239,"total":240},"total":{"83860461":299,"68364687":"300"}},"updateGameProgression":0},"tablespeed":"1","rtc_mode":"0","game_result_neutralized":"0","neutralized_player_id":"0","playerorder":["83860461",68364687],"notifications":{"last_packet_id":"1","move_nbr":"1"}}, {"68364687":{"user_id":"68364687","status":"online","grade":"3","rank":"<a href=\"\/#!club\" target=\"_blank\"><img class=\"masqued_rank imgtext\" id=\"maskag_68364687\" src=\"http:\/\/cdn.boardgamearena.net\/data\/themereleases\/151119-1457\/img\/common\/rankmask.png\"\/><\/a>","rank_no":"11","country":"HK","city":"","avatar":"85119acd79","gender":"1","is_premium":"0","is_beginner":"0","languages":{"zh":{"id":"zh","level":"0"}},"country_infos":{"flag":95,"name":"Hong Kong","cur":"HKD","flag_x":144,"flag_y":55}},"83860461":{"user_id":"83860461","status":"online","grade":"3","rank":"<a href=\"\/#!club\" target=\"_blank\"><img class=\"masqued_rank imgtext\" id=\"maskag_83860461\" src=\"http:\/\/cdn.boardgamearena.net\/data\/themereleases\/151119-1457\/img\/common\/rankmask.png\"\/><\/a>","rank_no":"4","country":"IL","city":null,"avatar":"000000","gender":"1","is_premium":"0","is_beginner":"0","languages":{"en":{"id":"en","level":"0"}},"country_infos":{"flag":103,"name":"Israel","cur":"ILS","flag_x":160,"flag_y":33}}}, "http://c.boardgamearena.net" );
gameui.setGroupList( [] );
}
catch(e)
{
var msg = 'During pageload\n'+e.message+'\n';
msg += ( e.stack || e.stacktrace || "no_stack_avail" );
gameui.onScriptError( msg, '', '' );
}
baseUnload.addOnUnload( function() {
if( gameui )
{
gameui.unload();
}
} );
});
</script>
<div id="overall-footer-spacer"></div>
</div> <!-- overall content -->
<div id="overall-footer">
<div class="row">
<div class="col-md-3">
<div id="footercol_logo" class="footercol">
<div class="site-logo">
<a class="logoicon" href="http://en.boardgamearena.com/#!welcome"><img class="logoiconimg" src="./You must move your pawn or place a fence • Quoridor • Board Game Arena_files/logo.png" alt="BGA"></a>
<a class="logotitle logotitle_white" href="http://en.boardgamearena.com/#!welcome"></a>
</div>
<div class="sitebaseline smalltext" id="sitebaseline_footer">«By gamers, for gamers»</div>
</div>
</div>
<div class="col-md-3">
<div id="footercol_help" class="footercol">
<h3><a href="http://en.boardgamearena.com/#!doc">Help</a></h3>
<ul>
<li><a href="http://en.boardgamearena.com/#!doc/About_Board_Game_Arena">What is Board Game Arena?</a></li>
<li><a href="http://en.boardgamearena.com/#!team">Who we are</a></li>
<li><a href="http://en.boardgamearena.com/#!doc/faq">F.A.Q.</a></li>
<li><a href="http://en.boardgamearena.com/#!doc/contact">Contact us</a></li>
</ul>
</div>
</div>
<div class="col-md-3">
<div id="footercol_contribute" class="footercol">
<h3>Contribute</h3>
<ul>
<li><a href="http://en.boardgamearena.com/#!page/gamepublishers">Game publishers</a></li>
<li><a href="http://en.studio.boardgamearena.com/">Game developers</a></li>
<li><a href="http://en.boardgamearena.com/#!contribute">Contribute to BGA</a></li>
<li><a href="http://en.boardgamearena.com/#!bugs">Report a bug</a></li>
<li><a href="http://en.boardgamearena.com/#!club">Club Board Game Arena</a></li>
</ul>
</div>
</div>
<div class="col-md-3">
<div id="overall_footer_topbutton">Top <div class="icon20 icon20_arrowup"></div></div>
<div id="footercol_follow" class="footercol">
<h3>Follow us</h3>
<ul>
<li><a href="https://www.facebook.com/boardgamearena" target="_blank"><div class="icon32 icon32_facebook"></div> <span>Join us on Facebook</span></a></li>
<li><a href="https://plus.google.com/111066027490672259132/posts" target="_blank"><div class="icon32 icon32_googleplus"></div> <span>Follow us on Google+</span></a></li>
<li><a href="https://twitter.com/boardgamearena" target="_blank"><div class="icon32 icon32_twitter"></div> <span>Follow us on Twitter</span></a></li>
<li><a href="http://forum.boardgamearena.com//feed.php?mode=news"><div class="icon32 icon32_rss"></div> <span>Subscribe to News</span></a></li>
</ul>
</div>
</div>
</div>
<div id="footer_footer" class="row">
<div class="col-md-9">
<div id="globalerrormsg"></div>
<span id="websitename" style="display:none;">Board Game Arena</span>
<a id="footerwebsitename" href="http://boardgamearena.com/">Board Game Arena</a> Release 151119-1457
• <a id="terms-wrap" href="http://en.boardgamearena.com/#!page/legal">Terms</a>
</div>
<div class="col-md-3">
<div id="xiti-logo">
<script type="text/javascript">
<!--