tree checksum vpatch file split hunks

all signers: esthlos

antecedents: esthlos-v_genesis

press order:

esthlos-v_genesisesthlos
esthlos-v_keccakesthlos

patch:

- EFF698130F0EDD35CA0E2F7C7FDCFC09123C0857524CC7C5335D4014FDC8CD3DE170708168FB0E7884CCA80729900ECB97EC76B6004F9C1E404A3F14B13C2B10
+ 844018E22EB2AF046611F2014500B0BF73899181B32782AA4E1AC6D785C75860565685C7DDC21A73B6C3BEF506EE75BDD38BE544F6222234CCEFDE2AAE068E39
esthlos-v/manifest
(1 . 2)(1 . 2)
5 2018-08-26 esthlos
6 Creating skeleton for esthlos-v refactor
7 541426 keccak esthlos Introducing Keccak for hashing files.
8 2018-08-26 genesis esthlos Creating skeleton for esthlos-v refactor.
-
+ A2C506FF60B80DE331E9B32CC2A8DC0C93D93C4761BE039588CB0DCF127F2B0C3125A73BA573E79F577F81CC098D5D9A9C10426156951312F33BC8C076BB4698
esthlos-v/src/keccak/Makefile
(0 . 0)(1 . 19)
13 LISP=sbcl
14
15 all: ${LISP}
16
17 sbcl:
18 sbcl --no-sysinit --no-userinit --disable-debugger \
19 --load src/package.lisp \
20 --load src/knobs.lisp \
21 --load src/bits.lisp \
22 --load src/cl-keccak.lisp \
23 --eval "(sb-ext:save-lisp-and-die #p\"cl-keccak\" :toplevel #'cl-keccak::main :executable t)"
24
25 ccl:
26 ccl --no-init \
27 --load src/package.lisp \
28 --load src/knobs.lisp \
29 --load src/bits.lisp \
30 --load src/cl-keccak.lisp
31 --eval "(ccl:save-application #P\"cl-keccak\" :toplevel-function #'cl-keccak::main :prepend-kernel t)"
- C8F357066CE1ADC92DB307976B98E772BAC91197E586EAA83C17DE5A570C8A866DC48FE15F3F0C1AA5BA939E90CAEFFF205D69ADBAEE2E33105035EB238E413D
+ 58434F3169E7DC52AB23B943337E56C60077D22E300B519DD63784A7EDE38F9F97299B24F16E304895C15691ECB384D7F5D7C2C13662156FFF9CEC17F58DBDFA
esthlos-v/src/keccak/README
(1 . 1)(1 . 22)
36 To contain a Keccak implementation.
37 Q: What is this?
38 A: This is an implementation of the Keccak hash function.
39
40 Q: What is a hash function?
41 A: A deterministic procedure which seems difficult to invert.
42
43 Q: What do you mean "seems difficult"?
44 A: Broadly speaking, there is no proof that common hash functions *are*
45 difficult to invert. Rather, we don't know efficient ways to invert them.
46
47 Q: What is Keccak?
48 A: https://keccak.team/keccak.html
49
50 Q: What are the advantages of Keccak over other hash functions?
51 A: Keccak has a few nice features (list not exhaustive):
52 - Keccak can take in arbitrarily large input, and return arbitrarily
53 large output.
54 - It's possible to trade security for speed, and vice versa.
55
56 Q: How does Keccak work?
57 A: Basically, Keccak loads bits into a large Rubik's cube, permutes those bits
58 in convoluted ways, and reads back bits from the Rubik's cube.
-
+ DD4119C228C1EEBA80482F41CB8677CB56F9B282C0AAEE6C92FCAC43610C6CA0E27FF7DBABC2919E738CEE32C94508260D6B73E1D76657E76912893A457667A7
esthlos-v/src/keccak/src/bits.lisp
(0 . 0)(1 . 65)
63 (in-package "CL-KECCAK")
64
65 (defun bit-chunk (bit-vector chunk-size)
66 (assert (= 0 (mod (length bit-vector) chunk-size)))
67 (let ((chunks '()))
68 (dotimes (c (/ (length bit-vector) chunk-size))
69 (push (subseq bit-vector
70 (* c chunk-size)
71 (* (1+ c) chunk-size))
72 chunks))
73 (nreverse chunks)))
74
75 (defun bit-pad-right (bv n)
76 (do ((x (coerce bv 'list) (append x '(0))))
77 ((>= (length x) n)
78 (coerce x 'simple-bit-vector))))
79
80 (defun bit-vector-concatenate (bit-vector-sequence)
81 (apply #'concatenate 'simple-bit-vector bit-vector-sequence))
82
83 (defun bit-vector-concatenate-uniform-vector (bit-vector-vector member-size)
84 (let ((rtn (make-sequence 'simple-bit-vector
85 (* member-size (length bit-vector-vector)))))
86 (dotimes (i (length bit-vector-vector))
87 (replace rtn
88 (aref bit-vector-vector i)
89 :start1 (* i member-size)
90 :end1 (* (1+ i) member-size)))
91 rtn))
92
93 (defun bit-vector-to-integer (bv)
94 (reduce #'(lambda (a b) (+ a (* 2 b)))
95 bv
96 :from-end t))
97
98 (defun bit-vector-to-hex (bv)
99 (apply #'concatenate
100 'string
101 (mapcar (lambda (n)
102 (let ((s (write-to-string n :base 16)))
103 (if (= (length s) 2)
104 s
105 (concatenate 'string "0" s))))
106 (mapcar #'bit-vector-to-integer
107 (bit-chunk bv 8)))))
108
109 (defun integer-to-bit-vector (n)
110 (labels ((bit-array-iter (n array)
111 (if (zerop n)
112 array
113 (multiple-value-bind (q r)
114 (floor n 2)
115 (bit-array-iter q
116 (append array (list r)))))))
117 (bit-pad-right (bit-array-iter n '()) 8)))
118
119 (defun file-to-bit-vector (filepath)
120 (with-open-file (f filepath :direction :input :element-type 'bit)
121 (bit-vector-concatenate-uniform-vector
122 (map 'vector
123 #'integer-to-bit-vector
124 (let ((s (make-sequence 'list (file-length f))))
125 (read-sequence s f)
126 s))
127 +bits-in-byte+)))
-
+ 1BA7F252F6402D72569874D25F59F15992D844E16B678C5CEDD6F0A837065E8BD5238A9FD7F2977B927E8093CD0E915BF2FE395C211C8B11565FE49C43F46A3D
esthlos-v/src/keccak/src/cl-keccak.lisp
(0 . 0)(1 . 284)
132 (in-package "CL-KECCAK")
133
134
135 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
136 ;; magic numbers
137
138 (defconstant +row-size+ 5)
139 (defconstant +column-size+ 5)
140 (defconstant +lane-size+ (expt 2 +keccak_L+))
141 (defconstant +keccak-width+ (* +row-size+ +column-size+ +lane-size+))
142 (defconstant +round-quantity+ (+ 12 (* 2 +keccak_L+)))
143
144
145 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
146 ;; lanes
147
148 ;; definition of a lane
149 (deftype lane () `(simple-bit-vector ,+lane-size+))
150
151 ;; instantiation of lanes
152 (defun make-lane ()
153 (make-sequence 'lane +lane-size+ :initial-element 0))
154
155 ;; copy a lane into a new memory location
156 (defun copy-lane (lane)
157 (make-array `(,+lane-size+) :element-type 'bit
158 :initial-contents lane))
159
160 ;; basic operations on lanes
161 (defun lane-and (a b)
162 (declare (type lane a b))
163 (bit-and a b))
164
165 (defun lane-xor (a b)
166 (declare (type lane a b))
167 (bit-xor a b))
168
169 (defun lane-not (a)
170 (declare (type lane a))
171 (bit-not a))
172
173 (defun lane-rot (a n)
174 (let* ((rtn (make-lane)))
175 (dotimes (z +lane-size+)
176 (setf (aref rtn (mod (+ z n) +lane-size+))
177 (aref a z)))
178 rtn))
179
180
181 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
182 ;; magic lanes
183
184 (defconstant +round-constants+
185 (let ((magic
186 '(#*1000000000000000000000000000000000000000000000000000000000000000
187 #*0100000100000001000000000000000000000000000000000000000000000000
188 #*0101000100000001000000000000000000000000000000000000000000000001
189 #*0000000000000001000000000000000100000000000000000000000000000001
190 #*1101000100000001000000000000000000000000000000000000000000000000
191 #*1000000000000000000000000000000100000000000000000000000000000000
192 #*1000000100000001000000000000000100000000000000000000000000000001
193 #*1001000000000001000000000000000000000000000000000000000000000001
194 #*0101000100000000000000000000000000000000000000000000000000000000
195 #*0001000100000000000000000000000000000000000000000000000000000000
196 #*1001000000000001000000000000000100000000000000000000000000000000
197 #*0101000000000000000000000000000100000000000000000000000000000000
198 #*1101000100000001000000000000000100000000000000000000000000000000
199 #*1101000100000000000000000000000000000000000000000000000000000001
200 #*1001000100000001000000000000000000000000000000000000000000000001
201 #*1100000000000001000000000000000000000000000000000000000000000001
202 #*0100000000000001000000000000000000000000000000000000000000000001
203 #*0000000100000000000000000000000000000000000000000000000000000001
204 #*0101000000000001000000000000000000000000000000000000000000000000
205 #*0101000000000000000000000000000100000000000000000000000000000001
206 #*1000000100000001000000000000000100000000000000000000000000000001
207 #*0000000100000001000000000000000000000000000000000000000000000001
208 #*1000000000000000000000000000000100000000000000000000000000000000
209 #*0001000000000001000000000000000100000000000000000000000000000001)))
210 (make-array '(24)
211 :element-type 'lane
212 :initial-contents
213 (mapcar #'(lambda (x) (subseq x 0 +lane-size+))
214 magic))))
215
216
217 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
218 ;; states
219
220 ;; definition of a keccak state
221 (deftype state () `(array lane (,+row-size+ ,+column-size+)))
222
223 ;; instantiation of states
224 (defun make-state ()
225 (make-array `(,+row-size+ ,+column-size+)
226 :element-type 'lane
227 :initial-element (make-lane)))
228
229 ;; accessing the lanes of a state
230 (defun lane (a x y)
231 (declare (type state a)
232 (type fixnum x y))
233 (aref a (mod x +row-size+) (mod y +column-size+)))
234
235 ;; mutating the lanes of a state
236 (defmethod set-lane (a x y L)
237 (setf (aref a (mod x +row-size+) (mod y +column-size+))
238 L))
239
240 (defsetf lane set-lane)
241
242 ;; a macro for modifying and returning a state
243 (defmacro with-return-state (s &rest body)
244 `(let ((,(first s) (if (= ,(length s) 2)
245 (copy-state ,(second s))
246 (make-state))))
247 (progn ,@body)
248 ,(first s)))
249
250 ;; a macro for traversing the lanes of a state in the
251 ;; standard order (x,y) = (0,0), (1,0), (2,0), ...
252 (defmacro while-traversing-state (vars &body body)
253 `(dotimes (,(second vars) +column-size+)
254 (dotimes (,(first vars) +row-size+)
255 ,@body)))
256
257 ;; copy a state into a new memory location
258 (defun copy-state (state)
259 (let ((s (make-array `(,+row-size+ ,+column-size+)
260 :initial-element (make-lane)
261 :element-type 'lane)))
262 (dotimes (x +row-size+)
263 (dotimes (y +column-size+)
264 (setf (lane s x y)
265 (copy-lane (lane state x y)))))
266 s))
267
268 ;; transform a state into a single bit vector, concatenating
269 ;; the lanes in the standard order
270 (defun state-linearize (state)
271 (let ((r '()))
272 (with-return-state (s state)
273 (while-traversing-state (x y)
274 (push (lane s x y) r)))
275 (bit-vector-concatenate (nreverse r))))
276
277 ;; transform a bit vector into a state, filling the
278 ;; lanes in the standard order
279 (defun state-unlinearize (linearized-state)
280 (let ((chunked-state (bit-chunk linearized-state
281 +lane-size+)))
282 (with-return-state (s)
283 (while-traversing-state (x y)
284 (setf (lane s x y) (pop chunked-state))))))
285
286 (defun state-xor (state bit-vector)
287 (state-unlinearize (bit-xor (state-linearize state)
288 (bit-pad-right bit-vector
289 +keccak-width+))))
290
291
292 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
293 ;; keccak round operations
294
295 (defun theta (a)
296 (with-return-state (b)
297 (let* ((c (make-sequence '(vector lane) +row-size+
298 :initial-element (make-lane)))
299 (d (make-sequence '(vector lane) +row-size+
300 :initial-element (make-lane))))
301 (dotimes (x +row-size+)
302 (setf (aref c x)
303 (lane a x 0))
304 (loop for y from 1 below +column-size+
305 do (setf (aref c x)
306 (lane-xor (aref c x)
307 (lane a x y)))))
308 (dotimes (x +row-size+)
309 (setf (aref d x)
310 (lane-xor (aref c (mod (- x 1) +row-size+))
311 (lane-rot (aref c (mod (+ x 1) +row-size+))
312 1)))
313 (dotimes (y +column-size+)
314 (setf (lane b x y)
315 (lane-xor (lane a x y)
316 (aref d x))))))))
317
318 (defun rho (a)
319 (with-return-state (b)
320 (setf (lane b 0 0) (lane a 0 0))
321 (let ((x 1) (y 0))
322 (dotimes (q 24)
323 (setf (lane b x y)
324 (lane-rot (lane a x y)
325 (/ (* (+ q 1)
326 (+ q 2))
327 2)))
328 (psetq x y
329 y (+ (* 2 x)
330 (* 3 y)))))))
331
332 (defun k-pi (a)
333 (with-return-state (b)
334 (dotimes (x +row-size+)
335 (dotimes (y +column-size+)
336 (setf (lane b y (+ (* 2 x)
337 (* 3 y)))
338 (lane a x y))))))
339
340 (defun chi (a)
341 (with-return-state (b)
342 (dotimes (x +row-size+)
343 (dotimes (y +column-size+)
344 (setf (lane b x y)
345 (lane-xor (lane a x y)
346 (lane-and (lane-not (lane a (+ x 1) y))
347 (lane a (+ x 2) y))))))))
348
349 (defun iota (r a)
350 (with-return-state (b a)
351 (setf (lane b 0 0)
352 (lane-xor (lane b 0 0)
353 (aref +round-constants+ r)))))
354
355 (defun keccak-permute (a)
356 (with-return-state (b a)
357 (dotimes (r +round-quantity+)
358 (setq b (iota r (chi (k-pi (rho (theta b)))))))))
359
360
361 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
362 ;; sponge
363
364 (defun keccak-pad (bit-vector bitrate)
365 (labels ((remaining-space (bit-vector bitrate)
366 (abs (nth-value 1 (ceiling (+ 2 (length bit-vector))
367 bitrate)))))
368 (bit-vector-concatenate (list
369 bit-vector
370 #*1
371 (make-sequence 'simple-bit-vector
372 (remaining-space bit-vector
373 bitrate))
374 #*1))))
375
376 (defun keccak-absorb (bit-vector bitrate)
377 (assert (< bitrate +keccak-width+))
378 (with-return-state (s)
379 (dolist (c (bit-chunk (keccak-pad bit-vector bitrate) bitrate))
380 (setq s (state-xor s c))
381 (setq s (keccak-permute s)))))
382
383 (defun keccak-squeeze (state bitrate output-bits)
384 (assert (< bitrate +keccak-width+))
385 (let ((rtn '()))
386 (do ((remaining-bits output-bits (- remaining-bits
387 bitrate)))
388 ((> bitrate remaining-bits)
389 (push (subseq (state-linearize state) 0 remaining-bits)
390 rtn))
391 (push (subseq (state-linearize state) 0 bitrate)
392 rtn)
393 (setq state (keccak-permute state)))
394 (bit-vector-concatenate (nreverse rtn))))
395
396 (defun keccak-sponge (input-bit-vector bitrate output-bits)
397 (keccak-squeeze (keccak-absorb input-bit-vector
398 bitrate)
399 bitrate
400 output-bits))
401
402 (defun keccak-hash-file (filepath bitrate output-bits)
403 (bit-vector-to-hex (keccak-sponge (file-to-bit-vector filepath)
404 bitrate
405 output-bits)))
406
407 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
408 ;; for use as an executable
409
410 (defun main ()
411 (let ((args #+sbcl (cdr sb-ext:*posix-argv*)
412 #+ccl (cdr ccl:*command-line-argument-list*)))
413 (princ (string-downcase (keccak-hash-file (first args)
414 +bitrate+
415 +output-bits+)))))
-
+ 3D1DB3CDA28DDC6FC6FB84E36A74C4FAF124C79EBD29253F6E9333F1C42B9C1A15A8FF5C1FAF10A42F1F6516C95C26EBD1199E9619586B68588E7A92661CF302
esthlos-v/src/keccak/src/knobs.lisp
(0 . 0)(1 . 13)
420 (in-package "CL-KECCAK")
421
422 ;; the number of bits in a byte, arch-specific
423 (defconstant +bits-in-byte+ 8)
424
425 ;; the keccak L parameter, takes a value in {1,2,3,4,5,6}
426 (defconstant +keccak_L+ 6)
427
428 ;; the number of bits absorbed into the sponge on each pass
429 (defconstant +bitrate+ 1344)
430
431 ;; the desired number of output bits
432 (defconstant +output-bits+ 512)
-
+ 1678C2CCFE0B012EB0B39B1195AAF7EFBA93E58BB2AF13021985785E4903FB433E9E8D114D92355B5CA755E52E50DF5F5613AE79A68D578C05B6E06ADA448C90
esthlos-v/src/keccak/src/package.lisp
(0 . 0)(1 . 3)
437 (defpackage "CL-KECCAK"
438 (:use "COMMON-LISP" "CL-USER")
439 (:export keccak-sponge))
-
+ EE723F4B0A9ED48D82A438628A13505F9BA96B5F295CE9210F684ACE521A6FE81E0209EF3C057602A00A059C017D8CA8896AEDDC997D47CEBEEA3FFA7BCA2E1F
esthlos-v/src/keccak/tests/Makefile
(0 . 0)(1 . 21)
444 LISP=sbcl
445
446 all: ${LISP}
447
448 sbcl:
449 sbcl --no-sysinit --no-userinit --disable-debugger \
450 --load ../src/package.lisp \
451 --load ../src/knobs.lisp \
452 --load ../src/bits.lisp \
453 --load ../src/cl-keccak.lisp \
454 --load cl-keccak-tests.lisp \
455 --eval "(sb-ext:save-lisp-and-die #p\"cl-keccak-tests\" :toplevel #'cl-keccak::run-tests :executable t)"
456
457 ccl:
458 ccl --no-init \
459 --load ../src/package.lisp \
460 --load ../src/knobs.lisp \
461 --load ../src/bits.lisp \
462 --load ../src/cl-keccak.lisp \
463 --load cl-keccak-tests.lisp \
464 --eval "(ccl:save-application #P\"cl-keccak-tests\" :toplevel-function #'cl-keccak::run-tests :prepend-kernel t)"
-
+ ECEC566A319B63627CFFC8D5B02F4BE1ADE91D1C425D88FE1DB0A9F3949488D4AAAEB7E76998BA1F12E80C4492BB15EE45B735C1388828E988171C7A9825A0CF
esthlos-v/src/keccak/tests/README
(0 . 0)(1 . 3)
469 To run the tests:
470 1. Run make
471 2. Run the resulting executable
-
+ DC7BD6F5202C4B4D5943A4FB7FAA8F46D1DC02A29B9D8F794007BC0D43359C9003BCA218A6BB2AC03F582EA27415939F8EE5C0C0C6055BB0C9280E7E8E1698AD
esthlos-v/src/keccak/tests/cl-keccak-tests.lisp
(0 . 0)(1 . 227)
477 (in-package "CL-KECCAK")
478
479 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
480 ;; utility functions for moving between integers and lanes
481 ;; these are not used in cl-keccak proper. rather, they are
482 ;; for testing and generating the round constants
483
484 (defun bit-truncate-right (bv n)
485 (subseq bv 0 n))
486
487 (defun integer-to-lane (n)
488 (labels ((bit-array-iter (n array)
489 (if (zerop n)
490 array
491 (multiple-value-bind (q r)
492 (floor n 2)
493 (bit-array-iter q
494 (append array (list r)))))))
495 (bit-truncate-right (bit-pad-right (bit-array-iter n '())
496 +lane-size+)
497 +lane-size+)))
498
499 (defun lane-to-integer (bv)
500 (reduce #'(lambda (a b) (+ a (* 2 b)))
501 bv
502 :from-end t))
503
504 (defun lane-to-string (lane &optional (raw t))
505 (if raw
506 (format nil "~a" lane)
507 (let ((fmt-str (format nil
508 "~~~d,'0X"
509 (max 0 (/ +lane-size+ 4)))))
510 (format nil fmt-str (lane-to-integer lane)))))
511
512
513 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
514 ;; test for magic constants.
515 ;; numbers used to generate the lanes can be found here:
516 ;; https://keccak.team/keccak_specs_summary.html#roundConstants
517
518 (defun test-magic-constants (&optional (stream t))
519 (let ((errors nil)
520 (calculated-constants
521 (make-array '(24)
522 :element-type 'lane
523 :initial-contents
524 (mapcar #'integer-to-lane
525 '(#x0000000000000001
526 #x0000000000008082
527 #x800000000000808a
528 #x8000000080008000
529 #x000000000000808b
530 #x0000000080000001
531 #x8000000080008081
532 #x8000000000008009
533 #x000000000000008a
534 #x0000000000000088
535 #x0000000080008009
536 #x000000008000000a
537 #x000000008000808b
538 #x800000000000008b
539 #x8000000000008089
540 #x8000000000008003
541 #x8000000000008002
542 #x8000000000000080
543 #x000000000000800a
544 #x800000008000000a
545 #x8000000080008081
546 #x8000000000008080
547 #x0000000080000001
548 #x8000000080008008)))))
549 (dotimes (x 24)
550 (let ((a (aref calculated-constants x))
551 (b (aref +round-constants+ x)))
552 (format stream "Constant number ~d~%" x)
553 (format stream "Actual: ~a~%" a)
554 (format stream "Expected: ~a~%" b)
555 (format stream "Status: ~a~%"
556 (if (equal a b) "OK" (progn (push x errors)
557 "ERROR")))))
558 (if errors
559 (format t "ERRORS DETECTED! SEE CONSTANTS: ~a" errors)
560 (format t "Test passed with no errors."))))
561
562
563 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
564 ;; various procedures to test states
565
566 (defun print-state (state &optional (raw t) (stream t))
567 (while-traversing-state (x y)
568 (format stream
569 (if (or raw (= x (1- +row-size+)))
570 "~a~%"
571 "~a ")
572 (lane-to-string (lane state x y) raw))))
573
574 (defun read-state (stream)
575 (with-return-state (b)
576 (dotimes (y +column-size+)
577 (dotimes (x +row-size+)
578 (setf (lane b x y) (read stream))))))
579
580 (defun diff-states (state1 state2)
581 (let ((diff '()))
582 (dotimes (x +row-size+)
583 (dotimes (y +column-size+)
584 (if (not (equal (lane state1 x y)
585 (lane state2 x y)))
586 (setq diff (append diff (list (cons x y)))))))
587 diff))
588
589
590 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
591 ;; tests of the permutation functions
592
593 (defun print-keccak-permute (state &optional (stream t) (raw t))
594 (format stream ";; Initial state:~%")
595 (print-state state raw stream)
596 (dotimes (r +round-quantity+)
597 (let ((maps (list (cons "theta" #'theta)
598 (cons "rho" #'rho)
599 (cons "pi" #'k-pi)
600 (cons "chi" #'chi)
601 (cons "iota" #'(lambda (a) (iota r a))))))
602 (format stream "~%;; Round ~d~%~%" r)
603 (dolist (m maps)
604 (format stream ";; After ~a:~%" (car m))
605 (print-state (setq state
606 (funcall (cdr m) state))
607 raw
608 stream))))
609 (format stream "~%;; Final state:~%")
610 (state-linearize state)
611 (print-state state raw stream))
612
613 (defun test-keccak-permute (test-file &optional (stream t))
614 (with-open-file (f test-file :direction :input)
615 (handler-case
616 (let* ((input-state (read-state f))
617 (calculated-state input-state))
618 (dotimes (r +round-quantity+)
619 (let ((maps `(("theta" ,#'theta)
620 ("rho" ,#'rho)
621 ("pi" ,#'k-pi)
622 ("chi" ,#'chi)
623 ("iota" ,#'(lambda (a) (iota r a))))))
624 (dolist (m maps)
625 (format stream "Testing: (~2,'0d, ~a)~%" r (first m))
626 (psetq input-state (read-state f)
627 calculated-state (funcall (second m)
628 calculated-state))
629 (format stream "Expected:~%")
630 (print-state input-state nil stream)
631 (format stream "Calculated:~%")
632 (print-state calculated-state nil stream)
633 (if (null (diff-states input-state calculated-state))
634 (format stream "Passed: (~2,'0d, ~a)~%" r (first m))
635 (progn
636 (format stream "~%FAILED on permutation ~a, round ~d~%"
637 (first m) r)
638 (format stream "Input state:~%")
639 (print-state input-state nil stream)
640 (format stream "Calculated state:~%")
641 (print-state calculated-state nil stream)
642 (error "State mismatch")))))))
643 (error (c) t)))
644 (format stream "All permutation function tests passed.~%"))
645
646
647 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
648 ;; procedure for testing the sponge
649
650 (defun test-keccak-sponge (input-bit-vector
651 expected-output-bit-vector-file
652 bitrate
653 output-bits
654 &optional (stream t) (output nil))
655 (let ((expected-output-bit-vector
656 (with-open-file (f expected-output-bit-vector-file :direction :input)
657 (read f))))
658 (format stream
659 "Testing sponge with input ~A, bitrate ~d, and output bit quantity ~d.~%"
660 input-bit-vector
661 bitrate
662 output-bits)
663 (setq output (keccak-sponge input-bit-vector bitrate output-bits))
664 (format stream "Output:~%~a~%" (bit-vector-to-hex output))
665 (format stream
666 (if (equal expected-output-bit-vector output)
667 "Output matches expected value. Test passed.~%"
668 "TEST FAILED! Output does NOT match expected value.~%"))))
669
670
671 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
672 ;; running the tests
673
674 (defun run-tests (&optional (out t))
675 (let ((tests
676 `(("Testing row constant generation~%"
677 ,(lambda () (test-magic-constants
678 out)))
679 ("Testing permutations from zero state~%"
680 ,(lambda () (test-keccak-permute "testzerostate.txt"
681 out)))
682 ("Testing permutations from nonzero state~%"
683 ,(lambda () (test-keccak-permute "testnonzerostate.txt"
684 out)))
685 ("First sponge test~%"
686 ,(lambda () (test-keccak-sponge #*11001
687 "testspongeoutput1.txt"
688 1344
689 4096
690 out)))
691 ("Second sponge test~%"
692 ,(lambda () (test-keccak-sponge #*110010100001101011011110100110
693 "testspongeoutput2.txt"
694 1344
695 1344
696 out))))))
697 (do ((error nil)
698 (n 0 (incf n)))
699 ((or error
700 (= n (length tests))))
701 (format out (first (nth n tests)))
702 (funcall (second (nth n tests)))
703 (format out "~%~%"))))
-
+ 7BB19663C623299AF73E44EF88C418F32E7FAB39646D23BDE719F38E7F69C2147624C6A75AB036F99BAC084B977C7A618C3E0FDE38DF0E88F6469B7C612C4A3D
esthlos-v/src/keccak/tests/testnonzerostate.txt
(0 . 0)(1 . 3245)
708 ;; Initial state:
709 #*1110011110111011100001110000001010011110111100011010010010001111
710 #*0101000111100010000000111100110010011111001100111010101100100001
711 #*0111011110010101010110100110010101111000011001000001100110101011
712 #*1011001010010010000000011111011000001100111000101010100010111101
713 #*1110101000001011110010100100011010100000011100100001010011010001
714 #*0010101111110110011100011111111010110100001001011110100111111111
715 #*0010001111100010011000100010010100000101101001110111111100001001
716 #*0110111001110100100110000110101100110000010110111101101000110001
717 #*0011100110100000100110001101100011101111011001010000110010110101
718 #*0010011000111111111100010000101111101101010110101100100100001100
719 #*1010110001101011111010001100010011111100100101010101101011010111
720 #*1100000010000100100011101011000001100100011001110110010110010101
721 #*1111101010101010111100111101101101101000001111101010010110000001
722 #*0110010000010011111000101100000010110011100011000001110111000010
723 #*1111100101101010101001011000100001011000111101000100111110000000
724 #*1000011001110101100110111000010001011010110001101010011110100000
725 #*0100111100001110100100110011000101001111011111110111110100100110
726 #*1000100001100110001000111101111010101001000011100110110010000110
727 #*1101001101110000000010111111001010101010010110100011111000011101
728 #*0001001101001100111100110011100001010001000101110111110000110001
729 #*0010100001100100010111000111010101000100100111100011000000101001
730 #*0010011110010000101000110100010100100100100111111000001000011000
731 #*0100001110100110001000001110011101100100101011001010111101101000
732 #*1101110010000101000011001111111010010111001000100110111110101110
733 #*1001001001000101001101110011101011011110111111111000111101010111
734
735 ;; Round 0
736
737 ;; After theta:
738 #*1011111011100001101100100101001111001110010011000110001011110101
739 #*0000101110010000010000110111001100100001111110111111100111110101
740 #*0101110111100101101110110011100111011011110011101010001100010100
741 #*0100000000110010100111100111100100101100010110110011110111010101
742 #*0110110111000100010110100100000000101001000011010011110010111111
743 #*0111001010101100010001001010111111100100100110000010111110000101
744 #*0111100110010000001000101001101010111011011011110010110111011101
745 #*0100010000000100011110010011011110010011111100010110000010001110
746 #*1100101100000000000001110101011111001111110111001001100111011101
747 #*1010000111110000011000010000110101100100001001011110000101100010
748 #*1111010100110001110111011001010110101100001010001001110010101101
749 #*1001101011110110110011100000111111011010101011110011011101000001
750 #*1101000011011010000100101000011111001011100101000001111100111110
751 #*1001011010110011011111010100111110010011001101011000100010101010
752 #*0111111010100101001101011000111011010001100010110110011111101110
753 #*1101111100101111101011101101010100001010011110110110000111011010
754 #*0001010101111100110100111000111011110001101101110010111111110010
755 #*1010001000010110110000101000001000001010101001001101011000111001
756 #*0010000111010000100101000111110110001010111000111010101101110101
757 #*1001010010000011011000110011111011011000011010000101010001011111
758 #*0111000100111110011010010010010000010100001000111111011001010011
759 #*0111110111100010111000111111101010011010010101111101000011001100
760 #*0110100111010110110000011011101111000111000001100001010111010111
761 #*0010111000100101100100110111000110110111100110111111101011000110
762 #*0001010110001010101001110011110001010111100000001010011100111001
763 ;; After rho:
764 #*1011111011100001101100100101001111001110010011000110001011110101
765 #*1000010111001000001000011011100110010000111111011111110011111010
766 #*0111011110010110111011001110011101101111001110101000110001010001
767 #*1100010110110011110111010101010000000011001010011110011110010010
768 #*0010000110100111100101111110110110111000100010110100100000000101
769 #*1111111001001001100000101111100001010111001010101100010001001010
770 #*0010100110101011101101101111001011011101110101111001100100000010
771 #*0011100100010000000100011110010011011110010011111100010110000010
772 #*0000000000001110101011111001111110111001001100111011101110010110
773 #*0101111000010110001010100001111100000110000100001101011001000010
774 #*1011111010100110001110111011001010110101100001010001001110010101
775 #*1101000001100110101111011011001110000011111101101010101111001101
776 #*0101000011111001011100101000001111100111110110100001101101000010
777 #*1001101011000100010101010100101101011001101111101010011111001001
778 #*0001110110100011000101101100111111011100111111010100101001101011
779 #*0110101010000101001111011011000011101101011011111001011111010111
780 #*1001110001110111100011011011100101111111100100001010101111100110
781 #*1010110001110011010001000010110110000101000001000001010101001001
782 #*0001110101011011101010010000111010000100101000111110110001010111
783 #*0101111110010100100000110110001100111110110110000110100001010100
784 #*1111110110010100110111000100111110011010010010010000010100001000
785 #*0001111101111000101110001111111010100110100101011111010000110011
786 #*0100111010110110000011011101111000111000001100001010111010111011
787 #*0010010110010011011100011011011110011011111110101100011000101110
788 #*1001110011100100010101100010101010011100111100010101111000000010
789 ;; After pi:
790 #*1011111011100001101100100101001111001110010011000110001011110101
791 #*0010100110101011101101101111001011011101110101111001100100000010
792 #*0101000011111001011100101000001111100111110110100001101101000010
793 #*0001110101011011101010010000111010000100101000111110110001010111
794 #*1001110011100100010101100010101010011100111100010101111000000010
795 #*1100010110110011110111010101010000000011001010011110011110010010
796 #*0101111000010110001010100001111100000110000100001101011001000010
797 #*1011111010100110001110111011001010110101100001010001001110010101
798 #*1001110001110111100011011011100101111111100100001010101111100110
799 #*0100111010110110000011011101111000111000001100001010111010111011
800 #*1000010111001000001000011011100110010000111111011111110011111010
801 #*0011100100010000000100011110010011011110010011111100010110000010
802 #*1001101011000100010101010100101101011001101111101010011111001001
803 #*0101111110010100100000110110001100111110110110000110100001010100
804 #*1111110110010100110111000100111110011010010010010000010100001000
805 #*0010000110100111100101111110110110111000100010110100100000000101
806 #*1111111001001001100000101111100001010111001010101100010001001010
807 #*1101000001100110101111011011001110000011111101101010101111001101
808 #*1010110001110011010001000010110110000101000001000001010101001001
809 #*0010010110010011011100011011011110011011111110101100011000101110
810 #*0111011110010110111011001110011101101111001110101000110001010001
811 #*0000000000001110101011111001111110111001001100111011101110010110
812 #*0001110110100011000101101100111111011100111111010100101001101011
813 #*0110101010000101001111011011000011101101011011111001011111010111
814 #*0001111101111000101110001111111010100110100101011111010000110011
815 ;; After chi:
816 #*1110111010110001111100100101001011101100010001000110000010110101
817 #*0010010010101001001111111111111011011101111101100111110100010111
818 #*1101000001011101001001001010001111111111100010100000100101000010
819 #*0011111101011010000010010101111111000110101011111100110010100010
820 #*1001110111101110010100101000101010001101011000101100011100000000
821 #*0110010100010011110011001111010010110010101011001110011000000111
822 #*0101111001000111101011100001011001001100000000000111111000100000
823 #*1111110000100110001110111111010010110101101001010001011110001100
824 #*0001110101110110010111011011100101111100100110011110101011100110
825 #*0101010010110010001011111101010100111100001000001011111011111011
826 #*0000011100001100011001011011001010010001010011011101111010110011
827 #*0111110000000000100100111100010011111000000011111000110110010110
828 #*0011101011000100000010010100011111011001101111111010001011000001
829 #*0101111111011100101000101101001100111110011011001001000010100110
830 #*1100010110000100110011000000101111010100010010110000010000001000
831 #*0010000110000001101010101110111000111000010111110110001110000000
832 #*1101001001011000110000101111010001010011001010101101000001001010
833 #*1101000111100110100011000010000110011001000011000110100111101011
834 #*1010110001010111110000100110010110100101000001010001110101001000
835 #*1111101111011011011100011010011111011100110110100100001001100100
836 #*0110101000110111111111001010011100101011111101101100110000111000
837 #*0110001000001010100001101010111110011000001100010010111000000010
838 #*0000100011011011100101101000000111011110011011010010101001001011
839 #*0000101000000011011110011011000110100100010001011001111110010111
840 #*0001111101110000101110111110011000110110100101001100011110110101
841 ;; After iota:
842 #*0110111010110001111100100101001011101100010001000110000010110101
843 #*0010010010101001001111111111111011011101111101100111110100010111
844 #*1101000001011101001001001010001111111111100010100000100101000010
845 #*0011111101011010000010010101111111000110101011111100110010100010
846 #*1001110111101110010100101000101010001101011000101100011100000000
847 #*0110010100010011110011001111010010110010101011001110011000000111
848 #*0101111001000111101011100001011001001100000000000111111000100000
849 #*1111110000100110001110111111010010110101101001010001011110001100
850 #*0001110101110110010111011011100101111100100110011110101011100110
851 #*0101010010110010001011111101010100111100001000001011111011111011
852 #*0000011100001100011001011011001010010001010011011101111010110011
853 #*0111110000000000100100111100010011111000000011111000110110010110
854 #*0011101011000100000010010100011111011001101111111010001011000001
855 #*0101111111011100101000101101001100111110011011001001000010100110
856 #*1100010110000100110011000000101111010100010010110000010000001000
857 #*0010000110000001101010101110111000111000010111110110001110000000
858 #*1101001001011000110000101111010001010011001010101101000001001010
859 #*1101000111100110100011000010000110011001000011000110100111101011
860 #*1010110001010111110000100110010110100101000001010001110101001000
861 #*1111101111011011011100011010011111011100110110100100001001100100
862 #*0110101000110111111111001010011100101011111101101100110000111000
863 #*0110001000001010100001101010111110011000001100010010111000000010
864 #*0000100011011011100101101000000111011110011011010010101001001011
865 #*0000101000000011011110011011000110100100010001011001111110010111
866 #*0001111101110000101110111110011000110110100101001100011110110101
867
868 ;; Round 1
869
870 ;; After theta:
871 #*0101110110011100101010100111110010110010011100101010000011100011
872 #*1000010001110000001101001111101101101011100000100111010101111001
873 #*1000101100110011010001000010010010011111111001010110001110110101
874 #*1000010011100001101110000110010111010101111111011100111100011100
875 #*1110010111000110000110011100010111100110011111101000100011100001
876 #*0101011000111110100101001101101011101100100110100010011001010001
877 #*1111111010011110101001010001001111111010011101000111011001001110
878 #*1010011101001000010110110111001111010101110010100111110101111011
879 #*1010011011001101111011001000001101101111110010111110100101011000
880 #*0010110010011010011001001001101001010111001111001111000100011010
881 #*0011010000100001001111011001110011001111011110110001111011100101
882 #*1101110011011001100110001100000101001110011110111000010111111000
883 #*0110000110101010011010011100000010111001110100001100100000110110
884 #*1110010001100111000100111110100100101101001111101001001100011000
885 #*1011110110101100100001110100010010111111010101110100101111101001
886 #*0001001010101100111100101100000001100110011010011010001111010110
887 #*0111001010000001110010011111000111100101010111101101100000100100
888 #*1000101010001000111011001010011011111001011000110000001100011100
889 #*0001011111101100011100110101111110110110010101110001111011110110
890 #*1000001111110011001110101110100010110111110001100000110110000101
891 #*0101100100011010101001001000100101110101110000000000110001101110
892 #*1100001011010011100011011010101000101110010001010010011001101100
893 #*0101001110110101111101100000011010111110000000100100000010111100
894 #*1011000110111000110010001000101110110111000101111001110000101001
895 #*0110011101011000111100001010100101011101100010001000100001010100
896 ;; After rho:
897 #*0101110110011100101010100111110010110010011100101010000011100011
898 #*1100001000111000000110100111110110110101110000010011101010111100
899 #*0010110011001101000100001001001001111111100101011000111011010110
900 #*0101111111011100111100011100100001001110000110111000011001011101
901 #*1100111111010001000111000011110010111000110000110011100010111100
902 #*1010111011001001101000100110010100010101011000111110100101001101
903 #*0101000100111111101001110100011101100100111011111110100111101010
904 #*1110111010011101001000010110110111001111010101110010100111110101
905 #*1001101111011001000001101101111110010111110100101011000101001101
906 #*1100111100010001101000101100100110100110010010011010010101110011
907 #*1010011010000100001001111011001110011001111011110110001111011100
908 #*0111111000110111001101100110011000110000010100111001111011100001
909 #*0011100000010111001110100001100100000110110011000011010101001101
910 #*1001111101001001100011000111001000110011100010011111010010010110
911 #*1000100101111110101011101001011111010011011110110101100100001110
912 #*0110000000110011001101001101000111101011000010010101011001111001
913 #*0100111110001111001010101111011011000001001000111001010000001110
914 #*0000011000111001000101010001000111011001010011011111001011000110
915 #*1011100011110111101100001011111101100011100110101111110110110010
916 #*1000010110000011111100110011101011101000101101111100011000001101
917 #*0000001100011011100101100100011010101001001000100101110101110000
918 #*0011000010110100111000110110101010001011100100010100100110011011
919 #*1001110110101111101100000011010111110000000100100000010111100010
920 #*1011100011001000100010111011011100010111100111000010100110110001
921 #*0010000101010001100111010110001111000010101001010111011000100010
922 ;; After pi:
923 #*0101110110011100101010100111110010110010011100101010000011100011
924 #*0101000100111111101001110100011101100100111011111110100111101010
925 #*0011100000010111001110100001100100000110110011000011010101001101
926 #*1011100011110111101100001011111101100011100110101111110110110010
927 #*0010000101010001100111010110001111000010101001010111011000100010
928 #*0101111111011100111100011100100001001110000110111000011001011101
929 #*1100111100010001101000101100100110100110010010011010010101110011
930 #*1010011010000100001001111011001110011001111011110110001111011100
931 #*0100111110001111001010101111011011000001001000111001010000001110
932 #*1001110110101111101100000011010111110000000100100000010111100010
933 #*1100001000111000000110100111110110110101110000010011101010111100
934 #*1110111010011101001000010110110111001111010101110010100111110101
935 #*1001111101001001100011000111001000110011100010011111010010010110
936 #*1000010110000011111100110011101011101000101101111100011000001101
937 #*0000001100011011100101100100011010101001001000100101110101110000
938 #*1100111111010001000111000011110010111000110000110011100010111100
939 #*1010111011001001101000100110010100010101011000111110100101001101
940 #*0111111000110111001101100110011000110000010100111001111011100001
941 #*0000011000111001000101010001000111011001010011011111001011000110
942 #*1011100011001000100010111011011100010111100111000010100110110001
943 #*0010110011001101000100001001001001111111100101011000111011010110
944 #*1001101111011001000001101101111110010111110100101011000101001101
945 #*1000100101111110101011101001011111010011011110110101100100001110
946 #*0110000000110011001101001101000111101011000010010101011001111001
947 #*0011000010110100111000110110101010001011100100010100100110011011
948 ;; After chi:
949 #*0111010110011100101100100110010010110000011100101011010011100110
950 #*1101000111011111001001111110000100000101111111010010000101011000
951 #*0011100100010111001101110101100110000110111010010011011101001101
952 #*1110010001111011100100101010001101010011110010000111110101110011
953 #*0010000101110010100110000110000010000110001010000011111100101010
954 #*0111111101011000111101001111101001010111101111011100010011010001
955 #*1000011000011010101010101000110111100110010010010011000101110001
956 #*0011011010100100101101111011001010101001111111110110001000111100
957 #*0000110111011111011010110011111011001111001010100001011000010011
958 #*0001110110101110101100100011010001010000010100100010010011000000
959 #*1101001101111000100101100110111110000101010010011110111010111110
960 #*1110111000011111010100100110010100000111011000010010101111111100
961 #*1001110101010001100010000011011000110010100010011110110111100110
962 #*0100010110100011111110110000001111111100011101101110010010000001
963 #*0010111110011110101101110100011011100011001101000101110000110001
964 #*1001111111100111000010000011111010011000110100110010111000011100
965 #*1010111011000001101000110111010011011100011011111000100101001011
966 #*1100011011110111101111001100000000110110110000111001011111010000
967 #*0100000100101000000000010001100101110001000011101110001011001010
968 #*1001100011000000001010011111011000010010101111001110100011110000
969 #*0010110011101011101110001001001000111111101111001100011011010100
970 #*1111101111011000000101101001111110111111110100101011011100111100
971 #*1001100111111010011011011011110111010011111010110101000010001100
972 #*0110110001111010001001000100000110011111000011011101000000111101
973 #*1010001110100100111001010010011100001011110100110111100010010010
974 ;; After iota:
975 #*0011010010011101101100100110010010110000011100101011010011100110
976 #*1101000111011111001001111110000100000101111111010010000101011000
977 #*0011100100010111001101110101100110000110111010010011011101001101
978 #*1110010001111011100100101010001101010011110010000111110101110011
979 #*0010000101110010100110000110000010000110001010000011111100101010
980 #*0111111101011000111101001111101001010111101111011100010011010001
981 #*1000011000011010101010101000110111100110010010010011000101110001
982 #*0011011010100100101101111011001010101001111111110110001000111100
983 #*0000110111011111011010110011111011001111001010100001011000010011
984 #*0001110110101110101100100011010001010000010100100010010011000000
985 #*1101001101111000100101100110111110000101010010011110111010111110
986 #*1110111000011111010100100110010100000111011000010010101111111100
987 #*1001110101010001100010000011011000110010100010011110110111100110
988 #*0100010110100011111110110000001111111100011101101110010010000001
989 #*0010111110011110101101110100011011100011001101000101110000110001
990 #*1001111111100111000010000011111010011000110100110010111000011100
991 #*1010111011000001101000110111010011011100011011111000100101001011
992 #*1100011011110111101111001100000000110110110000111001011111010000
993 #*0100000100101000000000010001100101110001000011101110001011001010
994 #*1001100011000000001010011111011000010010101111001110100011110000
995 #*0010110011101011101110001001001000111111101111001100011011010100
996 #*1111101111011000000101101001111110111111110100101011011100111100
997 #*1001100111111010011011011011110111010011111010110101000010001100
998 #*0110110001111010001001000100000110011111000011011101000000111101
999 #*1010001110100100111001010010011100001011110100110111100010010010
1000
1001 ;; Round 2
1002
1003 ;; After theta:
1004 #*0110101011011010010101101101011011011111111001110110000110001110
1005 #*0001110010011001101010110110110010111100010011111110100011111100
1006 #*1001010101111110110011100101100001000110110010101110110001100100
1007 #*1011110110000111011000111110001000111101011011111110100101100100
1008 #*0011010111111111000011111000100011101010010010110011100100011100
1009 #*0010000100011111000100000100100000111000001010000001000110111001
1010 #*0100101101011100001001100000000001011111111110111111100011010101
1011 #*1001101011001101010011101011001101101001110111001011100100010101
1012 #*0101010000100011100110100111111110100001100011011000001000000100
1013 #*0000100100100011001001011101110000111100001100010010001011110110
1014 #*1000110100111111011100101101110111101010110111000011101111010110
1015 #*0010001101011001110111101110100010111110110100111110001001011000
1016 #*0011000100111000011100010011011111110010101010100011011011001111
1017 #*0001110001011111000010100100001010010010110100010111000010010110
1018 #*0011101100010011001000001010111010001111010101110101101000000111
1019 #*1100000110100000111011001000110011110111010001101111101101110100
1020 #*0110001110000111001011111111100101100101110111010100000011101111
1021 #*0110101010011110010001011100000111110110111000000100110011111001
1022 #*0001100011010100111100000101100000011111101010010111011011011101
1023 #*1000110001001101101111100001111001111110110111111110111011000110
1024 #*0111001010101100010111000010000001010000001010010001001110111100
1025 #*0011011010011110100110100001001000000110011000000111111010011000
1026 #*0011010110010011100101001011110000010011110010001000101110100101
1027 #*0011010110000110110101010000000011110001101010100100010000101010
1028 #*1011011100101001011100101100111101100111101100000111111010100100
1029 ;; After rho:
1030 #*0110101011011010010101101101011011011111111001110110000110001110
1031 #*0000111001001100110101011011011001011110001001111111010001111110
1032 #*0101010111111011001110010110000100011011001010111011000110010010
1033 #*1101011011111110100101100100101111011000011101100011111000100011
1034 #*0100100101100111001000111000011010111111111000011111000100011101
1035 #*1000001110000010100000010001101110010010000100011111000100000100
1036 #*0110000000000101111111111011111110001101010101001011010111000010
1037 #*0101011001101011001101010011101011001101101001110111001011100100
1038 #*0100011100110100111111110100001100011011000001000000100010101000
1039 #*0001001000101111011000001001001000110010010111011100001111000011
1040 #*1101000110100111111011100101101110111101010110111000011101111010
1041 #*1001011000001000110101100111011110111010001011111011010011111000
1042 #*0010011011111110010101010100011011011001111001100010011100001110
1043 #*0110100010111000010010110000111000101111100001010010000101001001
1044 #*0101110100011110101011101011010000001110011101100010011001000001
1045 #*0100011001111011101000110111110110111010011000001101000001110110
1046 #*0111111111001011001011101110101000000111011110110001110000111001
1047 #*1001100111110010110101010011110010001011100000111110110111000000
1048 #*0100101110110110111010001100011010100111100000101100000011111101
1049 #*1100011010001100010011011011111000011110011111101101111111101110
1050 #*0100010011101111000111001010101100010111000010000001010000001010
1051 #*0000110110100111101001101000010010000001100110000001111110100110
1052 #*1010110010011100101001011110000010011110010001000101110100101001
1053 #*1000011011010101000000001111000110101010010001000010101000110101
1054 #*1111101010010010110111001010010111001011001111011001111011000001
1055 ;; After pi:
1056 #*0110101011011010010101101101011011011111111001110110000110001110
1057 #*0110000000000101111111111011111110001101010101001011010111000010
1058 #*0010011011111110010101010100011011011001111001100010011100001110
1059 #*0100101110110110111010001100011010100111100000101100000011111101
1060 #*1111101010010010110111001010010111001011001111011001111011000001
1061 #*1101011011111110100101100100101111011000011101100011111000100011
1062 #*0001001000101111011000001001001000110010010111011100001111000011
1063 #*1101000110100111111011100101101110111101010110111000011101111010
1064 #*0111111111001011001011101110101000000111011110110001110000111001
1065 #*1010110010011100101001011110000010011110010001000101110100101001
1066 #*0000111001001100110101011011011001011110001001111111010001111110
1067 #*0101011001101011001101010011101011001101101001110111001011100100
1068 #*0110100010111000010010110000111000101111100001010010000101001001
1069 #*1100011010001100010011011011111000011110011111101101111111101110
1070 #*0100010011101111000111001010101100010111000010000001010000001010
1071 #*0100100101100111001000111000011010111111111000011111000100011101
1072 #*1000001110000010100000010001101110010010000100011111000100000100
1073 #*1001011000001000110101100111011110111010001011111011010011111000
1074 #*1001100111110010110101010011110010001011100000111110110111000000
1075 #*1000011011010101000000001111000110101010010001000010101000110101
1076 #*0101010111111011001110010110000100011011001010111011000110010010
1077 #*0100011100110100111111110100001100011011000001000000100010101000
1078 #*0101110100011110101011101011010000001110011101100010011001000001
1079 #*0100011001111011101000110111110110111010011000001101000001110110
1080 #*0000110110100111101001101000010010000001100110000001111110100110
1081 ;; After chi:
1082 #*0110110000100000010101101001011010001111010001010110001110000010
1083 #*0010100100000101010101110011111110101011010101000111010100110011
1084 #*1001011011111110010000010110011110010001110110110011100100001110
1085 #*0100101111111110111010101001010010110011010000001010000111110011
1086 #*1111101010010111011101011000110011001011001011010000101010000001
1087 #*0001011101111110000110000000001001010101011101000011101000011011
1088 #*0011110001100111011000000011001000110000011111011101101111000010
1089 #*0101000110110011011011110101101100100101010111111100011001111010
1090 #*0010110110101001001111001110000101000111010010010011111000111011
1091 #*1010110010011101110001010111000010111100010011011001110011101001
1092 #*0010011011011100100111111011001001111100001001111111010101110111
1093 #*1101000001101111001100011000101011011101110111011010110001000010
1094 #*0110100011011011010110110000111100101110100001010010000101001001
1095 #*1100110010001100100011001010101001010110010110010011111110011010
1096 #*0001010011001100001111001010001110010110100010000001011010001010
1097 #*0101110101101111011101011110001010010111110011111111010111100101
1098 #*1000101001110000100000000001001110010011100100011011100000000100
1099 #*1001000000001101110101101011011010011010011010111011011011001101
1100 #*1101000011010000111101100011101010011110001000100011110011001000
1101 #*0000010001010101100000001110100010101010010101000010101000110101
1102 #*0100110111110001001110011101010100011111010110011001011111010011
1103 #*0100010101010101111111100000101010101011000001001101100010011110
1104 #*0101010010011010101010100011010000001111111011100010100111000001
1105 #*0001011000100011101110100001110010100000010000110111000001100110
1106 #*0000111110100011011000001000011010000001100111000001011110001110
1107 ;; After iota:
1108 #*0011110100100001010101101001011010001111010001010110001110000011
1109 #*0010100100000101010101110011111110101011010101000111010100110011
1110 #*1001011011111110010000010110011110010001110110110011100100001110
1111 #*0100101111111110111010101001010010110011010000001010000111110011
1112 #*1111101010010111011101011000110011001011001011010000101010000001
1113 #*0001011101111110000110000000001001010101011101000011101000011011
1114 #*0011110001100111011000000011001000110000011111011101101111000010
1115 #*0101000110110011011011110101101100100101010111111100011001111010
1116 #*0010110110101001001111001110000101000111010010010011111000111011
1117 #*1010110010011101110001010111000010111100010011011001110011101001
1118 #*0010011011011100100111111011001001111100001001111111010101110111
1119 #*1101000001101111001100011000101011011101110111011010110001000010
1120 #*0110100011011011010110110000111100101110100001010010000101001001
1121 #*1100110010001100100011001010101001010110010110010011111110011010
1122 #*0001010011001100001111001010001110010110100010000001011010001010
1123 #*0101110101101111011101011110001010010111110011111111010111100101
1124 #*1000101001110000100000000001001110010011100100011011100000000100
1125 #*1001000000001101110101101011011010011010011010111011011011001101
1126 #*1101000011010000111101100011101010011110001000100011110011001000
1127 #*0000010001010101100000001110100010101010010101000010101000110101
1128 #*0100110111110001001110011101010100011111010110011001011111010011
1129 #*0100010101010101111111100000101010101011000001001101100010011110
1130 #*0101010010011010101010100011010000001111111011100010100111000001
1131 #*0001011000100011101110100001110010100000010000110111000001100110
1132 #*0000111110100011011000001000011010000001100111000001011110001110
1133
1134 ;; Round 3
1135
1136 ;; After theta:
1137 #*1111000100000101000001101110100001111010010101010110111111001110
1138 #*1000000010011000010011101111011000000010000101101001101101110010
1139 #*1010101011000010001100101000010100100001101000101010110101011001
1140 #*1000010001100111110101010011110101011001110101001011111001101110
1141 #*0001100010110001101011011111110111000000010111001000000100010001
1142 #*1101101101011010010010000111110010100000011001000011011001010110
1143 #*1001010111111010011110011111101110011001001111110011010110000011
1144 #*0110110110001111000111001011100110010101001001100101001000101101
1145 #*1110001000110000000000110100100010101101110111010010000110100110
1146 #*0100111010111011000111010000000110110111001111000001011101111001
1147 #*1110101011111000110011111100110010001001001101111111100100111010
1148 #*0111100111110010001010000100001101110100100111110100001000000011
1149 #*0101010011100111001010001110110110011110111111001011010100011110
1150 #*0000001100010101101100110000001110111100110011010010000000000111
1151 #*1111011011101010111001001101001010011101111110011001110100011010
1152 #*1001000101001011001001011001110001100010110111111111100110101000
1153 #*0010001111101101100110011101101000111010110100110101011001000101
1154 #*1010110000110001101001010101010000101010000100100010001010011010
1155 #*0001111101001001110010011001001101110100101101100010001101010101
1156 #*1110011001110011010110001001100110100001001001011010000110100101
1157 #*1000000111010101011010011010101111101010010010011001101110011110
1158 #*1110110011001000111001111100001100000010010001100011011011011111
1159 #*0110100010100110110110011101011010111111100101111011110110010110
1160 #*1101100110111010100001011011010101001010110101110110111111111011
1161 #*1110110110000101101110001111011110001010111011011001110000011110
1162 ;; After rho:
1163 #*1111000100000101000001101110100001111010010101010110111111001110
1164 #*0100000001001100001001110111101100000001000010110100110110111001
1165 #*1010101100001000110010100001010010000110100010101011010101100110
1166 #*1001110101001011111001101110100001000110011111010101001111010101
1167 #*0000101110010000001000100010001100010110001101011011111110111000
1168 #*1100101000000110010000110110010101101101101101011010010010000111
1169 #*1001111110111001100100111111001101011000001110010101111110100111
1170 #*1011010110110110001111000111001011100110010101001001100101001000
1171 #*0110000000000110100100010101101110111010010000110100110111000100
1172 #*1100000101110111100101001110101110110001110100000001101101110011
1173 #*0101110101011111000110011111100110010001001001101111111100100111
1174 #*1000000011011110011111001000101000010000110111010010011111010000
1175 #*0001110110110011110111111001011010100011110010101001110011100101
1176 #*0110011010010000000000111000000110001010110110011000000111011110
1177 #*1010010100111011111100110011101000110101111011011101010111001001
1178 #*1100111000110001011011111111110011010100010010001010010110010010
1179 #*1100111011010001110101101001101010110010001010010001111101101100
1180 #*0100010100110101010110000110001101001010101010000101010000100100
1181 #*1011000100011010101010001111101001001110010011001001101110100101
1182 #*1010010111100110011100110101100010011001101000010010010110100001
1183 #*0110011011100111101000000111010101011010011010101111101010010010
1184 #*1111101100110010001110011111000011000000100100011000110110110111
1185 #*0100010100110110110011101011010111111100101111011110110010110011
1186 #*1011101010000101101101010100101011010111011011111111101111011001
1187 #*0111000001111011101101100001011011100011110111100010101110110110
1188 ;; After pi:
1189 #*1111000100000101000001101110100001111010010101010110111111001110
1190 #*1001111110111001100100111111001101011000001110010101111110100111
1191 #*0001110110110011110111111001011010100011110010101001110011100101
1192 #*1011000100011010101010001111101001001110010011001001101110100101
1193 #*0111000001111011101101100001011011100011110111100010101110110110
1194 #*1001110101001011111001101110100001000110011111010101001111010101
1195 #*1100000101110111100101001110101110110001110100000001101101110011
1196 #*0101110101011111000110011111100110010001001001101111111100100111
1197 #*1100111011010001110101101001101010110010001010010001111101101100
1198 #*0100010100110110110011101011010111111100101111011110110010110011
1199 #*0100000001001100001001110111101100000001000010110100110110111001
1200 #*1011010110110110001111000111001011100110010101001001100101001000
1201 #*0110011010010000000000111000000110001010110110011000000111011110
1202 #*1010010111100110011100110101100010011001101000010010010110100001
1203 #*0110011011100111101000000111010101011010011010101111101010010010
1204 #*0000101110010000001000100010001100010110001101011011111110111000
1205 #*1100101000000110010000110110010101101101101101011010010010000111
1206 #*1000000011011110011111001000101000010000110111010010011111010000
1207 #*0100010100110101010110000110001101001010101010000101010000100100
1208 #*1011101010000101101101010100101011010111011011111111101111011001
1209 #*1010101100001000110010100001010010000110100010101011010101100110
1210 #*0110000000000110100100010101101110111010010000110100110111000100
1211 #*1010010100111011111100110011101000110101111011011101010111001001
1212 #*1100111000110001011011111111110011010100010010001010010110010010
1213 #*1111101100110010001110011111000011000000100100011000110110110111
1214 ;; After chi:
1215 #*1111000100000111010010101110110011011001100101111110111110001110
1216 #*0011111110110001101100111001101100010100001111010101110010100111
1217 #*0101110111010010110010011001001000000010010110001011110011110111
1218 #*0011000000011110101010000001001001010110010011011101111111101101
1219 #*0111111011000011001001110000010111100011111101100011101110010111
1220 #*1000000101000011111011111111100001000110010110111011011111010001
1221 #*0100001111110111010100101110100110010011110110010001101100111011
1222 #*0101110001111001000100011101110011011101101100100001111110110100
1223 #*0101011010011000111101101101001010110000011010010000110000101000
1224 #*0000010100000010110111101011011001001101001111011110010010010001
1225 #*0000001001001100001001001111101000001001100000100100110100101111
1226 #*0011010011010000010011000010101011110111011101001011110101101001
1227 #*0010010010010001100000111010010011001000100100110101101111001100
1228 #*1010010111101110011101000101001010011000101000000010000010001000
1229 #*1101001101010101101110000111010110111100001111100110101011010010
1230 #*0000101101001000000111101010100100000110011111011011110011101000
1231 #*1000111100100111010000110000010000100111100101011111010010100011
1232 #*0011101001011110110110011000001010000101100110101000110000001001
1233 #*0100010000100101010110100100001001001010101110000101000000000100
1234 #*0111101010000011111101000000111010111110111011111111101111011110
1235 #*0010111000110001101010000011010010000011001001100010010101101111
1236 #*0010101000000110100111011001111101111010010000110110110111010110
1237 #*1001010000111001111000110011101000110101011111001101110111101100
1238 #*1100111000111001101011011111100011010010010000101001010111010010
1239 #*1011101100110100001010001011101111111000110100001100010100110111
1240 ;; After iota:
1241 #*1111000100000110010010101110110111011001100101111110111110001111
1242 #*0011111110110001101100111001101100010100001111010101110010100111
1243 #*0101110111010010110010011001001000000010010110001011110011110111
1244 #*0011000000011110101010000001001001010110010011011101111111101101
1245 #*0111111011000011001001110000010111100011111101100011101110010111
1246 #*1000000101000011111011111111100001000110010110111011011111010001
1247 #*0100001111110111010100101110100110010011110110010001101100111011
1248 #*0101110001111001000100011101110011011101101100100001111110110100
1249 #*0101011010011000111101101101001010110000011010010000110000101000
1250 #*0000010100000010110111101011011001001101001111011110010010010001
1251 #*0000001001001100001001001111101000001001100000100100110100101111
1252 #*0011010011010000010011000010101011110111011101001011110101101001
1253 #*0010010010010001100000111010010011001000100100110101101111001100
1254 #*1010010111101110011101000101001010011000101000000010000010001000
1255 #*1101001101010101101110000111010110111100001111100110101011010010
1256 #*0000101101001000000111101010100100000110011111011011110011101000
1257 #*1000111100100111010000110000010000100111100101011111010010100011
1258 #*0011101001011110110110011000001010000101100110101000110000001001
1259 #*0100010000100101010110100100001001001010101110000101000000000100
1260 #*0111101010000011111101000000111010111110111011111111101111011110
1261 #*0010111000110001101010000011010010000011001001100010010101101111
1262 #*0010101000000110100111011001111101111010010000110110110111010110
1263 #*1001010000111001111000110011101000110101011111001101110111101100
1264 #*1100111000111001101011011111100011010010010000101001010111010010
1265 #*1011101100110100001010001011101111111000110100001100010100110111
1266
1267 ;; Round 4
1268
1269 ;; After theta:
1270 #*1110111011111110011011100111111100011011111111100101010101110010
1271 #*0010110101101111001101000100000001010100111001110000010011100100
1272 #*0001010011011111110101001100010101011100001000011100010000111010
1273 #*0000111111010010000001111111100101011011101101110011001100011001
1274 #*0001110000001111111000011001010000001100000000101100101101110111
1275 #*1001111010111011110010110110101010000100001100100000110100101100
1276 #*0101000100101001110101010011001011010011000000110100001101111000
1277 #*0001010101110100000011001000101110000011110010110110011101111001
1278 #*0110100101010100010110010011100110111101100100111110000011011100
1279 #*0110011111001110000110000010011110100010110010010001010001110001
1280 #*0001110110110100000000000110100011001011111010111111011111010010
1281 #*0010011000001110110010111111000110110111101011101110010100101010
1282 #*0110110110011100100111101111001110010110111010100010001100000001
1283 #*1001101000100010110110111011100110010101010110101100110001111100
1284 #*1011000110011001011111101110010001010011110010101001101000110010
1285 #*0001010010110000001110100011101111000100000101000000011000010101
1286 #*1001110111111001110001001101111101100111010011111010110011100000
1287 #*0111001101010011110001001101010111011011111000111111010011000100
1288 #*0111101111101001111101011010100101000111010000101011110011110000
1289 #*0001100001001111001100101001111101010001000110110000101100111110
1290 #*0011000111001001100011001010011001000001010011111001111110010010
1291 #*0011100011011000000110100100010000111010100110010011010110010101
1292 #*1101110100110100111111100110110101101011000001011010010100100001
1293 #*1111000111110101000000100001001111011111101110000111100100100110
1294 #*1101100111111000111011100010101000010111001001000011010111010111
1295 ;; After rho:
1296 #*1110111011111110011011100111111100011011111111100101010101110010
1297 #*0001011010110111100110100010000000101010011100111000001001110010
1298 #*0101001101111111010100110001010101110000100001110001000011101000
1299 #*1011101101110011001100011001000011111101001000000111111110010101
1300 #*1000000001011001011011101110001110000001111111000011001010000001
1301 #*1010100001000011001000001101001011001001111010111011110010110110
1302 #*0101001100101101001100000011010000110111100001010001001010011101
1303 #*1110010001010101110100000011001000101110000011110010110110011101
1304 #*1010100010110010011100110111101100100111110000011011100011010010
1305 #*1001000101000111000101100111110011100001100000100111101000101100
1306 #*0100001110110110100000000000110100011001011111010111111011111010
1307 #*0100101010001001100000111011001011111100011011011110101110111001
1308 #*1101111001110010110111010100010001100000001011011011001110010011
1309 #*1010110101100110001111100100110100010001011011011101110011001010
1310 #*1100100010100111100101010011010001100101011000110011001011111101
1311 #*0001110111100010000010100000001100001010100010100101100000011101
1312 #*0010011011111011001110100111110101100111000001001110111111001110
1313 #*1110100110001000111001101010011110001001101010111011011111000111
1314 #*0001010111100111100000111101111101001111101011010100101000111010
1315 #*0011111000011000010011110011001010011111010100010001101100001011
1316 #*1110011111100100100011000111001001100011001010011001000001010011
1317 #*0100111000110110000001101001000100001110101001100100110101100101
1318 #*1110100110100111111100110110101101011000001011010010100100001110
1319 #*1111010100000010000100111101111110111000011110010010011011110001
1320 #*1101011101011111011001111110001110111000101010000101110010010000
1321 ;; After pi:
1322 #*1110111011111110011011100111111100011011111111100101010101110010
1323 #*0101001100101101001100000011010000110111100001010001001010011101
1324 #*1101111001110010110111010100010001100000001011011011001110010011
1325 #*0001010111100111100000111101111101001111101011010100101000111010
1326 #*1101011101011111011001111110001110111000101010000101110010010000
1327 #*1011101101110011001100011001000011111101001000000111111110010101
1328 #*1001000101000111000101100111110011100001100000100111101000101100
1329 #*0100001110110110100000000000110100011001011111010111111011111010
1330 #*0010011011111011001110100111110101100111000001001110111111001110
1331 #*1110100110100111111100110110101101011000001011010010100100001110
1332 #*0001011010110111100110100010000000101010011100111000001001110010
1333 #*1110010001010101110100000011001000101110000011110010110110011101
1334 #*1010110101100110001111100100110100010001011011011101110011001010
1335 #*0011111000011000010011110011001010011111010100010001101100001011
1336 #*1110011111100100100011000111001001100011001010011001000001010011
1337 #*1000000001011001011011101110001110000001111111000011001010000001
1338 #*1010100001000011001000001101001011001001111010111011110010110110
1339 #*0100101010001001100000111011001011111100011011011110101110111001
1340 #*1110100110001000111001101010011110001001101010111011011111000111
1341 #*1111010100000010000100111101111110111000011110010010011011110001
1342 #*0101001101111111010100110001010101110000100001110001000011101000
1343 #*1010100010110010011100110111101100100111110000011011100011010010
1344 #*1100100010100111100101010011010001100101011000110011001011111101
1345 #*0001110111100010000010100000001100001010100010100101100000011101
1346 #*0100111000110110000001101001000100001110101001100100110101100101
1347 ;; After chi:
1348 #*0110001010101100101000110011111101011011110101101111010001110000
1349 #*0101001010101000001100101010111100111000000001010101101010110101
1350 #*0001110001101010101110010110010011010000001011011010011100010011
1351 #*0011110101000111100010111100001101001100111110110100101101011000
1352 #*1100011001011110011101111110001110011100101010010101111000011101
1353 #*1111100111000011101100011001000111100101010111010111101101000111
1354 #*1011010100001110001011000000110010000111100000101111101100101000
1355 #*1000101010110010010000010000111100000001010101000111111011111010
1356 #*0011010010101011001110101110110111000010000001001011100101011111
1357 #*1110100110100011111101010000011101011000101011110010100100100110
1358 #*0001111110010101101101000110110100111011000100110101001000110000
1359 #*1111011001001101100100010000000010100000000111110010111010011100
1360 #*0110110010000010101111100000110101110001010001010101110010011010
1361 #*0010111000001011010111010011001010010111000000110001100100101011
1362 #*0000011110100100110011000110000001100111001001011011110111011110
1363 #*1100001011010001111011011100001110110101111110000111000110001000
1364 #*0000100101000011010001001101011111001000011010011010100011110000
1365 #*0101111010001011100100101110101011001100001111011110101110001001
1366 #*1110100111010001100010101000011110001000001011111010011111000111
1367 #*1101110100000000000100111100111111110000011110101010101011000111
1368 #*0001001101111010110101110001000100110000101001010001001011000101
1369 #*1011110111110010011110010111100000101101010010011111000011010010
1370 #*1000101010110011100100011010010001100001010001110011011110011101
1371 #*0000110010101011010110110000011101111010100010110100100010010101
1372 #*1110011010110110001001101111101100001001111001101110010101110111
1373 ;; After iota:
1374 #*1011001110101101101000110011111101011011110101101111010001110000
1375 #*0101001010101000001100101010111100111000000001010101101010110101
1376 #*0001110001101010101110010110010011010000001011011010011100010011
1377 #*0011110101000111100010111100001101001100111110110100101101011000
1378 #*1100011001011110011101111110001110011100101010010101111000011101
1379 #*1111100111000011101100011001000111100101010111010111101101000111
1380 #*1011010100001110001011000000110010000111100000101111101100101000
1381 #*1000101010110010010000010000111100000001010101000111111011111010
1382 #*0011010010101011001110101110110111000010000001001011100101011111
1383 #*1110100110100011111101010000011101011000101011110010100100100110
1384 #*0001111110010101101101000110110100111011000100110101001000110000
1385 #*1111011001001101100100010000000010100000000111110010111010011100
1386 #*0110110010000010101111100000110101110001010001010101110010011010
1387 #*0010111000001011010111010011001010010111000000110001100100101011
1388 #*0000011110100100110011000110000001100111001001011011110111011110
1389 #*1100001011010001111011011100001110110101111110000111000110001000
1390 #*0000100101000011010001001101011111001000011010011010100011110000
1391 #*0101111010001011100100101110101011001100001111011110101110001001
1392 #*1110100111010001100010101000011110001000001011111010011111000111
1393 #*1101110100000000000100111100111111110000011110101010101011000111
1394 #*0001001101111010110101110001000100110000101001010001001011000101
1395 #*1011110111110010011110010111100000101101010010011111000011010010
1396 #*1000101010110011100100011010010001100001010001110011011110011101
1397 #*0000110010101011010110110000011101111010100010110100100010010101
1398 #*1110011010110110001001101111101100001001111001101110010101110111
1399
1400 ;; Round 5
1401
1402 ;; After theta:
1403 #*0111001011101111100000011000100101111100001101010001101010110100
1404 #*0100000111001001100011000010101000111110011000111100100001001100
1405 #*1101100001111110100101011010011001011111001110010111001000001111
1406 #*1001101011010010011100110011001101101100111000101101000010010101
1407 #*0100011011101011000001000111011111110111100100111000010101000110
1408 #*0011100010000001100100110010011111000010101111101001010110000011
1409 #*1010011001101111100100101000100110000001111001000110100111010001
1410 #*0100111010100110011011011100110110001110010000001010101111100110
1411 #*1001001100111110110000100001110111100010000111010010001010010010
1412 #*0110100100010110100001101001001100110011100101011111001001111101
1413 #*1101111011010111100101101101101100011100111100001011110011110100
1414 #*1110010100101100001011111000010110100110011110011011110001100101
1415 #*1010100010010110100100101100111111111110010100011000100110000110
1416 #*1000100110011110101001011100001010110111000110101000001011100110
1417 #*1000011100010001101111111111010000001100000111110110011010000101
1418 #*0000001110010011110011110111010110010010000110111001111101001100
1419 #*0001101000100010111110100101001011001110000011110011101000001001
1420 #*1001101010011111101111100010100001000011001010010011111010010101
1421 #*0100111001000100011100100111011110101000001101100011110000001010
1422 #*0101110110110101011000000101101110011011010000000111000110011100
1423 #*1101001000111000111101011010011100010111010001101111110000000001
1424 #*1010111010010011110001111111110100101011001011110110001000101011
1425 #*0100111010100111101111010110011011101110010100111110001010000001
1426 #*1010101100111110101000111111011101011010100100101101001101011000
1427 #*0110011000000011010101010110111101100010110111000011111000101100
1428 ;; After rho:
1429 #*0111001011101111100000011000100101111100001101010001101010110100
1430 #*0010000011100100110001100001010100011111001100011110010000100110
1431 #*0110000111111010010101101001100101111100111001011100100000111111
1432 #*1100111000101101000010010101100110101101001001110011001100110110
1433 #*1111001001110000101010001100100011011101011000001000111011111110
1434 #*0111110000101011111010010101100000110011100010000001100100110010
1435 #*0010100010011000000111100100011010011101000110100110011011111001
1436 #*1001100100111010100110011011011100110110001110010000001010101111
1437 #*0111110110000100001110111100010000111010010001010010010100100110
1438 #*0101111100100111110101101001000101101000011010010011001100111001
1439 #*1001101111011010111100101101101101100011100111100001011110011110
1440 #*0001100101111001010010110000101111100001011010011001111001101111
1441 #*0101100111111111110010100011000100110000110101010001001011010010
1442 #*1000110101000001011100110100010011001111010100101110000101011011
1443 #*1110100000011000001111101100110100001011000011100010001101111111
1444 #*1011101011001001000011011100111110100110000000011100100111100111
1445 #*1101001010010110011100000111100111010000010010001101000100010111
1446 #*0111110100101011001101010011111101111100010100001000011001010010
1447 #*1011000111100000010100100111001000100011100100111011110101000001
1448 #*1001110001011101101101010110000001011011100110110100000001110001
1449 #*1011111100000000011101001000111000111101011010011100010111010001
1450 #*1110101110100100111100011111111101001010110010111101100010001010
1451 #*0111010100111101111010110011011101110010100111110001010000001010
1452 #*0011111010100011111101110101101010010010110100110101100010101011
1453 #*1111100010110001100110000000110101010101101111011000101101110000
1454 ;; After pi:
1455 #*0111001011101111100000011000100101111100001101010001101010110100
1456 #*0010100010011000000111100100011010011101000110100110011011111001
1457 #*0101100111111111110010100011000100110000110101010001001011010010
1458 #*1011000111100000010100100111001000100011100100111011110101000001
1459 #*1111100010110001100110000000110101010101101111011000101101110000
1460 #*1100111000101101000010010101100110101101001001110011001100110110
1461 #*0101111100100111110101101001000101101000011010010011001100111001
1462 #*1001101111011010111100101101101101100011100111100001011110011110
1463 #*1101001010010110011100000111100111010000010010001101000100010111
1464 #*0111010100111101111010110011011101110010100111110001010000001010
1465 #*0010000011100100110001100001010100011111001100011110010000100110
1466 #*1001100100111010100110011011011100110110001110010000001010101111
1467 #*1000110101000001011100110100010011001111010100101110000101011011
1468 #*1001110001011101101101010110000001011011100110110100000001110001
1469 #*1011111100000000011101001000111000111101011010011100010111010001
1470 #*1111001001110000101010001100100011011101011000001000111011111110
1471 #*0111110000101011111010010101100000110011100010000001100100110010
1472 #*0001100101111001010010110000101111100001011010011001111001101111
1473 #*0111110100101011001101010011111101111100010100001000011001010010
1474 #*0011111010100011111101110101101010010010110100110101100010101011
1475 #*0110000111111010010101101001100101111100111001011100100000111111
1476 #*0111110110000100001110111100010000111010010001010010010100100110
1477 #*1110100000011000001111101100110100001011000011100010001101111111
1478 #*1011101011001001000011011100111110100110000000011100100111100111
1479 #*1110101110100100111100011111111101001010110010111101100010001010
1480 ;; After chi:
1481 #*0010001110001000010000011011100001011100111100000000101010110110
1482 #*1000100010011000000011100000010010011110000110001100101111111000
1483 #*0001000111101110010000100011110001100100111110010001000011100010
1484 #*1011001110101110010100111111001000001011100100111010110111000101
1485 #*1111000010100001100001100100101111010100101101111110111100111001
1486 #*0100111011110101001010010001001110101110101100010011011110110000
1487 #*0001111100100011110101101011000111111000001010011111001100111000
1488 #*1011111011110011011110011101110101000001000010010001001110010110
1489 #*0101100010010110011100000011000101011101011010001111001000100011
1490 #*0110010000111111001111011011011100110010110101110001010000000011
1491 #*0010010010100101101001000101010111010110011100110000010101110110
1492 #*1000100100100110000111011001011100100110101100000000001010001111
1493 #*1010111001000001001100111100101011101011001100100110010011011011
1494 #*1001110010111001001101110111000101011001100010110110000001010111
1495 #*0010011000011010011011010010110000011101011000011100011101011000
1496 #*1111001100100000101010101100101100011101000000010000100010110011
1497 #*0001100000101001110111010110110000101111100110000001100100100010
1498 #*0001101111111001100010010100101101100011111010101100011011000110
1499 #*1011110101111011001111011011111100110001011100000000000000000110
1500 #*0011001010101000101101100100101010110000010110110100100110101011
1501 #*1110000111100010010100101001000001111101111011111100101001100110
1502 #*0110111101000101001110101100011010011110010001001110110110100110
1503 #*1010100100111100110011101111110101000011110001000011001101110111
1504 #*1011101010010011000010111100111110010010001001011100100111010010
1505 #*1111011110100000110110001011101101001000110010111111110110001010
1506 ;; After iota:
1507 #*1010001110001000010000011011100101011100111100000000101010110110
1508 #*1000100010011000000011100000010010011110000110001100101111111000
1509 #*0001000111101110010000100011110001100100111110010001000011100010
1510 #*1011001110101110010100111111001000001011100100111010110111000101
1511 #*1111000010100001100001100100101111010100101101111110111100111001
1512 #*0100111011110101001010010001001110101110101100010011011110110000
1513 #*0001111100100011110101101011000111111000001010011111001100111000
1514 #*1011111011110011011110011101110101000001000010010001001110010110
1515 #*0101100010010110011100000011000101011101011010001111001000100011
1516 #*0110010000111111001111011011011100110010110101110001010000000011
1517 #*0010010010100101101001000101010111010110011100110000010101110110
1518 #*1000100100100110000111011001011100100110101100000000001010001111
1519 #*1010111001000001001100111100101011101011001100100110010011011011
1520 #*1001110010111001001101110111000101011001100010110110000001010111
1521 #*0010011000011010011011010010110000011101011000011100011101011000
1522 #*1111001100100000101010101100101100011101000000010000100010110011
1523 #*0001100000101001110111010110110000101111100110000001100100100010
1524 #*0001101111111001100010010100101101100011111010101100011011000110
1525 #*1011110101111011001111011011111100110001011100000000000000000110
1526 #*0011001010101000101101100100101010110000010110110100100110101011
1527 #*1110000111100010010100101001000001111101111011111100101001100110
1528 #*0110111101000101001110101100011010011110010001001110110110100110
1529 #*1010100100111100110011101111110101000011110001000011001101110111
1530 #*1011101010010011000010111100111110010010001001011100100111010010
1531 #*1111011110100000110110001011101101001000110010111111110110001010
1532
1533 ;; Round 6
1534
1535 ;; After theta:
1536 #*0110000011111100011010001101110000100111110011110110010110010000
1537 #*0000101001001110100111010110111000101101101100100111100001010010
1538 #*1100000000101011111100011101010111000011101101100010010100011011
1539 #*1011101111110001010000000111111101100100101101111111101111111010
1540 #*0110110101000101101111101101101101011010111111000110010000001110
1541 #*1000110110000001000000000111011011010101100011100101100010010110
1542 #*1001110111110101010001011101101101001011100000110100000010010010
1543 #*0110111100110110110010100011010011100110010001100010011001101111
1544 #*0101000011001001011000111011110000110010010011001010010000011100
1545 #*1111100111011011000001010010011110111100100111001001111100110100
1546 #*1110011111010001100011010011000010101101010011000110101001010000
1547 #*0000101111110000100011101111110110010101000110101011000100100101
1548 #*0111111110000100100000000010001101001100011111010101000100100010
1549 #*1001010011100110001001001111110000110110101011110011011001101000
1550 #*1011101111111110010101011011110010010011001010100100110001101111
1551 #*0011000001010100100000111010111001100110001111100110011110010101
1552 #*1001101011111111010011100000011010011100001100101010101010001000
1553 #*1100101000111100001110101010001011000100101001011111001100111111
1554 #*1011010100100100001011100011001001011110010101000101011000111001
1555 #*1010111101001100100011101101101000111110000100001100001010011100
1556 #*0010001010010110011110111111010100000110110100001010010101000000
1557 #*1110110110010011101010011010110000101101111011100101111000001100
1558 #*0111100011111001011111010001010011100100100010110000011010001110
1559 #*1011001011001100000110000100001011111101000000011001111111101101
1560 #*0110101001000100111000000010101111000110100000000111011010111101
1561 ;; After rho:
1562 #*0110000011111100011010001101110000100111110011110110010110010000
1563 #*0000010100100111010011101011011100010110110110010011110000101001
1564 #*0000000010101111110001110101011100001110110110001001010001101111
1565 #*0100101101111111101111111010101110111111000101000000011111110110
1566 #*0101111110001100100000011100110110101000101101111101101101101011
1567 #*0110110101011000111001011000100101101000110110000001000000000111
1568 #*0101110110110100101110000011010000001001001010011101111101010100
1569 #*1011110110111100110110110010100011010011100110010001100010011001
1570 #*1001001011000111011110000110010010011001010010000011100010100001
1571 #*1100100111110011010011111001110110110000010100100111101111001001
1572 #*0001110011111010001100011010011000010101101010011000110101001010
1573 #*0100100101000010111111000010001110111111011001010100011010101100
1574 #*0000010001101001100011111010101000100100010011111111000010010000
1575 #*0101011110011011001101000100101001110011000100100111111000011011
1576 #*0111100100100110010101001001100011011111011101111111110010101011
1577 #*1101011100110011000111110011001111001010100110000010101001000001
1578 #*0111000000110100111000011001010101010100010001001101011111111010
1579 #*1110011001111111100101000111100001110101010001011000100101001011
1580 #*1010001010110001110011011010100100100001011100011001001011110010
1581 #*1001110010101111010011001000111011011010001111100001000011000010
1582 #*0010100101010000000010001010010110011110111111010100000110110100
1583 #*0011101101100100111010100110101100001011011110111001011110000011
1584 #*1100011111001011111010001010011100100100010110000011010001110011
1585 #*1100110000011000010000101111110100000001100111111110110110110010
1586 #*1101101011110101101010010001001110000000101011110001101000000001
1587 ;; After pi:
1588 #*0110000011111100011010001101110000100111110011110110010110010000
1589 #*0101110110110100101110000011010000001001001010011101111101010100
1590 #*0000010001101001100011111010101000100100010011111111000010010000
1591 #*1010001010110001110011011010100100100001011100011001001011110010
1592 #*1101101011110101101010010001001110000000101011110001101000000001
1593 #*0100101101111111101111111010101110111111000101000000011111110110
1594 #*1100100111110011010011111001110110110000010100100111101111001001
1595 #*0001110011111010001100011010011000010101101010011000110101001010
1596 #*0111000000110100111000011001010101010100010001001101011111111010
1597 #*1100011111001011111010001010011100100100010110000011010001110011
1598 #*0000010100100111010011101011011100010110110110010011110000101001
1599 #*1011110110111100110110110010100011010011100110010001100010011001
1600 #*0101011110011011001101000100101001110011000100100111111000011011
1601 #*1001110010101111010011001000111011011010001111100001000011000010
1602 #*0010100101010000000010001010010110011110111111010100000110110100
1603 #*0101111110001100100000011100110110101000101101111101101101101011
1604 #*0110110101011000111001011000100101101000110110000001000000000111
1605 #*0100100101000010111111000010001110111111011001010100011010101100
1606 #*1110011001111111100101000111100001110101010001011000100101001011
1607 #*1100110000011000010000101111110100000001100111111110110110110010
1608 #*0000000010101111110001110101011100001110110110001001010001101111
1609 #*1001001011000111011110000110010010011001010010000011100010100001
1610 #*0111100100100110010101001001100011011111011101111111110010101011
1611 #*1101011100110011000111110011001111001010100110000010101001000001
1612 #*0011101101100100111010100110101100001011011110111001011110000011
1613 ;; After chi:
1614 #*0110000010110101011011110101011000000011100010010100010100010000
1615 #*1111111100100100111110000011010100001000000110011101110100110110
1616 #*0101110000101101101011111011100010100100110000011111100010010001
1617 #*1000001010111001100011010110010100000110001100011111011101100010
1618 #*1100011111110101001110010011001110001000100011111000000001000101
1619 #*0101111101110111100011111000100110111010101111011000001111110100
1620 #*1010100111110111100011111000110011110000000101100010100101111001
1621 #*1001101100110001001110011000010000110101101100011010110101001011
1622 #*0111100000000000111101101001110111001111010000001101010001111110
1623 #*0100011101001011101010001011001100100100000110100100110001111010
1624 #*0100011100100100011010101111010100110110110110110101101000101011
1625 #*0011010110011000100100111010110001011011101101010001100001011001
1626 #*0111011011001011001101000110101101110111110100110011111100101111
1627 #*1001100010001000000010101001110011011010001111100010110011001011
1628 #*1001000111001000100110011010110101011111111111010100000100100100
1629 #*0101111110001110100110011110111100111111100100101001110111000011
1630 #*1100101101100101111001011101000100101000110110001001100101000100
1631 #*0100000101000010101111101010011010111111111111110010001000011100
1632 #*1111010111111011000101010111100011011101011001011001101100000010
1633 #*1110110001001000001001101111110101000001110101111110110110110110
1634 #*0110100110001111110000111100111101001000111011110101000001100101
1635 #*0001010011010110011100110100011110011001110000000011101011100001
1636 #*0101000101100010101101001101000011011110000101000110100100101001
1637 #*1101011110111000000110100010011111001110000110000010101000101101
1638 #*1010100100100100110100100100101110011010011110111011111100000011
1639 ;; After iota:
1640 #*1110000110110100011011110101011100000011100010010100010100010001
1641 #*1111111100100100111110000011010100001000000110011101110100110110
1642 #*0101110000101101101011111011100010100100110000011111100010010001
1643 #*1000001010111001100011010110010100000110001100011111011101100010
1644 #*1100011111110101001110010011001110001000100011111000000001000101
1645 #*0101111101110111100011111000100110111010101111011000001111110100
1646 #*1010100111110111100011111000110011110000000101100010100101111001
1647 #*1001101100110001001110011000010000110101101100011010110101001011
1648 #*0111100000000000111101101001110111001111010000001101010001111110
1649 #*0100011101001011101010001011001100100100000110100100110001111010
1650 #*0100011100100100011010101111010100110110110110110101101000101011
1651 #*0011010110011000100100111010110001011011101101010001100001011001
1652 #*0111011011001011001101000110101101110111110100110011111100101111
1653 #*1001100010001000000010101001110011011010001111100010110011001011
1654 #*1001000111001000100110011010110101011111111111010100000100100100
1655 #*0101111110001110100110011110111100111111100100101001110111000011
1656 #*1100101101100101111001011101000100101000110110001001100101000100
1657 #*0100000101000010101111101010011010111111111111110010001000011100
1658 #*1111010111111011000101010111100011011101011001011001101100000010
1659 #*1110110001001000001001101111110101000001110101111110110110110110
1660 #*0110100110001111110000111100111101001000111011110101000001100101
1661 #*0001010011010110011100110100011110011001110000000011101011100001
1662 #*0101000101100010101101001101000011011110000101000110100100101001
1663 #*1101011110111000000110100010011111001110000110000010101000101101
1664 #*1010100100100100110100100100101110011010011110111011111100000011
1665
1666 ;; Round 7
1667
1668 ;; After theta:
1669 #*0110101111010010101010101000110110100010000111001011110101100110
1670 #*0110000000111001111111000010111000110011001011111001110010111110
1671 #*1100000011101100111000100010011000110110011110101110100001011110
1672 #*0000100101000011010110110000100100010101000110111011100101110101
1673 #*1110000001110100001011110000110101110100111101000001011000001001
1674 #*1101010100010001010010100101001100011011001010000111101110000011
1675 #*0011011011101010100010111001011111001011001000000110100011110001
1676 #*0000011111110000011101000001101010100111000010101011110110000100
1677 #*1111001111111010001000001111000111011100011010101001101001101001
1678 #*0110000011001010101111101000110111011000011000011101101000110110
1679 #*1100110101000010101011110010111110010111010011101010001001011100
1680 #*1010101010000101100101111011011101100000100000110101100111010001
1681 #*1110101000001010011110011111010111100101011010000010111111100000
1682 #*0001001101110010110111001111000011001001000101000110001011011100
1683 #*1011011001001001100011111001001110100011100001101101011101101000
1684 #*1101010111101000010111000011010110011110000001110110010110110100
1685 #*0101010001111000111000011100101000010011111011101101100011001100
1686 #*1101110110000011111100110011100000101101010001000011001011010011
1687 #*0111111000000001110000110001010011001110010011111101010100010101
1688 #*1100101111001001001100001100001110111101101011000111101111111010
1689 #*1110001111101001000001100001010111101001011110101010100000010010
1690 #*1000101111001011011101110101110010100010111101100111101101101001
1691 #*1100110110100011111110010100111001001100101011110111100111100110
1692 #*0101110001000010110011000100101111011101001100100110010000111010
1693 #*1000111010100101110001000111010101100110000000000010100101001111
1694 ;; After rho:
1695 #*0110101111010010101010101000110110100010000111001011110101100110
1696 #*0011000000011100111111100001011100011001100101111100111001011111
1697 #*0000001110110011100010001001100011011001111010111010000101111011
1698 #*0101000110111011100101110101000010010100001101011011000010010001
1699 #*1001111010000010110000010011110000001110100001011110000110101110
1700 #*0011000110110010100001111011100000111101010100010001010010100101
1701 #*1011100101111100101100100000011010001111000100110110111010101000
1702 #*0001000000011111110000011101000001101010100111000010101011110110
1703 #*1111010001000001111000111011100011010101001101001101001111100111
1704 #*0001110110100011011001100000110010101011111010001101110110000110
1705 #*1001100110101000010101011110010111110010111010011101010001001011
1706 #*0111010001101010101000010110010111101101110110000010000011010110
1707 #*0011111010111100101011010000010111111100000111010100000101001111
1708 #*1000101000110001011011100000100110111001011011100111100001100100
1709 #*0010011101000111000011011010111011010001011011001001001100011111
1710 #*0001101011001111000000111011001011011010011010101111010000101110
1711 #*0000111001010000100111110111011011000110011000101010001111000111
1712 #*0110010110100111101110110000011111100110011100000101101010001000
1713 #*0111111010101000101010111111000000001110000110001010011001110010
1714 #*1111101011001011110010010011000011000011101111011010110001111011
1715 #*1010101000000100101110001111101001000001100001010111101001011110
1716 #*0110001011110010110111011101011100101000101111011001111011011010
1717 #*0110110100011111110010100111001001100101011110111100111100110110
1718 #*0100001011001100010010111101110100110010011001000011101001011100
1719 #*1010010100111110001110101001011100010001110101011001100000000000
1720 ;; After pi:
1721 #*0110101111010010101010101000110110100010000111001011110101100110
1722 #*1011100101111100101100100000011010001111000100110110111010101000
1723 #*0011111010111100101011010000010111111100000111010100000101001111
1724 #*0111111010101000101010111111000000001110000110001010011001110010
1725 #*1010010100111110001110101001011100010001110101011001100000000000
1726 #*0101000110111011100101110101000010010100001101011011000010010001
1727 #*0001110110100011011001100000110010101011111010001101110110000110
1728 #*1001100110101000010101011110010111110010111010011101010001001011
1729 #*0000111001010000100111110111011011000110011000101010001111000111
1730 #*0110110100011111110010100111001001100101011110111100111100110110
1731 #*0011000000011100111111100001011100011001100101111100111001011111
1732 #*0001000000011111110000011101000001101010100111000010101011110110
1733 #*1000101000110001011011100000100110111001011011100111100001100100
1734 #*1111101011001011110010010011000011000011101111011010110001111011
1735 #*1010101000000100101110001111101001000001100001010111101001011110
1736 #*1001111010000010110000010011110000001110100001011110000110101110
1737 #*0011000110110010100001111011100000111101010100010001010010100101
1738 #*0111010001101010101000010110010111101101110110000010000011010110
1739 #*0110010110100111101110110000011111100110011100000101101010001000
1740 #*0100001011001100010010111101110100110010011001000011101001011100
1741 #*0000001110110011100010001001100011011001111010111010000101111011
1742 #*1111010001000001111000111011100011010101001101001101001111100111
1743 #*0010011101000111000011011010111011010001011011001001001100011111
1744 #*0001101011001111000000111011001011011010011010101111010000101110
1745 #*0110001011110010110111011101011100101000101111011001111011011010
1746 ;; After chi:
1747 #*0110110101010010101001111000110011010010000100001011110000100001
1748 #*1111100101111100101100001111011010001101000100111100100010011000
1749 #*1011111110101010101111010000001011101101110110000101100101001111
1750 #*0011010001101000001010111111100010101100000100001000001100010100
1751 #*0011010100010010001010101001010100011100110101101101101010001000
1752 #*1101000110110011100001101011000111000100001101001011000011011000
1753 #*0001101111110011111011000001111010101111111010101111111000000010
1754 #*1111100010100111000101011110010111010011111100001001100001111011
1755 #*0001111011110000100010100111011001010110011001101001001101000110
1756 #*0110000100011111101010100111111001001110101100111000001000110000
1757 #*1011101000111100110100000001111010001000111101011001111001011111
1758 #*0110000011010101010000001110000000101000000011011010111011101101
1759 #*1000101000110101010111101100001110111001011011100010101001100000
1760 #*1110101011010011100011110011010111011011101011110010100001111010
1761 #*1010101000000111101110010011101000100011100011010101101011111110
1762 #*1101101011001010111000010111100111001110000011011100000111111100
1763 #*0011000000110111100111011011101000111111011100010100111010101101
1764 #*0111011000100010111000011011110111111101110111000000000010000010
1765 #*1111100110100101001110110010011111101010111100011001101100101010
1766 #*0110001111111100010011010101110100000011001101000010111001011101
1767 #*0000000010110101100001001001111011011001101000111010000101100011
1768 #*1110110011001001111000011010100011011111001101101011011111000111
1769 #*0100011101110111110100011110101111110001111110011001100111001111
1770 #*0001101111001110000000111011101000001011001010001101010100001111
1771 #*1001011010110010101111101111011100101100101010011100110001011110
1772 ;; After iota:
1773 #*1111110101010011101001111000110011010010000100001011110000100000
1774 #*1111100101111100101100001111011010001101000100111100100010011000
1775 #*1011111110101010101111010000001011101101110110000101100101001111
1776 #*0011010001101000001010111111100010101100000100001000001100010100
1777 #*0011010100010010001010101001010100011100110101101101101010001000
1778 #*1101000110110011100001101011000111000100001101001011000011011000
1779 #*0001101111110011111011000001111010101111111010101111111000000010
1780 #*1111100010100111000101011110010111010011111100001001100001111011
1781 #*0001111011110000100010100111011001010110011001101001001101000110
1782 #*0110000100011111101010100111111001001110101100111000001000110000
1783 #*1011101000111100110100000001111010001000111101011001111001011111
1784 #*0110000011010101010000001110000000101000000011011010111011101101
1785 #*1000101000110101010111101100001110111001011011100010101001100000
1786 #*1110101011010011100011110011010111011011101011110010100001111010
1787 #*1010101000000111101110010011101000100011100011010101101011111110
1788 #*1101101011001010111000010111100111001110000011011100000111111100
1789 #*0011000000110111100111011011101000111111011100010100111010101101
1790 #*0111011000100010111000011011110111111101110111000000000010000010
1791 #*1111100110100101001110110010011111101010111100011001101100101010
1792 #*0110001111111100010011010101110100000011001101000010111001011101
1793 #*0000000010110101100001001001111011011001101000111010000101100011
1794 #*1110110011001001111000011010100011011111001101101011011111000111
1795 #*0100011101110111110100011110101111110001111110011001100111001111
1796 #*0001101111001110000000111011101000001011001010001101010100001111
1797 #*1001011010110010101111101111011100101100101010011100110001011110
1798
1799 ;; Round 8
1800
1801 ;; After theta:
1802 #*0101100101000101010111011111101011111001001111001110110011101011
1803 #*0100101111101001110001110000101101000001110111011000001110101100
1804 #*0111000000011110110101100000101101100111011010110000001101010100
1805 #*0100110110100111100010001011011110001000010010010000000100101111
1806 #*0011000101100011111101101101000110011000011010010101010110011001
1807 #*0111010110100101011111001100011111101111000110001110000000010011
1808 #*1010100101100110100110111110001101100011001001001011010100110110
1809 #*0011011100010011011111101110110001011001010000111100001001100000
1810 #*0110011100111111001010010011100101110010001111110001000101111101
1811 #*0110010101101110011101100011101011001010000011000000110100100001
1812 #*0001111000101010001010100110100010100011110110011100111010010100
1813 #*1101001001000000001101110001110111100100110000111110010111011001
1814 #*0100010110000001001101011100101000110011110111010111000001111011
1815 #*1001001100011100001011000111101011111111111101101010101001000001
1816 #*1010111001110110011001010111111010100111001100101101010111101111
1817 #*0111111011011100000110110000111111100101001000011001000100110111
1818 #*1000001010100010111010100100011111110011101111110000010110011001
1819 #*1011100110010110100010101011010001110111011011110101101010011001
1820 #*1000000001101010100110000110100011001110101010000001100100010001
1821 #*0110011110001101100100010001100110000111100010111010000101001100
1822 #*1010010010100011011111101110100011110010100011111111000110101000
1823 #*0101111001011100100101100101010100010011111110001111110011110011
1824 #*1000100011000011101110101110001001111011010010101100001111010100
1825 #*0110001000000001101000001111010100101111011100010101011100110100
1826 #*1001001011000011011000101011001110101000000101100100001101001111
1827 ;; After rho:
1828 #*0101100101000101010111011111101011111001001111001110110011101011
1829 #*0010010111110100111000111000010110100000111011101100000111010110
1830 #*1100000001111011010110000010110110011101101011000000110101010001
1831 #*1000010010010000000100101111010011011010011110001000101101111000
1832 #*0000110100101010101100110010011000101100011111101101101000110011
1833 #*0111111011110001100011100000000100110111010110100101011111001100
1834 #*1011111000110110001100100100101101010011011010101001011001101001
1835 #*1000000011011100010011011111101110110001011001010000111100001001
1836 #*0111111001010010011100101110010001111110001000101111101011001110
1837 #*1100000011010010000101100101011011100111011000111010110010100000
1838 #*1000001111000101010001010100110100010100011110110011100111010010
1839 #*0111011001110100100100000000110111000111011110010011000011111001
1840 #*1011100101000110011110111010111000001111011010001011000000100110
1841 #*1111101101010101001000001100100110001110000101100011110101111111
1842 #*1111110101001110011001011010101111011111010111001110110011001010
1843 #*1000011111110010100100001100100010011011101111110110111000001101
1844 #*0101001000111111100111011111100000101100110011000001010100010111
1845 #*1011010100110011011100110010110100010101011010001110111011011110
1846 #*0100000011001000100011000000001101010100110000110100011001110101
1847 #*0100110001100111100011011001000100011001100001111000101110100001
1848 #*1111110001101010001010010010100011011111101110100011110010100011
1849 #*1101011110010111001001011001010101000100111111100011111100111100
1850 #*0100011000011101110101110001001111011010010101100001111010100100
1851 #*0000000110100000111101010010111101110001010101110011010001100010
1852 #*0000110100111110010010110000110110001010110011101010000001011001
1853 ;; After pi:
1854 #*0101100101000101010111011111101011111001001111001110110011101011
1855 #*1011111000110110001100100100101101010011011010101001011001101001
1856 #*1011100101000110011110111010111000001111011010001011000000100110
1857 #*0100000011001000100011000000001101010100110000110100011001110101
1858 #*0000110100111110010010110000110110001010110011101010000001011001
1859 #*1000010010010000000100101111010011011010011110001000101101111000
1860 #*1100000011010010000101100101011011100111011000111010110010100000
1861 #*1000001111000101010001010100110100010100011110110011100111010010
1862 #*0101001000111111100111011111100000101100110011000001010100010111
1863 #*0100011000011101110101110001001111011010010101100001111010100100
1864 #*0010010111110100111000111000010110100000111011101100000111010110
1865 #*1000000011011100010011011111101110110001011001010000111100001001
1866 #*1111101101010101001000001100100110001110000101100011110101111111
1867 #*0100110001100111100011011001000100011001100001111000101110100001
1868 #*1111110001101010001010010010100011011111101110100011110010100011
1869 #*0000110100101010101100110010011000101100011111101101101000110011
1870 #*0111111011110001100011100000000100110111010110100101011111001100
1871 #*0111011001110100100100000000110111000111011110010011000011111001
1872 #*1011010100110011011100110010110100010101011010001110111011011110
1873 #*0000000110100000111101010010111101110001010101110011010001100010
1874 #*1100000001111011010110000010110110011101101011000000110101010001
1875 #*0111111001010010011100101110010001111110001000101111101011001110
1876 #*1111110101001110011001011010101111011111010111001110110011001010
1877 #*1000011111110010100100001100100010011011101111110110111000001101
1878 #*1101011110010111001001011001010101000100111111100011111100111100
1879 ;; After chi:
1880 #*0101100000000101000101000101111011110101001111001100110011101101
1881 #*1111111010111110101101100100101000000011111010011101000000111000
1882 #*1011010001110000001110001010001010000101011001000001000000101110
1883 #*0001000010001001100110001111000100100101111100110000101011010111
1884 #*1010101100001100011010010000110010001000100011001011001001011001
1885 #*1000011110010101010100111111110111001010011000001001101000101010
1886 #*1001000011101000100011101110011011001111111001111010100010100101
1887 #*1000011111000101000001110100111011000110011010010011001101110010
1888 #*1101001010111111100111010001110000101100111001001001010001001111
1889 #*0000011001011111110100110001000111111111010101010011101000100100
1890 #*0101111011110101110000111000010110101110111111001111000110100000
1891 #*1000010011111110110000001110101110100000111001001000110110001001
1892 #*0100101101011101000000001110000101001000001011100000100101111101
1893 #*0100110111110011010011110001010000111001110000110100101011110101
1894 #*0111110001100010001001010101001011001110101110110011001010101010
1895 #*0000110100101110101000110010101011101100010111111111101000000010
1896 #*1111111111110010111011010010000100100111010110101001100111001010
1897 #*0111011011110100000101000000111110100111011011100010000011011001
1898 #*1011100100111001011100010010110100011001010000000010010011001111
1899 #*0111001101110001111110010010111001100010010101110011000110101110
1900 #*0100000101110111010111010010011000011100111100000000100101010001
1901 #*0111110011100010111000101010010001111110100000011111100011001011
1902 #*1010110101001011010000001011111010011011000111001111110111111010
1903 #*1000011110011010110010001110000000000010101111110110111001001100
1904 #*1110100110010111000001110101010100100110111111001100110110110010
1905 ;; After iota:
1906 #*0000100100000101000101000101111011110101001111001100110011101101
1907 #*1111111010111110101101100100101000000011111010011101000000111000
1908 #*1011010001110000001110001010001010000101011001000001000000101110
1909 #*0001000010001001100110001111000100100101111100110000101011010111
1910 #*1010101100001100011010010000110010001000100011001011001001011001
1911 #*1000011110010101010100111111110111001010011000001001101000101010
1912 #*1001000011101000100011101110011011001111111001111010100010100101
1913 #*1000011111000101000001110100111011000110011010010011001101110010
1914 #*1101001010111111100111010001110000101100111001001001010001001111
1915 #*0000011001011111110100110001000111111111010101010011101000100100
1916 #*0101111011110101110000111000010110101110111111001111000110100000
1917 #*1000010011111110110000001110101110100000111001001000110110001001
1918 #*0100101101011101000000001110000101001000001011100000100101111101
1919 #*0100110111110011010011110001010000111001110000110100101011110101
1920 #*0111110001100010001001010101001011001110101110110011001010101010
1921 #*0000110100101110101000110010101011101100010111111111101000000010
1922 #*1111111111110010111011010010000100100111010110101001100111001010
1923 #*0111011011110100000101000000111110100111011011100010000011011001
1924 #*1011100100111001011100010010110100011001010000000010010011001111
1925 #*0111001101110001111110010010111001100010010101110011000110101110
1926 #*0100000101110111010111010010011000011100111100000000100101010001
1927 #*0111110011100010111000101010010001111110100000011111100011001011
1928 #*1010110101001011010000001011111010011011000111001111110111111010
1929 #*1000011110011010110010001110000000000010101111110110111001001100
1930 #*1110100110010111000001110101010100100110111111001100110110110010
1931
1932 ;; Round 9
1933
1934 ;; After theta:
1935 #*1111011000001110000011101000101100010010011011010100000000101100
1936 #*0011001100101001011110011011111001111001010011100111111110001101
1937 #*1000010101111011101101101111101010100101110000000100101101001100
1938 #*0001011000110101010000111101011101101100010001100101111010110000
1939 #*0101010001110100101001110010110110010011001000001000011010101101
1940 #*0111100010011110010010010010100000101101001100010001011011101011
1941 #*0101110101111111010000010001001010110101010000000000011100010000
1942 #*1011011011001110100010010001011011100110110011010110100000010000
1943 #*1101010000000011010001100011101001100101010100011100000000101000
1944 #*1111100100100111000111010011000011100100111110010000111011010000
1945 #*1010000111111110110110010101000001001001101011010111110101100001
1946 #*0100100101101001000011110001111111011010010000110010001000111100
1947 #*0111101001010110100011101011100101101000100010100101001000011111
1948 #*0100101101001111100101000011001001110000011101100001111010010010
1949 #*1000001100011010111010110111001111010101000101110000011001011110
1950 #*1111001000100101101110011111111100001011000011100111011011000011
1951 #*0011001001100101001000101101010101011101111111010011011001111111
1952 #*0100011111111111100110100101011110000111110010100111101110111011
1953 #*1011111110000101101010100000101101010000111101010111000010101000
1954 #*1000110000001001001101110000111101111001111110110000010101011010
1955 #*1011111001111100010001111111001111111011101000011000010110010000
1956 #*1011000101110101001011010101000000000100001001100101011101111110
1957 #*1001110001000000110011101110011010111011101110001010011010011000
1958 #*1000000100100110000100111100011001001011000010100011101000101011
1959 #*0001011011101111110010010111010000111101010100001111100101000110
1960 ;; After rho:
1961 #*1111011000001110000011101000101100010010011011010100000000101100
1962 #*1001100110010100101111001101111100111100101001110011111111000110
1963 #*0001010111101110110110111110101010010111000000010010110100110010
1964 #*1100010001100101111010110000000101100011010101000011110101110110
1965 #*0110010000010000110101011010101010001110100101001110010110110010
1966 #*1000001011010011000100010110111010110111100010011110010010010010
1967 #*0001000100101011010101000000000001110001000001011101011111110100
1968 #*0100001011011011001110100010010001011011100110110011010110100000
1969 #*0000011010001100011101001100101010100011100000000101000110101000
1970 #*1001000011101101000011111001001001110001110100110000111001001111
1971 #*0011010000111111110110110010101000001001001101011010111110101100
1972 #*1000111100010010010110100100001111000111111101101001000011001000
1973 #*1101011100101101000100010100101001000011111011110100101011010001
1974 #*0011101100001111010010010010010110100111110010100001100100111000
1975 #*1110011110101010001011100000110010111101000001100011010111010110
1976 #*1111111110000101100001110011101101100001111110010001001011011100
1977 #*0001011010101010111011111110100110110011111110011001001100101001
1978 #*1111011101110110100011111111111100110100101011110000111110010100
1979 #*1010101110000101010001011111110000101101010100000101101010000111
1980 #*0101101010001100000010010011011100001111011110011111101100000101
1981 #*0110000101100100001011111001111100010001111111001111111011101000
1982 #*1010110001011101010010110101010000000001000010011001010111011111
1983 #*1110001000000110011101110011010111011101110001010011010011000100
1984 #*0010011000010011110001100100101100001010001110100010101110000001
1985 #*1110010100011000010110111011111100100101110100001111010101000011
1986 ;; After pi:
1987 #*1111011000001110000011101000101100010010011011010100000000101100
1988 #*0001000100101011010101000000000001110001000001011101011111110100
1989 #*1101011100101101000100010100101001000011111011110100101011010001
1990 #*1010101110000101010001011111110000101101010100000101101010000111
1991 #*1110010100011000010110111011111100100101110100001111010101000011
1992 #*1100010001100101111010110000000101100011010101000011110101110110
1993 #*1001000011101101000011111001001001110001110100110000111001001111
1994 #*0011010000111111110110110010101000001001001101011010111110101100
1995 #*0001011010101010111011111110100110110011111110011001001100101001
1996 #*1110001000000110011101110011010111011101110001010011010011000100
1997 #*1001100110010100101111001101111100111100101001110011111111000110
1998 #*0100001011011011001110100010010001011011100110110011010110100000
1999 #*0011101100001111010010010010010110100111110010100001100100111000
2000 #*0101101010001100000010010011011100001111011110011111101100000101
2001 #*0110000101100100001011111001111100010001111111001111111011101000
2002 #*0110010000010000110101011010101010001110100101001110010110110010
2003 #*1000001011010011000100010110111010110111100010011110010010010010
2004 #*1000111100010010010110100100001111000111111101101001000011001000
2005 #*1111011101110110100011111111111100110100101011110000111110010100
2006 #*0010011000010011110001100100101100001010001110100010101110000001
2007 #*0001010111101110110110111110101010010111000000010010110100110010
2008 #*0000011010001100011101001100101010100011100000000101000110101000
2009 #*1110011110101010001011100000110010111101000001100011010111010110
2010 #*1111111110000101100001110011101101100001111110010001001011011100
2011 #*1010110001011101010010110101010000000001000010011001010111011111
2012 ;; After chi:
2013 #*0011000000001010000011111100000100010000100001110100100000101101
2014 #*0011100110101011000100001011010001011101000101011100011111110010
2015 #*1001001100110101000010110100100101000011011011111110111110010001
2016 #*1011100110000011010000011111110000111111011111010101101010101011
2017 #*1110010000111001000010111011111101000100110100000110001010010011
2018 #*1110000001110111001110110010100101101011011100001001110011010110
2019 #*1001001001101101001010110101001111000011000110110001111001001110
2020 #*1101010000111011110010110011111001000101001100011000101101101000
2021 #*0001001011001011011001111110100110010001111010011001101000011011
2022 #*1111001010001110011100111010011111001101010001100011011011001101
2023 #*1010000010010000111111011101111010011000111001110011011111011110
2024 #*0000001001011011001110100011011001010011101010101101011110100101
2025 #*0001101001101111011011111010110110110111010011100001110111010000
2026 #*1100001000011100100110010111011100100011011110101111101000000011
2027 #*0010001100101111001011011011111101010010111001001111111011001000
2028 #*0110100100010000100111111010101111001110111000101111010111111010
2029 #*1111001010110111100101001101001010000111100000001110101110000110
2030 #*1000111100010011000110100100001111001101111001101011000011001001
2031 #*1011011101110110100111100101111110110000001010111100101110100110
2032 #*1010010011010000110001100000111100111011001100110010101110000001
2033 #*1111010011001100110100011110111010001011000001110000100101100100
2034 #*0001111010001001111101011111100111100011011110010101001110100000
2035 #*1110011111110010011001100100100010111101000001101011000011010101
2036 #*1110111000100111000101111001000111110111111110010011101011111100
2037 #*1010111001011101011011110101010000100001100010011100010101010111
2038 ;; After iota:
2039 #*0010000100001010000011111100000100010000100001110100100000101101
2040 #*0011100110101011000100001011010001011101000101011100011111110010
2041 #*1001001100110101000010110100100101000011011011111110111110010001
2042 #*1011100110000011010000011111110000111111011111010101101010101011
2043 #*1110010000111001000010111011111101000100110100000110001010010011
2044 #*1110000001110111001110110010100101101011011100001001110011010110
2045 #*1001001001101101001010110101001111000011000110110001111001001110
2046 #*1101010000111011110010110011111001000101001100011000101101101000
2047 #*0001001011001011011001111110100110010001111010011001101000011011
2048 #*1111001010001110011100111010011111001101010001100011011011001101
2049 #*1010000010010000111111011101111010011000111001110011011111011110
2050 #*0000001001011011001110100011011001010011101010101101011110100101
2051 #*0001101001101111011011111010110110110111010011100001110111010000
2052 #*1100001000011100100110010111011100100011011110101111101000000011
2053 #*0010001100101111001011011011111101010010111001001111111011001000
2054 #*0110100100010000100111111010101111001110111000101111010111111010
2055 #*1111001010110111100101001101001010000111100000001110101110000110
2056 #*1000111100010011000110100100001111001101111001101011000011001001
2057 #*1011011101110110100111100101111110110000001010111100101110100110
2058 #*1010010011010000110001100000111100111011001100110010101110000001
2059 #*1111010011001100110100011110111010001011000001110000100101100100
2060 #*0001111010001001111101011111100111100011011110010101001110100000
2061 #*1110011111110010011001100100100010111101000001101011000011010101
2062 #*1110111000100111000101111001000111110111111110010011101011111100
2063 #*1010111001011101011011110101010000100001100010011100010101010111
2064
2065 ;; Round 10
2066
2067 ;; After theta:
2068 #*1011110011001110010000110100000010000101111000011101011101110010
2069 #*0101111101011010111111100010111100011011000110001110010011010011
2070 #*0100111010010100111100001110010110001111001011000011110001011010
2071 #*1001001110001001011011000101001110011110011010010000000110111110
2072 #*0010101000100100111111101010101001011101100101100010011010100111
2073 #*0111110110110011011101111010100011111110000101100000001110001001
2074 #*1111010010011100110001011100100010000101000101100011110101101111
2075 #*0000100110011010001100001001001010001001011100100101100010100011
2076 #*0011100011000001010010100100011000110000111111011100000100001110
2077 #*0011110010010011100001101011001011010100000000000111001011111001
2078 #*0011110101010100101100010101111100001101100000011010100010000001
2079 #*0110010010101010110101001010110100010101101001111111010010000100
2080 #*1100011111001110100101000000000101111011000011011100111000011011
2081 #*1110100000010110101101001101100010000010011011101010000100010110
2082 #*1110110100110010110110001010101001001011101000101011101011111100
2083 #*1111010011010100110100110010101001011011100001000110101010100101
2084 #*1001010001000110011110100100100111000001100011011100100010100111
2085 #*0101001010110010111000011110111100000001101001010110001100000010
2086 #*1001110101111100101100111111000000010001001111111001000010110011
2087 #*0110101011001101001100110001101000100010011101010110111110110101
2088 #*0110100100001000100111010110111100011110011000011001011000111011
2089 #*0111100001111000000110110110001010100101011101000111000010000001
2090 #*0011101001010011100111011110010001110001010001010110001100011110
2091 #*1100010000101101001110100011111001010110111011010110000111101001
2092 #*0110000001000000100110100100000100111000110011111000000101100011
2093 ;; After rho:
2094 #*1011110011001110010000110100000010000101111000011101011101110010
2095 #*1010111110101101011111110001011110001101100011000111001001101001
2096 #*0011101001010011110000111001011000111100101100001111000101101001
2097 #*1110011010010000000110111110100100111000100101101100010100111001
2098 #*1011001011000100110101001110010101000100100111111101010101001011
2099 #*1000111111100001011000000011100010010111110110110011011101111010
2100 #*0101110010001000010100010110001111010110111111110100100111001100
2101 #*1000110000100110011010001100001001001010001001011100100101100010
2102 #*1000001010010100100011000110000111111011100000100001110001110001
2103 #*0000011100101111100100111100100100111000011010110010110101000000
2104 #*0010011110101010100101100010101111100001101100000011010100010000
2105 #*0010000100011001001010101011010100101011010001010110100111111101
2106 #*1000000000101111011000011011100111000011011110001111100111010010
2107 #*0011011101010000100010110111010000001011010110100110110001000001
2108 #*0101010010010111010001010111010111111001110110100110010110110001
2109 #*1001010100101101110000100011010101010010111110100110101001101001
2110 #*1101001001001110000011000110111001000101001111001010001000110011
2111 #*1100011000000100101001010110010111000011110111100000001101001010
2112 #*1111110010000101100111001110101111100101100111111000000010001001
2113 #*1011010101101010110011010011001100011010001000100111010101101111
2114 #*0110010110001110110110100100001000100111010110111100011110011000
2115 #*0101111000011110000001101101100010101001010111010001110000100000
2116 #*1101001010011100111011110010001110001010001010110001100011110001
2117 #*0010110100111010001111100101011011101101011000011110100111000100
2118 #*0000010110001101100000010000001001101001000001001110001100111110
2119 ;; After pi:
2120 #*1011110011001110010000110100000010000101111000011101011101110010
2121 #*0101110010001000010100010110001111010110111111110100100111001100
2122 #*1000000000101111011000011011100111000011011110001111100111010010
2123 #*1111110010000101100111001110101111100101100111111000000010001001
2124 #*0000010110001101100000010000001001101001000001001110001100111110
2125 #*1110011010010000000110111110100100111000100101101100010100111001
2126 #*0000011100101111100100111100100100111000011010110010110101000000
2127 #*0010011110101010100101100010101111100001101100000011010100010000
2128 #*1101001001001110000011000110111001000101001111001010001000110011
2129 #*1101001010011100111011110010001110001010001010110001100011110001
2130 #*1010111110101101011111110001011110001101100011000111001001101001
2131 #*1000110000100110011010001100001001001010001001011100100101100010
2132 #*0011011101010000100010110111010000001011010110100110110001000001
2133 #*1011010101101010110011010011001100011010001000100111010101101111
2134 #*0110010110001110110110100100001000100111010110111100011110011000
2135 #*1011001011000100110101001110010101000100100111111101010101001011
2136 #*1000111111100001011000000011100010010111110110110011011101111010
2137 #*0010000100011001001010101011010100101011010001010110100111111101
2138 #*1100011000000100101001010110010111000011110111100000001101001010
2139 #*0010110100111010001111100101011011101101011000011110100111000100
2140 #*0011101001010011110000111001011000111100101100001111000101101001
2141 #*1000001010010100100011000110000111111011100000100001110001110001
2142 #*0101010010010111010001010111010111111001110110100110010110110001
2143 #*1001010100101101110000100011010101010010111110100110101001101001
2144 #*0101111000011110000001101101100010101001010111010001110000100000
2145 ;; After chi:
2146 #*0011110011101001011000111101100010000100111000010110011101100000
2147 #*0010000000001000110011010010000111110010011110000100100111000101
2148 #*1000000100100111011000001011100111001011011110001001101011100100
2149 #*0100010011000111110111101010101101100001011111101001010011001001
2150 #*0100010110001101100100010010000100111011000110101110101110110010
2151 #*1100011000010000000111111100101111111001000001101101010100101001
2152 #*1101011101101011100110111000110100111100011001111010111101100011
2153 #*0010011100111010011101010010101001101011101100110010110111010000
2154 #*1111011001001110000111001010011001110101101010000110011100111011
2155 #*1101001110110011011011110010001110001010010000100011000010110001
2156 #*1001110011111101111111000010001110001100110101100101011001101000
2157 #*0000110000001100001011001100000101011010000001011101100001001100
2158 #*0111011111010100100110010011010000101110000000111110111011010001
2159 #*0011111101001011111010000010011010010010101001100100010100001110
2160 #*0110010110001100110110101000001001100101011110100100111010011010
2161 #*1001001011011100110111100110000001101100100110111001110111001110
2162 #*0100100111100101111001010111100001010111010000010011010101111000
2163 #*0000100000100011001100001010011100000111011001001000000101111001
2164 #*0101010011000000011001011100010011000011010000000001011101000001
2165 #*0010000000011011000111100100111001111110001000011100101111110100
2166 #*0110111001010000100000101000001000111100111010001001000011101001
2167 #*0000001110111100000011100110000111111001101000100001011000111001
2168 #*0001111010000101010000011011110101010000110111110111000110110001
2169 #*1011010101101100000000110011001101000110010110101000101100100000
2170 #*1101111010011010000010101011100101101010010111110001000000110000
2171 ;; After iota:
2172 #*1010110011101000011000111101100110000100111000010110011101100000
2173 #*0010000000001000110011010010000111110010011110000100100111000101
2174 #*1000000100100111011000001011100111001011011110001001101011100100
2175 #*0100010011000111110111101010101101100001011111101001010011001001
2176 #*0100010110001101100100010010000100111011000110101110101110110010
2177 #*1100011000010000000111111100101111111001000001101101010100101001
2178 #*1101011101101011100110111000110100111100011001111010111101100011
2179 #*0010011100111010011101010010101001101011101100110010110111010000
2180 #*1111011001001110000111001010011001110101101010000110011100111011
2181 #*1101001110110011011011110010001110001010010000100011000010110001
2182 #*1001110011111101111111000010001110001100110101100101011001101000
2183 #*0000110000001100001011001100000101011010000001011101100001001100
2184 #*0111011111010100100110010011010000101110000000111110111011010001
2185 #*0011111101001011111010000010011010010010101001100100010100001110
2186 #*0110010110001100110110101000001001100101011110100100111010011010
2187 #*1001001011011100110111100110000001101100100110111001110111001110
2188 #*0100100111100101111001010111100001010111010000010011010101111000
2189 #*0000100000100011001100001010011100000111011001001000000101111001
2190 #*0101010011000000011001011100010011000011010000000001011101000001
2191 #*0010000000011011000111100100111001111110001000011100101111110100
2192 #*0110111001010000100000101000001000111100111010001001000011101001
2193 #*0000001110111100000011100110000111111001101000100001011000111001
2194 #*0001111010000101010000011011110101010000110111110111000110110001
2195 #*1011010101101100000000110011001101000110010110101000101100100000
2196 #*1101111010011010000010101011100101101010010111110001000000110000
2197
2198 ;; Round 11
2199
2200 ;; After theta:
2201 #*0111100101000000000110110001010001011001110000011010011111101000
2202 #*1100100100110110111011110010110010111111100000110111010001010101
2203 #*1000011000100110110101111010001111110000001101001001001000000001
2204 #*0000010100110001101110110010110101011000001000110001101011001010
2205 #*0010110010100111001100111001010011101000110100011011010110101100
2206 #*0001001110111000011001110000011000100100001001100001010110100001
2207 #*0011111001010101101110011000000001110001100111001001001011110011
2208 #*0010000000111011110000100011000001010000111111110010010100110101
2209 #*1011011110111000011110010010000001001100111101011110100100111000
2210 #*1011101010011001110011011001011001011001100010010110111010101111
2211 #*0100100101010101100001001110111001010001111101101001011011100000
2212 #*1110010100110010000011101100110000010111111111101110010111011100
2213 #*0111000011010101001011100010111000010101010011111110011000110100
2214 #*0111111010111101100011011010000010101011111110111100101100001101
2215 #*0000110010100110011110000011011110110110101100010001000010000100
2216 #*0100011101110100101001101010110110110001101110110101110101000110
2217 #*1010000011011011110001110111010100011010101110100000100011101000
2218 #*0000111100100010100001111011110100111100001010001000100110011100
2219 #*0001010100110110000000000100001011111010000111011001100101000010
2220 #*0100100100110001101111001111101110101101111010101001010111101010
2221 #*1011101111111000111110100100111111100001110010000101000001100001
2222 #*1110101010000010001011000110110010110100010110010010101110101001
2223 #*0001100110000100111101101010011101101011100100110111100101010100
2224 #*1111010010011010011001101011010101111111000001110000010100100011
2225 #*1011011110110000101010000000110010111001100101000100111000101110
2226 ;; After rho:
2227 #*0111100101000000000110110001010001011001110000011010011111101000
2228 #*1110010010011011011101111001011001011111110000011011101000101010
2229 #*0001100010011011010111101000111111000000110100100100100000000110
2230 #*1000001000110001101011001010000001010011000110111011001011010101
2231 #*0001101000110110101101011000010110010100111001100111001010011101
2232 #*0110001001000010011000010101101000010001001110111000011001110000
2233 #*1001100000000111000110011100100100101111001100111110010101011011
2234 #*1101010010000000111011110000100011000001010000111111110010010100
2235 #*0111000011110010010000001001100111101011110100100111000101101111
2236 #*1001011011101010111110111010100110011100110110010110010110011000
2237 #*0000100100101010101100001001110111001010001111101101001011011100
2238 #*0111011100111001010011001000001110110011000001011111111110111001
2239 #*1100010111000010101010011111110011000110100011100001101010100101
2240 #*1111110111100101100001101011111101011110110001101101000001010101
2241 #*0110111101101101011000100010000100001000000110010100110011110000
2242 #*0101011011011000110111011010111010100011001000111011101001010011
2243 #*0011101110101000110101011101000001000111010001010000011011011110
2244 #*0001001100111000000111100100010100001111011110100111100001010001
2245 #*1110110011001010000100001010100110110000000000100001011111010000
2246 #*1110101001001001001100011011110011111011101011011110101010010101
2247 #*0001010000011000011011101111111000111110100100111111100001110010
2248 #*0111101010100000100010110001101100101101000101100100101011101010
2249 #*1100110000100111101101010011101101011100100110111100101010100000
2250 #*1001101001100110101101010111111100000111000001010010001111110100
2251 #*0011100010111010110111101100001010100000001100101110011001010001
2252 ;; After pi:
2253 #*0111100101000000000110110001010001011001110000011010011111101000
2254 #*1001100000000111000110011100100100101111001100111110010101011011
2255 #*1100010111000010101010011111110011000110100011100001101010100101
2256 #*1110110011001010000100001010100110110000000000100001011111010000
2257 #*0011100010111010110111101100001010100000001100101110011001010001
2258 #*1000001000110001101011001010000001010011000110111011001011010101
2259 #*1001011011101010111110111010100110011100110110010110010110011000
2260 #*0000100100101010101100001001110111001010001111101101001011011100
2261 #*0011101110101000110101011101000001000111010001010000011011011110
2262 #*1100110000100111101101010011101101011100100110111100101010100000
2263 #*1110010010011011011101111001011001011111110000011011101000101010
2264 #*1101010010000000111011110000100011000001010000111111110010010100
2265 #*1111110111100101100001101011111101011110110001101101000001010101
2266 #*1110101001001001001100011011110011111011101011011110101010010101
2267 #*0001010000011000011011101111111000111110100100111111100001110010
2268 #*0001101000110110101101011000010110010100111001100111001010011101
2269 #*0110001001000010011000010101101000010001001110111000011001110000
2270 #*0111011100111001010011001000001110110011000001011111111110111001
2271 #*0001001100111000000111100100010100001111011110100111100001010001
2272 #*1001101001100110101101010111111100000111000001010010001111110100
2273 #*0001100010011011010111101000111111000000110100100100100000000110
2274 #*0111000011110010010000001001100111101011110100100111000101101111
2275 #*0110111101101101011000100010000100001000000110010100110011110000
2276 #*0101011011011000110111011010111010100011001000111011101001010011
2277 #*0111101010100000100010110001101100101101000101100100101011101010
2278 ;; After chi:
2279 #*0011110010000000101110110010000010011001010011011011110101001100
2280 #*1011000000001111000010011100100000011111001100111110000000001011
2281 #*1101010111110010011001111011111011000110101111101111101010100100
2282 #*1010110110001010000100011011110111101001110000110001011001111000
2283 #*1011100010111101110111100000101110000110000000001010011001000010
2284 #*1000101100110001101011001011010000010001001111010010000010010001
2285 #*1010010001101010101111101110100110011001100110000110000110011010
2286 #*1100110100101101100100001011011011010010101001000001101011111100
2287 #*0011100110111000110111010101000001000100010001010011011010001011
2288 #*1101100011101101111001100011001011010000010110111000111110101000
2289 #*1100110111111110011101110010000101000001010001011011101001101011
2290 #*1101011010001000110111100000100001100000011010101101011000010100
2291 #*1110100111110101110010001111110101011010110101001100000000110111
2292 #*0000101011001010001000001011110010111010111011011110100010011101
2293 #*0000010000011000111001101111011010111110100100011011110011100110
2294 #*0000111100001111101110010000010000110110111000100000101100010100
2295 #*0110001001000010011100110001111000011101010000011000011000110000
2296 #*1111111101111111111011011011100110110011000000001111110000011101
2297 #*0001001100101000000111101100010110011111100110000010100001011000
2298 #*1111101000100110111101010010010100000110000111001010011110010100
2299 #*0001011110010110011111001010111111000000110110110100010010010110
2300 #*0110000001100010110111010001011101001000111100001100001101101100
2301 #*0100011101001101011000000011000000000100000011010000110001011000
2302 #*0101011011000011100010010010101001100011111000111011101001010111
2303 #*0001101011000000100010110000101100000110000101100111101110000011
2304 ;; After iota:
2305 #*0110110010000000101110110010000110011001010011011011110101001100
2306 #*1011000000001111000010011100100000011111001100111110000000001011
2307 #*1101010111110010011001111011111011000110101111101111101010100100
2308 #*1010110110001010000100011011110111101001110000110001011001111000
2309 #*1011100010111101110111100000101110000110000000001010011001000010
2310 #*1000101100110001101011001011010000010001001111010010000010010001
2311 #*1010010001101010101111101110100110011001100110000110000110011010
2312 #*1100110100101101100100001011011011010010101001000001101011111100
2313 #*0011100110111000110111010101000001000100010001010011011010001011
2314 #*1101100011101101111001100011001011010000010110111000111110101000
2315 #*1100110111111110011101110010000101000001010001011011101001101011
2316 #*1101011010001000110111100000100001100000011010101101011000010100
2317 #*1110100111110101110010001111110101011010110101001100000000110111
2318 #*0000101011001010001000001011110010111010111011011110100010011101
2319 #*0000010000011000111001101111011010111110100100011011110011100110
2320 #*0000111100001111101110010000010000110110111000100000101100010100
2321 #*0110001001000010011100110001111000011101010000011000011000110000
2322 #*1111111101111111111011011011100110110011000000001111110000011101
2323 #*0001001100101000000111101100010110011111100110000010100001011000
2324 #*1111101000100110111101010010010100000110000111001010011110010100
2325 #*0001011110010110011111001010111111000000110110110100010010010110
2326 #*0110000001100010110111010001011101001000111100001100001101101100
2327 #*0100011101001101011000000011000000000100000011010000110001011000
2328 #*0101011011000011100010010010101001100011111000111011101001010111
2329 #*0001101011000000100010110000101100000110000101100111101110000011
2330
2331 ;; Round 12
2332
2333 ;; After theta:
2334 #*0000100001001000111110000101000000101000001101011111110100111011
2335 #*1010011001010101111101011110100101011100110111100110000000101010
2336 #*1111100010110110000111010100000100000000010001101100010101001101
2337 #*0010011011000101111100111011000111100100011000001110001011011111
2338 #*0111101011000101111101110011101011110010100101101100100000111001
2339 #*1110111111111001111011111100010110100000010001010110000011100110
2340 #*1011001000110000010000101100100011011010011101011110000110111011
2341 #*1110000001101001111010100100100100010100010111000010010100010101
2342 #*1011001011110111001111110101110001001001111001101100001000101100
2343 #*0001101010010101110011110000001110100100110011011110000111010011
2344 #*1010100100110110001101000101000011110000001111011111101000011100
2345 #*1100000011010010001000100010100100100011100001110101011000110101
2346 #*1100010010110001101100100000001010011100001011001111111111011110
2347 #*1000000110000101110000101011000010110111010011100001110000111010
2348 #*1100011001100000110011111100011111001010000001111101001010011101
2349 #*0110101111000111111110100111010110000111100110100100101101100011
2350 #*0111010000011000100011110011111101011110101011000000011000010001
2351 #*1101001000111011100101110100011001110101111110001100001111110100
2352 #*1001100001100111111111001100100110010010001110111101110011111111
2353 #*0011100001011110110111000001010001110010100010101100100111101111
2354 #*0111001101011110001111111101111001110001101000110000010011100001
2355 #*0111011000111000001000010011011000001011000111010100001101001101
2356 #*0110101000001001000110101100111111000010111101010011001110110001
2357 #*1101110110001100011010110010011001101110010000000100111011110000
2358 #*1101100010111000101000100011101001110010100000000001010111111000
2359 ;; After rho:
2360 #*0000100001001000111110000101000000101000001101011111110100111011
2361 #*0101001100101010111110101111010010101110011011110011000000010101
2362 #*1110001011011000011101010000010000000001000110110001010100110111
2363 #*0100011000001110001011011111001001101100010111110011101100011110
2364 #*0101001011011001000001110010111101011000101111101110011101011110
2365 #*0101101000000100010101100000111001101110111111111001111011111100
2366 #*0010110010001101101001110101111000011011101110110010001100000100
2367 #*0101011110000001101001111010100100100100010100010111000010010100
2368 #*1110111001111110101110001001001111001101100001000101100101100101
2369 #*1101111000011101001100011010100101011100111100000011101001001100
2370 #*1001010100100110110001101000101000011110000001111011111101000011
2371 #*1000110101110000001101001000100010001010010010001110000111010101
2372 #*0100000001010011100001011001111111111011110110001001011000110110
2373 #*1010011100001110000111010100000011000010111000010101100001011011
2374 #*1000111110010100000011111010010100111011100011001100000110011111
2375 #*0011101011000011110011010010010110110001101101011110001111111101
2376 #*0111100111111010111101010110000000110000100010111010000011000100
2377 #*1000011111101001101001000111011100101110100011001110101111110001
2378 #*1101111011100111111111001100001100111111111001100100110010010001
2379 #*1110111100111000010111101101110000010100011100101000101011001001
2380 #*1100000100111000010111001101011110001111111101111001110001101000
2381 #*0101110110001110000010000100110110000010110001110101000011010011
2382 #*0101000001001000110101100111111000010111101010011001110110001011
2383 #*1000110001101011001001100110111001000000010011101111000011011101
2384 #*0101011111100011011000101110001010001000111010011100101000000000
2385 ;; After pi:
2386 #*0000100001001000111110000101000000101000001101011111110100111011
2387 #*0010110010001101101001110101111000011011101110110010001100000100
2388 #*0100000001010011100001011001111111111011110110001001011000110110
2389 #*1101111011100111111111001100001100111111111001100100110010010001
2390 #*0101011111100011011000101110001010001000111010011100101000000000
2391 #*0100011000001110001011011111001001101100010111110011101100011110
2392 #*1101111000011101001100011010100101011100111100000011101001001100
2393 #*1001010100100110110001101000101000011110000001111011111101000011
2394 #*0111100111111010111101010110000000110000100010111010000011000100
2395 #*0101000001001000110101100111111000010111101010011001110110001011
2396 #*0101001100101010111110101111010010101110011011110011000000010101
2397 #*0101011110000001101001111010100100100100010100010111000010010100
2398 #*1010011100001110000111010100000011000010111000010101100001011011
2399 #*1110111100111000010111101101110000010100011100101000101011001001
2400 #*1100000100111000010111001101011110001111111101111001110001101000
2401 #*0101001011011001000001110010111101011000101111101110011101011110
2402 #*0101101000000100010101100000111001101110111111111001111011111100
2403 #*1000110101110000001101001000100010001010010010001110000111010101
2404 #*1000011111101001101001000111011100101110100011001110101111110001
2405 #*1000110001101011001001100110111001000000010011101111000011011101
2406 #*1110001011011000011101010000010000000001000110110001010100110111
2407 #*1110111001111110101110001001001111001101100001000101100101100101
2408 #*1000111110010100000011111010010100111011100011001100000110011111
2409 #*0011101011000011110011010010010110110001101101011110001111111101
2410 #*0101110110001110000010000100110110000010110001110101000011010011
2411 ;; After chi:
2412 #*0100100000011010111110001101000111001000011101010110100100001001
2413 #*1011001000101001110111110001111000011111100111010110101110000101
2414 #*0100000101010011100001111011111101111011110100010001010000110110
2415 #*1101011011101111011001001101001100011111111100100111100110101010
2416 #*0111001101100110011001011110110010011011011000111100100000000100
2417 #*0100011100101100111010111111000001101110010110001011111000011101
2418 #*1011011011000101000000001100100101111100011110000011101011001000
2419 #*1001010100100110110001001001010000011001001001111010001001001000
2420 #*0111111111111100110111001110000001011000110111011000001011010000
2421 #*1100100001011001110001100111011100000111000010011001110111001011
2422 #*1111001100100100111000101011010001101100110011110011100001011110
2423 #*0001111110110001111001010011010100110000010000111111001000010100
2424 #*1010011100001110000111010100001101001001011001000100110001111011
2425 #*1111110100111010111111001111110000110100011110101010101011011100
2426 #*1100010110111001010110011101111010001111111001111101110011101000
2427 #*1101011110101001001001111010111111011000101111101000011001011111
2428 #*0101100010001101110101100111100101001010011110111001010011011100
2429 #*1000010101110010001101101000000011001010000010101111000111011001
2430 #*1101010101111001101001010111011000110110001111001110110011110011
2431 #*1000010001101111011101100110111001100110000011111110100001111101
2432 #*1110001101011000011100100010000000110011000100111001010110101101
2433 #*1101111000111101011110001001001101001101101101010111101100000101
2434 #*1100101010011000000011111110110100111001110011101101000110011101
2435 #*1001100010010011101110000010010110110000101011011110011011011001
2436 #*0101000110101000100000001101111001001110010000110001100010010011
2437 ;; After iota:
2438 #*1001100100011011111110001101000011001000011101010110100100001001
2439 #*1011001000101001110111110001111000011111100111010110101110000101
2440 #*0100000101010011100001111011111101111011110100010001010000110110
2441 #*1101011011101111011001001101001100011111111100100111100110101010
2442 #*0111001101100110011001011110110010011011011000111100100000000100
2443 #*0100011100101100111010111111000001101110010110001011111000011101
2444 #*1011011011000101000000001100100101111100011110000011101011001000
2445 #*1001010100100110110001001001010000011001001001111010001001001000
2446 #*0111111111111100110111001110000001011000110111011000001011010000
2447 #*1100100001011001110001100111011100000111000010011001110111001011
2448 #*1111001100100100111000101011010001101100110011110011100001011110
2449 #*0001111110110001111001010011010100110000010000111111001000010100
2450 #*1010011100001110000111010100001101001001011001000100110001111011
2451 #*1111110100111010111111001111110000110100011110101010101011011100
2452 #*1100010110111001010110011101111010001111111001111101110011101000
2453 #*1101011110101001001001111010111111011000101111101000011001011111
2454 #*0101100010001101110101100111100101001010011110111001010011011100
2455 #*1000010101110010001101101000000011001010000010101111000111011001
2456 #*1101010101111001101001010111011000110110001111001110110011110011
2457 #*1000010001101111011101100110111001100110000011111110100001111101
2458 #*1110001101011000011100100010000000110011000100111001010110101101
2459 #*1101111000111101011110001001001101001101101101010111101100000101
2460 #*1100101010011000000011111110110100111001110011101101000110011101
2461 #*1001100010010011101110000010010110110000101011011110011011011001
2462 #*0101000110101000100000001101111001001110010000110001100010010011
2463
2464 ;; Round 13
2465
2466 ;; After theta:
2467 #*0111110010101100001111100010000111011001100000000011011010000000
2468 #*0011010110000011110010001000011111010010111110011111101000011101
2469 #*1101000001011111101111110111100101010101010110110111010101110000
2470 #*0011111111011110100001011010110001011010010001000001111100001111
2471 #*0110011001010100011011100111110111111110000000000110110111010100
2472 #*1010001010011011001011010000000101111111101011011110000110010100
2473 #*0011000101101111000101110101000010110001000111001010101101010000
2474 #*0000010000101010111111000101001000110111101011011100001100001110
2475 #*1001011011001101001111011001111100011101011010111110010001110101
2476 #*1101110101101011110011011110011001100010011010100011100000011011
2477 #*0001011010010011001001000100010101111101001110100110011111010111
2478 #*1001100000011011111100101010110011111101001001110110001110001100
2479 #*0011011000000010001001011000010101100111111011100010110100111101
2480 #*0001010000001011000111011000001101110001110011001100110001111001
2481 #*1101000010001011010100100100111111101010100001000111100100111000
2482 #*0011001000011110111000010101111011001001010010111101100111010110
2483 #*1101111100100111110000011110000010000111000111110000010101000100
2484 #*0001010001111110000011100100011011100100100000001001000010011111
2485 #*0011110001001000010001000000100101110011100010101000101001010110
2486 #*1001000101011101011111011111111100000011011011000100110110101101
2487 #*0000011011101111101101001101000100100010111001101100101000100100
2488 #*0101100110010111011011110000101010000000110100011110101010011101
2489 #*0101101110010100001101110010101100010111010001001011000011011011
2490 #*0111000110100010010110010101101011110101000110111000000001111100
2491 #*0100010010011010100010110100111100101011001000001011110101000011
2492 ;; After rho:
2493 #*0111110010101100001111100010000111011001100000000011011010000000
2494 #*1001101011000001111001000100001111101001011111001111110100001110
2495 #*0100000101111110111111011110010101010101011011011101010111000011
2496 #*1010010001000001111100001111001111111101111010000101101011000101
2497 #*1100000000001101101110101000110011001010100011011100111110111111
2498 #*0001011111111010110111100001100101001010001010011011001011010000
2499 #*0111010100001011000100011100101010110101000000110001011011110001
2500 #*0011100000010000101010111111000101001000110111101011011100001100
2501 #*1001101001111011001111100011101011010111110010001110101100101101
2502 #*1010001110000001101111011101011010111100110111100110011000100110
2503 #*1110001011010010011001001000100010101111101001110100110011111010
2504 #*1110001100100110000001101111110010101011001111110100100111011000
2505 #*1011000010101100111111011100010110100111101001101100000001000100
2506 #*1110011001100110001111001000101000000101100011101100000110111000
2507 #*1001111111010101000010001111001001110001101000010001011010100100
2508 #*1010111101100100101001011110110011101011000110010000111101110000
2509 #*0000111100000100001110001111100000101010001001101111100100111110
2510 #*0010000100111110001010001111110000011100100011011100100100000001
2511 #*0101010001010010101100011110001001000010001000000100101110011100
2512 #*1010110110010001010111010111110111111111000000110110110001001101
2513 #*1011001010001001000000011011101111101101001101000100100010111001
2514 #*0101011001100101110110111100001010100000001101000111101010100111
2515 #*1101110010100001101110010101100010111010001001011000011011011010
2516 #*1010001001011001010110101111010100011011100000000111110001110001
2517 #*1111010100001101000100100110101000101101001111001010110010000010
2518 ;; After pi:
2519 #*0111110010101100001111100010000111011001100000000011011010000000
2520 #*0111010100001011000100011100101010110101000000110001011011110001
2521 #*1011000010101100111111011100010110100111101001101100000001000100
2522 #*0101010001010010101100011110001001000010001000000100101110011100
2523 #*1111010100001101000100100110101000101101001111001010110010000010
2524 #*1010010001000001111100001111001111111101111010000101101011000101
2525 #*1010001110000001101111011101011010111100110111100110011000100110
2526 #*1110001011010010011001001000100010101111101001110100110011111010
2527 #*0000111100000100001110001111100000101010001001101111100100111110
2528 #*1101110010100001101110010101100010111010001001011000011011011010
2529 #*1001101011000001111001000100001111101001011111001111110100001110
2530 #*0011100000010000101010111111000101001000110111101011011100001100
2531 #*1110011001100110001111001000101000000101100011101100000110111000
2532 #*1010110110010001010111010111110111111111000000110110110001001101
2533 #*1011001010001001000000011011101111101101001101000100100010111001
2534 #*1100000000001101101110101000110011001010100011011100111110111111
2535 #*0001011111111010110111100001100101001010001010011011001011010000
2536 #*1110001100100110000001101111110010101011001111110100100111011000
2537 #*0010000100111110001010001111110000011100100011011100100100000001
2538 #*1010001001011001010110101111010100011011100000000111110001110001
2539 #*0100000101111110111111011110010101010101011011011101010111000011
2540 #*1001101001111011001111100011101011010111110010001110101100101101
2541 #*1001111111010101000010001111001001110001101000010001011010100100
2542 #*1010111101100100101001011110110011101011000110010000111101110000
2543 #*0101011001100101110110111100001010100000001101000111101010100111
2544 ;; After chi:
2545 #*1111110000001000110100100010010011011011001001001111011010000100
2546 #*0011000101011001000100011110100011110101000000110001110101101001
2547 #*0001000110100001111111111100110110001010101110100110010001000110
2548 #*0101110011110010100111011110001110010010101000000101100110011100
2549 #*1111010000001110000100111010000000001001001111111010110011110011
2550 #*1110010000010011101100001111101111111110110010010101001000011101
2551 #*1010111010000101101001011010011010111100110111101101011100100010
2552 #*0011001001110011111001011000100000111111101001100100101000111010
2553 #*0010111101000100011110000101101101101111111011101010000100111011
2554 #*1101111100100001101101000101110010111010001100111010001011111000
2555 #*0101110010100111111100000100100111101100011111001011110110111110
2556 #*0011000110000001111010101000010010110010110111111001101101001001
2557 #*1111010001101110001111000000100000000101101110101100000100001000
2558 #*1010010111010001101110010011110111111111010010111101100101001011
2559 #*1001001010011001000010100000101111101101101101100100101010111001
2560 #*0010000000001001101110100110100001101011100110111000011010110111
2561 #*0001011111100010111101100001100101011110101010010011001011010001
2562 #*0110000101100111010101001111110110101000001111110111110110101000
2563 #*0110000100111010100010001111010011011100100000000100101010001111
2564 #*1011010110101011000111101110010000011011101000000100110000110001
2565 #*0100010011111010111111010010010101110101010011001100000101000011
2566 #*1011101001011011100110110011011001011101110100001110001001111101
2567 #*1100111111010100010100101111000001110001100001010110011000100011
2568 #*1010111001111110100000011100100110111110010100001000101000110000
2569 #*1100110001100100110110011101100000100010101101000101000010001011
2570 ;; After iota:
2571 #*0010110100001000110100100010010011011011001001001111011010000101
2572 #*0011000101011001000100011110100011110101000000110001110101101001
2573 #*0001000110100001111111111100110110001010101110100110010001000110
2574 #*0101110011110010100111011110001110010010101000000101100110011100
2575 #*1111010000001110000100111010000000001001001111111010110011110011
2576 #*1110010000010011101100001111101111111110110010010101001000011101
2577 #*1010111010000101101001011010011010111100110111101101011100100010
2578 #*0011001001110011111001011000100000111111101001100100101000111010
2579 #*0010111101000100011110000101101101101111111011101010000100111011
2580 #*1101111100100001101101000101110010111010001100111010001011111000
2581 #*0101110010100111111100000100100111101100011111001011110110111110
2582 #*0011000110000001111010101000010010110010110111111001101101001001
2583 #*1111010001101110001111000000100000000101101110101100000100001000
2584 #*1010010111010001101110010011110111111111010010111101100101001011
2585 #*1001001010011001000010100000101111101101101101100100101010111001
2586 #*0010000000001001101110100110100001101011100110111000011010110111
2587 #*0001011111100010111101100001100101011110101010010011001011010001
2588 #*0110000101100111010101001111110110101000001111110111110110101000
2589 #*0110000100111010100010001111010011011100100000000100101010001111
2590 #*1011010110101011000111101110010000011011101000000100110000110001
2591 #*0100010011111010111111010010010101110101010011001100000101000011
2592 #*1011101001011011100110110011011001011101110100001110001001111101
2593 #*1100111111010100010100101111000001110001100001010110011000100011
2594 #*1010111001111110100000011100100110111110010100001000101000110000
2595 #*1100110001100100110110011101100000100010101101000101000010001011
2596
2597 ;; Round 14
2598
2599 ;; After theta:
2600 #*1110110010000011101000010001110101000000101101110110111001011010
2601 #*0111110010010001010101000001001100010110110010110011100111000100
2602 #*1001111011010100011001101111010001000010101010110001010101000001
2603 #*0100010111000001000010001100011001001000011010111000000101100111
2604 #*1001010110001010101011001111010110000010010010010110001011001001
2605 #*0010010110011000110000111100001001100101010110101100101011000010
2606 #*1110001101001101111000000101110101011111000101101111001110001111
2607 #*1011110100000110011111001011000111110111101101110011101100111101
2608 #*0011011001110111111011010111111010110101001001010111100111000000
2609 #*1011111010100101000010110000100100110001010001010110110011000010
2610 #*1001110100101100100000110111000001110111111011110010010101100001
2611 #*0111110001001001101011110111111101010001000101111011111111100100
2612 #*0111101100011011101001010011000111001101101010111011000000001111
2613 #*1011110011100010001011000001100000100101100000000000000110110000
2614 #*1111001100011101101101010101111001100110110000001000010010000011
2615 #*1110000110000010110010010101000111110000000010000001111001101000
2616 #*0101101000101010101100111110001010111101011000010001011001111100
2617 #*1110111000010010110011011100010001100000001011100000110010101111
2618 #*0111100000001001000111011101000100000110010010111001001001110100
2619 #*1101010000101111101000011011000110010000110101101000001000001011
2620 #*1000010101110001100011100001110011101110110111110101100110011100
2621 #*1111011110010011110111101100110110111110000110001100011011010000
2622 #*0100000010100001110010111100100110111001100101000001011100100100
2623 #*1011011101001101000101001110110001100100100110110101001011001011
2624 #*1010110111100000011001101000110110101001110000101001111010110001
2625 ;; After rho:
2626 #*1110110010000011101000010001110101000000101101110110111001011010
2627 #*0011111001001000101010100000100110001011011001011001110011100010
2628 #*0111101101010001100110111101000100001010101011000101010100000110
2629 #*1000011010111000000101100111010001011100000100001000110001100100
2630 #*0100100100101100010110010011001010110001010101011001111010110000
2631 #*0010011001010101101011001010110000100010010110011000110000111100
2632 #*0000010111010101111100010110111100111000111111100011010011011110
2633 #*1111011011110100000110011111001011000111110111101101110011101100
2634 #*1110111111011010111111010110101001001010111100111000000001101100
2635 #*0101011011001100001010111110101001010000101100001001001100010100
2636 #*0011001110100101100100000110111000001110111111011110010010101100
2637 #*1111100100011111000100100110101111011111110101000100010111101111
2638 #*1010011000111001101101010111011000000001111011110110001101110100
2639 #*1100000000000000110110000101111001110001000101100000110000010010
2640 #*1011110011001101100000010000100100000111111001100011101101101010
2641 #*1010100011111000000001000000111100110100011100001100000101100100
2642 #*1001111100010101111010110000100010110011111000101101000101010101
2643 #*0001100101011111110111000010010110011011100010001100000001011100
2644 #*0101110010010011101000111100000001001000111011101000100000110010
2645 #*0000101111010100001011111010000110110001100100001101011010000010
2646 #*1101011001100111001000010101110001100011100001110011101110110111
2647 #*0011110111100100111101111011001101101111100001100011000110110100
2648 #*0000010100001110010111100100110111001100101000001011100100100010
2649 #*0100110100010100111011000110010010011011010100101100101110110111
2650 #*0111101011000110101101111000000110011010001101101010011100001010
2651 ;; After pi:
2652 #*1110110010000011101000010001110101000000101101110110111001011010
2653 #*0000010111010101111100010110111100111000111111100011010011011110
2654 #*1010011000111001101101010111011000000001111011110110001101110100
2655 #*0101110010010011101000111100000001001000111011101000100000110010
2656 #*0111101011000110101101111000000110011010001101101010011100001010
2657 #*1000011010111000000101100111010001011100000100001000110001100100
2658 #*0101011011001100001010111110101001010000101100001001001100010100
2659 #*0011001110100101100100000110111000001110111111011110010010101100
2660 #*1001111100010101111010110000100010110011111000101101000101010101
2661 #*0000010100001110010111100100110111001100101000001011100100100010
2662 #*0011111001001000101010100000100110001011011001011001110011100010
2663 #*1111011011110100000110011111001011000111110111101101110011101100
2664 #*1100000000000000110110000101111001110001000101100000110000010010
2665 #*0000101111010100001011111010000110110001100100001101011010000010
2666 #*1101011001100111001000010101110001100011100001110011101110110111
2667 #*0100100100101100010110010011001010110001010101011001111010110000
2668 #*0010011001010101101011001010110000100010010110011000110000111100
2669 #*1111100100011111000100100110101111011111110101000100010111101111
2670 #*0001100101011111110111000010010110011011100010001100000001011100
2671 #*0100110100010100111011000110010010011011010100101100101110110111
2672 #*0111101101010001100110111101000100001010101011000101010100000110
2673 #*1110111111011010111111010110101001001010111100111000000001101100
2674 #*1011110011001101100000010000100100000111111001100011101101101010
2675 #*1010100011111000000001000000111100110100011100001100000101100100
2676 #*0011110111100100111101111011001101101111100001100011000110110100
2677 ;; After chi:
2678 #*0100111010101011101001010000110101000001101101100010110101111010
2679 #*0101110101010111111100111110111101110000111111101011110011011100
2680 #*1000010001111101101000010111011110010011111111110100010001111100
2681 #*1101100010010010101000111101110000001000011011111100000001100010
2682 #*0111101110010010111001111110001110100010011111101011011110001110
2683 #*1010011110011001100001100111000001010010010111011110100011001100
2684 #*1101101011011100010000001110101011100001101100101000001001000101
2685 #*0011001110101111100001000010101101000010111111011100110010001110
2686 #*0001110110100101111010110011100010100011111100101101010100010001
2687 #*0101010101001010011101111100011111001100000000001010101000110010
2688 #*0011111001001000011010100000010110111011011001011001110011110000
2689 #*1111110100100000001111100101001101000111010111100000111001101100
2690 #*0001010000100011110110000000001000110011000100010010010100100111
2691 #*0010001111011100101001011010000000111001111100000101001011000010
2692 #*0001011011010011001100001010111000100111000111010111101110111011
2693 #*1001000000100110010010110111000101101100110100011101111101110011
2694 #*0010011000010101011000001010100000100010010100010000110000101100
2695 #*1011110100011111001100100010101111011111100001100100111001001100
2696 #*0001100101110111110011010011011110111011100011011101010001011100
2697 #*0110101101000101010010001110100010011001010110101100101110111011
2698 #*0110101101010100100110111101000000001111101010000110111000000100
2699 #*1110111111101010111110010110110001111010111000110100000001101000
2700 #*1010100111001001011100101011100101001100011000000000101111111010
2701 #*1110101011101001000011000100111100110100010110001000010101100110
2702 #*1011100101101110100100111001100100101111110101011011000111011100
2703 ;; After iota:
2704 #*1101111110101010101001010000110101000001101101100010110101111011
2705 #*0101110101010111111100111110111101110000111111101011110011011100
2706 #*1000010001111101101000010111011110010011111111110100010001111100
2707 #*1101100010010010101000111101110000001000011011111100000001100010
2708 #*0111101110010010111001111110001110100010011111101011011110001110
2709 #*1010011110011001100001100111000001010010010111011110100011001100
2710 #*1101101011011100010000001110101011100001101100101000001001000101
2711 #*0011001110101111100001000010101101000010111111011100110010001110
2712 #*0001110110100101111010110011100010100011111100101101010100010001
2713 #*0101010101001010011101111100011111001100000000001010101000110010
2714 #*0011111001001000011010100000010110111011011001011001110011110000
2715 #*1111110100100000001111100101001101000111010111100000111001101100
2716 #*0001010000100011110110000000001000110011000100010010010100100111
2717 #*0010001111011100101001011010000000111001111100000101001011000010
2718 #*0001011011010011001100001010111000100111000111010111101110111011
2719 #*1001000000100110010010110111000101101100110100011101111101110011
2720 #*0010011000010101011000001010100000100010010100010000110000101100
2721 #*1011110100011111001100100010101111011111100001100100111001001100
2722 #*0001100101110111110011010011011110111011100011011101010001011100
2723 #*0110101101000101010010001110100010011001010110101100101110111011
2724 #*0110101101010100100110111101000000001111101010000110111000000100
2725 #*1110111111101010111110010110110001111010111000110100000001101000
2726 #*1010100111001001011100101011100101001100011000000000101111111010
2727 #*1110101011101001000011000100111100110100010110001000010101100110
2728 #*1011100101101110100100111001100100101111110101011011000111011100
2729
2730 ;; Round 15
2731
2732 ;; After theta:
2733 #*1110110000100000110101001011111111111001000010100000111101000011
2734 #*0011101111001101101101001101000010000011111100111010000011011101
2735 #*1011110110010011001000111111101100010011100000110011001110001000
2736 #*0001101010100101001000111110110110000110011011000010011000110001
2737 #*0011000001100011000001110011001101011010001111010101010100011101
2738 #*1001010000010011111101111100001011101010111000011100101011110100
2739 #*1011110001000110000001111101010100010010101111111001111001000100
2740 #*0000101001000001000001101010011111000010100000011011101101111010
2741 #*1101111110010010011010110000100100101101111100010011001101000010
2742 #*0001111010111011100101110001011100110100010000110100100010100001
2743 #*0000110111000010000110111011011100000011110110011011111011001000
2744 #*1001101110111010011110010110110010110100010100110001001001101101
2745 #*0010110111001101010110101000111010110011011011010101001011010011
2746 #*1110000111101011001001011001000110110111111100111011010010010001
2747 #*0101110100100010110100000111111011011111010111101001100100101000
2748 #*1010001110101100001110101100001111010100011011011111110101001011
2749 #*0100000010001111001001111001011111010001010111000001000000101101
2750 #*1000010011110001101100001010011101011111111110100011100110111000
2751 #*1101101101000000010011010000011000110101100011100011001000001111
2752 #*0010000010110100101010000011100001100001000110010010100100101000
2753 #*0101100011011110111010100110001010110111000101000100110000111100
2754 #*1000100101110000101111100101001110001001111011100101110001101001
2755 #*1001000000100111111100000011010111001100000111000111110000001110
2756 #*0010100011011110100011000111111010111010010110110110001100110101
2757 #*1111001010011111011100110100100111010111100101100101001101001111
2758 ;; After rho:
2759 #*1110110000100000110101001011111111111001000010100000111101000011
2760 #*1001110111100110110110100110100001000001111110011101000001101110
2761 #*1111011001001100100011111110110001001110000011001100111000100010
2762 #*0110011011000010011000110001000110101010010100100011111011011000
2763 #*0100011110101010101000111010011000001100011000001110011001101011
2764 #*0010111010101110000111001010111101001001010000010011111101111100
2765 #*0111110101010001001010111111100111100100010010111100010001100000
2766 #*1110100000101001000001000001101010011111000010100000011011101101
2767 #*0010010011010110000100100101101111100010011001101000010110111111
2768 #*0011010010001010000100011110101110111001011100010111001101000100
2769 #*0000000110111000010000110111011011100000011110110011011111011001
2770 #*1001101101100110111011101001111001011011001011010001010011000100
2771 #*0101000111010110011011011010101001011010011001011011100110101011
2772 #*1111100111011010010010001111000011110101100100101100100011011011
2773 #*1111110110111110101111010011001001010000101110100100010110100000
2774 #*0110000111101010001101101111111010100101110100011101011000011101
2775 #*0011110010111110100010101110000010000001011010100000010001111001
2776 #*0111001101110001000010011110001101100001010011101011111111110100
2777 #*0111000110010000011111101101101000000010011010000011000110101100
2778 #*0010100000100000101101001010100000111000011000010001100100101001
2779 #*0001001100001111000101100011011110111010100110001010110111000101
2780 #*0110001001011100001011111001010011100010011110111001011100011010
2781 #*1000000100111111100000011010111001100000111000111110000001110100
2782 #*1101111010001100011111101011101001011011011000110011010100101000
2783 #*0100110100111111110010100111110111001101001001110101111001011001
2784 ;; After pi:
2785 #*1110110000100000110101001011111111111001000010100000111101000011
2786 #*0111110101010001001010111111100111100100010010111100010001100000
2787 #*0101000111010110011011011010101001011010011001011011100110101011
2788 #*0111000110010000011111101101101000000010011010000011000110101100
2789 #*0100110100111111110010100111110111001101001001110101111001011001
2790 #*0110011011000010011000110001000110101010010100100011111011011000
2791 #*0011010010001010000100011110101110111001011100010111001101000100
2792 #*0000000110111000010000110111011011100000011110110011011111011001
2793 #*0011110010111110100010101110000010000001011010100000010001111001
2794 #*1000000100111111100000011010111001100000111000111110000001110100
2795 #*1001110111100110110110100110100001000001111110011101000001101110
2796 #*1110100000101001000001000001101010011111000010100000011011101101
2797 #*1111100111011010010010001111000011110101100100101100100011011011
2798 #*0010100000100000101101001010100000111000011000010001100100101001
2799 #*0001001100001111000101100011011110111010100110001010110111000101
2800 #*0100011110101010101000111010011000001100011000001110011001101011
2801 #*0010111010101110000111001010111101001001010000010011111101111100
2802 #*1001101101100110111011101001111001011011001011010001010011000100
2803 #*0111001101110001000010011110001101100001010011101011111111110100
2804 #*1101111010001100011111101011101001011011011000110011010100101000
2805 #*1111011001001100100011111110110001001110000011001100111000100010
2806 #*0010010011010110000100100101101111100010011001101000010110111111
2807 #*1111110110111110101111010011001001010000101110100100010110100000
2808 #*0110000111101010001101101111111010100101110100011101011000011101
2809 #*0110001001011100001011111001010011100010011110111001011100011010
2810 ;; After chi:
2811 #*1110110010100110100100001011110111100011001011100011011011001000
2812 #*0101110101010001001110011010100111100100010000111100010001100100
2813 #*0101110111111001111011011000111110010111011000101111011111111010
2814 #*1101000110010000011010100101100000110010011000000011000010101110
2815 #*0101110001101110111000010011110111001001011001101001111001111001
2816 #*0110011111110010001000010000010111101010010110000011101001000001
2817 #*0000100010001100100110010110101110111000011100010111001101100100
2818 #*1000000010111001010000100111100010000000111110101101011111011101
2819 #*0101101001111110111010001111000100001011011110100001101011110001
2820 #*1001000100110111100100010100010001110001110000101010000101110000
2821 #*1000110000110100100100101000100000100001011010010001100001111100
2822 #*1110100000001001101100000001001010010111011010110001011111001101
2823 #*1110101011010101010010101110011101110111000010100110110000011111
2824 #*1010010011000000011111001110000001111001000000000100100100000011
2825 #*0111001100000110000100100010010100100100100110101010101101000100
2826 #*1101011011101010010000011011011000011110010011001110011011101011
2827 #*0100111010111111000111011100111001101001000000111001010001001100
2828 #*0001011111101010100110001000011001000001000011000001010011001100
2829 #*0111001001010011100010001110011101100101010011100111110110110111
2830 #*1111011010001000011000101011001100011010011000100010110000111100
2831 #*0010111101100100001000101100110001011110100101001000111000100010
2832 #*0010010010010110000100001001011101000111001001110001011110100010
2833 #*1111111110101010101101000011001000010010100100000100010010100010
2834 #*1111010111101010101101101001011010101001110101011001111000111101
2835 #*0110001011001110001111111000011101000010000110011001011010000111
2836 ;; After iota:
2837 #*0010110010100111100100001011110111100011001011100011011011001001
2838 #*0101110101010001001110011010100111100100010000111100010001100100
2839 #*0101110111111001111011011000111110010111011000101111011111111010
2840 #*1101000110010000011010100101100000110010011000000011000010101110
2841 #*0101110001101110111000010011110111001001011001101001111001111001
2842 #*0110011111110010001000010000010111101010010110000011101001000001
2843 #*0000100010001100100110010110101110111000011100010111001101100100
2844 #*1000000010111001010000100111100010000000111110101101011111011101
2845 #*0101101001111110111010001111000100001011011110100001101011110001
2846 #*1001000100110111100100010100010001110001110000101010000101110000
2847 #*1000110000110100100100101000100000100001011010010001100001111100
2848 #*1110100000001001101100000001001010010111011010110001011111001101
2849 #*1110101011010101010010101110011101110111000010100110110000011111
2850 #*1010010011000000011111001110000001111001000000000100100100000011
2851 #*0111001100000110000100100010010100100100100110101010101101000100
2852 #*1101011011101010010000011011011000011110010011001110011011101011
2853 #*0100111010111111000111011100111001101001000000111001010001001100
2854 #*0001011111101010100110001000011001000001000011000001010011001100
2855 #*0111001001010011100010001110011101100101010011100111110110110111
2856 #*1111011010001000011000101011001100011010011000100010110000111100
2857 #*0010111101100100001000101100110001011110100101001000111000100010
2858 #*0010010010010110000100001001011101000111001001110001011110100010
2859 #*1111111110101010101101000011001000010010100100000100010010100010
2860 #*1111010111101010101101101001011010101001110101011001111000111101
2861 #*0110001011001110001111111000011101000010000110011001011010000111
2862
2863 ;; Round 16
2864
2865 ;; After theta:
2866 #*1110110101000000001000010001000111010101110101011000100110101110
2867 #*0000110001010100100111010011000110010101000000111011011001110010
2868 #*1101111001001111000100000001101000110100010111110001010010110010
2869 #*0001101101001001001111000100100001100011010011001011101110000011
2870 #*0110101110001110100000010010000001110001100001001010000010110001
2871 #*1010011000010101100100001010100111011100101000111000010100100110
2872 #*0101100110001001001111011111001111001001001100010000000101110010
2873 #*0000001100001111101111111110110100100011110001110011010010010101
2874 #*1001000010100111101111101110000101011010010101101001000111011100
2875 #*1010011011010111111100010101100111001001001000001001111110111000
2876 #*0100110111010011001000110010010000010111100100101010011100011011
2877 #*1011100100001100000101001000101011100110001010110110010111011011
2878 #*0110100101100011101101110111001011010100001101111000111101010111
2879 #*0110111000011001001010101111000000101000001011001100001000101110
2880 #*0100010011100110011100100011100010011100011110001001010110001100
2881 #*0001011100001101111100000001101000101000101101110101100110001100
2882 #*0001111110111010101110010101011000011000010000111110011001011010
2883 #*1001010001011100011001010001001111100010001100011111011110000100
2884 #*1011100010001010110111101111011100110100011000101111011010011010
2885 #*1100000101101000000000101010111010100010100000000001001011110100
2886 #*1110111010000011100100110110000001101000011011110011000101000101
2887 #*0111010110010011101101000000111100110110011001110110010110110100
2888 #*0111110000011100010010011010011110110001101011011010011111101010
2889 #*0011111100110011111000001000011011111000111110010001010100010000
2890 #*0101010100101110010111111001101011111010111110111010100001001111
2891 ;; After rho:
2892 #*1110110101000000001000010001000111010101110101011000100110101110
2893 #*0000011000101010010011101001100011001010100000011101101100111001
2894 #*0111100100111100010000000110100011010001011111000101001011001011
2895 #*0011010011001011101110000011000110110100100100111100010010000110
2896 #*0011000010010100000101100010110101110001110100000010010000001110
2897 #*1001110111001010001110000101001001101010011000010101100100001010
2898 #*1101111100111100100100110001000000010111001001011001100010010011
2899 #*0101010000001100001111101111111110110100100011110001110011010010
2900 #*0100111101111101110000101011010010101101001000111011100100100001
2901 #*0000100111111011100010100110110101111111000101011001110010010010
2902 #*0110100110111010011001000110010010000010111100100101010011100011
2903 #*0111011011101110010000110000010100100010101110011000101011011001
2904 #*1110111001011010100001101111000111101010111011010010110001110110
2905 #*0001011001100001000101110011011100001100100101010111100000010100
2906 #*0111000100111000111100010010101100011000100010011100110011100100
2907 #*0000110100010100010110111010110011000110000010111000011011111000
2908 #*1100101010110000110000100001111100110010110100001111110111010101
2909 #*1110111100001001001010001011100011001010001001111100010001100011
2910 #*0001011110110100110101011100010001010110111101111011100110100011
2911 #*1111010011000001011010000000001010101110101000101000000000010010
2912 #*1100110001010001011110111010000011100100110110000001101000011011
2913 #*0001110101100100111011010000001111001101100110011101100101101101
2914 #*1110000011100010010011010011110110001101011011010011111101010011
2915 #*0011001111100000100001101111100011111001000101010001000000111111
2916 #*1010000100111101010101001011100101111110011010111110101111101110
2917 ;; After pi:
2918 #*1110110101000000001000010001000111010101110101011000100110101110
2919 #*1101111100111100100100110001000000010111001001011001100010010011
2920 #*1110111001011010100001101111000111101010111011010010110001110110
2921 #*0001011110110100110101011100010001010110111101111011100110100011
2922 #*1010000100111101010101001011100101111110011010111110101111101110
2923 #*0011010011001011101110000011000110110100100100111100010010000110
2924 #*0000100111111011100010100110110101111111000101011001110010010010
2925 #*0110100110111010011001000110010010000010111100100101010011100011
2926 #*1100101010110000110000100001111100110010110100001111110111010101
2927 #*1110000011100010010011010011110110001101011011010011111101010011
2928 #*0000011000101010010011101001100011001010100000011101101100111001
2929 #*0101010000001100001111101111111110110100100011110001110011010010
2930 #*0001011001100001000101110011011100001100100101010111100000010100
2931 #*1111010011000001011010000000001010101110101000101000000000010010
2932 #*1100110001010001011110111010000011100100110110000001101000011011
2933 #*0011000010010100000101100010110101110001110100000010010000001110
2934 #*1001110111001010001110000101001001101010011000010101100100001010
2935 #*0111011011101110010000110000010100100010101110011000101011011001
2936 #*1110111100001001001010001011100011001010001001111100010001100011
2937 #*0011001111100000100001101111100011111001000101010001000000111111
2938 #*0111100100111100010000000110100011010001011111000101001011001011
2939 #*0100111101111101110000101011010010101101001000111011100100100001
2940 #*0111000100111000111100010010101100011000100010011100110011100100
2941 #*0000110100010100010110111010110011000110000010111000011011111000
2942 #*0001110101100100111011010000001111001101100110011101100101101101
2943 ;; After chi:
2944 #*1100110100000010001001011111000000111101000111011010110111001010
2945 #*1100111010011000110000100001010000000011001101110000100100010010
2946 #*0100111001010011100001101100100011000010111001010110111000111010
2947 #*0101101111110100111101001100010011010111011000111011100110100011
2948 #*1011001100000001110001101011100101111100010010111111101111111111
2949 #*0101010011001011110111000011000100110100011100011000010011100111
2950 #*1000101111111011000010000111011001001111000101010011010110000110
2951 #*0100100111111000011010010100010000001111110111110101011011100001
2952 #*1101111010111001011100100001111100000010010000100011110101010001
2953 #*1110100111010010010011110111000111000110011010010010011101000011
2954 #*0000010001001011010011111001100011000010100100011011101100111101
2955 #*1011010010001100010101101111111100010110101011011001110011010000
2956 #*0001111001110001000001001001011101001100110011010110001000011101
2957 #*1111011011101011011011000001101010100100101000110100000100110010
2958 #*1001110001010101010010111100011111010000110101100001111011011001
2959 #*0101001010110000010101010010100001110001010010001010011011011111
2960 #*0001010011001011000100001110101010100010011001110001110100101000
2961 #*0110011000001110110001010100010100010011101010011001101011000101
2962 #*1110111100011101001110001011110111001010111001111110000001100011
2963 #*1011111010101010101011101010101011110011001101000100100100111111
2964 #*0100100100111100011100010110001111000001111101000001011000001111
2965 #*0100001101111001110010000011000001101011001000011011101100111001
2966 #*0110000101011000010101010010100000010001000110011001010111100001
2967 #*0110110100001100010110111100010011010110011011111000010001111010
2968 #*0001101100100101011011111001011111100001100110100111000001001101
2969 ;; After iota:
2970 #*1000110100000011001001011111000000111101000111011010110111001011
2971 #*1100111010011000110000100001010000000011001101110000100100010010
2972 #*0100111001010011100001101100100011000010111001010110111000111010
2973 #*0101101111110100111101001100010011010111011000111011100110100011
2974 #*1011001100000001110001101011100101111100010010111111101111111111
2975 #*0101010011001011110111000011000100110100011100011000010011100111
2976 #*1000101111111011000010000111011001001111000101010011010110000110
2977 #*0100100111111000011010010100010000001111110111110101011011100001
2978 #*1101111010111001011100100001111100000010010000100011110101010001
2979 #*1110100111010010010011110111000111000110011010010010011101000011
2980 #*0000010001001011010011111001100011000010100100011011101100111101
2981 #*1011010010001100010101101111111100010110101011011001110011010000
2982 #*0001111001110001000001001001011101001100110011010110001000011101
2983 #*1111011011101011011011000001101010100100101000110100000100110010
2984 #*1001110001010101010010111100011111010000110101100001111011011001
2985 #*0101001010110000010101010010100001110001010010001010011011011111
2986 #*0001010011001011000100001110101010100010011001110001110100101000
2987 #*0110011000001110110001010100010100010011101010011001101011000101
2988 #*1110111100011101001110001011110111001010111001111110000001100011
2989 #*1011111010101010101011101010101011110011001101000100100100111111
2990 #*0100100100111100011100010110001111000001111101000001011000001111
2991 #*0100001101111001110010000011000001101011001000011011101100111001
2992 #*0110000101011000010101010010100000010001000110011001010111100001
2993 #*0110110100001100010110111100010011010110011011111000010001111010
2994 #*0001101100100101011011111001011111100001100110100111000001001101
2995
2996 ;; Round 17
2997
2998 ;; After theta:
2999 #*0011110100100100100001001110000110001100101000111101010111110110
3000 #*0000011111010001011011011011110100111001110101011000000100100010
3001 #*0001000011010101000001100101001101100111101010010011100010000011
3002 #*1111010011111100000011100010101101101000000010011001000111001010
3003 #*1010000110110001100001100000100000101100111000011100101101000110
3004 #*1110010011101100011111010010000010000101110011111111110011011010
3005 #*0100001010110010101001111101111101110101111101111011110110110110
3006 #*0001011101111110111010011101111110101010100100110000000001011000
3007 #*0111000110110001100010001111000010111101001010000001010100111000
3008 #*1111101101100010000011111100000010010110110000110001011111111010
3009 #*1011010001101100111011101000100101110011001011111100001100000000
3010 #*0111110111000101111110010101011000101100010011110001010011100000
3011 #*0100000011110111100001000000110011101001100000010011010010100100
3012 #*0101100111100011100101101111010100011011110010010110100101011011
3013 #*1000111011100101000010110111011010000000011111000010111001100000
3014 #*1110001010010111111101000011100111000000111101101101111011100010
3015 #*1101110110000010101111110100001110011000100001011001010100011000
3016 #*0011100010001000010001011101111010110110111001011100110001111100
3017 #*0100000000010101110000100101001001110101100011011100100000001010
3018 #*1010110000011010111011100001101110100011100111100111100110000110
3019 #*1111100100011011110100000111001001110000010010100110111000110010
3020 #*1000101000110000011001111001100101010001110000110011001100001001
3021 #*0011111111011110110101011011001110110100010101011100001101011000
3022 #*1100001000000100101000010010101101101001000001011010110000010011
3023 #*0000100110010101001011110010011010110001001100000100000011110100
3024 ;; After rho:
3025 #*0011110100100100100001001110000110001100101000111101010111110110
3026 #*0000001111101000101101101101111010011100111010101100000010010001
3027 #*0100001101010100000110010100110110011110101001001110001000001100
3028 #*1000000010011001000111001010111101001111110000001110001010110110
3029 #*1001110000111001011010001101010000110110001100001100000100000101
3030 #*0000100001011100111111111100110110101110010011101100011111010010
3031 #*0111110111110111010111110111101111011011011001000010101100101010
3032 #*0110000001011101111110111010011101111110101010100100110000000001
3033 #*0110001100010001111000010111101001010000001010100111000011100011
3034 #*0011000101111111101011111011011000100000111111000000100101101100
3035 #*0001011010001101100111011101000100101110011001011111100001100000
3036 #*0011100000011111011100010111111001010101100010110001001111000101
3037 #*1000000110011101001100000010011010010100100010000001111011110000
3038 #*1110010010110100101011011010110011110001110010110111101010001101
3039 #*1110110100000000111110000101110011000001000111011100101000010110
3040 #*0001110011100000011110110110111101110001011100010100101111111010
3041 #*1111101000011100110001000010110010101000110001101110110000010101
3042 #*1001100011111000011100010001000010001011101111010110110111001011
3043 #*0110111001000000010100100000000010101110000100101001001110101100
3044 #*1000011010101100000110101110111000011011101000111001111001111001
3045 #*1001101110001100101111100100011011110100000111001001110000010010
3046 #*0110001010001100000110011110011001010100011100001100110011000010
3047 #*1111111011110110101011011001110110100010101011100001101011000001
3048 #*0000010010100001001010110110100100000101101011000001001111000010
3049 #*0000001111010000001001100101010010111100100110101100010011000001
3050 ;; After pi:
3051 #*0011110100100100100001001110000110001100101000111101010111110110
3052 #*0111110111110111010111110111101111011011011001000010101100101010
3053 #*1000000110011101001100000010011010010100100010000001111011110000
3054 #*0110111001000000010100100000000010101110000100101001001110101100
3055 #*0000001111010000001001100101010010111100100110101100010011000001
3056 #*1000000010011001000111001010111101001111110000001110001010110110
3057 #*0011000101111111101011111011011000100000111111000000100101101100
3058 #*0001011010001101100111011101000100101110011001011111100001100000
3059 #*1111101000011100110001000010110010101000110001101110110000010101
3060 #*1111111011110110101011011001110110100010101011100001101011000001
3061 #*0000001111101000101101101101111010011100111010101100000010010001
3062 #*0110000001011101111110111010011101111110101010100100110000000001
3063 #*1110010010110100101011011010110011110001110010110111101010001101
3064 #*1000011010101100000110101110111000011011101000111001111001111001
3065 #*1001101110001100101111100100011011110100000111001001110000010010
3066 #*1001110000111001011010001101010000110110001100001100000100000101
3067 #*0000100001011100111111111100110110101110010011101100011111010010
3068 #*0011100000011111011100010111111001010101100010110001001111000101
3069 #*1001100011111000011100010001000010001011101111010110110111001011
3070 #*0000010010100001001010110110100100000101101011000001001111000010
3071 #*0100001101010100000110010100110110011110101001001110001000001100
3072 #*0110001100010001111000010111101001010000001010100111000011100011
3073 #*1110110100000000111110000101110011000001000111011100101000010110
3074 #*0001110011100000011110110110111101110001011100010100101111111010
3075 #*0110001010001100000110011110011001010100011100001100110011000010
3076 ;; After chi:
3077 #*1011110100101100101001001110010110001000001010111100000100100110
3078 #*0001001110110111000111010111101111110001011101101010101000100110
3079 #*1000000000001101000101000111001010000100000000000101101010110001
3080 #*0101001001100100110100101010000110101110001100111000001010011010
3081 #*0100001100000011011111010100111011101111110111101110111011001001
3082 #*1000011000011001000011001110111001000001110000010001001010110110
3083 #*1101100101101111111011111001101010100000011111100000110101111001
3084 #*0001001001101111101101000100000000101100010011011110101010100000
3085 #*1111101000010101110101000000111011100101100001100000110000100011
3086 #*1100111110010000000011101000110110000010100100100001001110001001
3087 #*1000011101001000101100101101011000011101101010111111001000011101
3088 #*0110001001010101111010011110010101110100100010101100100001110001
3089 #*1111110110110100000010011010110000010101110101110111101010001111
3090 #*1000011011001100000110100111011000010011010000011101111011111000
3091 #*1111101110011001111101110110011110010110000111001001000000010010
3092 #*1010110000111010011010001110011001100111101100011101000100000000
3093 #*1000100010111100111111111100110100100100011110101010101111011000
3094 #*0011110000011110011110110001011101010001100010110000000111000101
3095 #*0000000011100000001100011000010010111001101011011010110111001110
3096 #*0000010011100101101111000110000010001101111000100001010100010000
3097 #*1100111101010100000000010100100100011111101100010110100000011000
3098 #*0111001111110001111000100101100101100000010010100111000100001011
3099 #*1000111100001100111110001101110011000101000111010100111000010110
3100 #*0001110110110000011110110110011011111011111101010110100111110110
3101 #*0100001010001101111110011101010000010100011110101101110000100001
3102 ;; After iota:
3103 #*1011110000101100101001001110010110001000001010111100000100100111
3104 #*0001001110110111000111010111101111110001011101101010101000100110
3105 #*1000000000001101000101000111001010000100000000000101101010110001
3106 #*0101001001100100110100101010000110101110001100111000001010011010
3107 #*0100001100000011011111010100111011101111110111101110111011001001
3108 #*1000011000011001000011001110111001000001110000010001001010110110
3109 #*1101100101101111111011111001101010100000011111100000110101111001
3110 #*0001001001101111101101000100000000101100010011011110101010100000
3111 #*1111101000010101110101000000111011100101100001100000110000100011
3112 #*1100111110010000000011101000110110000010100100100001001110001001
3113 #*1000011101001000101100101101011000011101101010111111001000011101
3114 #*0110001001010101111010011110010101110100100010101100100001110001
3115 #*1111110110110100000010011010110000010101110101110111101010001111
3116 #*1000011011001100000110100111011000010011010000011101111011111000
3117 #*1111101110011001111101110110011110010110000111001001000000010010
3118 #*1010110000111010011010001110011001100111101100011101000100000000
3119 #*1000100010111100111111111100110100100100011110101010101111011000
3120 #*0011110000011110011110110001011101010001100010110000000111000101
3121 #*0000000011100000001100011000010010111001101011011010110111001110
3122 #*0000010011100101101111000110000010001101111000100001010100010000
3123 #*1100111101010100000000010100100100011111101100010110100000011000
3124 #*0111001111110001111000100101100101100000010010100111000100001011
3125 #*1000111100001100111110001101110011000101000111010100111000010110
3126 #*0001110110110000011110110110011011111011111101010110100111110110
3127 #*0100001010001101111110011101010000010100011110101101110000100001
3128
3129 ;; Round 18
3130
3131 ;; After theta:
3132 #*0010010010101110011001101011110111011010001110100011111110111010
3133 #*0010001111000110011110110010001111001001101100010111000000010100
3134 #*0100101000111011101110011111111101101000111001001010010101110000
3135 #*0001011000010001100110000111110010110110010110110101010111100110
3136 #*0001111111100111100100101100110010100011010100101011011011111010
3137 #*0001111010011011110011101011011000010011110100001110110000101011
3138 #*1110100100011110100010011100001010011000101110011101011101001011
3139 #*1101100001011001000110011100110111000000101010010001010101100001
3140 #*1011111001100000100111101101001111111101111011101101101101011111
3141 #*1001001101110100111000010000111111001110000111100100101110111010
3142 #*0001111111001010011100001000111001001111101110100000110010000000
3143 #*0101001000100100100011111011110101001100010011010001001001000011
3144 #*0011011110000010101001000010000111111001001100111000010101001110
3145 #*1100001010111001010100001010101100001011001010010000100110000100
3146 #*1010011101111101000110001110010111011010100100001100100000100001
3147 #*0011010010111000101010101011111000110101101000000010111110011101
3148 #*1011100011001101100110011001010100011100101111010111000111101010
3149 #*1111011000101000110101101001101010111101011011111111111000000100
3150 #*0100010010010101011110110101100110100001110001010111101010110010
3151 #*0101100000000001010100111110001011000001011011100100110100100011
3152 #*0101011111010110110000110001000101001101101000001001011010000101
3153 #*0100001110000000100001000000000101011000100011011010101100111001
3154 #*0100010100111010010101010101000100101001111110011011000111010111
3155 #*0101100111000101001100011011101111100011100111011011111010001010
3156 #*0001111001101001000101100101011001011000111101101000010000010010
3157 ;; After rho:
3158 #*0010010010101110011001101011110111011010001110100011111110111010
3159 #*0001000111100011001111011001000111100100110110001011100000001010
3160 #*0010100011101110111001111111110110100011100100101001010111000001
3161 #*0110010110110101010111100110000101100001000110011000011111001011
3162 #*0110101001010110110111110100001111111100111100100101100110010100
3163 #*0110000100111101000011101100001010110001111010011011110011101011
3164 #*1001110000101001100010111001110101110100101111101001000111101000
3165 #*1000011101100001011001000110011100110111000000101010010001010101
3166 #*1100000100111101101001111111101111011101101101101011111101111100
3167 #*1110010010111011101010010011011101001110000100001111110011100001
3168 #*0000001111111001010011100001000111001001111101110100000110010000
3169 #*1001000011010100100010010010001111101111010100110001001101000100
3170 #*1000010000111111001001100111000010101001110001101111000001010100
3171 #*1001010010000100110000100110000101011100101010000101010110000101
3172 #*1100101110110101001000011001000001000011010011101111101000110001
3173 #*0101111100011010110100000001011111001110100110100101110001010101
3174 #*1100110010101000111001011110101110001111010101011100011001101100
3175 #*1111110000001001111011000101000110101101001101010111101011011111
3176 #*0010101111010101100100100010010010101011110110101100110100001110
3177 #*0010001101011000000000010101001111100010110000010110111001001101
3178 #*0010010110100001010101011111010110110000110001000101001101101000
3179 #*0101000011100000001000010000000001010110001000110110101011001110
3180 #*0010100111010010101010101000100101001111110011011000111010111010
3181 #*1100010100110001101110111110001110011101101111101000101001011001
3182 #*0001000001001000011110011010010001011001010110010110001111011010
3183 ;; After pi:
3184 #*0010010010101110011001101011110111011010001110100011111110111010
3185 #*1001110000101001100010111001110101110100101111101001000111101000
3186 #*1000010000111111001001100111000010101001110001101111000001010100
3187 #*0010101111010101100100100010010010101011110110101100110100001110
3188 #*0001000001001000011110011010010001011001010110010110001111011010
3189 #*0110010110110101010111100110000101100001000110011000011111001011
3190 #*1110010010111011101010010011011101001110000100001111110011100001
3191 #*0000001111111001010011100001000111001001111101110100000110010000
3192 #*1100110010101000111001011110101110001111010101011100011001101100
3193 #*0010100111010010101010101000100101001111110011011000111010111010
3194 #*0001000111100011001111011001000111100100110110001011100000001010
3195 #*1000011101100001011001000110011100110111000000101010010001010101
3196 #*1001010010000100110000100110000101011100101010000101010110000101
3197 #*0010001101011000000000010101001111100010110000010110111001001101
3198 #*0010010110100001010101011111010110110000110001000101001101101000
3199 #*0110101001010110110111110100001111111100111100100101100110010100
3200 #*0110000100111101000011101100001010110001111010011011110011101011
3201 #*1001000011010100100010010010001111101111010100110001001101000100
3202 #*1111110000001001111011000101000110101101001101010111101011011111
3203 #*1100010100110001101110111110001110011101101111101000101001011001
3204 #*0010100011101110111001111111110110100011100100101001010111000001
3205 #*1100000100111101101001111111101111011101101101101011111101111100
3206 #*1100101110110101001000011001000001000011010011101111101000110001
3207 #*0101111100011010110100000001011111001110100110100101110001010101
3208 #*0101000011100000001000010000000001010110001000110110101011001110
3209 ;; After chi:
3210 #*0010010010111000010000101101110101010011011110100101111110101110
3211 #*1011011111101001000110111001100101110110101001101001110011100010
3212 #*1001010000110111010011111111000011111001110001111101001010000100
3213 #*0000111101110011100101000011110100101001111110001101000100101110
3214 #*1000100001001001111100001010010001111101110111011110001110011010
3215 #*0110011011110101000110000110000111100000111111101000011011011011
3216 #*0010100010111011000010001101110101001000000100000111101010001101
3217 #*0010001010101011010001000001000110001001011111110100100100000010
3218 #*1000100010001101101100011000101110101111010001011100011100101101
3219 #*1010100111011000000010111001111101000001110011011111011010011010
3220 #*0000000101100111101111111001000110101100011100001110100110001010
3221 #*1010010000111001011001010111010110010101010000111000111000011101
3222 #*1001000000100101100101101100010101001100101011000100010010100101
3223 #*0011001100011010001010010101001110100110110110011100011001001111
3224 #*1010001110100001000101011001001110100011110001100101011100111101
3225 #*1111101010010110010111100110001010110010111000000101101010010000
3226 #*0000110100110100011010101001001010110001110011011101010001110000
3227 #*1001000111100100100110101000000111111111110110011001001101000100
3228 #*1101011001001111101010000101000111001101011101010010101101011011
3229 #*1100010000011000101110110110001110011100101101110010111000110010
3230 #*0010001001101110111001111111110110100001110110101101010111000000
3231 #*1101010100110111011101111111110001010001001001101011101100111000
3232 #*1100101101010101000000001001000001010011011011111101100010111011
3233 #*0111011100010100000101101110101001101111000010101100100101010100
3234 #*1001000111110001001000010000001000001010000001110100000011110010
3235 ;; After iota:
3236 #*0111010010111001010000101101110101010011011110100101111110101110
3237 #*1011011111101001000110111001100101110110101001101001110011100010
3238 #*1001010000110111010011111111000011111001110001111101001010000100
3239 #*0000111101110011100101000011110100101001111110001101000100101110
3240 #*1000100001001001111100001010010001111101110111011110001110011010
3241 #*0110011011110101000110000110000111100000111111101000011011011011
3242 #*0010100010111011000010001101110101001000000100000111101010001101
3243 #*0010001010101011010001000001000110001001011111110100100100000010
3244 #*1000100010001101101100011000101110101111010001011100011100101101
3245 #*1010100111011000000010111001111101000001110011011111011010011010
3246 #*0000000101100111101111111001000110101100011100001110100110001010
3247 #*1010010000111001011001010111010110010101010000111000111000011101
3248 #*1001000000100101100101101100010101001100101011000100010010100101
3249 #*0011001100011010001010010101001110100110110110011100011001001111
3250 #*1010001110100001000101011001001110100011110001100101011100111101
3251 #*1111101010010110010111100110001010110010111000000101101010010000
3252 #*0000110100110100011010101001001010110001110011011101010001110000
3253 #*1001000111100100100110101000000111111111110110011001001101000100
3254 #*1101011001001111101010000101000111001101011101010010101101011011
3255 #*1100010000011000101110110110001110011100101101110010111000110010
3256 #*0010001001101110111001111111110110100001110110101101010111000000
3257 #*1101010100110111011101111111110001010001001001101011101100111000
3258 #*1100101101010101000000001001000001010011011011111101100010111011
3259 #*0111011100010100000101101110101001101111000010101100100101010100
3260 #*1001000111110001001000010000001000001010000001110100000011110010
3261
3262 ;; Round 19
3263
3264 ;; After theta:
3265 #*1101001011010100000000111011101111111111100100110111000011001110
3266 #*0100001000111110010001001011000110110010001110010110100100100011
3267 #*1111110110000000111111011000000011110011110101000100110010011111
3268 #*1001100010010111001010010110110000111101111010010101001110001100
3269 #*0111100000011111111011001010001111111001101000011000111000001110
3270 #*1100000010011000010110010000011101001100000101111010100110111011
3271 #*1101110101101100010101111111010110001100100011111000111101001100
3272 #*0100101100011100111101100110000110000011011011001101011100011001
3273 #*0001111101101001000011001101101010111011010101000100010110001111
3274 #*0101100110001110000101111001100011000101101100011001101100001110
3275 #*1010011100001010111111101111011100000000100110011100011011101010
3276 #*0101000111101110001110100101110101010001110111000111101111011100
3277 #*1111100110010010001001001011010101000110101111111101101010111110
3278 #*1010010011111110100101000000001010110010110010000100010011101101
3279 #*0101001111110111000010011001010000100111101110100011101010101001
3280 #*0101110011111011000111110000010000011110000010010111010111110000
3281 #*1111100011100011001101011011101001110101010100100010000110110001
3282 #*1111100001010011001010001111000111110101110010100000110101011111
3283 #*0100000110101011000101010000000011011001011001001010100111111001
3284 #*0011010001001110101001110110010000011000110010110100001110100110
3285 #*1000010000000011101001101001101100001101001100111111101010100000
3286 #*0010000011100000001010001101010010010101101110010100111011111001
3287 #*1010001011100010101100101110000001011001011111000100011010100000
3288 #*1110000011110000101010111011101101111011000110110100101111110110
3289 #*0110000110100111001111010000010110001110011110110010110101100110
3290 ;; After rho:
3291 #*1101001011010100000000111011101111111111100100110111000011001110
3292 #*1010000100011111001000100101100011011001000111001011010010010001
3293 #*1111011000000011111101100000001111001111010100010011001001111111
3294 #*1101111010010101001110001100100110001001011100101001011011000011
3295 #*0011010000110001110000011100111100000011111111011001010001111111
3296 #*0111010011000001011110101001101110111100000010011000010110010000
3297 #*0111111101011000110010001111100011110100110011011101011011000101
3298 #*0110010100101100011100111101100110000110000011011011001101011100
3299 #*1101001000011001101101010111011010101000100010110001111000111110
3300 #*0001100110110000111001011001100011100001011110011000110001011011
3301 #*0101010011100001010111111101111011100000000100110011100011011101
3302 #*1111011100010100011110111000111010010111010101000111011100011110
3303 #*1001011010101000110101111111101101010111110111110011001001000100
3304 #*0110010000100010011101101101001001111111010010100000000101011001
3305 #*0010100001001111011101000111010101010010101001111110111000010011
3306 #*1000001000001111000001001011101011111000001011100111110110001111
3307 #*1010110111010011101010101001000100001101100011111100011100011001
3308 #*0001101010111111111100001010011001010001111000111110101110010100
3309 #*0010010101001111110010100000110101011000101010000000011011001011
3310 #*1010011000110100010011101010011101100100000110001100101101000011
3311 #*1111111010101000001000010000000011101001101001101100001101001100
3312 #*0100100000111000000010100011010100100101011011100101001110111110
3313 #*0001011100010101100101110000001011001011111000100011010100000101
3314 #*1111000010101011101110110111101100011011010010111111011011100000
3315 #*1011010110011001100001101001110011110100000101100011100111101100
3316 ;; After pi:
3317 #*1101001011010100000000111011101111111111100100110111000011001110
3318 #*0111111101011000110010001111100011110100110011011101011011000101
3319 #*1001011010101000110101111111101101010111110111110011001001000100
3320 #*0010010101001111110010100000110101011000101010000000011011001011
3321 #*1011010110011001100001101001110011110100000101100011100111101100
3322 #*1101111010010101001110001100100110001001011100101001011011000011
3323 #*0001100110110000111001011001100011100001011110011000110001011011
3324 #*0101010011100001010111111101111011100000000100110011100011011101
3325 #*1010110111010011101010101001000100001101100011111100011100011001
3326 #*0001011100010101100101110000001011001011111000100011010100000101
3327 #*1010000100011111001000100101100011011001000111001011010010010001
3328 #*0110010100101100011100111101100110000110000011011011001101011100
3329 #*0110010000100010011101101101001001111111010010100000000101011001
3330 #*1010011000110100010011101010011101100100000110001100101101000011
3331 #*1111111010101000001000010000000011101001101001101100001101001100
3332 #*0011010000110001110000011100111100000011111111011001010001111111
3333 #*0111010011000001011110101001101110111100000010011000010110010000
3334 #*1111011100010100011110111000111010010111010101000111011100011110
3335 #*0001101010111111111100001010011001010001111000111110101110010100
3336 #*1111000010101011101110110111101100011011010010111111011011100000
3337 #*1111011000000011111101100000001111001111010100010011001001111111
3338 #*1101001000011001101101010111011010101000100010110001111000111110
3339 #*0010100001001111011101000111010101010010101001111110111000010011
3340 #*1000001000001111000001001011101011111000001011100111110110001111
3341 #*0100100000111000000010100011010100100101011011100101001110111110
3342 ;; After chi:
3343 #*0101001001110100000101001011100011111100100000010101000011001110
3344 #*0101111000011111110000001111110011111100111011011101001001001110
3345 #*0000011000111000110100110110101111110011110010010000101101100000
3346 #*0110011100001011110010110010111001010011001010010100011011001001
3347 #*1001100010010001010011101101110011110100010110101011111111101101
3348 #*1001101011010100001000101000111110001001011100001010011001000111
3349 #*1011000010100010010001011001100111101100111101010100101101011011
3350 #*0100011011100101010010101101110000100010011100110000100011011001
3351 #*0110010101010011100000100101100000001101100111110100010111011011
3352 #*0001011000110101010100100001001010101011111010110011110100011101
3353 #*1010000100011101001001100101101010100000010111101011010010010000
3354 #*1110011100111000011110111111110010000110000111010111100101011110
3355 #*0011110010101010010101111101001011110110111011000000000101010101
3356 #*1010011100100011010011001111111101110100000000001111111111010010
3357 #*1011101010001000011100001000000111101111101001111100000000000000
3358 #*1011011100100101110000001100101100000000101010011110011001110001
3359 #*0111110001101010111110101011101111111100101010100000110100010000
3360 #*0001011100010100011100001101011110011101010111000110001101111110
3361 #*0001111010101111101100000010001001010001010101111110101110001011
3362 #*1011000001101011100000010110101110100111010010111111011101100000
3363 #*1101111001000101101101100000001010011101011101011101001001111110
3364 #*0101000000011001101101011111110000000000100000110000111110110010
3365 #*0110000001111111011111100111000001010111111001111110110000100011
3366 #*0011010000001100111100001011100000110010001111110101110111001110
3367 #*0100100000100000000010110100000100000101111001000101111110111110
3368 ;; After iota:
3369 #*0000001001110100000101001011100111111100100000010101000011001111
3370 #*0101111000011111110000001111110011111100111011011101001001001110
3371 #*0000011000111000110100110110101111110011110010010000101101100000
3372 #*0110011100001011110010110010111001010011001010010100011011001001
3373 #*1001100010010001010011101101110011110100010110101011111111101101
3374 #*1001101011010100001000101000111110001001011100001010011001000111
3375 #*1011000010100010010001011001100111101100111101010100101101011011
3376 #*0100011011100101010010101101110000100010011100110000100011011001
3377 #*0110010101010011100000100101100000001101100111110100010111011011
3378 #*0001011000110101010100100001001010101011111010110011110100011101
3379 #*1010000100011101001001100101101010100000010111101011010010010000
3380 #*1110011100111000011110111111110010000110000111010111100101011110
3381 #*0011110010101010010101111101001011110110111011000000000101010101
3382 #*1010011100100011010011001111111101110100000000001111111111010010
3383 #*1011101010001000011100001000000111101111101001111100000000000000
3384 #*1011011100100101110000001100101100000000101010011110011001110001
3385 #*0111110001101010111110101011101111111100101010100000110100010000
3386 #*0001011100010100011100001101011110011101010111000110001101111110
3387 #*0001111010101111101100000010001001010001010101111110101110001011
3388 #*1011000001101011100000010110101110100111010010111111011101100000
3389 #*1101111001000101101101100000001010011101011101011101001001111110
3390 #*0101000000011001101101011111110000000000100000110000111110110010
3391 #*0110000001111111011111100111000001010111111001111110110000100011
3392 #*0011010000001100111100001011100000110010001111110101110111001110
3393 #*0100100000100000000010110100000100000101111001000101111110111110
3394
3395 ;; Round 20
3396
3397 ;; After theta:
3398 #*0101110011101000101010100011001111011011001011101100101110010101
3399 #*1000101101001100110001100011100011000010011010000110001010000001
3400 #*1110010000100010010000000011110000111101000010101100110011001011
3401 #*0000101000100100111110001101111000110111100110000011111001101111
3402 #*1011111100100111101110001001110100011001101111010100111001100011
3403 #*1100010001001000100111000000010110101110110111110011110100011101
3404 #*0110010111110001010000110101110111010010011100001111101110010100
3405 #*1010010011111111110110011000101111101100101100001100111101110010
3406 #*0000100001111100101100011010100001101001001011100011110101111101
3407 #*0011000110000011101001000101001101000110000011001100110010010011
3408 #*1111111110000001100110001101000010000111111100010010111111001010
3409 #*0011001001101011011111010011100010111000100110001100100110010001
3410 #*1101111010110000110001001000010100111000001011111100011011111110
3411 #*1100101000001100011111110000111100010000101100011000011101110100
3412 #*1001110100111110100001101100000000000010010000000011000110001110
3413 #*1110100110111001011111100100000100100111000001100111110100101011
3414 #*1010100100111001111111000111111111000010001011111011110111011111
3415 #*1111010100001110111000111000000001010011100111111010010011010101
3416 #*0111001110000000100000111101001000110101111001101001001100101101
3417 #*1001011111011101011101110010101001001010101011000000011011101110
3418 #*1000000011011001000010001000100010111010110110100100100100100100
3419 #*1000010101001010101100110011100000111110000001101011111101111101
3420 #*1000001001100101111011010010011110011001001001000010101110001000
3421 #*0101100100100011110000110100100001010110100011100010010101101000
3422 #*0110111110010110111111010000000011101000000000111010111000110000
3423 ;; After rho:
3424 #*0101110011101000101010100011001111011011001011101100101110010101
3425 #*1100010110100110011000110001110001100001001101000011000101000000
3426 #*1001000010001001000000001111000011110100001010110011001100101111
3427 #*0111100110000011111001101111000010100010010011111000110111100011
3428 #*0011011110101001110011000111011111100100111101110001001110100011
3429 #*0101101011101101111100111101000111011100010001001000100111000000
3430 #*0011010111011101001001110000111110111001010001100101111100010100
3431 #*1100101010010011111111110110011000101111101100101100001100111101
3432 #*1111100101100011010100001101001001011100011110101111101000010000
3433 #*1100110011001001001100110001100000111010010001010011010001100000
3434 #*0101111111110000001100110001101000010000111111100010010111111001
3435 #*0110010001001100100110101101111101001110001011100010011000110010
3436 #*1001000010100111000001011111100011011111110110111101011000011000
3437 #*0101100011000011101110100110010100000110001111111000011110001000
3438 #*1000000000000100100000000110001100011101001110100111110100001101
3439 #*0010000010010011100000110011111010010101111101001101110010111111
3440 #*1110001111111110000100010111110111101110111111010100100111001111
3441 #*0100100110101011111010100001110111000111000000001010011100111111
3442 #*0011010010011001011010111001110000000100000111101001000110101111
3443 #*1110111010010111110111010111011100101010010010101010110000000110
3444 #*1001001001001001001000000011011001000010001000100010111010110110
3445 #*0110000101010010101011001100111000001111100000011010111111011111
3446 #*0001001100101111011010010011110011001001001000010101110001000100
3447 #*0010001111000011010010000101011010001110001001010110100001011001
3448 #*1011100011000001101111100101101111110100000000111010000000001110
3449 ;; After pi:
3450 #*0101110011101000101010100011001111011011001011101100101110010101
3451 #*0011010111011101001001110000111110111001010001100101111100010100
3452 #*1001000010100111000001011111100011011111110110111101011000011000
3453 #*0011010010011001011010111001110000000100000111101001000110101111
3454 #*1011100011000001101111100101101111110100000000111010000000001110
3455 #*0111100110000011111001101111000010100010010011111000110111100011
3456 #*1100110011001001001100110001100000111010010001010011010001100000
3457 #*0101111111110000001100110001101000010000111111100010010111111001
3458 #*1110001111111110000100010111110111101110111111010100100111001111
3459 #*0001001100101111011010010011110011001001001000010101110001000100
3460 #*1100010110100110011000110001110001100001001101000011000101000000
3461 #*1100101010010011111111110110011000101111101100101100001100111101
3462 #*0101100011000011101110100110010100000110001111111000011110001000
3463 #*1110111010010111110111010111011100101010010010101010110000000110
3464 #*1001001001001001001000000011011001000010001000100010111010110110
3465 #*0011011110101001110011000111011111100100111101110001001110100011
3466 #*0101101011101101111100111101000111011100010001001000100111000000
3467 #*0110010001001100100110101101111101001110001011100010011000110010
3468 #*0100100110101011111010100001110111000111000000001010011100111111
3469 #*0010001111000011010010000101011010001110001001010110100001011001
3470 #*1001000010001001000000001111000011110100001010110011001100101111
3471 #*1111100101100011010100001101001001011100011110101111101000010000
3472 #*1000000000000100100000000110001100011101001110100111110100001101
3473 #*0010000010010011100000110011111010010101111101001101110010111111
3474 #*0110000101010010101011001100111000001111100000011010111111011111
3475 ;; After chi:
3476 #*1101110011001010101010101100001110011101101101110100101110011101
3477 #*0001000111000101010011010000101110111001010000100101111010110011
3478 #*0001100011100111100100011011101100101111110110101111011000011000
3479 #*0111000010110001011010111011110000001111001100101101101000111110
3480 #*1001100111010100101110110101011111010100010000111011010000001110
3481 #*0110101010110011111001101111001010100010111101011000110001111010
3482 #*0110110011000111001100110111110111010100010001000111110001100110
3483 #*0100111111110001010110110001101000010001111111100011000111111001
3484 #*1000101101111110100101111011110111001100101100111100100001101100
3485 #*1001011101100111011110000011010011010001001000010110110001000100
3486 #*1101010111100110011000110001110101100001001110010011010111000000
3487 #*0110110010000111101110100111010000000111111100101110101100111011
3488 #*0100100010001011100110100110010101000110000111111000010100111000
3489 #*1010101100110001100111100111111100001011010111101011110101000110
3490 #*1001100001011000101111000101010001001100101000001110110010001011
3491 #*0001001110101001110001000111100111100110110111010011010110010001
3492 #*0101001101001110100100111101000101011101010001000000100011001101
3493 #*0100011000001100100110101001110101000110000010110110111001110010
3494 #*0101110110000011011011100011110010100111110100101011010010011101
3495 #*0110101110000111011110111101011010010110001001011110000000011001
3496 #*1001000010001101100000001101000111110101001010110011011000100010
3497 #*1101100111110000010100111100111011011100101111100111101010100010
3498 #*1100000101000100101011001010001100010111001110110101111001001101
3499 #*1011000000011010100000110000111001100101110111101100110010011111
3500 #*0000100000110000111111001100110000000111110100010110011111001111
3501 ;; After iota:
3502 #*0101110111001011101010101100001010011101101101110100101110011100
3503 #*0001000111000101010011010000101110111001010000100101111010110011
3504 #*0001100011100111100100011011101100101111110110101111011000011000
3505 #*0111000010110001011010111011110000001111001100101101101000111110
3506 #*1001100111010100101110110101011111010100010000111011010000001110
3507 #*0110101010110011111001101111001010100010111101011000110001111010
3508 #*0110110011000111001100110111110111010100010001000111110001100110
3509 #*0100111111110001010110110001101000010001111111100011000111111001
3510 #*1000101101111110100101111011110111001100101100111100100001101100
3511 #*1001011101100111011110000011010011010001001000010110110001000100
3512 #*1101010111100110011000110001110101100001001110010011010111000000
3513 #*0110110010000111101110100111010000000111111100101110101100111011
3514 #*0100100010001011100110100110010101000110000111111000010100111000
3515 #*1010101100110001100111100111111100001011010111101011110101000110
3516 #*1001100001011000101111000101010001001100101000001110110010001011
3517 #*0001001110101001110001000111100111100110110111010011010110010001
3518 #*0101001101001110100100111101000101011101010001000000100011001101
3519 #*0100011000001100100110101001110101000110000010110110111001110010
3520 #*0101110110000011011011100011110010100111110100101011010010011101
3521 #*0110101110000111011110111101011010010110001001011110000000011001
3522 #*1001000010001101100000001101000111110101001010110011011000100010
3523 #*1101100111110000010100111100111011011100101111100111101010100010
3524 #*1100000101000100101011001010001100010111001110110101111001001101
3525 #*1011000000011010100000110000111001100101110111101100110010011111
3526 #*0000100000110000111111001100110000000111110100010110011111001111
3527
3528 ;; Round 21
3529
3530 ;; After theta:
3531 #*0110010100001010110100001110000110110000000001101010010101001011
3532 #*0011110000010101100101011111001111100000010010100001011001010101
3533 #*1101110101101111010100100000000011000001101111011010011000010010
3534 #*0001001011001010011100010101000011001010001000101111000101010011
3535 #*1001010001101110000000011101100101111000010101101001101111010010
3536 #*0101001001110010100111001101000110001111010001000110001010101101
3537 #*0100000100010111111010111000010110001101010011000011010010000000
3538 #*1000101001111001100110001010000111111111100110010110000111110011
3539 #*1110100100000101100011010101000100001001101000111110001100000001
3540 #*1001101011011101110000101011101001111101001101000100001110011000
3541 #*1110110100100111000110010011111001001100100010001101101100010111
3542 #*0100000101010111011000101000110001011110111110101010001111011101
3543 #*1000110100000011010110011101111010101000011110001101010100110010
3544 #*1100100101001010100001001001001111001110010011101001011000101011
3545 #*1001010111100010000001101101101011100000101101011100001101010111
3546 #*0010101101101000101111100101101011001011011011001101101101000110
3547 #*0111111010011110010010110010100100000100010011000100000000101011
3548 #*1000001110000100010110010010011010101000011011000011111001111000
3549 #*0011111111111000011101001101000001100010110000101001111111110000
3550 #*0110011000111101110000010101100000111010001100001100111111000101
3551 #*1010100001001100111110101111001011011000100110101101100011110101
3552 #*1111010000100000100010110011011010000101101101100011001001000100
3553 #*0000010011001100011011110001100011111001010111000000111001000111
3554 #*1101001001100001100110011110001010100000110011101110011111110010
3555 #*0000010110001010010001100100001010101011110001000100100000010011
3556 ;; After rho:
3557 #*0110010100001010110100001110000110110000000001101010010101001011
3558 #*1001111000001010110010101111100111110000001001010000101100101010
3559 #*0111010110111101010010000000001100000110111101101001100001001011
3560 #*1010001000101111000101010011000100101100101001110001010100001100
3561 #*0000101011010011011110100101001010001101110000000011101100101111
3562 #*0001100011110100010001100010101011010101001001110010100111001101
3563 #*1011100001011000110101001100001101001000000001000001000101111110
3564 #*1100111000101001111001100110001010000111111111100110010110000111
3565 #*0000101100011010101000100001001101000111110001100000001111010010
3566 #*0100010000111001100010011010110111011100001010111010011111010011
3567 #*1111110110100100111000110010011111001001100100010001101101100010
3568 #*1111011101010000010101011101100010100011000101111011111010101000
3569 #*0011101111010101000011110001101010100110010100011010000001101011
3570 #*0010011101001011000101011110010010100101010000100100100111100111
3571 #*1011010111000001011010111000011010101111001010111100010000001101
3572 #*0010110101100101101101100110110110100011000101011011010001011111
3573 #*0101100101001000001000100110001000000001010110111111010011110010
3574 #*0111110011110001000001110000100010110010010011010101000011011000
3575 #*0001010011111111100000011111111111000011101001101000001100010110
3576 #*1100010101100110001111011100000101011000001110100011000011001111
3577 #*1011011000111101011010100001001100111110101111001011011000100110
3578 #*0011110100001000001000101100110110100001011011011000110010010001
3579 #*0010011001100011011110001100011111001010111000000111001000111000
3580 #*0110000110011001111000101010000011001110111001111111001011010010
3581 #*0010000001001100000101100010100100011001000010101010111100010001
3582 ;; After pi:
3583 #*0110010100001010110100001110000110110000000001101010010101001011
3584 #*1011100001011000110101001100001101001000000001000001000101111110
3585 #*0011101111010101000011110001101010100110010100011010000001101011
3586 #*0001010011111111100000011111111111000011101001101000001100010110
3587 #*0010000001001100000101100010100100011001000010101010111100010001
3588 #*1010001000101111000101010011000100101100101001110001010100001100
3589 #*0100010000111001100010011010110111011100001010111010011111010011
3590 #*1111110110100100111000110010011111001001100100010001101101100010
3591 #*0101100101001000001000100110001000000001010110111111010011110010
3592 #*0010011001100011011110001100011111001010111000000111001000111000
3593 #*1001111000001010110010101111100111110000001001010000101100101010
3594 #*1100111000101001111001100110001010000111111111100110010110000111
3595 #*0010011101001011000101011110010010100101010000100100100111100111
3596 #*1100010101100110001111011100000101011000001110100011000011001111
3597 #*1011011000111101011010100001001100111110101111001011011000100110
3598 #*0000101011010011011110100101001010001101110000000011101100101111
3599 #*0001100011110100010001100010101011010101001001110010100111001101
3600 #*1111011101010000010101011101100010100011000101111011111010101000
3601 #*0111110011110001000001110000100010110010010011010101000011011000
3602 #*0110000110011001111000101010000011001110111001111111001011010010
3603 #*0111010110111101010010000000001100000110111101101001100001001011
3604 #*0000101100011010101000100001001101000111110001100000001111010010
3605 #*1011010111000001011010111000011010101111001010111100010000001101
3606 #*0010110101100101101101100110110110100011000101011011010001011111
3607 #*0011110100001000001000101100110110100001011011011000110010010001
3608 ;; After chi:
3609 #*0110011010001111110110111111100100010110010101110000010101001010
3610 #*1011110001110010010101000010011000001001101000100001001001101010
3611 #*0001101111010101000110010001101010111110010110011000110001101010
3612 #*0101000111111101010000010011111101100011101000101000001101011100
3613 #*1011100000011100000100100010101101010001000010101011111100100101
3614 #*0001101110101011011101110011001100101101001101110000110100101100
3615 #*0100010001110001100010011110110111011100011000010100001101000011
3616 #*1101101110000111101110111010001000000011001100010001100101101010
3617 #*1101100101000100001001110101001000100101010111001111000111110110
3618 #*0110001001110011111100000100101100011010111010001101000011101011
3619 #*1011111101001000110110110111110111010000001001010000001101001010
3620 #*0000111000001101110011100110001111011111110001100101010110001111
3621 #*0001010101010010010101111111011010000011110001101100111111000111
3622 #*1100110101100100101111010010100110011000001110110011100111000111
3623 #*1111011000011100010011100001000100111001011001101101001010100011
3624 #*1110110111010011011010111000001010101111110100001010110100001111
3625 #*0001000001010101010001000010101011000101011011110110100110011101
3626 #*1111011001011000101101010111100011101111101101010001110010101010
3627 #*0111011010110011000111110101101010110011010011010101100111110101
3628 #*0111000110111101111001101000100010011110110000001111001000010010
3629 #*1100000101111100000000011000011110101110110111110101110001000110
3630 #*0000001100111110001101100111101001000111110100100011001110000000
3631 #*1010010111001001011010110000011010101111010000111100110010001101
3632 #*0110110111010000111111100110111110100101100001111010010000010101
3633 #*0011011100001010100000001101110111100000011011011000111100000001
3634 ;; After iota:
3635 #*0110011110001110110110111111100100010110010101110000010101001011
3636 #*1011110001110010010101000010011000001001101000100001001001101010
3637 #*0001101111010101000110010001101010111110010110011000110001101010
3638 #*0101000111111101010000010011111101100011101000101000001101011100
3639 #*1011100000011100000100100010101101010001000010101011111100100101
3640 #*0001101110101011011101110011001100101101001101110000110100101100
3641 #*0100010001110001100010011110110111011100011000010100001101000011
3642 #*1101101110000111101110111010001000000011001100010001100101101010
3643 #*1101100101000100001001110101001000100101010111001111000111110110
3644 #*0110001001110011111100000100101100011010111010001101000011101011
3645 #*1011111101001000110110110111110111010000001001010000001101001010
3646 #*0000111000001101110011100110001111011111110001100101010110001111
3647 #*0001010101010010010101111111011010000011110001101100111111000111
3648 #*1100110101100100101111010010100110011000001110110011100111000111
3649 #*1111011000011100010011100001000100111001011001101101001010100011
3650 #*1110110111010011011010111000001010101111110100001010110100001111
3651 #*0001000001010101010001000010101011000101011011110110100110011101
3652 #*1111011001011000101101010111100011101111101101010001110010101010
3653 #*0111011010110011000111110101101010110011010011010101100111110101
3654 #*0111000110111101111001101000100010011110110000001111001000010010
3655 #*1100000101111100000000011000011110101110110111110101110001000110
3656 #*0000001100111110001101100111101001000111110100100011001110000000
3657 #*1010010111001001011010110000011010101111010000111100110010001101
3658 #*0110110111010000111111100110111110100101100001111010010000010101
3659 #*0011011100001010100000001101110111100000011011011000111100000001
3660
3661 ;; Round 22
3662
3663 ;; After theta:
3664 #*1111111111111000101000010010000101011110001000101110101001101000
3665 #*0001000011111000110111000000110011011100110001001010110101111110
3666 #*0101000111101111011001011101101011010010111001100000100110010111
3667 #*1110001000001110000011110001110100011011111011101110100110000011
3668 #*1001000101000011001001101000001111101100001000000111010010011010
3669 #*1000001111011101000011011110101101100101010000101110001000001111
3670 #*1110100011111011000000011100011100001001000001111111110001010111
3671 #*1001000110111101110001110110001001101111100011101001110010010111
3672 #*0110101010110111011010010111000001011101000100001001101100101001
3673 #*0100101100101100110001001110001110100111110000100001101101010100
3674 #*0010011100111110101000011010010110011000010100001110110001101001
3675 #*1010001010000111010001100100100100001010101000001110101010011011
3676 #*0101111101101000001010110011011011101111011110010100101000111010
3677 #*0111111010010111111100110000101111100000011101110101001100011000
3678 #*1101111101000011011110101011100110000100010011000001100100011100
3679 #*0111010110100101000100010101101011100111101001010100001000101100
3680 #*1011110011011111110011000000000000010000000010011101011010001001
3681 #*1011110001100010110010011011100010000011000010101001100101010111
3682 #*1100010101000000010100010111100011001011000000010011001100101010
3683 #*0101100011100010110100100010000000100011111010100011100110101101
3684 #*0101100100001010011110110101111111100110101010101011001101100101
3685 #*1010111110110100101111100101000010010010101101001000110010010100
3686 #*1110111111110011000101111100011011000011111111000100100101110000
3687 #*1101111000100011101100000100110111011101110010111100111011001010
3688 #*0001111001010101101101000111010101011101010001110100010010111110
3689 ;; After rho:
3690 #*1111111111111000101000010010000101011110001000101110101001101000
3691 #*0000100001111100011011100000011001101110011000100101011010111111
3692 #*0100011110111101100101110110101101001011100110000010011001011101
3693 #*1011111011101110100110000011111000100000111000001111000111010001
3694 #*1000010000001110100100110101001000101000011001001101000001111101
3695 #*1011011001010100001011100010000011111000001111011101000011011110
3696 #*0001110001110000100100000111111111000101011111101000111110110000
3697 #*0101111001000110111101110001110110001001101111100011101001110010
3698 #*0110111011010010111000001011101000100001001101100101001011010101
3699 #*0010000110110101010001001011001011001100010011100011101001111100
3700 #*0010010011100111110101000011010010110011000010100001110110001101
3701 #*1010011011101000101000011101000110010010010000101010100000111010
3702 #*0110011011011101111011110010100101000111010010111110110100000101
3703 #*0011101110101001100011000011111101001011111110011000010111110000
3704 #*0111001100001000100110000011001000111001101111101000011011110101
3705 #*1010110101110011110100101010000100010110001110101101001010001000
3706 #*0110000000000000100000000100111010110100010011011110011011111110
3707 #*0011001010101111011110001100010110010011011100010000011000010101
3708 #*0000100110011001010101100010101000000010100010111100011001011000
3709 #*1010110101011000111000101101001000100000001000111110101000111001
3710 #*1010110011011001010101100100001010011110110101111111100110101010
3711 #*0010101111101101001011111001010000100100101011010010001100100101
3712 #*0111111110011000101111100011011000011111111000100100101110000111
3713 #*0010001110110000010011011101110111001011110011101100101011011110
3714 #*0001001011111000011110010101011011010001110101010111010100011101
3715 ;; After pi:
3716 #*1111111111111000101000010010000101011110001000101110101001101000
3717 #*0001110001110000100100000111111111000101011111101000111110110000
3718 #*0110011011011101111011110010100101000111010010111110110100000101
3719 #*0000100110011001010101100010101000000010100010111100011001011000
3720 #*0001001011111000011110010101011011010001110101010111010100011101
3721 #*1011111011101110100110000011111000100000111000001111000111010001
3722 #*0010000110110101010001001011001011001100010011100011101001111100
3723 #*0010010011100111110101000011010010110011000010100001110110001101
3724 #*0110000000000000100000000100111010110100010011011110011011111110
3725 #*0111111110011000101111100011011000011111111000100100101110000111
3726 #*0000100001111100011011100000011001101110011000100101011010111111
3727 #*0101111001000110111101110001110110001001101111100011101001110010
3728 #*0011101110101001100011000011111101001011111110011000010111110000
3729 #*1010110101011000111000101101001000100000001000111110101000111001
3730 #*1010110011011001010101100100001010011110110101111111100110101010
3731 #*1000010000001110100100110101001000101000011001001101000001111101
3732 #*1011011001010100001011100010000011111000001111011101000011011110
3733 #*1010011011101000101000011101000110010010010000101010100000111010
3734 #*0011001010101111011110001100010110010011011100010000011000010101
3735 #*0010001110110000010011011101110111001011110011101100101011011110
3736 #*0100011110111101100101110110101101001011100110000010011001011101
3737 #*0110111011010010111000001011101000100001001101100101001011010101
3738 #*0111001100001000100110000011001000111001101111101000011011110101
3739 #*1010110101110011110100101010000100010110001110101101001010001000
3740 #*0010101111101101001011111001010000100100101011010010001100100101
3741 ;; After chi:
3742 #*1001110101110101110011100010000101011100001000111000101001101101
3743 #*0001010101110000100000000111110111000101111111101000110111101000
3744 #*0111010010111101110001100111110110010110000111111101110000000000
3745 #*1110010010011001110101100000101100001100101010010100110000111000
3746 #*0001001011111000011010010000100001010000100010010111000010001101
3747 #*1011101010101100000010000011101000010011111000001111010001010000
3748 #*0110000110110101010001001111100011001000000010111101100000001110
3749 #*0011101101111111111010100000010010111000101010000001010010001100
3750 #*1110000001100110100000000100011010010100010011010101011010101110
3751 #*0111111010001001111110101011011011010011111011000100000110101011
3752 #*0010100111010101011001100010010000101100001000111101001100111111
3753 #*1101101000010110100101011101110110101001101111000101000001111011
3754 #*0011101100101000100110000011111111010101001011011001010001110010
3755 #*1010110101111100110010101101011001000000000000111110110000101100
3756 #*1111101011011011110001110101101100011111010010111101000111101010
3757 #*1000010010100110000100101000001100101010001001101111100001011101
3758 #*1010011001010011011101100010010011111001000011001101011011011011
3759 #*1010011111111000101001001100100111011010110011000110000011110000
3760 #*1011011010100001111010101100011110110011010100010001011000110100
3761 #*0001000111100000011000011111110100011011110101111100101001011100
3762 #*0101011010110101100011110110101101010011000100001010001001111101
3763 #*1110001010100001101000100011101100100111001101100000001011011101
3764 #*0111000110000100101101010010011000011001001110111010011111010000
3765 #*1110100101100011010000101100101001011101001010101101011011010000
3766 #*0000001110101111010011110000010000000100100010110111001110100101
3767 ;; After iota:
3768 #*0001110101110101110011100010000001011100001000111000101001101101
3769 #*0001010101110000100000000111110111000101111111101000110111101000
3770 #*0111010010111101110001100111110110010110000111111101110000000000
3771 #*1110010010011001110101100000101100001100101010010100110000111000
3772 #*0001001011111000011010010000100001010000100010010111000010001101
3773 #*1011101010101100000010000011101000010011111000001111010001010000
3774 #*0110000110110101010001001111100011001000000010111101100000001110
3775 #*0011101101111111111010100000010010111000101010000001010010001100
3776 #*1110000001100110100000000100011010010100010011010101011010101110
3777 #*0111111010001001111110101011011011010011111011000100000110101011
3778 #*0010100111010101011001100010010000101100001000111101001100111111
3779 #*1101101000010110100101011101110110101001101111000101000001111011
3780 #*0011101100101000100110000011111111010101001011011001010001110010
3781 #*1010110101111100110010101101011001000000000000111110110000101100
3782 #*1111101011011011110001110101101100011111010010111101000111101010
3783 #*1000010010100110000100101000001100101010001001101111100001011101
3784 #*1010011001010011011101100010010011111001000011001101011011011011
3785 #*1010011111111000101001001100100111011010110011000110000011110000
3786 #*1011011010100001111010101100011110110011010100010001011000110100
3787 #*0001000111100000011000011111110100011011110101111100101001011100
3788 #*0101011010110101100011110110101101010011000100001010001001111101
3789 #*1110001010100001101000100011101100100111001101100000001011011101
3790 #*0111000110000100101101010010011000011001001110111010011111010000
3791 #*1110100101100011010000101100101001011101001010101101011011010000
3792 #*0000001110101111010011110000010000000100100010110111001110100101
3793
3794 ;; Round 23
3795
3796 ;; After theta:
3797 #*0110110010000000011101101001111101100010011010000011101110010101
3798 #*0001100000100100111011110111111101000011000111101011011100100101
3799 #*1110010110111100110110010111000111110111001000100001011010110100
3800 #*1000010001111101110011101010110001110101011111011111101101111100
3801 #*1100101010110110110000110111010101101011011111100011110101000010
3802 #*1100101101011001101100001000010100101101101010110100010110101000
3803 #*0110110011100001001010111111101001001110111010111110001011000011
3804 #*1010101001111110111101010000100011011001100101011101111000111000
3805 #*1000000010000010100110001110000111101101100110011110000111101010
3806 #*1010011011000111010100001100101111101000000110110000110001100100
3807 #*0101100000100000110111101001101100010010011010000110001011000111
3808 #*1101011101000010111110101101111100101111010111000110101010110110
3809 #*1010101000101001100001110011001110110100000100000101111011000110
3810 #*1100110110011000110100100111000100111001110101110101101101101000
3811 #*0010001010010101011011010010011000100100101111001001110000100101
3812 #*1111010101010011101010100011110000010100011011010100100110100101
3813 #*1010101100000111000110010010011001111111111011001110110000010110
3814 #*0011011011111001101110111100010110111011111100011010101001000100
3815 #*1101011001000101111100100110000011001010100001011010000101110000
3816 #*1100100110101110110010111000000000100000001000001000011110010011
3817 #*0010011101000000001101111101010001101101010110110001001110000101
3818 #*1110111111110101110011010011100110100001110101100011100000010000
3819 #*1110000010000101101010100010101001111000000001100110110101100100
3820 #*1000100110000111010110100110110100100100111111100110000110010100
3821 #*1101101111100001111001010111100100111111011111000011111001101010
3822 ;; After rho:
3823 #*0110110010000000011101101001111101100010011010000011101110010101
3824 #*1000110000010010011101111011111110100001100011110101101110010010
3825 #*1001011011110011011001011100011111011100100010000101101011010011
3826 #*0101011111011111101101111100100001000111110111001110101011000111
3827 #*0110111111000111101010000101100101010110110110000110111010101101
3828 #*0101001011011010101101000101101010001100101101011001101100001000
3829 #*1011111110100100111011101011111000101100001101101100111000010010
3830 #*1110001010101001111110111101010000100011011001100101011101111000
3831 #*0000010100110001110000111101101100110011110000111101010100000001
3832 #*1011000011000110010010100110110001110101000011001011111010000001
3833 #*1110101100000100000110111101001101100010010011010000110001011000
3834 #*1010110110110101110100001011111010110111110010111101011100011010
3835 #*1110011001110110100000100000101111011000110101010100010100110000
3836 #*1110101110101101101101000110011011001100011010010011100010011100
3837 #*0100110001001001011110010011100001001010010001010010101011011010
3838 #*0001111000001010001101101010010011010010111110101010100111010101
3839 #*1100100100110011111111110110011101100000101101010101100000111000
3840 #*0101010010001000011011011111001101110111100010110111011111100011
3841 #*0010110100001011100001101011001000101111100100110000011001010100
3842 #*1001001111001001101011101100101110000000001000000010000010000111
3843 #*1100010011100001010010011101000000001101111101010001101101010110
3844 #*0011101111111101011100110100111001101000011101011000111000000100
3845 #*0000010000101101010100010101001111000000001100110110101100100111
3846 #*1000011101011010011011010010010011111110011000011001010010001001
3847 #*1111100110101011011011111000011110010101111001001111110111110000
3848 ;; After pi:
3849 #*0110110010000000011101101001111101100010011010000011101110010101
3850 #*1011111110100100111011101011111000101100001101101100111000010010
3851 #*1110011001110110100000100000101111011000110101010100010100110000
3852 #*0010110100001011100001101011001000101111100100110000011001010100
3853 #*1111100110101011011011111000011110010101111001001111110111110000
3854 #*0101011111011111101101111100100001000111110111001110101011000111
3855 #*1011000011000110010010100110110001110101000011001011111010000001
3856 #*1110101100000100000110111101001101100010010011010000110001011000
3857 #*1100100100110011111111110110011101100000101101010101100000111000
3858 #*0000010000101101010100010101001111000000001100110110101100100111
3859 #*1000110000010010011101111011111110100001100011110101101110010010
3860 #*1110001010101001111110111101010000100011011001100101011101111000
3861 #*1110101110101101101101000110011011001100011010010011100010011100
3862 #*1001001111001001101011101100101110000000001000000010000010000111
3863 #*1100010011100001010010011101000000001101111101010001101101010110
3864 #*0110111111000111101010000101100101010110110110000110111010101101
3865 #*0101001011011010101101000101101010001100101101011001101100001000
3866 #*1010110110110101110100001011111010110111110010111101011100011010
3867 #*0101010010001000011011011111001101110111100010110111011111100011
3868 #*1000011101011010011011010010010011111110011000011001010010001001
3869 #*1001011011110011011001011100011111011100100010000101101011010011
3870 #*0000010100110001110000111101101100110011110000111101010100000001
3871 #*0100110001001001011110010011100001001010010001010010101011011010
3872 #*0001111000001010001101101010010011010010111110101010100111010101
3873 #*0011101111111101011100110100111001101000011101011000111000000100
3874 ;; After chi:
3875 #*0010110011010010011101101001111010110010101010010011101010110101
3876 #*1011011010101101111010100000111000001011001101001100110001010110
3877 #*0011011011010110111010110000111001001000101100011011110010010000
3878 #*0010100100001011100101101010101001001101100110110000010001010001
3879 #*0110101010001111111001111010011110011001111100100011100111110010
3880 #*0001110011011111101001100101101101000101100111011110101010011111
3881 #*1011000011110101101011100100100001110101101111001110111010100001
3882 #*1110111100001000000110111100001111100010010011110010111101011111
3883 #*1001101011100001010110011110111101100111011110011101100011111000
3884 #*1010010000101101000110010111011111110000001100110111111100100111
3885 #*1000010100010110011100111001110101101101100001100111001100010110
3886 #*1111001011101001111100010101110100100011011001100101011101111011
3887 #*1010111110001101111101010111011011000001101111000010001111001100
3888 #*1001101111011011100110001110010000100000001010100110000000000111
3889 #*1010011001001000110000011001000000001111100101010001111100111110
3890 #*1100001011100010111010001111110101100101100100100010101010111111
3891 #*0000001011010010100110010001101111001100101101011011101111101001
3892 #*0010111011100111110100001011101000111111101010110101011100010010
3893 #*0011110000001101111011011010101001110111000100110001110111000111
3894 #*1001011101000010011110010010011001110110010001000000010110001001
3895 #*1101111010111011010111011110011110010100100011000111000000001001
3896 #*0001011100110011110001010101111110100011011110010101010000000100
3897 #*0110110110111100001110000111001001100010010000000010110011011010
3898 #*1001101000001000001100100010010101000110011100101111100100000110
3899 #*0011101011111101111100010101011001001011001101100000101100000100
3900 ;; After iota:
3901 #*0011110011010011011101101001111110110010101010010011101010110100
3902 #*1011011010101101111010100000111000001011001101001100110001010110
3903 #*0011011011010110111010110000111001001000101100011011110010010000
3904 #*0010100100001011100101101010101001001101100110110000010001010001
3905 #*0110101010001111111001111010011110011001111100100011100111110010
3906 #*0001110011011111101001100101101101000101100111011110101010011111
3907 #*1011000011110101101011100100100001110101101111001110111010100001
3908 #*1110111100001000000110111100001111100010010011110010111101011111
3909 #*1001101011100001010110011110111101100111011110011101100011111000
3910 #*1010010000101101000110010111011111110000001100110111111100100111
3911 #*1000010100010110011100111001110101101101100001100111001100010110
3912 #*1111001011101001111100010101110100100011011001100101011101111011
3913 #*1010111110001101111101010111011011000001101111000010001111001100
3914 #*1001101111011011100110001110010000100000001010100110000000000111
3915 #*1010011001001000110000011001000000001111100101010001111100111110
3916 #*1100001011100010111010001111110101100101100100100010101010111111
3917 #*0000001011010010100110010001101111001100101101011011101111101001
3918 #*0010111011100111110100001011101000111111101010110101011100010010
3919 #*0011110000001101111011011010101001110111000100110001110111000111
3920 #*1001011101000010011110010010011001110110010001000000010110001001
3921 #*1101111010111011010111011110011110010100100011000111000000001001
3922 #*0001011100110011110001010101111110100011011110010101010000000100
3923 #*0110110110111100001110000111001001100010010000000010110011011010
3924 #*1001101000001000001100100010010101000110011100101111100100000110
3925 #*0011101011111101111100010101011001001011001101100000101100000100
3926
3927 ;; Final state:
3928 #*0011110011010011011101101001111110110010101010010011101010110100
3929 #*1011011010101101111010100000111000001011001101001100110001010110
3930 #*0011011011010110111010110000111001001000101100011011110010010000
3931 #*0010100100001011100101101010101001001101100110110000010001010001
3932 #*0110101010001111111001111010011110011001111100100011100111110010
3933 #*0001110011011111101001100101101101000101100111011110101010011111
3934 #*1011000011110101101011100100100001110101101111001110111010100001
3935 #*1110111100001000000110111100001111100010010011110010111101011111
3936 #*1001101011100001010110011110111101100111011110011101100011111000
3937 #*1010010000101101000110010111011111110000001100110111111100100111
3938 #*1000010100010110011100111001110101101101100001100111001100010110
3939 #*1111001011101001111100010101110100100011011001100101011101111011
3940 #*1010111110001101111101010111011011000001101111000010001111001100
3941 #*1001101111011011100110001110010000100000001010100110000000000111
3942 #*1010011001001000110000011001000000001111100101010001111100111110
3943 #*1100001011100010111010001111110101100101100100100010101010111111
3944 #*0000001011010010100110010001101111001100101101011011101111101001
3945 #*0010111011100111110100001011101000111111101010110101011100010010
3946 #*0011110000001101111011011010101001110111000100110001110111000111
3947 #*1001011101000010011110010010011001110110010001000000010110001001
3948 #*1101111010111011010111011110011110010100100011000111000000001001
3949 #*0001011100110011110001010101111110100011011110010101010000000100
3950 #*0110110110111100001110000111001001100010010000000010110011011010
3951 #*1001101000001000001100100010010101000110011100101111100100000110
3952 #*0011101011111101111100010101011001001011001101100000101100000100
-
+ 50DA2663436E756E6BD7D256420139D95AB11DF950FE8F7A4D31F9C426F55EA942179F74311978B7EE38F9570CBF78A0488E03FFAF9C5A7BDFD2E46008A02FF3
esthlos-v/src/keccak/tests/testspongeoutput1.txt
(0 . 0)(1 . 1)
3957 #*1101001111111110110111110011111011100111111010100101010001100000101000111110110010100001010100010000000000001001001111110001010000010001110000110110001101011101010110010101110001011011001011010111111100111110010110010010110111110111111001111000010101100111100110000001110100101100000100111100001010100101111001010111100111000100110011111110111111000111001010000101010110011010101111101011100110110101111011000111011000100001110010000000010110100000000110011011001000000000111100111010100111110010010001101010111101111001110011111101000010100000001100001001100101010111001001101001011100011010110011001011101001110101000101101000001010101001001010111001110001101101011001111111101100001011001001110100000010001010110100010111101001011110010001000011111000010010111100111100010000111001010101110011100010011100010010001000001011101011000001101110101011001100100101010010111100011101110011111111111101111101001011100111011110100010001001011110000000001100101101110111100011110100011110110011111101010011001010011111100010001010111000010001000011010011101011010110110110101011011001010011100100001100011001000100110011100110100111011011111011011110100101000011010111100001001000000001110000000001011101011100001011000000110111000000100011101000111101111110110100111010110011000010010001110001100101000100011010010001001101000110011110111001000101010101110110001111111110110011001010010000010000001000110100110110001001101000010110110101001010111111010000101111000110101001001100110010101100101101110011010000010011001000111011011000010111010100010000001000100100101001000100011001101001001100001010001011111101110110100010000110111101011111010110100100110011100001011010111110000110100011000110000001100010000111110011101011010111111110111110111011100111110100100001000000111110000000001110111100011100000001100100110101000000110000010001010000111110010101111001110000011010011001010011011011110001011101110000000101110001010000001100111100010100110101101010111110101011000000011001100101110110110001101000101001010001000011010100100110000100010111010010001111010100100100011010110101000110011110000011001101110010101011000101110111101010000001001010011000101100101011110110100010111101100100100110101101000101100111001101101110010000011111111010000010000001111101111100111100111111101010010011001111001001011110001111100000101101010100000111011010000101001110100100001100011111111011110110111111010001001100010111100111010000100110001111011111100011101010010001111011011100000001110010001101000011001100111110100000001010010000101001010011100001101010000110101000010101100111111001110111010101001110110100010011001001110000111010011001011010100011101110110110011110101111100110011001101010110101000010011000111000100111110011100101111010111110110000110101110010010001001010101000011010110011000111100000000010001100010000101010110000011101101110100001100010101011111111100001011010101010001010010110110101000111001001111010011010001101110111011001100010000100001001110101000011001111000011111010100101100010111111111100000000001000100110101011001011001100111101001110100001111111111101000011101001110100010011100111000010001100000000100111010010110111111001101111001101011011001101101100010011011010111011110110101011011111111101000000110110110000111110010011110101100101001101100111011100011011111000100110111001001000000110100000010000010001111100001110100010101001101011110000111101100110110110111010110111100010100101010001001110011011100100110110110010011111010110100010010001100110110001011110010100001110101110001001100100000110101111001111000100000011111011101110111110100110011101101011101100000110011011101101111100101011000110010100110111111101001000010101101100001000000000010110100101100101110000101110000100010100100001010111001100001100101101010011110001001010000100110010000100111011001001110010100011101111011000110010010110001100010111001101000000101000110101111011010010111100111100100000111110111101101100110101100000111110101101001001000100110011010101011001001010000110010010001001011111001111110011100110110110111001111011110000101010111111001111101101101111100101010110010100
-
+ 1273A8BB3518CD8CC53849FA74C0334ABAA41D795956EACD8E7E14FD3CA1CB8188FF76AA68E98BA0B07ED7F6F4EEB87378F9357D721A4E74E6E22B134D9E428E
esthlos-v/src/keccak/tests/testspongeoutput2.txt
(0 . 0)(1 . 1)
3962 #*101011000010111111011111100101010100101101111001110000011101110010111000100011010011111001000101111000000011111010001000110011010010110000110001010100010100111101000101110010010010001001110101010101100101010111111000110001100011111110100010011011000111001110011110001110100010101000001111101011001001100111001010100111010011111001010111111001001001001001101000100010011001011101111100001001110100000101111001110101010001110001000001100010000110011100010111101111010111110001011011001011100110110010110110100100001110001011111011110001010110101110111010010010001010111011001001010100000011111101000010000100011101001011001110001001001000111010111110110100110000000010111100110111101101110000111010011101000100100100011101111100101110001000110001000100111101101110101101111010000111001000101101010111010110001100000100110111100100101101110100011010100011111101100011101001111101111110001000001111011001101011110001110110110110011100000100100100011100100001110011001011000011110111000000110000011111111011011011001111111111101110011111000000101011111000101001101000011000110010101101001111111111111001111111000011101001010011001111011100000111111000111011100111110001010011110100010100001100011011110000100101010001100110011100111011101111011001111010010101110001001000101010100100100110111101110100010000101010100001001010111101011010100110001110
-
+ FEFA33E275498684D77775478993CC00A184ECF67B9B32C7E33FEDA606B85457C3F7249EB36CAACA45296340E4419724F51EAF5A3F4F060176C46EBB7FC65C8E
esthlos-v/src/keccak/tests/testzerostate.txt
(0 . 0)(1 . 3245)
3967 ;; Initial state:
3968 #*0000000000000000000000000000000000000000000000000000000000000000
3969 #*0000000000000000000000000000000000000000000000000000000000000000
3970 #*0000000000000000000000000000000000000000000000000000000000000000
3971 #*0000000000000000000000000000000000000000000000000000000000000000
3972 #*0000000000000000000000000000000000000000000000000000000000000000
3973 #*0000000000000000000000000000000000000000000000000000000000000000
3974 #*0000000000000000000000000000000000000000000000000000000000000000
3975 #*0000000000000000000000000000000000000000000000000000000000000000
3976 #*0000000000000000000000000000000000000000000000000000000000000000
3977 #*0000000000000000000000000000000000000000000000000000000000000000
3978 #*0000000000000000000000000000000000000000000000000000000000000000
3979 #*0000000000000000000000000000000000000000000000000000000000000000
3980 #*0000000000000000000000000000000000000000000000000000000000000000
3981 #*0000000000000000000000000000000000000000000000000000000000000000
3982 #*0000000000000000000000000000000000000000000000000000000000000000
3983 #*0000000000000000000000000000000000000000000000000000000000000000
3984 #*0000000000000000000000000000000000000000000000000000000000000000
3985 #*0000000000000000000000000000000000000000000000000000000000000000
3986 #*0000000000000000000000000000000000000000000000000000000000000000
3987 #*0000000000000000000000000000000000000000000000000000000000000000
3988 #*0000000000000000000000000000000000000000000000000000000000000000
3989 #*0000000000000000000000000000000000000000000000000000000000000000
3990 #*0000000000000000000000000000000000000000000000000000000000000000
3991 #*0000000000000000000000000000000000000000000000000000000000000000
3992 #*0000000000000000000000000000000000000000000000000000000000000000
3993
3994 ;; Round 0
3995
3996 ;; After theta:
3997 #*0000000000000000000000000000000000000000000000000000000000000000
3998 #*0000000000000000000000000000000000000000000000000000000000000000
3999 #*0000000000000000000000000000000000000000000000000000000000000000
4000 #*0000000000000000000000000000000000000000000000000000000000000000
4001 #*0000000000000000000000000000000000000000000000000000000000000000
4002 #*0000000000000000000000000000000000000000000000000000000000000000
4003 #*0000000000000000000000000000000000000000000000000000000000000000
4004 #*0000000000000000000000000000000000000000000000000000000000000000
4005 #*0000000000000000000000000000000000000000000000000000000000000000
4006 #*0000000000000000000000000000000000000000000000000000000000000000
4007 #*0000000000000000000000000000000000000000000000000000000000000000
4008 #*0000000000000000000000000000000000000000000000000000000000000000
4009 #*0000000000000000000000000000000000000000000000000000000000000000
4010 #*0000000000000000000000000000000000000000000000000000000000000000
4011 #*0000000000000000000000000000000000000000000000000000000000000000
4012 #*0000000000000000000000000000000000000000000000000000000000000000
4013 #*0000000000000000000000000000000000000000000000000000000000000000
4014 #*0000000000000000000000000000000000000000000000000000000000000000
4015 #*0000000000000000000000000000000000000000000000000000000000000000
4016 #*0000000000000000000000000000000000000000000000000000000000000000
4017 #*0000000000000000000000000000000000000000000000000000000000000000
4018 #*0000000000000000000000000000000000000000000000000000000000000000
4019 #*0000000000000000000000000000000000000000000000000000000000000000
4020 #*0000000000000000000000000000000000000000000000000000000000000000
4021 #*0000000000000000000000000000000000000000000000000000000000000000
4022 ;; After rho:
4023 #*0000000000000000000000000000000000000000000000000000000000000000
4024 #*0000000000000000000000000000000000000000000000000000000000000000
4025 #*0000000000000000000000000000000000000000000000000000000000000000
4026 #*0000000000000000000000000000000000000000000000000000000000000000
4027 #*0000000000000000000000000000000000000000000000000000000000000000
4028 #*0000000000000000000000000000000000000000000000000000000000000000
4029 #*0000000000000000000000000000000000000000000000000000000000000000
4030 #*0000000000000000000000000000000000000000000000000000000000000000
4031 #*0000000000000000000000000000000000000000000000000000000000000000
4032 #*0000000000000000000000000000000000000000000000000000000000000000
4033 #*0000000000000000000000000000000000000000000000000000000000000000
4034 #*0000000000000000000000000000000000000000000000000000000000000000
4035 #*0000000000000000000000000000000000000000000000000000000000000000
4036 #*0000000000000000000000000000000000000000000000000000000000000000
4037 #*0000000000000000000000000000000000000000000000000000000000000000
4038 #*0000000000000000000000000000000000000000000000000000000000000000
4039 #*0000000000000000000000000000000000000000000000000000000000000000
4040 #*0000000000000000000000000000000000000000000000000000000000000000
4041 #*0000000000000000000000000000000000000000000000000000000000000000
4042 #*0000000000000000000000000000000000000000000000000000000000000000
4043 #*0000000000000000000000000000000000000000000000000000000000000000
4044 #*0000000000000000000000000000000000000000000000000000000000000000
4045 #*0000000000000000000000000000000000000000000000000000000000000000
4046 #*0000000000000000000000000000000000000000000000000000000000000000
4047 #*0000000000000000000000000000000000000000000000000000000000000000
4048 ;; After pi:
4049 #*0000000000000000000000000000000000000000000000000000000000000000
4050 #*0000000000000000000000000000000000000000000000000000000000000000
4051 #*0000000000000000000000000000000000000000000000000000000000000000
4052 #*0000000000000000000000000000000000000000000000000000000000000000
4053 #*0000000000000000000000000000000000000000000000000000000000000000
4054 #*0000000000000000000000000000000000000000000000000000000000000000
4055 #*0000000000000000000000000000000000000000000000000000000000000000
4056 #*0000000000000000000000000000000000000000000000000000000000000000
4057 #*0000000000000000000000000000000000000000000000000000000000000000
4058 #*0000000000000000000000000000000000000000000000000000000000000000
4059 #*0000000000000000000000000000000000000000000000000000000000000000
4060 #*0000000000000000000000000000000000000000000000000000000000000000
4061 #*0000000000000000000000000000000000000000000000000000000000000000
4062 #*0000000000000000000000000000000000000000000000000000000000000000
4063 #*0000000000000000000000000000000000000000000000000000000000000000
4064 #*0000000000000000000000000000000000000000000000000000000000000000
4065 #*0000000000000000000000000000000000000000000000000000000000000000
4066 #*0000000000000000000000000000000000000000000000000000000000000000
4067 #*0000000000000000000000000000000000000000000000000000000000000000
4068 #*0000000000000000000000000000000000000000000000000000000000000000
4069 #*0000000000000000000000000000000000000000000000000000000000000000
4070 #*0000000000000000000000000000000000000000000000000000000000000000
4071 #*0000000000000000000000000000000000000000000000000000000000000000
4072 #*0000000000000000000000000000000000000000000000000000000000000000
4073 #*0000000000000000000000000000000000000000000000000000000000000000
4074 ;; After chi:
4075 #*0000000000000000000000000000000000000000000000000000000000000000
4076 #*0000000000000000000000000000000000000000000000000000000000000000
4077 #*0000000000000000000000000000000000000000000000000000000000000000
4078 #*0000000000000000000000000000000000000000000000000000000000000000
4079 #*0000000000000000000000000000000000000000000000000000000000000000
4080 #*0000000000000000000000000000000000000000000000000000000000000000
4081 #*0000000000000000000000000000000000000000000000000000000000000000
4082 #*0000000000000000000000000000000000000000000000000000000000000000
4083 #*0000000000000000000000000000000000000000000000000000000000000000
4084 #*0000000000000000000000000000000000000000000000000000000000000000
4085 #*0000000000000000000000000000000000000000000000000000000000000000
4086 #*0000000000000000000000000000000000000000000000000000000000000000
4087 #*0000000000000000000000000000000000000000000000000000000000000000
4088 #*0000000000000000000000000000000000000000000000000000000000000000
4089 #*0000000000000000000000000000000000000000000000000000000000000000
4090 #*0000000000000000000000000000000000000000000000000000000000000000
4091 #*0000000000000000000000000000000000000000000000000000000000000000
4092 #*0000000000000000000000000000000000000000000000000000000000000000
4093 #*0000000000000000000000000000000000000000000000000000000000000000
4094 #*0000000000000000000000000000000000000000000000000000000000000000
4095 #*0000000000000000000000000000000000000000000000000000000000000000
4096 #*0000000000000000000000000000000000000000000000000000000000000000
4097 #*0000000000000000000000000000000000000000000000000000000000000000
4098 #*0000000000000000000000000000000000000000000000000000000000000000
4099 #*0000000000000000000000000000000000000000000000000000000000000000
4100 ;; After iota:
4101 #*1000000000000000000000000000000000000000000000000000000000000000
4102 #*0000000000000000000000000000000000000000000000000000000000000000
4103 #*0000000000000000000000000000000000000000000000000000000000000000
4104 #*0000000000000000000000000000000000000000000000000000000000000000
4105 #*0000000000000000000000000000000000000000000000000000000000000000
4106 #*0000000000000000000000000000000000000000000000000000000000000000
4107 #*0000000000000000000000000000000000000000000000000000000000000000
4108 #*0000000000000000000000000000000000000000000000000000000000000000
4109 #*0000000000000000000000000000000000000000000000000000000000000000
4110 #*0000000000000000000000000000000000000000000000000000000000000000
4111 #*0000000000000000000000000000000000000000000000000000000000000000
4112 #*0000000000000000000000000000000000000000000000000000000000000000
4113 #*0000000000000000000000000000000000000000000000000000000000000000
4114 #*0000000000000000000000000000000000000000000000000000000000000000
4115 #*0000000000000000000000000000000000000000000000000000000000000000
4116 #*0000000000000000000000000000000000000000000000000000000000000000
4117 #*0000000000000000000000000000000000000000000000000000000000000000
4118 #*0000000000000000000000000000000000000000000000000000000000000000
4119 #*0000000000000000000000000000000000000000000000000000000000000000
4120 #*0000000000000000000000000000000000000000000000000000000000000000
4121 #*0000000000000000000000000000000000000000000000000000000000000000
4122 #*0000000000000000000000000000000000000000000000000000000000000000
4123 #*0000000000000000000000000000000000000000000000000000000000000000
4124 #*0000000000000000000000000000000000000000000000000000000000000000
4125 #*0000000000000000000000000000000000000000000000000000000000000000
4126
4127 ;; Round 1
4128
4129 ;; After theta:
4130 #*1000000000000000000000000000000000000000000000000000000000000000
4131 #*1000000000000000000000000000000000000000000000000000000000000000
4132 #*0000000000000000000000000000000000000000000000000000000000000000
4133 #*0000000000000000000000000000000000000000000000000000000000000000
4134 #*0100000000000000000000000000000000000000000000000000000000000000
4135 #*0000000000000000000000000000000000000000000000000000000000000000
4136 #*1000000000000000000000000000000000000000000000000000000000000000
4137 #*0000000000000000000000000000000000000000000000000000000000000000
4138 #*0000000000000000000000000000000000000000000000000000000000000000
4139 #*0100000000000000000000000000000000000000000000000000000000000000
4140 #*0000000000000000000000000000000000000000000000000000000000000000
4141 #*1000000000000000000000000000000000000000000000000000000000000000
4142 #*0000000000000000000000000000000000000000000000000000000000000000
4143 #*0000000000000000000000000000000000000000000000000000000000000000
4144 #*0100000000000000000000000000000000000000000000000000000000000000
4145 #*0000000000000000000000000000000000000000000000000000000000000000
4146 #*1000000000000000000000000000000000000000000000000000000000000000
4147 #*0000000000000000000000000000000000000000000000000000000000000000
4148 #*0000000000000000000000000000000000000000000000000000000000000000
4149 #*0100000000000000000000000000000000000000000000000000000000000000
4150 #*0000000000000000000000000000000000000000000000000000000000000000
4151 #*1000000000000000000000000000000000000000000000000000000000000000
4152 #*0000000000000000000000000000000000000000000000000000000000000000
4153 #*0000000000000000000000000000000000000000000000000000000000000000
4154 #*0100000000000000000000000000000000000000000000000000000000000000
4155 ;; After rho:
4156 #*1000000000000000000000000000000000000000000000000000000000000000
4157 #*0100000000000000000000000000000000000000000000000000000000000000
4158 #*0000000000000000000000000000000000000000000000000000000000000000
4159 #*0000000000000000000000000000000000000000000000000000000000000000
4160 #*0000000000000000000000000000100000000000000000000000000000000000
4161 #*0000000000000000000000000000000000000000000000000000000000000000
4162 #*0000000000000000000000000000000000000000000010000000000000000000
4163 #*0000000000000000000000000000000000000000000000000000000000000000
4164 #*0000000000000000000000000000000000000000000000000000000000000000
4165 #*0000000000000000000001000000000000000000000000000000000000000000
4166 #*0000000000000000000000000000000000000000000000000000000000000000
4167 #*0000000000100000000000000000000000000000000000000000000000000000
4168 #*0000000000000000000000000000000000000000000000000000000000000000
4169 #*0000000000000000000000000000000000000000000000000000000000000000
4170 #*0000000000000000000000000000000000000000100000000000000000000000
4171 #*0000000000000000000000000000000000000000000000000000000000000000
4172 #*0000000000000000000000000000000000000000000001000000000000000000
4173 #*0000000000000000000000000000000000000000000000000000000000000000
4174 #*0000000000000000000000000000000000000000000000000000000000000000
4175 #*0000000001000000000000000000000000000000000000000000000000000000
4176 #*0000000000000000000000000000000000000000000000000000000000000000
4177 #*0010000000000000000000000000000000000000000000000000000000000000
4178 #*0000000000000000000000000000000000000000000000000000000000000000
4179 #*0000000000000000000000000000000000000000000000000000000000000000
4180 #*0000000000000001000000000000000000000000000000000000000000000000
4181 ;; After pi:
4182 #*1000000000000000000000000000000000000000000000000000000000000000
4183 #*0000000000000000000000000000000000000000000010000000000000000000
4184 #*0000000000000000000000000000000000000000000000000000000000000000
4185 #*0000000000000000000000000000000000000000000000000000000000000000
4186 #*0000000000000001000000000000000000000000000000000000000000000000
4187 #*0000000000000000000000000000000000000000000000000000000000000000
4188 #*0000000000000000000001000000000000000000000000000000000000000000
4189 #*0000000000000000000000000000000000000000000000000000000000000000
4190 #*0000000000000000000000000000000000000000000001000000000000000000
4191 #*0000000000000000000000000000000000000000000000000000000000000000
4192 #*0100000000000000000000000000000000000000000000000000000000000000
4193 #*0000000000000000000000000000000000000000000000000000000000000000
4194 #*0000000000000000000000000000000000000000000000000000000000000000
4195 #*0000000001000000000000000000000000000000000000000000000000000000
4196 #*0000000000000000000000000000000000000000000000000000000000000000
4197 #*0000000000000000000000000000100000000000000000000000000000000000
4198 #*0000000000000000000000000000000000000000000000000000000000000000
4199 #*0000000000100000000000000000000000000000000000000000000000000000
4200 #*0000000000000000000000000000000000000000000000000000000000000000
4201 #*0000000000000000000000000000000000000000000000000000000000000000
4202 #*0000000000000000000000000000000000000000000000000000000000000000
4203 #*0000000000000000000000000000000000000000000000000000000000000000
4204 #*0000000000000000000000000000000000000000100000000000000000000000
4205 #*0000000000000000000000000000000000000000000000000000000000000000
4206 #*0010000000000000000000000000000000000000000000000000000000000000
4207 ;; After chi:
4208 #*1000000000000000000000000000000000000000000000000000000000000000
4209 #*0000000000000000000000000000000000000000000010000000000000000000
4210 #*0000000000000001000000000000000000000000000000000000000000000000
4211 #*1000000000000000000000000000000000000000000000000000000000000000
4212 #*0000000000000001000000000000000000000000000010000000000000000000
4213 #*0000000000000000000000000000000000000000000000000000000000000000
4214 #*0000000000000000000001000000000000000000000001000000000000000000
4215 #*0000000000000000000000000000000000000000000000000000000000000000
4216 #*0000000000000000000000000000000000000000000001000000000000000000
4217 #*0000000000000000000001000000000000000000000000000000000000000000
4218 #*0100000000000000000000000000000000000000000000000000000000000000
4219 #*0000000001000000000000000000000000000000000000000000000000000000
4220 #*0000000000000000000000000000000000000000000000000000000000000000
4221 #*0100000001000000000000000000000000000000000000000000000000000000
4222 #*0000000000000000000000000000000000000000000000000000000000000000
4223 #*0000000000100000000000000000100000000000000000000000000000000000
4224 #*0000000000000000000000000000000000000000000000000000000000000000
4225 #*0000000000100000000000000000000000000000000000000000000000000000
4226 #*0000000000000000000000000000100000000000000000000000000000000000
4227 #*0000000000000000000000000000000000000000000000000000000000000000
4228 #*0000000000000000000000000000000000000000100000000000000000000000
4229 #*0000000000000000000000000000000000000000000000000000000000000000
4230 #*0010000000000000000000000000000000000000100000000000000000000000
4231 #*0000000000000000000000000000000000000000000000000000000000000000
4232 #*0010000000000000000000000000000000000000000000000000000000000000
4233 ;; After iota:
4234 #*1100000100000001000000000000000000000000000000000000000000000000
4235 #*0000000000000000000000000000000000000000000010000000000000000000
4236 #*0000000000000001000000000000000000000000000000000000000000000000
4237 #*1000000000000000000000000000000000000000000000000000000000000000
4238 #*0000000000000001000000000000000000000000000010000000000000000000
4239 #*0000000000000000000000000000000000000000000000000000000000000000
4240 #*0000000000000000000001000000000000000000000001000000000000000000
4241 #*0000000000000000000000000000000000000000000000000000000000000000
4242 #*0000000000000000000000000000000000000000000001000000000000000000
4243 #*0000000000000000000001000000000000000000000000000000000000000000
4244 #*0100000000000000000000000000000000000000000000000000000000000000
4245 #*0000000001000000000000000000000000000000000000000000000000000000
4246 #*0000000000000000000000000000000000000000000000000000000000000000
4247 #*0100000001000000000000000000000000000000000000000000000000000000
4248 #*0000000000000000000000000000000000000000000000000000000000000000
4249 #*0000000000100000000000000000100000000000000000000000000000000000
4250 #*0000000000000000000000000000000000000000000000000000000000000000
4251 #*0000000000100000000000000000000000000000000000000000000000000000
4252 #*0000000000000000000000000000100000000000000000000000000000000000
4253 #*0000000000000000000000000000000000000000000000000000000000000000
4254 #*0000000000000000000000000000000000000000100000000000000000000000
4255 #*0000000000000000000000000000000000000000000000000000000000000000
4256 #*0010000000000000000000000000000000000000100000000000000000000000
4257 #*0000000000000000000000000000000000000000000000000000000000000000
4258 #*0010000000000000000000000000000000000000000000000000000000000000
4259
4260 ;; Round 2
4261
4262 ;; After theta:
4263 #*1110000100100000000001100000000000000000000011100000000000000000
4264 #*1001000100110001100000000000100000000000110010000000000000000000
4265 #*0110000001100001000001000000010000000000000011100000000000000000
4266 #*1011000000100001100000100000000000000000100001000000000000000000
4267 #*1000000011010001100000000000110000000000010011000000000000000000
4268 #*0010000000100001000001100000000000000000000011100000000000000000
4269 #*1001000100110001100001000000100000000000110001000000000000000000
4270 #*0110000001100000000001000000010000000000000011100000000000000000
4271 #*0011000000100001100000100000000000000000100000000000000000000000
4272 #*1000000011010000100001000000110000000000010001000000000000000000
4273 #*0110000000100001000001100000000000000000000011100000000000000000
4274 #*1001000101110001100000000000100000000000110000000000000000000000
4275 #*0110000001100000000001000000010000000000000011100000000000000000
4276 #*0111000001100001100000100000000000000000100001000000000000000000
4277 #*1000000011010000100000000000110000000000010001000000000000000000
4278 #*0010000000000001000001100000100000000000000011100000000000000000
4279 #*1001000100110001100000000000100000000000110000000000000000000000
4280 #*0110000001000000000001000000010000000000000011100000000000000000
4281 #*0011000000100001100000100000100000000000100001000000000000000000
4282 #*1000000011010000100000000000110000000000010001000000000000000000
4283 #*0010000000100001000001100000000000000000100011100000000000000000
4284 #*1001000100110001100000000000100000000000110000000000000000000000
4285 #*0100000001100000000001000000010000000000100011100000000000000000
4286 #*0011000000100001100000100000000000000000100001000000000000000000
4287 #*1010000011010000100000000000110000000000010001000000000000000000
4288 ;; After rho:
4289 #*1110000100100000000001100000000000000000000011100000000000000000
4290 #*0100100010011000110000000000010000000000011001000000000000000000
4291 #*1000000110000100000100000001000000000000001110000000000000000001
4292 #*0000100001000000000000000000101100000010000110000010000000000000
4293 #*0000100110000000000000000001000000011010001100000000000110000000
4294 #*0000000000000000111000000000000000000010000000100001000001100000
4295 #*0100000010000000000011000100000000000000000010010001001100011000
4296 #*0000000110000001100000000001000000010000000000000011100000000000
4297 #*0100001100000100000000000000000100000000000000000000000001100000
4298 #*0100000000000000000010000000110100001000010000001100000000000100
4299 #*0000110000000100001000001100000000000000000000011100000000000000
4300 #*0000000000100100010111000110000000000010000000000011000000000000
4301 #*1000000010000000000000011100000000000000000011000000110000000000
4302 #*0100001000000000000000000011100000110000110000010000000000000000
4303 #*0001100000000000100010000000000000000001000000011010000100000000
4304 #*0000010000000000000001110000000000000000000100000000000010000011
4305 #*0000000001000000000001100000000000000000000001001000100110001100
4306 #*0000000000000000110000001000000000001000000010000000000000011100
4307 #*0010000000000000000000011000000100001100000100000100000000000100
4308 #*0000000010000000110100001000000000001100000000000100010000000000
4309 #*1000000000000000000010000000100001000001100000000000000000100011
4310 #*0010010001001100011000000000001000000000001100000000000000000000
4311 #*0000001100000000001000000010000000000100011100000000000000000010
4312 #*0010000110000010000000000000000010000100000000000000000000110000
4313 #*0000000000000010100000110100001000000000001100000000000100010000
4314 ;; After pi:
4315 #*1110000100100000000001100000000000000000000011100000000000000000
4316 #*0100000010000000000011000100000000000000000010010001001100011000
4317 #*1000000010000000000000011100000000000000000011000000110000000000
4318 #*0010000000000000000000011000000100001100000100000100000000000100
4319 #*0000000000000010100000110100001000000000001100000000000100010000
4320 #*0000100001000000000000000000101100000010000110000010000000000000
4321 #*0100000000000000000010000000110100001000010000001100000000000100
4322 #*0000110000000100001000001100000000000000000000011100000000000000
4323 #*0000000001000000000001100000000000000000000001001000100110001100
4324 #*0000001100000000001000000010000000000100011100000000000000000010
4325 #*0100100010011000110000000000010000000000011001000000000000000000
4326 #*0000000110000001100000000001000000010000000000000011100000000000
4327 #*0100001000000000000000000011100000110000110000010000000000000000
4328 #*0000000010000000110100001000000000001100000000000100010000000000
4329 #*1000000000000000000010000000100001000001100000000000000000100011
4330 #*0000100110000000000000000001000000011010001100000000000110000000
4331 #*0000000000000000111000000000000000000010000000100001000001100000
4332 #*0000000000100100010111000110000000000010000000000011000000000000
4333 #*0000000000000000110000001000000000001000000010000000000000011100
4334 #*0010000110000010000000000000000010000100000000000000000000110000
4335 #*1000000110000100000100000001000000000000001110000000000000000001
4336 #*0100001100000100000000000000000100000000000000000000000001100000
4337 #*0001100000000000100010000000000000000001000000011010000100000000
4338 #*0000010000000000000001110000000000000000000100000000000010000011
4339 #*0010010001001100011000000000001000000000001100000000000000000000
4340 ;; After chi:
4341 #*0110000100100000000001111000000000000000000010100000110000000000
4342 #*0110000010000000000011000100000100001100000110010101001100011100
4343 #*1000000010000010100000111000001000000000001011000000110100010000
4344 #*1100000100100000000001011000000100001100000111100100000000000100
4345 #*0000000010000010100010110000001000000000001100010001001000001000
4346 #*0000010001000100001000001100101100000010000110010010000000000000
4347 #*0100000001000000000011100000110100001000010001001100100110001000
4348 #*0000111100000100000000001110000000000100011100011100000000000010
4349 #*0000100000000000000001100000101100000010000011001010100110001100
4350 #*0100001100000000001010000010010000001100001100001100000000000110
4351 #*0000101010011000110000000010110000100000101001010000000000000000
4352 #*0000000100000001010100001001000000011100000000000111110000000000
4353 #*1100001000000000000010000011000001110001010000010000000000100011
4354 #*0100100000011000000100001000010000001100011001000100010000000000
4355 #*1000000100000001000010000001100001010001100000000011100000100011
4356 #*0000100110100100000111000111000000011010001100000010000110000000
4357 #*0000000000000000011000001000000000001010000010100001000001111100
4358 #*0010000110100110010111000110000010000110000000000011000000100000
4359 #*0000100000000000110000001001000000010010001110000000000110011100
4360 #*0010000110000010111000000000000010000100000000100001000001010000
4361 #*1001100110000100100110000001000000000001001110011010000100000001
4362 #*0100011100000100000001110000000100000000000100000000000011100011
4363 #*0011100001001100111010000000001000000001001000011010000100000000
4364 #*1000010110000000000101110001000000000000000110000000000010000010
4365 #*0110011001001100011000000000001100000000001100000000000001100000
4366 ;; After iota:
4367 #*0011000000100001000001111000000000000000000010100000110000000001
4368 #*0110000010000000000011000100000100001100000110010101001100011100
4369 #*1000000010000010100000111000001000000000001011000000110100010000
4370 #*1100000100100000000001011000000100001100000111100100000000000100
4371 #*0000000010000010100010110000001000000000001100010001001000001000
4372 #*0000010001000100001000001100101100000010000110010010000000000000
4373 #*0100000001000000000011100000110100001000010001001100100110001000
4374 #*0000111100000100000000001110000000000100011100011100000000000010
4375 #*0000100000000000000001100000101100000010000011001010100110001100
4376 #*0100001100000000001010000010010000001100001100001100000000000110
4377 #*0000101010011000110000000010110000100000101001010000000000000000
4378 #*0000000100000001010100001001000000011100000000000111110000000000
4379 #*1100001000000000000010000011000001110001010000010000000000100011
4380 #*0100100000011000000100001000010000001100011001000100010000000000
4381 #*1000000100000001000010000001100001010001100000000011100000100011
4382 #*0000100110100100000111000111000000011010001100000010000110000000
4383 #*0000000000000000011000001000000000001010000010100001000001111100
4384 #*0010000110100110010111000110000010000110000000000011000000100000
4385 #*0000100000000000110000001001000000010010001110000000000110011100
4386 #*0010000110000010111000000000000010000100000000100001000001010000
4387 #*1001100110000100100110000001000000000001001110011010000100000001
4388 #*0100011100000100000001110000000100000000000100000000000011100011
4389 #*0011100001001100111010000000001000000001001000011010000100000000
4390 #*1000010110000000000101110001000000000000000110000000000010000010
4391 #*0110011001001100011000000000001100000000001100000000000001100000
4392
4393 ;; Round 3
4394
4395 ;; After theta:
4396 #*0000011000001110101101100001001101010000100110100000110100011001
4397 #*0110010001101011011100001101111001001100101110000101000110010100
4398 #*1110000000011011110101001001100000011010010000001010110101010000
4399 #*0101011111101010101011110010111100010010111110101110000100011011
4400 #*0101101101010100111111100000111110001100101110000110100011011110
4401 #*0011001001101011100100010101100001010010100010010010000100011000
4402 #*0100010010101011011100101001001001001000111001011100101100000000
4403 #*0110111110011101010101111111101000011110000111010110000001000010
4404 #*1001111011001010101011001010010100011100111010000000100010010011
4405 #*0001100011010110010111010010100110000000101110011011101011010000
4406 #*0011110010110111011100011011111101110000001101010000000100011000
4407 #*0000010111101010001011000000111101011100101000010111111010001000
4408 #*1010001010011001010111110010101001101011001011011010000001100011
4409 #*1101111011010010101110100010101000010010100000001110010100011111
4410 #*1101101011010111011111010001010111011101000010010100001011110101
4411 #*0011111110001011101011011110001101001010101000000010000010011000
4412 #*0000010011101011000111000001111101001010101010110001001011110100
4413 #*0100000100111111000010110111101010011100011011001001000001100000
4414 #*1001111011001010011010100011111000001100110111001010000010000011
4415 #*0111101001010100100101010000110100001000100010110110101010000110
4416 #*1010111110101011001010011000001101010001101010011010000000011001
4417 #*0100001111101111011110111001111001000000101100010000001001101011
4418 #*0101100011010101101111110001100000011011010011010000000101000000
4419 #*0001001101001010101111011011111000011110111111001010000110011101
4420 #*0011110110011010000101010000111010001100101110010111101010110110
4421 ;; After rho:
4422 #*0000011000001110101101100001001101010000100110100000110100011001
4423 #*0011001000110101101110000110111100100110010111000010100011001010
4424 #*1000000001101111010100100110000001101001000000101011010101000011
4425 #*0010111110101110000100011011010101111110101010101111001011110001
4426 #*1001011100001101000110111100101101101010100111111100000111110001
4427 #*1000010100101000100100100001000110000011001001101011100100010101
4428 #*0010100100100100100011100101110010110000000001000100101010110111
4429 #*0000100110111110011101010101111111101000011110000111010110000001
4430 #*1001010101011001010010100011100111010000000100010010011100111101
4431 #*1001101110101101000000011000110101100101110100101001100000001011
4432 #*0000011110010110111011100011011111101110000001101010000000100011
4433 #*1010001000000001011110101000101100000011110101110010100001011111
4434 #*1110010101001101011001011011010000001100011101000101001100101011
4435 #*0100000001110010100011111110111101101001010111010001010100001001
4436 #*0010101110111010000100101000010111101011101101011010111011111010
4437 #*1111000110100101010100000001000001001100000111111100010111010110
4438 #*1110000011111010010101010101100010010111101000000010011101011000
4439 #*0010000011000000100000100111111000010110111101010011100011011001
4440 #*1110010100000100000111001111011001010011010100011111000001100110
4441 #*1000011001111010010101001001010100001101000010001000101101101010
4442 #*0110100000000110011010111110101011001010011000001101010001101010
4443 #*1101000011111011110111101110011110010000001011000100000010011010
4444 #*1100011010101101111110001100000011011010011010000000101000000010
4445 #*0100101010111101101111100001111011111100101000011001110100010011
4446 #*1110101011011000111101100110100001010100001110100011001011100101
4447 ;; After pi:
4448 #*0000011000001110101101100001001101010000100110100000110100011001
4449 #*0010100100100100100011100101110010110000000001000100101010110111
4450 #*1110010101001101011001011011010000001100011101000101001100101011
4451 #*1110010100000100000111001111011001010011010100011111000001100110
4452 #*1110101011011000111101100110100001010100001110100011001011100101
4453 #*0010111110101110000100011011010101111110101010101111001011110001
4454 #*1001101110101101000000011000110101100101110100101001100000001011
4455 #*0000011110010110111011100011011111101110000001101010000000100011
4456 #*1110000011111010010101010101100010010111101000000010011101011000
4457 #*1100011010101101111110001100000011011010011010000000101000000010
4458 #*0011001000110101101110000110111100100110010111000010100011001010
4459 #*0000100110111110011101010101111111101000011110000111010110000001
4460 #*0100000001110010100011111110111101101001010111010001010100001001
4461 #*1000011001111010010101001001010100001101000010001000101101101010
4462 #*0110100000000110011010111110101011001010011000001101010001101010
4463 #*1001011100001101000110111100101101101010100111111100000111110001
4464 #*1000010100101000100100100001000110000011001001101011100100010101
4465 #*1010001000000001011110101000101100000011110101110010100001011111
4466 #*0010000011000000100000100111111000010110111101010011100011011001
4467 #*0100101010111101101111100001111011111100101000011001110100010011
4468 #*1000000001101111010100100110000001101001000000101011010101000011
4469 #*1001010101011001010010100011100111010000000100010010011100111101
4470 #*0010101110111010000100101000010111101011101101011010111011111010
4471 #*1111000110100101010100000001000001001100000111111100010111010110
4472 #*1101000011111011110111101110011110010000001011000100000010011010
4473 ;; After chi:
4474 #*1100001001000111110101111011001101011100111010100001110000010001
4475 #*0010100100100100100101100001111011100011000001011110101011110011
4476 #*1110111110010101100001111011110000001000010111100101000110101010
4477 #*1110000100000010000111001110010101010011110100011111110101111110
4478 #*1100001111111000111111100010010011110100001111100111000001000011
4479 #*0010101110111100111111111000011111110100101011101101001011010001
4480 #*0111101111000101000100001100010101110100011100101001111101010011
4481 #*0000000110010011010001101011011110100110010011101010100000100001
4482 #*1100100111111000010101000110110110110011001000101101011110101001
4483 #*0101011010101100111110001100100011011011001110000000001000001000
4484 #*0111001001110101001100101100111100100111010110010010100011000010
4485 #*1000111110110110001001010100111111101100011110001111111111100011
4486 #*0010100001110110101001001000010110101011001111010100000100001001
4487 #*1001010001001011110001001001000000101001000101001010001111101010
4488 #*0110000110001100001011101111101000000010010000001000000101101011
4489 #*1011010100001100011100110100000101101010010011101100000110111011
4490 #*1000010111101000000100100110010110010111000001101010100110010101
4491 #*1110100000111100010001101000101111101011110101111010110101011101
4492 #*1011010111000000100000111011111100010100111010110111100000111001
4493 #*0100101010011101001111100000111001111101100000011010010100010111
4494 #*1010101011001101010000101110010001000010101001100011110110000001
4495 #*0100010101011100000010100010100111010100000110110110011000111001
4496 #*0010101111100000100111000110001001111011100101011010111011110010
4497 #*1111000110100001010100000001000000100101000111010111000010010111
4498 #*1100010111101011110101101111111000000000001111010100001010100110
4499 ;; After iota:
4500 #*1100001001000110110101111011001001011100111010100001110000010000
4501 #*0010100100100100100101100001111011100011000001011110101011110011
4502 #*1110111110010101100001111011110000001000010111100101000110101010
4503 #*1110000100000010000111001110010101010011110100011111110101111110
4504 #*1100001111111000111111100010010011110100001111100111000001000011
4505 #*0010101110111100111111111000011111110100101011101101001011010001
4506 #*0111101111000101000100001100010101110100011100101001111101010011
4507 #*0000000110010011010001101011011110100110010011101010100000100001
4508 #*1100100111111000010101000110110110110011001000101101011110101001
4509 #*0101011010101100111110001100100011011011001110000000001000001000
4510 #*0111001001110101001100101100111100100111010110010010100011000010
4511 #*1000111110110110001001010100111111101100011110001111111111100011
4512 #*0010100001110110101001001000010110101011001111010100000100001001
4513 #*1001010001001011110001001001000000101001000101001010001111101010
4514 #*0110000110001100001011101111101000000010010000001000000101101011
4515 #*1011010100001100011100110100000101101010010011101100000110111011
4516 #*1000010111101000000100100110010110010111000001101010100110010101
4517 #*1110100000111100010001101000101111101011110101111010110101011101
4518 #*1011010111000000100000111011111100010100111010110111100000111001
4519 #*0100101010011101001111100000111001111101100000011010010100010111
4520 #*1010101011001101010000101110010001000010101001100011110110000001
4521 #*0100010101011100000010100010100111010100000110110110011000111001
4522 #*0010101111100000100111000110001001111011100101011010111011110010
4523 #*1111000110100001010100000001000000100101000111010111000010010111
4524 #*1100010111101011110101101111111000000000001111010100001010100110
4525
4526 ;; Round 4
4527
4528 ;; After theta:
4529 #*0011011100011001110010101011100000010000000110010010101001110110
4530 #*0010111110111100111000101111001010001110010001110010110101011100
4531 #*0000111000011110000100111011111111001100010001001101010010001100
4532 #*0101100101111001110000111111000111101110110000110100110000011011
4533 #*1111100100001111101101000011110011011111110101010111110011001100
4534 #*1101111011100011111000101000110110111000010111011110010010110111
4535 #*0111110101011101011001000010100100011001001100000101100011111100
4536 #*1110000000011000110100101011010001100010010101000010110100000111
4537 #*0111000110000011100010110111100100001110001100000110011011001100
4538 #*0110110001011011101100101101000011110000110100110000111010000111
4539 #*1000011100101010001011111100010101101011101010100001111010100100
4540 #*1000100100101110010100011010001110000001001110100011100001001100
4541 #*1100100111111101001100001000011001101111001001111100010000101111
4542 #*0010110000110000000110111000010010010100000001100001001010001111
4543 #*0101101101111011011001001110001000101001101010111000110111100100
4544 #*0100000001010011011011100100101100100110101111011111011111011101
4545 #*1000001101110000011001101000100111111010010001000110111000111010
4546 #*0000100110110111110100101000100000101111110011010010100001111011
4547 #*0000110110111011010111001010101110101001111110011100100101011100
4548 #*0111000001101010011101000001011001010110011010101010100110011000
4549 #*0101111110010010010111111110111000001110010101010000101111100111
4550 #*0100001111000100011111101100010110111001010110011010000110010110
4551 #*1100101001101011000010000110000110111111100011110010101111010100
4552 #*0100100111011010100011110000010010011000000011111100000111110010
4553 #*1111111100011100100111001110011000101011110101100100111000101001
4554 ;; After rho:
4555 #*0011011100011001110010101011100000010000000110010010101001110110
4556 #*0001011111011110011100010111100101000111001000111001011010101110
4557 #*0011100001111000010011101111111100110001000100110101001000110000
4558 #*1110110000110100110000011011010110010111100111000011111100011110
4559 #*1111101010101111100110011001111100100001111101101000011110011011
4560 #*1101101110000101110111100100101101111101111011100011111000101000
4561 #*0100001010010001100100110000010110001111110001111101010111010110
4562 #*0001111110000000011000110100101011010001100010010101000010110100
4563 #*0000011100010110111100100001110001100000110011011001100011100011
4564 #*0011000011101000011101101100010110111011001011010000111100001101
4565 #*1001000011100101010001011111100010101101011101010100001111010100
4566 #*0001001100100010010010111001010001101000111000000100111010001110
4567 #*0001000011001101111001001111100010000101111110010011111110100110
4568 #*0000001100001001010001111001011000011000000011011100001001001010
4569 #*1100010001010011010101110001101111001000101101101111011011001001
4570 #*0010010110010011010111101111101111101110101000000010100110110111
4571 #*0011010001001111110100100010001101110001110101000001101110000011
4572 #*0101000011110110000100110110111110100101000100000101111110011010
4573 #*1100111001001010111000000110110111011010111001010101110101001111
4574 #*1001100001110000011010100111010000010110010101100110101010101001
4575 #*0100001011111001110101111110010010010111111110111000001110010101
4576 #*1001000011110001000111111011000101101110010101100110100001100101
4577 #*0101001101011000010000110000110111111100011110010101111010100110
4578 #*1101101010001111000001001001100000001111110000011111001001001001
4579 #*0011100010100111111111000111001001110011100110001010111101011001
4580 ;; After pi:
4581 #*0011011100011001110010101011100000010000000110010010101001110110
4582 #*0100001010010001100100110000010110001111110001111101010111010110
4583 #*0001000011001101111001001111100010000101111110010011111110100110
4584 #*1100111001001010111000000110110111011010111001010101110101001111
4585 #*0011100010100111111111000111001001110011100110001010111101011001
4586 #*1110110000110100110000011011010110010111100111000011111100011110
4587 #*0011000011101000011101101100010110111011001011010000111100001101
4588 #*1001000011100101010001011111100010101101011101010100001111010100
4589 #*0011010001001111110100100010001101110001110101000001101110000011
4590 #*0101001101011000010000110000110111111100011110010101111010100110
4591 #*0001011111011110011100010111100101000111001000111001011010101110
4592 #*0001111110000000011000110100101011010001100010010101000010110100
4593 #*0000001100001001010001111001011000011000000011011100001001001010
4594 #*1001100001110000011010100111010000010110010101100110101010101001
4595 #*0100001011111001110101111110010010010111111110111000001110010101
4596 #*1111101010101111100110011001111100100001111101101000011110011011
4597 #*1101101110000101110111100100101101111101111011100011111000101000
4598 #*0001001100100010010010111001010001101000111000000100111010001110
4599 #*0101000011110110000100110110111110100101000100000101111110011010
4600 #*1101101010001111000001001001100000001111110000011111001001001001
4601 #*0011100001111000010011101111111100110001000100110101001000110000
4602 #*0000011100010110111100100001110001100000110011011001100011100011
4603 #*1100010001010011010101110001101111001000101101101111011011001001
4604 #*0010010110010011010111101111101111101110101000000010100110110111
4605 #*1001000011110001000111111011000101101110010101100110100001100101
4606 ;; After chi:
4607 #*0010011101010101101011100100000000010000001000010000000001010110
4608 #*1000110010010011100100110000000011010101110000111001010110011111
4609 #*0010000001101000111110001110101010100100111000011001110110110110
4610 #*1100100101010010111000101110010111011010111001000101110101101001
4611 #*0111100000100111111011010111011111111100010111100111101011011001
4612 #*0110110000110001110000001000110110010011110011000111111111001110
4613 #*0001010011100010111001001100011011101011101011010001011100001110
4614 #*1101001111110101010001001111010000100001010111000000011111110000
4615 #*1001100001101011010100101001001101110010010100000011101010011011
4616 #*0100001110010000011101010100110111010100010110000101111010100111
4617 #*0001011111010111011101011110110101001111001001110001010011100100
4618 #*1000011111110000010010110010101011010111110110110111100000010101
4619 #*0100000110000000110100100001011010011001101001000100001101011110
4620 #*1000110101110110010010100110110101010110010101100111111010000011
4621 #*0100101011111001110101011110011000000111011100111100001110000101
4622 #*1111101010001101100110000000101100100001111101101100011100011101
4623 #*1001101101010001110011100010000011111000111111100010111100111000
4624 #*1001100100101011010011110000010001100010001000011110111011001111
4625 #*0111000011010110100010100110100010000101001001100101101000001000
4626 #*1101101110001111010000101101100001010011110010011100101001101001
4627 #*1111100000111001010010111111110010111001001000010011010000111000
4628 #*0010011010010110111110101111110001000110110011011001000111010101
4629 #*0101010000110011010101100001101111001000111000001011011010001001
4630 #*0000110110011011000111101011010111111111101000010011101110100111
4631 #*1001011111110111101011111011000100101110100110101110000010100110
4632 ;; After iota:
4633 #*1111011001010100101011100100000000010000001000010000000001010110
4634 #*1000110010010011100100110000000011010101110000111001010110011111
4635 #*0010000001101000111110001110101010100100111000011001110110110110
4636 #*1100100101010010111000101110010111011010111001000101110101101001
4637 #*0111100000100111111011010111011111111100010111100111101011011001
4638 #*0110110000110001110000001000110110010011110011000111111111001110
4639 #*0001010011100010111001001100011011101011101011010001011100001110
4640 #*1101001111110101010001001111010000100001010111000000011111110000
4641 #*1001100001101011010100101001001101110010010100000011101010011011
4642 #*0100001110010000011101010100110111010100010110000101111010100111
4643 #*0001011111010111011101011110110101001111001001110001010011100100
4644 #*1000011111110000010010110010101011010111110110110111100000010101
4645 #*0100000110000000110100100001011010011001101001000100001101011110
4646 #*1000110101110110010010100110110101010110010101100111111010000011
4647 #*0100101011111001110101011110011000000111011100111100001110000101
4648 #*1111101010001101100110000000101100100001111101101100011100011101
4649 #*1001101101010001110011100010000011111000111111100010111100111000
4650 #*1001100100101011010011110000010001100010001000011110111011001111
4651 #*0111000011010110100010100110100010000101001001100101101000001000
4652 #*1101101110001111010000101101100001010011110010011100101001101001
4653 #*1111100000111001010010111111110010111001001000010011010000111000
4654 #*0010011010010110111110101111110001000110110011011001000111010101
4655 #*0101010000110011010101100001101111001000111000001011011010001001
4656 #*0000110110011011000111101011010111111111101000010011101110100111
4657 #*1001011111110111101011111011000100101110100110101110000010100110
4658
4659 ;; Round 5
4660
4661 ;; After theta:
4662 #*0001101001000001000010101110110101101001110001001110111101010110
4663 #*0011110000010111111000000101110001011010101100100100110101101001
4664 #*1101001010101111110001111011100110110001010101010110010110110000
4665 #*1010100011001100110001011010100011000101001011111011101010101101
4666 #*0001111010100110111001111101101011010010001101011100111000101011
4667 #*1000000000100100011001000010000011101010001010011001000011001110
4668 #*1010010001100110100101111001101001100100110111001100111111111000
4669 #*0010000100110010011110111010011100110100111010001111111111110110
4670 #*1111100111110101011101011101111001101101100110111101110101011111
4671 #*0010010100010001011111111110000011111010001100111110101001010101
4672 #*1111101111000010110100010100000000110110110000101111101111100100
4673 #*0011011101110100001110000111011001011000101010101010000011100011
4674 #*1011001101000111111011010100010110001100000100001011101101011000
4675 #*1110110011101000011011010010000001001001100111011001100101000111
4676 #*0010110001111000110111110100101100101001000110000111011101110111
4677 #*0001011010011000001111001010011001011000000100110010100000011101
4678 #*0010101111010101101111010111110001110111100011111111011111001110
4679 #*0110101111101100011100000101011101110111100101010001011011001001
4680 #*0001000101001000101011010010010110011010111011011011110111001100
4681 #*1011110100001110010010000111010101111101101000100111111010011011
4682 #*0001010000101100111011110101000111000000110001001101101100111000
4683 #*1001011000010010100010011010000011001001101111000100100100100011
4684 #*1010011011110100011010010100100011011101010101000100111010001111
4685 #*0110110000000101001110011111100011100000011010101101110001100011
4686 #*1111000101110110101001010001110000000000111100010101010001010100
4687 ;; After rho:
4688 #*0001101001000001000010101110110101101001110001001110111101010110
4689 #*1001111000001011111100000010111000101101010110010010011010110100
4690 #*0100101010111111000111101110011011000101010101011001011011000011
4691 #*0101001011111011101010101101101010001100110011000101101010001100
4692 #*0100011010111001110001010110001111010100110111001111101101011010
4693 #*0000111010100010100110010000110011101000000000100100011001000010
4694 #*0111100110100110010011011100110011111111100010100100011001101001
4695 #*1101100010000100110010011110111010011100110100111010001111111111
4696 #*1110101011101011101111001101101100110111101110101011111111110011
4697 #*0011111010100101010100100101000100010111111111100000111110100011
4698 #*1001111101111000010110100010100000000110110110000101111101111100
4699 #*0011100011001101110111010000111000011101100101100010101010101000
4700 #*1010100010110001100000100001011101101011000101100110100011111101
4701 #*1100111011001100101000111111011001110100001101101001000000100100
4702 #*1001011001010010001100001110111011101110010110001111000110111110
4703 #*0101001100101100000010011001010000001110100010110100110000011110
4704 #*1110101111100011101111000111111110111110011100010101111010101101
4705 #*0010110110010010110101111101100011100000101011101110111100101010
4706 #*0110110111101110011000001000101001000101011010010010110011010111
4707 #*1001101110111101000011100100100001110101011111011010001001111110
4708 #*0011011011001110000001010000101100111011110101000111000000110001
4709 #*1110010110000100101000100110100000110010011011110001001001001000
4710 #*0011011110100011010010100100011011101010101000100111010001111101
4711 #*0000010100111001111110001110000001101010110111000110001101101100
4712 #*0101000101010011110001011101101010010100011100000000001111000101
4713 ;; After pi:
4714 #*0001101001000001000010101110110101101001110001001110111101010110
4715 #*0111100110100110010011011100110011111111100010100100011001101001
4716 #*1010100010110001100000100001011101101011000101100110100011111101
4717 #*0110110111101110011000001000101001000101011010010010110011010111
4718 #*0101000101010011110001011101101010010100011100000000001111000101
4719 #*0101001011111011101010101101101010001100110011000101101010001100
4720 #*0011111010100101010100100101000100010111111111100000111110100011
4721 #*1001111101111000010110100010100000000110110110000101111101111100
4722 #*1110101111100011101111000111111110111110011100010101111010101101
4723 #*0011011110100011010010100100011011101010101000100111010001111101
4724 #*1001111000001011111100000010111000101101010110010010011010110100
4725 #*1101100010000100110010011110111010011100110100111010001111111111
4726 #*1100111011001100101000111111011001110100001101101001000000100100
4727 #*1001101110111101000011100100100001110101011111011010001001111110
4728 #*0011011011001110000001010000101100111011110101000111000000110001
4729 #*0100011010111001110001010110001111010100110111001111101101011010
4730 #*0000111010100010100110010000110011101000000000100100011001000010
4731 #*0011100011001101110111010000111000011101100101100010101010101000
4732 #*0010110110010010110101111101100011100000101011101110111100101010
4733 #*0000010100111001111110001110000001101010110111000110001101101100
4734 #*0100101010111111000111101110011011000101010101011001011011000011
4735 #*1110101011101011101111001101101100110111101110101011111111110011
4736 #*1001011001010010001100001110111011101110010110001111000110111110
4737 #*0101001100101100000010011001010000001110100010110100110000011110
4738 #*1110010110000100101000100110100000110010011011110001001001001000
4739 ;; After chi:
4740 #*1001101001010000100010001111111001101001110100001100011111000010
4741 #*0011110011101000001011010100010011111011111000110100001001101011
4742 #*1011100010100000000001110100011111111011000001100110101111111101
4743 #*0110011111101110011010101010111100101100111011011100000011000101
4744 #*0011000011110101100000001101101000000010011110100000001111101100
4745 #*1101001110100011101000101111001010001100110011000000101011010000
4746 #*0101111000100110111101100000011010101111110111110000111100100010
4747 #*1000101101111000000110000010100001000110010110100111111100101100
4748 #*1010101110111011000111001110011110111010001111010101010000101101
4749 #*0001101110100111000110100100011111111001100100000111000101011110
4750 #*1001100001000011110100100011111001001101011111010011011010110100
4751 #*1100100110110101110001011110011010011101100110101000000110100101
4752 #*1110101010001110101000101111010101111110101101101100000000100101
4753 #*0001001110111100111111100110110001110001011101001010010011111010
4754 #*0111011001001010000011001100101110101011010101101111000101111010
4755 #*0111011011110100100000010110000111000001010010001101001111110010
4756 #*0000101110110000100110111101110000001000001010101000001101000000
4757 #*0011100011100100111101010010111000010111110001100010101011101100
4758 #*0110111100010010110100101101101101110100101011100111011100111000
4759 #*0000110100111011111000001110110001000010110111100110011101101100
4760 #*0101111010101111000111101100001000001101000101011101011011001111
4761 #*1010101111000111101101011100101100110111001110011011001111110011
4762 #*0011001011010010100100101000011011011110001111001110001111111110
4763 #*0101100100010111000101010001001011001011100110111100100010011101
4764 #*0100010111000100000000100111000100000000110001010011101101111000
4765 ;; After iota:
4766 #*0001101001010000100010001111111101101001110100001100011111000010
4767 #*0011110011101000001011010100010011111011111000110100001001101011
4768 #*1011100010100000000001110100011111111011000001100110101111111101
4769 #*0110011111101110011010101010111100101100111011011100000011000101
4770 #*0011000011110101100000001101101000000010011110100000001111101100
4771 #*1101001110100011101000101111001010001100110011000000101011010000
4772 #*0101111000100110111101100000011010101111110111110000111100100010
4773 #*1000101101111000000110000010100001000110010110100111111100101100
4774 #*1010101110111011000111001110011110111010001111010101010000101101
4775 #*0001101110100111000110100100011111111001100100000111000101011110
4776 #*1001100001000011110100100011111001001101011111010011011010110100
4777 #*1100100110110101110001011110011010011101100110101000000110100101
4778 #*1110101010001110101000101111010101111110101101101100000000100101
4779 #*0001001110111100111111100110110001110001011101001010010011111010
4780 #*0111011001001010000011001100101110101011010101101111000101111010
4781 #*0111011011110100100000010110000111000001010010001101001111110010
4782 #*0000101110110000100110111101110000001000001010101000001101000000
4783 #*0011100011100100111101010010111000010111110001100010101011101100
4784 #*0110111100010010110100101101101101110100101011100111011100111000
4785 #*0000110100111011111000001110110001000010110111100110011101101100
4786 #*0101111010101111000111101100001000001101000101011101011011001111
4787 #*1010101111000111101101011100101100110111001110011011001111110011
4788 #*0011001011010010100100101000011011011110001111001110001111111110
4789 #*0101100100010111000101010001001011001011100110111100100010011101
4790 #*0100010111000100000000100111000100000000110001010011101101111000
4791
4792 ;; Round 6
4793
4794 ;; After theta:
4795 #*1000101000110001111001000110110110000000001011011110011000110001
4796 #*0010110010110011001001111100110110011010110101111011001000000011
4797 #*0100011101011010000100000000001010100001111110110101000001111001
4798 #*1011111001111101000010101111100010101111101011100011001011001101
4799 #*0110010111101100011111001111111101101000111101011111001100010110
4800 #*0100001111000010110011100110000001100101001100010010101100100011
4801 #*0100111001111101111111001000111111001110111010111111111101001010
4802 #*0111010010000010000011110110110100011100101001110100010010101000
4803 #*0111001000101000011111001011000000111001011111101010011000100101
4804 #*0100111010111110111001100110001010010011000111111000000110100100
4805 #*0000100000100010101111101010110010100100100000000001011101000111
4806 #*1101100111101110110011110110111111111100101011100111000111001101
4807 #*0001010101110100101101011011000000100100010010111111101110100001
4808 #*1100101000101111100111100011101111110010001101110101011011110010
4809 #*0010001101010011111100001110111011000001110110010000000110000000
4810 #*1110011010010101111011011111001100101000101101011111001000000001
4811 #*0001101111101011100100010101010101101001000111100111001100101000
4812 #*1100011100011110111000100110101101001101001110110001000101101000
4813 #*1011011010000001101100101000110011110111111011011000010100110000
4814 #*0101100000100010000111001100100100101000010100011001011110010110
4815 #*1100111011001110011100100101000011100100111010001111011100111100
4816 #*1011101110011100101111110100001001010110000011010100001110011011
4817 #*1100110100101000100001011100001110000100110000011101100001111010
4818 #*1000000010000100011101010100010101001000110110000011101010010101
4819 #*0001000011011101111111100101010001101010010010101100101110000010
4820 ;; After rho:
4821 #*1000101000110001111001000110110110000000001011011110011000110001
4822 #*1001011001011001100100111110011011001101011010111101100100000001
4823 #*0001110101101000010000000000101010000111111011010100000111100101
4824 #*1111101011100011001011001101101111100111110100001010111110001010
4825 #*0001111010111110011000101100110010111101100011111001111111101101
4826 #*0000011001010011000100101011001000110100001111000010110011100110
4827 #*1100100011111100111011101011111111110100101001001110011111011111
4828 #*1010000111010010000010000011110110110100011100101001110100010010
4829 #*0101000011111001011000000111001011111101010011000100101011100100
4830 #*1111100000011010010001001110101111101110011001100010100100110001
4831 #*1110000100000100010101111101010110010100100100000000001011101000
4832 #*0111001101110110011110111011001111011011111111110010101110011100
4833 #*1011011000000100100010010111111101110100001000101010111010010110
4834 #*0001101110101011011110010110010100010111110011110001110111111001
4835 #*1101110110000011101100100000001100000000010001101010011111100001
4836 #*1111100110010100010110101111100100000000111100110100101011110110
4837 #*1000101010101011010010001111001110011001010000001101111101011100
4838 #*0010001011010001100011100011110111000100110101101001101001110110
4839 #*0110110000101001100001011011010000001101100101000110011110111111
4840 #*1001011001011000001000100001110011001001001010000101000110010111
4841 #*0011110111001111001100111011001110011100100101000011100100111010
4842 #*1110111011100111001011111101000010010101100000110101000011100110
4843 #*0110100101000100001011100001110000100110000011101100001111010110
4844 #*1000010001110101010001010100100011011000001110101001010110000000
4845 #*0010111000001000010000110111011111111001010100011010100100101011
4846 ;; After pi:
4847 #*1000101000110001111001000110110110000000001011011110011000110001
4848 #*1100100011111100111011101011111111110100101001001110011111011111
4849 #*1011011000000100100010010111111101110100001000101010111010010110
4850 #*0110110000101001100001011011010000001101100101000110011110111111
4851 #*0010111000001000010000110111011111111001010100011010100100101011
4852 #*1111101011100011001011001101101111100111110100001010111110001010
4853 #*1111100000011010010001001110101111101110011001100010100100110001
4854 #*1110000100000100010101111101010110010100100100000000001011101000
4855 #*1000101010101011010010001111001110011001010000001101111101011100
4856 #*0110100101000100001011100001110000100110000011101100001111010110
4857 #*1001011001011001100100111110011011001101011010111101100100000001
4858 #*1010000111010010000010000011110110110100011100101001110100010010
4859 #*0001101110101011011110010110010100010111110011110001110111111001
4860 #*1001011001011000001000100001110011001001001010000101000110010111
4861 #*0011110111001111001100111011001110011100100101000011100100111010
4862 #*0001111010111110011000101100110010111101100011111001111111101101
4863 #*0000011001010011000100101011001000110100001111000010110011100110
4864 #*0111001101110110011110111011001111011011111111110010101110011100
4865 #*0010001011010001100011100011110111000100110101101001101001110110
4866 #*1000010001110101010001010100100011011000001110101001010110000000
4867 #*0001110101101000010000000000101010000111111011010100000111100101
4868 #*0101000011111001011000000111001011111101010011000100101011100100
4869 #*1101110110000011101100100000001100000000010001101010011111100001
4870 #*1111100110010100010110101111100100000000111100110100101011110110
4871 #*1110111011100111001011111101000010010101100000110101000011100110
4872 ;; After chi:
4873 #*1011110000110001111001010010110110000000001011111110111000110001
4874 #*1000000011010101111010100011111111111101001100001010011011110110
4875 #*1011010000000100110010110011110010000100011000110010011010010110
4876 #*1110110000011000001000011011110000001101101110000010000110101111
4877 #*0110111011000100010010011110010110001101110100011010100011100101
4878 #*1111101111100111001111111100111111110111010000001010110101000010
4879 #*1111001010110001010011001100100111100111001001101111010000100101
4880 #*1000000001000000011100011101100110110010100111100000001001101010
4881 #*0001100000001000010010000011000001011000100100001111001101010100
4882 #*0110100101011100011011100011110000101110001010001100001111100111
4883 #*1000110001110000111000101010011011001110111001101101100111101000
4884 #*0010010110000010000010100010010101111100010100101101110100010100
4885 #*0011001000101100011010001100011000000011010110110011010111010001
4886 #*0001010001001000101000100101100010001000010000111001000110010110
4887 #*0001110001001101001110111010101010101100100001000011110100101000
4888 #*0110111110011010000010111100110101110110010011001001110011110101
4889 #*0000011011010010100101101011111000110000001111001011110010000100
4890 #*1111011101010010001110101111001111000011110101110010111000011100
4891 #*0011100001011011101011001011100111100001010100111001000000011011
4892 #*1000010000110100010101010111101011011000000010101011010110000010
4893 #*1001000001101010110100100000101110000111111011111110010011100100
4894 #*0111000011101101001010001000101011111101111111010000001011110010
4895 #*1101101111100000100101110000001110010101010001101011011111100001
4896 #*1110100010011100000110101111001100000010100111110100101111110111
4897 #*1010111001110110000011111010000011101101100000110101101011100110
4898 ;; After iota:
4899 #*0011110100110000111001010010110010000000001011111110111000110000
4900 #*1000000011010101111010100011111111111101001100001010011011110110
4901 #*1011010000000100110010110011110010000100011000110010011010010110
4902 #*1110110000011000001000011011110000001101101110000010000110101111
4903 #*0110111011000100010010011110010110001101110100011010100011100101
4904 #*1111101111100111001111111100111111110111010000001010110101000010
4905 #*1111001010110001010011001100100111100111001001101111010000100101
4906 #*1000000001000000011100011101100110110010100111100000001001101010
4907 #*0001100000001000010010000011000001011000100100001111001101010100
4908 #*0110100101011100011011100011110000101110001010001100001111100111
4909 #*1000110001110000111000101010011011001110111001101101100111101000
4910 #*0010010110000010000010100010010101111100010100101101110100010100
4911 #*0011001000101100011010001100011000000011010110110011010111010001
4912 #*0001010001001000101000100101100010001000010000111001000110010110
4913 #*0001110001001101001110111010101010101100100001000011110100101000
4914 #*0110111110011010000010111100110101110110010011001001110011110101
4915 #*0000011011010010100101101011111000110000001111001011110010000100
4916 #*1111011101010010001110101111001111000011110101110010111000011100
4917 #*0011100001011011101011001011100111100001010100111001000000011011
4918 #*1000010000110100010101010111101011011000000010101011010110000010
4919 #*1001000001101010110100100000101110000111111011111110010011100100
4920 #*0111000011101101001010001000101011111101111111010000001011110010
4921 #*1101101111100000100101110000001110010101010001101011011111100001
4922 #*1110100010011100000110101111001100000010100111110100101111110111
4923 #*1010111001110110000011111010000011101101100000110101101011100110
4924
4925 ;; Round 7
4926
4927 ;; After theta:
4928 #*1001110001001011001010101111011001101111000110011100111110100110
4929 #*0010000011101111001101000101010100000100100000011000000000010101
4930 #*0000110110010010011001110001010000110000101101011101101101100111
4931 #*1101111000001001111111010011101111110011111101011111010111011000
4932 #*1000010011110000110001001011101000010111011000110100000100100001
4933 #*0101101010011100111100000001010100011000011101101000110011010100
4934 #*0101001010001011100100101010001100011110100101111101001011000110
4935 #*0011100111010110110111011111000100000110010010001111111110011011
4936 #*0010101000011001100101001011011110100110110111010010011100100011
4937 #*1000001101101000111000110110001110110100100110100010101000100011
4938 #*0010110100001011001011010111110000100001110100001111100001111110
4939 #*1000010110111000110101000100111110000101111000111111101111110111
4940 #*1000101110111010110001001110111010110111100011011100100000100000
4941 #*0010011001011001011111101101111101110110000011100100010111100001
4942 #*1111011001111001101101101111010100110110001101101101010011101100
4943 #*1100111011100001110001000001011110011001011110101011110101100011
4944 #*1010011011101000010010001101010011001001100011011001101001100111
4945 #*0100111011000100100101101101101101110111000000011101001111101101
4946 #*0000101001001010011100000011111000011111000111100100010001101100
4947 #*0110111000000000110110000010010101000010101110000101110001000110
4948 #*0011000100010001000111011101000101101000110110011100010101110010
4949 #*1101000011010111111101101110000000000100010011000010010000010001
4950 #*0110001001110110001110110010101100100001100100000100101000010000
4951 #*1101101010001101110001100111010011111100110100101001111110000000
4952 #*0100010001000010100000101111111101110111001100011011001100100010
4953 ;; After rho:
4954 #*1001110001001011001010101111011001101111000110011100111110100110
4955 #*1001000001110111100110100010101010000010010000001100000000001010
4956 #*0011011001001001100111000101000011000010110101110110110110011100
4957 #*0011111101011111010111011000110111100000100111111101001110111111
4958 #*1110110001101000001001000011000010011110000110001001011101000010
4959 #*0101000110000111011010001100110101000101101010011100111100000001
4960 #*0010101000110001111010010111110100101100011001010010100010111001
4961 #*0110110011100111010110110111011111000100000110010010001111111110
4962 #*0011001100101001011011110100110110111010010011100100011001010100
4963 #*1010001010100010001110000011011010001110001101100011101101001001
4964 #*1100010110100001011001011010111110000100001110100001111100001111
4965 #*1111110111100001011011100011010100010011111000010111100011111110
4966 #*1001110111010110111100011011100100000100000100010111011101011000
4967 #*0000011100100010111100001001001100101100101111110110111110111011
4968 #*1110101001101100011011011010100111011001111011001111001101101101
4969 #*0000101111001100101111010101111010110001111001110111000011100010
4970 #*0100011010100110010011000110110011010011001111010011011101000010
4971 #*1010011111011010100111011000100100101101101101101110111000000011
4972 #*1111001000100011011000000101001001010011100000011111000011111000
4973 #*0100011001101110000000001101100000100101010000101011100001011100
4974 #*0111000101011100100011000100010001000111011101000101101000110110
4975 #*0111010000110101111111011011100000000001000100110000100100000100
4976 #*0001001110110001110110010101100100001100100000100101000010000011
4977 #*1000110111000110011101001111110011010010100111111000000011011010
4978 #*1100110010001001000100010000101000001011111111011101110011000110
4979 ;; After pi:
4980 #*1001110001001011001010101111011001101111000110011100111110100110
4981 #*0010101000110001111010010111110100101100011001010010100010111001
4982 #*1001110111010110111100011011100100000100000100010111011101011000
4983 #*1111001000100011011000000101001001010011100000011111000011111000
4984 #*1100110010001001000100010000101000001011111111011101110011000110
4985 #*0011111101011111010111011000110111100000100111111101001110111111
4986 #*1010001010100010001110000011011010001110001101100011101101001001
4987 #*1100010110100001011001011010111110000100001110100001111100001111
4988 #*0100011010100110010011000110110011010011001111010011011101000010
4989 #*0001001110110001110110010101100100001100100000100101000010000011
4990 #*1001000001110111100110100010101010000010010000001100000000001010
4991 #*0110110011100111010110110111011111000100000110010010001111111110
4992 #*0000011100100010111100001001001100101100101111110110111110111011
4993 #*0100011001101110000000001101100000100101010000101011100001011100
4994 #*0111000101011100100011000100010001000111011101000101101000110110
4995 #*1110110001101000001001000011000010011110000110001001011101000010
4996 #*0101000110000111011010001100110101000101101010011100111100000001
4997 #*1111110111100001011011100011010100010011111000010111100011111110
4998 #*1010011111011010100111011000100100101101101101101110111000000011
4999 #*1000110111000110011101001111110011010010100111111000000011011010
5000 #*0011011001001001100111000101000011000010110101110110110110011100
5001 #*0011001100101001011011110100110110111010010011100100011001010100
5002 #*1110101001101100011011011010100111011001111011001111001101101101
5003 #*0000101111001100101111010101111010110001111001110111000011100010
5004 #*0111010000110101111111011011100000000001000100110000100100000100
5005 ;; After chi:
5006 #*0000100110001101001110100111011001101111000010011001100011100110
5007 #*0100100000010000111010010011111101111111111001011010100000011001
5008 #*1001000101011110111000001011000100001100011011010111101101011110
5009 #*1110001001100001010010101010011000110111100000011111001111011000
5010 #*1110111010111001110100000000001100001011100110011111110011011111
5011 #*0111101001011110000110000000010011100000100101111101011110111001
5012 #*1010000010100100001100000111011011011101001100110001101100001001
5013 #*1101010010110000111101001011111010001000101110000101111110001110
5014 #*0110101011101000010010001110100000110011001000001011010001111110
5015 #*1001001100010001111110010110101100000010101000100111100011000011
5016 #*1001001101110111001110101010101010101010111001101000110000001011
5017 #*0010110010101011010110110011111111000101010110011011001110111010
5018 #*0011011000110010011111001001011101101110100010110010110110011001
5019 #*1100011001001101000100101111001010100101010000100011100001010100
5020 #*0001110111011100110011010001000100000011011011010111100111000010
5021 #*0100000000001000001000100000000010001100010110001010011110111100
5022 #*0101001110011101111110010100010101101001101111110100100100000000
5023 #*1111010111100101000011100100000111000001111010000111100000100110
5024 #*1100011111110010100111011000100100100001101101101111100100000011
5025 #*1001110001000001001111000011000110010011001111101100100011011011
5026 #*1111111000001101100111001111000010000011011101111101110010110101
5027 #*0011001010101001111111110001101110011010010011010100011011010110
5028 #*1001111001011101001011010000100111011001111111001111101001101001
5029 #*0000100110000100101111010001111001110011001000110001010001111010
5030 #*0111010100010101100111101011010100111001000110110000101101000100
5031 ;; After iota:
5032 #*1001100110001100001110100111011001101111000010011001100011100111
5033 #*0100100000010000111010010011111101111111111001011010100000011001
5034 #*1001000101011110111000001011000100001100011011010111101101011110
5035 #*1110001001100001010010101010011000110111100000011111001111011000
5036 #*1110111010111001110100000000001100001011100110011111110011011111
5037 #*0111101001011110000110000000010011100000100101111101011110111001
5038 #*1010000010100100001100000111011011011101001100110001101100001001
5039 #*1101010010110000111101001011111010001000101110000101111110001110
5040 #*0110101011101000010010001110100000110011001000001011010001111110
5041 #*1001001100010001111110010110101100000010101000100111100011000011
5042 #*1001001101110111001110101010101010101010111001101000110000001011
5043 #*0010110010101011010110110011111111000101010110011011001110111010
5044 #*0011011000110010011111001001011101101110100010110010110110011001
5045 #*1100011001001101000100101111001010100101010000100011100001010100
5046 #*0001110111011100110011010001000100000011011011010111100111000010
5047 #*0100000000001000001000100000000010001100010110001010011110111100
5048 #*0101001110011101111110010100010101101001101111110100100100000000
5049 #*1111010111100101000011100100000111000001111010000111100000100110
5050 #*1100011111110010100111011000100100100001101101101111100100000011
5051 #*1001110001000001001111000011000110010011001111101100100011011011
5052 #*1111111000001101100111001111000010000011011101111101110010110101
5053 #*0011001010101001111111110001101110011010010011010100011011010110
5054 #*1001111001011101001011010000100111011001111111001111101001101001
5055 #*0000100110000100101111010001111001110011001000110001010001111010
5056 #*0111010100010101100111101011010100111001000110110000101101000100
5057
5058 ;; Round 8
5059
5060 ;; After theta:
5061 #*0100001000111001101111101001111110000101010001000010000100011000
5062 #*1000101010000010011010101111111100101100100101110101010111000110
5063 #*1111010000101100011111001000110001100001101010110011110101100111
5064 #*0011111010010101001000100000100000010101111100101110011111111110
5065 #*0000100101011011101100110011110011101101110001001011001001111010
5066 #*1010000111101011100111001110110100001010110110100110111001000110
5067 #*0110001000110110101100111011011010001110010000011110011011010110
5068 #*1011000111000010011010001000001111100101011111100001100110110111
5069 #*1011011000011100001000000100011000010001010100111010000001011000
5070 #*0111010011110011100110100101010011100100111111110011011001100110
5071 #*0100100011000010101111100100001101000000101010110011010111110100
5072 #*1110111000111001110110001111111110010110001010110100111001100101
5073 #*0101001101000000111000001010101000000011010011010110101110100000
5074 #*0001101010111001011110100101110010000111001100010010110001110010
5075 #*1111101000111110101011100010111011100101001100000011011101100111
5076 #*1001101110111101101001101110100101100110000101010001111001000011
5077 #*1001000100001111011110101000010100111010110011011011010011011111
5078 #*1001000010010111100100100111110010101100001011100011111000011111
5079 #*0001101100000110111101010010011100000011110001011110110100100101
5080 #*0111101110100011010111110000111001110101011000111000011001111110
5081 #*0010010110111000000110000001100101101001001110100110010101001010
5082 #*1111000000111011011111001101101111001001001111111011101100001001
5083 #*1111101100101111101100010011010010110100001110101011110001010000
5084 #*1101010101110000110101011011000001010001010100000000000001011100
5085 #*1001001011110111111111011000101011011111010001100100010111100001
5086 ;; After rho:
5087 #*0100001000111001101111101001111110000101010001000010000100011000
5088 #*0100010101000001001101010111111110010110010010111010101011100011
5089 #*1101000010110001111100100011000110000110101011001111010110011111
5090 #*0101111100101110011111111110001111101001010100100010000010000001
5091 #*1011100010010110010011110100000100101011011101100110011110011101
5092 #*1101000010101101101001101110010001101010000111101011100111001110
5093 #*0011101101101000111001000001111001101101011001100010001101101011
5094 #*1101111011000111000010011010001000001111100101011111100001100110
5095 #*0011100001000000100011000010001010100111010000001011000101101100
5096 #*1111001101100110011001110100111100111001101001010100111001001111
5097 #*1000100100011000010101111100100001101000000101010110011010111110
5098 #*1001100101111011100011100111011000111111111001011000101011010011
5099 #*0001010101000000011010011010110101110100000010100110100000011100
5100 #*1001100010010110001110010000110101011100101111010010111001000011
5101 #*0101110111001010011000000110111011001111111101000111110101011100
5102 #*0111010010110011000010101000111100100001110011011101111011010011
5103 #*1101010000101001110101100110110110100110111111001000100001111011
5104 #*0111110000111111001000010010111100100100111110010101100001011100
5105 #*0010111101101001001010001101100000110111101010010011100000011110
5106 #*0111111001111011101000110101111100001110011101010110001110000110
5107 #*1001100101010010100010010110111000000110000001100101101001001110
5108 #*0111110000001110110111110011011011110010010011111110111011000010
5109 #*1101100101111101100010011010010110100001110101011110001010000111
5110 #*0111000011010101101100000101000101010000000000000101110011010101
5111 #*0001011110000110010010111101111111110110001010110111110100011001
5112 ;; After pi:
5113 #*0100001000111001101111101001111110000101010001000010000100011000
5114 #*0011101101101000111001000001111001101101011001100010001101101011
5115 #*0001010101000000011010011010110101110100000010100110100000011100
5116 #*0010111101101001001010001101100000110111101010010011100000011110
5117 #*0001011110000110010010111101111111110110001010110111110100011001
5118 #*0101111100101110011111111110001111101001010100100010000010000001
5119 #*1111001101100110011001110100111100111001101001010100111001001111
5120 #*1000100100011000010101111100100001101000000101010110011010111110
5121 #*1101010000101001110101100110110110100110111111001000100001111011
5122 #*1101100101111101100010011010010110100001110101011110001010000111
5123 #*0100010101000001001101010111111110010110010010111010101011100011
5124 #*1101111011000111000010011010001000001111100101011111100001100110
5125 #*1001100010010110001110010000110101011100101111010010111001000011
5126 #*0111111001111011101000110101111100001110011101010110001110000110
5127 #*1001100101010010100010010110111000000110000001100101101001001110
5128 #*1011100010010110010011110100000100101011011101100110011110011101
5129 #*1101000010101101101001101110010001101010000111101011100111001110
5130 #*1001100101111011100011100111011000111111111001011000101011010011
5131 #*0111110000111111001000010010111100100100111110010101100001011100
5132 #*0111000011010101101100000101000101010000000000000101110011010101
5133 #*1101000010110001111100100011000110000110101011001111010110011111
5134 #*0011100001000000100011000010001010100111010000001011000101101100
5135 #*0101110111001010011000000110111011001111111101000111110101011100
5136 #*0111010010110011000010101000111100100001110011011101111011010011
5137 #*0111110000001110110111110011011011110010010011111110111011000010
5138 ;; After chi:
5139 #*0100011000111001101101110011111010010101010011000110100100001100
5140 #*0001000101000001111001000100111001101110110001110011001101101001
5141 #*0000010111000110001010101010101010110100000010000010110100011101
5142 #*0110111101010000100111001101100000110110111011010011100000011110
5143 #*0010111011000110000010111101111110011110000010010111111101111010
5144 #*0101011100110110011011110110001110101001010000100000000000110001
5145 #*1010011101000111111001110110101010111111010011011100011000001110
5146 #*1000000001001100010111100100100001101001000101000000010000111010
5147 #*1101001000101011101000000010111111101110111111101000100001111011
5148 #*0111100100111101100010011010100110110001011100001010110011001001
5149 #*0100010101010001000001010111001011000110011000111010110011100010
5150 #*1011100010101110100010111111000000001101110101011011100111100010
5151 #*0001100110010110001100010010110101011100101111110011011000001011
5152 #*0011101001111010100101110100111010011110001111001100001100100111
5153 #*0000001111010100100000011110111000001111100100100000101001001010
5154 #*1011000111000100010001110101001100111110100101110110010110001100
5155 #*1011010010101001100001111110110101101010000001101110100111000010
5156 #*1001100110111011000111100010011001101111111001011000111001010010
5157 #*1111010000111101011011100010111100001111100011110111101101010100
5158 #*0011000011111100000100001111010100010000000010001100010010010111
5159 #*1001010100111011100100100111110111001110000110001011100110001111
5160 #*0001100001110001100001101010001110000111010010010011001111101111
5161 #*0101010111000110101101010101111000011101111101100101110101011100
5162 #*1111010000000010001010101000111000100101011011011100111111001110
5163 #*0101010001001110110100110011010011010011000011111110111010100010
5164 ;; After iota:
5165 #*0001011100111001101101110011111010010101010011000110100100001100
5166 #*0001000101000001111001000100111001101110110001110011001101101001
5167 #*0000010111000110001010101010101010110100000010000010110100011101
5168 #*0110111101010000100111001101100000110110111011010011100000011110
5169 #*0010111011000110000010111101111110011110000010010111111101111010
5170 #*0101011100110110011011110110001110101001010000100000000000110001
5171 #*1010011101000111111001110110101010111111010011011100011000001110
5172 #*1000000001001100010111100100100001101001000101000000010000111010
5173 #*1101001000101011101000000010111111101110111111101000100001111011
5174 #*0111100100111101100010011010100110110001011100001010110011001001
5175 #*0100010101010001000001010111001011000110011000111010110011100010
5176 #*1011100010101110100010111111000000001101110101011011100111100010
5177 #*0001100110010110001100010010110101011100101111110011011000001011
5178 #*0011101001111010100101110100111010011110001111001100001100100111
5179 #*0000001111010100100000011110111000001111100100100000101001001010
5180 #*1011000111000100010001110101001100111110100101110110010110001100
5181 #*1011010010101001100001111110110101101010000001101110100111000010
5182 #*1001100110111011000111100010011001101111111001011000111001010010
5183 #*1111010000111101011011100010111100001111100011110111101101010100
5184 #*0011000011111100000100001111010100010000000010001100010010010111
5185 #*1001010100111011100100100111110111001110000110001011100110001111
5186 #*0001100001110001100001101010001110000111010010010011001111101111
5187 #*0101010111000110101101010101111000011101111101100101110101011100
5188 #*1111010000000010001010101000111000100101011011011100111111001110
5189 #*0101010001001110110100110011010011010011000011111110111010100010
5190
5191 ;; Round 9
5192
5193 ;; After theta:
5194 #*0111011010011100001100111010101001101110001010001101000110010100
5195 #*0001100011010000000110110001010010011101111111010100110010100100
5196 #*1110010000101001110101001011110010110011011111100101100001011001
5197 #*0010011101111111100100100100001100110100101010111000110111011010
5198 #*1011100100101000011000001100011101110111101101011011010001001100
5199 #*0011011010010011111010111111011101010010001001101011100010101001
5200 #*1010111011010110000110000011000001001100011101111011100111000011
5201 #*0110000110100011101000000101111001101110011000100111000101111110
5202 #*1001101000000100101011101011010011101100101110000011110110111111
5203 #*1110111011010011111000101011000101011000110011000110011111111111
5204 #*0010010011110100100000011110011000111101000001110001010001111010
5205 #*1011000100111111011101001010101011111110111011111100011000101111
5206 #*1111100001111001110011110011101101011011110010010100001101001111
5207 #*0111001001010101100110011101010110011100011110100111011011100011
5208 #*1001010000111010111010101111011011100110001011101100000101111100
5209 #*1101000001100001110000111100011111000101111100111101110100010100
5210 #*1011110100111000011110001011011110011001001111001001011000001111
5211 #*0111100001010100111000000011000001101000100100111111101100010110
5212 #*1011110000010010011000001011010000001101110010011100111010010000
5213 #*1010011100010010011110111110110111111001101101000000111110100001
5214 #*1111010010011110000101101110100100110101011111000000000100010111
5215 #*0001000111100000011110011111100101110100011100110100110000100010
5216 #*1011010000101001010010110100100000011010100000000010100000011000
5217 #*1011110000101101001001000001010100100111001010110111101000001010
5218 #*1100001110100000101110000010110000111010101100110010010110010100
5219 ;; After rho:
5220 #*0111011010011100001100111010101001101110001010001101000110010100
5221 #*0000110001101000000011011000101001001110111111101010011001010010
5222 #*1001000010100111010100101111001011001101111110010110000101100111
5223 #*0100101010111000110111011010001001110111111110010010010000110011
5224 #*1111011010110110100010011001011100100101000011000001100011101110
5225 #*0111010100100010011010111000101010010011011010010011111010111111
5226 #*1000001100000100110001110111101110011100001110101110110101100001
5227 #*1111100110000110100011101000000101111001101110011000100111000101
5228 #*0000100101011101011010011101100101110000011110110111111100110100
5229 #*1100011001111111111111101110110100111110001010110001010110001100
5230 #*0100010010011110100100000011110011000111101000001110001010001111
5231 #*1000101111101100010011111101110100101010101111111011101111110001
5232 #*1110011101101011011110010010100001101001111111110000111100111001
5233 #*0011110100111011011100011011100100101010110011001110101011001110
5234 #*1110110111001100010111011000001011111001001010000111010111010101
5235 #*1110001111100010111110011110111010001010011010000011000011100001
5236 #*1100010110111100110010011110010010110000011111011110100111000011
5237 #*1111011000101100111100001010100111000000011000001101000100100111
5238 #*0100111001110100100001011110000010010011000001011010000001101110
5239 #*1010000110100111000100100111101111101101111110011011010000001111
5240 #*0000000001000101111111010010011110000101101110100100110101011111
5241 #*1000010001111000000111100111111001011101000111001101001100001000
5242 #*1010000101001010010110100100000011010100000000010100000011000101
5243 #*0010110100100100000101010010011100101011011110100000101010111100
5244 #*1001011001010011000011101000001011100000101100001110101011001100
5245 ;; After pi:
5246 #*0111011010011100001100111010101001101110001010001101000110010100
5247 #*1000001100000100110001110111101110011100001110101110110101100001
5248 #*1110011101101011011110010010100001101001111111110000111100111001
5249 #*0100111001110100100001011110000010010011000001011010000001101110
5250 #*1001011001010011000011101000001011100000101100001110101011001100
5251 #*0100101010111000110111011010001001110111111110010010010000110011
5252 #*1100011001111111111111101110110100111110001010110001010110001100
5253 #*0100010010011110100100000011110011000111101000001110001010001111
5254 #*1100010110111100110010011110010010110000011111011110100111000011
5255 #*1010000101001010010110100100000011010100000000010100000011000101
5256 #*0000110001101000000011011000101001001110111111101010011001010010
5257 #*1111100110000110100011101000000101111001101110011000100111000101
5258 #*0011110100111011011100011011100100101010110011001110101011001110
5259 #*1010000110100111000100100111101111101101111110011011010000001111
5260 #*0000000001000101111111010010011110000101101110100100110101011111
5261 #*1111011010110110100010011001011100100101000011000001100011101110
5262 #*0111010100100010011010111000101010010011011010010011111010111111
5263 #*1000101111101100010011111101110100101010101111111011101111110001
5264 #*1111011000101100111100001010100111000000011000001101000100100111
5265 #*0010110100100100000101010010011100101011011110100000101010111100
5266 #*1001000010100111010100101111001011001101111110010110000101100111
5267 #*0000100101011101011010011101100101110000011110110111111100110100
5268 #*1110110111001100010111011000001011111001001010000111010111010101
5269 #*1110001111100010111110011110111010001010011010000011000011100001
5270 #*1000010001111000000111100111111001011101000111001101001100001000
5271 ;; After chi:
5272 #*0001001011110111000010111010101000001111111011011101001110001100
5273 #*1000101100010000010000111011101100001110001110100100110100100111
5274 #*0111011101101000011100110010101000001001010011110100010110111001
5275 #*0010111011111000101101001100100010011101000011011011000101111110
5276 #*0001011101010011110010101101001101110000101000101100011010101101
5277 #*0100101000111000110111011011001010110110011110011100011000110000
5278 #*0100011101011111101101110010110100001110011101100001110011001100
5279 #*0110010011011100100000100011110010000011101000001110001010001011
5280 #*1000111100001100010011000100011010010011100001011100110111110001
5281 #*0010010100001101011110000000110111011100000000110101000101001001
5282 #*0000100001010001011111001011001001001100101110101100010001011000
5283 #*0111100100000010100011001100001110111100100010001001110111000100
5284 #*0011110101111011100111001011110100101010110011101010001110011110
5285 #*1010110110001111000100101111001110100111101111010001011000001111
5286 #*1111000111000011011111110010011010110100101110110100010011011010
5287 #*0111110001111010100011011100001000001101100110101001100110101110
5288 #*0000000100100010110110111010101001010011001010010111111010111001
5289 #*1000001011101100010010101101101100000001101001011011000101101001
5290 #*0010010010111110011110000011100111000100011001001100000101100101
5291 #*0010110000100100011101110010111110111001000110110010110010101101
5292 #*0111010000100111010001101111000001000100111110010110000110100110
5293 #*0000101101111111110010011011010101110010001110110111111100010100
5294 #*1110100111010100010110111001001010101100001111001011011011011101
5295 #*1111001101100101101110010110111000001010100010010001000010000110
5296 #*1000110100100000001101110111011101101101000111101100110100011000
5297 ;; After iota:
5298 #*0000001111110111000010111010101000001111111011011101001110001100
5299 #*1000101100010000010000111011101100001110001110100100110100100111
5300 #*0111011101101000011100110010101000001001010011110100010110111001
5301 #*0010111011111000101101001100100010011101000011011011000101111110
5302 #*0001011101010011110010101101001101110000101000101100011010101101
5303 #*0100101000111000110111011011001010110110011110011100011000110000
5304 #*0100011101011111101101110010110100001110011101100001110011001100
5305 #*0110010011011100100000100011110010000011101000001110001010001011
5306 #*1000111100001100010011000100011010010011100001011100110111110001
5307 #*0010010100001101011110000000110111011100000000110101000101001001
5308 #*0000100001010001011111001011001001001100101110101100010001011000
5309 #*0111100100000010100011001100001110111100100010001001110111000100
5310 #*0011110101111011100111001011110100101010110011101010001110011110
5311 #*1010110110001111000100101111001110100111101111010001011000001111
5312 #*1111000111000011011111110010011010110100101110110100010011011010
5313 #*0111110001111010100011011100001000001101100110101001100110101110
5314 #*0000000100100010110110111010101001010011001010010111111010111001
5315 #*1000001011101100010010101101101100000001101001011011000101101001
5316 #*0010010010111110011110000011100111000100011001001100000101100101
5317 #*0010110000100100011101110010111110111001000110110010110010101101
5318 #*0111010000100111010001101111000001000100111110010110000110100110
5319 #*0000101101111111110010011011010101110010001110110111111100010100
5320 #*1110100111010100010110111001001010101100001111001011011011011101
5321 #*1111001101100101101110010110111000001010100010010001000010000110
5322 #*1000110100100000001101110111011101101101000111101100110100011000
5323
5324 ;; Round 10
5325
5326 ;; After theta:
5327 #*0011111011100110101100110010111110001101000110011000011111000110
5328 #*1110000000101000100111000101001010110100101010110110010101000111
5329 #*0010010110101000000011001111010110100111011101011101010110001010
5330 #*1101101001000011000011101111101011110110101110100010101100100011
5331 #*1110100000010010010100010011010101001001010111001110100100111000
5332 #*0111011100101001011001010011011100110100100011011001001001111010
5333 #*0010110001100111011010001100010010110100111001110011010010101100
5334 #*0011011000011100111111011110001100101101100110100111001010111000
5335 #*0111101110110111111101100111010011111000001100100101011110101100
5336 #*1101101001001100111000111110101111100101111111010111111011011100
5337 #*0011010101000000110001000011011111001110010011101001000000010010
5338 #*0001001000111010010100110010101000000110000110011011010110100100
5339 #*0110111110111011111000110110001010000100111101000011001110101101
5340 #*0101100100110100101010001100000111001100000010101000110001010010
5341 #*0000111010000010111001001100000010001101010001010110101101001111
5342 #*0100000101101011001101010100011110001111011011101100110111100100
5343 #*0110101000011010000001000100001111101001101110000101011011011001
5344 #*1101000000101100001101010000010010101111100111110010000101011010
5345 #*1101000000000101110000100000101110101111110100110101101100111000
5346 #*1101001101100101111011001100100110000000111001010000001100111000
5347 #*0100100100110110111111100111010111000110000011010011010111101100
5348 #*0110000001000111000101100101110011001000101010100101011101110100
5349 #*1011101100010100001001000100110100000010000001100010011011101110
5350 #*0000011111011110000000110101110001100001001111101000101011011011
5351 #*0111001001100001101011001001000101010100111000001110001010001101
5352 ;; After rho:
5353 #*0011111011100110101100110010111110001101000110011000011111000110
5354 #*1111000000010100010011100010100101011010010101011011001010100011
5355 #*1001011010100000001100111101011010011101110101110101011000101000
5356 #*0110101110100010101100100011110110100100001100001110111110101111
5357 #*0010101110011101001001110001110100000010010010100010011010101001
5358 #*0111001101001000110110010010011110100111011100101001011001010011
5359 #*1000110001001011010011100111001101001010110000101100011001110110
5360 #*1110000011011000011100111111011110001100101101100110100111001010
5361 #*0110111111101100111010011111000001100100101011110101100011110111
5362 #*1101011111101101110011011010010011001110001111101011111001011111
5363 #*0100011010101000000110001000011011111001110010011101001000000010
5364 #*0110100100000100100011101001010011001010100000011000011001101101
5365 #*0110110001010000100111101000011001110101101011011111011101111100
5366 #*0000010101000110001010010010110010011010010101000110000011100110
5367 #*1000000100011010100010101101011010011110000111010000010111001001
5368 #*1010001111000111101101110110011011110010001000001011010110011010
5369 #*0010001000011111010011011100001010110110110010110101000011010000
5370 #*0100001010110101101000000101100001101010000010010101111100111110
5371 #*1001101011011001110001101000000000101110000100000101110101111110
5372 #*0011100011010011011001011110110011001001100000001110010100000011
5373 #*0100110101111011000100100100110110111111100111010111000110000011
5374 #*0001100000010001110001011001011100110010001010101001010111011101
5375 #*1101100010100001001000100110100000010000001100010011011101110101
5376 #*1101111000000011010111000110000100111110100010101101101100000111
5377 #*1000101000110101110010011000011010110010010001010101001110000011
5378 ;; After pi:
5379 #*0011111011100110101100110010111110001101000110011000011111000110
5380 #*1000110001001011010011100111001101001010110000101100011001110110
5381 #*0110110001010000100111101000011001110101101011011111011101111100
5382 #*1001101011011001110001101000000000101110000100000101110101111110
5383 #*1000101000110101110010011000011010110010010001010101001110000011
5384 #*0110101110100010101100100011110110100100001100001110111110101111
5385 #*1101011111101101110011011010010011001110001111101011111001011111
5386 #*0100011010101000000110001000011011111001110010011101001000000010
5387 #*0010001000011111010011011100001010110110110010110101000011010000
5388 #*1101100010100001001000100110100000010000001100010011011101110101
5389 #*1111000000010100010011100010100101011010010101011011001010100011
5390 #*1110000011011000011100111111011110001100101101100110100111001010
5391 #*0000010101000110001010010010110010011010010101000110000011100110
5392 #*0011100011010011011001011110110011001001100000001110010100000011
5393 #*0100110101111011000100100100110110111111100111010111000110000011
5394 #*0010101110011101001001110001110100000010010010100010011010101001
5395 #*0111001101001000110110010010011110100111011100101001011001010011
5396 #*0110100100000100100011101001010011001010100000011000011001101101
5397 #*0100001010110101101000000101100001101010000010010101111100111110
5398 #*1101111000000011010111000110000100111110100010101101101100000111
5399 #*1001011010100000001100111101011010011101110101110101011000101000
5400 #*0110111111101100111010011111000001100100101011110101100011110111
5401 #*1000000100011010100010101101011010011110000111010000010111001001
5402 #*1010001111000111101101110110011011110010001000001011010110011010
5403 #*0001100000010001110001011001011100110010001010101001010111011101
5404 ;; After chi:
5405 #*0101111011110110001000111010101110111000001101001011011011001110
5406 #*0001111011000010000011100111001101000000110100101100111001110100
5407 #*0110110001110100100101111000000011100101111010001111010111111101
5408 #*1010111000011011111101001010100100100011000010001101100100111010
5409 #*0000101000111100100001011101011011110000100001110001001110110011
5410 #*0110101110100010101000100011111110010101111100011010111110101111
5411 #*1111011111111010100010001110010011001000001111001011111010001111
5412 #*1001111000001000001110101010111011111001111110011111010100100111
5413 #*0000000100011101110111011101011100010010110010111001100001011010
5414 #*0100110011101100011011111110100001011010001111110010011100100101
5415 #*1111010100010010010001100010000101001000000101011011001010000111
5416 #*1101100001001001001101110011011111001101001101101110110011001011
5417 #*0100000001101110001110110010110110101100010010010111000001100110
5418 #*1000100011010111001010011100110010001001110000000110011100100011
5419 #*0100110110110011001000111001101100111011001111110011100011001011
5420 #*0010001110011001001000011000110101001010110010110010011010000101
5421 #*0111000111111001111110010110111110000111011110101100111101000001
5422 #*1111010100000110110100101011010111011110000000110000011001101100
5423 #*0110001100101001100000110100010001101010010010010111101110010110
5424 #*1000111001000011100001000100001110011011101110100100101101010101
5425 #*0001011010110010001100011101000000000111110001110101001100100000
5426 #*0100110100101001110111001101000000000100100011111110100011100101
5427 #*1001100100001010110010100100011110011110000101110000010110001100
5428 #*0010010101100111100001010010011001111111111101011111011110111010
5429 #*0111000101011101000011011011011101010010000000101001110100001010
5430 ;; After iota:
5431 #*1100111011110111001000111010101010111000001101001011011011001110
5432 #*0001111011000010000011100111001101000000110100101100111001110100
5433 #*0110110001110100100101111000000011100101111010001111010111111101
5434 #*1010111000011011111101001010100100100011000010001101100100111010
5435 #*0000101000111100100001011101011011110000100001110001001110110011
5436 #*0110101110100010101000100011111110010101111100011010111110101111
5437 #*1111011111111010100010001110010011001000001111001011111010001111
5438 #*1001111000001000001110101010111011111001111110011111010100100111
5439 #*0000000100011101110111011101011100010010110010111001100001011010
5440 #*0100110011101100011011111110100001011010001111110010011100100101
5441 #*1111010100010010010001100010000101001000000101011011001010000111
5442 #*1101100001001001001101110011011111001101001101101110110011001011
5443 #*0100000001101110001110110010110110101100010010010111000001100110
5444 #*1000100011010111001010011100110010001001110000000110011100100011
5445 #*0100110110110011001000111001101100111011001111110011100011001011
5446 #*0010001110011001001000011000110101001010110010110010011010000101
5447 #*0111000111111001111110010110111110000111011110101100111101000001
5448 #*1111010100000110110100101011010111011110000000110000011001101100
5449 #*0110001100101001100000110100010001101010010010010111101110010110
5450 #*1000111001000011100001000100001110011011101110100100101101010101
5451 #*0001011010110010001100011101000000000111110001110101001100100000
5452 #*0100110100101001110111001101000000000100100011111110100011100101
5453 #*1001100100001010110010100100011110011110000101110000010110001100
5454 #*0010010101100111100001010010011001111111111101011111011110111010
5455 #*0111000101011101000011011011011101010010000000101001110100001010
5456
5457 ;; Round 11
5458
5459 ;; After theta:
5460 #*0011110001011010101010011111010000000011000111011011000100000110
5461 #*0001010010100001100111101110001010010000001010000010100110011001
5462 #*1101000100011010100000001111011101110101000110101001101101011110
5463 #*0000101000111011110110100111000001111111010110110100011101100111
5464 #*1101100100010101111010001111001011001001010101101101011011111101
5465 #*1001100100001111001010000110000100101110110110001010100001100111
5466 #*1111110110011001000110000111010100011000110001100101100101100010
5467 #*0010001101100110001011011101100101101001000010111001101110000100
5468 #*1010010100111101111100110000111001001110100110000000011000000111
5469 #*1001111111000101000000101100110001100011111011101110001001101011
5470 #*0000011110111111110011000111111111110011001111001011010101001111
5471 #*1101001000101010101001111010011000011101110011000000101100100110
5472 #*1111110100000000001011000101101000111100101110110001111011000101
5473 #*0010110011110111000001110001010111010101100100111111100101111110
5474 #*1001111010011010010011101011111100000010111011101111110110000101
5475 #*1101000100110100101010111101001111110001111000100010000101001101
5476 #*0111101110011010011010011111111001010111100000000010100010101100
5477 #*0100100001101000110001011100001001001110111100010110100011001111
5478 #*1100011100001001101011011001110100110110000110101110010111001011
5479 #*0101110101101010111010010110011110100010011010111000111000011011
5480 #*1110010000011111101110111000111010111100111011100101010011101000
5481 #*0100011101001010010011000100000111010100011101010000111100001000
5482 #*0010010001100100110111010011000000001110111001010110101100101111
5483 #*1000000101000111101010111111111100100011101001100110100111100111
5484 #*1010001001110100011000001001001101101011110100110101100001000100
5485 ;; After rho:
5486 #*0011110001011010101010011111010000000011000111011011000100000110
5487 #*1000101001010000110011110111000101001000000101000001010011001100
5488 #*0100010001101010000000111101110111010100011010100110110101111011
5489 #*1111010110110100011101100111000010100011101111011010011100000111
5490 #*0010101011011010110111111011101100100010101111010001111001011001
5491 #*0001001011101101100010101000011001111001100100001111001010000110
5492 #*1000011101010001100011000110010110010110001011111101100110010001
5493 #*0001000010001101100110001011011101100101101001000010111001101110
5494 #*0111101111100110000111001001110100110000000011000000111101001010
5495 #*1110111000100110101110011111110001010000001011001100011000111110
5496 #*1110000011110111111110011000111111111110011001111001011010101001
5497 #*1100100110110100100010101010100111101001100001110111001100000010
5498 #*1000101101000111100101110110001111011000101111111010000000000101
5499 #*1100100111111100101111110001011001111011100000111000101011101010
5500 #*0111111000000101110111011111101100001011001111010011010010011101
5501 #*1110100111111000111100010001000010100110111010001001101001010101
5502 #*0100111111110010101111000000000101000101011000111101110011010011
5503 #*1101000110011110100100001101000110001011100001001001110111100010
5504 #*1101011100101110010111100011100001001101011011001110100110110000
5505 #*0001101101011101011010101110100101100111101000100110101110001110
5506 #*1001010100111010001110010000011111101110111000111010111100111011
5507 #*0001000111010010100100110001000001110101000111010100001111000010
5508 #*0010001100100110111010011000000001110111001010110101100101111001
5509 #*0100011110101011111111110010001110100110011010011110011110000001
5510 #*0110000100010010100010011101000110000010010011011010111101001101
5511 ;; After pi:
5512 #*0011110001011010101010011111010000000011000111011011000100000110
5513 #*1000011101010001100011000110010110010110001011111101100110010001
5514 #*1000101101000111100101110110001111011000101111111010000000000101
5515 #*1101011100101110010111100011100001001101011011001110100110110000
5516 #*0110000100010010100010011101000110000010010011011010111101001101
5517 #*1111010110110100011101100111000010100011101111011010011100000111
5518 #*1110111000100110101110011111110001010000001011001100011000111110
5519 #*1110000011110111111110011000111111111110011001111001011010101001
5520 #*0100111111110010101111000000000101000101011000111101110011010011
5521 #*0010001100100110111010011000000001110111001010110101100101111001
5522 #*1000101001010000110011110111000101001000000101000001010011001100
5523 #*0001000010001101100110001011011101100101101001000010111001101110
5524 #*1100100111111100101111110001011001111011100000111000101011101010
5525 #*0001101101011101011010101110100101100111101000100110101110001110
5526 #*1001010100111010001110010000011111101110111000111010111100111011
5527 #*0010101011011010110111111011101100100010101111010001111001011001
5528 #*0001001011101101100010101000011001111001100100001111001010000110
5529 #*1100100110110100100010101010100111101001100001110111001100000010
5530 #*1101000110011110100100001101000110001011100001001001110111100010
5531 #*0100011110101011111111110010001110100110011010011110011110000001
5532 #*0100010001101010000000111101110111010100011010100110110101111011
5533 #*0111101111100110000111001001110100110000000011000000111101001010
5534 #*0111111000000101110111011111101100001011001111010011010010011101
5535 #*1110100111111000111100010001000010100110111010001001101001010101
5536 #*0001000111010010100100110001000001110101000111010100001111000010
5537 ;; After chi:
5538 #*0011010001011100101110101111011001001011100011011001000100000010
5539 #*1101001101111001110001000111110110010011011011111001000000100001
5540 #*1010101101010111000101101010001001011010101111101010011001001000
5541 #*1100101101100110011111100001110001001100011111001111100110110010
5542 #*1110001000010011100011011101000000010110011011111110011111011100
5543 #*1111010101100101001101100111001100001101111111101011011110000110
5544 #*1110000100100110101111011111110001010001001011001000111001101100
5545 #*1100000011110011101110000000111111001100011011111001011110000001
5546 #*1001101101100010101010100111000111000101111101110111101011010101
5547 #*0010100100100100011000000000110000100111001010110001100101000001
5548 #*0100001100100000111010000111000101010010000101111001010001001100
5549 #*0000001010001100110110000101111001100001100001000100111101101010
5550 #*0100110111011110101011100001000011110011110000100000111011011011
5551 #*0001000100011101101011001001100101100111101101100111101101001010
5552 #*1000010110110111001010011000000111001011010000111000010100011001
5553 #*1110001111001010110111111001001010100010101110100001111101011001
5554 #*0000001011100111100110101101011001111011100100000111111001100110
5555 #*1100111110010101111001011000101111001101111011100001000100000011
5556 #*1111100111001110100100000100100110001011000100001000010110111010
5557 #*0101011110001110111111110010011111111111011010010000011100000111
5558 #*0100000001101011110000101011111111011111010110110101110111101110
5559 #*1111101000011110001111001001110110010100110011001000010100001010
5560 #*0110111000000111110111111111101101011010001010000111010100011111
5561 #*1010110111010000111100011101110100100110100010101011011001101100
5562 #*0010101001010110100011110001000001010101000110010100000111000010
5563 ;; After iota:
5564 #*0110010001011100101110101111011101001011100011011001000100000010
5565 #*1101001101111001110001000111110110010011011011111001000000100001
5566 #*1010101101010111000101101010001001011010101111101010011001001000
5567 #*1100101101100110011111100001110001001100011111001111100110110010
5568 #*1110001000010011100011011101000000010110011011111110011111011100
5569 #*1111010101100101001101100111001100001101111111101011011110000110
5570 #*1110000100100110101111011111110001010001001011001000111001101100
5571 #*1100000011110011101110000000111111001100011011111001011110000001
5572 #*1001101101100010101010100111000111000101111101110111101011010101
5573 #*0010100100100100011000000000110000100111001010110001100101000001
5574 #*0100001100100000111010000111000101010010000101111001010001001100
5575 #*0000001010001100110110000101111001100001100001000100111101101010
5576 #*0100110111011110101011100001000011110011110000100000111011011011
5577 #*0001000100011101101011001001100101100111101101100111101101001010
5578 #*1000010110110111001010011000000111001011010000111000010100011001
5579 #*1110001111001010110111111001001010100010101110100001111101011001
5580 #*0000001011100111100110101101011001111011100100000111111001100110
5581 #*1100111110010101111001011000101111001101111011100001000100000011
5582 #*1111100111001110100100000100100110001011000100001000010110111010
5583 #*0101011110001110111111110010011111111111011010010000011100000111
5584 #*0100000001101011110000101011111111011111010110110101110111101110
5585 #*1111101000011110001111001001110110010100110011001000010100001010
5586 #*0110111000000111110111111111101101011010001010000111010100011111
5587 #*1010110111010000111100011101110100100110100010101011011001101100
5588 #*0010101001010110100011110001000001010101000110010100000111000010
5589
5590 ;; Round 12
5591
5592 ;; After theta:
5593 #*1011001100010001000011010101011100111101101101110111100101100110
5594 #*1110000100110101101000001100001100000011100000001100110111011001
5595 #*1110100111111110100111011000011000110111111101101110100111111110
5596 #*1101010100100010000111101110010010010110100100100011110000011100
5597 #*0100111111001000101010000101110001100001000010101101010000011000
5598 #*0010001000101000100000011101001101111011110001000101111111100010
5599 #*1101001101101010110110010100001011000001110000111101001110010100
5600 #*1000001001011010001100110010101110100001001001111101100000110111
5601 #*1000010100100110110010101000100100011111000110011011111101111011
5602 #*1000010011111111010001011000000001010000010011100010101010000101
5603 #*1001010001101101010111111101000100100100001011010111110000101000
5604 #*0011000011000000101111001110000011110001011010110001001010010010
5605 #*0000111101110111001001010011010010011110100010100100000101101101
5606 #*0000111101011001110011000110000110111101010110001011111011100100
5607 #*0010100001101100000011000000110110111100001001101011011011011101
5608 #*0011010010000111011010000011001011010100100000001111011100111101
5609 #*0011000010101011111111100110100011101011011111110010001110011110
5610 #*1000110100111100011011101010111110100000101001100101111010110101
5611 #*1110011110001010111100001011000101010001111111100100000000010100
5612 #*1111101001010101110110101010101110001000000011000011010011000011
5613 #*1001011100100110011101010001111110101001011000011011010110001010
5614 #*1100100001010010010110000010001100000100001000111101100011110010
5615 #*0010110010101110010101001101111100110111011000000011101010101001
5616 #*1011001110010100100100010010010111111100011001000111001111000010
5617 #*1000011110001101101010101001110000100010011111000111001000000110
5618 ;; After rho:
5619 #*1011001100010001000011010101011100111101101101110111100101100110
5620 #*1111000010011010110100000110000110000001110000000110011011101100
5621 #*1010011111111010011101100001100011011111110110111010011111111011
5622 #*0110100100100011110000011100110101010010001000011110111001001001
5623 #*0010000101011010100000110000100111111001000101010000101110001100
5624 #*0011011110111100010001011111111000100010001000101000100000011101
5625 #*1001010000101100000111000011110100111001010011010011011010101101
5626 #*1101111000001001011010001100110010101110100001001001111101100000
5627 #*0100110110010101000100100011111000110011011111101111011100001010
5628 #*1110001010101000010110000100111111110100010110000000010100000100
5629 #*0001001010001101101010111111101000100100100001011010111110000101
5630 #*1010010010001100001100000010111100111000001111000101101011000100
5631 #*1010011010010011110100010100100000101101101000011110111011100100
5632 #*1010110001011111011100100000011110101100111001100011000011011110
5633 #*0001101101111000010011010110110110111010010100001101100000011000
5634 #*0001100101101010010000000111101110011110100110100100001110110100
5635 #*1111001101000111010110111111100100011100111100011000010101011111
5636 #*1011110101101011000110100111100011011101010111110100000101001100
5637 #*1111001000000000101001110011110001010111100001011000101010001111
5638 #*1100001111111010010101011101101010101011100010000000110000110100
5639 #*0110110101100010101001011100100110011101010001111110101001011000
5640 #*1011001000010100100101100000100011000001000010001111011000111100
5641 #*0110010101110010101001101111100110111011000000011101010101001001
5642 #*1001010010010001001001011111110001100100011100111100001010110011
5643 #*1100100000011010000111100011011010101010011100001000100111110001
5644 ;; After pi:
5645 #*1011001100010001000011010101011100111101101101110111100101100110
5646 #*1001010000101100000111000011110100111001010011010011011010101101
5647 #*1010011010010011110100010100100000101101101000011110111011100100
5648 #*1111001000000000101001110011110001010111100001011000101010001111
5649 #*1100100000011010000111100011011010101010011100001000100111110001
5650 #*0110100100100011110000011100110101010010001000011110111001001001
5651 #*1110001010101000010110000100111111110100010110000000010100000100
5652 #*0001001010001101101010111111101000100100100001011010111110000101
5653 #*1111001101000111010110111111100100011100111100011000010101011111
5654 #*0110010101110010101001101111100110111011000000011101010101001001
5655 #*1111000010011010110100000110000110000001110000000110011011101100
5656 #*1101111000001001011010001100110010101110100001001001111101100000
5657 #*1010110001011111011100100000011110101100111001100011000011011110
5658 #*1100001111111010010101011101101010101011100010000000110000110100
5659 #*0110110101100010101001011100100110011101010001111110101001011000
5660 #*0010000101011010100000110000100111111001000101010000101110001100
5661 #*0011011110111100010001011111111000100010001000101000100000011101
5662 #*1010010010001100001100000010111100111000001111000101101011000100
5663 #*1011110101101011000110100111100011011101010111110100000101001100
5664 #*1001010010010001001001011111110001100100011100111100001010110011
5665 #*1010011111111010011101100001100011011111110110111010011111111011
5666 #*0100110110010101000100100011111000110011011111101111011100001010
5667 #*0001101101111000010011010110110110111010010100001101100000011000
5668 #*0001100101101010010000000111101110011110100110100100001110110100
5669 #*1011001000010100100101100000100011000001000010001111011000111100
5670 ;; After chi:
5671 #*1001000110000010110011000001011100111001000101111011000100100110
5672 #*1100010000101100001110100000100101101011010010010011011010100110
5673 #*1010111010001001110010010100101010000101110100011110111110010100
5674 #*1100000100000001101001100111110101000010000000101111101010001001
5675 #*1100110000110110000011100001111010101010001110001000111101111000
5676 #*0111100100100110011000100111110101010010101001000100010011001000
5677 #*0000001111101010000010000100111011101100001010000000010101011110
5678 #*0001011010111101000011111111101010000111100001011111111110000101
5679 #*1111101101000110000110101111110101011100110100011010111101011111
5680 #*1110011111111010101111101111101100011111010110011101010001001101
5681 #*1101000011001100110000100110001010000001101000100100011001110010
5682 #*1001110110101001011011010001010010101101100011001001001101000000
5683 #*1000000001011111110100100000011010111000101000011101001010010110
5684 #*0101001101100010000001011111101010101011000010000000100010010000
5685 #*0110001101100011100011010100010110110011010000110111001101011000
5686 #*1010000101011010101100110000100011100001000010010101100101001100
5687 #*0010111011011111010011111010111011100111011000011000100100010101
5688 #*1010010000011100000101011010101100011000000111001101100001110111
5689 #*1001110000100001100110000111100101000100010110110100100001000000
5690 #*1000001000110101011000010000101001100110010100010100001010100010
5691 #*1011010110010010001110110101100101010111110110111010111111101011
5692 #*0100110110010111000100100010110000110111111101001111010010101110
5693 #*1011100101101100110110110110110111111011010100000110110000010000
5694 #*0001110010000000001000000110101110000000010010010100001001110111
5695 #*1111101000010001100101100010111011100001001011001010011000111100
5696 ;; After iota:
5697 #*0100000010000011110011000001011000111001000101111011000100100110
5698 #*1100010000101100001110100000100101101011010010010011011010100110
5699 #*1010111010001001110010010100101010000101110100011110111110010100
5700 #*1100000100000001101001100111110101000010000000101111101010001001
5701 #*1100110000110110000011100001111010101010001110001000111101111000
5702 #*0111100100100110011000100111110101010010101001000100010011001000
5703 #*0000001111101010000010000100111011101100001010000000010101011110
5704 #*0001011010111101000011111111101010000111100001011111111110000101
5705 #*1111101101000110000110101111110101011100110100011010111101011111
5706 #*1110011111111010101111101111101100011111010110011101010001001101
5707 #*1101000011001100110000100110001010000001101000100100011001110010
5708 #*1001110110101001011011010001010010101101100011001001001101000000
5709 #*1000000001011111110100100000011010111000101000011101001010010110
5710 #*0101001101100010000001011111101010101011000010000000100010010000
5711 #*0110001101100011100011010100010110110011010000110111001101011000
5712 #*1010000101011010101100110000100011100001000010010101100101001100
5713 #*0010111011011111010011111010111011100111011000011000100100010101
5714 #*1010010000011100000101011010101100011000000111001101100001110111
5715 #*1001110000100001100110000111100101000100010110110100100001000000
5716 #*1000001000110101011000010000101001100110010100010100001010100010
5717 #*1011010110010010001110110101100101010111110110111010111111101011
5718 #*0100110110010111000100100010110000110111111101001111010010101110
5719 #*1011100101101100110110110110110111111011010100000110110000010000
5720 #*0001110010000000001000000110101110000000010010010100001001110111
5721 #*1111101000010001100101100010111011100001001011001010011000111100
5722
5723 ;; Round 13
5724
5725 ;; After theta:
5726 #*1110110010011011100001111111101001000101011101000001001101010100
5727 #*0010101100000000001100110110100100011011010101101100100011101101
5728 #*0110001101101100110010110010111101000111010011011001100100101111
5729 #*0111110001011111100110010100111101011011000101000110101000010000
5730 #*1101101101100010111111010101101011110101100100000111101010010100
5731 #*1101010100111110001010011001000100101110110001111110011010111010
5732 #*1110110011000110000000010010111010011100001101111111101100010101
5733 #*1101101101011000000011011001111101000101000110011000100100111110
5734 #*0100011000011000001001011100111101000101110001110011111111000110
5735 #*1111000010101110010011011011111101000000111100010010000110100001
5736 #*0111110011010100100010011000111011111101110000011110010000000000
5737 #*0111001010000101011001000111010011011101100100110110110100001011
5738 #*0100110110111010110100000110001101111010001111011010010000101101
5739 #*1110111000111100001110101100100010110010000111101001100000001001
5740 #*0111010000110111011111100000000111101100111010111000011010110100
5741 #*0000110101000010111110001110010010011101011010101111101100111110
5742 #*1100000111110011010001101100111010010111011111100111011101011110
5743 #*0110100111111001000101111100111011011010100000001010111011001100
5744 #*0010000101111111101001110100101101011101010011011101100011011001
5745 #*1001010101100001100100100100111000111001111110011011011101001110
5746 #*0001100110001010011100001011010100101011101110000000110110011001
5747 #*1010001010111011000110110100110001000111111010110000101011100101
5748 #*0111010010001001110110010000100000111001110011000001101010101011
5749 #*1010000111011110000111110101100110011001010111111101001011101110
5750 #*1110110101000101011001010110101010111110100001000101001111010000
5751 ;; After rho:
5752 #*1110110010011011100001111111101001000101011101000001001101010100
5753 #*1001010110000000000110011011010010001101101010110110010001110110
5754 #*1000110110110011001011001011110100011101001101100110010010111101
5755 #*1011000101000110101000010000011111000101111110011001010011110101
5756 #*1011001000001111010100101001101101101100010111111010101101011110
5757 #*0001001011101100011111100110101110101101010100111110001010011001
5758 #*0001001011101001110000110111111110110001010111101100110001100000
5759 #*1111101101101101011000000011011001111101000101000110011000100100
5760 #*0011000001001011100111101000101110001110011111111000110010001100
5761 #*0001001000011010000111110000101011100100110110111111010000001111
5762 #*0000111110011010100100010011000111011111101110000011110010000000
5763 #*0100001011011100101000010101100100011101001101110110010011011011
5764 #*0000110001101111010001111011010010000101101010011011011101011010
5765 #*0000111101001100000001001111011100011110000111010110010001011001
5766 #*0000001111011001110101110000110101101000111010000110111011111100
5767 #*0111001001001110101101010111110110011111000001101010000101111100
5768 #*0011011001110100101110111111001110111010111101100000111110011010
5769 #*0101110110011000110100111111001000101111100111011011010100000001
5770 #*0110111011000110110010010000101111111101001110100101101011101010
5771 #*0100111010010101011000011001001001001110001110011111100110110111
5772 #*0000001101100110010001100110001010011100001011010100101011101110
5773 #*0110100010101110110001101101001100010001111110101100001010111001
5774 #*1010010001001110110010000100000111001110011000001101010101011011
5775 #*1101111000011111010110011001100101011111110100101110111010100001
5776 #*0100111101000011101101010001010110010101101010101111101000010001
5777 ;; After pi:
5778 #*1110110010011011100001111111101001000101011101000001001101010100
5779 #*0001001011101001110000110111111110110001010111101100110001100000
5780 #*0000110001101111010001111011010010000101101010011011011101011010
5781 #*0110111011000110110010010000101111111101001110100101101011101010
5782 #*0100111101000011101101010001010110010101101010101111101000010001
5783 #*1011000101000110101000010000011111000101111110011001010011110101
5784 #*0001001000011010000111110000101011100100110110111111010000001111
5785 #*0000111110011010100100010011000111011111101110000011110010000000
5786 #*0011011001110100101110111111001110111010111101100000111110011010
5787 #*1010010001001110110010000100000111001110011000001101010101011011
5788 #*1001010110000000000110011011010010001101101010110110010001110110
5789 #*1111101101101101011000000011011001111101000101000110011000100100
5790 #*0000111101001100000001001111011100011110000111010110010001011001
5791 #*0100111010010101011000011001001001001110001110011111100110110111
5792 #*0000001101100110010001100110001010011100001011010100101011101110
5793 #*1011001000001111010100101001101101101100010111111010101101011110
5794 #*0001001011101100011111100110101110101101010100111110001010011001
5795 #*0100001011011100101000010101100100011101001101110110010011011011
5796 #*0101110110011000110100111111001000101111100111011011010100000001
5797 #*1101111000011111010110011001100101011111110100101110111010100001
5798 #*1000110110110011001011001011110100011101001101100110010010111101
5799 #*0011000001001011100111101000101110001110011111111000110010001100
5800 #*0000001111011001110101110000110101101000111010000110111011111100
5801 #*0111001001001110101101010111110110011111000001101010000101111100
5802 #*0110100010101110110001101101001100010001111110101100001010111001
5803 ;; After chi:
5804 #*1110000010011101100000110111101001000001110101010010000001001110
5805 #*0111000001101001010010110111010011001001010011001000010011000000
5806 #*0000110101101110011100111010000010000101001010010001011101001011
5807 #*1100111001011110110010111110000110111101011011100101101110101110
5808 #*0101110100100011111101010001000000100101101000000011011000110001
5809 #*1011110011000110001000010011011011011110110110011001110001110101
5810 #*0010001001111110001101011100100011000100100111011111011100010101
5811 #*1000111110010000110100010011000110011011101110001110110011000001
5812 #*0010011101110100100110101111010110111011011011110000111100111110
5813 #*1010011001010110110101100100100111101110011000101011010101010001
5814 #*1001000110000000000111010111010110001111101000100110010000101111
5815 #*1011101111111100000000010011011000111101001101001111111110000010
5816 #*0000111000101110000000101001011110001110000110010110011000010001
5817 #*1101101000010101011110000000011001001111101110111101110110100111
5818 #*0110100100001011001001100110000011101100001110010100100011101110
5819 #*1111001000011111110100111000101101111100011110111010111100011100
5820 #*0000111111101100001011001100100110001111110110110111001110011001
5821 #*1100000011011011101010010101000001001101011101010010111001111011
5822 #*0111110110011000110100011111000000001111100100001011010001011111
5823 #*1101111011111111011101011111100111011110110100101010111000100000
5824 #*1000111000100011011011011011100101111101101101100000011011001101
5825 #*0100000001001101101111101111101100011001011110010000110110001100
5826 #*0000101101111001100101011000111101101000000100000010110001111101
5827 #*1111011101011111100111010101000110010011000000101000010101111000
5828 #*0101100011100110010101001101000110010011101100110100101010111001
5829 ;; After iota:
5830 #*0011000110011101100000110111101001000001110101010010000001001111
5831 #*0111000001101001010010110111010011001001010011001000010011000000
5832 #*0000110101101110011100111010000010000101001010010001011101001011
5833 #*1100111001011110110010111110000110111101011011100101101110101110
5834 #*0101110100100011111101010001000000100101101000000011011000110001
5835 #*1011110011000110001000010011011011011110110110011001110001110101
5836 #*0010001001111110001101011100100011000100100111011111011100010101
5837 #*1000111110010000110100010011000110011011101110001110110011000001
5838 #*0010011101110100100110101111010110111011011011110000111100111110
5839 #*1010011001010110110101100100100111101110011000101011010101010001
5840 #*1001000110000000000111010111010110001111101000100110010000101111
5841 #*1011101111111100000000010011011000111101001101001111111110000010
5842 #*0000111000101110000000101001011110001110000110010110011000010001
5843 #*1101101000010101011110000000011001001111101110111101110110100111
5844 #*0110100100001011001001100110000011101100001110010100100011101110
5845 #*1111001000011111110100111000101101111100011110111010111100011100
5846 #*0000111111101100001011001100100110001111110110110111001110011001
5847 #*1100000011011011101010010101000001001101011101010010111001111011
5848 #*0111110110011000110100011111000000001111100100001011010001011111
5849 #*1101111011111111011101011111100111011110110100101010111000100000
5850 #*1000111000100011011011011011100101111101101101100000011011001101
5851 #*0100000001001101101111101111101100011001011110010000110110001100
5852 #*0000101101111001100101011000111101101000000100000010110001111101
5853 #*1111011101011111100111010101000110010011000000101000010101111000
5854 #*0101100011100110010101001101000110010011101100110100101010111001
5855
5856 ;; Round 14
5857
5858 ;; After theta:
5859 #*0111011011011111110100011011011101111000011011001111011001111001
5860 #*1011001100110111000001000001001100000010110110010011101011001010
5861 #*1111011111011000101011001100000111001001111110101011100100000001
5862 #*0000001100011111110001010011000010111101110011101101001110111000
5863 #*1101010010101000000100000010011001111000001110010011011011000011
5864 #*1111101110000100011100111111101111100111011000000100101001000011
5865 #*1110000100100000011110101010111100001111000010000100100100011111
5866 #*0111010100100110000011100101000011010111011010110100001010001011
5867 #*1110101000110101100101000010010010111011110011111000011100101000
5868 #*0010111111011101001100110111111110110011111110111011010110100011
5869 #*1101011011000010010011111011100010110110000110111011001000011001
5870 #*0111100010100010010011100101000111110110101000010100000110001000
5871 #*1111010010011000110111011111011011000010110010101100100001011011
5872 #*0001011101010100011101101101011101001111000110110101010110110001
5873 #*1110000010000000110000110101011010110001101000000100100000011100
5874 #*1011010101011101100000010100011001000101110000100111100100101010
5875 #*1100110010110010011000111010111001000100010011101100110110010011
5876 #*0011101001101101011101100011000100000001101001101000000000110001
5877 #*1011000011011001110111110010000100001111001100000011110001001001
5878 #*0101011101110100100100001100111110000011010010111010111011010010
5879 #*1100100101100001001111110111010001000100000011111101000011111011
5880 #*1000001100010011111100011001110011010010111011001011001110000110
5881 #*1111000111001111010010101110111000100100110000111000001000110111
5882 #*0011101000011110100100111000000010010011101000100000110101101110
5883 #*1101000101101101101100011110011111001110001010100100101001001011
5884 ;; After rho:
5885 #*0111011011011111110100011011011101111000011011001111011001111001
5886 #*0101100110011011100000100000100110000001011011001001110101100101
5887 #*1101111101100010101100110000011100100111111010101110010000000111
5888 #*1101110011101101001110111000000000110001111111000101001100001011
5889 #*0000011100100110110110000111101010010101000000100000010011001111
5890 #*1011111001110110000001001010010000111111101110000100011100111111
5891 #*1010101011110000111100001000010010010001111111100001001000000111
5892 #*0010110111010100100110000011100101000011010111011010110100001010
5893 #*0110101100101000010010010111011110011111000011100101000111010100
5894 #*1011101101011010001100101111110111010011001101111111101100111111
5895 #*0011101011011000010010011111011100010110110000110111011001000011
5896 #*0110001000011110001010001001001110010100011111011010100001010000
5897 #*1011111011011000010110010101100100001011011111101001001100011011
5898 #*1000110110101010110110001000101110101010001110110110101110100111
5899 #*1010110101100011010000001001000000111001110000010000000110000110
5900 #*1010001100100010111000010011110010010101010110101010111011000000
5901 #*0001110101110010001000100111011001101100100111100110010110010011
5902 #*0000000001100010011101001101101011101100011000100000001101001101
5903 #*1000000111100010010011011000011011001110111110010000100001111001
5904 #*1101001001010111011101001001000011001111100000110100101110101110
5905 #*1111010000111110111100100101100001001111110111010001000100000011
5906 #*1010000011000100111111000110011100110100101110110010110011100001
5907 #*1000111001111010010101110111000100100110000111000001000110111111
5908 #*0001111010010011100000001001001110100010000011010110111000111010
5909 #*0010100100101111010001011011011011000111100111110011100010101001
5910 ;; After pi:
5911 #*0111011011011111110100011011011101111000011011001111011001111001
5912 #*1010101011110000111100001000010010010001111111100001001000000111
5913 #*1011111011011000010110010101100100001011011111101001001100011011
5914 #*1000000111100010010011011000011011001110111110010000100001111001
5915 #*0010100100101111010001011011011011000111100111110011100010101001
5916 #*1101110011101101001110111000000000110001111111000101001100001011
5917 #*1011101101011010001100101111110111010011001101111111101100111111
5918 #*0011101011011000010010011111011100010110110000110111011001000011
5919 #*0001110101110010001000100111011001101100100111100110010110010011
5920 #*1000111001111010010101110111000100100110000111000001000110111111
5921 #*0101100110011011100000100000100110000001011011001001110101100101
5922 #*0010110111010100100110000011100101000011010111011010110100001010
5923 #*1000110110101010110110001000101110101010001110110110101110100111
5924 #*1101001001010111011101001001000011001111100000110100101110101110
5925 #*1111010000111110111100100101100001001111110111010001000100000011
5926 #*0000011100100110110110000111101010010101000000100000010011001111
5927 #*1011111001110110000001001010010000111111101110000100011100111111
5928 #*0110001000011110001010001001001110010100011111011010100001010000
5929 #*0000000001100010011101001101101011101100011000100000001101001101
5930 #*0001111010010011100000001001001110100010000011010110111000111010
5931 #*1101111101100010101100110000011100100111111010101110010000000111
5932 #*0110101100101000010010010111011110011111000011100101000111010100
5933 #*1010110101100011010000001001000000111001110000010000000110000110
5934 #*1010001100100010111000010011110010010101010110101010111011000000
5935 #*1010000011000100111111000110011100110100101110110010110011100001
5936 ;; After chi:
5937 #*0110001011010111110110001110111001110010011011000111011101100001
5938 #*1010101111010010111101000000001001010101011111110001101001100111
5939 #*1001011011010101010110010110100100001010011110001010001110011011
5940 #*1101011100110010110111011000011111110110100110011100111000101001
5941 #*1010000100001111011001011011011001000110000011010011100010101111
5942 #*1101110001101101011100101000001000110101001111000101011101001011
5943 #*1011111001111000000100001111110110111011001010111111101010101111
5944 #*1011100011010000000111001111011000010100110000110110011001101111
5945 #*0100110111110111000010101111011001111101011111100010011110010011
5946 #*1010110101101000010101110000110011100100000111111011100110001011
5947 #*1101100110110001110000101000101100101001010011101101111111000000
5948 #*0111111110000001101111000010100100000110110111011010110100000010
5949 #*1010100110000010010110101100001110101010011001110111101110100110
5950 #*1101101111010110011101001001000101001111101000111100011111001010
5951 #*1101000001111010111010100110100000001101110011000011000100001001
5952 #*0100011100101110111100000110100100010101010001111010110010001111
5953 #*1011111000010110010100001110110001010111101110100100010000110010
5954 #*0111110010001111101010001001001010010110011100001100010001100010
5955 #*0000000101000110001011001011001011111001011000000000001110001000
5956 #*1010011011000011100001000001011110001000101101010010110100001010
5957 #*0101101100100001101100111000011100000111001010111110010000000101
5958 #*0110100100101000111010000101101100011011000101001111111110010100
5959 #*1010110110100111010111001101001100011001011000000000000110100111
5960 #*1111110000000000111000100011110010010110000110100110111011000110
5961 #*1000000011001100101101000001011110101100101111110011110100110001
5962 ;; After iota:
5963 #*1111001111010110110110001110111001110010011011000111011101100000
5964 #*1010101111010010111101000000001001010101011111110001101001100111
5965 #*1001011011010101010110010110100100001010011110001010001110011011
5966 #*1101011100110010110111011000011111110110100110011100111000101001
5967 #*1010000100001111011001011011011001000110000011010011100010101111
5968 #*1101110001101101011100101000001000110101001111000101011101001011
5969 #*1011111001111000000100001111110110111011001010111111101010101111
5970 #*1011100011010000000111001111011000010100110000110110011001101111
5971 #*0100110111110111000010101111011001111101011111100010011110010011
5972 #*1010110101101000010101110000110011100100000111111011100110001011
5973 #*1101100110110001110000101000101100101001010011101101111111000000
5974 #*0111111110000001101111000010100100000110110111011010110100000010
5975 #*1010100110000010010110101100001110101010011001110111101110100110
5976 #*1101101111010110011101001001000101001111101000111100011111001010
5977 #*1101000001111010111010100110100000001101110011000011000100001001
5978 #*0100011100101110111100000110100100010101010001111010110010001111
5979 #*1011111000010110010100001110110001010111101110100100010000110010
5980 #*0111110010001111101010001001001010010110011100001100010001100010
5981 #*0000000101000110001011001011001011111001011000000000001110001000
5982 #*1010011011000011100001000001011110001000101101010010110100001010
5983 #*0101101100100001101100111000011100000111001010111110010000000101
5984 #*0110100100101000111010000101101100011011000101001111111110010100
5985 #*1010110110100111010111001101001100011001011000000000000110100111
5986 #*1111110000000000111000100011110010010110000110100110111011000110
5987 #*1000000011001100101101000001011110101100101111110011110100110001
5988
5989 ;; Round 15
5990
5991 ;; After theta:
5992 #*0101011101001110110000000000110000101011101010110010110001000000
5993 #*1110101010000000001010101000010110110100111010111001000011001101
5994 #*0111010111101010000011111011111111111011110000000111010001101000
5995 #*1111110010010100010000101111001110001000101111111110010110110101
5996 #*1110100001011000100111010101110001010011000010100010000000100001
5997 #*0111100011110101011010100110000001101100111110110000110001101011
5998 #*1111111100101010110011100111101001011010101111110111000000000101
5999 #*0101101111101111010010100010000011100101011110111011000110011100
6000 #*0110011001010001100101011000001000000011010110000000110000001111
6001 #*1110010000111111101011111110011011110001000110001010000100000101
6002 #*0111110100101001110110100110100101110000100010011000010011100000
6003 #*0011111011010011011000101010111011100111010010010010011110101000
6004 #*0100101010111101000011000001010101011011110111111010110001010101
6005 #*1111000001110000111010111110010100110001100001011110110001010110
6006 #*1001100100101101000100101000001000011000110010110010100110000111
6007 #*1110001110110110111010001000101101001100100000001111011110101111
6008 #*1111111101000100100011100110101110110110001011101100111010011000
6009 #*1001111110110000111111100100010001100111110010000001001110010001
6010 #*0010101011100000101100111100011010000111010001100010100000010100
6011 #*1110111110010100011111001111110110011101101100100011010110000100
6012 #*1111111110111001101010110110010101011110111011001011111100100101
6013 #*0010100001111010001101101101110011111010100000000111010100111110
6014 #*0100111010011000000010100000010111101000110110001101011001010100
6015 #*1101011110100110011111010100100011101000001111000100010101011010
6016 #*1100100110011011010011001111110110111001101110000010010110111111
6017 ;; After rho:
6018 #*0101011101001110110000000000110000101011101010110010110001000000
6019 #*1111010101000000000101010100001011011010011101011100100001100110
6020 #*1101011110101000001111101111111111101111000000011101000110100001
6021 #*1000101111111110010110110101111111001001010001000010111100111000
6022 #*0110000101000100000001000011110100001011000100111010101110001010
6023 #*0000011011001111101100001100011010110111100011110101011010100110
6024 #*1110011110100101101010111111011100000000010111111111001010101100
6025 #*0111000101101111101111010010100010000011100101011110111011000110
6026 #*1010001100101011000001000000011010110000000110000001111011001100
6027 #*1000101000010000010111100100001111111010111111100110111100010001
6028 #*0000111110100101001110110100110100101110000100010011000010011100
6029 #*1110101000001111101101001101100010101011101110011101001001001001
6030 #*1000001010101011011110111111010110001010101010010101011110100001
6031 #*1100001011110110001010110111100000111000011101011111001010011000
6032 #*0000010000110001100101100101001100001111001100100101101000100101
6033 #*0100010110100110010000000111101111010111111100011101101101110100
6034 #*0111001101011101101100010111011001110100110001111111101000100100
6035 #*0010011100100011001111110110000111111100100010001100111110010000
6036 #*0011000101000000101000010101011100000101100111100011010000111010
6037 #*1000010011101111100101000111110011111101100111011011001000110101
6038 #*0010111111001001011111111110111001101010110110010101011110111011
6039 #*1000101000011110100011011011011100111110101000000001110101001111
6040 #*0111010011000000010100000010111101000110110001101011001010100010
6041 #*1010011001111101010010001110100000111100010001010101101011010111
6042 #*1001011011111111001001100110110100110011111101101110011011100000
6043 ;; After pi:
6044 #*0101011101001110110000000000110000101011101010110010110001000000
6045 #*1110011110100101101010111111011100000000010111111111001010101100
6046 #*1000001010101011011110111111010110001010101010010101011110100001
6047 #*0011000101000000101000010101011100000101100111100011010000111010
6048 #*1001011011111111001001100110110100110011111101101110011011100000
6049 #*1000101111111110010110110101111111001001010001000010111100111000
6050 #*1000101000010000010111100100001111111010111111100110111100010001
6051 #*0000111110100101001110110100110100101110000100010011000010011100
6052 #*0111001101011101101100010111011001110100110001111111101000100100
6053 #*0111010011000000010100000010111101000110110001101011001010100010
6054 #*1111010101000000000101010100001011011010011101011100100001100110
6055 #*0111000101101111101111010010100010000011100101011110111011000110
6056 #*1100001011110110001010110111100000111000011101011111001010011000
6057 #*1000010011101111100101000111110011111101100111011011001000110101
6058 #*0010111111001001011111111110111001101010110110010101011110111011
6059 #*0110000101000100000001000011110100001011000100111010101110001010
6060 #*0000011011001111101100001100011010110111100011110101011010100110
6061 #*1110101000001111101101001101100010101011101110011101001001001001
6062 #*0010011100100011001111110110000111111100100010001100111110010000
6063 #*1010011001111101010010001110100000111100010001010101101011010111
6064 #*1101011110101000001111101111111111101111000000011101000110100001
6065 #*1010001100101011000001000000011010110000000110000001111011001100
6066 #*0000010000110001100101100101001100001111001100100101101000100101
6067 #*0100010110100110010000000111101111010111111100011101101101110100
6068 #*1000101000011110100011011011011100111110101000000001110101001111
6069 ;; After chi:
6070 #*0101011101000100100100000000110010100001000010110010100101000001
6071 #*1101011011100101001010111111010100000101010010011101001010110110
6072 #*0000010000010100011111011101110110111000110010011001010101100001
6073 #*0111000001000000011000010101011100001101100101110011110000111010
6074 #*0011011001011110000011011001111000110011101000100011010001001100
6075 #*1000111001011011011110100101001111001101010001010011111110110100
6076 #*1111101001001000110111100111000110101010001110001010010100110001
6077 #*0000101100100101011110110100010000101100000100010011000000011110
6078 #*1111100001100011101110100010011011111101110001111111011100111100
6079 #*0111010011000000010101000010111101110100011111001111001010100011
6080 #*0111011111010000000101110001001011100010000101011101100001111110
6081 #*0111010101100110001010010010110001000110000111011110111011100011
6082 #*1110100111110110010000001111101000111010001101011011011100010010
6083 #*0101010011101111100101000111110001101101101110010011101001110001
6084 #*0010111111100110110101111100011001101011010110010111000100111011
6085 #*1000100101000100000000000010010100000011001000110010101111000011
6086 #*0000001111101111101110111110011111100011100011110101101100110110
6087 #*0110101001010011111101000101000010101011111111001100001000001110
6088 #*0110011000100011001110110111010011111111100110100110111010011000
6089 #*1010000011110110111110000010101010001000110010010000111011110011
6090 #*1101001110111000101011001010111011100000001000111001000110000000
6091 #*1110001010101101010001000010111001100000110110011001111110011100
6092 #*1000111000101001000110111101011100100111001100100101111000101110
6093 #*0001000000000110011100100011001100010110111100000001101111010100
6094 #*1010101000011101100011011011011100101110101110000001001100000011
6095 ;; After iota:
6096 #*1001011101000101100100000000110010100001000010110010100101000000
6097 #*1101011011100101001010111111010100000101010010011101001010110110
6098 #*0000010000010100011111011101110110111000110010011001010101100001
6099 #*0111000001000000011000010101011100001101100101110011110000111010
6100 #*0011011001011110000011011001111000110011101000100011010001001100
6101 #*1000111001011011011110100101001111001101010001010011111110110100
6102 #*1111101001001000110111100111000110101010001110001010010100110001
6103 #*0000101100100101011110110100010000101100000100010011000000011110
6104 #*1111100001100011101110100010011011111101110001111111011100111100
6105 #*0111010011000000010101000010111101110100011111001111001010100011
6106 #*0111011111010000000101110001001011100010000101011101100001111110
6107 #*0111010101100110001010010010110001000110000111011110111011100011
6108 #*1110100111110110010000001111101000111010001101011011011100010010
6109 #*0101010011101111100101000111110001101101101110010011101001110001
6110 #*0010111111100110110101111100011001101011010110010111000100111011
6111 #*1000100101000100000000000010010100000011001000110010101111000011
6112 #*0000001111101111101110111110011111100011100011110101101100110110
6113 #*0110101001010011111101000101000010101011111111001100001000001110
6114 #*0110011000100011001110110111010011111111100110100110111010011000
6115 #*1010000011110110111110000010101010001000110010010000111011110011
6116 #*1101001110111000101011001010111011100000001000111001000110000000
6117 #*1110001010101101010001000010111001100000110110011001111110011100
6118 #*1000111000101001000110111101011100100111001100100101111000101110
6119 #*0001000000000110011100100011001100010110111100000001101111010100
6120 #*1010101000011101100011011011011100101110101110000001001100000011
6121
6122 ;; Round 16
6123
6124 ;; After theta:
6125 #*1010110010010010111110100101011010011110111000001010110110000011
6126 #*0110001110001001101011101100000101111001000000110110000101011001
6127 #*0110100111101001110111011001100111101000101100100000101010110010
6128 #*0100000100110100001101010100011001101010110011111110011101100101
6129 #*0000011010101110001000110011011101110001100011000000101000010011
6130 #*1011010110001100000100000000100111110010101011101011101101110111
6131 #*0100111100100100010110110100010111010110011100100001011011011110
6132 #*0110011011011000110110110000000001111100011010101010111111001101
6133 #*1100100100010111111011100011011110011010100111110010110001100011
6134 #*0100010000110000011110101000011000110110010100101100110011111100
6135 #*0100110000000111011111010100100011011101111111100101110010111101
6136 #*1100000000001010101011000001100000111010010101110101110100001100
6137 #*1000010000001011111000001011111001101010010011100010100011000001
6138 #*0110010110011011110000000110110100001010111000011110000100101110
6139 #*0001111100010110111110010110111100101001011101110100111101100100
6140 #*1011001010010011011010100111111100111100110010001010111100000000
6141 #*1011011010000011001111101101001110011111110001011110100011011001
6142 #*0000011110101110010101000001010011111011100001110101110111011101
6143 #*0101011101010111011011110110010110011000110000101011010111000111
6144 #*1001000000000110110101101000001111001010111001110011000010101100
6145 #*1110100001101111110001101111010011011111110010000001010101000011
6146 #*0101011111000001110000010001101000011100100100110010110001110011
6147 #*1110001111010100101110111001001101110111010010011100000111111101
6148 #*0010000101110010001001100010001001110001101010001100000010001011
6149 #*1001101011101101101000110001111001101100100101100010110101011100
6150 ;; After rho:
6151 #*1010110010010010111110100101011010011110111000001010110110000011
6152 #*1011000111000100110101110110000010111100100000011011000010101100
6153 #*1010011110100111011101100110011110100010110010000010101011001001
6154 #*1010110011111110011101100101010000010011010000110101010001100110
6155 #*0011000110000001010000100110000011010101110001000110011011101110
6156 #*1001111100101010111010111011011101111011010110001100000100000000
6157 #*1011010001011101011001110010000101101101111001001111001001000101
6158 #*0011010110011011011000110110110000000001111100011010101010111111
6159 #*0010111111011100011011110011010100111110010110001100011110010010
6160 #*0010110011001111110001000100001100000111101010000110001101100101
6161 #*1010100110000000111011111010100100011011101111111100101110010111
6162 #*0100001100110000000000101010101100000110000011101001010111010111
6163 #*0001011111001101010010011100010100011000001100001000000101111100
6164 #*0111000011110000100101110011001011001101111000000011011010000101
6165 #*1101111001010010111011101001111011001000001111100010110111110010
6166 #*0011111110011110011001000101011110000000010110010100100110110101
6167 #*1111011010011100111111100010111101000110110011011011010000011001
6168 #*1011101110111010000011110101110010101000001010011111011100001110
6169 #*0001010110101110001110101011101010111011011110110010110011000110
6170 #*1010110010010000000001101101011010000011110010101110011100110000
6171 #*0000010101010000111110100001101111110001101111010011011111110010
6172 #*1101010111110000011100000100011010000111001001001100101100011100
6173 #*0001111010100101110111001001101110111010010011100000111111101111
6174 #*0111001000100110001000100111000110101000110000001000101100100001
6175 #*1011010101110010011010111011011010001100011110011011001001011000
6176 ;; After pi:
6177 #*1010110010010010111110100101011010011110111000001010110110000011
6178 #*1011010001011101011001110010000101101101111001001111001001000101
6179 #*0001011111001101010010011100010100011000001100001000000101111100
6180 #*0001010110101110001110101011101010111011011110110010110011000110
6181 #*1011010101110010011010111011011010001100011110011011001001011000
6182 #*1010110011111110011101100101010000010011010000110101010001100110
6183 #*0010110011001111110001000100001100000111101010000110001101100101
6184 #*1010100110000000111011111010100100011011101111111100101110010111
6185 #*1111011010011100111111100010111101000110110011011011010000011001
6186 #*0001111010100101110111001001101110111010010011100000111111101111
6187 #*1011000111000100110101110110000010111100100000011011000010101100
6188 #*0011010110011011011000110110110000000001111100011010101010111111
6189 #*0111000011110000100101110011001011001101111000000011011010000101
6190 #*1010110010010000000001101101011010000011110010101110011100110000
6191 #*0000010101010000111110100001101111110001101111010011011111110010
6192 #*0011000110000001010000100110000011010101110001000110011011101110
6193 #*1001111100101010111010111011011101111011010110001100000100000000
6194 #*0100001100110000000000101010101100000110000011101001010111010111
6195 #*1011101110111010000011110101110010101000001010011111011100001110
6196 #*0111001000100110001000100111000110101000110000001000101100100001
6197 #*1010011110100111011101100110011110100010110010000010101011001001
6198 #*0010111111011100011011110011010100111110010110001100011110010010
6199 #*1101111001010010111011101001111011001000001111100010110111110010
6200 #*0011111110011110011001000101011110000000010110010100100110110101
6201 #*1101010111110000011100000100011010000111001001001100101100011100
6202 ;; After chi:
6203 #*1010111100010010111100101001001010001110111100001010110010111011
6204 #*1011010001111111010101010001101111001110101011111101111011000111
6205 #*1011011110011101000010001100000100011100001100000001001101100100
6206 #*0001110100101110101010101111101010101001111110110010000101000101
6207 #*1010010100111111011011101001011111101101011111011110000000011100
6208 #*0010110111111110010111011111110000001011010101001101110011110100
6209 #*0111101011010011110101000100010101000011111010000101011101101101
6210 #*1010000110100001111011110011100110100011101111011100000001110001
6211 #*0101011011000110110111000110101101000111110011001110010000011001
6212 #*0001111010100100010111001001100010111110111001100010110011101110
6213 #*1111000110100100010000110111001001110000100000011010010010101100
6214 #*1011100110011011011000111010100000000011111110110110101110001111
6215 #*0111000110110000011011110011101110111101110101010010011001000111
6216 #*0001110000010100000000111011011010001111110010100110011100111100
6217 #*0000000101001011110110100001011111110000110011010011110111100001
6218 #*0111000110010001010000100110100011010001110000100111001000111001
6219 #*0010011110100000111001101110001111010011011110011010001100001000
6220 #*0000001100110100001000101000101000000110110011101001110111110110
6221 #*1011101000111011010011110101110011111101001011011001001111000000
6222 #*1111110000001100100010111110011010000010110110000000101000100001
6223 #*0111011110100101111101101110110101100010111011100000001010101001
6224 #*0000111001010000011011110111010000111110000110011000011110010111
6225 #*0001111000110010111111101001111011001111000110101010111111111010
6226 #*0001110110011001011000100111011010100000100100010110100101110100
6227 #*1101110110101000011110010101011010011011001101000000111000001110
6228 ;; After iota:
6229 #*1110111100010011111100101001001010001110111100001010110010111010
6230 #*1011010001111111010101010001101111001110101011111101111011000111
6231 #*1011011110011101000010001100000100011100001100000001001101100100
6232 #*0001110100101110101010101111101010101001111110110010000101000101
6233 #*1010010100111111011011101001011111101101011111011110000000011100
6234 #*0010110111111110010111011111110000001011010101001101110011110100
6235 #*0111101011010011110101000100010101000011111010000101011101101101
6236 #*1010000110100001111011110011100110100011101111011100000001110001
6237 #*0101011011000110110111000110101101000111110011001110010000011001
6238 #*0001111010100100010111001001100010111110111001100010110011101110
6239 #*1111000110100100010000110111001001110000100000011010010010101100
6240 #*1011100110011011011000111010100000000011111110110110101110001111
6241 #*0111000110110000011011110011101110111101110101010010011001000111
6242 #*0001110000010100000000111011011010001111110010100110011100111100
6243 #*0000000101001011110110100001011111110000110011010011110111100001
6244 #*0111000110010001010000100110100011010001110000100111001000111001
6245 #*0010011110100000111001101110001111010011011110011010001100001000
6246 #*0000001100110100001000101000101000000110110011101001110111110110
6247 #*1011101000111011010011110101110011111101001011011001001111000000
6248 #*1111110000001100100010111110011010000010110110000000101000100001
6249 #*0111011110100101111101101110110101100010111011100000001010101001
6250 #*0000111001010000011011110111010000111110000110011000011110010111
6251 #*0001111000110010111111101001111011001111000110101010111111111010
6252 #*0001110110011001011000100111011010100000100100010110100101110100
6253 #*1101110110101000011110010101011010011011001101000000111000001110
6254
6255 ;; Round 17
6256
6257 ;; After theta:
6258 #*0101101100000100010111011000101010000101101001000011101011011011
6259 #*1011110001000111001001111110100101101101011000000001100100011010
6260 #*1001000101110101010011111010011011100001110011000111100110110100
6261 #*0010101000011110111100110111100100111111001010101001110010000101
6262 #*0100111111011111100110101101011001110010001110000110101011110001
6263 #*1001100111101001111100101110010000000000000000000100101010010101
6264 #*0111001011101011101001101011011111100000001001111001000010110000
6265 #*1000011101001001101010000101111001011110010000011010101010100001
6266 #*0110000111110110100001011110100011010001000111010101100111011001
6267 #*1111010001000100101010001101100100100001101000111010011000000011
6268 #*0100010110110011111011000110101001111011110101010011001011001101
6269 #*1011000110100011000100010101101010100000001101001010110001010010
6270 #*0101011101011000001010000101110001000000001010010100110010010111
6271 #*0010101100100100010110100011010100011001000110111101101011111100
6272 #*1110101110101011001011100101011001101111100010001011011100001100
6273 #*1100010110000110111011010111000011011010100101101110010001011000
6274 #*0010111110011000100101000001000101110000101101100110010011010101
6275 #*0010010111011100011001011110110111111011001100101111011100100110
6276 #*1000110100001011000101101101111101101011111111000010111000000000
6277 #*0001011011101100011111111010011100011101100111011000000011001100
6278 #*1100001110110010010110011111010101101001101110101001010011001000
6279 #*0000011001101000000111011000011010011101110101100100000001001010
6280 #*0011100011011010101110011111100100110010111001101100010100101010
6281 #*0010101010101001001110111111010100110110010000001101010010110100
6282 #*0011011101001000100011010001011100000100011100011000010011100011
6283 ;; After rho:
6284 #*0101101100000100010111011000101010000101101001000011101011011011
6285 #*0101111000100011100100111111010010110110101100000000110010001101
6286 #*0100010111010101001111101001101110000111001100011110011011010010
6287 #*1111001010101001110010000101001010100001111011110011011110010011
6288 #*0100011100001101010111100010100111111011111100110101101011001110
6289 #*0100000000000000000001001010100101011001100111101001111100101110
6290 #*0110101101111110000000100111100100001011000001110010111010111010
6291 #*1000011000011101001001101010000101111001011110010000011010101010
6292 #*1110110100001011110100011010001000111010101100111011001011000011
6293 #*0011101001100000001111110100010001001010100011011001001000011010
6294 #*1010100010110110011111011000110101001111011110101010011001011001
6295 #*0001010010101100011010001100010001010110101010000000110100101011
6296 #*0000101110001000000001010010100110010010111010101110101100000101
6297 #*1000110111101101011111100001010110010010001011010001101010001100
6298 #*1010110011011111000100010110111000011001110101110101011001011100
6299 #*1011100001101101010010110111001000101100011000101100001101110110
6300 #*1010000010001011100001011011001100100110101010010111110011000100
6301 #*1110111001001100010010111011100011001011110110111111011001100101
6302 #*1110000101110000000001000110100001011000101101101111101101011111
6303 #*1100110000010110111011000111111110100111000111011001110110000000
6304 #*1010010100110010001100001110110010010110011111010101101001101110
6305 #*1000000110011010000001110110000110100111011101011001000000010010
6306 #*1100011011010101110011111100100110010111001101100010100101010001
6307 #*1010100100111011111101010011011001000000110101001011010000101010
6308 #*0001001110001100110111010010001000110100010111000001000111000110
6309 ;; After pi:
6310 #*0101101100000100010111011000101010000101101001000011101011011011
6311 #*0110101101111110000000100111100100001011000001110010111010111010
6312 #*0000101110001000000001010010100110010010111010101110101100000101
6313 #*1110000101110000000001000110100001011000101101101111101101011111
6314 #*0001001110001100110111010010001000110100010111000001000111000110
6315 #*1111001010101001110010000101001010100001111011110011011110010011
6316 #*0011101001100000001111110100010001001010100011011001001000011010
6317 #*1010100010110110011111011000110101001111011110101010011001011001
6318 #*1010000010001011100001011011001100100110101010010111110011000100
6319 #*1100011011010101110011111100100110010111001101100010100101010001
6320 #*0101111000100011100100111111010010110110101100000000110010001101
6321 #*1000011000011101001001101010000101111001011110010000011010101010
6322 #*1000110111101101011111100001010110010010001011010001101010001100
6323 #*1100110000010110111011000111111110100111000111011001110110000000
6324 #*1010010100110010001100001110110010010110011111010101101001101110
6325 #*0100011100001101010111100010100111111011111100110101101011001110
6326 #*0100000000000000000001001010100101011001100111101001111100101110
6327 #*0001010010101100011010001100010001010110101010000000110100101011
6328 #*1110111001001100010010111011100011001011110110111111011001100101
6329 #*1010100100111011111101010011011001000000110101001011010000101010
6330 #*0100010111010101001111101001101110000111001100011110011011010010
6331 #*1110110100001011110100011010001000111010101100111011001011000011
6332 #*1010110011011111000100010110111000011001110101110101011001011100
6333 #*1011100001101101010010110111001000101100011000101100001101110110
6334 #*1000000110011010000001110110000110100111011101011001000000010010
6335 ;; After chi:
6336 #*0101101110000100010110001000101000010101010011001111101111011110
6337 #*1000101100001110000000100011100101000011000100110011111011100000
6338 #*0001100100000100110111000010101110110110101000101110101110000101
6339 #*1010100101110000000001001110000011011001000101101101000101000110
6340 #*0011001111110110110111110101001100111110010111110001010111100110
6341 #*0111001000111111100010001101101110100100100111010001001111010010
6342 #*0011101001101001101111110111011001101010000011001100101010011110
6343 #*1110111011100010001101111100010111011110011011001010011101001000
6344 #*1001000010100011100001011010000100000110011000000110101001000110
6345 #*1100111010010101111110001100110111011101001101101010100101011001
6346 #*0101011111000011110010111110000000110100101101000001010010001001
6347 #*1100011000001111101001101100101101011100011010011000001110101010
6348 #*1010110011001101011011101001010110000010010011010101100011100010
6349 #*1001011000010111011011110110111110000111100111011001100100000001
6350 #*0010010100101110000101001110110111011111001101000101100001001100
6351 #*0101001110100001001101100110110111111101110100110101101011001111
6352 #*1010101001000000000001111001000111010000110011010110110101101010
6353 #*0001010110011111110111001100001001010110101011000000110100100001
6354 #*1010100001001000010000011011000101110000111110001011110010100001
6355 #*1010100100111011111101011011011001000000110110000011000100001010
6356 #*0100010100000001001111101101011110000110011101011010001011001110
6357 #*1111110100101011100110111011001000011110100100110011001111100001
6358 #*1010110101001101000101010110111110011010110000100100011001011100
6359 #*1111110000101000011100111110100000101100011000101010010110110110
6360 #*0010100110010000110001100100000110011111111101111000000000010011
6361 ;; After iota:
6362 #*0101101010000100010110001000101000010101010011001111101111011111
6363 #*1000101100001110000000100011100101000011000100110011111011100000
6364 #*0001100100000100110111000010101110110110101000101110101110000101
6365 #*1010100101110000000001001110000011011001000101101101000101000110
6366 #*0011001111110110110111110101001100111110010111110001010111100110
6367 #*0111001000111111100010001101101110100100100111010001001111010010
6368 #*0011101001101001101111110111011001101010000011001100101010011110
6369 #*1110111011100010001101111100010111011110011011001010011101001000
6370 #*1001000010100011100001011010000100000110011000000110101001000110
6371 #*1100111010010101111110001100110111011101001101101010100101011001
6372 #*0101011111000011110010111110000000110100101101000001010010001001
6373 #*1100011000001111101001101100101101011100011010011000001110101010
6374 #*1010110011001101011011101001010110000010010011010101100011100010
6375 #*1001011000010111011011110110111110000111100111011001100100000001
6376 #*0010010100101110000101001110110111011111001101000101100001001100
6377 #*0101001110100001001101100110110111111101110100110101101011001111
6378 #*1010101001000000000001111001000111010000110011010110110101101010
6379 #*0001010110011111110111001100001001010110101011000000110100100001
6380 #*1010100001001000010000011011000101110000111110001011110010100001
6381 #*1010100100111011111101011011011001000000110110000011000100001010
6382 #*0100010100000001001111101101011110000110011101011010001011001110
6383 #*1111110100101011100110111011001000011110100100110011001111100001
6384 #*1010110101001101000101010110111110011010110000100100011001011100
6385 #*1111110000101000011100111110100000101100011000101010010110110110
6386 #*0010100110010000110001100100000110011111111101111000000000010011
6387
6388 ;; Round 18
6389
6390 ;; After theta:
6391 #*1001001001100011100110111101110100101011101010101011101010011010
6392 #*1001001100101010101101110101100110101110101001101001010111001100
6393 #*0100010011010101001101011011011110001111101100100101111101010001
6394 #*0110011011111010010010000111010010001110010000101010010011100001
6395 #*0111110010111110000010101010000111000101010011111010110010110010
6396 #*1011101011011000010010111000110010011010011110110101001010010111
6397 #*0010001001001101000010100001011010000111101110010110000110110010
6398 #*1011001100110011110111100101100111100111011111000001001110011100
6399 #*0101111100101001110010010011010101010001001101000001111111100001
6400 #*1000000111011101001011010011111100100110001001100001000000001101
6401 #*1001111100100100000010001011011100001010010100100101010111001100
6402 #*1101111000101011000100111010101110110001110111000010100010000110
6403 #*1111000100011100100001110000100110111011010111011110110000110110
6404 #*0101100110011101001000111111101111010000110010011110110010100110
6405 #*0110101001100110110000010001111100100100001001001110000100011000
6406 #*1001101101000110111101010011101011000011001101010001101110001010
6407 #*1011001001100100101100101111000100111101011110001100011001000110
6408 #*0100100001001110001101010101111001101111101111001011100111110101
6409 #*0110011111000010000011010010010100100111101011001100100100000110
6410 #*1110011001110011001000000100010010111011110010001000100001011110
6411 #*1000110111100110111111011000000010111000100100111110001110001011
6412 #*1110010100001111001011101101001011110011001001101001100011001101
6413 #*1111000010011100111111001111001110100011110100101111001010001000
6414 #*0011001110100010001111110111110001111011001101101101000000010001
6415 #*0110011011011000000100111011001101100100111001110011100101000111
6416 ;; After rho:
6417 #*1001001001100011100110111101110100101011101010101011101010011010
6418 #*0100100110010101010110111010110011010111010100110100101011100110
6419 #*0001001101010100110101101101111000111110110010010111110101000101
6420 #*1110010000101010010011100001011001101111101001001000011101001000
6421 #*1010100111110101100101100100111110010111110000010101010000111000
6422 #*1100100110100111101101010010100101111011101011011000010010111000
6423 #*1010000101101000011110111001011000011011001000100010010011010000
6424 #*0111001011001100110011110111100101100111100111011111000001001110
6425 #*0101001110010010011010101010001001101000001111111100001010111110
6426 #*0110000100000000110110000001110111010010110100111111001001100010
6427 #*1001001111100100100000010001011011100001010010100100101010111001
6428 #*0010000110110111100010101100010011101010111011000111011100001010
6429 #*1110000100110111011010111011110110000110110111100010001110010000
6430 #*0110010011110110010100110010110011001110100100011111110111101000
6431 #*0011111001001000010010011100001000110000110101001100110110000010
6432 #*1001110101100001100110101000110111000101010011011010001101111010
6433 #*1001011110001001111010111100011000110010001101011001001100100101
6434 #*0111001111101010100100001001110001101010101111001101111101111001
6435 #*0110011001001000001100110011111000010000011010010010100100111101
6436 #*0101111011100110011100110010000001000100101110111100100010001000
6437 #*1111100011100010111000110111100110111111011000000010111000100100
6438 #*0111100101000011110010111011010010111100110010011010011000110011
6439 #*1000010011100111111001111001110100011110100101111001010001000111
6440 #*1010001000111111011111000111101100110110110100000001000100110011
6441 #*1110010100011101100110110110000001001110110011011001001110011100
6442 ;; After pi:
6443 #*1001001001100011100110111101110100101011101010101011101010011010
6444 #*1010000101101000011110111001011000011011001000100010010011010000
6445 #*1110000100110111011010111011110110000110110111100010001110010000
6446 #*0110011001001000001100110011111000010000011010010010100100111101
6447 #*1110010100011101100110110110000001001110110011011001001110011100
6448 #*1110010000101010010011100001011001101111101001001000011101001000
6449 #*0110000100000000110110000001110111010010110100111111001001100010
6450 #*1001001111100100100000010001011011100001010010100100101010111001
6451 #*1001011110001001111010111100011000110010001101011001001100100101
6452 #*1000010011100111111001111001110100011110100101111001010001000111
6453 #*0100100110010101010110111010110011010111010100110100101011100110
6454 #*0111001011001100110011110111100101100111100111011111000001001110
6455 #*0110010011110110010100110010110011001110100100011111110111101000
6456 #*0101111011100110011100110010000001000100101110111100100010001000
6457 #*1111100011100010111000110111100110111111011000000010111000100100
6458 #*1010100111110101100101100100111110010111110000010101010000111000
6459 #*1100100110100111101101010010100101111011101011011000010010111000
6460 #*0010000110110111100010101100010011101010111011000111011100001010
6461 #*0111001111101010100100001001110001101010101111001101111101111001
6462 #*1010001000111111011111000111101100110110110100000001000100110011
6463 #*0001001101010100110101101101111000111110110010010111110101000101
6464 #*0101001110010010011010101010001001101000001111111100001010111110
6465 #*0011111001001000010010011100001000110000110101001100110110000010
6466 #*1001110101100001100110101000110111000101010011011010001101111010
6467 #*0111100101000011110010111011010010111100110010011010011000110011
6468 ;; After chi:
6469 #*1101001001110100100110111111010010101111011101101011100110011010
6470 #*1010011100100000011010111001010000001011000000110010110011111101
6471 #*0110000000100010111000111111110111001000010110101011000100010000
6472 #*0111010000101010001100111010001100110001010010110000000100111111
6473 #*1100010000010101111110110110001001011110110011011001011111011100
6474 #*0111011011001110010011110001010001001110101011001000111111010001
6475 #*0110010100001001101100101101110111000000111001100110001101100110
6476 #*1001001110000010100001010000111111101101110010000100111011111011
6477 #*1111011110000001111000111100010001010011000101011001000000101101
6478 #*1000010111100111011101111001010010001110110001001110010001100101
6479 #*0100110110100111010010111010100001011111010100110100011101000110
6480 #*0110100011001100111011110111100101100111101101111111000001001110
6481 #*1100010011110110110100110111010101110101110100011101101111001100
6482 #*0101111111110011011010111010010000000100101010001000100001001010
6483 #*1100101010101010011001110010100010011111111011001001111000101100
6484 #*1000100111100101100111001000101100010111100000010010011100111010
6485 #*1001101111101111101001010011000101111011101111010000110011001001
6486 #*1010000110100010111001101010011111111110101011000111011100001000
6487 #*0111101000101010000100101001100011101011101111011001101101110001
6488 #*1110001000111101010111010101101101011110111111001001000110110011
6489 #*0011111100011100110101111001111000101110000010010111000001000101
6490 #*1101001010110011111110001010111110101101001101101110000011000110
6491 #*0101111001001010000010001111001000001000010101001100100110000011
6492 #*1001111101110101100011101100011111000111010011011111101000111110
6493 #*0011100111000001111000111001010011111100111111110010010010001001
6494 ;; After iota:
6495 #*1000001001110101100110111111010010101111011101101011100110011010
6496 #*1010011100100000011010111001010000001011000000110010110011111101
6497 #*0110000000100010111000111111110111001000010110101011000100010000
6498 #*0111010000101010001100111010001100110001010010110000000100111111
6499 #*1100010000010101111110110110001001011110110011011001011111011100
6500 #*0111011011001110010011110001010001001110101011001000111111010001
6501 #*0110010100001001101100101101110111000000111001100110001101100110
6502 #*1001001110000010100001010000111111101101110010000100111011111011
6503 #*1111011110000001111000111100010001010011000101011001000000101101
6504 #*1000010111100111011101111001010010001110110001001110010001100101
6505 #*0100110110100111010010111010100001011111010100110100011101000110
6506 #*0110100011001100111011110111100101100111101101111111000001001110
6507 #*1100010011110110110100110111010101110101110100011101101111001100
6508 #*0101111111110011011010111010010000000100101010001000100001001010
6509 #*1100101010101010011001110010100010011111111011001001111000101100
6510 #*1000100111100101100111001000101100010111100000010010011100111010
6511 #*1001101111101111101001010011000101111011101111010000110011001001
6512 #*1010000110100010111001101010011111111110101011000111011100001000
6513 #*0111101000101010000100101001100011101011101111011001101101110001
6514 #*1110001000111101010111010101101101011110111111001001000110110011
6515 #*0011111100011100110101111001111000101110000010010111000001000101
6516 #*1101001010110011111110001010111110101101001101101110000011000110
6517 #*0101111001001010000010001111001000001000010101001100100110000011
6518 #*1001111101110101100011101100011111000111010011011111101000111110
6519 #*0011100111000001111000111001010011111100111111110010010010001001
6520
6521 ;; Round 19
6522
6523 ;; After theta:
6524 #*1010001100001101011110110011001001111111111111000100100011011000
6525 #*1100110010011010100100100010000011011111010111111100011111011001
6526 #*0001111100011000000110111001110110010111100000001101111011000001
6527 #*0001010011000110010000101111100101100001000000111011011111000100
6528 #*1111101011100000001101101101000011010111010010110111110011110010
6529 #*0101011110110110101011111101001010011110001001100111111010010011
6530 #*0000111010110011010010110110100100010100101110101000100001000010
6531 #*1110110010111000011111010110111110110010000100100010000100101010
6532 #*1001011101101101100100101001111000000011010111010010011011010110
6533 #*1011101100010010101110100010011000000111010000100000111101001011
6534 #*0110110011011111101010110110111010001111110110011011011000000100
6535 #*0000001101110110000101101100110110110011111010110001101101101010
6536 #*1011101111001100001010110001010100101010000010111011010000011101
6537 #*0011111100011111000110101111111001010100111000000011111010110001
6538 #*1111010001011111101010101001101000010110011010100111010100000010
6539 #*1010100010011101011111000100110111000111000010111101011001111000
6540 #*1111000001010101010111001000010110101111111000011110011111101101
6541 #*1101111010011000000111101100011110100001011101100001100011011001
6542 #*0001101011000110011000111100001010111011111101010010110110001010
6543 #*1101110011001000100100001110100111010111011110100111101010011101
6544 #*0001111001100100001101110101100011111110100000111000000100000111
6545 #*1011100100001001000000010001101101111001011010100000101111100010
6546 #*0010000101110000111100001001001001010111100011101010011001010010
6547 #*1111111110011001111111111001110110010111000001010100110011000101
6548 #*0000011100110100001011100010011001110101011110011100111110100111
6549 ;; After rho:
6550 #*1010001100001101011110110011001001111111111111000100100011011000
6551 #*1110011001001101010010010001000001101111101011111110001111101100
6552 #*0111110001100000011011100111011001011110000000110111101100000100
6553 #*0001000000111011011111000100000101001100011001000010111110010110
6554 #*1110100101101111100111100101111101011100000001101101101000011010
6555 #*0010100111100010011001111110100100110101011110110110101011111101
6556 #*1011011010010001010010111010100010000100001000001110101100110100
6557 #*1010101110110010111000011111010110111110110010000100100010000100
6558 #*1101101100100101001111000000011010111010010011011010110100101110
6559 #*0010000011110100101110111011000100101011101000100110000001110100
6560 #*1000110110011011111101010110110111010001111110110011011011000000
6561 #*1101101010000000110111011000010110110011011011001111101011000110
6562 #*0110001010100101010000010111011010000011101101110111100110000101
6563 #*0111000000011111010110001001111110001111100011010111111100101010
6564 #*0011010000101100110101001110101000000101111010001011111101010101
6565 #*0010011011100011100001011110101100111100010101000100111010111110
6566 #*1110010000101101011111110000111100111111011011111000001010101010
6567 #*0011000110110011101111010011000000111101100011110100001011101100
6568 #*1010100101101100010100001101011000110011000111100001010111011111
6569 #*1001110111011100110010001001000011101001110101110111101001111010
6570 #*1110000001000001110001111001100100001101110101100011111110100000
6571 #*1010111001000010010000000100011011011110010110101000001011111000
6572 #*0000101110000111100001001001001010111100011101010011001010010001
6573 #*1001100111111111100111011001011100000101010011001100010111111111
6574 #*0011111010011100000111001101000010111000100110011101010111100111
6575 ;; After pi:
6576 #*1010001100001101011110110011001001111111111111000100100011011000
6577 #*1011011010010001010010111010100010000100001000001110101100110100
6578 #*0110001010100101010000010111011010000011101101110111100110000101
6579 #*1010100101101100010100001101011000110011000111100001010111011111
6580 #*0011111010011100000111001101000010111000100110011101010111100111
6581 #*0001000000111011011111000100000101001100011001000010111110010110
6582 #*0010000011110100101110111011000100101011101000100110000001110100
6583 #*1000110110011011111101010110110111010001111110110011011011000000
6584 #*1110010000101101011111110000111100111111011011111000001010101010
6585 #*0000101110000111100001001001001010111100011101010011001010010001
6586 #*1110011001001101010010010001000001101111101011111110001111101100
6587 #*1010101110110010111000011111010110111110110010000100100010000100
6588 #*0111000000011111010110001001111110001111100011010111111100101010
6589 #*1001110111011100110010001001000011101001110101110111101001111010
6590 #*1110000001000001110001111001100100001101110101100011111110100000
6591 #*1110100101101111100111100101111101011100000001101101101000011010
6592 #*0010100111100010011001111110100100110101011110110110101011111101
6593 #*1101101010000000110111011000010110110011011011001111101011000110
6594 #*0011000110110011101111010011000000111101100011110100001011101100
6595 #*1001100111111111100111011001011100000101010011001100010111111111
6596 #*0111110001100000011011100111011001011110000000110111101100000100
6597 #*1101101100100101001111000000011010111010010011011010110100101110
6598 #*0011010000101100110101001110101000000101111010001011111101010101
6599 #*0010011011100011100001011110101100111100010101000100111010111110
6600 #*1010111001000010010000000100011011011110010110101000001011111000
6601 ;; After chi:
6602 #*1110001100101001011110110110010001111100011010110101100001011001
6603 #*0011111111011001010110110010100010110100001010001110111101101110
6604 #*0111010000110101010011010111011000001011001101101011100110100101
6605 #*0010100001101101001100111111010001110100011110100001110111000111
6606 #*0010101000001100000111000101100000111000100110010111011011000011
6607 #*1001110100110000001110000000110110011100001111010011100100010110
6608 #*0100000011010000101100011011001100000101101001101110000001011110
6609 #*1000011000011001011101011111110101010001111010110000011011010001
6610 #*1111010000010101000001110100111001111111011011111000111110101100
6611 #*0010101101000011000001110010001010011111111101110111001011110001
6612 #*1011011001000000010100010001101001101110101010101101010011000110
6613 #*0010011001110010011000011111010111011110100110100100100011010100
6614 #*0001000000011110010111111001011010001011100011010111101010101010
6615 #*1001101111010000110000001001000010001011111111101011101000110110
6616 #*1110100111110011011001110111110010011101100101100011011110100000
6617 #*0011101101101111000001100101101111011110000000100100101000011000
6618 #*0000100011010001010001111101100100111001111110000110101011010101
6619 #*0101001011001100110111010000001010110011001011000111111111010101
6620 #*0101000110110011101111110111100001100101100011010101100011101100
6621 #*1001100101111111111111000011011100100100001101011110010100011010
6622 #*0101100001101000101011101001111001011011101000110110100101010101
6623 #*1101100111100110001111010000011110000010010110011110110110000100
6624 #*1011110000101100100101001110111011000111111000100011111100010101
6625 #*0111011011000011101010111101101100111100010101010011011110111010
6626 #*0010110101000111010100000100011001111110000101100000011011010010
6627 ;; After iota:
6628 #*1011001100101001011110110110010101111100011010110101100001011000
6629 #*0011111111011001010110110010100010110100001010001110111101101110
6630 #*0111010000110101010011010111011000001011001101101011100110100101
6631 #*0010100001101101001100111111010001110100011110100001110111000111
6632 #*0010101000001100000111000101100000111000100110010111011011000011
6633 #*1001110100110000001110000000110110011100001111010011100100010110
6634 #*0100000011010000101100011011001100000101101001101110000001011110
6635 #*1000011000011001011101011111110101010001111010110000011011010001
6636 #*1111010000010101000001110100111001111111011011111000111110101100
6637 #*0010101101000011000001110010001010011111111101110111001011110001
6638 #*1011011001000000010100010001101001101110101010101101010011000110
6639 #*0010011001110010011000011111010111011110100110100100100011010100
6640 #*0001000000011110010111111001011010001011100011010111101010101010
6641 #*1001101111010000110000001001000010001011111111101011101000110110
6642 #*1110100111110011011001110111110010011101100101100011011110100000
6643 #*0011101101101111000001100101101111011110000000100100101000011000
6644 #*0000100011010001010001111101100100111001111110000110101011010101
6645 #*0101001011001100110111010000001010110011001011000111111111010101
6646 #*0101000110110011101111110111100001100101100011010101100011101100
6647 #*1001100101111111111111000011011100100100001101011110010100011010
6648 #*0101100001101000101011101001111001011011101000110110100101010101
6649 #*1101100111100110001111010000011110000010010110011110110110000100
6650 #*1011110000101100100101001110111011000111111000100011111100010101
6651 #*0111011011000011101010111101101100111100010101010011011110111010
6652 #*0010110101000111010100000100011001111110000101100000011011010010
6653
6654 ;; Round 20
6655
6656 ;; After theta:
6657 #*0010101110001011110100111100101001110110111010100110100001011000
6658 #*1100001011101110111101101110011101101101101110100011101100100100
6659 #*0100110000010101110011001000001000110011000110101101101010010101
6660 #*0000101011111101011101010011111001100001100010010111000011110100
6661 #*1011011101111011101000011000101001100100000001001111101010101010
6662 #*0000010110010010100100001010001010010110101111000000100100010110
6663 #*1011110111100111000111000111110011011100001101000011010000010100
6664 #*1011111000111001111101000000100101101001110001110110010111100001
6665 #*1101011010000101010000011000010001101010100111001110001010011111
6666 #*1011011000110100101110101111000011000011011010101111111010011000
6667 #*0010111011100010111110011011010101100100001010111110010011000110
6668 #*1101101101000101110011000011101000000111000010001001110010011110
6669 #*0010100000111110110111100110001010110011101000010001100110011010
6670 #*1011100101000000100001100101101010011110000011011101011100000101
6671 #*0111010010000100110110101010111011000001000010111011101111001001
6672 #*1010001111001101101011101111010011010100100000110111101000011000
6673 #*1111010111100110111010100001011011100000011010101011111010011111
6674 #*0110101011101100010111001111011010001011000000000001110011100101
6675 #*0111001100100011111110011011001001110000011111100011010111011111
6676 #*0000010000001000010000011110010101111000101010000110100101110011
6677 #*1100000011001010000001100011000101010001001000100101100101010101
6678 #*0010010011010001100100001100100001011011110010110011100111001110
6679 #*1000010000001100000101010001101011111111110011100101110000100101
6680 #*0101010001010011111011010001000100101001101001100101101010001001
6681 #*1011000000110000111011011001010000100010100010111000101010111011
6682 ;; After rho:
6683 #*0010101110001011110100111100101001110110111010100110100001011000
6684 #*0110000101110111011110110111001110110110110111010001110110010010
6685 #*0011000001010111001100100000100011001100011010110110101001010101
6686 #*0001100010010111000011110100000010101111110101110101001111100110
6687 #*1000000010011111010101010101011011101111011101000011000101001100
6688 #*0010100101101011110000001001000101100000010110010010100100001010
6689 #*1100011111001101110000110100001101000001010010111101111001110001
6690 #*1000011011111000111001111101000000100101101001110001110110010111
6691 #*0000101010000011000010001101010100111001110001010011111110101101
6692 #*1010111111101001100010110110001101001011101011110000110000110110
6693 #*1100010111011100010111110011011010101100100001010111110010011000
6694 #*0010011110110110110100010111001100001110100000011100001000100111
6695 #*1100110001010110011101000010001100110011010001010000011111011011
6696 #*0000011011101011100000101101110010100000010000110010110101001111
6697 #*0101110110000010000101110111011110010010111010010000100110110101
6698 #*0111101001101010010000011011110100001100010100011110011011010111
6699 #*0101000010110111000000110101010111110100111111111010111100110111
6700 #*0011100111001010110101011101100010111001111011010001011000000000
6701 #*1111000110101110111110111001100100011111110011011001001110000011
6702 #*0111001100000100000010000100000111100101011110001010100001101001
6703 #*1001011001010101011100000011001010000001100011000101010001001000
6704 #*1000100100110100011001000011001000010110111100101100111001110011
6705 #*0010000001100000101010001101011111111110011100101110000100101100
6706 #*0101001111101101000100010010100110100110010110101000100101010100
6707 #*0010101011101110110000001100001110110110010100001000101000101110
6708 ;; After pi:
6709 #*0010101110001011110100111100101001110110111010100110100001011000
6710 #*1100011111001101110000110100001101000001010010111101111001110001
6711 #*1100110001010110011101000010001100110011010001010000011111011011
6712 #*1111000110101110111110111001100100011111110011011001001110000011
6713 #*0010101011101110110000001100001110110110010100001000101000101110
6714 #*0001100010010111000011110100000010101111110101110101001111100110
6715 #*1010111111101001100010110110001101001011101011110000110000110110
6716 #*1100010111011100010111110011011010101100100001010111110010011000
6717 #*0101000010110111000000110101010111110100111111111010111100110111
6718 #*0010000001100000101010001101011111111110011100101110000100101100
6719 #*0110000101110111011110110111001110110110110111010001110110010010
6720 #*1000011011111000111001111101000000100101101001110001110110010111
6721 #*0000011011101011100000101101110010100000010000110010110101001111
6722 #*0111001100000100000010000100000111100101011110001010100001101001
6723 #*1001011001010101011100000011001010000001100011000101010001001000
6724 #*1000000010011111010101010101011011101111011101000011000101001100
6725 #*0010100101101011110000001001000101100000010110010010100100001010
6726 #*0010011110110110110100010111001100001110100000011100001000100111
6727 #*0011100111001010110101011101100010111001111011010001011000000000
6728 #*0101001111101101000100010010100110100110010110101000100101010100
6729 #*0011000001010111001100100000100011001100011010110110101001010101
6730 #*0000101010000011000010001101010100111001110001010011111110101101
6731 #*0101110110000010000101110111011110010010111010010000100110110101
6732 #*0111101001101010010000011011110100001100010100011110011011010111
6733 #*1000100100110100011001000011001000010110111100101100111001110011
6734 ;; After chi:
6735 #*0010001110011001111001111110101001000100111011100110100111010010
6736 #*1111011001100101010010001101101101001101110000110100111001110001
6737 #*1100011000010110011101000110000110010011010101010000111111110111
6738 #*1111000010101111111010001001000101011111011001111111001111010011
6739 #*1110111010101010110000001100001010110111010100010001110000001111
6740 #*0101100010000011010110110101010000001011110101110010001101101110
6741 #*1011111111001010100010110010001000011011110101011000111100010001
6742 #*1110010110011100111101111011010010100110100001010011110010010000
6743 #*0100100000100000000001000101010111110101011110101011110111110101
6744 #*1000011100001000001010001111010010111110010110101110110100111100
6745 #*0110000101110100011110110111111100110110100111010011110111011010
6746 #*1111011111111100111011111101000101100000100111111001110110110111
6747 #*1000001010111010111100101110111010100000110001110111100101001111
6748 #*0001001000100110000000110000000011010011001010011010000111111011
6749 #*0001000011011101111101001011001010000000101011100101010001001101
6750 #*1000011000001011010001000011010011100001111101001111001101101001
6751 #*0011000100100011110001000001100111010001001101010011110100001010
6752 #*0110010110010011110100010101001000001000100100110100101101110011
6753 #*1011100111011000100100011000111011110000110010010010011000001000
6754 #*0111101010001101100100011010100010100110010100111000000101010110
6755 #*0110010101010111001001010010101001001110010000110110101001000101
6756 #*0010100011101011010010000101110100110101110101011101100111101111
6757 #*1101110010010110001100110111010110000000010010110000000110010101
6758 #*0100101000101001010100111011010111000100010110001100011011010011
6759 #*1000001110110100011011001110011100100111011101101101101111011011
6760 ;; After iota:
6761 #*1010001010011000111001111110101101000100111011100110100111010011
6762 #*1111011001100101010010001101101101001101110000110100111001110001
6763 #*1100011000010110011101000110000110010011010101010000111111110111
6764 #*1111000010101111111010001001000101011111011001111111001111010011
6765 #*1110111010101010110000001100001010110111010100010001110000001111
6766 #*0101100010000011010110110101010000001011110101110010001101101110
6767 #*1011111111001010100010110010001000011011110101011000111100010001
6768 #*1110010110011100111101111011010010100110100001010011110010010000
6769 #*0100100000100000000001000101010111110101011110101011110111110101
6770 #*1000011100001000001010001111010010111110010110101110110100111100
6771 #*0110000101110100011110110111111100110110100111010011110111011010
6772 #*1111011111111100111011111101000101100000100111111001110110110111
6773 #*1000001010111010111100101110111010100000110001110111100101001111
6774 #*0001001000100110000000110000000011010011001010011010000111111011
6775 #*0001000011011101111101001011001010000000101011100101010001001101
6776 #*1000011000001011010001000011010011100001111101001111001101101001
6777 #*0011000100100011110001000001100111010001001101010011110100001010
6778 #*0110010110010011110100010101001000001000100100110100101101110011
6779 #*1011100111011000100100011000111011110000110010010010011000001000
6780 #*0111101010001101100100011010100010100110010100111000000101010110
6781 #*0110010101010111001001010010101001001110010000110110101001000101
6782 #*0010100011101011010010000101110100110101110101011101100111101111
6783 #*1101110010010110001100110111010110000000010010110000000110010101
6784 #*0100101000101001010100111011010111000100010110001100011011010011
6785 #*1000001110110100011011001110011100100111011101101101101111011011
6786
6787 ;; Round 21
6788
6789 ;; After theta:
6790 #*0111000100010011110101100001011000100101010110100100101000111001
6791 #*1000001001001100001001111000101110010101001101110010000001011101
6792 #*0100110100100001110000101111001011100111111011100011000001000110
6793 #*0010100010111001000010110110100011000110111010001000110011100100
6794 #*0000101111101011001111100101001010010001111111011110010000101100
6795 #*1000101100001000011010101010100101101010011000110000000010000100
6796 #*1100101111100011111001000111001011000011001000011110000100111101
6797 #*0110111010101011010000010010011111010010001111100000001100100001
6798 #*1001000000110110111001111010110001101100111101011100001011000010
6799 #*0110001001001001110101100110010010011000111101100001010100011111
6800 #*1011001011111111010010101000001001010111001010010001111000110000
6801 #*1000001111010101100000001000000110111000011010111111001110011011
6802 #*0000100110001101010001000111110111010100011111000100011011111110
6803 #*1100101000110000111000001111100101001010101001101101111011001100
6804 #*1111010110011100000010100010001010100110000000101010110001101110
6805 #*0101010110000000011101011100100110000000010000001101000010000011
6806 #*0100010100001010101010110100100100001001110000010101001100100110
6807 #*1110111010100100011001111100000101111100001010000111010011000010
6808 #*0110000111001110011100100111011101101001010001100101100100111111
6809 #*1001111111001100011011110011100010000000111111110111100101110101
6810 #*1011011011011100000101001101011100101111111101110100100110101111
6811 #*0101110011000010001001110000110111101101001000011011011111000011
6812 #*0101011110100001100001011110011011110100111100000011111000100100
6813 #*1001001000111111101100000100110001011101110101111011100111100100
6814 #*0110011011110101100100100111011100000001110110100010001111111000
6815 ;; After rho:
6816 #*0111000100010011110101100001011000100101010110100100101000111001
6817 #*1100000100100110000100111100010111001010100110111001000000101110
6818 #*0011010010000111000010111100101110011111101110001100000100011001
6819 #*0110111010001000110011100100001010001011100100001011011010001100
6820 #*0011111110111100100001011000000101111101011001111100101001010010
6821 #*1001011010100110001100000000100001001000101100001000011010101010
6822 #*0100011100101100001100100001111000010011110111001011111000111110
6823 #*1000010110111010101011010000010010011111010010001111100000001100
6824 #*0110110111001111010110001101100111101011100001011000010100100000
6825 #*0110000101010001111101100010010010011101011001100100100110001111
6826 #*0001011001011111111010010101000001001010111001010010001111000110
6827 #*1110011011100000111101010110000000100000011011100001101011111100
6828 #*1000111110111010100011111000100011011111110000010011000110101000
6829 #*0101001101101111011001100110010100011000011100000111110010100101
6830 #*0100010101001100000001010101100011011101111010110011100000010100
6831 #*1110010011000000001000000110100001000001101010101100000000111010
6832 #*0101101001001000010011100000101010011001001100100010100001010101
6833 #*1110100110000101110111010100100011001111100000101111100001010000
6834 #*0011001011001001111110110000111001110011100100111011101101001010
6835 #*0111010110011111110011000110111100111000100000001111111101111001
6836 #*1101001001101011111011011011011100000101001101011100101111111101
6837 #*1101011100110000100010011100001101111011010010000110110111110000
6838 #*1011110100001100001011110011011110100111100000011111000100100010
6839 #*0011111110110000010011000101110111010111101110011110010010010010
6840 #*1000111111100001100110111101011001001001110111000000011101101000
6841 ;; After pi:
6842 #*0111000100010011110101100001011000100101010110100100101000111001
6843 #*0100011100101100001100100001111000010011110111001011111000111110
6844 #*1000111110111010100011111000100011011111110000010011000110101000
6845 #*0011001011001001111110110000111001110011100100111011101101001010
6846 #*1000111111100001100110111101011001001001110111000000011101101000
6847 #*0110111010001000110011100100001010001011100100001011011010001100
6848 #*0110000101010001111101100010010010011101011001100100100110001111
6849 #*0001011001011111111010010101000001001010111001010010001111000110
6850 #*0101101001001000010011100000101010011001001100100010100001010101
6851 #*1011110100001100001011110011011110100111100000011111000100100010
6852 #*1100000100100110000100111100010111001010100110111001000000101110
6853 #*1000010110111010101011010000010010011111010010001111100000001100
6854 #*0101001101101111011001100110010100011000011100000111110010100101
6855 #*0111010110011111110011000110111100111000100000001111111101111001
6856 #*1101001001101011111011011011011100000101001101011100101111111101
6857 #*0011111110111100100001011000000101111101011001111100101001010010
6858 #*1001011010100110001100000000100001001000101100001000011010101010
6859 #*1110011011100000111101010110000000100000011011100001101011111100
6860 #*1110100110000101110111010100100011001111100000101111100001010000
6861 #*0011111110110000010011000101110111010111101110011110010010010010
6862 #*0011010010000111000010111100101110011111101110001100000100011001
6863 #*0110110111001111010110001101100111101011100001011000010100100000
6864 #*0100010101001100000001010101100011011101111010110011100000010100
6865 #*1110010011000000001000000110100001000001101010101100000000111010
6866 #*1101011100110000100010011100001101111011010010000110110111110000
6867 ;; After chi:
6868 #*1111100110000001010110111001011011101001010110110100101110111001
6869 #*0111011101101101010000100001100000110011110011100011010001111100
6870 #*0000001010011010100011110101100011010111100011010011010110001000
6871 #*0100001011011011101111110000111001010111100100011111001101011011
6872 #*1000100111001101101110111101111001011011010110001011001101101110
6873 #*0111100010000110110001110001001011001001000100011001010011001100
6874 #*0010100101010001111100000010111000001100011101000100000110011110
6875 #*1011001101011011110010000110010101101100011001001111001011100100
6876 #*0001100011001000100011100100101010010001001000100010111011011001
6877 #*1011110001011101000111110001001110110011111001111011100000100001
6878 #*1001001101100011010100011010010011001010101010111001010010001111
6879 #*1010000100101010001001010000111010111111110010000111101101010100
6880 #*1101000100001111010001111111010100011101010001010111110000100001
6881 #*0111010010011011110111100010111111110010000010101110111101111011
6882 #*1101011011110011010000011011011100010000011101011010001111111101
6883 #*0101111111111100010000001110000101011101001010011101001000000110
6884 #*1001111110100011001110000000000010000111001100000110011010101010
6885 #*1111000011010000111101010111010100110000010101110001111001111110
6886 #*1110100110001001010111001100100011100111110001001111001000010000
6887 #*1011111110110010011111000101010111010111001010011110000000111010
6888 #*0011010010000111000011101100101110001011110100101111100100001101
6889 #*1100110101001111011110001111100111101011100001010100010100001010
6890 #*0101011001111100100011001101101111100111101010110001010111010100
6891 #*1100010001000111001000100110000011000101000110100100000000110011
6892 #*1001111001111000110110011101001100011011010011010110100111010000
6893 ;; After iota:
6894 #*1111100010000000010110111001011011101001010110110100101110111000
6895 #*0111011101101101010000100001100000110011110011100011010001111100
6896 #*0000001010011010100011110101100011010111100011010011010110001000
6897 #*0100001011011011101111110000111001010111100100011111001101011011
6898 #*1000100111001101101110111101111001011011010110001011001101101110
6899 #*0111100010000110110001110001001011001001000100011001010011001100
6900 #*0010100101010001111100000010111000001100011101000100000110011110
6901 #*1011001101011011110010000110010101101100011001001111001011100100
6902 #*0001100011001000100011100100101010010001001000100010111011011001
6903 #*1011110001011101000111110001001110110011111001111011100000100001
6904 #*1001001101100011010100011010010011001010101010111001010010001111
6905 #*1010000100101010001001010000111010111111110010000111101101010100
6906 #*1101000100001111010001111111010100011101010001010111110000100001
6907 #*0111010010011011110111100010111111110010000010101110111101111011
6908 #*1101011011110011010000011011011100010000011101011010001111111101
6909 #*0101111111111100010000001110000101011101001010011101001000000110
6910 #*1001111110100011001110000000000010000111001100000110011010101010
6911 #*1111000011010000111101010111010100110000010101110001111001111110
6912 #*1110100110001001010111001100100011100111110001001111001000010000
6913 #*1011111110110010011111000101010111010111001010011110000000111010
6914 #*0011010010000111000011101100101110001011110100101111100100001101
6915 #*1100110101001111011110001111100111101011100001010100010100001010
6916 #*0101011001111100100011001101101111100111101010110001010111010100
6917 #*1100010001000111001000100110000011000101000110100100000000110011
6918 #*1001111001111000110110011101001100011011010011010110100111010000
6919
6920 ;; Round 22
6921
6922 ;; After theta:
6923 #*0110110011010100011100001000101000101011100101101111110001101011
6924 #*1110110001000010111111011010000100110111011111000000110011111111
6925 #*1010111011000011000100000111100010110000011110011101100011110011
6926 #*1110010111101101011001100001011000111100100101100101001100010000
6927 #*1011011010000100011010111001100001010011001100100000001111001100
6928 #*1110110011010010111011000000111000001011110111000010001100011111
6929 #*1011001001111110010011111001011100001000110001100111100100011101
6930 #*0001111100000010010101110100010100001011100100000001111110011111
6931 #*1011111111111110010101110101001011111010001001011000111010010010
6932 #*1000001100010100110011110101010110111011100011010000100010000011
6933 #*0000011100110111011110101011100000001000011001100010001101011100
6934 #*0011101000000101100110101011011110111011011110100100001111010111
6935 #*0111110101010110110110001101010101111010101100011001000101011010
6936 #*1101001110101101000001110011011110011001000011010100111100110000
6937 #*1110100110111010100100011111000100011000000111110001001101011111
6938 #*1100101110101000011010111111110110011111111001000110010111010101
6939 #*0000010010001100100001111011100110000011100000100101111000101001
6940 #*0101110010001001011010100101010101010111101000111111001100000101
6941 #*0100111010111111100001011101000010001100110000110101001001011011
6942 #*1000000011111011101011000001001111011111010000110101000010011000
6943 #*1010000011010011001001011101011101001001000111110100111011011110
6944 #*0101011001100000110001110100000011101111001101110111110110001001
6945 #*1111101000100101000100111111101110000000010111111111100010101111
6946 #*0110001101110001111110110111100010101110000111011110000001111000
6947 #*1010000100110001000010011001010100010011001001111101100101110010
6948 ;; After rho:
6949 #*0110110011010100011100001000101000101011100101101111110001101011
6950 #*1111011000100001011111101101000010011011101111100000011001111111
6951 #*1011101100001100010000011110001011000001111001110110001111001110
6952 #*1100100101100101001100010000111001011110110101100110000101100011
6953 #*0110011001000000011110011001011011010000100011010111001100001010
6954 #*1110000010111101110000100011000111111110110011010010111011000000
6955 #*1111100101110000100011000110011110010001110110110010011111100100
6956 #*0111110001111100000010010101110100010100001011100100000001111110
6957 #*1111110010101110101001011111010001001011000111010010010101111111
6958 #*1101000010001000001110000011000101001100111101010101101110111000
6959 #*1000000011100110111011110101011100000001000011001100010001101011
6960 #*1111010111001110100000010110011010101101111011101101111010010000
6961 #*0001101010101111010101100011001000101011010011111010101011011011
6962 #*1000011010100111100110000110100111010110100000111001101111001100
6963 #*1110001000110000001111100010011010111111110100110111010100100011
6964 #*1111111011001111111100100011001011101010111001011101010000110101
6965 #*0011110111001100000111000001001011110001010010000010010001100100
6966 #*1110011000001010101110010001001011010100101010101010111101000111
6967 #*0001101010010010110110100111010111111100001011101000010001100110
6968 #*1001100010000000111110111010110000010011110111110100001101010000
6969 #*1101001110110111101010000011010011001001011101011101001001000111
6970 #*0101010110011000001100011101000000111011110011011101111101100010
6971 #*1101000100101000100111111101110000000010111111111100010101111111
6972 #*0111000111111011011110001010111000011101111000000111100001100011
6973 #*0110010111001010100001001100010000100110010101000100110010011111
6974 ;; After pi:
6975 #*0110110011010100011100001000101000101011100101101111110001101011
6976 #*1111100101110000100011000110011110010001110110110010011111100100
6977 #*0001101010101111010101100011001000101011010011111010101011011011
6978 #*0001101010010010110110100111010111111100001011101000010001100110
6979 #*0110010111001010100001001100010000100110010101000100110010011111
6980 #*1100100101100101001100010000111001011110110101100110000101100011
6981 #*1101000010001000001110000011000101001100111101010101101110111000
6982 #*1000000011100110111011110101011100000001000011001100010001101011
6983 #*0011110111001100000111000001001011110001010010000010010001100100
6984 #*1101000100101000100111111101110000000010111111111100010101111111
6985 #*1111011000100001011111101101000010011011101111100000011001111111
6986 #*0111110001111100000010010101110100010100001011100100000001111110
6987 #*1000011010100111100110000110100111010110100000111001101111001100
6988 #*1001100010000000111110111010110000010011110111110100001101010000
6989 #*1101001110110111101010000011010011001001011101011101001001000111
6990 #*0110011001000000011110011001011011010000100011010111001100001010
6991 #*1110000010111101110000100011000111111110110011010010111011000000
6992 #*1111010111001110100000010110011010101101111011101101111010010000
6993 #*1110011000001010101110010001001011010100101010101010111101000111
6994 #*0111000111111011011110001010111000011101111000000111100001100011
6995 #*1011101100001100010000011110001011000001111001110110001111001110
6996 #*1111110010101110101001011111010001001011000111010010010101111111
6997 #*1110001000110000001111100010011010111111110100110111010100100011
6998 #*1111111011001111111100100011001011101010111001011101010000110101
6999 #*0101010110011000001100011101000000111011110011011101111101100010
7000 ;; After chi:
7001 #*0110111001011011001000101001101000000001100100100111010001110000
7002 #*1111100101100000000001000010001001000101111110110010001111000000
7003 #*0111111111100111010100101011001000101001000111111110001001000010
7004 #*0001001010000110101010100111111111110101101011000011010000000110
7005 #*1111010011101010000010001010000110110110000111010100111100011011
7006 #*1100100100000011111101100100100001011111110111101110010100100000
7007 #*1110110110000000001010000011000110111100101101010111101110111100
7008 #*0100000011000110011011001001101100000011101110110000010101110000
7009 #*0011010110001001001111000001000010101101010010000000010001100100
7010 #*1100000110100000100101111110110100000010110111101101111111100111
7011 #*0111010010100010111011101111000001011001001111111001110111111111
7012 #*0110010001111100011010101101100100010101011100100000000001101110
7013 #*1100010110010000100110000111100100011110101000110000101111001011
7014 #*1011110010000000101011010110110000000001010101010100011101101000
7015 #*1101101111101011101010010011100111001101011101011001001001000111
7016 #*0111001100000010011110001101000011010001101011111010001100011010
7017 #*1110001010111101111110100010000110101110110011010000111110000111
7018 #*1110010000111111110000011100101010100100101011101000111010110000
7019 #*1110000000001010101110000000001000010100101001111010110001001111
7020 #*1111000101000110111110101000111100110011101000000111010010100011
7021 #*1011100100011100010110111110000001110101001001010011001111001110
7022 #*1110000001100001011001011110010000001011001110011010010101101011
7023 #*1110001100100000001111111110011010101110110110110111111001100001
7024 #*0101010011001011101100100001000000101010110001111111010010111001
7025 #*0001000100111010100101011100010000110001110101011101101101010011
7026 ;; After iota:
7027 #*1110111001011011001000101001101100000001100100100111010001110000
7028 #*1111100101100000000001000010001001000101111110110010001111000000
7029 #*0111111111100111010100101011001000101001000111111110001001000010
7030 #*0001001010000110101010100111111111110101101011000011010000000110
7031 #*1111010011101010000010001010000110110110000111010100111100011011
7032 #*1100100100000011111101100100100001011111110111101110010100100000
7033 #*1110110110000000001010000011000110111100101101010111101110111100
7034 #*0100000011000110011011001001101100000011101110110000010101110000
7035 #*0011010110001001001111000001000010101101010010000000010001100100
7036 #*1100000110100000100101111110110100000010110111101101111111100111
7037 #*0111010010100010111011101111000001011001001111111001110111111111
7038 #*0110010001111100011010101101100100010101011100100000000001101110
7039 #*1100010110010000100110000111100100011110101000110000101111001011
7040 #*1011110010000000101011010110110000000001010101010100011101101000
7041 #*1101101111101011101010010011100111001101011101011001001001000111
7042 #*0111001100000010011110001101000011010001101011111010001100011010
7043 #*1110001010111101111110100010000110101110110011010000111110000111
7044 #*1110010000111111110000011100101010100100101011101000111010110000
7045 #*1110000000001010101110000000001000010100101001111010110001001111
7046 #*1111000101000110111110101000111100110011101000000111010010100011
7047 #*1011100100011100010110111110000001110101001001010011001111001110
7048 #*1110000001100001011001011110010000001011001110011010010101101011
7049 #*1110001100100000001111111110011010101110110110110111111001100001
7050 #*0101010011001011101100100001000000101010110001111111010010111001
7051 #*0001000100111010100101011100010000110001110101011101101101010011
7052
7053 ;; Round 23
7054
7055 ;; After theta:
7056 #*1101100110100110000101110010001011011110101101011010000001000100
7057 #*0001111001010011001100010000111111111001001110111011000110101111
7058 #*0001101000000000100100110011010111010011001111111000011101000010
7059 #*0110100001000110010111101001110011110110001111111111111010001011
7060 #*0001011101010110001101010011100100000000001100001010111011011010
7061 #*1111111011111110110000111111000110000000111110010011000100010100
7062 #*0000101010110011000111010001110000000000011101011110100111010011
7063 #*0010010100100001101011010001110011111001100110110110000001110000
7064 #*0100111101001001110010001111001110101110110110111100111011101001
7065 #*0010001000011100101010100111010110110100111100110011111000100110
7066 #*0100001101011111110110110100100110000110000110000100100111001011
7067 #*1000001101001111010111111111010010101001101100101001001000000001
7068 #*1010000001110111010110011111111011100100100000110110111011001011
7069 #*1100011001000000010110011000111100000010110001101000110111100101
7070 #*0011100001010111100101001010000101111011010110000111001110000110
7071 #*0100010011111111010011010110100100001110100010000111011100101110
7072 #*0000010110001110110011110000110000010010000011011001110111101000
7073 #*1000000111011000000000000100110101011110100011101110101110110000
7074 #*1001101011001010010011001110000100010111001101000110011011000010
7075 #*0001001011111010110001110001011110000101100011011001010101100010
7076 #*1000111011100001011011100101100110101010000000101110011111111010
7077 #*0000011101010010010100001100100110110111111110010011011100000100
7078 #*1000011011000111111111100110000101010100111110110001101101100001
7079 #*0010111000001011010001101111001100101001010101000011111000110100
7080 #*1111001010000110101010000101110010000111111110000011101010010010
7081 ;; After rho:
7082 #*1101100110100110000101110010001011011110101101011010000001000100
7083 #*1000111100101001100110001000011111111100100111011101100011010111
7084 #*0110100000000010010011001101011101001100111111100001110100001000
7085 #*0110001111111111111010001011011010000100011001011110100111001111
7086 #*0000011000010101110110110100001011101010110001101010011100100000
7087 #*0001100000001111100100110001000101001111111011111110110000111111
7088 #*1101000111000000000001110101111010011101001100001010101100110001
7089 #*1100000010010100100001101011010001110011111001100110110110000001
7090 #*1001001110010001111001110101110110110111100111011101001010011110
7091 #*0011001111100010011000100010000111001010101001110101101101001111
7092 #*0110100001101011111110110110100100110000110000110000100100111001
7093 #*1000000001100000110100111101011111111101001010100110110010100100
7094 #*0011111111011100100100000110110111011001011101000000111011101011
7095 #*0110001101000110111100101110001100100000001011001100011110000001
7096 #*0100001011110110101100001110011100001100011100001010111100101001
7097 #*1011010010000111010001000011101110010111001000100111111110100110
7098 #*0111100001100000100100000110110011101111010000000010110001110110
7099 #*1101011101100001000000111011000000000000100110101011110100011101
7100 #*1010001100110110000101001101011001010010011001110000100010111001
7101 #*0110001000010010111110101100011100010111100001011000110110010101
7102 #*1011100111111110101000111011100001011011100101100110101010000000
7103 #*0000000111010100100101000011001001101101111111100100110111000001
7104 #*0011011000111111111100110000101010100111110110001101101100001100
7105 #*0000101101000110111100110010100101010100001111100011010000101110
7106 #*1110101001001011110010100001101010100001011100100001111111100000
7107 ;; After pi:
7108 #*1101100110100110000101110010001011011110101101011010000001000100
7109 #*1101000111000000000001110101111010011101001100001010101100110001
7110 #*0011111111011100100100000110110111011001011101000000111011101011
7111 #*1010001100110110000101001101011001010010011001110000100010111001
7112 #*1110101001001011110010100001101010100001011100100001111111100000
7113 #*0110001111111111111010001011011010000100011001011110100111001111
7114 #*0011001111100010011000100010000111001010101001110101101101001111
7115 #*0110100001101011111110110110100100110000110000110000100100111001
7116 #*0111100001100000100100000110110011101111010000000010110001110110
7117 #*0011011000111111111100110000101010100111110110001101101100001100
7118 #*1000111100101001100110001000011111111100100111011101100011010111
7119 #*1100000010010100100001101011010001110011111001100110110110000001
7120 #*0110001101000110111100101110001100100000001011001100011110000001
7121 #*0110001000010010111110101100011100010111100001011000110110010101
7122 #*1011100111111110101000111011100001011011100101100110101010000000
7123 #*0000011000010101110110110100001011101010110001101010011100100000
7124 #*0001100000001111100100110001000101001111111011111110110000111111
7125 #*1000000001100000110100111101011111111101001010100110110010100100
7126 #*1101011101100001000000111011000000000000100110101011110100011101
7127 #*0000101101000110111100110010100101010100001111100011010000101110
7128 #*0110100000000010010011001101011101001100111111100001110100001000
7129 #*1001001110010001111001110101110110110111100111011101001010011110
7130 #*0100001011110110101100001110011100001100011100001010111100101001
7131 #*1011010010000111010001000011101110010111001000100111111110100110
7132 #*0000000111010100100101000011001001101101111111100100110111000001
7133 ;; After chi:
7134 #*1111011110111010100001110000001110011110111100011010010010001110
7135 #*0101000111100010000000111100110010011111001100111010101100100001
7136 #*0111011110010101010110100110010101111000011001000001100110101011
7137 #*1011001010010010000000011111011000001100111000101010100010111101
7138 #*1110101000001011110010100100011010100000011100100001010011010001
7139 #*0010101111110110011100011111111010110100001001011110100111111111
7140 #*0010001111100010011000100010010100000101101001110111111100001001
7141 #*0110111001110100100110000110101100110000010110111101101000110001
7142 #*0011100110100000100110001101100011101111011001010000110010110101
7143 #*0010011000111111111100010000101111101101010110101100100100001100
7144 #*1010110001101011111010001100010011111100100101010101101011010111
7145 #*1100000010000100100011101011000001100100011001110110010110010101
7146 #*1111101010101010111100111101101101101000001111101010010110000001
7147 #*0110010000010011111000101100000010110011100011000001110111000010
7148 #*1111100101101010101001011000100001011000111101000100111110000000
7149 #*1000011001110101100110111000010001011010110001101010011110100000
7150 #*0100111100001110100100110011000101001111011111110111110100100110
7151 #*1000100001100110001000111101111010101001000011100110110010000110
7152 #*1101001101110000000010111111001010101010010110100011111000011101
7153 #*0001001101001100111100110011100001010001000101110111110000110001
7154 #*0010100001100100010111000111010101000100100111100011000000101001
7155 #*0010011110010000101000110100010100100100100111111000001000011000
7156 #*0100001110100110001000001110011101100100101011001010111101101000
7157 #*1101110010000101000011001111111010010111001000100110111110101110
7158 #*1001001001000101001101110011101011011110111111111000111101010111
7159 ;; After iota:
7160 #*1110011110111011100001110000001010011110111100011010010010001111
7161 #*0101000111100010000000111100110010011111001100111010101100100001
7162 #*0111011110010101010110100110010101111000011001000001100110101011
7163 #*1011001010010010000000011111011000001100111000101010100010111101
7164 #*1110101000001011110010100100011010100000011100100001010011010001
7165 #*0010101111110110011100011111111010110100001001011110100111111111
7166 #*0010001111100010011000100010010100000101101001110111111100001001
7167 #*0110111001110100100110000110101100110000010110111101101000110001
7168 #*0011100110100000100110001101100011101111011001010000110010110101
7169 #*0010011000111111111100010000101111101101010110101100100100001100
7170 #*1010110001101011111010001100010011111100100101010101101011010111
7171 #*1100000010000100100011101011000001100100011001110110010110010101
7172 #*1111101010101010111100111101101101101000001111101010010110000001
7173 #*0110010000010011111000101100000010110011100011000001110111000010
7174 #*1111100101101010101001011000100001011000111101000100111110000000
7175 #*1000011001110101100110111000010001011010110001101010011110100000
7176 #*0100111100001110100100110011000101001111011111110111110100100110
7177 #*1000100001100110001000111101111010101001000011100110110010000110
7178 #*1101001101110000000010111111001010101010010110100011111000011101
7179 #*0001001101001100111100110011100001010001000101110111110000110001
7180 #*0010100001100100010111000111010101000100100111100011000000101001
7181 #*0010011110010000101000110100010100100100100111111000001000011000
7182 #*0100001110100110001000001110011101100100101011001010111101101000
7183 #*1101110010000101000011001111111010010111001000100110111110101110
7184 #*1001001001000101001101110011101011011110111111111000111101010111
7185
7186 ;; Final state:
7187 #*1110011110111011100001110000001010011110111100011010010010001111
7188 #*0101000111100010000000111100110010011111001100111010101100100001
7189 #*0111011110010101010110100110010101111000011001000001100110101011
7190 #*1011001010010010000000011111011000001100111000101010100010111101
7191 #*1110101000001011110010100100011010100000011100100001010011010001
7192 #*0010101111110110011100011111111010110100001001011110100111111111
7193 #*0010001111100010011000100010010100000101101001110111111100001001
7194 #*0110111001110100100110000110101100110000010110111101101000110001
7195 #*0011100110100000100110001101100011101111011001010000110010110101
7196 #*0010011000111111111100010000101111101101010110101100100100001100
7197 #*1010110001101011111010001100010011111100100101010101101011010111
7198 #*1100000010000100100011101011000001100100011001110110010110010101
7199 #*1111101010101010111100111101101101101000001111101010010110000001
7200 #*0110010000010011111000101100000010110011100011000001110111000010
7201 #*1111100101101010101001011000100001011000111101000100111110000000
7202 #*1000011001110101100110111000010001011010110001101010011110100000
7203 #*0100111100001110100100110011000101001111011111110111110100100110
7204 #*1000100001100110001000111101111010101001000011100110110010000110
7205 #*1101001101110000000010111111001010101010010110100011111000011101
7206 #*0001001101001100111100110011100001010001000101110111110000110001
7207 #*0010100001100100010111000111010101000100100111100011000000101001
7208 #*0010011110010000101000110100010100100100100111111000001000011000
7209 #*0100001110100110001000001110011101100100101011001010111101101000
7210 #*1101110010000101000011001111111010010111001000100110111110101110
7211 #*1001001001000101001101110011101011011110111111111000111101010111