Somewhat Optimizing Dividing By 2 Cruely

“Divisible”, not “dividable.” You still can not divide this mess in half.

Original Manual

0 1 2 3 4
0
1
2
3
4

From the entire sequence of digits:

  • N = first two digits displayed (10 - 14)
  • Next (3 × N) digits form triplets in the form, DRC:
    • D = (0 - 9)
    • R = starting row of that digit (0 - 4)
    • C = starting column of that digit (0 - 4)
  • Digits afterwards are converted into moves, 0 representing Up and going clockwise:
    0123
    UpRightDownLeft

Then for each digit in the maze...

  • Move that digit in the maze one space in that received direction. If a move would cause a digit to go through a wall, rotate the current direction for that move clockwise until it does not.
  • Every row in the maze should have at least one digit in it.

For each row, top to bottom, in order 0 - 4:

  • “Y” if the sum of digits in the current row is between 12 - 43 inclusive, “N” otherwise.
  • Use the left table for each digit in that row and convert them into their new values based on the current column they are in, using the current digit as the row.
  • Sum these new values, and modulo the result by 15. Press the button with that label when the total time in seconds is that value, modulo 15. Use the original manual if necessary for the time stamps.
01234
010000
111234
212481
3139126
414141
51510510
616666
7174131
818421
919696