-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPACoutput.txt
1989 lines (1989 loc) · 66.1 KB
/
PACoutput.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
Put 124 product into buffer at 0.
Take out 124 from the buffer at 0.
Put 115 product into buffer at 1.
Take out 115 from the buffer at 1.
Put 174 product into buffer at 2.
Take out 174 from the buffer at 2.
Put 191 product into buffer at 3.
Put 159 product into buffer at 0.
Put 149 product into buffer at 1.
Take out 191 from the buffer at 3.
Put 97 product into buffer at 2.
Put 141 product into buffer at 3.
Take out 159 from the buffer at 0.
Take out 149 from the buffer at 1.
Take out 97 from the buffer at 2.
Put 120 product into buffer at 0.
Put 115 product into buffer at 1.
Take out 141 from the buffer at 3.
Put 154 product into buffer at 2.
Take out 120 from the buffer at 0.
Put 125 product into buffer at 3.
Put 14 product into buffer at 0.
Take out 115 from the buffer at 1.
Put 85 product into buffer at 1.
Take out 154 from the buffer at 2.
Put 113 product into buffer at 2.
Take out 125 from the buffer at 3.
Put 106 product into buffer at 3.
Take out 14 from the buffer at 0.
Take out 85 from the buffer at 1.
Put 16 product into buffer at 0.
Put 74 product into buffer at 1.
Take out 113 from the buffer at 2.
Take out 106 from the buffer at 3.
Take out 16 from the buffer at 0.
Put 65 product into buffer at 2.
Take out 74 from the buffer at 1.
Put 109 product into buffer at 3.
Put 132 product into buffer at 0.
Put 58 product into buffer at 1.
Take out 65 from the buffer at 2.
Put 26 product into buffer at 2.
Take out 109 from the buffer at 3.
Put 148 product into buffer at 3.
Take out 132 from the buffer at 0.
Take out 58 from the buffer at 1.
Take out 26 from the buffer at 2.
Put 198 product into buffer at 0.
Put 187 product into buffer at 1.
Take out 148 from the buffer at 3.
Put 20 product into buffer at 2.
Take out 198 from the buffer at 0.
Take out 187 from the buffer at 1.
Put 10 product into buffer at 3.
Put 69 product into buffer at 0.
Take out 20 from the buffer at 2.
Put 101 product into buffer at 1.
Take out 10 from the buffer at 3.
Put 62 product into buffer at 2.
Take out 69 from the buffer at 0.
Put 1 product into buffer at 3.
Take out 101 from the buffer at 1.
Put 73 product into buffer at 0.
Take out 62 from the buffer at 2.
Take out 1 from the buffer at 3.
Put 6 product into buffer at 1.
Put 119 product into buffer at 2.
Take out 73 from the buffer at 0.
Take out 6 from the buffer at 1.
Put 187 product into buffer at 3.
Take out 119 from the buffer at 2.
Take out 187 from the buffer at 3.
Put 85 product into buffer at 0.
Take out 85 from the buffer at 0.
Put 127 product into buffer at 1.
Put 98 product into buffer at 2.
Take out 127 from the buffer at 1.
Put 170 product into buffer at 3.
Take out 98 from the buffer at 2.
Put 139 product into buffer at 0.
Take out 170 from the buffer at 3.
Put 153 product into buffer at 1.
Take out 139 from the buffer at 0.
Put 178 product into buffer at 2.
Put 90 product into buffer at 3.
Take out 153 from the buffer at 1.
Put 101 product into buffer at 0.
Take out 178 from the buffer at 2.
Put 169 product into buffer at 1.
Take out 90 from the buffer at 3.
Put 102 product into buffer at 2.
Take out 101 from the buffer at 0.
Put 1 product into buffer at 3.
Take out 169 from the buffer at 1.
Take out 102 from the buffer at 2.
Put 108 product into buffer at 0.
Take out 1 from the buffer at 3.
Put 21 product into buffer at 1.
Take out 108 from the buffer at 0.
Put 71 product into buffer at 2.
Take out 21 from the buffer at 1.
Take out 71 from the buffer at 2.
Put 189 product into buffer at 3.
Take out 189 from the buffer at 3.
Put 147 product into buffer at 0.
Take out 147 from the buffer at 0.
Put 128 product into buffer at 1.
Take out 128 from the buffer at 1.
Put 182 product into buffer at 2.
Put 15 product into buffer at 3.
Take out 182 from the buffer at 2.
Take out 15 from the buffer at 3.
Put 128 product into buffer at 0.
Put 105 product into buffer at 1.
Put 83 product into buffer at 2.
Take out 128 from the buffer at 0.
Take out 105 from the buffer at 1.
Take out 83 from the buffer at 2.
Put 192 product into buffer at 3.
Put 157 product into buffer at 0.
Take out 192 from the buffer at 3.
Put 131 product into buffer at 1.
Take out 157 from the buffer at 0.
Take out 131 from the buffer at 1.
Put 141 product into buffer at 2.
Take out 141 from the buffer at 2.
Put 65 product into buffer at 3.
Take out 65 from the buffer at 3.
Put 159 product into buffer at 0.
Take out 159 from the buffer at 0.
Put 28 product into buffer at 1.
Take out 28 from the buffer at 1.
Put 197 product into buffer at 2.
Take out 197 from the buffer at 2.
Put 83 product into buffer at 3.
Take out 83 from the buffer at 3.
Put 108 product into buffer at 0.
Put 150 product into buffer at 1.
Take out 108 from the buffer at 0.
Take out 150 from the buffer at 1.
Put 103 product into buffer at 2.
Take out 103 from the buffer at 2.
Put 169 product into buffer at 3.
Take out 169 from the buffer at 3.
Put 104 product into buffer at 0.
Take out 104 from the buffer at 0.
Put 152 product into buffer at 1.
Put 13 product into buffer at 2.
Put 147 product into buffer at 3.
Take out 152 from the buffer at 1.
Put 111 product into buffer at 0.
Take out 13 from the buffer at 2.
Put 164 product into buffer at 1.
Put 169 product into buffer at 2.
Take out 147 from the buffer at 3.
Take out 111 from the buffer at 0.
Take out 164 from the buffer at 1.
Take out 169 from the buffer at 2.
Put 30 product into buffer at 3.
Put 183 product into buffer at 0.
Put 91 product into buffer at 1.
Put 55 product into buffer at 2.
Take out 30 from the buffer at 3.
Take out 183 from the buffer at 0.
Put 169 product into buffer at 3.
Put 7 product into buffer at 0.
Take out 91 from the buffer at 1.
Put 198 product into buffer at 1.
Take out 55 from the buffer at 2.
Take out 169 from the buffer at 3.
Put 90 product into buffer at 2.
Put 147 product into buffer at 3.
Take out 7 from the buffer at 0.
Put 31 product into buffer at 0.
Take out 198 from the buffer at 1.
Put 197 product into buffer at 1.
Take out 90 from the buffer at 2.
Put 45 product into buffer at 2.
Take out 147 from the buffer at 3.
Put 153 product into buffer at 3.
Take out 31 from the buffer at 0.
Put 9 product into buffer at 0.
Take out 197 from the buffer at 1.
Put 115 product into buffer at 1.
Take out 45 from the buffer at 2.
Put 68 product into buffer at 2.
Take out 153 from the buffer at 3.
Take out 9 from the buffer at 0.
Put 25 product into buffer at 3.
Put 55 product into buffer at 0.
Take out 115 from the buffer at 1.
Take out 68 from the buffer at 2.
Take out 25 from the buffer at 3.
Put 8 product into buffer at 1.
Put 153 product into buffer at 2.
Put 155 product into buffer at 3.
Take out 55 from the buffer at 0.
Take out 8 from the buffer at 1.
Put 56 product into buffer at 0.
Put 12 product into buffer at 1.
Take out 153 from the buffer at 2.
Put 124 product into buffer at 2.
Take out 155 from the buffer at 3.
Put 174 product into buffer at 3.
Take out 56 from the buffer at 0.
Take out 12 from the buffer at 1.
Put 107 product into buffer at 0.
Take out 124 from the buffer at 2.
Put 85 product into buffer at 1.
Put 137 product into buffer at 2.
Take out 174 from the buffer at 3.
Put 135 product into buffer at 3.
Take out 107 from the buffer at 0.
Put 47 product into buffer at 0.
Take out 85 from the buffer at 1.
Take out 137 from the buffer at 2.
Put 178 product into buffer at 1.
Take out 135 from the buffer at 3.
Put 25 product into buffer at 2.
Put 151 product into buffer at 3.
Take out 47 from the buffer at 0.
Put 164 product into buffer at 0.
Take out 178 from the buffer at 1.
Put 198 product into buffer at 1.
Take out 25 from the buffer at 2.
Put 86 product into buffer at 2.
Take out 151 from the buffer at 3.
Put 191 product into buffer at 3.
Take out 164 from the buffer at 0.
Put 200 product into buffer at 0.
Take out 198 from the buffer at 1.
Put 163 product into buffer at 1.
Take out 86 from the buffer at 2.
Put 165 product into buffer at 2.
Take out 191 from the buffer at 3.
Put 184 product into buffer at 3.
Take out 200 from the buffer at 0.
Put 148 product into buffer at 0.
Take out 163 from the buffer at 1.
Put 147 product into buffer at 1.
Take out 165 from the buffer at 2.
Take out 184 from the buffer at 3.
Put 151 product into buffer at 2.
Take out 148 from the buffer at 0.
Put 179 product into buffer at 3.
Take out 147 from the buffer at 1.
Take out 151 from the buffer at 2.
Put 130 product into buffer at 0.
Take out 179 from the buffer at 3.
Put 129 product into buffer at 1.
Take out 130 from the buffer at 0.
Put 63 product into buffer at 2.
Take out 129 from the buffer at 1.
Put 95 product into buffer at 3.
Take out 63 from the buffer at 2.
Put 4 product into buffer at 0.
Take out 95 from the buffer at 3.
Put 66 product into buffer at 1.
Take out 4 from the buffer at 0.
Put 85 product into buffer at 2.
Take out 66 from the buffer at 1.
Take out 85 from the buffer at 2.
Put 15 product into buffer at 3.
Take out 15 from the buffer at 3.
Put 10 product into buffer at 0.
Take out 10 from the buffer at 0.
Put 24 product into buffer at 1.
Take out 24 from the buffer at 1.
Put 28 product into buffer at 2.
Take out 28 from the buffer at 2.
Put 154 product into buffer at 3.
Put 172 product into buffer at 0.
Take out 154 from the buffer at 3.
Put 152 product into buffer at 1.
Take out 172 from the buffer at 0.
Take out 152 from the buffer at 1.
Put 154 product into buffer at 2.
Put 14 product into buffer at 3.
Put 36 product into buffer at 0.
Put 143 product into buffer at 1.
Take out 154 from the buffer at 2.
Take out 14 from the buffer at 3.
Put 105 product into buffer at 2.
Take out 36 from the buffer at 0.
Put 119 product into buffer at 3.
Take out 143 from the buffer at 1.
Put 65 product into buffer at 0.
Take out 105 from the buffer at 2.
Put 193 product into buffer at 1.
Put 89 product into buffer at 2.
Take out 119 from the buffer at 3.
Put 9 product into buffer at 3.
Take out 65 from the buffer at 0.
Put 169 product into buffer at 0.
Take out 193 from the buffer at 1.
Put 50 product into buffer at 1.
Take out 89 from the buffer at 2.
Put 46 product into buffer at 2.
Take out 9 from the buffer at 3.
Take out 169 from the buffer at 0.
Put 129 product into buffer at 3.
Take out 50 from the buffer at 1.
Put 36 product into buffer at 0.
Put 49 product into buffer at 1.
Take out 46 from the buffer at 2.
Put 46 product into buffer at 2.
Take out 129 from the buffer at 3.
Put 164 product into buffer at 3.
Take out 36 from the buffer at 0.
Take out 49 from the buffer at 1.
Put 94 product into buffer at 0.
Take out 46 from the buffer at 2.
Put 79 product into buffer at 1.
Put 83 product into buffer at 2.
Take out 164 from the buffer at 3.
Take out 94 from the buffer at 0.
Put 49 product into buffer at 3.
Put 2 product into buffer at 0.
Take out 79 from the buffer at 1.
Put 48 product into buffer at 1.
Take out 83 from the buffer at 2.
Take out 49 from the buffer at 3.
Put 93 product into buffer at 2.
Put 134 product into buffer at 3.
Take out 2 from the buffer at 0.
Put 104 product into buffer at 0.
Take out 48 from the buffer at 1.
Take out 93 from the buffer at 2.
Put 163 product into buffer at 1.
Take out 134 from the buffer at 3.
Take out 104 from the buffer at 0.
Put 130 product into buffer at 2.
Put 157 product into buffer at 3.
Take out 163 from the buffer at 1.
Put 156 product into buffer at 0.
Put 121 product into buffer at 1.
Take out 130 from the buffer at 2.
Take out 157 from the buffer at 3.
Put 137 product into buffer at 2.
Take out 156 from the buffer at 0.
Put 16 product into buffer at 3.
Put 100 product into buffer at 0.
Take out 121 from the buffer at 1.
Put 114 product into buffer at 1.
Take out 137 from the buffer at 2.
Put 138 product into buffer at 2.
Take out 16 from the buffer at 3.
Put 31 product into buffer at 3.
Take out 100 from the buffer at 0.
Put 49 product into buffer at 0.
Take out 114 from the buffer at 1.
Put 21 product into buffer at 1.
Take out 138 from the buffer at 2.
Put 79 product into buffer at 2.
Take out 31 from the buffer at 3.
Put 23 product into buffer at 3.
Take out 49 from the buffer at 0.
Put 59 product into buffer at 0.
Take out 21 from the buffer at 1.
Put 82 product into buffer at 1.
Take out 79 from the buffer at 2.
Put 170 product into buffer at 2.
Take out 23 from the buffer at 3.
Put 20 product into buffer at 3.
Take out 59 from the buffer at 0.
Put 194 product into buffer at 0.
Take out 82 from the buffer at 1.
Put 143 product into buffer at 1.
Take out 170 from the buffer at 2.
Put 115 product into buffer at 2.
Take out 20 from the buffer at 3.
Put 15 product into buffer at 3.
Take out 194 from the buffer at 0.
Put 73 product into buffer at 0.
Take out 143 from the buffer at 1.
Put 85 product into buffer at 1.
Take out 115 from the buffer at 2.
Put 162 product into buffer at 2.
Take out 15 from the buffer at 3.
Put 114 product into buffer at 3.
Take out 73 from the buffer at 0.
Take out 85 from the buffer at 1.
Put 21 product into buffer at 0.
Take out 162 from the buffer at 2.
Take out 114 from the buffer at 3.
Take out 21 from the buffer at 0.
Put 191 product into buffer at 1.
Take out 191 from the buffer at 1.
Put 153 product into buffer at 2.
Put 172 product into buffer at 3.
Take out 153 from the buffer at 2.
Take out 172 from the buffer at 3.
Put 96 product into buffer at 0.
Take out 96 from the buffer at 0.
Put 141 product into buffer at 1.
Take out 141 from the buffer at 1.
Put 29 product into buffer at 2.
Put 33 product into buffer at 3.
Take out 29 from the buffer at 2.
Take out 33 from the buffer at 3.
Put 135 product into buffer at 0.
Put 140 product into buffer at 1.
Take out 135 from the buffer at 0.
Put 129 product into buffer at 2.
Take out 140 from the buffer at 1.
Take out 129 from the buffer at 2.
Put 93 product into buffer at 3.
Put 85 product into buffer at 0.
Put 171 product into buffer at 1.
Take out 93 from the buffer at 3.
Take out 85 from the buffer at 0.
Put 65 product into buffer at 2.
Put 32 product into buffer at 3.
Put 139 product into buffer at 0.
Take out 171 from the buffer at 1.
Take out 65 from the buffer at 2.
Put 114 product into buffer at 1.
Put 182 product into buffer at 2.
Take out 32 from the buffer at 3.
Put 104 product into buffer at 3.
Take out 139 from the buffer at 0.
Put 13 product into buffer at 0.
Take out 114 from the buffer at 1.
Put 135 product into buffer at 1.
Take out 182 from the buffer at 2.
Put 9 product into buffer at 2.
Take out 104 from the buffer at 3.
Put 11 product into buffer at 3.
Take out 13 from the buffer at 0.
Put 151 product into buffer at 0.
Take out 135 from the buffer at 1.
Take out 9 from the buffer at 2.
Put 90 product into buffer at 1.
Put 127 product into buffer at 2.
Take out 11 from the buffer at 3.
Put 124 product into buffer at 3.
Take out 151 from the buffer at 0.
Put 183 product into buffer at 0.
Take out 90 from the buffer at 1.
Put 119 product into buffer at 1.
Take out 127 from the buffer at 2.
Put 117 product into buffer at 2.
Take out 124 from the buffer at 3.
Put 93 product into buffer at 3.
Take out 183 from the buffer at 0.
Put 18 product into buffer at 0.
Take out 119 from the buffer at 1.
Put 34 product into buffer at 1.
Take out 117 from the buffer at 2.
Put 61 product into buffer at 2.
Take out 93 from the buffer at 3.
Put 107 product into buffer at 3.
Take out 18 from the buffer at 0.
Take out 34 from the buffer at 1.
Take out 61 from the buffer at 2.
Take out 107 from the buffer at 3.
Put 83 product into buffer at 0.
Put 188 product into buffer at 1.
Take out 83 from the buffer at 0.
Put 134 product into buffer at 2.
Take out 188 from the buffer at 1.
Put 139 product into buffer at 3.
Take out 134 from the buffer at 2.
Put 75 product into buffer at 0.
Take out 139 from the buffer at 3.
Put 93 product into buffer at 1.
Take out 75 from the buffer at 0.
Put 50 product into buffer at 2.
Put 18 product into buffer at 3.
Take out 93 from the buffer at 1.
Take out 50 from the buffer at 2.
Put 27 product into buffer at 0.
Put 89 product into buffer at 1.
Take out 18 from the buffer at 3.
Put 153 product into buffer at 2.
Take out 27 from the buffer at 0.
Put 182 product into buffer at 3.
Put 121 product into buffer at 0.
Take out 89 from the buffer at 1.
Take out 153 from the buffer at 2.
Take out 182 from the buffer at 3.
Put 28 product into buffer at 1.
Put 199 product into buffer at 2.
Put 147 product into buffer at 3.
Take out 121 from the buffer at 0.
Put 184 product into buffer at 0.
Take out 28 from the buffer at 1.
Take out 199 from the buffer at 2.
Put 61 product into buffer at 1.
Take out 147 from the buffer at 3.
Take out 184 from the buffer at 0.
Put 26 product into buffer at 2.
Take out 61 from the buffer at 1.
Put 132 product into buffer at 3.
Take out 26 from the buffer at 2.
Take out 132 from the buffer at 3.
Put 141 product into buffer at 0.
Take out 141 from the buffer at 0.
Put 44 product into buffer at 1.
Put 143 product into buffer at 2.
Put 19 product into buffer at 3.
Take out 44 from the buffer at 1.
Put 69 product into buffer at 0.
Take out 143 from the buffer at 2.
Put 188 product into buffer at 1.
Take out 19 from the buffer at 3.
Put 175 product into buffer at 2.
Put 91 product into buffer at 3.
Take out 69 from the buffer at 0.
Take out 188 from the buffer at 1.
Take out 175 from the buffer at 2.
Take out 91 from the buffer at 3.
Put 47 product into buffer at 0.
Take out 47 from the buffer at 0.
Put 83 product into buffer at 1.
Put 157 product into buffer at 2.
Put 28 product into buffer at 3.
Put 133 product into buffer at 0.
Take out 83 from the buffer at 1.
Put 107 product into buffer at 1.
Take out 157 from the buffer at 2.
Put 120 product into buffer at 2.
Take out 28 from the buffer at 3.
Put 72 product into buffer at 3.
Take out 133 from the buffer at 0.
Put 126 product into buffer at 0.
Take out 107 from the buffer at 1.
Take out 120 from the buffer at 2.
Take out 72 from the buffer at 3.
Put 200 product into buffer at 1.
Take out 126 from the buffer at 0.
Put 22 product into buffer at 2.
Put 50 product into buffer at 3.
Put 82 product into buffer at 0.
Take out 200 from the buffer at 1.
Put 37 product into buffer at 1.
Take out 22 from the buffer at 2.
Put 153 product into buffer at 2.
Take out 50 from the buffer at 3.
Take out 82 from the buffer at 0.
Put 151 product into buffer at 3.
Take out 37 from the buffer at 1.
Put 45 product into buffer at 0.
Take out 153 from the buffer at 2.
Take out 151 from the buffer at 3.
Put 74 product into buffer at 1.
Take out 45 from the buffer at 0.
Put 74 product into buffer at 2.
Put 20 product into buffer at 3.
Take out 74 from the buffer at 1.
Put 33 product into buffer at 0.
Take out 74 from the buffer at 2.
Put 93 product into buffer at 1.
Take out 20 from the buffer at 3.
Put 129 product into buffer at 2.
Take out 33 from the buffer at 0.
Take out 93 from the buffer at 1.
Put 143 product into buffer at 3.
Put 55 product into buffer at 0.
Take out 129 from the buffer at 2.
Take out 143 from the buffer at 3.
Put 8 product into buffer at 1.
Put 109 product into buffer at 2.
Take out 55 from the buffer at 0.
Take out 8 from the buffer at 1.
Take out 109 from the buffer at 2.
Put 73 product into buffer at 3.
Put 146 product into buffer at 0.
Take out 73 from the buffer at 3.
Put 186 product into buffer at 1.
Take out 146 from the buffer at 0.
Take out 186 from the buffer at 1.
Put 6 product into buffer at 2.
Take out 6 from the buffer at 2.
Put 39 product into buffer at 3.
Take out 39 from the buffer at 3.
Put 130 product into buffer at 0.
Take out 130 from the buffer at 0.
Put 190 product into buffer at 1.
Take out 190 from the buffer at 1.
Put 60 product into buffer at 2.
Take out 60 from the buffer at 2.
Put 31 product into buffer at 3.
Take out 31 from the buffer at 3.
Put 30 product into buffer at 0.
Take out 30 from the buffer at 0.
Put 40 product into buffer at 1.
Take out 40 from the buffer at 1.
Put 101 product into buffer at 2.
Put 110 product into buffer at 3.
Take out 101 from the buffer at 2.
Put 51 product into buffer at 0.
Put 158 product into buffer at 1.
Take out 110 from the buffer at 3.
Put 35 product into buffer at 2.
Put 21 product into buffer at 3.
Take out 51 from the buffer at 0.
Put 110 product into buffer at 0.
Take out 158 from the buffer at 1.
Put 58 product into buffer at 1.
Take out 35 from the buffer at 2.
Take out 21 from the buffer at 3.
Take out 110 from the buffer at 0.
Put 22 product into buffer at 2.
Take out 58 from the buffer at 1.
Put 189 product into buffer at 3.
Take out 22 from the buffer at 2.
Take out 189 from the buffer at 3.
Put 61 product into buffer at 0.
Put 182 product into buffer at 1.
Take out 61 from the buffer at 0.
Put 131 product into buffer at 2.
Take out 182 from the buffer at 1.
Put 130 product into buffer at 3.
Take out 131 from the buffer at 2.
Take out 130 from the buffer at 3.
Put 30 product into buffer at 0.
Take out 30 from the buffer at 0.
Put 190 product into buffer at 1.
Put 158 product into buffer at 2.
Take out 190 from the buffer at 1.
Put 182 product into buffer at 3.
Take out 158 from the buffer at 2.
Put 102 product into buffer at 0.
Take out 182 from the buffer at 3.
Take out 102 from the buffer at 0.
Put 102 product into buffer at 1.
Put 15 product into buffer at 2.
Take out 102 from the buffer at 1.
Take out 15 from the buffer at 2.
Put 190 product into buffer at 3.
Put 136 product into buffer at 0.
Take out 190 from the buffer at 3.
Take out 136 from the buffer at 0.
Put 67 product into buffer at 1.
Take out 67 from the buffer at 1.
Put 92 product into buffer at 2.
Put 162 product into buffer at 3.
Take out 92 from the buffer at 2.
Take out 162 from the buffer at 3.
Put 22 product into buffer at 0.
Put 155 product into buffer at 1.
Take out 22 from the buffer at 0.
Put 89 product into buffer at 2.
Take out 155 from the buffer at 1.
Put 169 product into buffer at 3.
Put 113 product into buffer at 0.
Take out 89 from the buffer at 2.
Put 24 product into buffer at 1.
Put 146 product into buffer at 2.
Take out 169 from the buffer at 3.
Put 67 product into buffer at 3.
Take out 113 from the buffer at 0.
Put 94 product into buffer at 0.
Take out 24 from the buffer at 1.
Put 9 product into buffer at 1.
Take out 146 from the buffer at 2.
Take out 67 from the buffer at 3.
Put 24 product into buffer at 2.
Put 148 product into buffer at 3.
Take out 94 from the buffer at 0.
Take out 9 from the buffer at 1.
Put 123 product into buffer at 0.
Put 18 product into buffer at 1.
Take out 24 from the buffer at 2.
Put 169 product into buffer at 2.
Take out 148 from the buffer at 3.
Take out 123 from the buffer at 0.
Take out 18 from the buffer at 1.
Put 181 product into buffer at 3.
Take out 169 from the buffer at 2.
Take out 181 from the buffer at 3.
Put 30 product into buffer at 0.
Take out 30 from the buffer at 0.
Put 55 product into buffer at 1.
Take out 55 from the buffer at 1.
Put 112 product into buffer at 2.
Take out 112 from the buffer at 2.
Put 144 product into buffer at 3.
Take out 144 from the buffer at 3.
Put 147 product into buffer at 0.
Take out 147 from the buffer at 0.
Put 98 product into buffer at 1.
Take out 98 from the buffer at 1.
Put 170 product into buffer at 2.
Take out 170 from the buffer at 2.
Put 9 product into buffer at 3.
Take out 9 from the buffer at 3.
Put 198 product into buffer at 0.
Take out 198 from the buffer at 0.
Put 105 product into buffer at 1.
Take out 105 from the buffer at 1.
Put 67 product into buffer at 2.
Take out 67 from the buffer at 2.
Put 67 product into buffer at 3.
Take out 67 from the buffer at 3.
Put 185 product into buffer at 0.
Put 137 product into buffer at 1.
Put 138 product into buffer at 2.
Take out 185 from the buffer at 0.
Put 32 product into buffer at 3.
Take out 137 from the buffer at 1.
Put 95 product into buffer at 0.
Take out 138 from the buffer at 2.
Put 159 product into buffer at 1.
Take out 32 from the buffer at 3.
Put 191 product into buffer at 2.
Take out 95 from the buffer at 0.
Put 131 product into buffer at 3.
Put 77 product into buffer at 0.
Take out 159 from the buffer at 1.
Put 63 product into buffer at 1.
Take out 191 from the buffer at 2.
Put 68 product into buffer at 2.
Take out 131 from the buffer at 3.
Put 32 product into buffer at 3.
Take out 77 from the buffer at 0.
Put 137 product into buffer at 0.
Take out 63 from the buffer at 1.
Put 24 product into buffer at 1.
Take out 68 from the buffer at 2.
Take out 32 from the buffer at 3.
Take out 137 from the buffer at 0.
Put 14 product into buffer at 2.
Take out 24 from the buffer at 1.
Put 90 product into buffer at 3.
Take out 14 from the buffer at 2.
Take out 90 from the buffer at 3.
Put 136 product into buffer at 0.
Put 141 product into buffer at 1.
Take out 136 from the buffer at 0.
Take out 141 from the buffer at 1.
Put 195 product into buffer at 2.
Take out 195 from the buffer at 2.
Put 169 product into buffer at 3.
Take out 169 from the buffer at 3.
Put 15 product into buffer at 0.
Take out 15 from the buffer at 0.
Put 174 product into buffer at 1.
Put 103 product into buffer at 2.
Take out 174 from the buffer at 1.
Take out 103 from the buffer at 2.
Put 96 product into buffer at 3.
Take out 96 from the buffer at 3.
Put 174 product into buffer at 0.
Put 89 product into buffer at 1.
Take out 174 from the buffer at 0.
Put 80 product into buffer at 2.
Take out 89 from the buffer at 1.
Put 145 product into buffer at 3.
Take out 80 from the buffer at 2.
Take out 145 from the buffer at 3.
Put 93 product into buffer at 0.
Take out 93 from the buffer at 0.
Put 183 product into buffer at 1.
Take out 183 from the buffer at 1.
Put 95 product into buffer at 2.
Take out 95 from the buffer at 2.
Put 155 product into buffer at 3.
Take out 155 from the buffer at 3.
Put 142 product into buffer at 0.
Put 62 product into buffer at 1.
Take out 142 from the buffer at 0.
Put 7 product into buffer at 2.
Take out 62 from the buffer at 1.
Take out 7 from the buffer at 2.
Put 148 product into buffer at 3.
Take out 148 from the buffer at 3.
Put 85 product into buffer at 0.
Put 140 product into buffer at 1.
Take out 85 from the buffer at 0.
Put 56 product into buffer at 2.
Take out 140 from the buffer at 1.
Put 134 product into buffer at 3.
Take out 56 from the buffer at 2.
Put 83 product into buffer at 0.
Put 190 product into buffer at 1.
Take out 134 from the buffer at 3.
Put 148 product into buffer at 2.
Take out 83 from the buffer at 0.
Put 86 product into buffer at 3.
Take out 190 from the buffer at 1.
Put 127 product into buffer at 0.
Take out 148 from the buffer at 2.
Put 196 product into buffer at 1.
Put 178 product into buffer at 2.
Take out 86 from the buffer at 3.
Put 90 product into buffer at 3.
Take out 127 from the buffer at 0.
Put 44 product into buffer at 0.
Take out 196 from the buffer at 1.
Put 161 product into buffer at 1.
Take out 178 from the buffer at 2.
Put 176 product into buffer at 2.
Take out 90 from the buffer at 3.
Put 146 product into buffer at 3.
Take out 44 from the buffer at 0.
Put 52 product into buffer at 0.
Take out 161 from the buffer at 1.
Put 31 product into buffer at 1.
Take out 176 from the buffer at 2.
Put 168 product into buffer at 2.
Take out 146 from the buffer at 3.
Take out 52 from the buffer at 0.
Take out 31 from the buffer at 1.
Put 166 product into buffer at 3.
Take out 168 from the buffer at 2.
Put 28 product into buffer at 0.
Take out 166 from the buffer at 3.
Put 55 product into buffer at 1.
Take out 28 from the buffer at 0.
Put 130 product into buffer at 2.
Put 108 product into buffer at 3.
Take out 55 from the buffer at 1.
Put 171 product into buffer at 0.
Take out 130 from the buffer at 2.
Put 124 product into buffer at 1.
Put 15 product into buffer at 2.
Take out 108 from the buffer at 3.
Put 62 product into buffer at 3.
Take out 171 from the buffer at 0.
Put 144 product into buffer at 0.
Take out 124 from the buffer at 1.
Take out 15 from the buffer at 2.
Put 103 product into buffer at 1.
Take out 62 from the buffer at 3.
Take out 144 from the buffer at 0.
Put 101 product into buffer at 2.
Take out 103 from the buffer at 1.
Put 147 product into buffer at 3.
Take out 101 from the buffer at 2.
Take out 147 from the buffer at 3.
Put 118 product into buffer at 0.
Take out 118 from the buffer at 0.
Put 140 product into buffer at 1.
Put 32 product into buffer at 2.
Take out 140 from the buffer at 1.
Put 54 product into buffer at 3.
Put 3 product into buffer at 0.
Take out 32 from the buffer at 2.
Take out 54 from the buffer at 3.
Put 157 product into buffer at 1.
Put 121 product into buffer at 2.
Put 182 product into buffer at 3.
Take out 3 from the buffer at 0.
Put 72 product into buffer at 0.
Take out 157 from the buffer at 1.
Take out 121 from the buffer at 2.
Put 5 product into buffer at 1.
Take out 182 from the buffer at 3.
Put 170 product into buffer at 2.
Put 195 product into buffer at 3.
Take out 72 from the buffer at 0.
Put 27 product into buffer at 0.
Take out 5 from the buffer at 1.
Put 86 product into buffer at 1.
Take out 170 from the buffer at 2.
Take out 195 from the buffer at 3.
Put 149 product into buffer at 2.
Take out 27 from the buffer at 0.
Put 160 product into buffer at 3.
Take out 86 from the buffer at 1.
Put 60 product into buffer at 0.
Take out 149 from the buffer at 2.
Take out 160 from the buffer at 3.
Take out 60 from the buffer at 0.
Put 19 product into buffer at 1.
Take out 19 from the buffer at 1.
Put 181 product into buffer at 2.
Take out 181 from the buffer at 2.
Put 109 product into buffer at 3.
Take out 109 from the buffer at 3.
Put 123 product into buffer at 0.
Take out 123 from the buffer at 0.
Put 65 product into buffer at 1.
Put 28 product into buffer at 2.
Take out 65 from the buffer at 1.
Take out 28 from the buffer at 2.
Put 31 product into buffer at 3.
Take out 31 from the buffer at 3.
Put 85 product into buffer at 0.
Take out 85 from the buffer at 0.
Put 198 product into buffer at 1.
Take out 198 from the buffer at 1.
Put 46 product into buffer at 2.
Take out 46 from the buffer at 2.
Put 173 product into buffer at 3.
Put 84 product into buffer at 0.
Take out 173 from the buffer at 3.
Put 161 product into buffer at 1.
Put 158 product into buffer at 2.
Take out 84 from the buffer at 0.
Put 105 product into buffer at 3.
Take out 161 from the buffer at 1.
Put 14 product into buffer at 0.
Put 59 product into buffer at 1.
Take out 158 from the buffer at 2.
Take out 105 from the buffer at 3.
Put 17 product into buffer at 2.
Take out 14 from the buffer at 0.
Put 127 product into buffer at 3.
Put 85 product into buffer at 0.
Take out 59 from the buffer at 1.
Take out 17 from the buffer at 2.
Take out 127 from the buffer at 3.
Put 77 product into buffer at 1.
Put 111 product into buffer at 2.
Take out 85 from the buffer at 0.
Take out 77 from the buffer at 1.
Put 188 product into buffer at 3.
Take out 111 from the buffer at 2.
Put 158 product into buffer at 0.
Take out 188 from the buffer at 3.
Put 36 product into buffer at 1.
Put 94 product into buffer at 2.
Take out 158 from the buffer at 0.
Put 99 product into buffer at 3.
Take out 36 from the buffer at 1.
Put 160 product into buffer at 0.
Take out 94 from the buffer at 2.
Take out 99 from the buffer at 3.
Take out 160 from the buffer at 0.
Put 132 product into buffer at 1.
Take out 132 from the buffer at 1.
Put 128 product into buffer at 2.
Take out 128 from the buffer at 2.
Put 99 product into buffer at 3.
Take out 99 from the buffer at 3.
Put 63 product into buffer at 0.
Take out 63 from the buffer at 0.
Put 81 product into buffer at 1.
Put 17 product into buffer at 2.
Take out 81 from the buffer at 1.
Take out 17 from the buffer at 2.
Put 113 product into buffer at 3.
Take out 113 from the buffer at 3.
Put 122 product into buffer at 0.
Take out 122 from the buffer at 0.
Put 42 product into buffer at 1.
Put 175 product into buffer at 2.
Put 30 product into buffer at 3.
Put 101 product into buffer at 0.
Take out 42 from the buffer at 1.
Take out 175 from the buffer at 2.
Put 150 product into buffer at 1.
Take out 30 from the buffer at 3.
Put 110 product into buffer at 2.
Take out 101 from the buffer at 0.
Take out 150 from the buffer at 1.
Put 36 product into buffer at 3.
Take out 110 from the buffer at 2.
Put 11 product into buffer at 0.
Take out 36 from the buffer at 3.
Take out 11 from the buffer at 0.
Put 163 product into buffer at 1.
Put 133 product into buffer at 2.
Take out 163 from the buffer at 1.
Take out 133 from the buffer at 2.
Put 179 product into buffer at 3.
Take out 179 from the buffer at 3.
Put 119 product into buffer at 0.
Put 160 product into buffer at 1.
Take out 119 from the buffer at 0.
Put 138 product into buffer at 2.
Take out 160 from the buffer at 1.
Put 186 product into buffer at 3.
Take out 138 from the buffer at 2.
Put 102 product into buffer at 0.
Put 3 product into buffer at 1.
Take out 186 from the buffer at 3.
Take out 102 from the buffer at 0.
Put 118 product into buffer at 2.
Take out 3 from the buffer at 1.
Put 68 product into buffer at 3.
Take out 118 from the buffer at 2.
Put 112 product into buffer at 0.
Take out 68 from the buffer at 3.
Put 43 product into buffer at 1.
Take out 112 from the buffer at 0.
Put 49 product into buffer at 2.
Take out 43 from the buffer at 1.
Take out 49 from the buffer at 2.
Put 62 product into buffer at 3.
Take out 62 from the buffer at 3.
Put 187 product into buffer at 0.
Put 113 product into buffer at 1.
Take out 187 from the buffer at 0.
Put 52 product into buffer at 2.
Take out 113 from the buffer at 1.
Take out 52 from the buffer at 2.
Put 118 product into buffer at 3.
Take out 118 from the buffer at 3.
Put 146 product into buffer at 0.
Take out 146 from the buffer at 0.
Put 169 product into buffer at 1.
Take out 169 from the buffer at 1.
Put 35 product into buffer at 2.
Take out 35 from the buffer at 2.
Put 39 product into buffer at 3.
Put 4 product into buffer at 0.