Usage: UTM -p '(status-cnt ((UTM-func1 next-status1) (UTM-func2 next-status2))...)' [num...]
    a. `status-cnt' is the count of status.
    b. `UTM-func' is the code name of UTM functions.
        UTM function codes are defined...
          0) term - terminate immediately
          1) noop - no operation
          2) wrt0 - set "0" the current cell
          3) wrt1 - set "1" the current cell
          4) next - forward the cell
          5) prev - backward the cell
          6) wrt0_term - wrt0 and term
          7)   <<same as '2) wrt0'>>
          8)   <<same as '2) wrt0'>>
          9)   <<same as '3) wrt1'>>
         10) wrt0_next - '2) wrt0' and '4) next'
         11) wrt0_prev - '2) wrt0' and '5) prev'
         12) wrt1_term - '3) wrt1' and '0) term'
         13)   <<same as '3) wrt1'>>
         14)   <<same as '2) wrt0'>>
         15)   <<same as '3) wrt1'>>
         16) wrt1_next - '3) wrt1' and '4) next'
         17) wrt1_prev - '3) wrt1' and '5) prev'
         18) next_term - '4) next' and '0) term'
         19)   <<same as '4) next'>>
         20) next_wrt0 - '4) next' and '2) wrt0'
         21) next_wrt1 - '4) next' and '3) wrt1'
         22) next_next - '4) next' and '4) next'
         23)   <<same as '1) noop'>>
         24) prev_term - '5) prev' and '0) term'
         25)   <<same as '5) prev'>>
         26) prev_wrt0 - '5) prev' and '2) wrt0'
         27) prev_wrt1 - '5) prev' and '3) wrt1'
         28)   <<same as '1) noop'>>
         29) prev_prev - '5) prev' and '5) prev'
    c. `next-status' must be zero or less than `status-cnt'
    d. `num' must be the positive integer.
