-
Notifications
You must be signed in to change notification settings - Fork 0
/
log_2011-04-27.txt
2583 lines (2344 loc) · 84.3 KB
/
log_2011-04-27.txt
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
Level #1 [cells 56, boxes 6, alive 41, complexity 22.8]
#####
# #
#$ #
### $##
# $ $ #
### # ## # ######
# # ## ##### ..#
# $ $ ..#
##### ### #@## ..#
# #########
#######
[set 6.2K, closed 2.4K, open 3.9K, branching 2.7]
Found solution in 101 pushes.
FrozenBoxes 1.1K
Level #2 [cells 70, boxes 10, alive 46, complexity 29.8]
############
#.. # ###
#.. # $ $ #
#.. #$#### #
#.. @ ## #
#.. # # $ ##
###### ##$ $ #
# $ $ $ $ #
# # #
############
[set 1.47M, closed 524K, open 942K, branching 2.8, key 53/131]
[set 2.84M, closed 1.05M, open 1.80M, branching 2.7, key 42/131]
[set 4.27M, closed 1.58M, open 2.70M, branching 2.7, key 40/131]
[set 5.62M, closed 2.10M, open 3.53M, branching 2.7, key 30/131]
[set 5.71M, closed 2.14M, open 3.58M, branching 2.7]
Found solution in 133 pushes.
FrozenBoxes 1.79M
Level #3 [cells 56, boxes 11, alive 43, complexity 29.7]
########
# @#
# $#$ ##
# $ $#
##$ $ #
######### $ # ###
#.... ## $ $ #
##... $ $ #
#.... ##########
########
[set 1.68M, closed 524K, open 1.15M, branching 3.2, key 63/132]
[set 3.30M, closed 1.05M, open 2.25M, branching 3.1, key 54/132]
[set 4.93M, closed 1.58M, open 3.35M, branching 3.1, key 52/132]
[set 6.53M, closed 2.10M, open 4.44M, branching 3.1, key 49/132]
[set 8.03M, closed 2.63M, open 5.41M, branching 3.1, key 49/132]
[set 9.61M, closed 3.15M, open 6.47M, branching 3.1, key 34/132]
[set 10.1M, closed 3.30M, open 6.71M, branching 3.0]
Timed out after key: pushes 26, total 132
FrozenBoxes 4.14M
Level #4 [cells 112, boxes 20, alive 77, complexity 50.4]
########
# ....#
############ ....#
# # $ $ ....#
# $$$#$ $ # ....#
# $ $ # ....#
# $$ #$ $ $########
# $ # #
## #########
# # #
# $ ##
# $$#$$ @#
# # ##
###########
[set 1.89M, closed 524K, open 1.37M, branching 3.6, key 75/337]
[set 3.76M, closed 1.05M, open 2.71M, branching 3.6, key 55/337]
[set 5.65M, closed 1.58M, open 4.07M, branching 3.6, key 67/337]
[set 7.52M, closed 2.10M, open 5.43M, branching 3.6, key 54/337]
[set 9.70M, closed 2.63M, open 7.08M, branching 3.7, key 53/337]
[set 10.1M, closed 2.70M, open 7.31M, branching 3.7]
Timed out after key: pushes 49, total 337
FrozenBoxes 1.44M
Level #5 [cells 71, boxes 12, alive 54, complexity 34.4]
#####
# #####
# #$## #
# $ #
######### ### #
#.... ## $ $###
#.... $ $$ ##
#.... ##$ $ @#
######### $ ##
# $ $ #
### ## #
# #
######
[set 3.31M, closed 524K, open 2.79M, branching 6.3, key 75/139]
[set 5.27M, closed 1.05M, open 4.22M, branching 5.0, key 62/139]
[set 7.38M, closed 1.58M, open 5.80M, branching 4.7, key 57/139]
[set 9.53M, closed 2.10M, open 7.43M, branching 4.5, key 59/139]
[set 10.1M, closed 2.22M, open 7.79M, branching 4.5]
Timed out after key: pushes 59, total 139
FrozenBoxes 845K
Level #6 [cells 60, boxes 10, alive 41, complexity 28.2]
###### ###
#.. # ##@##
#.. ### #
#.. $$ #
#.. # # $ #
#..### # $ #
#### $ #$ #
# $# $ #
# $ $ #
# ## #
#########
[set 434K, closed 228K, open 206K, branching 1.9]
Found solution in 110 pushes.
FrozenBoxes 473K
Level #7 [cells 64, boxes 11, alive 43, complexity 29.9]
#####
####### ##
## # @## $$ #
# $ #
# $ ### #
### #####$###
# $ ### ..#
# $ $ $ ...#
# ###...#
# $$ # #...#
# ### #####
####
[set 1.70M, closed 424K, open 1.28M, branching 4.0]
Found solution in 88 pushes.
FrozenBoxes 193K
Level #8 [cells 109, boxes 18, alive 85, complexity 50.3]
####
# ###########
# $ $ $ #
# $# $ # $ #
# $ $ # #
### $# # #### #
#@#$ $ $ ## #
# $ #$# # #
# $ $ $ $ #
##### #########
# #
# #
#......#
#......#
#......#
########
[set 1.94M, closed 524K, open 1.42M, branching 3.7, key 65/224]
[set 3.93M, closed 1.05M, open 2.88M, branching 3.7, key 84/224]
[set 5.67M, closed 1.58M, open 4.09M, branching 3.6, key 74/224]
[set 7.31M, closed 2.10M, open 5.22M, branching 3.5, key 68/224]
[set 9.05M, closed 2.63M, open 6.43M, branching 3.5, key 77/224]
[set 10.1M, closed 2.92M, open 7.09M, branching 3.4]
Timed out after key: pushes 79, total 224
FrozenBoxes 5.72M
Level #9 [cells 83, boxes 14, alive 60, complexity 38.5]
#######
# ...#
##### ...#
# . .#
# ## ...#
## ## ...#
### ########
# $$$ ##
##### $ $ #####
## #$ $ # #
#@ $ $ $ $ #
###### $$ $ #####
# #
########
[set 5.55M, closed 524K, open 5.03M, branching 10.6, key 96/219]
[set 10.1M, closed 951K, open 9.05M, branching 10.5]
Timed out after key: pushes 92, total 219
FrozenBoxes 1.20M
Level #10 [cells 172, boxes 32, alive 116, complexity 75.2]
### #############
##@#### # #
# $$ $$ $ $ ...#
# $$$# $ #...#
# $ # $$ $$ #...#
### # $ #...#
# # $ $ $ #...#
# ###### ###...#
## # # $ $ #...#
# ## # $$ $ $##..#
# ..# # $ #.#
# ..# # $$$ $$$ #.#
##### # # #.#
# ######### #.#
# #.#
###############
[set 1.69M, closed 524K, open 1.17M, branching 3.2, key 33/506]
[set 3.25M, closed 1.05M, open 2.20M, branching 3.1, key 20/506]
[set 4.84M, closed 1.58M, open 3.27M, branching 3.1, key 19/506]
[set 6.38M, closed 2.10M, open 4.28M, branching 3.0, key 34/506]
[set 7.95M, closed 2.63M, open 5.33M, branching 3.0, key 28/506]
[set 9.59M, closed 3.15M, open 6.45M, branching 3.0, key 27/506]
[set 10.1M, closed 3.27M, open 6.74M, branching 3.1]
Timed out after key: pushes 98, total 508
FrozenBoxes 8.85M
Level #11 [cells 93, boxes 14, alive 68, complexity 40.8]
####
#### # #
### @###$ #
## $ #
## $ $$## ##
# #$## #
# # $ $$ # ###
# $ # # $ #####
### # $$ # #
#### ## $ #
#. ### ########
#.. ..# ####
#...#.#
#.....#
#######
[set 1.19M, closed 524K, open 656K, branching 2.3, key 33/215]
[set 2.18M, closed 1.05M, open 1.13M, branching 2.1, key 40/217]
[set 3.25M, closed 1.58M, open 1.68M, branching 2.1, key 35/217]
[set 4.74M, closed 2.10M, open 2.64M, branching 2.3, key 34/217]
[set 6.05M, closed 2.63M, open 3.43M, branching 2.3, key 61/219]
[set 7.26M, closed 3.15M, open 4.12M, branching 2.3, key 54/219]
[set 8.51M, closed 3.68M, open 4.84M, branching 2.3, key 46/219]
[set 9.75M, closed 4.20M, open 5.56M, branching 2.3, key 45/219]
[set 10.1M, closed 4.31M, open 5.70M, branching 2.3]
Timed out after key: pushes 48, total 219
FrozenBoxes 10.9M
Level #12 [cells 104, boxes 15, alive 66, complexity 41.6]
################
# #
# # ###### #
# # $ $ $ $# #
# # $@$ ## ##
# # $ $ $###...#
# # $ $ ##...#
# ###$$$ $ ##...#
# # ## ##...#
##### ## ##...#
##### ###
# #
#######
[set 3.28M, closed 524K, open 2.76M, branching 6.3, key 51/210]
[set 6.75M, closed 1.05M, open 5.70M, branching 6.4, key 73/210]
[set 10.1M, closed 1.57M, open 8.44M, branching 6.4]
Timed out after key: pushes 86, total 210
FrozenBoxes 4.23M
Level #13 [cells 118, boxes 16, alive 78, complexity 46.1]
#########
## ## ######
### # # ###
# $ #$ # # ... #
# # $#@$## # #.#. #
# # #$ # . . #
# $ $ # # #.#. #
# ## ##$ $ . . #
# $ # # #$#.#. #
## $ $ $ $... #
#$ ###### ## #
# # ##########
####
[set 2.73M, closed 524K, open 2.20M, branching 5.2, key 38/220]
[set 4.31M, closed 1.05M, open 3.26M, branching 4.1, key 32/220]
[set 6.05M, closed 1.58M, open 4.48M, branching 3.8, key 30/220]
[set 8.11M, closed 2.10M, open 6.01M, branching 3.9, key 39/220]
[set 9.58M, closed 2.63M, open 6.96M, branching 3.7, key 33/220]
[set 10.1M, closed 2.75M, open 7.26M, branching 3.6]
Timed out after key: pushes 28, total 220
FrozenBoxes 5.77M
Level #14 [cells 121, boxes 18, alive 85, complexity 50.5]
#######
####### #
# # $@$ #
#$$ # #########
# ###......## #
# $......## # #
# ###...... #
## #### ### #$##
# #$ # $ # #
# $ $$$ # $## #
# $ $ ###$$ # #
##### $ # #
### ### # #
# # #
######## #
####
[set 1.79M, closed 524K, open 1.27M, branching 3.4, key 25/233]
[set 4.01M, closed 1.05M, open 2.97M, branching 3.8, key 63/235]
[set 6.70M, closed 1.58M, open 5.12M, branching 4.3, key 65/235]
[set 9.28M, closed 2.10M, open 7.18M, branching 4.4, key 66/235]
[set 10.1M, closed 2.24M, open 7.77M, branching 4.5]
Timed out after key: pushes 59, total 235
FrozenBoxes 3.31M
Level #15 [cells 104, boxes 15, alive 77, complexity 44.4]
########
# # #
# $ #
### #$ ####
# $ ##$ #
# # @ $ # $#
# # $ ####
## ####$## #
# $#.....# # #
# $..**. $# ###
## #.....# #
# ### #######
# $$ # #
# # #
###### #
#####
[set 2.25M, closed 524K, open 1.73M, branching 4.3, key 33/102]
[set 4.66M, closed 1.05M, open 3.61M, branching 4.4, key 23/102]
[set 6.44M, closed 1.58M, open 4.87M, branching 4.1, key 47/104]
[set 8.12M, closed 2.10M, open 6.02M, branching 3.9, key 45/104]
[set 9.82M, closed 2.63M, open 7.20M, branching 3.7, key 41/104]
[set 10.1M, closed 2.68M, open 7.33M, branching 3.7]
Timed out after key: pushes 41, total 104
FrozenBoxes 1.85M
Level #16 [cells 81, boxes 15, alive 55, complexity 38.0]
#####
# ##
# # ####
# $ #### #
# $$ $ $#
###@ #$ ##
# ## $ $ ##
# $ ## ## .#
# #$##$ #.#
### $..##.#
# #.*...#
# $$ #.....#
# #########
# #
####
[set 1.15M, closed 524K, open 621K, branching 2.2, key 44/170]
[set 2.24M, closed 1.05M, open 1.19M, branching 2.1, key 41/170]
[set 3.37M, closed 1.58M, open 1.79M, branching 2.1, key 32/170]
[set 4.62M, closed 2.10M, open 2.52M, branching 2.2, key 37/170]
[set 5.92M, closed 2.63M, open 3.30M, branching 2.3, key 46/170]
[set 7.17M, closed 3.15M, open 4.02M, branching 2.3, key 51/172]
[set 8.35M, closed 3.68M, open 4.68M, branching 2.3, key 48/172]
[set 9.50M, closed 4.20M, open 5.31M, branching 2.3, key 45/172]
[set 10.1M, closed 4.43M, open 5.58M, branching 2.3]
Timed out after key: pushes 53, total 172
FrozenBoxes 5.69M
Level #17 [cells 87, boxes 6, alive 53, complexity 25.2]
##########
#.. # #
#.. #
#.. # ####
####### # ##
# #
# # ## # #
#### ## #### ##
# $ ##### # #
# # $ $ # $ #
# @$ $ # ##
#### ## #######
# #
######
[set 620K, closed 524K, open 95.5K, branching 1.2, key 50/209]
[set 1.24M, closed 1.05M, open 190K, branching 1.2, key 73/195]
[set 1.82M, closed 1.58M, open 242K, branching 1.2, key 86/201]
[set 2.37M, closed 2.10M, open 269K, branching 1.1, key 87/191]
[set 2.95M, closed 2.63M, open 322K, branching 1.1, key 87/213]
[set 3.59M, closed 3.15M, open 436K, branching 1.1, key 105/211]
[set 4.26M, closed 3.68M, open 590K, branching 1.2, key 96/203]
[set 4.96M, closed 4.20M, open 766K, branching 1.2, key 85/211]
[set 5.66M, closed 4.72M, open 935K, branching 1.2, key 31/213]
[set 5.73M, closed 4.82M, open 905K, branching 1.2]
Found solution in 215 pushes.
FrozenBoxes 1.70M
Level #18 [cells 105, boxes 11, alive 70, complexity 37.0]
###########
# . # #
# #. @ #
##### ##..# ####
## # ..### ###
# $ #... $ # $ #
# .. ## ## ## #
####$##$# $ # # #
## # #$ $$ # #
# $ # # # $## #
# #
# ########### #
#### ####
[set 1.40M, closed 524K, open 867K, branching 2.7, key 68/112]
[set 2.92M, closed 1.05M, open 1.87M, branching 2.8, key 33/112]
[set 4.63M, closed 1.58M, open 3.05M, branching 2.9, key 50/110]
[set 6.30M, closed 2.10M, open 4.21M, branching 3.0, key 74/112]
[set 8.29M, closed 2.63M, open 5.67M, branching 3.2, key 69/112]
[set 9.94M, closed 3.15M, open 6.79M, branching 3.2, key 70/112]
[set 10.1M, closed 3.17M, open 6.84M, branching 3.2]
Timed out after key: pushes 63, total 112
FrozenBoxes 4.67M
Level #19 [cells 123, boxes 15, alive 84, complexity 46.2]
######
# @####
##### $ #
# ## ####
# $ # ## #
# $ # ##### #
## $ $ # #
# $ $ ### # #
# # $ # # #
# # #$# # #
## ### # # ######
# $ #### # #....#
# $ $ ..#.#
####$ $# $ ....#
# # ## ....#
###################
[set 2.20M, closed 524K, open 1.67M, branching 4.2, key 41/290]
[set 4.15M, closed 1.05M, open 3.10M, branching 4.0, key 34/290]
[set 6.03M, closed 1.58M, open 4.45M, branching 3.8, key 30/290]
[set 7.87M, closed 2.10M, open 5.77M, branching 3.7, key 34/290]
[set 9.69M, closed 2.63M, open 7.07M, branching 3.7, key 26/290]
[set 10.1M, closed 2.72M, open 7.29M, branching 3.7]
Timed out after key: pushes 24, total 290
FrozenBoxes 2.98M
Level #20 [cells 151, boxes 18, alive 96, complexity 53.3]
##########
##### ####
# # $ #@ #
# #######$#### ###
# # ## # #$ ..#
# # $ # # #.#
# # $ # #$ ..#
# # ### ## #.#
# ### # # #$ ..#
# # # #### #.#
# #$ $ $ #$ ..#
# $ # $ $ # #.#
#### $### #$ ..#
# $$ ###....#
# ## ######
########
[set 677K, closed 524K, open 153K, branching 1.3, key 48/446]
[set 1.30M, closed 1.05M, open 251K, branching 1.2, key 52/416]
[set 1.91M, closed 1.58M, open 329K, branching 1.2, key 47/444]
[set 2.54M, closed 2.10M, open 435K, branching 1.2, key 46/412]
[set 3.19M, closed 2.63M, open 569K, branching 1.2, key 43/430]
[set 3.83M, closed 3.15M, open 677K, branching 1.2, key 52/438]
[set 4.45M, closed 3.68M, open 773K, branching 1.2, key 45/410]
[set 5.06M, closed 4.20M, open 863K, branching 1.2, key 39/392]
[set 5.67M, closed 4.72M, open 950K, branching 1.2, key 41/406]
[set 6.28M, closed 5.25M, open 1.04M, branching 1.2, key 42/422]
[set 6.88M, closed 5.77M, open 1.12M, branching 1.2, key 39/432]
[set 7.49M, closed 6.30M, open 1.20M, branching 1.2, key 39/444]
[set 8.10M, closed 6.82M, open 1.28M, branching 1.2, key 44/426]
[set 8.69M, closed 7.35M, open 1.35M, branching 1.2, key 54/434]
[set 9.29M, closed 7.87M, open 1.43M, branching 1.2, key 38/414]
[set 9.96M, closed 8.39M, open 1.57M, branching 1.2, key 50/436]
[set 10.1M, closed 8.43M, open 1.58M, branching 1.2]
Timed out after key: pushes 37, total 446
FrozenBoxes 7.02M
Level #21 [cells 94, boxes 13, alive 64, complexity 38.5]
#########
# #
# ####
## #### # #
## #@## #
# $$$ $ $$#
# # ## $ #
# # ## $ ####
#### $$$ $# #
# ## ....#
# # # #.. .#
# # # ##...#
##### $ #...#
## #####
#####
[set 1.36M, closed 524K, open 835K, branching 2.6, key 56/137]
[set 3.19M, closed 1.05M, open 2.14M, branching 3.0, key 87/139]
[set 4.82M, closed 1.58M, open 3.24M, branching 3.1, key 60/139]
[set 6.31M, closed 2.10M, open 4.21M, branching 3.0, key 55/139]
[set 7.75M, closed 2.63M, open 5.13M, branching 3.0, key 60/139]
[set 9.19M, closed 3.15M, open 6.04M, branching 2.9, key 45/139]
[set 10.1M, closed 3.45M, open 6.56M, branching 2.9]
Timed out after key: pushes 45, total 139
FrozenBoxes 7.29M
Level #22 [cells 167, boxes 27, alive 116, complexity 69.9]
###### ####
# ####### #####
# $# # $ # #
# $ $ $ # $ $ #
##$ $ # @# $ #
# $ ########### ##
# # #.......# $#
# ## # ......# #
# # $........$ #
# # $ #.... ..# #
# $ $####$#### $#
# $ ### $ $ ##
# $ $ $ $ #
## ###### $ ##### #
# # #
###################
[set 901K, closed 524K, open 377K, branching 1.7, key 43/310]
[set 1.79M, closed 1.05M, open 735K, branching 1.7, key 26/310]
[set 2.67M, closed 1.58M, open 1.10M, branching 1.7, key 41/310]
[set 3.49M, closed 2.10M, open 1.39M, branching 1.7, key 40/312]
[set 4.32M, closed 2.63M, open 1.70M, branching 1.6, key 36/312]
[set 5.15M, closed 3.15M, open 2.01M, branching 1.6, key 35/312]
[set 5.99M, closed 3.68M, open 2.32M, branching 1.6, key 35/312]
[set 6.85M, closed 4.20M, open 2.65M, branching 1.6, key 31/312]
[set 7.69M, closed 4.72M, open 2.97M, branching 1.6, key 37/312]
[set 8.54M, closed 5.25M, open 3.30M, branching 1.6, key 35/312]
[set 9.39M, closed 5.77M, open 3.62M, branching 1.6, key 34/312]
[set 10.1M, closed 6.14M, open 3.87M, branching 1.6]
Timed out after key: pushes 18, total 312
FrozenBoxes 6.82M
Level #23 [cells 127, boxes 18, alive 104, complexity 54.8]
#######
# # ####
##### $#$ # ##
#.. # # # #
#.. # $#$ # $####
#. # #$ # #
#.. $# # $ #
#..@# #$ #$ # #
#.. # $# $# #
#.. # #$$#$ # ##
#.. # $# # $#$ #
#.. # # # # #
##. #### ##### #
#### #### #####
[set 1.03M, closed 524K, open 502K, branching 2.0, key 30/392]
[set 1.88M, closed 1.05M, open 825K, branching 1.8, key 42/400]
[set 2.65M, closed 1.58M, open 1.08M, branching 1.7, key 40/406]
[set 3.59M, closed 2.10M, open 1.50M, branching 1.7, key 45/416]
[set 4.64M, closed 2.63M, open 2.02M, branching 1.8, key 38/416]
[set 5.50M, closed 3.15M, open 2.36M, branching 1.7, key 46/416]
[set 6.24M, closed 3.68M, open 2.57M, branching 1.7, key 30/402]
[set 7.27M, closed 4.20M, open 3.08M, branching 1.7, key 41/416]
[set 8.22M, closed 4.72M, open 3.50M, branching 1.7, key 29/380]
[set 8.99M, closed 5.25M, open 3.74M, branching 1.7, key 43/384]
[set 9.84M, closed 5.77M, open 4.07M, branching 1.7, key 37/416]
[set 10.1M, closed 5.88M, open 4.13M, branching 1.7]
Timed out after key: pushes 43, total 384
FrozenBoxes 11.3M
Level #24 [cells 157, boxes 22, alive 113, complexity 62.8]
###############
#.......... .####
#..........$$.# #
###########$ # ##
# $ $ $ #
## #### # $ # #
# # ## # ##
# $# # ## ### #
# $ #$### # # #
### $ # # ### #
## $ ## # # ##
# $ # $ $ $ #
# $ $#$$$ # #
# # $ #####
# @## # # #
##############
[set 2.53M, closed 524K, open 2.01M, branching 4.8, key 68/518]
[set 4.52M, closed 1.05M, open 3.47M, branching 4.3, key 46/518]
[set 6.59M, closed 1.58M, open 5.01M, branching 4.2, key 63/518]
[set 8.53M, closed 2.10M, open 6.44M, branching 4.1, key 57/518]
[set 10.1M, closed 2.49M, open 7.52M, branching 4.0]
Timed out after key: pushes 71, total 518
FrozenBoxes 1.34M
Level #25 [cells 140, boxes 19, alive 88, complexity 52.7]
####
# ##############
# # ..#......#
# # # ##### ...#
##$# ........#
# ##$###### ####
# $ # # ####@ #
##$ # $ ###### #
# $ #$$$## #
# # #$#$###
# #### #$$$$$ #
# # $ # #
# # ## ###
# ######$###### $ #
# # # #
########## #####
[set 1.66M, closed 524K, open 1.13M, branching 3.2, key 24/364]
[set 3.35M, closed 1.05M, open 2.30M, branching 3.2, key 24/364]
[set 4.89M, closed 1.58M, open 3.31M, branching 3.1, key 38/366]
[set 6.19M, closed 2.10M, open 4.09M, branching 2.9, key 34/366]
[set 7.46M, closed 2.63M, open 4.84M, branching 2.8, key 32/366]
[set 8.73M, closed 3.15M, open 5.59M, branching 2.8, key 32/366]
[set 9.95M, closed 3.68M, open 6.28M, branching 2.7, key 30/366]
[set 10.1M, closed 3.70M, open 6.31M, branching 2.7]
Timed out after key: pushes 29, total 366
FrozenBoxes 6.83M
Level #26 [cells 80, boxes 13, alive 58, complexity 36.8]
#######
# # #####
## # #...###
# $# #... #
# $ #$$ ... #
# $# #... .#
# # $########
##$ $ $ #
# # $$ # #
###### ##$$@#
# ##
########
[set 1.41M, closed 524K, open 885K, branching 2.7, key 60/163]
[set 3.00M, closed 1.05M, open 1.95M, branching 2.9, key 54/165]
[set 4.39M, closed 1.58M, open 2.81M, branching 2.8, key 38/165]
[set 5.46M, closed 2.10M, open 3.36M, branching 2.6, key 73/167]
[set 6.55M, closed 2.63M, open 3.93M, branching 2.5, key 64/167]
[set 7.57M, closed 3.15M, open 4.42M, branching 2.4, key 56/167]
[set 8.66M, closed 3.68M, open 4.99M, branching 2.4, key 50/167]
[set 9.69M, closed 4.20M, open 5.50M, branching 2.3, key 41/167]
[set 10.1M, closed 4.36M, open 5.65M, branching 2.3]
Timed out after key: pushes 34, total 167
FrozenBoxes 2.80M
Level #27 [cells 122, boxes 20, alive 92, complexity 54.8]
#################
#... # # ##
##..... $## # #$ #
#......# $ # #
#......# # # # #
######### $ $ $ #
# #$##$ ##$##
## $ # $ #
# ## ### # ##$ #
# $ $$ $ $ #
# $ $##$ ######
####### @ ##
######
[set 1.20M, closed 524K, open 672K, branching 2.3, key 33/355]
[set 2.43M, closed 1.05M, open 1.38M, branching 2.3, key 28/355]
[set 3.49M, closed 1.58M, open 1.92M, branching 2.2, key 40/357]
[set 4.47M, closed 2.10M, open 2.37M, branching 2.1, key 36/357]
[set 5.50M, closed 2.63M, open 2.88M, branching 2.1, key 38/357]
[set 6.57M, closed 3.15M, open 3.43M, branching 2.1, key 39/357]
[set 7.67M, closed 3.68M, open 4.00M, branching 2.1, key 40/357]
[set 8.92M, closed 4.20M, open 4.72M, branching 2.1, key 37/357]
[set 10.1M, closed 4.63M, open 5.38M, branching 2.2]
Timed out after key: pushes 31, total 357
FrozenBoxes 5.86M
Level #28 [cells 112, boxes 20, alive 85, complexity 52.8]
#####
##### #
## $ $ ####
##### $ $ $ ##.#
# $$ ##..#
# ###### ###.. #
## # # #... #
# $ # #... #
#@ #$ ## ####...#
#### $ $$ ##..#
## $ $ $...#
# $$ $ # .#
# $ $ ####
###### #
#####
[set 1.23M, closed 524K, open 704K, branching 2.3, key 19/290]
[set 2.67M, closed 1.05M, open 1.62M, branching 2.5, key 35/290]
[set 4.82M, closed 1.58M, open 3.25M, branching 3.1, key 83/290]
[set 6.98M, closed 2.10M, open 4.88M, branching 3.3, key 88/290]
[set 9.00M, closed 2.63M, open 6.38M, branching 3.4, key 84/290]
[set 10.1M, closed 2.87M, open 7.14M, branching 3.5]
Timed out after key: pushes 90, total 290
FrozenBoxes 4.65M
Level #29 [cells 107, boxes 16, alive 59, complexity 40.6]
#####
# ##
# $ #########
## # # ######
## # $#$#@ # #
# # $ # $ #
# ### ######### ##
# ## ..*..... # #
## ## *.*..*.* # ##
# $########## ##$ #
# $ $ $ $ #
# # # # # #
###################
[set 1.10M, closed 524K, open 566K, branching 2.1, key 29/132]
[set 2.22M, closed 1.05M, open 1.17M, branching 2.1, key 21/132]
[set 3.12M, closed 1.58M, open 1.55M, branching 2.0, key 33/134]
[set 4.07M, closed 2.10M, open 1.97M, branching 1.9, key 32/134]
[set 5.10M, closed 2.63M, open 2.48M, branching 1.9, key 33/134]
[set 6.16M, closed 3.15M, open 3.02M, branching 2.0, key 23/134]
[set 7.24M, closed 3.68M, open 3.57M, branching 2.0, key 25/134]
[set 8.31M, closed 4.20M, open 4.11M, branching 2.0, key 17/134]
[set 9.35M, closed 4.72M, open 4.63M, branching 2.0, key 49/136]
[set 10.00M, closed 5.25M, open 4.76M, branching 1.9, key 39/136]
[set 10.1M, closed 5.25M, open 4.76M, branching 1.9]
Timed out after key: pushes 44, total 136
FrozenBoxes 2.55M
Level #30 [cells 119, boxes 18, alive 78, complexity 48.6]
###########
# # #
##### # $ $ #
# ##### $## # ##
# $ ## # ## $ #
# $ @$$ # ##$$$ #
## ### # ## #
# # ### #####$#
## # $ #....#
# ### ## $ #....##
# $ $ # #..$. #
# ## $ # ##.... #
##### ######...##
##### #####
[set 1.13M, closed 524K, open 604K, branching 2.2, key 23/371]
[set 2.29M, closed 1.05M, open 1.24M, branching 2.2, key 45/373]
[set 3.28M, closed 1.58M, open 1.71M, branching 2.1, key 29/373]
[set 4.23M, closed 2.10M, open 2.13M, branching 2.0, key 27/373]
[set 5.18M, closed 2.63M, open 2.56M, branching 2.0, key 20/373]
[set 6.43M, closed 3.15M, open 3.28M, branching 2.0, key 22/373]
[set 7.86M, closed 3.68M, open 4.19M, branching 2.1, key 23/373]
[set 9.30M, closed 4.20M, open 5.11M, branching 2.2, key 21/373]
[set 10.00M, closed 4.72M, open 5.28M, branching 2.1, key 40/375]
[set 10.1M, closed 4.74M, open 5.27M, branching 2.1]
Timed out after key: pushes 40, total 375
FrozenBoxes 4.28M
Level #31 [cells 110, boxes 20, alive 85, complexity 52.8]
####
# #########
## ## # #
# $# $@$ ####
#$ $ # $ $# ##
## $## #$ $ #
# # # # $$$ #
# $ $ $## ####
# $ $ #$# # #
## ### ###$ #
# #.... #
####......####
#....####
#...##
#...#
#####
[set 3.25M, closed 524K, open 2.73M, branching 6.2, key 52/236]
[set 6.56M, closed 1.05M, open 5.51M, branching 6.3, key 42/236]
[set 9.55M, closed 1.58M, open 7.97M, branching 6.1, key 57/236]
[set 10.1M, closed 1.67M, open 8.34M, branching 6.0]
Timed out after key: pushes 36, total 236
FrozenBoxes 2.84M
Level #32 [cells 73, boxes 15, alive 59, complexity 39.2]
####
##### #
## $#
## $ ## ###
#@$ $ # $ #
#### ## $#
#....#$ $ #
#....# $#
#.... $$ ##
#... # $ #
######$ $ #
# ###
#$ ##
# #
####
[set 2.36M, closed 524K, open 1.83M, branching 4.5, key 61/117]
[set 4.61M, closed 1.05M, open 3.56M, branching 4.4, key 52/117]
[set 6.95M, closed 1.58M, open 5.38M, branching 4.4, key 42/117]
[set 8.99M, closed 2.10M, open 6.89M, branching 4.3, key 50/117]
[set 10.1M, closed 2.36M, open 7.65M, branching 4.2]
Timed out after key: pushes 29, total 117
FrozenBoxes 3.12M
Level #33 [cells 93, boxes 15, alive 62, complexity 40.4]
###########
# ## #
# $ $ #
#### ## $$ #
# $ # #
# $$$ # ####
# # # $ ##
# # # $ #
# $# $# #
# ..# ####
####.. $ #@#
#.....# $# #
##....# $ #
##..## #
##########
[set 1.06M, closed 524K, open 534K, branching 2.0, key 18/156]
[set 2.15M, closed 1.05M, open 1.10M, branching 2.0, key 33/158]
[set 3.20M, closed 1.58M, open 1.63M, branching 2.0, key 32/158]
[set 4.21M, closed 2.10M, open 2.11M, branching 2.0, key 22/158]
[set 5.24M, closed 2.63M, open 2.62M, branching 2.0, key 27/158]
[set 6.26M, closed 3.15M, open 3.12M, branching 2.0, key 21/158]
[set 7.29M, closed 3.68M, open 3.62M, branching 2.0, key 20/158]
[set 8.34M, closed 4.20M, open 4.14M, branching 2.0, key 23/158]
[set 9.43M, closed 4.72M, open 4.71M, branching 2.0, key 56/158]
[set 10.1M, closed 4.93M, open 5.08M, branching 2.0]
Timed out after key: pushes 59, total 158
FrozenBoxes 4.37M
Level #34 [cells 93, boxes 14, alive 62, complexity 39.2]
#########
#.... ##
#.#.# $ ##
##....# # @##
# ....# # ##
# #$ ##$ #
## ### $ #
#$ $ $ $# #
# # $ $ ## #
# ### ## #
# ## ## ##
# $ # $ #
###$ $ ###
# #####
####
[set 1.71M, closed 524K, open 1.18M, branching 3.2, key 32/162]
[set 3.33M, closed 1.05M, open 2.29M, branching 3.2, key 24/162]
[set 4.99M, closed 1.58M, open 3.41M, branching 3.2, key 54/164]
[set 6.82M, closed 2.10M, open 4.72M, branching 3.2, key 46/164]
[set 8.54M, closed 2.63M, open 5.92M, branching 3.3, key 42/164]
[set 10.1M, closed 3.08M, open 6.93M, branching 3.3]
Timed out after key: pushes 38, total 164
FrozenBoxes 5.35M
Level #35 [cells 150, boxes 17, alive 101, complexity 52.8]
############ ######
# # # ###....#
# $$# @ .....#
# # ### # ....#
## ## ### # ....#
# $ $ # # ####
# $ $## # #
#### # #### # ## #
# # #$ ## # #
# $ $ # ## # ##
# # $ $ # # #
# $ ## ## # #####
# $$ $$ #
## ## ### $ #
# # # #
###### ######
[set 2.84M, closed 524K, open 2.32M, branching 5.4, key 147/368]
[set 5.44M, closed 1.05M, open 4.39M, branching 5.2, key 148/368]
[set 8.18M, closed 1.58M, open 6.60M, branching 5.2, key 185/368]
[set 10.1M, closed 1.91M, open 8.10M, branching 5.2]
Timed out after key: pushes 155, total 368
FrozenBoxes 1.50M
Level #36 [cells 124, boxes 21, alive 92, complexity 56.0]
#####
##### ###### #
# #### $ $ $ #
# $ ## ## ## ##
# $ $ $ $ #
### $ ## ## ##
# ##### #####$$ #
##$### # @## #
# $ ###$### $ ##
# $ # ### ###
# $$ $ # $$ #
# # ## #
#######.. .####
#.........#
#.........#
###########
[set 2.49M, closed 524K, open 1.96M, branching 4.7, key 26/503]
[set 4.51M, closed 1.05M, open 3.46M, branching 4.3, key 25/503]
[set 6.76M, closed 1.58M, open 5.18M, branching 4.3, key 20/503]
[set 9.12M, closed 2.10M, open 7.03M, branching 4.3, key 23/503]
[set 10.1M, closed 2.29M, open 7.72M, branching 4.4]
Timed out after key: pushes 22, total 503
FrozenBoxes 3.92M
Level #37 [cells 130, boxes 20, alive 91, complexity 54.6]
###########
#...... #########
#...... # ## #
#..### $ $ #
#... $ $ # ## #
#...#$##### # #
### # #$ #$ #
# $$ $ $ $## #
# $ #$#$ ##$ #
### ## # ## #
# $ $ ## ######
# $ $ #
## # # #
#####@#####
###
[set 3.82M, closed 524K, open 3.30M, branching 7.3, key 37/236]
[set 8.00M, closed 1.05M, open 6.95M, branching 7.6, key 38/236]
[set 10.1M, closed 1.34M, open 8.67M, branching 7.5]
Timed out after key: pushes 40, total 236
FrozenBoxes 3.92M
Level #38 [cells 49, boxes 8, alive 40, complexity 25.3]
####
####### @#
# $ #
# $## $#
##$#...# #
# $... #
# #. .# ##
# # #$ #
#$ $ #
# #######
####
[set 98.7K, closed 27.5K, open 71.2K, branching 3.6]
Found solution in 81 pushes.
FrozenBoxes 38.8K
Level #39 [cells 142, boxes 25, alive 105, complexity 64.4]
######
#############....#
## ## ##....#
# $$## $ @##....#
# $$ $# ....#
# $ ## $$ # # ...#
# $ ## $ # ....#
## ##### ### ##.###
## $ $ ## . #
# $### # ##### ###
# $ # #
# $ #$ $ $### #
# $$$# $ # ####
# # $$ #
###### ###
#####
[set 1.49M, closed 524K, open 966K, branching 2.8, key 131/660]
[set 3.97M, closed 1.05M, open 2.92M, branching 3.8, key 136/660]
[set 5.70M, closed 1.58M, open 4.13M, branching 3.6, key 122/660]
[set 8.04M, closed 2.10M, open 5.95M, branching 3.8, key 117/660]
[set 10.1M, closed 2.53M, open 7.48M, branching 4.0]
Timed out after key: pushes 162, total 660
FrozenBoxes 4.11M
Level #40 [cells 107, boxes 16, alive 77, complexity 45.8]